From 1c49a26783bad8977fdb059ee3a67368872463f8 Mon Sep 17 00:00:00 2001 From: lukepark327 Date: Fri, 6 Jan 2023 10:09:14 +0900 Subject: [PATCH 01/25] feat: vrf && chore: documents for vrf && test: for vrf --- accounts/accounts.go | 12 + accounts/external/backend.go | 16 ++ accounts/keystore/keystore.go | 83 +++++++ accounts/keystore/wallet.go | 36 +++ accounts/scwallet/wallet.go | 16 ++ accounts/usbwallet/ledger.go | 16 ++ accounts/usbwallet/trezor.go | 16 ++ accounts/usbwallet/wallet.go | 24 ++ common/types.go | 2 + contracts/vrf/contract/vrf.sol | 44 ++++ core/vm/contracts.go | 37 +++ core/vm/contracts_test.go | 5 + core/vm/testdata/precompiles/vrf.json | 30 +++ crypto/vrf/vrf.go | 337 ++++++++++++++++++++++++++ crypto/vrf/vrf_test.go | 290 ++++++++++++++++++++++ docs/vrf.md | 69 ++++++ go.mod | 1 + go.sum | 29 +++ internal/ethapi/api.go | 52 ++++ internal/web3ext/web3ext.go | 17 +- mobile/accounts.go | 16 ++ params/protocol_params.go | 2 + signer/core/api.go | 16 ++ 23 files changed, 1165 insertions(+), 1 deletion(-) create mode 100644 contracts/vrf/contract/vrf.sol create mode 100644 core/vm/testdata/precompiles/vrf.json create mode 100644 crypto/vrf/vrf.go create mode 100644 crypto/vrf/vrf_test.go create mode 100644 docs/vrf.md diff --git a/accounts/accounts.go b/accounts/accounts.go index 6c351a9649ea..e7cf714e5999 100644 --- a/accounts/accounts.go +++ b/accounts/accounts.go @@ -151,6 +151,18 @@ type Wallet interface { // SignTxWithPassphrase is identical to SignTx, but also takes a password SignTxWithPassphrase(account Account, passphrase string, tx *types.Transaction, chainID *big.Int) (*types.Transaction, error) + + // Get pk from sk based on ed25519 + EdPubKey(account Account) ([]byte, error) + + // Get pk from sk based on ed25519 with account password + EdPubKeyWithPassphrase(account Account, passphrase string) ([]byte, error) + + // Get prove + Prove(account Account, message []byte) ([]byte, error) + + // Get prove with account password + ProveWithPassphrase(account Account, passphrase string, message []byte) ([]byte, error) } // Backend is a "wallet provider" that may contain a batch of accounts they can diff --git a/accounts/external/backend.go b/accounts/external/backend.go index e3f754eafcc4..d806484250b3 100644 --- a/accounts/external/backend.go +++ b/accounts/external/backend.go @@ -256,6 +256,22 @@ func (api *ExternalSigner) SignDataWithPassphrase(account accounts.Account, pass return nil, fmt.Errorf("password-operations not supported on external signers") } +func (api *ExternalSigner) EdPubKey(account accounts.Account) ([]byte, error) { + return nil, fmt.Errorf("vrf-operations not supported on external signers yet") // TODO (lukepark327) +} + +func (api *ExternalSigner) EdPubKeyWithPassphrase(account accounts.Account, passphrase string) ([]byte, error) { + return nil, fmt.Errorf("vrf-operations not supported on external signers yet") // TODO (lukepark327) +} + +func (api *ExternalSigner) Prove(account accounts.Account, message []byte) ([]byte, error) { + return nil, fmt.Errorf("vrf-operations not supported on external signers yet") // TODO (lukepark327) +} + +func (api *ExternalSigner) ProveWithPassphrase(account accounts.Account, passphrase string, message []byte) ([]byte, error) { + return nil, fmt.Errorf("vrf-operations not supported on external signers yet") // TODO (lukepark327) +} + func (api *ExternalSigner) listAccounts() ([]common.Address, error) { var res []common.Address if err := api.client.Call(&res, "account_list"); err != nil { diff --git a/accounts/keystore/keystore.go b/accounts/keystore/keystore.go index 88dcfbeb69e0..43f5981a6b2c 100644 --- a/accounts/keystore/keystore.go +++ b/accounts/keystore/keystore.go @@ -22,6 +22,7 @@ package keystore import ( "crypto/ecdsa" + "crypto/ed25519" crand "crypto/rand" "errors" "math/big" @@ -36,6 +37,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" + "github.com/ethereum/go-ethereum/crypto/vrf" "github.com/ethereum/go-ethereum/event" ) @@ -43,6 +45,7 @@ var ( ErrLocked = accounts.NewAuthNeededError("password or unlock") ErrNoMatch = errors.New("no key for given address or file") ErrDecrypt = errors.New("could not decrypt key with given password") + ErrVrf = errors.New("errors on VRF functions") // TODO (lukepark327): more details // ErrAccountAlreadyExists is returned if an account attempted to import is // already present in the keystore. @@ -505,3 +508,83 @@ func zeroKey(k *ecdsa.PrivateKey) { b[i] = 0 } } + +func (ks *KeyStore) EdPubKey(a accounts.Account) ([]byte, error) { + // Look up the key to sign with and abort if it cannot be found + ks.mu.RLock() + defer ks.mu.RUnlock() + + unlockedKey, found := ks.unlocked[a.Address] + if !found { + return nil, ErrLocked + } + + return edPubKeyFromPrivateKey(unlockedKey.PrivateKey) +} + +func (ks *KeyStore) EdPubKeyWithPassphrase(a accounts.Account, passphrase string) ([]byte, error) { + _, key, err := ks.getDecryptedKey(a, passphrase) + if err != nil { + return nil, err + } + defer zeroKey(key.PrivateKey) + + return edPubKeyFromPrivateKey(key.PrivateKey) +} + +func edPubKeyFromPrivateKey(k *ecdsa.PrivateKey) ([]byte, error) { + // get private key + seed := k.D.Bytes() + sk := ed25519.NewKeyFromSeed(seed) + pk := sk.Public() + + xx, ok := pk.(ed25519.PublicKey) + if !ok { + return nil, ErrVrf + } + return xx, nil +} + +func (ks *KeyStore) Prove(a accounts.Account, m []byte) ([]byte, error) { + // Look up the key to sign with and abort if it cannot be found + ks.mu.RLock() + defer ks.mu.RUnlock() + + unlockedKey, found := ks.unlocked[a.Address] + if !found { + return nil, ErrLocked + } + + pi, _, err := prove(unlockedKey.PrivateKey, m) + if err != nil { + return nil, err + } + return pi, err +} + +func (ks *KeyStore) ProveWithPassphrase(a accounts.Account, passphrase string, m []byte) ([]byte, error) { + _, key, err := ks.getDecryptedKey(a, passphrase) + if err != nil { + return nil, err + } + defer zeroKey(key.PrivateKey) + + pi, _, err := prove(key.PrivateKey, m) + if err != nil { + return nil, err + } + return pi, err +} + +func prove(k *ecdsa.PrivateKey, msg []byte) ([]byte, []byte, error) { + // get private key + seed := k.D.Bytes() + sk := ed25519.NewKeyFromSeed(seed) + pk := sk.Public() + + xx, ok := pk.(ed25519.PublicKey) + if !ok { + return nil, nil, ErrVrf + } + return vrf.Prove(xx, sk, msg[:]) +} diff --git a/accounts/keystore/wallet.go b/accounts/keystore/wallet.go index 1066095f6d07..b31348ed7b8a 100644 --- a/accounts/keystore/wallet.go +++ b/accounts/keystore/wallet.go @@ -148,3 +148,39 @@ func (w *keystoreWallet) SignTxWithPassphrase(account accounts.Account, passphra // Account seems valid, request the keystore to sign return w.keystore.SignTxWithPassphrase(account, passphrase, tx, chainID) } + +func (w *keystoreWallet) EdPubKey(account accounts.Account) ([]byte, error) { + // Make sure the requested account is contained within + if !w.Contains(account) { + return nil, accounts.ErrUnknownAccount + } + // Account seems valid, request the keystore to get EdPubKey + return w.keystore.EdPubKey(account) +} + +func (w *keystoreWallet) EdPubKeyWithPassphrase(account accounts.Account, passphrase string) ([]byte, error) { + // Make sure the requested account is contained within + if !w.Contains(account) { + return nil, accounts.ErrUnknownAccount + } + // Account seems valid, request the keystore to get EdPubKey + return w.keystore.EdPubKeyWithPassphrase(account, passphrase) +} + +func (w *keystoreWallet) Prove(account accounts.Account, message []byte) ([]byte, error) { + // Make sure the requested account is contained within + if !w.Contains(account) { + return nil, accounts.ErrUnknownAccount + } + // Account seems valid, request the keystore to prove + return w.keystore.Prove(account, message) +} + +func (w *keystoreWallet) ProveWithPassphrase(account accounts.Account, passphrase string, message []byte) ([]byte, error) { + // Make sure the requested account is contained within + if !w.Contains(account) { + return nil, accounts.ErrUnknownAccount + } + // Account seems valid, request the keystore to prove + return w.keystore.ProveWithPassphrase(account, passphrase, message) +} diff --git a/accounts/scwallet/wallet.go b/accounts/scwallet/wallet.go index 5e74e606e13f..e003f4e08566 100644 --- a/accounts/scwallet/wallet.go +++ b/accounts/scwallet/wallet.go @@ -788,6 +788,22 @@ func (w *Wallet) findAccountPath(account accounts.Account) (accounts.DerivationP return accounts.ParseDerivationPath(parts[1]) } +func (w *Wallet) EdPubKey(account accounts.Account) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + +func (w *Wallet) EdPubKeyWithPassphrase(account accounts.Account, passphrase string) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + +func (w *Wallet) Prove(account accounts.Account, message []byte) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + +func (w *Wallet) ProveWithPassphrase(account accounts.Account, passphrase string, message []byte) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + // Session represents a secured communication session with the wallet. type Session struct { Wallet *Wallet // A handle to the wallet that opened the session diff --git a/accounts/usbwallet/ledger.go b/accounts/usbwallet/ledger.go index cda94280fdd2..c8eb915800d5 100644 --- a/accounts/usbwallet/ledger.go +++ b/accounts/usbwallet/ledger.go @@ -190,6 +190,22 @@ func (w *ledgerDriver) SignTypedMessage(path accounts.DerivationPath, domainHash return w.ledgerSignTypedMessage(path, domainHash, messageHash) } +func (w *ledgerDriver) EdPubKey(a accounts.Account) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + +func (w *ledgerDriver) EdPubKeyWithPassphrase(a accounts.Account, passphrase string) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + +func (w *ledgerDriver) Prove(a accounts.Account, m []byte) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + +func (w *ledgerDriver) ProveWithPassphrase(a accounts.Account, passphrase string, m []byte) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + // ledgerVersion retrieves the current version of the Ethereum wallet app running // on the Ledger wallet. // diff --git a/accounts/usbwallet/trezor.go b/accounts/usbwallet/trezor.go index 190b97f90094..cf0a7cb15b97 100644 --- a/accounts/usbwallet/trezor.go +++ b/accounts/usbwallet/trezor.go @@ -189,6 +189,22 @@ func (w *trezorDriver) SignTypedMessage(path accounts.DerivationPath, domainHash return nil, accounts.ErrNotSupported } +func (w *trezorDriver) EdPubKey(a accounts.Account) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + +func (w *trezorDriver) EdPubKeyWithPassphrase(a accounts.Account, passphrase string) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + +func (w *trezorDriver) Prove(a accounts.Account, m []byte) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + +func (w *trezorDriver) ProveWithPassphrase(a accounts.Account, passphrase string, m []byte) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + // trezorDerive sends a derivation request to the Trezor device and returns the // Ethereum address located on that path. func (w *trezorDriver) trezorDerive(derivationPath []uint32) (common.Address, error) { diff --git a/accounts/usbwallet/wallet.go b/accounts/usbwallet/wallet.go index 382f3ddaee21..3351f13db0fc 100644 --- a/accounts/usbwallet/wallet.go +++ b/accounts/usbwallet/wallet.go @@ -69,6 +69,14 @@ type driver interface { SignTx(path accounts.DerivationPath, tx *types.Transaction, chainID *big.Int) (common.Address, *types.Transaction, error) SignTypedMessage(path accounts.DerivationPath, messageHash []byte, domainHash []byte) ([]byte, error) + + EdPubKey(account accounts.Account) ([]byte, error) + + EdPubKeyWithPassphrase(account accounts.Account, passphrase string) ([]byte, error) + + Prove(account accounts.Account, message []byte) ([]byte, error) + + ProveWithPassphrase(account accounts.Account, passphrase string, message []byte) ([]byte, error) } // wallet represents the common functionality shared by all USB hardware @@ -638,3 +646,19 @@ func (w *wallet) SignTextWithPassphrase(account accounts.Account, passphrase str func (w *wallet) SignTxWithPassphrase(account accounts.Account, passphrase string, tx *types.Transaction, chainID *big.Int) (*types.Transaction, error) { return w.SignTx(account, tx, chainID) } + +func (w *wallet) EdPubKey(account accounts.Account) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + +func (w *wallet) EdPubKeyWithPassphrase(account accounts.Account, passphrase string) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + +func (w *wallet) Prove(account accounts.Account, message []byte) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + +func (w *wallet) ProveWithPassphrase(account accounts.Account, passphrase string, message []byte) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} diff --git a/common/types.go b/common/types.go index 2205835cb5d0..4768a559e0dd 100644 --- a/common/types.go +++ b/common/types.go @@ -38,6 +38,8 @@ const ( HashLength = 32 // AddressLength is the expected length of the address AddressLength = 20 + + EdPubKeyLength = 32 ) var ( diff --git a/contracts/vrf/contract/vrf.sol b/contracts/vrf/contract/vrf.sol new file mode 100644 index 000000000000..0423f0d7392f --- /dev/null +++ b/contracts/vrf/contract/vrf.sol @@ -0,0 +1,44 @@ +// SPDX-License-Identifier: MIT + +pragma solidity 0.8.17; + +/** + * @author @lukepark327 + * @title VRF + */ +abstract contract VRF { + function _callVrfVerify( + bytes32 publicKey, + bytes memory pi, + bytes memory message + ) internal view returns (bool result) { + return _vrf(abi.encodePacked(publicKey, pi, message)); + } + + function _callVrfVerifyRaw( + bytes memory input + ) internal view returns (bool result) { + return _vrf(input); + } + + function _vrf(bytes memory input) internal view returns (bool result) { + assembly { + let memPtr := mload(0x40) + let success := staticcall( + gas(), + 0x14, + add(input, 0x20), + mload(input), + memPtr, + 0x20 + ) + switch success + case 0 { + revert(0, 0) + } + default { + result := mload(memPtr) + } + } + } +} diff --git a/core/vm/contracts.go b/core/vm/contracts.go index e34817aabfe9..1cf0e61af6ef 100644 --- a/core/vm/contracts.go +++ b/core/vm/contracts.go @@ -28,6 +28,7 @@ import ( "github.com/ethereum/go-ethereum/crypto/blake2b" "github.com/ethereum/go-ethereum/crypto/bls12381" "github.com/ethereum/go-ethereum/crypto/bn256" + "github.com/ethereum/go-ethereum/crypto/vrf" "github.com/ethereum/go-ethereum/params" //lint:ignore SA1019 Needed for precompile @@ -104,6 +105,7 @@ var PrecompiledContractsBLS = map[common.Address]PrecompiledContract{ common.BytesToAddress([]byte{16}): &bls12381Pairing{}, common.BytesToAddress([]byte{17}): &bls12381MapG1{}, common.BytesToAddress([]byte{18}): &bls12381MapG2{}, + common.BytesToAddress([]byte{19}): &vrfVerify{}, // TODO (lukepark327): hardfork } var ( @@ -1044,3 +1046,38 @@ func (c *bls12381MapG2) Run(input []byte) ([]byte, error) { // Encode the G2 point to 256 bytes return g.EncodePoint(r), nil } + +// vrf implemented as a native contract. +type vrfVerify struct{} + +// RequiredGas returns the gas required to execute the pre-compiled contract. +func (c *vrfVerify) RequiredGas(input []byte) uint64 { + return params.VrfVerifyGas +} + +func (c *vrfVerify) Run(input []byte) ([]byte, error) { + length := uint64(len(input)) + + var ( + pk = getData(input, 0, 32) + pi = getData(input, 32, 81) + msg = getData(input, 113, length-113) + ) + + // fmt.Println(hex.EncodeToString(pk)) + // fmt.Println(hex.EncodeToString(pi)) + // fmt.Println(hex.EncodeToString(msg)) + + res, err := vrf.Verify(pk, pi, msg) + if err != nil { + return nil, err + } + + // fmt.Println(hex.EncodeToString(bytesTrue)) + // fmt.Println(hex.EncodeToString(bytesFalse)) + + if res { + return true32Byte, nil + } + return false32Byte, nil +} diff --git a/core/vm/contracts_test.go b/core/vm/contracts_test.go index aa8d2f1eb38b..22ec04035444 100644 --- a/core/vm/contracts_test.go +++ b/core/vm/contracts_test.go @@ -65,6 +65,7 @@ var allPrecompiles = map[common.Address]PrecompiledContract{ common.BytesToAddress([]byte{16}): &bls12381Pairing{}, common.BytesToAddress([]byte{17}): &bls12381MapG1{}, common.BytesToAddress([]byte{18}): &bls12381MapG2{}, + common.BytesToAddress([]byte{19}): &vrfVerify{}, } // EIP-152 test vectors @@ -391,3 +392,7 @@ func BenchmarkPrecompiledBLS12381G2MultiExpWorstCase(b *testing.B) { } benchmarkPrecompiled("0f", testcase, b) } + +func TestPrecompiledVRF(t *testing.T) { testJson("vrf", "13", t) } + +func BenchmarkPrecompiledVRF(b *testing.B) { benchJson("vrf", "13", b) } diff --git a/core/vm/testdata/precompiles/vrf.json b/core/vm/testdata/precompiles/vrf.json new file mode 100644 index 000000000000..f8de45678073 --- /dev/null +++ b/core/vm/testdata/precompiles/vrf.json @@ -0,0 +1,30 @@ +[ + { + "Input": "ca3b325e7ea0942ecb7658dce007374b53e0096d1c0d3d7d114264eac8d355e6026251907f16127c3db7d765de0d0b1bca44b737bdbcdbb57c4728e90aba425c6e0bd5e3c0f9969b55f580c7f46ff0a15707a618829ff44ee099ae346f991e1b5df4819a6666f136956c14699c9789cf7c48656c6c6f2c20576f726c6421", + "Expected": "0000000000000000000000000000000000000000000000000000000000000001", + "Name": "vrf-1", + "Gas": 3000, + "NoBenchmark": false + }, + { + "Input": "ffc0b13383ffb12e08bee1e4fce1d7782a334870f6fafea7437e23a4e525f2a8036bf3524542b262497da4d3c4d08b6a9e0a6d3094d5abbf3f11d38014c941a6c02c5063f8b7b111dabf70669400c12dce0f64ad90edfb6981b5b275a280aec804be61cdc55b5087a6625153408846504f48692074686572652e204d79206e616d652069732053616e676879656f6e205061726b2e205768617420697320796f7572206e616d653f", + "Expected": "0000000000000000000000000000000000000000000000000000000000000001", + "Name": "vrf-2", + "Gas": 3000, + "NoBenchmark": false + }, + { + "Input": "a6b4b002288784e52bb72d1b9247ad37b11a9cce9c152c24578c7da6f3c133e202ea8ec59e030acdb3bef69e048c3cfca0297c3ad45e4a99ec4136be9cd9644844e742bc0ec4e2a3b1b14077f742ae988105d125f55f55110079e954d946405b43f2ad8166da8d5c979344a7aad9b792535768617420697320746865206d65616e696e67206f66207468697320616262726576696174696f6e2c2022564d4f223f", + "Expected": "0000000000000000000000000000000000000000000000000000000000000001", + "Name": "vrf-3", + "Gas": 3000, + "NoBenchmark": false + }, + { + "Input": "16357cf6de199737298f93b9fc2ae3f508baa666f0d545e3af629ff73ae528e60288345a9bdf6b43162ae639c27be4e8332b8d497657574514306ba462c2f2fc20e74c269a94adeb3358c106342f2120570910c9aa58ad7e19e9e141d5c8b1783a73d142e5856d82d9ea43a9c7c92e2018486f772069732074686520776865617468657220746f64617920696e2053656f756c3f", + "Expected": "0000000000000000000000000000000000000000000000000000000000000001", + "Name": "vrf-4", + "Gas": 3000, + "NoBenchmark": false + } +] \ No newline at end of file diff --git a/crypto/vrf/vrf.go b/crypto/vrf/vrf.go new file mode 100644 index 000000000000..4cd917cacb76 --- /dev/null +++ b/crypto/vrf/vrf.go @@ -0,0 +1,337 @@ +/** + * @license + * Copyright 2017 Yahoo Inc. All rights reserved. + * Modifications Copyright 2020 Yosep Lee. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package vrf + +import ( + "bytes" + "crypto/ed25519" + "crypto/sha256" + "crypto/sha512" + "errors" + "math/big" + + "github.com/yoseplee/vrf/edwards25519" +) + +const ( + limit = 100 + N2 = 32 // ceil(log2(q) / 8) + N = N2 / 2 + qs = "1000000000000000000000000000000014def9dea2f79cd65812631a5cf5d3ed" // 2^252 + 27742317777372353535851937790883648493 + cofactor = 8 + NOSIGN = 3 +) + +var ( + ErrMalformedInput = errors.New("ECVRF: malformed input") + ErrDecodeError = errors.New("ECVRF: decode error") + ErrInternalError = errors.New("ECVRF: internal error") + q, _ = new(big.Int).SetString(qs, 16) + g = ge() +) + +const ( + // PublicKeySize is the size, in bytes, of public keys as used in this package. + PublicKeySize = 32 + // PrivateKeySize is the size, in bytes, of private keys as used in this package. + PrivateKeySize = 64 + // SignatureSize is the size, in bytes, of signatures generated and verified by this package. + SignatureSize = 64 +) + +// assume were generated by ed25519.GenerateKey() +// Prove generates vrf output and corresponding proof(pi) with secret key +func Prove(pk []byte, sk []byte, m []byte) (pi, hash []byte, err error) { + x := expandSecret(sk) + h := hashToCurve(m, pk) + r := ecp2OS(geScalarMult(h, x)) + + kp, ks, err := ed25519.GenerateKey(nil) // use GenerateKey to generate a random + if err != nil { + return nil, nil, err + } + k := expandSecret(ks) + + // hashPoints(g, h, g^x, h^x, g^k, h^k) + c := hashPoints(ecp2OS(g), ecp2OS(h), s2OS(pk), r, s2OS(kp), ecp2OS(geScalarMult(h, k))) + + // s = k - c*x mod q + var z big.Int + s := z.Mod(z.Sub(f2IP(k), z.Mul(c, f2IP(x))), q) + + // pi = gamma || i2OSP(c, N) || i2OSP(s, 2N) + var buf bytes.Buffer + buf.Write(r) // 2N + buf.Write(i2OSP(c, N)) + buf.Write(i2OSP(s, N2)) + pi = buf.Bytes() + return pi, Hash(pi), nil +} + +// Hash converts proof(pi) into vrf output(hash) without verifying it +func Hash(pi []byte) []byte { + return pi[1 : N2+1] +} + +// Verify checks if the proof is correct or not +func Verify(pk []byte, pi []byte, m []byte) (bool, error) { + r, c, s, err := decodeProof(pi) + if err != nil { + return false, err + } + + // u = (g^x)^c * g^s = P^c * g^s + var u edwards25519.ProjectiveGroupElement + P := os2ECP(pk, pk[31]>>7) + if P == nil { + return false, ErrMalformedInput + } + edwards25519.GeDoubleScalarMultVartime(&u, c, P, s) + + h := hashToCurve(m, pk) + + // v = gamma^c * h^s + // fmt.Printf("c, r, s, h\n%s%s%s%s\n", hex.Dump(c[:]), hex.Dump(ecp2OS(r)), hex.Dump(s[:]), hex.Dump(ecp2OS(h))) + v := geAdd(geScalarMult(r, c), geScalarMult(h, s)) + + // c' = hashPoints(g, h, g^x, gamma, u, v) + c2 := hashPoints(ecp2OS(g), ecp2OS(h), s2OS(pk), ecp2OS(r), ecp2OSProj(&u), ecp2OS(v)) + + return c2.Cmp(f2IP(c)) == 0, nil +} + +func decodeProof(pi []byte) (r *edwards25519.ExtendedGroupElement, c *[N2]byte, s *[N2]byte, err error) { + i := 0 + sign := pi[i] + i++ + if sign != 2 && sign != 3 { + return nil, nil, nil, ErrDecodeError + } + r = os2ECP(pi[i:i+N2], sign-2) + i += N2 + if r == nil { + return nil, nil, nil, ErrDecodeError + } + + // swap and expand to make it a field + c = new([N2]byte) + for j := N - 1; j >= 0; j-- { + c[j] = pi[i] + i++ + } + + // swap to make it a field + s = new([N2]byte) + for j := N2 - 1; j >= 0; j-- { + s[j] = pi[i] + i++ + } + return +} + +func hashPoints(ps ...[]byte) *big.Int { + h := sha256.New() + // fmt.Printf("hash_points:\n") + for _, p := range ps { + h.Write(p) + // fmt.Printf("%s\n", hex.Dump(p)) + } + v := h.Sum(nil) + return os2IP(v[:N]) +} + +func hashToCurve(m []byte, pk []byte) *edwards25519.ExtendedGroupElement { + hash := sha256.New() + for i := int64(0); i < limit; i++ { + ctr := i2OSP(big.NewInt(i), 4) + hash.Write(m) + hash.Write(pk) + hash.Write(ctr) + h := hash.Sum(nil) + hash.Reset() + if P := os2ECP(h, NOSIGN); P != nil { + // assume cofactor is 2^n + for j := 1; j < cofactor; j *= 2 { + P = geDouble(P) + } + return P + } + } + panic("hashToCurve: couldn't make a point on curve") +} + +func os2ECP(os []byte, sign byte) *edwards25519.ExtendedGroupElement { + P := new(edwards25519.ExtendedGroupElement) + var buf [32]byte + copy(buf[:], os) + if sign == 0 || sign == 1 { + buf[31] = (sign << 7) | (buf[31] & 0x7f) + } + if !P.FromBytes(&buf) { + return nil + } + return P +} + +// just prepend the sign octet +func s2OS(s []byte) []byte { + sign := s[31] >> 7 // @@ we should clear the sign bit?? + os := []byte{sign + 2} // Y = 0x02 if positive or 0x03 if negative + os = append([]byte(os), s...) + return os +} + +func ecp2OS(P *edwards25519.ExtendedGroupElement) []byte { + var s [32]byte + P.ToBytes(&s) + return s2OS(s[:]) +} + +func ecp2OSProj(P *edwards25519.ProjectiveGroupElement) []byte { + var s [32]byte + P.ToBytes(&s) + return s2OS(s[:]) +} + +func i2OSP(b *big.Int, n int) []byte { + os := b.Bytes() + if n > len(os) { + var buf bytes.Buffer + buf.Write(make([]byte, n-len(os))) // prepend 0s + buf.Write(os) + return buf.Bytes() + } else { + return os[:n] + } +} + +func os2IP(os []byte) *big.Int { + return new(big.Int).SetBytes(os) +} + +// convert a field number (in LittleEndian) to a big int +func f2IP(f *[32]byte) *big.Int { + var t [32]byte + for i := 0; i < 32; i++ { + t[32-i-1] = f[i] + } + return os2IP(t[:]) +} + +func ip2F(b *big.Int) *[32]byte { + os := b.Bytes() + r := new([32]byte) + j := len(os) - 1 + for i := 0; i < 32 && j >= 0; i++ { + r[i] = os[j] + j-- + } + return r +} + +func ge() *edwards25519.ExtendedGroupElement { + g := new(edwards25519.ExtendedGroupElement) + var f edwards25519.FieldElement + edwards25519.FeOne(&f) + var s [32]byte + edwards25519.FeToBytes(&s, &f) + edwards25519.GeScalarMultBase(g, &s) // g = g^1 + return g +} + +func expandSecret(sk []byte) *[32]byte { + // copied from golang.org/x/crypto/ed25519/ed25519.go -- has to be the same + digest := sha512.Sum512(sk[:32]) + digest[0] &= 248 + digest[31] &= 127 + digest[31] |= 64 + h := new([32]byte) + copy(h[:], digest[:]) + return h +} + +// copied from edwards25519.go and const.go in golang.org/x/crypto/ed25519/internal/edwards25519 +type CachedGroupElement struct { + yPlusX, yMinusX, Z, T2d edwards25519.FieldElement +} + +// d2 is 2*d. +var d2 = edwards25519.FieldElement{ + -21827239, -5839606, -30745221, 13898782, 229458, 15978800, -12551817, -6495438, 29715968, 9444199, +} + +func toCached(r *CachedGroupElement, p *edwards25519.ExtendedGroupElement) { + edwards25519.FeAdd(&r.yPlusX, &p.Y, &p.X) + edwards25519.FeSub(&r.yMinusX, &p.Y, &p.X) + edwards25519.FeCopy(&r.Z, &p.Z) + edwards25519.FeMul(&r.T2d, &p.T, &d2) +} + +func geAdd(p, qe *edwards25519.ExtendedGroupElement) *edwards25519.ExtendedGroupElement { + var q CachedGroupElement + var r edwards25519.CompletedGroupElement + var t0 edwards25519.FieldElement + + toCached(&q, qe) + + edwards25519.FeAdd(&r.X, &p.Y, &p.X) + edwards25519.FeSub(&r.Y, &p.Y, &p.X) + edwards25519.FeMul(&r.Z, &r.X, &q.yPlusX) + edwards25519.FeMul(&r.Y, &r.Y, &q.yMinusX) + edwards25519.FeMul(&r.T, &q.T2d, &p.T) + edwards25519.FeMul(&r.X, &p.Z, &q.Z) + edwards25519.FeAdd(&t0, &r.X, &r.X) + edwards25519.FeSub(&r.X, &r.Z, &r.Y) + edwards25519.FeAdd(&r.Y, &r.Z, &r.Y) + edwards25519.FeAdd(&r.Z, &t0, &r.T) + edwards25519.FeSub(&r.T, &t0, &r.T) + + re := new(edwards25519.ExtendedGroupElement) + r.ToExtended(re) + return re +} + +func geDouble(p *edwards25519.ExtendedGroupElement) *edwards25519.ExtendedGroupElement { + var q edwards25519.ProjectiveGroupElement + p.ToProjective(&q) + var rc edwards25519.CompletedGroupElement + q.Double(&rc) + r := new(edwards25519.ExtendedGroupElement) + rc.ToExtended(r) + return r +} + +func extendedGroupElementCMove(t, u *edwards25519.ExtendedGroupElement, b int32) { + edwards25519.FeCMove(&t.X, &u.X, b) + edwards25519.FeCMove(&t.Y, &u.Y, b) + edwards25519.FeCMove(&t.Z, &u.Z, b) + edwards25519.FeCMove(&t.T, &u.T, b) +} + +func geScalarMult(h *edwards25519.ExtendedGroupElement, a *[32]byte) *edwards25519.ExtendedGroupElement { + q := new(edwards25519.ExtendedGroupElement) + q.Zero() + p := h + for i := uint(0); i < 256; i++ { + bit := int32(a[i>>3]>>(i&7)) & 1 + t := geAdd(q, p) + extendedGroupElementCMove(q, t, bit) + p = geDouble(p) + } + return q +} diff --git a/crypto/vrf/vrf_test.go b/crypto/vrf/vrf_test.go new file mode 100644 index 000000000000..a7b435b7d5ab --- /dev/null +++ b/crypto/vrf/vrf_test.go @@ -0,0 +1,290 @@ +/** + * @license + * Copyright 2017 Yahoo Inc. All rights reserved. + * Modifications Copyright 2020 Yosep Lee. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package vrf + +import ( + "bytes" + "crypto/ed25519" + "crypto/rand" + "encoding/hex" + "fmt" + "io" + "math/big" + "testing" + + ed2 "github.com/yahoo/coname/ed25519/edwards25519" + ed1 "github.com/yoseplee/vrf/edwards25519" +) + +const message = "message" + +func TestGeScalarMult(t *testing.T) { + var res1, res2 [32]byte + + pk, sk, err := ed25519.GenerateKey(nil) + if err != nil { + t.Fatal(err) + } + c := hashToCurve([]byte(message), pk) + x := expandSecret(sk) + h1 := geScalarMult(c, x) + h1.ToBytes(&res1) + // copy c to h2 + var h2, h3 ed2.ExtendedGroupElement + var ts [32]byte + c.ToBytes(&ts) + h2.FromBytes(&ts) + ed2.GeScalarMult(&h3, x, &h2) + h3.ToBytes(&res2) + + if !bytes.Equal(res1[:], res2[:]) { + t.Errorf("geScalarMult mismatch:\n%s\n%s\nx=\n%s\n", hex.Dump(res1[:]), hex.Dump(res2[:]), hex.Dump(x[:])) + } +} + +func TestGeAdd(t *testing.T) { + var p1, p2 ed2.ProjectiveGroupElement + var h1, h2, c2 ed2.ExtendedGroupElement + var res1, res2, tmp [32]byte + + io.ReadFull(rand.Reader, tmp[:]) + c1 := hashToCurve([]byte(message), tmp[:]) + + io.ReadFull(rand.Reader, tmp[:]) + a1 := expandSecret(tmp[:]) + io.ReadFull(rand.Reader, tmp[:]) + a2 := expandSecret(tmp[:]) + + c1.ToBytes(&tmp) + c2.FromBytes(&tmp) + ed2.GeDoubleScalarMultVartime(&p1, a1, &c2, &[32]byte{}) + ed2.GeDoubleScalarMultVartime(&p2, a2, &c2, &[32]byte{}) + p1.ToExtended(&h1) + p2.ToExtended(&h2) + ed2.GeAdd(&h1, &h1, &h2) + h1.ToBytes(&res1) + + h3 := geAdd(geScalarMult(c1, a1), geScalarMult(c1, a2)) + h3.ToBytes(&res2) + if !bytes.Equal(res1[:], res2[:]) { + t.Errorf("geAdd mismatch: %x, %x", a1[:], a2[:]) + } +} + +var extendedBaseEl = ed1.ExtendedGroupElement{ + ed1.FieldElement{25485296, 5318399, 8791791, -8299916, -14349720, 6939349, -3324311, -7717049, 7287234, -6577708}, + ed1.FieldElement{-758052, -1832720, 13046421, -4857925, 6576754, 14371947, -13139572, 6845540, -2198883, -4003719}, + ed1.FieldElement{-947565, 6097708, -469190, 10704810, -8556274, -15589498, -16424464, -16608899, 14028613, -5004649}, + ed1.FieldElement{6966464, -2456167, 7033433, 6781840, 28785542, 12262365, -2659449, 13959020, -21013759, -5262166}, +} + +func TestG(t *testing.T) { + var res1, res2 [32]byte + g := ge() + g.ToBytes(&res1) + extendedBaseEl.ToBytes(&res2) + + if !bytes.Equal(res1[:], res2[:]) { + t.Errorf("ge mismatch") + } +} + +func toLittle(x []byte) *[32]byte { + r := new([32]byte) + for i := 0; i < 32; i++ { + r[32-i-1] = x[i] + } + return r +} + +func TestArith(t *testing.T) { + q, _ := new(big.Int).SetString(qs, 16) + + var c [32]byte + /* + // generate c randmly + var cc [64]byte + io.ReadFull(rand.Reader, cc[:]) + ed2.ScReduce(&c, &cc) + */ + for { + io.ReadFull(rand.Reader, c[:]) + if c[0] < 0x10 { + // c < q + break + } + } + + x := i2OSP(big.NewInt(1), N2) + k := i2OSP(big.NewInt(4), N2) + var z big.Int + s := z.Mod(z.Sub(os2IP(k), z.Mul(os2IP(c[:]), os2IP(x))), q) + ss := i2OSP(s, N2) + s1 := toLittle(ss) + + var s2, minusC2 [32]byte + ed2.ScNeg(&minusC2, toLittle(c[:])) + x2 := toLittle(x) + k2 := toLittle(k) + ed2.ScMulAdd(&s2, x2, &minusC2, k2) + + if !bytes.Equal(s1[:], s2[:]) { + t.Errorf("Arith mismatch\n%s\n%s", hex.Dump(ss), hex.Dump(s2[:])) + } +} + +func DoTestECVRF(t *testing.T, pk, sk []byte, msg []byte, verbose bool) { + pi, _, err := Prove(pk, sk, msg[:]) + if err != nil { + t.Fatal(err) + } + res, err := Verify(pk, pi, msg[:]) + if err != nil { + t.Fatal(err) + } + if !res { + t.Errorf("VRF failed") + } + + // when everything get through + if verbose { + fmt.Printf("alpha: %s\n", hex.EncodeToString(msg)) + fmt.Printf("x: %s\n", hex.EncodeToString(sk)) + fmt.Printf("P: %s\n", hex.EncodeToString(pk)) + fmt.Printf("pi: %s\n", hex.EncodeToString(pi)) + fmt.Printf("vrf: %s\n", hex.EncodeToString(Hash(pi))) + + r, c, s, err := decodeProof(pi) + if err != nil { + t.Fatal(err) + } + // u = (g^x)^c * g^s = P^c * g^s + var u ed1.ProjectiveGroupElement + P := os2ECP(pk, pk[31]>>7) + ed1.GeDoubleScalarMultVartime(&u, c, P, s) + fmt.Printf("r: %s\n", hex.EncodeToString(ecp2OS(r))) + fmt.Printf("c: %s\n", hex.EncodeToString(c[:])) + fmt.Printf("s: %s\n", hex.EncodeToString(s[:])) + fmt.Printf("u: %s\n", hex.EncodeToString(ecp2OSProj(&u))) + } +} + +const howMany = 1000 + +func TestECVRF(t *testing.T) { + for i := howMany; i > 0; i-- { + pk, sk, err := ed25519.GenerateKey(nil) + if err != nil { + t.Fatal(err) + } + var msg [32]byte + io.ReadFull(rand.Reader, msg[:]) + DoTestECVRF(t, pk, sk, msg[:], false) + } +} + +const pks = "885f642c8390293eb74d08cf38d3333771e9e319cfd12a21429eeff2eddeebd2" +const sks = "1fcce948db9fc312902d49745249cfd287de1a764fd48afb3cd0bdd0a8d74674885f642c8390293eb74d08cf38d3333771e9e319cfd12a21429eeff2eddeebd2" + +// old keys -- must fail +//const sks = "c4d50101fc48c65ea496105e5f0a43a67636972d0186edfb9445a2d3377e8b9c8e6fb0fd096402527e7c2375255093975324751f99ef0b7db014eb7e311befb5" +//const pks = "8e6fb0fd096402527e7c2375255093975324751f99ef0b7db014eb7e311befb5" + +func TestECVRFOnce(t *testing.T) { + pk, _ := hex.DecodeString(pks) + sk, _ := hex.DecodeString(sks) + m := []byte(message) + DoTestECVRF(t, pk, sk, m, true) + + h := hashToCurve(m, pk) + fmt.Printf("h: %s\n", hex.EncodeToString(ecp2OS(h))) +} + +func TestHashToCurve(t *testing.T) { + var m [32]byte + pk, _ := hex.DecodeString(pks) + for i := 0; i < 1000; i++ { + io.ReadFull(rand.Reader, m[:]) + P := hashToCurve(m[:], pk) + // test P on curve by P^order = infinity + var infs [32]byte + inf := geScalarMult(P, ip2F(q)) + inf.ToBytes(&infs) + if infs != [32]byte{1} { + t.Fatalf("os2ECP: not valid curve") + } + } +} + +/** + * Generally, VRF implementation has the 3 functions below: + * 1. Keygen (VRF_GEN): generates a key pair (secret key, public key) + * 2. Evaluate (VRF_EVAL): generates a pseudorandom number and its proof + * 3. Verify (VRF_VER): verifies the random number with proof + */ +func TestVrfBasicFunctions(t *testing.T) { + // msg: Hello, World! + msg, err := hex.DecodeString("48656c6c6f2c20576f726c6421") + if err != nil { + t.Fatal(err) + } + // fmt.Println(">>> msg:", len(msg), msg) + + // // 1-1. Keygen + // pk, sk, err := ed25519.GenerateKey(nil) + // if err != nil { + // t.Fatal(err) + // } + + // 1-2. Use custom keys + skRaw, err := hex.DecodeString("6e3fa40baabcafff2cb1f0eaacd4382077c3e5ce2306d4482826ab5a210fd719dbc86475e18027b20fbb846f4d6bdcd6fcc7297c845f72799eb64d3d7b152136") + if err != nil { + t.Fatal(err) + } + sk := ed25519.PrivateKey(skRaw) + pkRaw, err := hex.DecodeString("dbc86475e18027b20fbb846f4d6bdcd6fcc7297c845f72799eb64d3d7b152136") + if err != nil { + t.Fatal(err) + } + pk := ed25519.PublicKey(pkRaw) + + fmt.Println(">>> match:", pk.Equal(sk.Public())) // TODO: Require + fmt.Println(">>> pk:", len(pk), hex.EncodeToString(pk)) // 32 + fmt.Println(">>> sk:", len(sk), hex.EncodeToString(sk)) // 64 + + // 2. Evaluate + // Prove generates vrf output and corresponding proof(pi) with secret key + pi, hash, err := Prove(pk, sk, msg[:]) // `hash`` is same as `Hash(pi)` + if err != nil { + t.Fatal(err) + } + fmt.Println(">>> pi:", len(pi), hex.EncodeToString(pi)) // pi = gamma || i2OSP(c, N) || i2OSP(s, 2N) // 33 + 16 + 32 = 81 + fmt.Println(">>> hash:", len(hash), hex.EncodeToString(hash)) // 32 + + // 3. Verify + res, err := Verify(pk, pi, msg[:]) + if err != nil { + t.Fatal(err) + } + if !res { + t.Errorf("VRF failed") + } + + fmt.Printf(">>> pk||pi||msg: %s%s%s", hex.EncodeToString(pk), hex.EncodeToString(pi), hex.EncodeToString(msg)) + fmt.Println() +} diff --git a/docs/vrf.md b/docs/vrf.md new file mode 100644 index 000000000000..5ca4d5a7b4bd --- /dev/null +++ b/docs/vrf.md @@ -0,0 +1,69 @@ +# VRF + +## Install Dependencies + +```bash +$ go get github.com/ethereum/go-ethereum/crypto/vrf +``` + +# Get Results of `Prove()` + +## curl + +```bash +$ curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0", "method":"personal_edPubKey","params":["0x14e98077090336e914b8c76ef1a7c999c9e4d76e", ], "id":11}' : + +{"jsonrpc":"2.0","id":11,"result":"0xf1b59f7bcb2ff6f33e8cbb01fcab71e98d80ac4d94a3b1197d2f433c3c5ced9b"} +``` + +```bash +$ curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0", "method":"personal_prove","params":["0x14e98077090336e914b8c76ef1a7c999c9e4d76e", "", "0x48656c6c6f2c20576f726c6421"], "id":11}' : + +{"jsonrpc":"2.0","id":11,"result":"0x035d91cb46308d31126f4308b3f69872a4f835cfa162e06a8588d1bb3a50ee608101bba5caec2da6f1c2733a60fb055c470a4e00d50ae07fa57f6d4e637fb71f45359ad6bb514bdb5e37a10fe44e99a93b"} +``` + +```bash +$ curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0", "method":"personal_verify","params":["0xf1b59f7bcb2ff6f33e8cbb01fcab71e98d80ac4d94a3b1197d2f433c3c5ced9b", "0x035d91cb46308d31126f4308b3f69872a4f835cfa162e06a8588d1bb3a50ee608101bba5caec2da6f1c2733a60fb055c470a4e00d50ae07fa57f6d4e637fb71f45359ad6bb514bdb5e37a10fe44e99a93b", "0x48656c6c6f2c20576f726c6421"], "id":11}' : + +{"jsonrpc":"2.0","id":11,"result":true} +``` + +## In geth console: + +```bash +> accounts = personal.listAccounts + +["0x14e98077090336e914b8c76ef1a7c999c9e4d76e", "0x5257cee5ce8381c89b1535939fc37b357e33fe48", "0x86a1551f03fa47e85afa1360637766adcf274449"] +``` + +```bash +> personal.edPubKey(accounts[0], ) + +"0xf1b59f7bcb2ff6f33e8cbb01fcab71e98d80ac4d94a3b1197d2f433c3c5ced9b" +``` + +```bash +> personal.prove(accounts[0], , "0x48656c6c6f2c20576f726c6421") + +"0x035d91cb46308d31126f4308b3f69872a4f835cfa162e06a8588d1bb3a50ee60819dbd1abfb575f8dc792ddc78c718769f0508287cb0852497518731773a2c66bd9efb27b73338aff59e00a04aabdbb791" +``` + +```bash +> personal.verify("0xf1b59f7bcb2ff6f33e8cbb01fcab71e98d80ac4d94a3b1197d2f433c3c5ced9b", "0x035d91cb46308d31126f4308b3f69872a4f835cfa162e06a8588d1bb3a50ee60819dbd1abfb575f8dc792ddc78c718769f0508287cb0852497518731773a2c66bd9efb27b73338aff59e00a04aabdbb791", "0x48656c6c6f2c20576f726c6421") + +true +``` + +# Test + +## Test `Verify()` + +```bash +$ /usr/local/go/bin/go test -timeout 30s -run ^TestPrecompiledVRF$ github.com/ethereum/go-ethereum/core/vm -v +``` + +## Benchmark + +```bash +$ /usr/local/go/bin/go test -benchmem -run=^$ -bench ^BenchmarkPrecompiledVRF$ github.com/ethereum/go-ethereum/core/vm +``` diff --git a/go.mod b/go.mod index 8d9fa00c92f8..958390ad20ee 100644 --- a/go.mod +++ b/go.mod @@ -66,6 +66,7 @@ require ( gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200619000410-60c24ae608a6 gopkg.in/urfave/cli.v1 v1.20.0 + github.com/yoseplee/vrf v0.0.0-20210814110709-d1caf509310b ) require ( diff --git a/go.sum b/go.sum index 61d9b4676c52..b398722e527b 100644 --- a/go.sum +++ b/go.sum @@ -62,6 +62,7 @@ github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883/go.mod h1:rCTlJbsFo github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= github.com/apache/arrow/go/arrow v0.0.0-20191024131854-af6fa24be0db/go.mod h1:VTxUBvSJ3s3eHAg65PNgrsn5BtqCRPdmyXh6rAfdxN0= github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o= +github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY= github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/aws/aws-sdk-go-v2 v1.2.0 h1:BS+UYpbsElC82gB+2E2jiCBg36i8HlubTB/dO/moQ9c= @@ -131,13 +132,17 @@ github.com/consensys/bavard v0.1.8-0.20210406032232-f3452dc9b572/go.mod h1:Bpd0/ github.com/consensys/gnark-crypto v0.4.1-0.20210426202927-39ac3d4b3f1f h1:C43yEtQ6NIf4ftFXD/V55gnGFgPbMQobd//YlnLjUJ8= github.com/consensys/gnark-crypto v0.4.1-0.20210426202927-39ac3d4b3f1f/go.mod h1:815PAHg3wvysy0SyIqanF8gZ0Y1wjk/hrDHD/iT88+Q= github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= +github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/etcd v3.3.13+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= +github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= +github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= github.com/coreos/go-semver v0.3.0 h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM= github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/go-systemd/v22 v22.3.2 h1:D9/bQk5vlXQFZ6Kwuu6zaiXJ9oTPe68++AzAJc1DzSI= github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= +github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= @@ -197,6 +202,7 @@ github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeME github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd/go.mod h1:/20jfyN9Y5QPEAprSgKAUr+glWDY39ZiUEAYOEv5dsE= github.com/glycerine/goconvey v0.0.0-20190410193231-58a59202ab31/go.mod h1:Ogl1Tioa0aV7gstGFO7KhffUsb9M4ydbEbbxpcEDc24= github.com/go-chi/chi/v5 v5.0.0/go.mod h1:BBug9lr0cqtdAhsu6R4AAdvufI0/XBzAQSsUqJpoZOs= +github.com/go-echarts/go-echarts v0.0.0-20190915064101-cbb3b43ade5d/go.mod h1:v4lFmU586g/A0xaH1RMDS86YlYrwpj8eHtR+xBReKE8= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= @@ -216,6 +222,11 @@ github.com/go-sourcemap/sourcemap v2.1.3+incompatible/go.mod h1:F8jJfvm2KbVjc5Nq github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-stack/stack v1.8.0 h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gobuffalo/envy v1.7.0/go.mod h1:n7DRkBerg/aorDM8kbduw5dN3oXGswK5liaSCx4T5NI= +github.com/gobuffalo/logger v1.0.0/go.mod h1:2zbswyIUa45I+c+FLXuWl9zSWEiVuthsk8ze5s8JvPs= +github.com/gobuffalo/packd v0.3.0/go.mod h1:zC7QkmNkYVGKPw4tHpBQ+ml7W/3tIebgeo1b36chA3Q= +github.com/gobuffalo/packr v1.30.1/go.mod h1:ljMyFO2EcrnzsHsN99cvbq055Y9OhRrIaviy289eRuk= +github.com/gobuffalo/packr/v2 v2.5.1/go.mod h1:8f9c96ITobJlPzI44jj+4tHnEKNt0xXWSVlXRN9X1Iw= github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= github.com/gofrs/uuid v3.3.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= @@ -351,6 +362,7 @@ github.com/jedisct1/go-minisign v0.0.0-20190909160543-45766022959e/go.mod h1:G1C github.com/jessevdk/go-flags v0.0.0-20141203071132-1679536dcc89/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= +github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= github.com/jonboulle/clockwork v0.2.2 h1:UOGuzwb1PwsrDAObMuhUnj0p5ULPj8V/xJ7Kx9qUBdQ= github.com/jonboulle/clockwork v0.2.2/go.mod h1:Pkfl5aHPm1nk2H9h0bjmnJD/BcgbGXUBGnn1kMkgxc8= @@ -371,6 +383,7 @@ github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E github.com/jwilder/encoding v0.0.0-20170811194829-b4e1701a28ef/go.mod h1:Ct9fl0F6iIOGgxJ5npU/IUOhOhqlVrGjyIZc8/MagT0= github.com/karalabe/usb v0.0.2 h1:M6QQBNxF+CQ8OFvxrT90BA0qBOXymndZnk5q235mFc4= github.com/karalabe/usb v0.0.2/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= +github.com/karrick/godirwalk v1.10.12/go.mod h1:RoGL9dQei4vP9ilrpETWE8CLOZ1kiN0LhBygSwrAsHA= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= @@ -381,6 +394,7 @@ github.com/klauspost/cpuid v0.0.0-20170728055534-ae7887de9fa5/go.mod h1:Pj4uuM52 github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6/go.mod h1:+ZoRqAPRLkC4NPOvfYeR5KNOrY6TD+/sAC3HXPZgDYg= github.com/klauspost/pgzip v1.0.2-0.20170402124221-0bf5dcad4ada/go.mod h1:Ch1tH69qFZu15pkjo5kYi6mth2Zzwzt50oCQKQE9RUs= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= @@ -397,6 +411,7 @@ github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL github.com/leanovate/gopter v0.2.9 h1:fQjYxZaynp97ozCzfOyOuAGOU4aU/z37zf/tOujFk7c= github.com/leanovate/gopter v0.2.9/go.mod h1:U2L/78B+KVFIx2VmW6onHJQzXtFb+p5y3y2Sh+Jxxv8= github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= @@ -515,9 +530,11 @@ github.com/rjeczalik/notify v0.9.1 h1:CLCKso/QK1snAlnhNR/CNvNiFU2saUtjV0bx3EwNeC github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRrjvIXnJho= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= +github.com/rogpeppe/go-internal v1.1.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rs/cors v1.7.0 h1:+88SsELBHx5r+hZ8TCkggzSstaWNbDvThkVK8H6f9ik= github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= +github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= @@ -541,11 +558,13 @@ github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasO github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= +github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= github.com/spf13/cobra v1.1.3/go.mod h1:pGADOWyqRD/YMrPZigI/zbliZ2wVD/23d+is3pSWzOo= github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= +github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s= github.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4 h1:Gb2Tyox57NRNuZ2d3rmvB3pcmbu7O1RS3m8WRx7ilrg= github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q= @@ -571,6 +590,7 @@ github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802 h1:uruHq4 github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/tyler-smith/go-bip39 v1.0.1-0.20181017060643-dbb3b84ba2ef h1:wHSqTBrZW24CsNJDfeh9Ex6Pm0Rcpc7qrgKBiL44vF4= github.com/tyler-smith/go-bip39 v1.0.1-0.20181017060643-dbb3b84ba2ef/go.mod h1:sJ5fKU0s6JVwZjjcUEX2zFOnvq0ASQ2K9Zr6cf67kNs= +github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0= github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI= github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= github.com/valyala/fasttemplate v1.0.1/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPUpymEIMZ47gx8= @@ -579,6 +599,10 @@ github.com/willf/bitset v1.1.3/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPyS github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8= github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= github.com/xlab/treeprint v0.0.0-20180616005107-d6fb6747feb6/go.mod h1:ce1O1j6UtZfjr22oyGxGLbauSBp2YVXpARAosm7dHBg= +github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= +github.com/yahoo/coname v0.0.0-20170609175141-84592ddf8673/go.mod h1:Wq2sZrP++Us4tAw1h58MHS8BGIpC4NmKHfvw2QWBe9U= +github.com/yoseplee/vrf v0.0.0-20210814110709-d1caf509310b h1:P+RO/IfYtPQHAm+8V8mwVsj6x0nwKR7/6nsWmyN3nYI= +github.com/yoseplee/vrf v0.0.0-20210814110709-d1caf509310b/go.mod h1:KselA/fRyGFKpcu7sUBHPOz6Ji+7J9GzCKF/c6/ssbI= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= @@ -640,9 +664,11 @@ go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo= golang.org/x/crypto v0.0.0-20170930174604-9419663f5a44/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190621222207-cc06ce4a13d4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190909091759-094676da4a83/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= @@ -737,6 +763,7 @@ golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -744,6 +771,7 @@ golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190515120540-06a5c4944438/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -810,6 +838,7 @@ golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBn golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190624180213-70d37148ca0c/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 20a7c6e313ad..1e50f67525a0 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -41,6 +41,7 @@ import ( "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/core/vm" "github.com/ethereum/go-ethereum/crypto" + "github.com/ethereum/go-ethereum/crypto/vrf" "github.com/ethereum/go-ethereum/eth/tracers/logger" "github.com/ethereum/go-ethereum/log" "github.com/ethereum/go-ethereum/p2p" @@ -602,6 +603,57 @@ func (s *PrivateAccountAPI) InitializeWallet(ctx context.Context, url string) (s } } +// Get ED25519 Public Key from address (same private key) +func (s *PrivateAccountAPI) EdPubKey(ctx context.Context, addr common.Address, passwd string) (hexutil.Bytes, error) { + // Look up the wallet containing the requested signer + account := accounts.Account{Address: addr} + + wallet, err := s.b.AccountManager().Find(account) + if err != nil { + return nil, err + } + + // Get + pubkey, err := wallet.EdPubKeyWithPassphrase(account, passwd) + if err != nil { + log.Warn("Failed Get ED25519 Public Key", "address", addr, "err", err) + return nil, err + } + return pubkey, nil +} + +// VRF Prove +func (s *PrivateAccountAPI) Prove(ctx context.Context, addr common.Address, passwd string, msg hexutil.Bytes) (hexutil.Bytes, error) { + // Look up the wallet containing the requested signer + account := accounts.Account{Address: addr} + + wallet, err := s.b.AccountManager().Find(account) + if err != nil { + return nil, err + } + + // Get + prove, err := wallet.ProveWithPassphrase(account, passwd, msg) + if err != nil { + log.Warn("Failed to VRF Prove", "address", addr, "msg", msg, "err", err) + return nil, err + } + return prove, nil +} + +// VRF Verify +func (s *PrivateAccountAPI) Verify(ctx context.Context, pk, pi, msg hexutil.Bytes) (bool, error) { + // Look up the wallet containing the requested signer + + // Get + res, err := vrf.Verify(pk, pi, msg[:]) + if err != nil { + log.Warn("Failed to VRF Verify", "pubkey", pk, "pi", pi, "msg", msg, "err", err) + return false, err + } + return res, nil +} + // Unpair deletes a pairing between wallet and geth. func (s *PrivateAccountAPI) Unpair(ctx context.Context, url string, pin string) error { wallet, err := s.am.Wallet(url) diff --git a/internal/web3ext/web3ext.go b/internal/web3ext/web3ext.go index df590c3c4030..5c9bf14ada77 100644 --- a/internal/web3ext/web3ext.go +++ b/internal/web3ext/web3ext.go @@ -823,7 +823,22 @@ web3._extend({ name: 'initializeWallet', call: 'personal_initializeWallet', params: 1 - }) + }), + new web3._extend.Method({ + name: 'edPubKey', + call: 'personal_edPubKey', + params: 2 + }), + new web3._extend.Method({ + name: 'prove', + call: 'personal_prove', + params: 3 + }), + new web3._extend.Method({ + name: 'verify', + call: 'personal_verify', + params: 3 + }), ], properties: [ new web3._extend.Property({ diff --git a/mobile/accounts.go b/mobile/accounts.go index 4d979bffff5d..76c811efd5a4 100644 --- a/mobile/accounts.go +++ b/mobile/accounts.go @@ -219,3 +219,19 @@ func (ks *KeyStore) ImportPreSaleKey(keyJSON []byte, passphrase string) (ccount } return &Account{account}, nil } + +func (ks *KeyStore) EdPubKey(a accounts.Account) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + +func (ks *KeyStore) EdPubKeyWithPassphrase(a accounts.Account, passphrase string) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + +func (ks *KeyStore) Prove(a accounts.Account, m []byte) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} + +func (ks *KeyStore) ProveWithPassphrase(a accounts.Account, passphrase string, m []byte) ([]byte, error) { + return nil, accounts.ErrNotSupported // TODO +} diff --git a/params/protocol_params.go b/params/protocol_params.go index 45c19273a558..c83ae14365c4 100644 --- a/params/protocol_params.go +++ b/params/protocol_params.go @@ -154,6 +154,8 @@ const ( Bls12381MapG1Gas uint64 = 5500 // Gas price for BLS12-381 mapping field element to G1 operation Bls12381MapG2Gas uint64 = 110000 // Gas price for BLS12-381 mapping field element to G2 operation + VrfVerifyGas uint64 = 3000 // TODO (lukepark327): VRF Verify gas price + // The Refund Quotient is the cap on how much of the used gas can be refunded. Before EIP-3529, // up to half the consumed gas could be refunded. Redefined as 1/5th in EIP-3529 RefundQuotient uint64 = 2 diff --git a/signer/core/api.go b/signer/core/api.go index f06fbeb76dd1..867965327c30 100644 --- a/signer/core/api.go +++ b/signer/core/api.go @@ -647,3 +647,19 @@ func (api *SignerAPI) SignGnosisSafeTx(ctx context.Context, signerAddress common func (api *SignerAPI) Version(ctx context.Context) (string, error) { return ExternalAPIVersion, nil } + +func (api *SignerAPI) EdPubKey(account accounts.Account) ([]byte, error) { + return nil, fmt.Errorf("vrf-operations not supported on signers yet") // TODO +} + +func (api *SignerAPI) EdPubKeyWithPassphrase(account accounts.Account, passphrase string) ([]byte, error) { + return nil, fmt.Errorf("vrf-operations not supported on signers yet") // TODO +} + +func (api *SignerAPI) Prove(account accounts.Account, message []byte) ([]byte, error) { + return nil, fmt.Errorf("vrf-operations not supported on signers yet") // TODO +} + +func (api *SignerAPI) ProveWithPassphrase(account accounts.Account, passphrase string, message []byte) ([]byte, error) { + return nil, fmt.Errorf("vrf-operations not supported on signers yet") // TODO +} From 80ba68e4d0ccf1b2631042c389af109b89ad48f1 Mon Sep 17 00:00:00 2001 From: lukepark327 Date: Mon, 9 Jan 2023 10:35:11 +0900 Subject: [PATCH 02/25] build: update go.mod and go.sum && chore: update vrf.md build: update go.mod && chore: update vrf.md build: update go.mod build: update go.mod & go.sum --- docs/vrf.md | 14 +++++++++++++- go.mod | 1 + go.sum | 1 + 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/vrf.md b/docs/vrf.md index 5ca4d5a7b4bd..694038ac77fb 100644 --- a/docs/vrf.md +++ b/docs/vrf.md @@ -1,6 +1,6 @@ # VRF -## Install Dependencies +# Install Dependencies ```bash $ go get github.com/ethereum/go-ethereum/crypto/vrf @@ -67,3 +67,15 @@ $ /usr/local/go/bin/go test -timeout 30s -run ^TestPrecompiledVRF$ github.com/et ```bash $ /usr/local/go/bin/go test -benchmem -run=^$ -bench ^BenchmarkPrecompiledVRF$ github.com/ethereum/go-ethereum/core/vm ``` + +# Node + +```bash +$ ./build/bin/geth --datadir data account new + +$ ./build/bin/geth --datadir data --networkid 327 --allow-insecure-unlock --http --http.api 'web3,eth,net,debug,personal' --http.corsdomain '*' --http.addr 0.0.0.0 --http.port 8545 --port 30301 +``` + +```bash +$ ./build/bin/geth attach http://localhost:8545 +``` diff --git a/go.mod b/go.mod index 958390ad20ee..fcb61a8afc63 100644 --- a/go.mod +++ b/go.mod @@ -67,6 +67,7 @@ require ( gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200619000410-60c24ae608a6 gopkg.in/urfave/cli.v1 v1.20.0 github.com/yoseplee/vrf v0.0.0-20210814110709-d1caf509310b + github.com/yahoo/coname v0.0.0-20170609175141-84592ddf8673 ) require ( diff --git a/go.sum b/go.sum index b398722e527b..06a61b8aaf8a 100644 --- a/go.sum +++ b/go.sum @@ -600,6 +600,7 @@ github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 h1:eY9dn8+vbi4tKz5 github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= github.com/xlab/treeprint v0.0.0-20180616005107-d6fb6747feb6/go.mod h1:ce1O1j6UtZfjr22oyGxGLbauSBp2YVXpARAosm7dHBg= github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= +github.com/yahoo/coname v0.0.0-20170609175141-84592ddf8673 h1:PSg2cEFd+9Ae/r5x5iO8cJ3VmTbZNQp6X8tHDmVJAbA= github.com/yahoo/coname v0.0.0-20170609175141-84592ddf8673/go.mod h1:Wq2sZrP++Us4tAw1h58MHS8BGIpC4NmKHfvw2QWBe9U= github.com/yoseplee/vrf v0.0.0-20210814110709-d1caf509310b h1:P+RO/IfYtPQHAm+8V8mwVsj6x0nwKR7/6nsWmyN3nYI= github.com/yoseplee/vrf v0.0.0-20210814110709-d1caf509310b/go.mod h1:KselA/fRyGFKpcu7sUBHPOz6Ji+7J9GzCKF/c6/ssbI= From cb24b8bca363da4a7756aae9ecc492709188d82d Mon Sep 17 00:00:00 2001 From: lukepark327 Date: Mon, 9 Jan 2023 11:28:26 +0900 Subject: [PATCH 03/25] chore: to pass env GO111MODULE=on go run build/ci.go lint build/cache/golangci-lint-1.49.0-darwin-arm64.tar.gz is up-to-date >>> build/cache/golangci-lint-1.49.0-darwin-arm64/golangci-lint run --config .golangci.yml ./... You have achieved perfection. --- crypto/vrf/vrf.go | 2 +- crypto/vrf/vrf_test.go | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/crypto/vrf/vrf.go b/crypto/vrf/vrf.go index 4cd917cacb76..c5621a9af4b8 100644 --- a/crypto/vrf/vrf.go +++ b/crypto/vrf/vrf.go @@ -192,7 +192,7 @@ func os2ECP(os []byte, sign byte) *edwards25519.ExtendedGroupElement { func s2OS(s []byte) []byte { sign := s[31] >> 7 // @@ we should clear the sign bit?? os := []byte{sign + 2} // Y = 0x02 if positive or 0x03 if negative - os = append([]byte(os), s...) + os = append(os, s...) return os } diff --git a/crypto/vrf/vrf_test.go b/crypto/vrf/vrf_test.go index a7b435b7d5ab..2c6a43e536a6 100644 --- a/crypto/vrf/vrf_test.go +++ b/crypto/vrf/vrf_test.go @@ -87,10 +87,10 @@ func TestGeAdd(t *testing.T) { } var extendedBaseEl = ed1.ExtendedGroupElement{ - ed1.FieldElement{25485296, 5318399, 8791791, -8299916, -14349720, 6939349, -3324311, -7717049, 7287234, -6577708}, - ed1.FieldElement{-758052, -1832720, 13046421, -4857925, 6576754, 14371947, -13139572, 6845540, -2198883, -4003719}, - ed1.FieldElement{-947565, 6097708, -469190, 10704810, -8556274, -15589498, -16424464, -16608899, 14028613, -5004649}, - ed1.FieldElement{6966464, -2456167, 7033433, 6781840, 28785542, 12262365, -2659449, 13959020, -21013759, -5262166}, + X: ed1.FieldElement{25485296, 5318399, 8791791, -8299916, -14349720, 6939349, -3324311, -7717049, 7287234, -6577708}, + Y: ed1.FieldElement{-758052, -1832720, 13046421, -4857925, 6576754, 14371947, -13139572, 6845540, -2198883, -4003719}, + Z: ed1.FieldElement{-947565, 6097708, -469190, 10704810, -8556274, -15589498, -16424464, -16608899, 14028613, -5004649}, + T: ed1.FieldElement{6966464, -2456167, 7033433, 6781840, 28785542, 12262365, -2659449, 13959020, -21013759, -5262166}, } func TestG(t *testing.T) { From 38cd544a2d5d829e0cde589123e01f1012bdf4da Mon Sep 17 00:00:00 2001 From: lukepark327 Date: Fri, 13 Jan 2023 09:55:35 +0900 Subject: [PATCH 04/25] fix: precompiled address --- contracts/vrf/contract/vrf.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/vrf/contract/vrf.sol b/contracts/vrf/contract/vrf.sol index 0423f0d7392f..993a610e378f 100644 --- a/contracts/vrf/contract/vrf.sol +++ b/contracts/vrf/contract/vrf.sol @@ -26,7 +26,7 @@ abstract contract VRF { let memPtr := mload(0x40) let success := staticcall( gas(), - 0x14, + 0x13, add(input, 0x20), mload(input), memPtr, From cf4bde9633ae4495a9ad686a458bea1931ec0f4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=92=E1=85=A1=E1=86=AB=E1=84=8B=E1=85=AF=E1=86=AB?= =?UTF-8?q?=E1=84=8C=E1=85=AE=E1=86=AB?= Date: Tue, 28 Mar 2023 11:12:45 +0900 Subject: [PATCH 05/25] Added functions required to support fee delegation transaction types --- accounts/abi/bind/backends/simulated.go | 3 + accounts/keystore/keystore.go | 11 ++ accounts/scwallet/wallet.go | 12 ++ core/error.go | 12 ++ core/state_transition.go | 76 +++++++--- core/tx_pool.go | 73 +++++++++- core/types/access_list_tx.go | 6 + core/types/dynamic_fee_tx.go | 6 + core/types/feedelegate_dynamic_fee_tx.go | 136 ++++++++++++++++++ core/types/legacy_tx.go | 5 + core/types/receipt.go | 6 +- core/types/transaction.go | 63 ++++++++- core/types/transaction_marshalling.go | 107 +++++++++++++++ core/types/transaction_signing.go | 99 ++++++++++++- interfaces.go | 2 + internal/ethapi/api.go | 168 +++++++++++++++++++++++ internal/ethapi/transaction_args.go | 30 ++++ internal/web3ext/web3ext.go | 14 +- light/txpool.go | 27 +++- params/config.go | 10 ++ 20 files changed, 836 insertions(+), 30 deletions(-) create mode 100644 core/types/feedelegate_dynamic_fee_tx.go diff --git a/accounts/abi/bind/backends/simulated.go b/accounts/abi/bind/backends/simulated.go index ac696f446be6..e26341d9df5d 100644 --- a/accounts/abi/bind/backends/simulated.go +++ b/accounts/abi/bind/backends/simulated.go @@ -813,6 +813,9 @@ func (m callMsg) Value() *big.Int { return m.CallMsg.Value } func (m callMsg) Data() []byte { return m.CallMsg.Data } func (m callMsg) AccessList() types.AccessList { return m.CallMsg.AccessList } +// fee delegation +func (m callMsg) FeePayer() *common.Address { return m.CallMsg.FeePayer } + // filterBackend implements filters.Backend to support filtering for logs without // taking bloom-bits acceleration structures into account. type filterBackend struct { diff --git a/accounts/keystore/keystore.go b/accounts/keystore/keystore.go index 88dcfbeb69e0..066fe4b02682 100644 --- a/accounts/keystore/keystore.go +++ b/accounts/keystore/keystore.go @@ -283,6 +283,11 @@ func (ks *KeyStore) SignTx(a accounts.Account, tx *types.Transaction, chainID *b if !found { return nil, ErrLocked } + // fee delegation + if tx.Type() == types.FeeDelegateDynamicFeeTxType { + signer := types.NewFeeDelegateSigner(chainID) + return types.SignTx(tx, signer, unlockedKey.PrivateKey) + } // Depending on the presence of the chain ID, sign with 2718 or homestead signer := types.LatestSignerForChainID(chainID) return types.SignTx(tx, signer, unlockedKey.PrivateKey) @@ -308,6 +313,12 @@ func (ks *KeyStore) SignTxWithPassphrase(a accounts.Account, passphrase string, return nil, err } defer zeroKey(key.PrivateKey) + // fee delegation + if tx.Type() == types.FeeDelegateDynamicFeeTxType { + signer := types.NewFeeDelegateSigner(chainID) + return types.SignTx(tx, signer, key.PrivateKey) + } + // Depending on the presence of the chain ID, sign with or without replay protection. signer := types.LatestSignerForChainID(chainID) return types.SignTx(tx, signer, key.PrivateKey) diff --git a/accounts/scwallet/wallet.go b/accounts/scwallet/wallet.go index 5e74e606e13f..9fd447c4c9ee 100644 --- a/accounts/scwallet/wallet.go +++ b/accounts/scwallet/wallet.go @@ -699,6 +699,18 @@ func (w *Wallet) signHash(account accounts.Account, hash []byte) ([]byte, error) // the needed details via SignTxWithPassphrase, or by other means (e.g. unlock // the account in a keystore). func (w *Wallet) SignTx(account accounts.Account, tx *types.Transaction, chainID *big.Int) (*types.Transaction, error) { + + // fee delegation + if tx.Type() == types.FeeDelegateDynamicFeeTxType { + signer := types.NewFeeDelegateSigner(chainID) + hash := signer.Hash(tx) + sig, err := w.signHash(account, hash[:]) + if err != nil { + return nil, err + } + return tx.WithSignature(signer, sig) + } + signer := types.LatestSignerForChainID(chainID) hash := signer.Hash(tx) sig, err := w.signHash(account, hash[:]) diff --git a/core/error.go b/core/error.go index 51ebefc137bc..a611c7c23344 100644 --- a/core/error.go +++ b/core/error.go @@ -96,4 +96,16 @@ var ( // ErrSenderNoEOA is returned if the sender of a transaction is a contract. ErrSenderNoEOA = errors.New("sender not an eoa") + + // fee delegation + // ErrInvalidFeePayer is returned if the transaction contains an invalid feePayer's signature. + ErrInvalidFeePayer = errors.New("invalid fee delegation feePayer") + + // ErrFeePayerInsufficientFunds is returned if the fee cost of executing a transaction + // is higher than the balance of the feePayer's account. + ErrFeePayerInsufficientFunds = errors.New("fee delegation feePayer's insufficient funds for gas * price") + + // ErrSenderInsufficientFunds is returned if the value cost of executing a transaction + // is higher than the balance of the sender's account. + ErrSenderInsufficientFunds = errors.New("fee delegation sender's account insufficient funds for value") ) diff --git a/core/state_transition.go b/core/state_transition.go index 980a250ec495..b202b2619020 100644 --- a/core/state_transition.go +++ b/core/state_transition.go @@ -80,6 +80,8 @@ type Message interface { IsFake() bool Data() []byte AccessList() types.AccessList + // fee delegation + FeePayer() *common.Address } // ExecutionResult includes all output after executing given evm @@ -194,24 +196,57 @@ func (st *StateTransition) to() common.Address { } func (st *StateTransition) buyGas() error { - mgval := new(big.Int).SetUint64(st.msg.Gas()) - mgval = mgval.Mul(mgval, st.gasPrice) - balanceCheck := mgval - if st.gasFeeCap != nil { - balanceCheck = new(big.Int).SetUint64(st.msg.Gas()) - balanceCheck = balanceCheck.Mul(balanceCheck, st.gasFeeCap) - balanceCheck.Add(balanceCheck, st.value) - } - if have, want := st.state.GetBalance(st.msg.From()), balanceCheck; have.Cmp(want) < 0 { - return fmt.Errorf("%w: address %v have %v want %v", ErrInsufficientFunds, st.msg.From().Hex(), have, want) - } - if err := st.gp.SubGas(st.msg.Gas()); err != nil { - return err - } - st.gas += st.msg.Gas() + // fee delegation + if st.msg.FeePayer() != nil { + if !st.evm.ChainConfig().IsFeeDelegation(st.evm.Context.BlockNumber) { + return fmt.Errorf("%w: fee delegation type not supperted", ErrTxTypeNotSupported) + } + FDmgval := new(big.Int).SetUint64(st.msg.Gas()) + FDmgval = FDmgval.Mul(FDmgval, st.gasFeeCap) + feePayer := *st.msg.FeePayer() + if feePayer == st.msg.From() { + FDbalanceCheck := new(big.Int).SetUint64(st.msg.Gas()) + FDbalanceCheck = FDbalanceCheck.Mul(FDbalanceCheck, st.gasFeeCap) + FDbalanceCheck.Add(FDbalanceCheck, st.value) + if have, want := st.state.GetBalance(feePayer), FDbalanceCheck; have.Cmp(want) < 0 { + return ErrFeePayerInsufficientFunds + } + } else { + if have, want := st.state.GetBalance(feePayer), FDmgval; have.Cmp(want) < 0 { + return ErrFeePayerInsufficientFunds + } + if have, want := st.state.GetBalance(st.msg.From()), st.value; have.Cmp(want) < 0 { + return fmt.Errorf("%w: sender address %v have %v want %v", ErrInsufficientFunds, st.msg.From().Hex(), have, want) + } + } + if err := st.gp.SubGas(st.msg.Gas()); err != nil { + return err + } + st.gas += st.msg.Gas() - st.initialGas = st.msg.Gas() - st.state.SubBalance(st.msg.From(), mgval) + st.initialGas = st.msg.Gas() + st.state.SubBalance(feePayer, FDmgval) + } else { + mgval := new(big.Int).SetUint64(st.msg.Gas()) + mgval = mgval.Mul(mgval, st.gasPrice) + balanceCheck := mgval + if st.gasFeeCap != nil { + balanceCheck = new(big.Int).SetUint64(st.msg.Gas()) + balanceCheck = balanceCheck.Mul(balanceCheck, st.gasFeeCap) + balanceCheck.Add(balanceCheck, st.value) + } + + if have, want := st.state.GetBalance(st.msg.From()), balanceCheck; have.Cmp(want) < 0 { + return fmt.Errorf("%w: address %v have %v want %v", ErrInsufficientFunds, st.msg.From().Hex(), have, want) + } + if err := st.gp.SubGas(st.msg.Gas()); err != nil { + return err + } + st.gas += st.msg.Gas() + + st.initialGas = st.msg.Gas() + st.state.SubBalance(st.msg.From(), mgval) + } return nil } @@ -374,8 +409,13 @@ func (st *StateTransition) refundGas(refundQuotient uint64) { // Return ETH for remaining gas, exchanged at the original rate. remaining := new(big.Int).Mul(new(big.Int).SetUint64(st.gas), st.gasPrice) - st.state.AddBalance(st.msg.From(), remaining) + // fee delegation + if st.msg.FeePayer() != nil { + st.state.AddBalance(*st.msg.FeePayer(), remaining) + } else { + st.state.AddBalance(st.msg.From(), remaining) + } // Also return remaining gas to the block gas counter so it is // available for the next transaction. st.gp.AddGas(st.gas) diff --git a/core/tx_pool.go b/core/tx_pool.go index 8b638244b489..93fb9c0db4f2 100644 --- a/core/tx_pool.go +++ b/core/tx_pool.go @@ -248,6 +248,8 @@ type TxPool struct { istanbul bool // Fork indicator whether we are in the istanbul stage. eip2718 bool // Fork indicator whether we are using EIP-2718 type transactions. eip1559 bool // Fork indicator whether we are using EIP-1559 type transactions. + // fee delegation + feedelegation bool // Fork indicator whether we are using fee delegation type transactions. currentState *state.StateDB // Current state in the blockchain head pendingNonces *txNoncer // Pending state tracking virtual nonces @@ -393,6 +395,20 @@ func (pool *TxPool) loop() { case <-evict.C: pool.mu.Lock() for addr := range pool.queue { + // fee delegation + if pool.feedelegation { + list := pool.queue[addr].Flatten() + for _, tx := range list { + if tx.Type() == types.FeeDelegateDynamicFeeTxType && tx.FeePayer() != nil { + // check feePayer's balance + if pool.currentState.GetBalance(*tx.FeePayer()).Cmp(tx.FeePayerCost()) < 0 { + pool.removeTx(tx.Hash(), true) + queuedEvictionMeter.Mark(int64(1)) + } + } + } + } + // Skip local transactions from the eviction mechanism if pool.locals.contains(addr) { continue @@ -639,6 +655,11 @@ func (pool *TxPool) validateTx(tx *types.Transaction, local bool) error { if !pool.eip1559 && tx.Type() == types.DynamicFeeTxType { return ErrTxTypeNotSupported } + // fee delegation + // Reject fee delegation dynamic fee transactions until feedelegation activates. + if !pool.feedelegation && tx.Type() == types.FeeDelegateDynamicFeeTxType { + return ErrTxTypeNotSupported + } // Reject transactions over defined size to prevent DOS attacks if uint64(tx.Size()) > txMaxSize { return ErrOversizedData @@ -682,8 +703,24 @@ func (pool *TxPool) validateTx(tx *types.Transaction, local bool) error { } // Transactor should have enough funds to cover the costs // cost == V + GP * GL - if pool.currentState.GetBalance(from).Cmp(tx.Cost()) < 0 { - return ErrInsufficientFunds + + // fee delegation + if tx.Type() == types.FeeDelegateDynamicFeeTxType { + // Make sure the transaction is signed properly. + feePayer, err := types.FeePayer(types.NewFeeDelegateSigner(pool.chainconfig.ChainID), tx) + if *tx.FeePayer() != feePayer || err != nil { + return ErrInvalidFeePayer + } + if pool.currentState.GetBalance(feePayer).Cmp(tx.FeePayerCost()) < 0 { + return ErrFeePayerInsufficientFunds + } + if pool.currentState.GetBalance(from).Cmp(tx.Cost()) < 0 { + return ErrSenderInsufficientFunds + } + } else { + if pool.currentState.GetBalance(from).Cmp(tx.Cost()) < 0 { + return ErrInsufficientFunds + } } // Ensure the transaction has more gas than the basic tx fee. intrGas, err := IntrinsicGas(tx.Data(), tx.AccessList(), tx.To() == nil, true, pool.istanbul) @@ -1358,6 +1395,8 @@ func (pool *TxPool) reset(oldHead, newHead *types.Header) { pool.istanbul = pool.chainconfig.IsIstanbul(next) pool.eip2718 = pool.chainconfig.IsBerlin(next) pool.eip1559 = pool.chainconfig.IsLondon(next) + // fee delegation + pool.feedelegation = pool.chainconfig.IsFeeDelegation(next) } // promoteExecutables moves transactions that have become processable from the @@ -1382,6 +1421,21 @@ func (pool *TxPool) promoteExecutables(accounts []common.Address) []*types.Trans log.Trace("Removed old queued transactions", "count", len(forwards)) // Drop all transactions that are too costly (low balance or out of gas) drops, _ := list.Filter(pool.currentState.GetBalance(addr), pool.currentMaxGas) + + // fee delegation + if pool.feedelegation { + for _, tx := range list.Flatten() { + if tx.Type() == types.FeeDelegateDynamicFeeTxType && tx.FeePayer() != nil { + feePayer := *tx.FeePayer() + if pool.currentState.GetBalance(feePayer).Cmp(tx.FeePayerCost()) < 0 { + log.Trace("promoteExecutables", "hash", tx.Hash().String()) + list.Remove(tx) + drops = append(drops, tx) + } + } + } + } + for _, tx := range drops { hash := tx.Hash() pool.all.Remove(hash) @@ -1579,6 +1633,21 @@ func (pool *TxPool) demoteUnexecutables() { } // Drop all transactions that are too costly (low balance or out of gas), and queue any invalids back for later drops, invalids := list.Filter(pool.currentState.GetBalance(addr), pool.currentMaxGas) + + // fee delegation + if pool.feedelegation { + for _, tx := range list.Flatten() { + if tx.Type() == types.FeeDelegateDynamicFeeTxType && tx.FeePayer() != nil { + feePayer := *tx.FeePayer() + if pool.currentState.GetBalance(feePayer).Cmp(tx.FeePayerCost()) < 0 { + log.Trace("demoteUnexecutables", "hash", tx.Hash().String()) + list.Remove(tx) + drops = append(drops, tx) + } + } + } + } + for _, tx := range drops { hash := tx.Hash() log.Trace("Removed unpayable pending transaction", "hash", hash) diff --git a/core/types/access_list_tx.go b/core/types/access_list_tx.go index 620848fe624a..572d110ad040 100644 --- a/core/types/access_list_tx.go +++ b/core/types/access_list_tx.go @@ -106,6 +106,12 @@ func (tx *AccessListTx) value() *big.Int { return tx.Value } func (tx *AccessListTx) nonce() uint64 { return tx.Nonce } func (tx *AccessListTx) to() *common.Address { return tx.To } +// fee delegation +func (tx *AccessListTx) feePayer() *common.Address { return nil } +func (tx *AccessListTx) rawFeePayerSignatureValues() (v, r, s *big.Int) { + return nil, nil, nil +} + func (tx *AccessListTx) rawSignatureValues() (v, r, s *big.Int) { return tx.V, tx.R, tx.S } diff --git a/core/types/dynamic_fee_tx.go b/core/types/dynamic_fee_tx.go index 53f246ea1fad..b1d242391b30 100644 --- a/core/types/dynamic_fee_tx.go +++ b/core/types/dynamic_fee_tx.go @@ -94,6 +94,12 @@ func (tx *DynamicFeeTx) value() *big.Int { return tx.Value } func (tx *DynamicFeeTx) nonce() uint64 { return tx.Nonce } func (tx *DynamicFeeTx) to() *common.Address { return tx.To } +// fee delegation +func (tx *DynamicFeeTx) feePayer() *common.Address { return nil } +func (tx *DynamicFeeTx) rawFeePayerSignatureValues() (v, r, s *big.Int) { + return nil, nil, nil +} + func (tx *DynamicFeeTx) rawSignatureValues() (v, r, s *big.Int) { return tx.V, tx.R, tx.S } diff --git a/core/types/feedelegate_dynamic_fee_tx.go b/core/types/feedelegate_dynamic_fee_tx.go new file mode 100644 index 000000000000..bec388c38368 --- /dev/null +++ b/core/types/feedelegate_dynamic_fee_tx.go @@ -0,0 +1,136 @@ +// Copyright 2021 The go-ethereum Authors +// This file is part of the go-ethereum library. +// +// The go-ethereum library is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// The go-ethereum library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public License +// along with the go-ethereum library. If not, see . + +package types + +import ( + "math/big" + + "github.com/ethereum/go-ethereum/common" +) + +type FeeDelegateDynamicFeeTx struct { + SenderTx DynamicFeeTx + FeePayer *common.Address `rlp:"nil"` + // Signature values + FV *big.Int `json:"fv" gencodec:"required"` // feePayer V + FR *big.Int `json:"fr" gencodec:"required"` // feePayer R + FS *big.Int `json:"fs" gencodec:"required"` // feePayer S +} + +func (tx *FeeDelegateDynamicFeeTx) SetSenderTx(senderTx DynamicFeeTx) { + tx.SenderTx.ChainID = senderTx.ChainID + tx.SenderTx.Nonce = senderTx.Nonce + tx.SenderTx.GasFeeCap = senderTx.GasFeeCap + tx.SenderTx.GasTipCap = senderTx.GasTipCap + tx.SenderTx.Gas = senderTx.Gas + tx.SenderTx.To = senderTx.To + tx.SenderTx.Value = senderTx.Value + tx.SenderTx.Data = senderTx.Data + copy(tx.SenderTx.AccessList, senderTx.AccessList) + + v, r, s := senderTx.rawSignatureValues() + tx.SenderTx.V = v + tx.SenderTx.R = r + tx.SenderTx.S = s +} + +// copy creates a deep copy of the transaction data and initializes all fields. +func (tx *FeeDelegateDynamicFeeTx) copy() TxData { + cpy := &FeeDelegateDynamicFeeTx{ + SenderTx: tx.copySenderTx(), + FeePayer: copyAddressPtr(tx.FeePayer), + FV: new(big.Int), + FR: new(big.Int), + FS: new(big.Int), + } + if tx.FV != nil { + cpy.FV.Set(tx.FV) + } + if tx.FR != nil { + cpy.FR.Set(tx.FR) + } + if tx.FS != nil { + cpy.FS.Set(tx.FS) + } + return cpy +} + +func (tx *FeeDelegateDynamicFeeTx) copySenderTx() DynamicFeeTx { + cpy := DynamicFeeTx{ + Nonce: tx.SenderTx.Nonce, + To: copyAddressPtr(tx.SenderTx.To), + Data: common.CopyBytes(tx.SenderTx.Data), + Gas: tx.SenderTx.Gas, + // These are copied below. + AccessList: make(AccessList, len(tx.SenderTx.AccessList)), + Value: new(big.Int), + ChainID: new(big.Int), + GasTipCap: new(big.Int), + GasFeeCap: new(big.Int), + V: new(big.Int), + R: new(big.Int), + S: new(big.Int), + } + copy(cpy.AccessList, tx.SenderTx.accessList()) + if tx.SenderTx.Value != nil { + cpy.Value.Set(tx.SenderTx.Value) + } + if tx.SenderTx.ChainID != nil { + cpy.ChainID.Set(tx.SenderTx.ChainID) + } + if tx.SenderTx.GasTipCap != nil { + cpy.GasTipCap.Set(tx.SenderTx.GasTipCap) + } + if tx.SenderTx.GasFeeCap != nil { + cpy.GasFeeCap.Set(tx.SenderTx.GasFeeCap) + } + if tx.SenderTx.V != nil { + cpy.V.Set(tx.SenderTx.V) + } + if tx.SenderTx.R != nil { + cpy.R.Set(tx.SenderTx.R) + } + if tx.SenderTx.S != nil { + cpy.S.Set(tx.SenderTx.S) + } + return cpy +} + +// accessors for innerTx. +func (tx *FeeDelegateDynamicFeeTx) txType() byte { return FeeDelegateDynamicFeeTxType } +func (tx *FeeDelegateDynamicFeeTx) chainID() *big.Int { return tx.SenderTx.ChainID } +func (tx *FeeDelegateDynamicFeeTx) accessList() AccessList { return tx.SenderTx.AccessList } +func (tx *FeeDelegateDynamicFeeTx) data() []byte { return tx.SenderTx.Data } +func (tx *FeeDelegateDynamicFeeTx) gas() uint64 { return tx.SenderTx.Gas } +func (tx *FeeDelegateDynamicFeeTx) gasFeeCap() *big.Int { return tx.SenderTx.GasFeeCap } +func (tx *FeeDelegateDynamicFeeTx) gasTipCap() *big.Int { return tx.SenderTx.GasTipCap } +func (tx *FeeDelegateDynamicFeeTx) gasPrice() *big.Int { return tx.SenderTx.GasFeeCap } +func (tx *FeeDelegateDynamicFeeTx) value() *big.Int { return tx.SenderTx.Value } +func (tx *FeeDelegateDynamicFeeTx) nonce() uint64 { return tx.SenderTx.Nonce } +func (tx *FeeDelegateDynamicFeeTx) to() *common.Address { return tx.SenderTx.To } +func (tx *FeeDelegateDynamicFeeTx) feePayer() *common.Address { return tx.FeePayer } +func (tx *FeeDelegateDynamicFeeTx) rawFeePayerSignatureValues() (v, r, s *big.Int) { + return tx.FV, tx.FR, tx.FS +} + +func (tx *FeeDelegateDynamicFeeTx) rawSignatureValues() (v, r, s *big.Int) { + return tx.SenderTx.rawSignatureValues() +} + +func (tx *FeeDelegateDynamicFeeTx) setSignatureValues(chainID, v, r, s *big.Int) { + tx.FV, tx.FR, tx.FS = v, r, s +} diff --git a/core/types/legacy_tx.go b/core/types/legacy_tx.go index 14d307829cc9..0af63f35dd57 100644 --- a/core/types/legacy_tx.go +++ b/core/types/legacy_tx.go @@ -103,6 +103,11 @@ func (tx *LegacyTx) value() *big.Int { return tx.Value } func (tx *LegacyTx) nonce() uint64 { return tx.Nonce } func (tx *LegacyTx) to() *common.Address { return tx.To } +// fee delegation +func (tx *LegacyTx) feePayer() *common.Address { return nil } +func (tx *LegacyTx) rawFeePayerSignatureValues() (v, r, s *big.Int) { + return nil, nil, nil +} func (tx *LegacyTx) rawSignatureValues() (v, r, s *big.Int) { return tx.V, tx.R, tx.S } diff --git a/core/types/receipt.go b/core/types/receipt.go index a913cd0e83be..0692a43891ae 100644 --- a/core/types/receipt.go +++ b/core/types/receipt.go @@ -214,7 +214,7 @@ func (r *Receipt) decodeTyped(b []byte) error { return errShortTypedReceipt } switch b[0] { - case DynamicFeeTxType, AccessListTxType: + case DynamicFeeTxType, AccessListTxType, FeeDelegateDynamicFeeTxType: // fee delegation var data receiptRLP err := rlp.DecodeBytes(b[1:], &data) if err != nil { @@ -387,6 +387,10 @@ func (rs Receipts) EncodeIndex(i int, w *bytes.Buffer) { case DynamicFeeTxType: w.WriteByte(DynamicFeeTxType) rlp.Encode(w, data) + // fee delegation + case FeeDelegateDynamicFeeTxType: + w.WriteByte(FeeDelegateDynamicFeeTxType) + rlp.Encode(w, data) default: // For unsupported types, write nothing. Since this is for // DeriveSha, the error will be caught matching the derived hash diff --git a/core/types/transaction.go b/core/types/transaction.go index e19ce7eec56e..679953d31602 100644 --- a/core/types/transaction.go +++ b/core/types/transaction.go @@ -45,6 +45,7 @@ const ( LegacyTxType = iota AccessListTxType DynamicFeeTxType + FeeDelegateDynamicFeeTxType = 22 // fee delegation ) // Transaction is an Ethereum transaction. @@ -53,9 +54,10 @@ type Transaction struct { time time.Time // Time first seen locally (spam avoidance) // caches - hash atomic.Value - size atomic.Value - from atomic.Value + hash atomic.Value + size atomic.Value + from atomic.Value + feePayer atomic.Value // fee delegation } type TransactionEx struct { @@ -90,6 +92,9 @@ type TxData interface { rawSignatureValues() (v, r, s *big.Int) setSignatureValues(chainID, v, r, s *big.Int) + // fee delegation + feePayer() *common.Address + rawFeePayerSignatureValues() (v, r, s *big.Int) } // EncodeRLP implements rlp.Encoder @@ -189,6 +194,11 @@ func (tx *Transaction) decodeTyped(b []byte) (TxData, error) { var inner DynamicFeeTx err := rlp.DecodeBytes(b[1:], &inner) return &inner, err + // fee delegation + case FeeDelegateDynamicFeeTxType: + var inner FeeDelegateDynamicFeeTx + err := rlp.DecodeBytes(b[1:], &inner) + return &inner, err default: return nil, ErrTxTypeNotSupported } @@ -284,6 +294,16 @@ func (tx *Transaction) Value() *big.Int { return new(big.Int).Set(tx.inner.value // Nonce returns the sender account nonce of the transaction. func (tx *Transaction) Nonce() uint64 { return tx.inner.nonce() } +// fee delegation +// FeePayer returns the feePayer's address of the transaction. +func (tx *Transaction) FeePayer() *common.Address { return tx.inner.feePayer() } + +// RawFeePayerSignatureValues returns the feePayer's FV, FR, FS signature values of the transaction. +// The return values should not be modified by the caller. +func (tx *Transaction) RawFeePayerSignatureValues() (v, r, s *big.Int) { + return tx.inner.rawFeePayerSignatureValues() +} + // To returns the recipient address of the transaction. // For contract-creation transactions, To returns nil. func (tx *Transaction) To() *common.Address { @@ -292,11 +312,39 @@ func (tx *Transaction) To() *common.Address { // Cost returns gas * gasPrice + value. func (tx *Transaction) Cost() *big.Int { + // fee delegation + if tx.Type() == FeeDelegateDynamicFeeTxType { + signer := LatestSignerForChainID(tx.ChainId()) + from, _ := Sender(signer, tx) + if *tx.FeePayer() != from { + total := tx.Value() + return total + } else { + total := new(big.Int).Mul(tx.GasPrice(), new(big.Int).SetUint64(tx.Gas())) + total.Add(total, tx.Value()) + return total + } + } total := new(big.Int).Mul(tx.GasPrice(), new(big.Int).SetUint64(tx.Gas())) total.Add(total, tx.Value()) return total } +// fee delegation +// FeePayerCost returns feePayer's gas * gasPrice + value. +func (tx *Transaction) FeePayerCost() *big.Int { + signer := LatestSignerForChainID(tx.ChainId()) + from, _ := Sender(signer, tx) + if *tx.FeePayer() != from { + total := new(big.Int).Mul(tx.GasPrice(), new(big.Int).SetUint64(tx.Gas())) + return total + } else { + total := new(big.Int).Mul(tx.GasPrice(), new(big.Int).SetUint64(tx.Gas())) + total.Add(total, tx.Value()) + return total + } +} + // RawSignatureValues returns the V, R, S signature values of the transaction. // The return values should not be modified by the caller. func (tx *Transaction) RawSignatureValues() (v, r, s *big.Int) { @@ -627,6 +675,8 @@ type Message struct { data []byte accessList AccessList isFake bool + // fee delegation + feePayer *common.Address } func NewMessage(from common.Address, to *common.Address, nonce uint64, amount *big.Int, gasLimit uint64, gasPrice, gasFeeCap, gasTipCap *big.Int, data []byte, accessList AccessList, isFake bool) Message { @@ -659,6 +709,10 @@ func (tx *Transaction) AsMessage(s Signer, baseFee *big.Int) (Message, error) { accessList: tx.AccessList(), isFake: false, } + // fee delegation + if tx.FeePayer() != nil { + msg.feePayer = tx.FeePayer() + } // If baseFee provided, set gasPrice to effectiveGasPrice. if baseFee != nil { msg.gasPrice = math.BigMin(msg.gasPrice.Add(msg.gasTipCap, baseFee), msg.gasFeeCap) @@ -680,6 +734,9 @@ func (m Message) Data() []byte { return m.data } func (m Message) AccessList() AccessList { return m.accessList } func (m Message) IsFake() bool { return m.isFake } +// fee delegation +func (m Message) FeePayer() *common.Address { return m.feePayer } + // copyAddressPtr copies an address. func copyAddressPtr(a *common.Address) *common.Address { if a == nil { diff --git a/core/types/transaction_marshalling.go b/core/types/transaction_marshalling.go index aad31a5a97e2..eb68e3db70e4 100644 --- a/core/types/transaction_marshalling.go +++ b/core/types/transaction_marshalling.go @@ -48,6 +48,11 @@ type txJSON struct { // Only used for encoding: Hash common.Hash `json:"hash"` + // fee delegation + FeePayer *common.Address `json:"feePayer,omitempty"` + FV *hexutil.Big `json:"fv,omitempty"` + FR *hexutil.Big `json:"fr,omitempty"` + FS *hexutil.Big `json:"fs,omitempty"` } // MarshalJSON marshals as JSON with a hash. @@ -94,6 +99,29 @@ func (t *Transaction) MarshalJSON() ([]byte, error) { enc.V = (*hexutil.Big)(tx.V) enc.R = (*hexutil.Big)(tx.R) enc.S = (*hexutil.Big)(tx.S) + // fee delegation + case *FeeDelegateDynamicFeeTx: + nonce := tx.SenderTx.Nonce + enc.Nonce = (*hexutil.Uint64)(&nonce) + gas := tx.SenderTx.Gas + enc.Gas = (*hexutil.Uint64)(&gas) + enc.ChainID = (*hexutil.Big)(tx.SenderTx.ChainID) + accessList := tx.SenderTx.AccessList + enc.AccessList = &accessList + enc.MaxFeePerGas = (*hexutil.Big)(tx.SenderTx.GasFeeCap) + enc.MaxPriorityFeePerGas = (*hexutil.Big)(tx.SenderTx.GasTipCap) + enc.Value = (*hexutil.Big)(tx.SenderTx.Value) + data := tx.SenderTx.Data + enc.Data = (*hexutil.Bytes)(&data) + enc.To = tx.SenderTx.to() + enc.V = (*hexutil.Big)(tx.SenderTx.V) + enc.R = (*hexutil.Big)(tx.SenderTx.R) + enc.S = (*hexutil.Big)(tx.SenderTx.S) + + enc.FeePayer = tx.FeePayer + enc.FV = (*hexutil.Big)(tx.FV) + enc.FR = (*hexutil.Big)(tx.FR) + enc.FS = (*hexutil.Big)(tx.FS) } return json.Marshal(&enc) } @@ -262,6 +290,85 @@ func (t *Transaction) UnmarshalJSON(input []byte) error { return err } } + // fee delegation + case FeeDelegateDynamicFeeTxType: + var itx FeeDelegateDynamicFeeTx + inner = &itx + // Access list is optional for now. + if dec.AccessList != nil { + itx.SenderTx.AccessList = *dec.AccessList + } + if dec.ChainID == nil { + return errors.New("missing required field 'chainId' in transaction") + } + itx.SenderTx.ChainID = (*big.Int)(dec.ChainID) + if dec.To != nil { + itx.SenderTx.To = dec.To + } + if dec.Nonce == nil { + return errors.New("missing required field 'nonce' in transaction") + } + itx.SenderTx.Nonce = uint64(*dec.Nonce) + if dec.MaxPriorityFeePerGas == nil { + return errors.New("missing required field 'maxPriorityFeePerGas' for txdata") + } + itx.SenderTx.GasTipCap = (*big.Int)(dec.MaxPriorityFeePerGas) + if dec.MaxFeePerGas == nil { + return errors.New("missing required field 'maxFeePerGas' for txdata") + } + itx.SenderTx.GasFeeCap = (*big.Int)(dec.MaxFeePerGas) + if dec.Gas == nil { + return errors.New("missing required field 'gas' for txdata") + } + itx.SenderTx.Gas = uint64(*dec.Gas) + if dec.Value == nil { + return errors.New("missing required field 'value' in transaction") + } + itx.SenderTx.Value = (*big.Int)(dec.Value) + if dec.Data == nil { + return errors.New("missing required field 'input' in transaction") + } + itx.SenderTx.Data = *dec.Data + if dec.V == nil { + return errors.New("missing required field 'v' in transaction") + } + itx.SenderTx.V = (*big.Int)(dec.V) + if dec.R == nil { + return errors.New("missing required field 'r' in transaction") + } + itx.SenderTx.R = (*big.Int)(dec.R) + if dec.S == nil { + return errors.New("missing required field 's' in transaction") + } + itx.SenderTx.S = (*big.Int)(dec.S) + withSignature := itx.SenderTx.V.Sign() != 0 || itx.SenderTx.R.Sign() != 0 || itx.SenderTx.S.Sign() != 0 + if withSignature { + if err := sanityCheckSignature(itx.SenderTx.V, itx.SenderTx.R, itx.SenderTx.S, false); err != nil { + return err + } + } + if dec.FeePayer == nil { + return errors.New("missing required field 'feePayer' in transaction") + } + itx.FeePayer = dec.FeePayer + if dec.FV == nil { + return errors.New("missing required field 'fv' in transaction") + } + itx.FV = (*big.Int)(dec.FV) + if dec.FR == nil { + return errors.New("missing required field 'fr' in transaction") + } + itx.FR = (*big.Int)(dec.FR) + if dec.FS == nil { + return errors.New("missing required field 'fs' in transaction") + } + itx.FS = (*big.Int)(dec.FS) + withSignature = itx.FV.Sign() != 0 || itx.FR.Sign() != 0 || itx.FS.Sign() != 0 + if withSignature { + if err := sanityCheckSignature(itx.FV, itx.FR, itx.FS, false); err != nil { + return err + } + } default: return ErrTxTypeNotSupported diff --git a/core/types/transaction_signing.go b/core/types/transaction_signing.go index 672918035586..8f4daefac3d8 100644 --- a/core/types/transaction_signing.go +++ b/core/types/transaction_signing.go @@ -172,6 +172,27 @@ func GetSender(signer Signer, tx *Transaction) *common.Address { return nil } +// fee delegation +func FeePayer(signer Signer, tx *Transaction) (common.Address, error) { + if sc := tx.feePayer.Load(); sc != nil { + sigCache := sc.(sigCache) + // If the signer used to derive from in a previous + // call is not the same as used current, invalidate + // the cache. + if sigCache.signer.Equal(signer) { + return sigCache.from, nil + } + } + + addr, err := signer.Sender(tx) + + if err != nil { + return common.Address{}, err + } + tx.feePayer.Store(sigCache{signer: signer, from: addr}) + return addr, nil +} + // Signer encapsulates transaction signature handling. The name of this type is slightly // misleading because Signers don't actually sign, they're just for validating and // processing of signatures. @@ -195,6 +216,73 @@ type Signer interface { Equal(Signer) bool } +// fee delegation +type feeDelegateSigner struct{ londonSigner } + +func NewFeeDelegateSigner(chainId *big.Int) Signer { + return feeDelegateSigner{londonSigner{eip2930Signer{NewEIP155Signer(chainId)}}} +} + +func (s feeDelegateSigner) Sender(tx *Transaction) (common.Address, error) { + if tx.Type() != FeeDelegateDynamicFeeTxType { + return s.londonSigner.Sender(tx) + } + V, R, S := tx.RawFeePayerSignatureValues() + // DynamicFee txs are defined to use 0 and 1 as their recovery + // id, add 27 to become equivalent to unprotected Homestead signatures. + V = new(big.Int).Add(V, big.NewInt(27)) + if tx.ChainId().Cmp(s.chainId) != 0 { + return common.Address{}, ErrInvalidChainId + } + return recoverPlain(s.Hash(tx), R, S, V, true) +} + +func (s feeDelegateSigner) Equal(s2 Signer) bool { + x, ok := s2.(feeDelegateSigner) + return ok && x.chainId.Cmp(s.chainId) == 0 +} + +func (s feeDelegateSigner) SignatureValues(tx *Transaction, sig []byte) (R, S, V *big.Int, err error) { + txdata, ok := tx.inner.(*FeeDelegateDynamicFeeTx) + + if !ok { + return s.londonSigner.SignatureValues(tx, sig) + } + // Check that chain ID of tx matches the signer. We also accept ID zero here, + // because it indicates that the chain ID was not specified in the tx. + if txdata.SenderTx.chainID().Sign() != 0 && txdata.SenderTx.chainID().Cmp(s.chainId) != 0 { + return nil, nil, nil, ErrInvalidChainId + } + R, S, _ = decodeSignature(sig) + V = big.NewInt(int64(sig[64])) + return R, S, V, nil +} + +// Hash returns the hash to be signed by the sender. +// It does not uniquely identify the transaction. +func (s feeDelegateSigner) Hash(tx *Transaction) common.Hash { + senderV, senderR, senderS := tx.RawSignatureValues() + return prefixedRlpHash( + tx.Type(), + []interface{}{ + []interface{}{ + s.chainId, + tx.Nonce(), + tx.GasTipCap(), + tx.GasFeeCap(), + tx.Gas(), + tx.To(), + tx.Value(), + tx.Data(), + tx.AccessList(), + senderV, + senderR, + senderS, + }, + tx.FeePayer(), + }) +} + type londonSigner struct{ eip2930Signer } // NewLondonSigner returns a signer that accepts @@ -207,7 +295,7 @@ func NewLondonSigner(chainId *big.Int) Signer { } func (s londonSigner) Sender(tx *Transaction) (common.Address, error) { - if tx.Type() != DynamicFeeTxType { + if tx.Type() != DynamicFeeTxType && tx.Type() != FeeDelegateDynamicFeeTxType { // fee delegation return s.eip2930Signer.Sender(tx) } V, R, S := tx.RawSignatureValues() @@ -243,11 +331,16 @@ func (s londonSigner) SignatureValues(tx *Transaction, sig []byte) (R, S, V *big // Hash returns the hash to be signed by the sender. // It does not uniquely identify the transaction. func (s londonSigner) Hash(tx *Transaction) common.Hash { - if tx.Type() != DynamicFeeTxType { + if tx.Type() != DynamicFeeTxType && tx.Type() != FeeDelegateDynamicFeeTxType { // fee delegation return s.eip2930Signer.Hash(tx) } + // fee delegation + txType := tx.Type() + if txType == FeeDelegateDynamicFeeTxType { + txType = DynamicFeeTxType + } return prefixedRlpHash( - tx.Type(), + txType, // fee delegation []interface{}{ s.chainId, tx.Nonce(), diff --git a/interfaces.go b/interfaces.go index 76c1ef6908f2..53d2df6df559 100644 --- a/interfaces.go +++ b/interfaces.go @@ -142,6 +142,8 @@ type CallMsg struct { Data []byte // input data, usually an ABI-encoded contract method invocation AccessList types.AccessList // EIP-2930 access list. + // fee delegation + FeePayer *common.Address } // A ContractCaller provides contract calls, essentially transactions that are executed by diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 43713ad50e7a..74e058d6ca38 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -447,6 +447,11 @@ func (s *PrivateAccountAPI) LockAccount(addr common.Address) bool { func (s *PrivateAccountAPI) signTransaction(ctx context.Context, args *TransactionArgs, passwd string) (*types.Transaction, error) { // Look up the wallet containing the requested signer account := accounts.Account{Address: args.from()} + // fee delegation + if args.FeePayer != nil { + account = accounts.Account{Address: *args.FeePayer} + } + wallet, err := s.am.Find(account) if err != nil { return nil, err @@ -1285,6 +1290,11 @@ type RPCTransaction struct { V *hexutil.Big `json:"v"` R *hexutil.Big `json:"r"` S *hexutil.Big `json:"s"` + // fee delegation + FeePayer *common.Address `json:"feePayer,omitempty"` + FV *hexutil.Big `json:"fv,omitempty"` + FR *hexutil.Big `json:"fr,omitempty"` + FS *hexutil.Big `json:"fs,omitempty"` } // newRPCTransaction returns a transaction that will serialize to the RPC @@ -1331,6 +1341,26 @@ func newRPCTransaction(tx *types.Transaction, blockHash common.Hash, blockNumber } else { result.GasPrice = (*hexutil.Big)(tx.GasFeeCap()) } + // fee delegation + case types.FeeDelegateDynamicFeeTxType: + al := tx.AccessList() + result.Accesses = &al + result.ChainID = (*hexutil.Big)(tx.ChainId()) + result.GasFeeCap = (*hexutil.Big)(tx.GasFeeCap()) + result.GasTipCap = (*hexutil.Big)(tx.GasTipCap()) + // if the transaction has been mined, compute the effective gas price + if baseFee != nil && blockHash != (common.Hash{}) { + // price = min(tip, gasFeeCap - baseFee) + baseFee + price := math.BigMin(new(big.Int).Add(tx.GasTipCap(), baseFee), tx.GasFeeCap()) + result.GasPrice = (*hexutil.Big)(price) + } else { + result.GasPrice = (*hexutil.Big)(tx.GasFeeCap()) + } + result.FeePayer = tx.FeePayer() + fv, fr, fs := tx.RawFeePayerSignatureValues() + result.FV = (*hexutil.Big)(fv) + result.FR = (*hexutil.Big)(fr) + result.FS = (*hexutil.Big)(fs) } return result } @@ -1693,6 +1723,16 @@ func SubmitTransaction(ctx context.Context, b Backend, tx *types.Transaction) (c if err != nil { return common.Hash{}, err } + // fee delegation + if tx.Type() == types.FeeDelegateDynamicFeeTxType { + feePayer, err := types.FeePayer(types.NewFeeDelegateSigner(b.ChainConfig().ChainID), tx) + if err != nil { + return common.Hash{}, err + } + if feePayer != *tx.FeePayer() { + return common.Hash{}, errors.New("FeePayer Signature error") + } + } if tx.To() == nil { addr := crypto.CreateAddress(from, tx.Nonce()) @@ -1834,6 +1874,19 @@ func (s *PublicTransactionPoolAPI) SignTransaction(ctx context.Context, args Tra if err := checkTxFee(tx.GasPrice(), tx.Gas(), s.b.RPCTxFeeCap()); err != nil { return nil, err } + // fee delegation + if args.FeePayer != nil { + log.Info("SignTransaction", "FeePayer", args.FeePayer) + signed, err := s.sign(*args.FeePayer, tx) + if err != nil { + return nil, err + } + data, err := signed.MarshalBinary() + if err != nil { + return nil, err + } + return &SignTransactionResult{data, signed}, nil + } signed, err := s.sign(args.from(), tx) if err != nil { return nil, err @@ -2085,3 +2138,118 @@ func toHexSlice(b [][]byte) []string { } return r } + +// fee delegation +// SignRawFeeDelegateTransaction will create a transaction from the given arguments and +// tries to sign it with the key associated with args.feePayer. If the given passwd isn't +// able to decrypt the key it fails. The transaction is returned in RLP-form, not broadcast +// to other nodes +func (s *PrivateAccountAPI) SignRawFeeDelegateTransaction(ctx context.Context, args TransactionArgs, input hexutil.Bytes, passwd string) (*SignTransactionResult, error) { + if args.FeePayer == nil { + return nil, fmt.Errorf("missing FeePayer") + } + + // Look up the wallet containing the requested signer + account := accounts.Account{Address: *args.FeePayer} + + wallet, err := s.am.Find(account) + if err != nil { + return nil, err + } + + rawTx := new(types.Transaction) + if err := rawTx.UnmarshalBinary(input); err != nil { + return nil, err + } + + V, R, S := rawTx.RawSignatureValues() + if rawTx.Type() == types.DynamicFeeTxType { + SenderTx := types.DynamicFeeTx{ + To: rawTx.To(), + ChainID: rawTx.ChainId(), + Nonce: rawTx.Nonce(), + Gas: rawTx.Gas(), + GasFeeCap: rawTx.GasFeeCap(), + GasTipCap: rawTx.GasTipCap(), + Value: rawTx.Value(), + Data: rawTx.Data(), + AccessList: rawTx.AccessList(), + V: V, + R: R, + S: S, + } + + FeeDelegateDynamicFeeTx := &types.FeeDelegateDynamicFeeTx{ + FeePayer: args.FeePayer, + } + + FeeDelegateDynamicFeeTx.SetSenderTx(SenderTx) + tx := types.NewTx(FeeDelegateDynamicFeeTx) + + signed, err := wallet.SignTxWithPassphrase(account, passwd, tx, s.b.ChainConfig().ChainID) + + if err != nil { + return nil, err + } + data, err := signed.MarshalBinary() + if err != nil { + return nil, err + } + + return &SignTransactionResult{data, signed}, nil + } + + return nil, fmt.Errorf("senderTx type error") +} + +// fee delegation +// SignRawFeeDelegateTransaction will sign the given feeDelegate transaction with the feePayer account. +// The node needs to have the private key of the account corresponding with +// the given from address and it needs to be unlocked. +func (s *PublicTransactionPoolAPI) SignRawFeeDelegateTransaction(ctx context.Context, args TransactionArgs, input hexutil.Bytes) (*SignTransactionResult, error) { + if args.FeePayer == nil { + return nil, fmt.Errorf("missing FeePayer") + } + + rawTx := new(types.Transaction) + if err := rawTx.UnmarshalBinary(input); err != nil { + return nil, err + } + + V, R, S := rawTx.RawSignatureValues() + if rawTx.Type() == types.DynamicFeeTxType { + SenderTx := types.DynamicFeeTx{ + To: rawTx.To(), + ChainID: rawTx.ChainId(), + Nonce: rawTx.Nonce(), + Gas: rawTx.Gas(), + GasFeeCap: rawTx.GasFeeCap(), + GasTipCap: rawTx.GasTipCap(), + Value: rawTx.Value(), + Data: rawTx.Data(), + AccessList: rawTx.AccessList(), + V: V, + R: R, + S: S, + } + + FeeDelegateDynamicFeeTx := &types.FeeDelegateDynamicFeeTx{ + FeePayer: args.FeePayer, + } + + FeeDelegateDynamicFeeTx.SetSenderTx(SenderTx) + tx := types.NewTx(FeeDelegateDynamicFeeTx) + + signed, err := s.sign(*args.FeePayer, tx) + if err != nil { + return nil, err + } + data, err := signed.MarshalBinary() + if err != nil { + return nil, err + } + + return &SignTransactionResult{data, signed}, nil + } + return nil, fmt.Errorf("senderTx type error") +} diff --git a/internal/ethapi/transaction_args.go b/internal/ethapi/transaction_args.go index 9c5950af58fe..f03f6700e502 100644 --- a/internal/ethapi/transaction_args.go +++ b/internal/ethapi/transaction_args.go @@ -52,6 +52,13 @@ type TransactionArgs struct { // Introduced by AccessListTxType transaction. AccessList *types.AccessList `json:"accessList,omitempty"` ChainID *hexutil.Big `json:"chainId,omitempty"` + + // fee delegation + FeePayer *common.Address `json:"feePayer"` + // Signature values + V *hexutil.Big `json:"v"` + R *hexutil.Big `json:"r"` + S *hexutil.Big `json:"s"` } // from retrieves the transaction sender address. @@ -264,6 +271,29 @@ func (args *TransactionArgs) toTransaction() *types.Transaction { Data: args.data(), AccessList: al, } + // fee delegation + if args.FeePayer != nil && args.V != nil && args.R != nil && args.S != nil { + SenderTx := types.DynamicFeeTx{ + To: args.To, + ChainID: (*big.Int)(args.ChainID), + Nonce: uint64(*args.Nonce), + Gas: uint64(*args.Gas), + GasFeeCap: (*big.Int)(args.MaxFeePerGas), + GasTipCap: (*big.Int)(args.MaxPriorityFeePerGas), + Value: (*big.Int)(args.Value), + Data: args.data(), + AccessList: al, + V: (*big.Int)(args.V), + R: (*big.Int)(args.R), + S: (*big.Int)(args.S), + } + FeeDelegateDynamicFeeTx := &types.FeeDelegateDynamicFeeTx{ + FeePayer: args.FeePayer, + } + + FeeDelegateDynamicFeeTx.SetSenderTx(SenderTx) + return types.NewTx(FeeDelegateDynamicFeeTx) + } case args.AccessList != nil: data = &types.AccessListTx{ To: args.To, diff --git a/internal/web3ext/web3ext.go b/internal/web3ext/web3ext.go index 2d49de251fde..10a2ece31ff1 100644 --- a/internal/web3ext/web3ext.go +++ b/internal/web3ext/web3ext.go @@ -696,6 +696,12 @@ web3._extend({ call: 'eth_getLogs', params: 1, }), + // fee delegation + new web3._extend.Method({ + name: 'signRawFeeDelegateTransaction', + call: 'eth_signRawFeeDelegateTransaction', + params: 2, + }), ], properties: [ new web3._extend.Property({ @@ -837,7 +843,13 @@ web3._extend({ name: 'initializeWallet', call: 'personal_initializeWallet', params: 1 - }) + }), + // fee delegation + new web3._extend.Method({ + name: 'signRawFeeDelegateTransaction', + call: 'personal_signRawFeeDelegateTransaction', + params: 3, + }), ], properties: [ new web3._extend.Property({ diff --git a/light/txpool.go b/light/txpool.go index d12694d8f992..f890c534abd0 100644 --- a/light/txpool.go +++ b/light/txpool.go @@ -69,6 +69,8 @@ type TxPool struct { istanbul bool // Fork indicator whether we are in the istanbul stage. eip2718 bool // Fork indicator whether we are in the eip2718 stage. + // fee delegation + feedelegation bool // Fork indicator whether we are in the fee delegation stage. } // TxRelayBackend provides an interface to the mechanism that forwards transacions @@ -318,6 +320,8 @@ func (pool *TxPool) setNewHead(head *types.Header) { next := new(big.Int).Add(head.Number, big.NewInt(1)) pool.istanbul = pool.config.IsIstanbul(next) pool.eip2718 = pool.config.IsBerlin(next) + // fee delegation + pool.feedelegation = pool.config.IsFeeDelegation(next) } // Stop stops the light transaction pool @@ -380,8 +384,27 @@ func (pool *TxPool) validateTx(ctx context.Context, tx *types.Transaction) error // Transactor should have enough funds to cover the costs // cost == V + GP * GL - if b := currentState.GetBalance(from); b.Cmp(tx.Cost()) < 0 { - return core.ErrInsufficientFunds + + // fee delegation + if tx.Type() == types.FeeDelegateDynamicFeeTxType { + if !pool.feedelegation { + return core.ErrTxTypeNotSupported + } + // Make sure the transaction is signed properly. + feePayer, err := types.FeePayer(types.NewFeeDelegateSigner(pool.config.ChainID), tx) + if *tx.FeePayer() != feePayer || err != nil { + return core.ErrInvalidFeePayer + } + if currentState.GetBalance(feePayer).Cmp(tx.FeePayerCost()) < 0 { + return core.ErrFeePayerInsufficientFunds + } + if currentState.GetBalance(from).Cmp(tx.Cost()) < 0 { + return core.ErrSenderInsufficientFunds + } + } else { + if b := currentState.GetBalance(from); b.Cmp(tx.Cost()) < 0 { + return core.ErrInsufficientFunds + } } // Should supply enough intrinsic gas diff --git a/params/config.go b/params/config.go index cfcfbc15e70b..c5458df0b002 100644 --- a/params/config.go +++ b/params/config.go @@ -521,6 +521,16 @@ func (c *ChainConfig) IsPangyo(num *big.Int) bool { return isForked(c.PangyoBlock, num) } +// fee delegation +// IsFeeDelegation returns whether num is either equal to the fee delegation fork block or greater. +func (c *ChainConfig) IsFeeDelegation(num *big.Int) bool { + // TBD + // Test code + //FeeDelegateBlock := big.NewInt(277000) + //return isForked(FeeDelegateBlock, num) + return false +} + // IsArrowGlacier returns whether num is either equal to the Arrow Glacier (EIP-4345) fork block or greater. func (c *ChainConfig) IsArrowGlacier(num *big.Int) bool { return isForked(c.ArrowGlacierBlock, num) From c2abe6a6de18382fe9c8b570761e88e7f3018428 Mon Sep 17 00:00:00 2001 From: coinplug-jhjin Date: Thu, 30 Mar 2023 09:21:16 +0900 Subject: [PATCH 06/25] internal/ethapi: add error handling for invalid block hash (GetReceiptsByHash) --- internal/ethapi/api.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 43713ad50e7a..4ea9d10d7d91 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -649,7 +649,9 @@ func (s *PublicBlockChainAPI) GetReceiptsByHash(ctx context.Context, blockHash c return nil, err1 } block, err2 := s.b.BlockByHash(ctx, blockHash) - if err2 != nil { + if block == nil { + return nil, nil + } else if err2 != nil { return nil, err2 } From 37d918e5990212a59e33c5e736f53d3d56a8449b Mon Sep 17 00:00:00 2001 From: coinplug-jhjin Date: Fri, 31 Mar 2023 15:04:43 +0900 Subject: [PATCH 07/25] internal/ethapi: improved 'GetReceiptsByHash' rpc api. --- internal/ethapi/api.go | 40 +++++++++++++++++++++++++++++++++++----- 1 file changed, 35 insertions(+), 5 deletions(-) diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 4ea9d10d7d91..229e54ce4214 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -644,13 +644,17 @@ func (s *PublicBlockChainAPI) BlockNumber() hexutil.Uint64 { // GetBlockReceipts returns all the transaction receipts for the given block hash. func (s *PublicBlockChainAPI) GetReceiptsByHash(ctx context.Context, blockHash common.Hash) ([]map[string]interface{}, error) { - receipts, err1 := s.b.GetReceipts(ctx, blockHash) - if err1 != nil { + + block, err1 := s.b.BlockByHash(ctx, blockHash) + if block == nil && err1 == nil { + return nil, nil + } else if err1 != nil { return nil, err1 } - block, err2 := s.b.BlockByHash(ctx, blockHash) - if block == nil { - return nil, nil + + receipts, err2 := s.b.GetReceipts(ctx, blockHash) + if receipts == nil && err2 == nil { + return make([]map[string]interface{}, 0), nil } else if err2 != nil { return nil, err2 } @@ -681,6 +685,32 @@ func (s *PublicBlockChainAPI) GetReceiptsByHash(ctx context.Context, blockHash c "logsBloom": receipt.Bloom, "type": hexutil.Uint(txs[index].Type()), } + + // Assign the effective gas price paid + if !s.b.ChainConfig().IsLondon(bigblock) { + fields["effectiveGasPrice"] = txs[index].GasPrice() + } else { + header, err := s.b.HeaderByHash(ctx, blockHash) + if err != nil { + return nil, err + } + gasPrice := new(big.Int).Add(header.BaseFee, txs[index].EffectiveGasTipValue(header.BaseFee)) + fields["effectiveGasPrice"] = gasPrice + } + // Assign receipt status or post state. + if len(receipt.PostState) > 0 { + fields["root"] = hexutil.Bytes(receipt.PostState) + } else { + fields["status"] = hexutil.Uint(receipt.Status) + } + if receipt.Logs == nil { + fields["logs"] = []*types.Log{} + } + // If the ContractAddress is 20 0x0 bytes, assume it is not a contract creation + if receipt.ContractAddress != (common.Address{}) { + fields["contractAddress"] = receipt.ContractAddress + } + fieldsList = append(fieldsList, fields) } return fieldsList, nil From 39534ad6666226e8d1fb2cc472fff295a4259b52 Mon Sep 17 00:00:00 2001 From: coinplug-jhjin Date: Mon, 3 Apr 2023 13:32:01 +0900 Subject: [PATCH 08/25] internal/ethapi: changed 'gasPrice' data type to BigInt ('GetTransactionReceipt' RPC API). --- internal/ethapi/api.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 229e54ce4214..8e0f8bce242b 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -1667,14 +1667,14 @@ func (s *PublicTransactionPoolAPI) GetTransactionReceipt(ctx context.Context, ha } // Assign the effective gas price paid if !s.b.ChainConfig().IsLondon(bigblock) { - fields["effectiveGasPrice"] = hexutil.Uint64(tx.GasPrice().Uint64()) + fields["effectiveGasPrice"] = tx.GasPrice() } else { header, err := s.b.HeaderByHash(ctx, blockHash) if err != nil { return nil, err } gasPrice := new(big.Int).Add(header.BaseFee, tx.EffectiveGasTipValue(header.BaseFee)) - fields["effectiveGasPrice"] = hexutil.Uint64(gasPrice.Uint64()) + fields["effectiveGasPrice"] = gasPrice } // Assign receipt status or post state. if len(receipt.PostState) > 0 { From eafa2bfdea775819d5e13d95bc21405747ec7987 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=92=E1=85=A1=E1=86=AB=E1=84=8B=E1=85=AF=E1=86=AB?= =?UTF-8?q?=E1=84=8C=E1=85=AE=E1=86=AB?= Date: Tue, 18 Apr 2023 10:29:12 +0900 Subject: [PATCH 09/25] add FEEDELEGATION.md , core: change error string --- FEEDELEGATION.md | 487 +++++++++++++++++++++++++++++++++++++++++++++++ core/error.go | 6 +- 2 files changed, 490 insertions(+), 3 deletions(-) create mode 100644 FEEDELEGATION.md diff --git a/FEEDELEGATION.md b/FEEDELEGATION.md new file mode 100644 index 000000000000..88a61ec0f262 --- /dev/null +++ b/FEEDELEGATION.md @@ -0,0 +1,487 @@ +## Implementation of Fee Delegation(FD) Transaction Structure + +Fee Delegation Transaction is a service where the feePayer pays the fee for the transaction that the Sender wants to execute. This is done by adding the feePayer's signature to the existing transaction information signed by the Sender and sending it. +Fee Delegation Transaction only supports the DynamicFeeTxType among the existing transactions signed by the Sender and does not support LegacyTxType or AccessListTxType. + + +| Tx Type | Tx Type supported with fee delegation | +|:------------------:|---------------------------------------| +| LegacyTxType | No | +| AccessListTxType | No | +| DynamicFeeTxType | Yes | + + +*** +### 1.Add FD Transaction Types + +* core/types/transaction.go + +``` go +const ( + LegacyTxType = iota + AccessListTxType + DynamicFeeTxType + FeeDelegateDynamicFeeTxType = 22 //fee delegation +) +``` + +### 2.Add feePayer in Transaction struct + +* core/types/transaction.go + +``` go +type Transaction struct { + inner TxData // Consensus contents of a transaction + time time.Time // Time first seen locally (spam avoidance) + + // caches + hash atomic.Value + size atomic.Value + from atomic.Value + feePayer atomic.Value //fee delegation +} +``` + +### 3.Add FD interface in TxData + +* core/types/transaction.go + +``` go +type TxData interface { + txType() byte // returns the type ID + copy() TxData // creates a deep copy and initializes all fields + + chainID() *big.Int + accessList() AccessList + data() []byte + gas() uint64 + gasPrice() *big.Int + gasTipCap() *big.Int + gasFeeCap() *big.Int + value() *big.Int + nonce() uint64 + to() *common.Address + rawSignatureValues() (v, r, s *big.Int) + setSignatureValues(chainID, v, r, s *big.Int) + // fee delegation + feePayer() *common.Address + rawFeePayerSignatureValues() (v, r, s *big.Int) +} +``` + +### 5.Add New FD Transaction Structure + +* core/types/feedelegate_dynamic_fee_tx.go + +``` go +type FeeDelegateDynamicFeeTx struct { + SenderTx DynamicFeeTx + FeePayer *common.Address `rlp:"nil"` + // Signature values + FV *big.Int `json:"fv" gencodec:"required"` // feePayer V + FR *big.Int `json:"fr" gencodec:"required"` // feePayer R + FS *big.Int `json:"fs" gencodec:"required"` // feePayer S +} +``` + +### 6.Add FeeDelegateDynamicFeeTx getter and setter + +* core/types/feedelegate_dynamic_fee_tx.go + +``` go +func (tx *FeeDelegateDynamicFeeTx) SetSenderTx(senderTx TxData) { + tx.SenderTx.ChainID = senderTx.ChainID + tx.SenderTx.Nonce = senderTx.Nonce + tx.SenderTx.GasFeeCap = senderTx.GasFeeCap + tx.SenderTx.GasTipCap = senderTx.GasTipCap + tx.SenderTx.Gas = senderTx.Gas + tx.SenderTx.To = senderTx.To + tx.SenderTx.Value = senderTx.Value + tx.SenderTx.Data = senderTx.Data + copy(tx.SenderTx.AccessList, senderTx.AccessList) + + v, r, s := senderTx.rawSignatureValues() + tx.SenderTx.V = v + tx.SenderTx.R = r + tx.SenderTx.S = s +} + +// copy creates a deep copy of the transaction data and initializes all fields. +func (tx *FeeDelegateDynamicFeeTx) copy() TxData { + cpy := &FeeDelegateDynamicFeeTx{ + SenderTx: tx.copySenderTx(), + FeePayer: copyAddressPtr(tx.FeePayer), + FV: new(big.Int), + FR: new(big.Int), + FS: new(big.Int), + } + if tx.FV != nil { + cpy.FV.Set(tx.FV) + } + if tx.FR != nil { + cpy.FR.Set(tx.FR) + } + if tx.FS != nil { + cpy.FS.Set(tx.FS) + } + return cpy +} + +func (tx *FeeDelegateDynamicFeeTx) copySenderTx() DynamicFeeTx { + cpy := DynamicFeeTx{ + Nonce: tx.SenderTx.Nonce, + To: copyAddressPtr(tx.SenderTx.To), + Data: common.CopyBytes(tx.SenderTx.Data), + Gas: tx.SenderTx.Gas, + // These are copied below. + AccessList: make(AccessList, len(tx.SenderTx.AccessList)), + Value: new(big.Int), + ChainID: new(big.Int), + GasTipCap: new(big.Int), + GasFeeCap: new(big.Int), + V: new(big.Int), + R: new(big.Int), + S: new(big.Int), + } + copy(cpy.AccessList, tx.SenderTx.accessList()) + if tx.SenderTx.Value != nil { + cpy.Value.Set(tx.SenderTx.Value) + } + if tx.SenderTx.ChainID != nil { + cpy.ChainID.Set(tx.SenderTx.ChainID) + } + if tx.SenderTx.GasTipCap != nil { + cpy.GasTipCap.Set(tx.SenderTx.GasTipCap) + } + if tx.SenderTx.GasFeeCap != nil { + cpy.GasFeeCap.Set(tx.SenderTx.GasFeeCap) + } + if tx.SenderTx.V != nil { + cpy.V.Set(tx.SenderTx.V) + } + if tx.SenderTx.R != nil { + cpy.R.Set(tx.SenderTx.R) + } + if tx.SenderTx.S != nil { + cpy.S.Set(tx.SenderTx.S) + } + return cpy +} + +// accessors for innerTx. +func (tx *FeeDelegateDynamicFeeTx) txType() byte { return FeeDelegateDynamicFeeTxType } +func (tx *FeeDelegateDynamicFeeTx) chainID() *big.Int { return tx.SenderTx.ChainID } +func (tx *FeeDelegateDynamicFeeTx) accessList() AccessList { return tx.SenderTx.AccessList } +func (tx *FeeDelegateDynamicFeeTx) data() []byte { return tx.SenderTx.Data } +func (tx *FeeDelegateDynamicFeeTx) gas() uint64 { return tx.SenderTx.Gas } +func (tx *FeeDelegateDynamicFeeTx) gasFeeCap() *big.Int { return tx.SenderTx.GasFeeCap } +func (tx *FeeDelegateDynamicFeeTx) gasTipCap() *big.Int { return tx.SenderTx.GasTipCap } +func (tx *FeeDelegateDynamicFeeTx) gasPrice() *big.Int { return tx.SenderTx.GasFeeCap } +func (tx *FeeDelegateDynamicFeeTx) value() *big.Int { return tx.SenderTx.Value } +func (tx *FeeDelegateDynamicFeeTx) nonce() uint64 { return tx.SenderTx.Nonce } +func (tx *FeeDelegateDynamicFeeTx) to() *common.Address { return tx.SenderTx.To } +func (tx *FeeDelegateDynamicFeeTx) feePayer() *common.Address { return tx.FeePayer } +func (tx *FeeDelegateDynamicFeeTx) rawFeePayerSignatureValues() (v, r, s *big.Int) { + return tx.FV, tx.FR, tx.FS +} + +func (tx *FeeDelegateDynamicFeeTx) rawSignatureValues() (v, r, s *big.Int) { + return tx.SenderTx.rawSignatureValues() +} + +func (tx *FeeDelegateDynamicFeeTx) setSignatureValues(chainID, v, r, s *big.Int) { + tx.FV, tx.FR, tx.FS = v, r, s +} +``` + +### 7.Add Fee Delegation Signier + +* Include core/types/transaction_signing.go + +``` go +// fee delegation +type feeDelegateSigner struct{ londonSigner } + +func NewFeeDelegateSigner(chainId *big.Int) Signer { + return feeDelegateSigner{londonSigner{eip2930Signer{NewEIP155Signer(chainId)}}} +} + +func (s feeDelegateSigner) Sender(tx *Transaction) (common.Address, error) { + if tx.Type() != FeeDelegateDynamicFeeTxType { + return s.londonSigner.Sender(tx) + } + V, R, S := tx.RawFeePayerSignatureValues() + // DynamicFee txs are defined to use 0 and 1 as their recovery + // id, add 27 to become equivalent to unprotected Homestead signatures. + V = new(big.Int).Add(V, big.NewInt(27)) + if tx.ChainId().Cmp(s.chainId) != 0 { + return common.Address{}, ErrInvalidChainId + } + return recoverPlain(s.Hash(tx), R, S, V, true) +} + +func (s feeDelegateSigner) Equal(s2 Signer) bool { + x, ok := s2.(feeDelegateSigner) + return ok && x.chainId.Cmp(s.chainId) == 0 +} + +func (s feeDelegateSigner) SignatureValues(tx *Transaction, sig []byte) (R, S, V *big.Int, err error) { + txdata, ok := tx.inner.(*FeeDelegateDynamicFeeTx) + + if !ok { + return s.londonSigner.SignatureValues(tx, sig) + } + // Check that chain ID of tx matches the signer. We also accept ID zero here, + // because it indicates that the chain ID was not specified in the tx. + if txdata.SenderTx.chainID().Sign() != 0 && txdata.SenderTx.chainID().Cmp(s.chainId) != 0 { + return nil, nil, nil, ErrInvalidChainId + } + R, S, _ = decodeSignature(sig) + V = big.NewInt(int64(sig[64])) + return R, S, V, nil +} + +// Hash returns the hash to be signed by the sender. +// It does not uniquely identify the transaction. +func (s feeDelegateSigner) Hash(tx *Transaction) common.Hash { + senderV, senderR, senderS := tx.RawSignatureValues() + return prefixedRlpHash( + tx.Type(), + []interface{}{ + []interface{}{ + s.chainId, + tx.Nonce(), + tx.GasTipCap(), + tx.GasFeeCap(), + tx.Gas(), + tx.To(), + tx.Value(), + tx.Data(), + tx.AccessList(), + senderV, + senderR, + senderS, + }, + tx.FeePayer(), + }) +} +``` +*** +*** +## Extend and Add RPC api + +### 1. Add feePayer,FV,FR,FS in RPCTransaction Struct +* internal/ethapi/api.go + +``` go +type RPCTransaction struct { + BlockHash *common.Hash `json:"blockHash"` + BlockNumber *hexutil.Big `json:"blockNumber"` + From common.Address `json:"from"` + Gas hexutil.Uint64 `json:"gas"` + GasPrice *hexutil.Big `json:"gasPrice"` + GasFeeCap *hexutil.Big `json:"maxFeePerGas,omitempty"` + GasTipCap *hexutil.Big `json:"maxPriorityFeePerGas,omitempty"` + Hash common.Hash `json:"hash"` + Input hexutil.Bytes `json:"input"` + Nonce hexutil.Uint64 `json:"nonce"` + To *common.Address `json:"to"` + TransactionIndex *hexutil.Uint64 `json:"transactionIndex"` + Value *hexutil.Big `json:"value"` + Type hexutil.Uint64 `json:"type"` + Accesses *types.AccessList `json:"accessList,omitempty"` + ChainID *hexutil.Big `json:"chainId,omitempty"` + V *hexutil.Big `json:"v"` + R *hexutil.Big `json:"r"` + S *hexutil.Big `json:"s"` + // fee delegation + FeePayer *common.Address `json:"feePayer,omitempty"` + FV *hexutil.Big `json:"fv,omitempty"` + FR *hexutil.Big `json:"fr,omitempty"` + FS *hexutil.Big `json:"fs,omitempty"` +} +``` + +### 2.Extend signTransaction RPC + +- example : + +``` +$ bin/gweimx.sh console +> personal.signTransaction({ + from:"0x82667998ae5fd9e4f4637fc805e97740c673c517", + chainId: "0x458", + gas: "0x5208", + maxFeePerGas: "0x174876e801", + maxPriorityFeePerGas: "0x174876e801", + hash: "0x19b5e90deb03cd4b87aca41ca09dcfed5e7c7ad33e6579f30f7efba722c54424", + input: "0x", + nonce: "0x1c", + to: "0xdb8408bb47bf5e745fed00fc2c99e2f4e1a9270f", + value: "0xdde0b6b3a7640000", + r: "0xb4dc96b4580bd1d3f090b953ea3612625dd834af8e7cc6146def84a0c137b32c", + s: "0x82427bf3a4589ffe79bebad9151ece587790462cd44abdd810abe0016134b8f", + v: "0x0", + feePayer: "0xdb8408bb47bf5e745fed00fc2c99e2f4e1a9270f" +},"test") +``` +result: +``` +{ + raw: "0x16f8d0f8768204581c85174876e80185174876e80182520894db8408bb47bf5e745fed00fc2c99e2f4e1a9270f880de0b6b3a764000080c080a0b4dc96b4580bd1d3f090b953ea3612625dd834af8e7cc6146def84a0c137b32ca0082427bf3a4589ffe79bebad9151ece587790462cd44abdd810abe0016134b8f94db8408bb47bf5e745fed00fc2c99e2f4e1a9270f80a0ba376dff9a2a4344a570367c94eeee2434a0e44ccf2da900f54becc6adaf0b5ca077b7d15ab7ba7213b5189094ca1bd41c7a48390767e4acb14c98f3442e561abb", + tx: { + accessList: [], + chainId: "0x458", + feePayer: "0xdb8408bb47bf5e745fed00fc2c99e2f4e1a9270f", + fr: "0xba376dff9a2a4344a570367c94eeee2434a0e44ccf2da900f54becc6adaf0b5c", + fs: "0x77b7d15ab7ba7213b5189094ca1bd41c7a48390767e4acb14c98f3442e561abb", + fv: "0x0", + gas: "0x5208", + gasPrice: null, + hash: "0x19b5e90deb03cd4b87aca41ca09dcfed5e7c7ad33e6579f30f7efba722c54424", + input: "0x", + maxFeePerGas: "0x174876e801", + maxPriorityFeePerGas: "0x174876e801", + nonce: "0x1c", + r: "0xb4dc96b4580bd1d3f090b953ea3612625dd834af8e7cc6146def84a0c137b32c", + s: "0x82427bf3a4589ffe79bebad9151ece587790462cd44abdd810abe0016134b8f", + to: "0xdb8408bb47bf5e745fed00fc2c99e2f4e1a9270f", + type: "0x16", + v: "0x0", + value: "0xde0b6b3a7640000" + } +} +``` +### 3.Add SignRawFeeDelegateTransaction RPC +* internal/ethapi/api.go + +``` go +func (s *PrivateAccountAPI) SignRawFeeDelegateTransaction(ctx context.Context, args TransactionArgs, input hexutil.Bytes, passwd string) (*SignTransactionResult, error) { + if args.FeePayer == nil { + return nil, fmt.Errorf("missing FeePayer") + } + + // Look up the wallet containing the requested signer + account := accounts.Account{Address: *args.FeePayer} + + wallet, err := s.am.Find(account) + if err != nil { + return nil, err + } + + rawTx := new(types.Transaction) + if err := rawTx.UnmarshalBinary(input); err != nil { + return nil, err + } + + V, R, S := rawTx.RawSignatureValues() + if rawTx.Type() == types.DynamicFeeTxType { + SenderTx := types.DynamicFeeTx{ + To: rawTx.To(), + ChainID: rawTx.ChainId(), + Nonce: rawTx.Nonce(), + Gas: rawTx.Gas(), + GasFeeCap: rawTx.GasFeeCap(), + GasTipCap: rawTx.GasTipCap(), + Value: rawTx.Value(), + Data: rawTx.Data(), + AccessList: rawTx.AccessList(), + V: V, + R: R, + S: S, + } + + FeeDelegateDynamicFeeTx := &types.FeeDelegateDynamicFeeTx{ + FeePayer: args.FeePayer, + } + + FeeDelegateDynamicFeeTx.SetSenderTx(SenderTx) + tx := types.NewTx(FeeDelegateDynamicFeeTx) + + signed, err := wallet.SignTxWithPassphrase(account, passwd, tx, s.b.ChainConfig().ChainID) + + if err != nil { + return nil, err + } + data, err := signed.MarshalBinary() + if err != nil { + return nil, err + } + + return &SignTransactionResult{data, signed}, nil + } + + return nil, fmt.Errorf("senderTx type error") +} +``` +- example : +``` +$ bin/gweimx.sh console +> personal.signRawFeeDelegateTransaction({"feePayer":"0xdb8408bb47bf5e745fed00fc2c99e2f4e1a9270f"}, +"0x02f8768204581c85174876e80185174876e80182520894db8408bb47bf5e745fed00fc2c99e2f4e1a9270f880de0b6b3a764000080c080a0b4dc96b4580bd1d3f090b953ea3612625dd834af8e7cc6146def84a0c137b32ca0082427bf3a4589ffe79bebad9151ece587790462cd44abdd810abe0016134b8f" +,"test") +``` +result: +``` +{ +raw: "0x16f8d0f8768204581c85174876e80185174876e80182520894db8408bb47bf5e745fed00fc2c99e2f4e1a9270f880de0b6b3a764000080c080a0b4dc96b4580bd1d3f090b953ea3612625dd834af8e7cc6146def84a0c137b32ca0082427bf3a4589ffe79bebad9151ece587790462cd44abdd810abe0016134b8f94db8408bb47bf5e745fed00fc2c99e2f4e1a9270f80a0ba376dff9a2a4344a570367c94eeee2434a0e44ccf2da900f54becc6adaf0b5ca077b7d15ab7ba7213b5189094ca1bd41c7a48390767e4acb14c98f3442e561abb", +tx: { + accessList: [], + chainId: "0x458", + feePayer: "0xdb8408bb47bf5e745fed00fc2c99e2f4e1a9270f", + fr: "0xba376dff9a2a4344a570367c94eeee2434a0e44ccf2da900f54becc6adaf0b5c", + fs: "0x77b7d15ab7ba7213b5189094ca1bd41c7a48390767e4acb14c98f3442e561abb", + fv: "0x0", + gas: "0x5208", + gasPrice: null, + hash: "0x19b5e90deb03cd4b87aca41ca09dcfed5e7c7ad33e6579f30f7efba722c54424", + input: "0x", + maxFeePerGas: "0x174876e801", + maxPriorityFeePerGas: "0x174876e801", + nonce: "0x1c", + r: "0xb4dc96b4580bd1d3f090b953ea3612625dd834af8e7cc6146def84a0c137b32c", + s: "0x82427bf3a4589ffe79bebad9151ece587790462cd44abdd810abe0016134b8f", + to: "0xdb8408bb47bf5e745fed00fc2c99e2f4e1a9270f", + type: "0x16", + v: "0x0", + value: "0xde0b6b3a7640000" + } +} +``` + +### 4.Add feePayer information to getTransaction RPC result + +``` +$ bin/gwemix.sh console +> eth.getTransaction('0x53ef850a55c09b698ccc33bb5f373ea1e67f5002b4d48bdcf9b2078b368d36a8') +``` +result: +``` +{ + accessList: [], + blockHash: "0x4cab269319725d2cf4d6eb118b11a54c6d73f819d01cc9c64653a5d1975254b8", + blockNumber: 127551, + chainId: "0x458", + feePayer: "0x82667998ae5fd9e4f4637fc805e97740c673c517", + fr: "0xde281f30f9c06f17a77ce391ef1f91b2c5bbcc28dbd4350c9a31c6d0b0fe5a37", + from: "0xe6205771b7777421bfddb90c93eda3f3d9d6e35a", + fs: "0x1f678163b0dfbd8913473305c9b3ee0e3d19705440df93d5095b1231f600bb61", + fv: "0x1", + gas: 21000, + gasPrice: 100000000001, + hash: "0x53ef850a55c09b698ccc33bb5f373ea1e67f5002b4d48bdcf9b2078b368d36a8", + input: "0x", + maxFeePerGas: 100000000001, + maxPriorityFeePerGas: 100000000001, + nonce: 30, + r: "0xbf9e47ffaf39aed6523c93f94badd5df32618bfd041fd95f5c411cbe79b5f7f5", + s: "0x5599c2eea6d4b290259ff545b65ba680cf4d1591610e04dca5b31b879acf09b", + to: "0x4231d51941be79312203e4c029a3b56162902353", + transactionIndex: 0, + type: "0x16", + v: "0x0", + value: 1000000000000000000 +} +``` +### Fee Delegation Transaction Example +- Reference code : https://github.com/wemixarchive/feedelegation-js \ No newline at end of file diff --git a/core/error.go b/core/error.go index a611c7c23344..4816a4243c2b 100644 --- a/core/error.go +++ b/core/error.go @@ -99,13 +99,13 @@ var ( // fee delegation // ErrInvalidFeePayer is returned if the transaction contains an invalid feePayer's signature. - ErrInvalidFeePayer = errors.New("invalid fee delegation feePayer") + ErrInvalidFeePayer = errors.New("fee delegation : invalid feePayer") // ErrFeePayerInsufficientFunds is returned if the fee cost of executing a transaction // is higher than the balance of the feePayer's account. - ErrFeePayerInsufficientFunds = errors.New("fee delegation feePayer's insufficient funds for gas * price") + ErrFeePayerInsufficientFunds = errors.New("fee delegation : feePayer insufficient funds for gas * price") // ErrSenderInsufficientFunds is returned if the value cost of executing a transaction // is higher than the balance of the sender's account. - ErrSenderInsufficientFunds = errors.New("fee delegation sender's account insufficient funds for value") + ErrSenderInsufficientFunds = errors.New("fee delegation : sender insufficient funds for value") ) From c3ccd633d06caf6f13e869817521abce52cb3fc3 Mon Sep 17 00:00:00 2001 From: Uh Sado Date: Tue, 18 Apr 2023 05:52:04 +0000 Subject: [PATCH 10/25] Makefile, wemix: rewards distribution according to stakes --- Makefile | 2 +- wemix/admin.go | 152 +++++++++++++++++++++++++++++++----------- wemix/miner_limit.go | 8 +-- wemix/rewards_test.go | 115 ++++++++++++++++++++++++++++++++ 4 files changed, 234 insertions(+), 43 deletions(-) create mode 100644 wemix/rewards_test.go diff --git a/Makefile b/Makefile index e1d5f1e8c1f4..f7b7366f29a1 100644 --- a/Makefile +++ b/Makefile @@ -159,7 +159,7 @@ BEGIN { print "package wemix\n"; } \ n = "Registry"; \ print "var " n "Abi = `{ \"contractName\": \"" n "\", \"abi\": " $$0 "}`"; \ } \ -/^var Staking_contract/ { \ +/^var StakingImp_contract/ { \ sub("^var[^(]*\\(","",$$0); sub("\\);$$","",$$0); \ n = "Staking"; \ print "var " n "Abi = `{ \"contractName\": \"" n "\", \"abi\": " $$0 "}`"; \ diff --git a/wemix/admin.go b/wemix/admin.go index 0ab5cdc284b2..ea196ee70baa 100644 --- a/wemix/admin.go +++ b/wemix/admin.go @@ -50,8 +50,9 @@ type wemixNode struct { } type wemixMember struct { - Addr common.Address `json:"address"` - Stake *big.Int `json:"stake"` + Staker common.Address `json:"address"` + Reward common.Address `json:"reward"` + Stake *big.Int `json:"stake"` } type wemixAdmin struct { @@ -113,11 +114,11 @@ type blockBuildParameters struct { // reward related parameters type rewardParameters struct { - rewardAmount *big.Int - staker, ecoSystem, maintenance *common.Address - members []*wemixMember - distributionMethod []*big.Int - blocksPer int64 + rewardAmount *big.Int + staker, ecoSystem, maintenance, feeCollector *common.Address + members []*wemixMember + distributionMethod []*big.Int + blocksPer int64 } var ( @@ -280,7 +281,7 @@ func (ma *wemixAdmin) getInt(ctx context.Context, contract *metclient.RemoteCont } // TODO: error handling -func (ma *wemixAdmin) getRegGovEnvContracts(ctx context.Context, height *big.Int) (reg, gov, env *metclient.RemoteContract, err error) { +func (ma *wemixAdmin) getRegGovEnvContracts(ctx context.Context, height *big.Int) (reg, gov, env, staking *metclient.RemoteContract, err error) { if ma.registry == nil { err = wemixminer.ErrNotInitialized return @@ -297,6 +298,10 @@ func (ma *wemixAdmin) getRegGovEnvContracts(ctx context.Context, height *big.Int Cli: ma.cli, Abi: ma.gov.Abi, } + staking = &metclient.RemoteContract{ + Cli: ma.cli, + Abi: ma.staking.Abi, + } if ma.registry.To != nil { reg.To = ma.registry.To } else { @@ -325,6 +330,14 @@ func (ma *wemixAdmin) getRegGovEnvContracts(ctx context.Context, height *big.Int env.To = &common.Address{} env.To.SetBytes(addr.Bytes()) + input = []interface{}{metclient.ToBytes32("Staking")} + if err = metclient.CallContract(ctx, reg, "getContractAddress", input, &addr, height); err != nil { + err = wemixminer.ErrNotInitialized + return + } + staking.To = &common.Address{} + staking.To.SetBytes(addr.Bytes()) + return } @@ -419,7 +432,7 @@ func (ma *wemixAdmin) getWemixNodes(ctx context.Context, block *big.Int) ([]*wem return nil, err } - if err = metclient.CallContract(ctx, ma.gov, "getReward", input, &addr, block); err != nil { + if err = metclient.CallContract(ctx, ma.gov, "getMember", input, &addr, block); err != nil { return nil, err } @@ -445,7 +458,7 @@ func (ma *wemixAdmin) getWemixNodes(ctx context.Context, block *big.Int) ([]*wem func (ma *wemixAdmin) getRewardParams(ctx context.Context, height *big.Int) (*rewardParameters, error) { rp := &rewardParameters{} - reg, gov, env, err := ma.getRegGovEnvContracts(ctx, height) + reg, gov, env, staking, err := ma.getRegGovEnvContracts(ctx, height) if err != nil { return nil, err } @@ -481,6 +494,15 @@ func (ma *wemixAdmin) getRewardParams(ctx context.Context, height *big.Int) (*re rp.maintenance = &common.Address{} rp.maintenance.SetBytes(addr.Bytes()) + input = []interface{}{metclient.ToBytes32("FeeCollector")} + if err = metclient.CallContract(ctx, reg, "getContractAddress", input, &addr, height); err != nil { + // ignore error + rp.feeCollector = nil + } else { + rp.feeCollector = &common.Address{} + rp.feeCollector.SetBytes(addr.Bytes()) + } + rp.blocksPer, err = ma.getInt(ctx, env, height, "getBlocksPer") if err != nil { return nil, err @@ -490,16 +512,25 @@ func (ma *wemixAdmin) getRewardParams(ctx context.Context, height *big.Int) (*re return nil, err } else { for i := int64(1); i <= count; i++ { + var rewardAddress common.Address + var stake *big.Int + input = []interface{}{big.NewInt(i)} - if err = metclient.CallContract(ctx, gov, "getReward", input, &addr, height); err != nil { + if err = metclient.CallContract(ctx, gov, "getMember", input, &addr, height); err != nil { + return nil, err + } + input = []interface{}{big.NewInt(i)} + if err = metclient.CallContract(ctx, gov, "getReward", input, &rewardAddress, height); err != nil { + return nil, err + } + input = []interface{}{addr} + if err = metclient.CallContract(ctx, staking, "lockedBalanceOf", input, &stake, height); err != nil { return nil, err } - // NB. no staking consideration - // if err = metclient.CallContract(ctx, staking, "lockedBalanceOf", input, &stake, height); err != nil { - // return nil, err - // } rp.members = append(rp.members, &wemixMember{ - Addr: addr, + Staker: addr, + Reward: rewardAddress, + Stake: stake, }) } } @@ -540,12 +571,19 @@ func (ma *wemixAdmin) getRewardAccounts(ctx context.Context, block *big.Int) (re } for i := int64(1); i <= count; i++ { + var rewardAddress common.Address + input = []interface{}{big.NewInt(i)} - err = metclient.CallContract(ctx, ma.gov, "getReward", input, + err = metclient.CallContract(ctx, ma.gov, "getMember", input, &addr, block) if err != nil { return } + err = metclient.CallContract(ctx, ma.gov, "getReward", input, + &rewardAddress, block) + if err != nil { + return + } input = []interface{}{addr} err = metclient.CallContract(ctx, ma.staking, "lockedBalanceOf", input, &stake, block) @@ -554,8 +592,9 @@ func (ma *wemixAdmin) getRewardAccounts(ctx context.Context, block *big.Int) (re } members = append(members, &wemixMember{ - Addr: addr, - Stake: stake, + Staker: addr, + Reward: rewardAddress, + Stake: stake, }) } @@ -1010,6 +1049,8 @@ func handleBlock94Rewards(height *big.Int, rp *rewardParameters, fees *big.Int) return testnetBlock94Rewards } +// distributeRewards divides the rewardAmount among members according to their +// stakes, and allocates rewards to staker, ecoSystem, and maintenance accounts. func distributeRewards(height *big.Int, rp *rewardParameters, fees *big.Int) ([]reward, error) { dm := new(big.Int) for i := 0; i < len(rp.distributionMethod); i++ { @@ -1032,27 +1073,56 @@ func distributeRewards(height *big.Int, rp *rewardParameters, fees *big.Int) ([] maintenanceAmount.Sub(maintenanceAmount, stakerAmount) maintenanceAmount.Sub(maintenanceAmount, ecoSystemAmount) - // fees go to maintenance - maintenanceAmount.Add(maintenanceAmount, fees) + // if feeCollector is not specified, i.e. nil, fees go to maintenance + if rp.feeCollector == nil { + maintenanceAmount.Add(maintenanceAmount, fees) + } var rewards []reward if n := len(rp.members); n > 0 { - v0, v1 := big.NewInt(0), big.NewInt(1) - vn := big.NewInt(int64(n)) - b := new(big.Int).Set(minerAmount) - d := new(big.Int) - d.Div(b, vn) + stakeTotal, equalStakes := big.NewInt(0), true for i := 0; i < n; i++ { - rewards = append(rewards, reward{ - Addr: rp.members[i].Addr, - Reward: new(big.Int).Set(d), - }) + if equalStakes && i < n-1 && rp.members[i].Stake.Cmp(rp.members[i+1].Stake) != 0 { + equalStakes = false + } + stakeTotal.Add(stakeTotal, rp.members[i].Stake) } - d.Mul(d, vn) - b.Sub(b, d) - for i, ix := 0, height.Int64()%int64(n); b.Cmp(v0) > 0; i, ix = i+1, (ix+1)%int64(n) { - rewards[ix].Reward.Add(rewards[ix].Reward, v1) - b.Sub(b, v1) + + if equalStakes { + v0, v1 := big.NewInt(0), big.NewInt(1) + vn := big.NewInt(int64(n)) + b := new(big.Int).Set(minerAmount) + d := new(big.Int) + d.Div(b, vn) + for i := 0; i < n; i++ { + rewards = append(rewards, reward{ + Addr: rp.members[i].Reward, + Reward: new(big.Int).Set(d), + }) + } + d.Mul(d, vn) + b.Sub(b, d) + for i, ix := 0, height.Int64()%int64(n); b.Cmp(v0) > 0; i, ix = i+1, (ix+1)%int64(n) { + rewards[ix].Reward.Add(rewards[ix].Reward, v1) + b.Sub(b, v1) + } + } else { + // rewards distributed according to stakes + v0, v1 := big.NewInt(0), big.NewInt(1) + remainder := new(big.Int).Set(minerAmount) + for i := 0; i < n; i++ { + memberReward := new(big.Int).Mul(minerAmount, rp.members[i].Stake) + memberReward.Div(memberReward, stakeTotal) + remainder.Sub(remainder, memberReward) + rewards = append(rewards, reward{ + Addr: rp.members[i].Reward, + Reward: memberReward, + }) + } + for ix := height.Int64() % int64(n); remainder.Cmp(v0) > 0; ix = (ix + 1) % int64(n) { + rewards[ix].Reward.Add(rewards[ix].Reward, v1) + remainder.Sub(remainder, v1) + } } } rewards = append(rewards, reward{ @@ -1067,6 +1137,12 @@ func distributeRewards(height *big.Int, rp *rewardParameters, fees *big.Int) ([] Addr: *rp.maintenance, Reward: maintenanceAmount, }) + if rp.feeCollector != nil { + rewards = append(rewards, reward{ + Addr: *rp.feeCollector, + Reward: fees, + }) + } return rewards, nil } @@ -1100,7 +1176,7 @@ func (ma *wemixAdmin) calculateRewards(num, blockReward, fees *big.Int, addBalan if len(rp.members) > 0 { mix := int(num.Int64()/ma.blocksPer) % len(rp.members) coinbase = &common.Address{} - coinbase.SetBytes(rp.members[mix].Addr.Bytes()) + coinbase.SetBytes(rp.members[mix].Reward.Bytes()) } rr, errr := distributeRewards(num, rp, fees) @@ -1151,7 +1227,7 @@ func verifyBlockSig(height *big.Int, coinbase common.Address, nodeId []byte, has // get nodeid from the coinbase num := new(big.Int).Sub(height, common.Big1) - _, gov, _, err := admin.getRegGovEnvContracts(ctx, num) + _, gov, _, _, err := admin.getRegGovEnvContracts(ctx, num) if err != nil { return err == wemixminer.ErrNotInitialized } else if count, err := admin.getInt(ctx, gov, num, "getMemberLength"); err != nil || count == 0 { @@ -1339,7 +1415,7 @@ func getBlockBuildParameters(height *big.Int) (blockInterval int64, maxBaseFee, defer cancel() var env, gov *metclient.RemoteContract - if _, gov, env, err = admin.getRegGovEnvContracts(ctx, height); err != nil { + if _, gov, env, _, err = admin.getRegGovEnvContracts(ctx, height); err != nil { err = wemixminer.ErrNotInitialized return } else if count, err2 := admin.getInt(ctx, gov, height, "getMemberLength"); err2 != nil || count == 0 { diff --git a/wemix/miner_limit.go b/wemix/miner_limit.go index fb49cb1c9b3d..7452440396bd 100644 --- a/wemix/miner_limit.go +++ b/wemix/miner_limit.go @@ -26,7 +26,7 @@ func (ma *wemixAdmin) collectMinerStates(height *big.Int) []*wemixapi.WemixMiner err error ) ctx = context.Background() - if _, gov, _, err = ma.getRegGovEnvContracts(ctx, height); err != nil { + if _, gov, _, _, err = ma.getRegGovEnvContracts(ctx, height); err != nil { return nil } e, err := getCoinbaseEnodeCache(ctx, height, gov) @@ -123,7 +123,7 @@ func enodeExists(ctx context.Context, height *big.Int, gov *metclient.RemoteCont // returns wemix nodes at given height func getNodesAt(height *big.Int) ([]*wemixNode, error) { ctx := context.Background() - if _, gov, _, err := admin.getRegGovEnvContracts(ctx, height); err != nil { + if _, gov, _, _, err := admin.getRegGovEnvContracts(ctx, height); err != nil { return nil, wemixminer.ErrNotInitialized } else if e, err := getCoinbaseEnodeCache(ctx, height, gov); err != nil { return nil, err @@ -214,7 +214,7 @@ func (ma *wemixAdmin) isEligibleMiner(height *big.Int) (bool, error) { if err != nil { return false, wemixminer.ErrNotInitialized } - if _, gov, _, err = ma.getRegGovEnvContracts(ctx, prev); err != nil { + if _, gov, _, _, err = ma.getRegGovEnvContracts(ctx, prev); err != nil { return false, wemixminer.ErrNotInitialized } e, err := getCoinbaseEnodeCache(ctx, prev, gov) @@ -252,7 +252,7 @@ func (ma *wemixAdmin) nextMinerCandidates(height *big.Int) ([]*wemixNode, error) err error ) ctx = context.Background() - if _, gov, _, err = ma.getRegGovEnvContracts(ctx, height); err != nil { + if _, gov, _, _, err = ma.getRegGovEnvContracts(ctx, height); err != nil { return nil, wemixminer.ErrNotInitialized } e, err := getCoinbaseEnodeCache(ctx, height, gov) diff --git a/wemix/rewards_test.go b/wemix/rewards_test.go new file mode 100644 index 000000000000..b443ebd56271 --- /dev/null +++ b/wemix/rewards_test.go @@ -0,0 +1,115 @@ +// test_rewards.go + +package wemix + +import ( + "encoding/json" + "math/big" + "testing" + + "github.com/ethereum/go-ethereum/common" +) + +// TestDistributeRewards tests the DistributeRewards function +func TestDistributeRewards(t *testing.T) { + + hexToAddressPtr := func(addr string) *common.Address { + address := common.HexToAddress(addr) + return &address + } + + hexToBigInt := func(hexNum string) *big.Int { + if num, ok := new(big.Int).SetString(hexNum[2:], 16); ok { + return num + } else { + return nil + } + } + + // Test cases + tests := []struct { + name string + height *big.Int + rp *rewardParameters + fees *big.Int + want string + }{ + { + name: "basic test", + height: big.NewInt(100), + rp: &rewardParameters{ + rewardAmount: big.NewInt(10000000000), + staker: hexToAddressPtr("0x1111111111111111111111111111111111111111"), + ecoSystem: hexToAddressPtr("0x2222222222222222222222222222222222222222"), + maintenance: hexToAddressPtr("0x3333333333333333333333333333333333333333"), + feeCollector: nil, + members: []*wemixMember{ + { + Staker: common.HexToAddress("0x4444444444444444444444444444444444444444"), + Reward: common.HexToAddress("0x4444444444444444444444444444444444444444"), + Stake: big.NewInt(500), + }, + { + Staker: common.HexToAddress("0x5555555555555555555555555555555555555555"), + Reward: common.HexToAddress("0x5555555555555555555555555555555555555555"), + Stake: big.NewInt(500), + }, + }, + distributionMethod: []*big.Int{big.NewInt(5000), big.NewInt(3000), big.NewInt(2000)}, + blocksPer: 10, + }, + fees: big.NewInt(100), + want: `[{"addr":"0x4444444444444444444444444444444444444444","reward":2500000000},{"addr":"0x5555555555555555555555555555555555555555","reward":2500000000},{"addr":"0x1111111111111111111111111111111111111111","reward":3000000000},{"addr":"0x2222222222222222222222222222222222222222","reward":2000000000},{"addr":"0x3333333333333333333333333333333333333333","reward":100}]`, + }, + { + name: "case 1", + height: hexToBigInt("0x10a187"), + rp: &rewardParameters{ + rewardAmount: hexToBigInt("0xde0b6b3a7640000"), + staker: hexToAddressPtr("0x6f488615e6b462ce8909e9cd34c3f103994ab2fb"), + ecoSystem: hexToAddressPtr("0x6bd26c4a45e7d7cac2a389142f99f12e5713d719"), + maintenance: hexToAddressPtr("0x816e30b6c314ba5d1a67b1b54be944ce4554ed87"), + feeCollector: nil, + members: []*wemixMember{ + { + Staker: common.HexToAddress("0x02b4b2d83786c8ee315db2ddac704794850d2149"), + Reward: common.HexToAddress("0x02b4b2d83786c8ee315db2ddac704794850d2149"), + Stake: hexToBigInt("0x1a784379d99db42000000"), + }, + { + Staker: common.HexToAddress("0xb16d2494fddfa4c000deaf642d47673e5ca74e07"), + Reward: common.HexToAddress("0xb16d2494fddfa4c000deaf642d47673e5ca74e07"), + Stake: hexToBigInt("0xe8ef1e96ae3897800000"), + }, + { + Staker: common.HexToAddress("0x452893ed818c0e3ea6f415aeab8ef08778087fc6"), + Reward: common.HexToAddress("0x452893ed818c0e3ea6f415aeab8ef08778087fc6"), + Stake: hexToBigInt("0xc92b9a6adc4825c00000"), + }, + { + Staker: common.HexToAddress("0xf4404494ab647d29a62c57118c3a739c521fa004"), + Reward: common.HexToAddress("0xf4404494ab647d29a62c57118c3a739c521fa004"), + Stake: hexToBigInt("0x1a0bd7e67e11f6e00000"), + }, + }, + blocksPer: 1, + distributionMethod: []*big.Int{big.NewInt(4000), big.NewInt(1000), big.NewInt(2500), big.NewInt(2500)}, + }, + fees: hexToBigInt("0x0"), + want: `[{"addr":"0x02b4b2d83786c8ee315db2ddac704794850d2149","reward":191708602923556195},{"addr":"0xb16d2494fddfa4c000deaf642d47673e5ca74e07","reward":105439731607955907},{"addr":"0x452893ed818c0e3ea6f415aeab8ef08778087fc6","reward":91061586388689192},{"addr":"0xf4404494ab647d29a62c57118c3a739c521fa004","reward":11790079079798706},{"addr":"0x6f488615e6b462ce8909e9cd34c3f103994ab2fb","reward":100000000000000000},{"addr":"0x6bd26c4a45e7d7cac2a389142f99f12e5713d719","reward":250000000000000000},{"addr":"0x816e30b6c314ba5d1a67b1b54be944ce4554ed87","reward":250000000000000000}]`, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + // Call the distributeRewards function + rewards, err := distributeRewards(tt.height, tt.rp, tt.fees) + rewardsString, _ := json.Marshal(rewards) + if string(rewardsString) != tt.want { + t.Errorf("distributeRewards() failed: %v, %v <-> %v", err, tt.want, string(rewardsString)) + } + }) + } +} + +// EOF From b3ed5a7d4031b449a7a67cfbf805fafa3e31102a Mon Sep 17 00:00:00 2001 From: Uh Sado Date: Wed, 19 Apr 2023 04:49:46 +0000 Subject: [PATCH 11/25] wemix: script updates for rewards distribution according to stakes --- wemix/rewards_test.go | 32 +++++++++++++++ wemix/scripts/config.json.example | 16 ++++++++ wemix/scripts/deploy-governance.js | 65 +++++++++++++++++++++--------- 3 files changed, 93 insertions(+), 20 deletions(-) diff --git a/wemix/rewards_test.go b/wemix/rewards_test.go index b443ebd56271..0737abd492c1 100644 --- a/wemix/rewards_test.go +++ b/wemix/rewards_test.go @@ -98,6 +98,38 @@ func TestDistributeRewards(t *testing.T) { fees: hexToBigInt("0x0"), want: `[{"addr":"0x02b4b2d83786c8ee315db2ddac704794850d2149","reward":191708602923556195},{"addr":"0xb16d2494fddfa4c000deaf642d47673e5ca74e07","reward":105439731607955907},{"addr":"0x452893ed818c0e3ea6f415aeab8ef08778087fc6","reward":91061586388689192},{"addr":"0xf4404494ab647d29a62c57118c3a739c521fa004","reward":11790079079798706},{"addr":"0x6f488615e6b462ce8909e9cd34c3f103994ab2fb","reward":100000000000000000},{"addr":"0x6bd26c4a45e7d7cac2a389142f99f12e5713d719","reward":250000000000000000},{"addr":"0x816e30b6c314ba5d1a67b1b54be944ce4554ed87","reward":250000000000000000}]`, }, + { + name: "with feeCollector", + height: hexToBigInt("0x2a"), + rp: &rewardParameters{ + rewardAmount: hexToBigInt("0xde0b6b3a7640000"), + staker: hexToAddressPtr("0xf5ed7476157980e831516cdd5493f5334a35b23e"), + ecoSystem: hexToAddressPtr("0x6bd26c4a45e7d7cac2a389142f99f12e5713d719"), + maintenance: hexToAddressPtr("0x816e30b6c314ba5d1a67b1b54be944ce4554ed87"), + feeCollector: hexToAddressPtr("0x6f488615e6b462ce8909e9cd34c3f103994ab2fb"), + members: []*wemixMember{ + { + Staker: common.HexToAddress("0x02b4b2d83786c8ee315db2ddac704794850d2149"), + Reward: common.HexToAddress("0x02b4b2d83786c8ee315db2ddac704794850d2149"), + Stake: hexToBigInt("0x1a784379d99db42000000"), + }, + { + Staker: common.HexToAddress("0xb16d2494fddfa4c000deaf642d47673e5ca74e07"), + Reward: common.HexToAddress("0xb16d2494fddfa4c000deaf642d47673e5ca74e07"), + Stake: hexToBigInt("0xe8ef1e96ae3897800000"), + }, + { + Staker: common.HexToAddress("0x452893ed818c0e3ea6f415aeab8ef08778087fc6"), + Reward: common.HexToAddress("0x452893ed818c0e3ea6f415aeab8ef08778087fc6"), + Stake: hexToBigInt("0xc92b9a6adc4825c00000"), + }, + }, + blocksPer: 1, + distributionMethod: []*big.Int{big.NewInt(4000), big.NewInt(1000), big.NewInt(2500), big.NewInt(2500)}, + }, + fees: hexToBigInt("0xadc5e885b956557f"), + want: `[{"addr":"0x02b4b2d83786c8ee315db2ddac704794850d2149","reward":197530864197530865},{"addr":"0xb16d2494fddfa4c000deaf642d47673e5ca74e07","reward":108641975308641975},{"addr":"0x452893ed818c0e3ea6f415aeab8ef08778087fc6","reward":93827160493827160},{"addr":"0xf5ed7476157980e831516cdd5493f5334a35b23e","reward":100000000000000000},{"addr":"0x6bd26c4a45e7d7cac2a389142f99f12e5713d719","reward":250000000000000000},{"addr":"0x816e30b6c314ba5d1a67b1b54be944ce4554ed87","reward":250000000000000000},{"addr":"0x6f488615e6b462ce8909e9cd34c3f103994ab2fb","reward":12521670000011269503}]`, + }, } for _, tt := range tests { diff --git a/wemix/scripts/config.json.example b/wemix/scripts/config.json.example index 2fd26ada9927..369b3cfc3c73 100644 --- a/wemix/scripts/config.json.example +++ b/wemix/scripts/config.json.example @@ -3,6 +3,22 @@ "staker": "0xf00d9928ed1dada205aec56ab85e0e2ab5670ad5", "ecosystem": "0x1be19928ed1dada205aec56ab85e0e2ab5670ad5", "maintenance": "0x900d9928ed1dada205aec56ab85e0e2ab5670ad5", + "feecollector": "0x900d9928ed1dada205aec56ab85e0e2ab5670ad5", + "env": { + "ballotDurationMin": 86400, + "ballotDurationMax": 604800, + "stakingMin": 1500000000000000000000000, + "stakingMax": 1500000000000000000000000, + "MaxIdleBlockInterval": 5, + "blockCreationTime": 1000, + "blockRewardAmount": 1000000000000000000, + "maxPriorityFeePerGas": 100000000000, + "rewardDistributionMethod": [ 4000, 1000, 2500, 2500 ], + "maxBaseFee": 50000000000000, + "blockGasLimit": 105000000, + "baseFeeMaxChangeRate": 55, + "gasTargetPercentage": 30 + }, "members": [ { "addr": "0x1be19928ed1dada205aec56ab85e0e2ab5670ad5", diff --git a/wemix/scripts/deploy-governance.js b/wemix/scripts/deploy-governance.js index 70272913013c..564fdac3d1ad 100644 --- a/wemix/scripts/deploy-governance.js +++ b/wemix/scripts/deploy-governance.js @@ -59,6 +59,11 @@ var GovernanceDeployer = new function() { throw "Invalid maintenance address " + data.maintenance data.maintenance = web3.toChecksumAddress(data.maintenance) } + if (data.feecollector) { + if (!web3.isAddress(data.feecollector)) + throw "Invalid feecollector address " + data.feecollector + data.feecollector = web3.toChecksumAddress(data.feecollector) + } } // bytes packNum(int num) @@ -67,7 +72,10 @@ var GovernanceDeployer = new function() { return web3.padLeft(web3.toHex(num).substr(2), 64, "0") } - // { "nodes": string, "stakes": string, "staker": address, "ecosystem": address, "maintenance": address } getInitialGovernanceMembersAndNodes(json data) + // { "nodes": string, "stakes": string, "staker": address, + // "ecosystem": address, "maintenance": address, "feecollector": address, + // "env": { env variables } } + // getInitialGovernanceMembersAndNodes(json data) this.getInitialGovernanceMembersAndNodes = function(data) { var nodes = "0x", stakes = "0x" @@ -106,7 +114,7 @@ var GovernanceDeployer = new function() { this.packNum(m.ip.length) + web3.fromAscii(m.ip).substr(2) + this.packNum(m.port) - stakes += web3.padLeft(m.addr, 64, "0") + + stakes += web3.padLeft(m.staker, 64, "0") + this.packNum(m.stake) } return { @@ -114,7 +122,9 @@ var GovernanceDeployer = new function() { "stakes": stakes, "staker": data.staker, "ecosystem": data.ecosystem, - "maintenance": data.maintenance + "maintenance": data.maintenance, + "feecollector": data.feecollector, + "env": data.env } } @@ -173,9 +183,9 @@ var GovernanceDeployer = new function() { throw "Cannot get a transaction receipt for " + tx } - this.sendStakingDeposit = function (to, data) { + this.sendStakingDeposit = function (to, data, stake) { var tx = { from: this.from, to: to, gas: this.gas, gasPrice: this.gasPrice, nonce: this.nonce(), value: "0" } - tx.value = "1500000" + "0".repeat(18) + tx.value = stake if (data) tx.data = data var stx = offlineWalletSignTx(this.wallet.id, tx, eth.chainId()) @@ -285,13 +295,16 @@ var GovernanceDeployer = new function() { txs[txs.length] = this.sendTx(registry.address, null, registry.setContractDomain.getData( "Maintenance", initData.maintenance)) + if (initData.feecollector) + txs[txs.length] = this.sendTx(registry.address, null, + registry.setContractDomain.getData( + "FeeCollector", initData.feecollector)) // no need to wait for the receipts for the above // 4. initialize environment storage data: - // blocksPer, ballotDurationMin, ballotDurationMax, - // stakingMin, stakingMax, gasPrice this.log("Initializing environment storage...") + data.env = data.env || {} // Just changing address doesn't work here. Address is embedded in // the methods. Have to re-construct temporary EnvStorageImp here. var tmpEnvStorageImp = web3.eth.contract(envStorageImp.abi).at(envStorage.address) @@ -310,18 +323,30 @@ var GovernanceDeployer = new function() { web3.sha3("maxBaseFee"), web3.sha3("blockGasLimit"), web3.sha3("baseFeeMaxChangeRate"), - web3.sha3("gasTargetPercentage") ], - envValues = [ - 1, - 86400, 604800, - 1500000000000000000000000, 1500000000000000000000000, - 5, - 1000, - web3.toWei(1, 'ether'), // mint amount: 1 wemix - web3.toWei(100, 'gwei'), // tip: 100 gwei - 4000, 1000, 2500, 2500, // NCPs, WEMIX Staker, Eco System, Maintenance - web3.toWei(50000, 'gwei'), // maxBaseFee * 21000 -> 1.05 wemix - 5000 * 21000, 55, 30 ] + web3.sha3("gasTargetPercentage") ] + var rewardDistributionMethod = data.env.rewardDistributionMethod || [ 4000, 1000, 2500, 2500 ] + var envValues = [ + 1, + data.env.ballotDurationMin || 86400, + data.env.ballotDurationMax || 604800, + data.env.stakingMin || 1500000000000000000000000, + data.env.stakingMax || 1500000000000000000000000, + data.env.MaxIdleBlockInterval || 5, + data.env.blockCreationTime || 1000, + // mint amount: 1 wemix + data.env. blockRewardAmount || web3.toWei(1, 'ether'), + // tip: 100 gwei + data.env.maxPriorityFeePerGas || web3.toWei(100, 'gwei'), + // NCPs, WEMIX Staker, Eco System, Maintenance + rewardDistributionMethod[0], + rewardDistributionMethod[1], + rewardDistributionMethod[2], + rewardDistributionMethod[3], + // maxBaseFee * 21000 -> 1.05 wemix + data.env.maxBaseFee || web3.toWei(50000, 'gwei'), + data.env.blockGasLimit || 5000 * 21000, + data.env.baseFeeMaxChangeRate || 55, + data.env.gasTargetPercentage || 30 ] txs[txs.length] = this.sendTx(envStorage.address, null, tmpEnvStorageImp.initialize.getData(registry.address, envNames, envValues)) @@ -330,7 +355,7 @@ var GovernanceDeployer = new function() { code = tmpStakingImp.init.getData(registry.address, doInitOnce ? initData.stakes : "", {data: Staking_data}) txs[txs.length] = this.sendTx(staking.address, null, code); - txs[txs.length] = this.sendStakingDeposit(staking.address, tmpStakingImp.deposit.getData()); + txs[txs.length] = this.sendStakingDeposit(staking.address, tmpStakingImp.deposit.getData(), web3.toBigNumber(bootNode.stake).toString(10)); for(i=0;i Date: Wed, 19 Apr 2023 17:06:55 +0900 Subject: [PATCH 12/25] core: change error strings and fix typos --- core/error.go | 6 +++--- core/state_transition.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/error.go b/core/error.go index 4816a4243c2b..b11f00999513 100644 --- a/core/error.go +++ b/core/error.go @@ -99,13 +99,13 @@ var ( // fee delegation // ErrInvalidFeePayer is returned if the transaction contains an invalid feePayer's signature. - ErrInvalidFeePayer = errors.New("fee delegation : invalid feePayer") + ErrInvalidFeePayer = errors.New("fee delegation: invalid feePayer") // ErrFeePayerInsufficientFunds is returned if the fee cost of executing a transaction // is higher than the balance of the feePayer's account. - ErrFeePayerInsufficientFunds = errors.New("fee delegation : feePayer insufficient funds for gas * price") + ErrFeePayerInsufficientFunds = errors.New("fee delegation: insufficient feePayer's funds for gas * price") // ErrSenderInsufficientFunds is returned if the value cost of executing a transaction // is higher than the balance of the sender's account. - ErrSenderInsufficientFunds = errors.New("fee delegation : sender insufficient funds for value") + ErrSenderInsufficientFunds = errors.New("fee delegation: insufficient sender funds for value") ) diff --git a/core/state_transition.go b/core/state_transition.go index b202b2619020..ea15de7b1c54 100644 --- a/core/state_transition.go +++ b/core/state_transition.go @@ -199,7 +199,7 @@ func (st *StateTransition) buyGas() error { // fee delegation if st.msg.FeePayer() != nil { if !st.evm.ChainConfig().IsFeeDelegation(st.evm.Context.BlockNumber) { - return fmt.Errorf("%w: fee delegation type not supperted", ErrTxTypeNotSupported) + return fmt.Errorf("%w: fee delegation type not supported", ErrTxTypeNotSupported) } FDmgval := new(big.Int).SetUint64(st.msg.Gas()) FDmgval = FDmgval.Mul(FDmgval, st.gasFeeCap) From b64e4c2d4128ece6ebe847eeec8b412027124a20 Mon Sep 17 00:00:00 2001 From: Jeff <77763311+trident90@users.noreply.github.com> Date: Wed, 19 Apr 2023 17:09:22 +0900 Subject: [PATCH 13/25] Update error.go --- core/error.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/error.go b/core/error.go index b11f00999513..fea3db00e26e 100644 --- a/core/error.go +++ b/core/error.go @@ -107,5 +107,5 @@ var ( // ErrSenderInsufficientFunds is returned if the value cost of executing a transaction // is higher than the balance of the sender's account. - ErrSenderInsufficientFunds = errors.New("fee delegation: insufficient sender funds for value") + ErrSenderInsufficientFunds = errors.New("fee delegation: insufficient sender's funds for value") ) From dcd1ed0adf113dc033a2c2c050f76f7ad48e55d9 Mon Sep 17 00:00:00 2001 From: Uh Sado Date: Wed, 19 Apr 2023 19:20:34 +0000 Subject: [PATCH 14/25] wemix/scripts: removed unnecessary space --- wemix/scripts/deploy-governance.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wemix/scripts/deploy-governance.js b/wemix/scripts/deploy-governance.js index 564fdac3d1ad..70ef961acc2f 100644 --- a/wemix/scripts/deploy-governance.js +++ b/wemix/scripts/deploy-governance.js @@ -334,7 +334,7 @@ var GovernanceDeployer = new function() { data.env.MaxIdleBlockInterval || 5, data.env.blockCreationTime || 1000, // mint amount: 1 wemix - data.env. blockRewardAmount || web3.toWei(1, 'ether'), + data.env.blockRewardAmount || web3.toWei(1, 'ether'), // tip: 100 gwei data.env.maxPriorityFeePerGas || web3.toWei(100, 'gwei'), // NCPs, WEMIX Staker, Eco System, Maintenance From 7bff152b2f9ba63a60715ea9ccd44ca4fdc00686 Mon Sep 17 00:00:00 2001 From: coinplug-jhjin Date: Mon, 24 Apr 2023 17:34:38 +0900 Subject: [PATCH 15/25] internal/ethapi: changed 'gasPrice' data type from BigInt to hexUtil.Big --- internal/ethapi/api.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index f8d60fb113e4..915f373c2c8b 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -693,14 +693,14 @@ func (s *PublicBlockChainAPI) GetReceiptsByHash(ctx context.Context, blockHash c // Assign the effective gas price paid if !s.b.ChainConfig().IsLondon(bigblock) { - fields["effectiveGasPrice"] = txs[index].GasPrice() + fields["effectiveGasPrice"] = (*hexutil.Big)(txs[index].GasPrice()) } else { header, err := s.b.HeaderByHash(ctx, blockHash) if err != nil { return nil, err } gasPrice := new(big.Int).Add(header.BaseFee, txs[index].EffectiveGasTipValue(header.BaseFee)) - fields["effectiveGasPrice"] = gasPrice + fields["effectiveGasPrice"] = (*hexutil.Big)(gasPrice) } // Assign receipt status or post state. if len(receipt.PostState) > 0 { @@ -1697,14 +1697,14 @@ func (s *PublicTransactionPoolAPI) GetTransactionReceipt(ctx context.Context, ha } // Assign the effective gas price paid if !s.b.ChainConfig().IsLondon(bigblock) { - fields["effectiveGasPrice"] = tx.GasPrice() + fields["effectiveGasPrice"] = (*hexutil.Big)(tx.GasPrice()) } else { header, err := s.b.HeaderByHash(ctx, blockHash) if err != nil { return nil, err } gasPrice := new(big.Int).Add(header.BaseFee, tx.EffectiveGasTipValue(header.BaseFee)) - fields["effectiveGasPrice"] = gasPrice + fields["effectiveGasPrice"] = (*hexutil.Big)(gasPrice) } // Assign receipt status or post state. if len(receipt.PostState) > 0 { From 136473a6d6ff0973e86622210d61fda8dff482b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=92=E1=85=A1=E1=86=AB=E1=84=8B=E1=85=AF=E1=86=AB?= =?UTF-8?q?=E1=84=8C=E1=85=AE=E1=86=AB?= Date: Tue, 2 May 2023 16:34:10 +0900 Subject: [PATCH 16/25] core,light,params,wemix/scripts: Configuration settings for Applepie Hard Fork on Testnet --- core/state_transition.go | 2 +- core/tx_pool.go | 2 +- light/txpool.go | 2 +- params/config.go | 25 +++++++++++++------------ wemix/scripts/genesis-template.json | 3 ++- 5 files changed, 18 insertions(+), 16 deletions(-) diff --git a/core/state_transition.go b/core/state_transition.go index ea15de7b1c54..b74a2766d19e 100644 --- a/core/state_transition.go +++ b/core/state_transition.go @@ -198,7 +198,7 @@ func (st *StateTransition) to() common.Address { func (st *StateTransition) buyGas() error { // fee delegation if st.msg.FeePayer() != nil { - if !st.evm.ChainConfig().IsFeeDelegation(st.evm.Context.BlockNumber) { + if !st.evm.ChainConfig().IsApplepie(st.evm.Context.BlockNumber) { return fmt.Errorf("%w: fee delegation type not supported", ErrTxTypeNotSupported) } FDmgval := new(big.Int).SetUint64(st.msg.Gas()) diff --git a/core/tx_pool.go b/core/tx_pool.go index 93fb9c0db4f2..e4b1ed565e6f 100644 --- a/core/tx_pool.go +++ b/core/tx_pool.go @@ -1396,7 +1396,7 @@ func (pool *TxPool) reset(oldHead, newHead *types.Header) { pool.eip2718 = pool.chainconfig.IsBerlin(next) pool.eip1559 = pool.chainconfig.IsLondon(next) // fee delegation - pool.feedelegation = pool.chainconfig.IsFeeDelegation(next) + pool.feedelegation = pool.chainconfig.IsApplepie(next) } // promoteExecutables moves transactions that have become processable from the diff --git a/light/txpool.go b/light/txpool.go index f890c534abd0..c34998252fb5 100644 --- a/light/txpool.go +++ b/light/txpool.go @@ -321,7 +321,7 @@ func (pool *TxPool) setNewHead(head *types.Header) { pool.istanbul = pool.config.IsIstanbul(next) pool.eip2718 = pool.config.IsBerlin(next) // fee delegation - pool.feedelegation = pool.config.IsFeeDelegation(next) + pool.feedelegation = pool.config.IsApplepie(next) } // Stop stops the light transaction pool diff --git a/params/config.go b/params/config.go index c5458df0b002..8f09208ffffd 100644 --- a/params/config.go +++ b/params/config.go @@ -178,6 +178,7 @@ var ( BerlinBlock: big.NewInt(0), LondonBlock: big.NewInt(0), PangyoBlock: big.NewInt(10_000_000), + ApplepieBlock: big.NewInt(26_240_268), Ethash: new(EthashConfig), } @@ -301,16 +302,16 @@ var ( // // This configuration is intentionally not using keyed fields to force anyone // adding flags to the config to also have to set these fields. - AllEthashProtocolChanges = &ChainConfig{big.NewInt(1337), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), nil, nil, nil, new(EthashConfig), nil} + AllEthashProtocolChanges = &ChainConfig{big.NewInt(1337), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), nil, nil, nil, nil, new(EthashConfig), nil} // AllCliqueProtocolChanges contains every protocol change (EIPs) introduced // and accepted by the Ethereum core developers into the Clique consensus. // // This configuration is intentionally not using keyed fields to force anyone // adding flags to the config to also have to set these fields. - AllCliqueProtocolChanges = &ChainConfig{big.NewInt(1337), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), nil, nil, nil, nil, nil, &CliqueConfig{Period: 0, Epoch: 30000}} + AllCliqueProtocolChanges = &ChainConfig{big.NewInt(1337), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), nil, nil, nil, nil, nil, nil, &CliqueConfig{Period: 0, Epoch: 30000}} - TestChainConfig = &ChainConfig{big.NewInt(1), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), nil, nil, nil, new(EthashConfig), nil} + TestChainConfig = &ChainConfig{big.NewInt(1), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), nil, nil, nil, nil, new(EthashConfig), nil} TestRules = TestChainConfig.Rules(new(big.Int), false) ) @@ -392,6 +393,7 @@ type ChainConfig struct { ArrowGlacierBlock *big.Int `json:"arrowGlacierBlock,omitempty"` // Eip-4345 (bomb delay) switch block (nil = no fork, 0 = already activated) MergeForkBlock *big.Int `json:"mergeForkBlock,omitempty"` // EIP-3675 (TheMerge) switch block (nil = no fork, 0 = already in merge proceedings) PangyoBlock *big.Int `json:"pangyoBlock,omitempty"` // Pangyo switch block (nil = no fork, 0 = already on pangyo) + ApplepieBlock *big.Int `json:"applepieBlock,omitempty"` // Applepie switch block (nil = no fork, 0 = already on applepie) // TerminalTotalDifficulty is the amount of total difficulty reached by // the network that triggers the consensus upgrade. @@ -432,7 +434,7 @@ func (c *ChainConfig) String() string { default: engine = "unknown" } - return fmt.Sprintf("{ChainID: %v Homestead: %v DAO: %v DAOSupport: %v EIP150: %v EIP155: %v EIP158: %v Byzantium: %v Constantinople: %v Petersburg: %v Istanbul: %v, Muir Glacier: %v, Berlin: %v, London: %v, Arrow Glacier: %v, MergeFork: %v, Terminal TD: %v, Engine: %v}", + return fmt.Sprintf("{ChainID: %v Homestead: %v DAO: %v DAOSupport: %v EIP150: %v EIP155: %v EIP158: %v Byzantium: %v Constantinople: %v Petersburg: %v Istanbul: %v, Muir Glacier: %v, Berlin: %v, London: %v, Arrow Glacier: %v, MergeFork: %v, PangyoFork: %v, ApplepieFork: %v, Terminal TD: %v, Engine: %v}", c.ChainID, c.HomesteadBlock, c.DAOForkBlock, @@ -449,6 +451,8 @@ func (c *ChainConfig) String() string { c.LondonBlock, c.ArrowGlacierBlock, c.MergeForkBlock, + c.PangyoBlock, + c.ApplepieBlock, c.TerminalTotalDifficulty, engine, ) @@ -522,13 +526,9 @@ func (c *ChainConfig) IsPangyo(num *big.Int) bool { } // fee delegation -// IsFeeDelegation returns whether num is either equal to the fee delegation fork block or greater. -func (c *ChainConfig) IsFeeDelegation(num *big.Int) bool { - // TBD - // Test code - //FeeDelegateBlock := big.NewInt(277000) - //return isForked(FeeDelegateBlock, num) - return false +// IsApplepie returns whether num is either equal to the Applepie fork block or greater. +func (c *ChainConfig) IsApplepie(num *big.Int) bool { + return isForked(c.ApplepieBlock, num) } // IsArrowGlacier returns whether num is either equal to the Arrow Glacier (EIP-4345) fork block or greater. @@ -735,7 +735,7 @@ type Rules struct { IsByzantium, IsConstantinople, IsPetersburg, IsIstanbul bool IsBerlin, IsLondon bool IsMerge bool - IsPangyo bool + IsPangyo, IsApplepie bool } // Rules ensures c's ChainID is not nil. @@ -758,5 +758,6 @@ func (c *ChainConfig) Rules(num *big.Int, isMerge bool) Rules { IsLondon: c.IsLondon(num), IsMerge: isMerge, IsPangyo: c.IsPangyo(num), + IsApplepie: c.IsApplepie(num), } } diff --git a/wemix/scripts/genesis-template.json b/wemix/scripts/genesis-template.json index f4fb7e159f2c..44a2860fbf5e 100644 --- a/wemix/scripts/genesis-template.json +++ b/wemix/scripts/genesis-template.json @@ -27,6 +27,7 @@ "istanbulBlock": 0, "londonBlock": 0, "muirGlacierBlock": 0, - "pangyoBlock": 0 + "pangyoBlock": 0, + "applepieBlock": 0 } } From 8cfc738b0e220ff4c47fa9021f2b4dba1806f855 Mon Sep 17 00:00:00 2001 From: Uh Sado Date: Tue, 2 May 2023 09:00:14 +0000 Subject: [PATCH 17/25] consensus/misc: Handle case when maxBaseFee is lower than current base fee --- consensus/misc/eip1559.go | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/consensus/misc/eip1559.go b/consensus/misc/eip1559.go index 20b4ffd82106..4fc61ab90342 100644 --- a/consensus/misc/eip1559.go +++ b/consensus/misc/eip1559.go @@ -128,15 +128,19 @@ func CalcBaseFee(config *params.ChainConfig, parent *types.Header) *big.Int { var baseFeeDelta *big.Int if wemixminer.IsPoW() { baseFeeDelta = x.Div(y, baseFeeChangeDenominator) + return math.BigMax( + x.Sub(parent.BaseFee, baseFeeDelta), + common.Big1, + ) } else { baseFeeDelta = x.Div(y.Mul(y, baseFeeChangeRate), big.NewInt(100)) if baseFeeDelta.Cmp(common.Big0) == 0 && parent.BaseFee.Cmp(common.Big1) > 0 { baseFeeDelta.SetUint64(1) } + return math.BigMin(math.BigMax( + x.Sub(parent.BaseFee, baseFeeDelta), + common.Big1, + ), maxBaseFee) } - return math.BigMax( - x.Sub(parent.BaseFee, baseFeeDelta), - common.Big1, - ) } } From 3833f2d272afc8eb08595214cfbe39b045ef034d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=92=E1=85=A1=E1=86=AB=E1=84=8B=E1=85=AF=E1=86=AB?= =?UTF-8?q?=E1=84=8C=E1=85=AE=E1=86=AB?= Date: Thu, 4 May 2023 16:37:29 +0900 Subject: [PATCH 18/25] core,internal/ethapi: Fixed fee calculation error and added feePayer null check --- core/state_transition.go | 2 +- core/tx_pool.go | 5 ++++- internal/ethapi/api.go | 4 ++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/core/state_transition.go b/core/state_transition.go index b74a2766d19e..8dc521b9c141 100644 --- a/core/state_transition.go +++ b/core/state_transition.go @@ -202,7 +202,7 @@ func (st *StateTransition) buyGas() error { return fmt.Errorf("%w: fee delegation type not supported", ErrTxTypeNotSupported) } FDmgval := new(big.Int).SetUint64(st.msg.Gas()) - FDmgval = FDmgval.Mul(FDmgval, st.gasFeeCap) + FDmgval = FDmgval.Mul(FDmgval, st.gasPrice) feePayer := *st.msg.FeePayer() if feePayer == st.msg.From() { FDbalanceCheck := new(big.Int).SetUint64(st.msg.Gas()) diff --git a/core/tx_pool.go b/core/tx_pool.go index e4b1ed565e6f..ee1db92cb154 100644 --- a/core/tx_pool.go +++ b/core/tx_pool.go @@ -707,8 +707,11 @@ func (pool *TxPool) validateTx(tx *types.Transaction, local bool) error { // fee delegation if tx.Type() == types.FeeDelegateDynamicFeeTxType { // Make sure the transaction is signed properly. + if tx.FeePayer() == nil { + return ErrInvalidFeePayer + } feePayer, err := types.FeePayer(types.NewFeeDelegateSigner(pool.chainconfig.ChainID), tx) - if *tx.FeePayer() != feePayer || err != nil { + if err != nil || *tx.FeePayer() != feePayer { return ErrInvalidFeePayer } if pool.currentState.GetBalance(feePayer).Cmp(tx.FeePayerCost()) < 0 { diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 74e058d6ca38..f5404ef90f4e 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -1714,6 +1714,10 @@ func SubmitTransaction(ctx context.Context, b Backend, tx *types.Transaction) (c // Ensure only eip155 signed transactions are submitted if EIP155Required is set. return common.Hash{}, errors.New("only replay-protected (EIP-155) transactions allowed over RPC") } + // fee delegation + if tx.Type() == types.FeeDelegateDynamicFeeTxType && tx.FeePayer() == nil { + return common.Hash{}, errors.New("FeePayer address is null") + } if err := b.SendTx(ctx, tx); err != nil { return common.Hash{}, err } From 5d143ed31ed4083b26ef58e1bc01007fe7ec6dce Mon Sep 17 00:00:00 2001 From: lukepark327 Date: Mon, 8 May 2023 17:57:20 +0900 Subject: [PATCH 19/25] feat: change gas cost & testfile --- core/vm/testdata/precompiles/vrf.json | 8 ++++---- params/protocol_params.go | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/core/vm/testdata/precompiles/vrf.json b/core/vm/testdata/precompiles/vrf.json index f8de45678073..f752976429a5 100644 --- a/core/vm/testdata/precompiles/vrf.json +++ b/core/vm/testdata/precompiles/vrf.json @@ -3,28 +3,28 @@ "Input": "ca3b325e7ea0942ecb7658dce007374b53e0096d1c0d3d7d114264eac8d355e6026251907f16127c3db7d765de0d0b1bca44b737bdbcdbb57c4728e90aba425c6e0bd5e3c0f9969b55f580c7f46ff0a15707a618829ff44ee099ae346f991e1b5df4819a6666f136956c14699c9789cf7c48656c6c6f2c20576f726c6421", "Expected": "0000000000000000000000000000000000000000000000000000000000000001", "Name": "vrf-1", - "Gas": 3000, + "Gas": 50000, "NoBenchmark": false }, { "Input": "ffc0b13383ffb12e08bee1e4fce1d7782a334870f6fafea7437e23a4e525f2a8036bf3524542b262497da4d3c4d08b6a9e0a6d3094d5abbf3f11d38014c941a6c02c5063f8b7b111dabf70669400c12dce0f64ad90edfb6981b5b275a280aec804be61cdc55b5087a6625153408846504f48692074686572652e204d79206e616d652069732053616e676879656f6e205061726b2e205768617420697320796f7572206e616d653f", "Expected": "0000000000000000000000000000000000000000000000000000000000000001", "Name": "vrf-2", - "Gas": 3000, + "Gas": 50000, "NoBenchmark": false }, { "Input": "a6b4b002288784e52bb72d1b9247ad37b11a9cce9c152c24578c7da6f3c133e202ea8ec59e030acdb3bef69e048c3cfca0297c3ad45e4a99ec4136be9cd9644844e742bc0ec4e2a3b1b14077f742ae988105d125f55f55110079e954d946405b43f2ad8166da8d5c979344a7aad9b792535768617420697320746865206d65616e696e67206f66207468697320616262726576696174696f6e2c2022564d4f223f", "Expected": "0000000000000000000000000000000000000000000000000000000000000001", "Name": "vrf-3", - "Gas": 3000, + "Gas": 50000, "NoBenchmark": false }, { "Input": "16357cf6de199737298f93b9fc2ae3f508baa666f0d545e3af629ff73ae528e60288345a9bdf6b43162ae639c27be4e8332b8d497657574514306ba462c2f2fc20e74c269a94adeb3358c106342f2120570910c9aa58ad7e19e9e141d5c8b1783a73d142e5856d82d9ea43a9c7c92e2018486f772069732074686520776865617468657220746f64617920696e2053656f756c3f", "Expected": "0000000000000000000000000000000000000000000000000000000000000001", "Name": "vrf-4", - "Gas": 3000, + "Gas": 50000, "NoBenchmark": false } ] \ No newline at end of file diff --git a/params/protocol_params.go b/params/protocol_params.go index c83ae14365c4..b64e82ba54d8 100644 --- a/params/protocol_params.go +++ b/params/protocol_params.go @@ -154,7 +154,7 @@ const ( Bls12381MapG1Gas uint64 = 5500 // Gas price for BLS12-381 mapping field element to G1 operation Bls12381MapG2Gas uint64 = 110000 // Gas price for BLS12-381 mapping field element to G2 operation - VrfVerifyGas uint64 = 3000 // TODO (lukepark327): VRF Verify gas price + VrfVerifyGas uint64 = 50000 // @lukepark327: VRF Verify gas price // The Refund Quotient is the cap on how much of the used gas can be refunded. Before EIP-3529, // up to half the consumed gas could be refunded. Redefined as 1/5th in EIP-3529 From 3513dab4cf31618eae569796a090ba257b1c8768 Mon Sep 17 00:00:00 2001 From: lukepark327 Date: Tue, 9 May 2023 09:11:42 +0900 Subject: [PATCH 20/25] fix: fix web3ext.go error from auto merge --- internal/web3ext/web3ext.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/internal/web3ext/web3ext.go b/internal/web3ext/web3ext.go index f9746a033aa9..ce98b71359ae 100644 --- a/internal/web3ext/web3ext.go +++ b/internal/web3ext/web3ext.go @@ -858,8 +858,9 @@ web3._extend({ name: 'verify', call: 'personal_verify', params: 3 - // fee delegation - new web3._extend.Method({ + }), + // fee delegation + new web3._extend.Method({ name: 'signRawFeeDelegateTransaction', call: 'personal_signRawFeeDelegateTransaction', params: 3, From cc799437ecad58270f4e48eb8ff3b5b2bd4c0287 Mon Sep 17 00:00:00 2001 From: Luke Park Date: Tue, 9 May 2023 09:42:33 +0900 Subject: [PATCH 21/25] Update web3ext.go fix indent --- internal/web3ext/web3ext.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/web3ext/web3ext.go b/internal/web3ext/web3ext.go index ce98b71359ae..a50eb615ead0 100644 --- a/internal/web3ext/web3ext.go +++ b/internal/web3ext/web3ext.go @@ -859,8 +859,8 @@ web3._extend({ call: 'personal_verify', params: 3 }), - // fee delegation - new web3._extend.Method({ + // fee delegation + new web3._extend.Method({ name: 'signRawFeeDelegateTransaction', call: 'personal_signRawFeeDelegateTransaction', params: 3, From 6bcac0a50b3e2d9906150aea5e6fe198db682cb7 Mon Sep 17 00:00:00 2001 From: Luke Park Date: Tue, 9 May 2023 10:17:00 +0900 Subject: [PATCH 22/25] Create ci.yml --- .github/workflows/ci.yml | 58 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000000..9c7375cc86e5 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,58 @@ +name: feat-vrf-ci + +on: + workflow_dispatch: + +jobs: + build_test: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.ref }} + + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: 1.19 + + - name: Build Go-WEMIX + run: make gwemix.tar.gz + - name: Check Build + run: ls -al build/gwemix.tar.gz + + lint_test: + strategy: + fail-fast: false + matrix: + version: [1.17, 1.18, 1.19] + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.ref }} + + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: ${{ matrix.version }} + + - name: Check Lint + run: make lint + + unit_test: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.ref }} + + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: 1.19 + + - name: Check golang Test Cases + run: | + unset ANDROID_HOME + make test-short From 9571a7422e106a42d329de0ef602d3b255a05fa3 Mon Sep 17 00:00:00 2001 From: Uh Sado Date: Tue, 9 May 2023 06:17:33 +0000 Subject: [PATCH 23/25] wemix/scripts: removed deprecated genesis files --- wemix/scripts/mainnet-config.json | 4173 --------- wemix/scripts/mainnet-genesis.json | 12301 --------------------------- wemix/scripts/testnet-config.json | 54 - wemix/scripts/testnet-genesis.json | 37 - 4 files changed, 16565 deletions(-) delete mode 100644 wemix/scripts/mainnet-config.json delete mode 100644 wemix/scripts/mainnet-genesis.json delete mode 100644 wemix/scripts/testnet-config.json delete mode 100644 wemix/scripts/testnet-genesis.json diff --git a/wemix/scripts/mainnet-config.json b/wemix/scripts/mainnet-config.json deleted file mode 100644 index b358981a2d3f..000000000000 --- a/wemix/scripts/mainnet-config.json +++ /dev/null @@ -1,4173 +0,0 @@ -{ - "extraData": "Our vision is to create a free world through self-sovereign identity. / When I discover who I am, I'll be free. -- Ralph Ellison, Invisible Man", - "members": [ - { - "addr": "0x880a74d68b09418136c4442d1ea0f5cc72e5325a", - "stake": 39840000, - "name": "meta1", - "ip": "10.140.0.202", - "port": 8589, - "id": "0x1ec261dbce3ce00226b797e300ba56863ff65c138263b98145dcd97b4ea3a4c7a8d20414e7a0185f32cc708d0c1c995a877e6c7876f50abc13f7740b9ac307bf", - "bootnode": true - }, - { - "addr": "0xbdf9acd85b579ea271f91e292ec6e67ad78652f2", - "stake": 4980000, - "name": "meta2", - "ip": "10.140.0.82", - "port": 8589, - "id": "0xa4925993136b84a1212244f85da9d8dc4f4e52bd06e2c79961298ee3c5da883552ce5756b5b0e8b29ac5b004793fc415117c0b36ca62e8516248e03324268b1b" - }, - { - "addr": "0xd8f5272ef21a50c5adb0fcef31eb9e91ac4eb2f5", - "stake": 4980000, - "name": "meta3", - "ip": "10.140.0.185", - "port": 8589, - "id": "0xd90e1d46b1118fae52b6b1fb6f83a51846f22cfa639b4ba441002f68d8798abc79b19ce13868b5998a75715a8c2abc9d34594733be59961e5a2a79a42391b430" - }, - { - "addr": "0xe7080384c22aa9b232993e2011b8c16585570524", - "stake": 4980000, - "name": "meta4", - "ip": "10.141.0.143", - "port": 8589, - "id": "0x9ea9aa7a040d33d595ccec7ac10ead26712629dfebd85d563deb606aa0b6a0782684ae43584e4eed40635e054ca2abadd8e658fbbc760d88d7f60f48cfcf3d5d" - }, - { - "addr": "0xa4a3a5b308d2319af64def1568cc80a82f40ea86", - "stake": 4980000, - "name": "meta5", - "ip": "10.141.0.81", - "port": 8589, - "id": "0x54eb3f5c1016f35971a6e0e6906ac5f4927827c18b100ac1ec486d7461c31b09daa9c5319968c46997a784e0757b086c55780c7b49a9ed8fb4b4caa00b6b13d0" - }, - { - "addr": "0x6ce8328a6460d6fe4c17fdbbf6faa88120dd65b8", - "stake": 4980000, - "name": "meta6", - "ip": "10.141.0.95", - "port": 8589, - "id": "0x5417d5cc1fd5d75cd15852d06a5f39e834407564543c70ea2ccebb49289a8bd9fba096aa48ff3c8696ba1cae8921166ed6370a8876dc7220525b636ced1d5504" - }, - { - "addr": "0xfb0a7d2536b9e42b627315c5bb938f1a6524f4e3", - "stake": 4980000, - "name": "meta7", - "ip": "10.142.0.26", - "port": 8589, - "id": "0xe3693591cf9cb3dd3af0da665f31d59b47335c00770bc76c930fc7cfa3f3771c094c5b94fba4784d8229c8ecf23ab4e4fdec269145b0a52da3bae3cdfe75b171" - }, - { - "addr": "0x2dc152f7c9cacdffbfefe5774af1fdf14df0c6f6", - "stake": 4980000, - "name": "meta8", - "ip": "10.142.0.63", - "port": 8589, - "id": "0x05fd80d533ad47efbd80b024c4c7778c5887f6eae6e46a6dd9b8d7c0a111881b46f1dcf4d6515d3338efc6a4e645610d01600143975a6338662c945afb24c868" - }, - { - "addr": "0xa996eeffe2d9d3cffdce5b7fc51c357da7abea6d", - "stake": 4980000, - "name": "meta9", - "ip": "10.142.0.20", - "port": 8589, - "id": "0xea8cb242d728c81843c03fda500fa67ce03d49741b36c357a43558c1a74aac039c296985feb37dc54670131f657d7d0f94f5ce87e83d87bb4e09f4f60051130e" - } - ], - "accounts": [ - { "addr": "0x451a500774c77215cbf963917db41020fe808c1e", "balance": 5000000000000000000 }, - { "addr": "0xe3bbeb56e15a005894606f1df09e31129102ef69", "balance": 5000000000000000000 }, - { "addr": "0xb546012b54dfa2f0aeac14631120727835a0c42b", "balance": 73000000000000000000 }, - { "addr": "0x5a87705b8eeea8aac3a02f081a93d8434375980e", "balance": 10000000000000000000 }, - { "addr": "0xe04a0cb196373cfe08b12b133aa8ede677b8ac65", "balance": 73000000000000000000 }, - { "addr": "0x9bb8edf7f8371fbc8e0d6845d9bd3580589c2814", "balance": 73000000000000000000 }, - { "addr": "0xd8c3f324ce8faa794f72bb2b233bf87851de6c1b", "balance": 200000000000000000000 }, - { "addr": "0x95e30833f525e51aaeaefa72d8db8130c979abeb", "balance": 200000000000000000000 }, - { "addr": "0x183f226ffe89fdfad71a8df1c89930e124b64321", "balance": 10000000000000000000 }, - { "addr": "0xb51de8f1e6537df63eeb3ac3f37a323a7438adb9", "balance": 73000000000000000000 }, - { "addr": "0xf23ea396d1ee6ecb82677cdf820e4e3c23350a67", "balance": 35999820000000000000000 }, - { "addr": "0xa52ff7f433c8d023060752cd0aaabcb296a00d35", "balance": 73000000000000000000 }, - { "addr": "0x1a103231fba8f4bd4762c7210dfa2ffae68243c7", "balance": 5000000000000000000 }, - { "addr": "0x81b14cd0019343bf15b3e4f78a5da57f91fdf517", "balance": 73000000000000000000 }, - { "addr": "0xa35ddac80ff37a4fb99b99918538b517cc4ecdd9", "balance": 173499200000000000000 }, - { "addr": "0x2b58095c1c1a91127b90cf02b387e912031f129f", "balance": 287998530000000000000000 }, - { "addr": "0x044689edc79b1e84b2ed88873ac8db7a0ccb0e39", "balance": 5000000000000000000 }, - { "addr": "0xcc3f0c6329face4a85e7e35d74974d8eec36d570", "balance": 27131470000000000000000 }, - { "addr": "0xac28a08e4173493e448b5da2852c69112e25943c", "balance": 5000000000000000000 }, - { "addr": "0x1e5cc40567ddfccb13aee3b65a114283a38b75a9", "balance": 10000000000000000000 }, - { "addr": "0x6c8fe2b6ff15cf8c474fc1caf4317188fb75ff70", "balance": 73000000000000000000 }, - { "addr": "0x8c37682b085be364a1d1961bd4672eddd7b625c5", "balance": 5000000000000000000 }, - { "addr": "0x1847652379eaf511629aad2cab2fd3b8ce47d3ba", "balance": 1585218160000000000000 }, - { "addr": "0x8b425ede1d771f336e4db1c92529071471160e40", "balance": 200000000000000000000 }, - { "addr": "0x1b698a48101a22de2b6f4240dea0e5210d6e8070", "balance": 5000000000000000000 }, - { "addr": "0x4745761587286437ab45066f81e8853954b2c41b", "balance": 29000000000000000000000 }, - { "addr": "0x0cfc2092ef4953dab9fff502ce0aa8863f890fce", "balance": 10000000000000000000 }, - { "addr": "0x8f85c3d45d698492f941d6dfdfb27438b00ef8d3", "balance": 5000000000000000000 }, - { "addr": "0x56b755c36eeb96e38256e62a5da36347b0b96411", "balance": 1785218160000000000000 }, - { "addr": "0x5dea095e87f560ce912e11fe628cb3f6e2ea87cc", "balance": 23999880000000000000000 }, - { "addr": "0xaa90b4aae74cee41e004bc45e45a427406c4dcae", "balance": 520000000000 }, - { "addr": "0x42845b096aca31f1fbacf7feb60ee051760cc4fc", "balance": 870000000000000000 }, - { "addr": "0x9d3c593dad921eba64e5a8dd03bc360250920ab9", "balance": 73000000000000000000 }, - { "addr": "0xf8d04a720520d0bcbc722b1d21ca194aa22699f2", "balance": 109999950000000000 }, - { "addr": "0xa4faeec1a887074f9786273f841a5926d28c4909", "balance": 30000000000000000000 }, - { "addr": "0x87ff78ac8cd16482c6f8ae0f5df1e5609345230e", "balance": 1000000000000000000 }, - { "addr": "0x7598c8c59b91a06f4c07460ec8b994b028de8451", "balance": 12000380000000000000000 }, - { "addr": "0x17e9e1d2dbf426305199c1bede4ecc81386dfa6c", "balance": 5000000000000000000 }, - { "addr": "0x7a0acd1f511e569602743e6e2a5b103f3afef5c5", "balance": 73000000000000000000 }, - { "addr": "0x8bf41ff8f2d48e33e66f1a48ca4fd518eb57dff1", "balance": 47999000000000000000000 }, - { "addr": "0xa10b7f10a9a5dd8b7f55aecfffe7c7c77efa3e18", "balance": 173400000000000000000 }, - { "addr": "0x6a85206524ee0215cbf49d7aac3ebdd85e161ef5", "balance": 273000000000000000000 }, - { "addr": "0x562d2f6662b9c0faa0b5a88e8832266d85a97d2e", "balance": 5000000000000000000 }, - { "addr": "0x90fa437062226bb78cbf82821c595dfe3d5eb557", "balance": 5000000000000000000 }, - { "addr": "0x8486d0e2c2edd415cf951a87649e5fdf830ca5f4", "balance": 5000000000000000000 }, - { "addr": "0x73d7ba47c8a39a2a706990afc6b7f1a11e44307a", "balance": 10000000000000000000 }, - { "addr": "0x39308e56330e175d29d31f52032ac63cd52864ac", "balance": 5000000000000000000 }, - { "addr": "0xb80fea119193310fa749aff8b9881058fe0eadef", "balance": 73000000000000000000 }, - { "addr": "0x4553c31c28b71f634ba7e90e3b58e3261aa5e1d9", "balance": 73000000000000000000 }, - { "addr": "0xabd0ac7a3d6c6b25cd5525d60adaf20fc41b85ec", "balance": 47759760000000000000000 }, - { "addr": "0xaa81174e58422f9c5148355146283f4017496111", "balance": 5000000000000000000 }, - { "addr": "0xe4597e5c4755f4e6a755886ffc81af83967dcca4", "balance": 5000000000000000000 }, - { "addr": "0x62c8ca0f8d64feee534336b7e389928f91c354f1", "balance": 5000000000000000000 }, - { "addr": "0xbaf80408919e4304d6adcb6fa12c420a655bb9e9", "balance": 73000000000000000000 }, - { "addr": "0x1a01c03e7043e590263b76cb38aee2db3ea71d0a", "balance": 5000000000000000000 }, - { "addr": "0x1ac90257e21404c4bfa781cb11e3af07f6e4981b", "balance": 73000000000000000000 }, - { "addr": "0x84abe288f9ffca37091de1eccfe192a966490388", "balance": 10000000000000000000 }, - { "addr": "0x4ed164c2fad34ce5073f197435f65d3df35f76e9", "balance": 200000000000000000000 }, - { "addr": "0x554a1f9e7ff75a245c2dcd6dca751520539a57ad", "balance": 73000000000000000000 }, - { "addr": "0x70cd7f81890db5f63f92a4802a51492447eb86f8", "balance": 10000000000000000000 }, - { "addr": "0x99b83676418224d9bd1dd11f73307a4586655100", "balance": 73000000000000000000 }, - { "addr": "0xae27ac0d61bc55fe58db2eac3e5bb5a9f9232c07", "balance": 73000000000000000000 }, - { "addr": "0x1b6d3d9b0bdc784f203b7465ee4dfda74e38ab32", "balance": 73000000000000000000 }, - { "addr": "0x8d4abb509fbb046b796c144b0be7362dd25f6b96", "balance": 28799000000000000000000 }, - { "addr": "0xe1823bb1e42025ff1c4e95e15b18d9735734ea35", "balance": 5000000000000000000 }, - { "addr": "0x5730418672afe50564ee63464d6d4b8f11471781", "balance": 73000000000000000000 }, - { "addr": "0x301f521af210e741c2e5559332e66c3562151be7", "balance": 200000000000000000000 }, - { "addr": "0x044fca57a57b92398d9bbd5d5fee440f172113df", "balance": 200000000000000000000 }, - { "addr": "0xfb7b8654424f71562ede5c3ebe779749d7613eb5", "balance": 40000000000000000000000 }, - { "addr": "0x1ec3eded993926e5768f4c22482d78814d69e55f", "balance": 73000000000000000000 }, - { "addr": "0xe6b6472a518c2e5926b0971d5785bebc0d88653a", "balance": 5000000000000000000 }, - { "addr": "0x2c9aa75080f97bc94728184ed1f331e41259efcc", "balance": 50000000000000 }, - { "addr": "0x0cdcefb2a0792dd5b917f2d2d5cce4e54e405952", "balance": 10000000000000000000 }, - { "addr": "0xb291ccd84475394c81944ed81134cc280d2e8820", "balance": 23999880000000000000000 }, - { "addr": "0xb94c8f7aa90286221c1db24d6d7713d49a9bb90a", "balance": 5000000000000000000 }, - { "addr": "0x54b92125c73d2bac14cb5fe546ceb77c4bfb1d71", "balance": 5000000000000000000 }, - { "addr": "0x5fd61fcb78ef8bd83d9b25cc2a972ae26c45f3a3", "balance": 200000000000000000000 }, - { "addr": "0x57a90f35a46f0236f16eeedeb9c7512fabae6857", "balance": 200000000000000000000 }, - { "addr": "0xa4278fdf9c77205bce48428f183a1f285c1e54fe", "balance": 5000000000000000000 }, - { "addr": "0xacb221b00dd00cf584dbbdb39b6db4ed8d30fa93", "balance": 73000000000000000000 }, - { "addr": "0x3d7ec0276619ab3d44b8758bec2652a288fb6efe", "balance": 1785218160000000000000 }, - { "addr": "0xb6042ac5d8d8a66663c7a9baeea562d7abb2a4b7", "balance": 10000000000000000000 }, - { "addr": "0xb92a4853c4b2db21982583ec0b895fc814665ded", "balance": 5000000000000000000 }, - { "addr": "0xd4104530a5cc5c740934a3439fef050cbe798ae7", "balance": 59349850000000000000000 }, - { "addr": "0x6bc3da46182993dd758e1f998054fcf52281bf4a", "balance": 200000000000000000000 }, - { "addr": "0x435c78574761515dd923081edd03f9ffce9c7abe", "balance": 23999000000000000000000 }, - { "addr": "0x30eeda87ad4100d2cd3b3e2561a9e599c5d791de", "balance": 10000000000000000000 }, - { "addr": "0x85c5ed758c4160b86e21db1ed4b0e1edae5f0d4c", "balance": 5000000000000000000 }, - { "addr": "0x779dff7cc9dbb525bb2039c4c48b61f00cce62f2", "balance": 8937471000000000000000000 }, - { "addr": "0xada2dbf02ac05aa19cb31bc00181ffd36656d098", "balance": 50000000000000000000 }, - { "addr": "0x7efa73ec1bff67766e2306fb0cb7494382cb4edf", "balance": 5000000000000000000 }, - { "addr": "0x8403f157e036772f94371486450e062539e0b009", "balance": 1000000000000000000 }, - { "addr": "0x7f7383e9fdcd2baeebab5714509581ab751ea161", "balance": 5000000000000000000 }, - { "addr": "0x97d0dbc073f3a69cdce6bb2809c24d1923512936", "balance": 5000000000000000000 }, - { "addr": "0x49f3fb93c1f36d299aa5234e2ee9aeaf43cbb1d4", "balance": 24000000000000000000000 }, - { "addr": "0xdc50da092ab787ab6ed4f436a667c0cada1bb946", "balance": 200000000000000000000 }, - { "addr": "0x7c28b7f312a0c95be3809624e6311bce82896bf8", "balance": 73000000000000000000 }, - { "addr": "0x933bd26dd9eef5888108aad05425d1e827247825", "balance": 23999000000000000000000 }, - { "addr": "0x9c66e377972673534b59035e08d70d85c7db3641", "balance": 200000000000000000000 }, - { "addr": "0x7f95c2e01e9889b5a40cc99b6329fab23b8589a2", "balance": 426664470000000000000000 }, - { "addr": "0x191d6c2f7ec5a5b1ca8b93d815c9bfbeead494e4", "balance": 73000000000000000000 }, - { "addr": "0x9906391fc0db81ab51d4ce1c8b75135817cc8916", "balance": 73000000000000000000 }, - { "addr": "0x40c9b6e85d28aca9f33f670ef2e6dd208b0eab38", "balance": 10000000000000000000 }, - { "addr": "0x89f55f683525b2b62c0a7cfc19ab4babfff406c4", "balance": 73000000000000000000 }, - { "addr": "0x96aa709d2e63529b2445bca85543f4b85bdc908a", "balance": 266660000000000000000000 }, - { "addr": "0x6b188964c532c9003213a828311314f3c81cd984", "balance": 73000000000000000000 }, - { "addr": "0xfabde97c5edf8267779457df263c1694d4eabb04", "balance": 5000000000000000000 }, - { "addr": "0xde9e746b728b8b4b81d6163d617d4a0c7b917c2d", "balance": 200000000000000000000 }, - { "addr": "0xc1bfceec023275766fdf566d803cf8f5fe4ad823", "balance": 200000000000000000000 }, - { "addr": "0xe3ea28e1ab936d31f9522ec1cdf6b354677fac8e", "balance": 1585218160000000000000 }, - { "addr": "0xe39091607b0204a5562733b5fdc9579daa545b52", "balance": 200000000000000000000 }, - { "addr": "0x0d1abf0d17741dd824975824de81d889d56ae2c8", "balance": 15000000000000000000 }, - { "addr": "0x62caddecdd6614acd65a408e0482ffeb36a00ee7", "balance": 5000000000000000000 }, - { "addr": "0xa8717e17ef29986eae02913783cb1067ac3f096f", "balance": 173499200000000000000 }, - { "addr": "0x471d92d5b4b6d333a9c35cc5f741ba6c355d748d", "balance": 13700000000000000000000 }, - { "addr": "0x516d01fa682233aeb47de93638ddfb5517dae451", "balance": 47999750000000000000000 }, - { "addr": "0xed19dc967e252e42612c9021b76dfc57e45e6dde", "balance": 650000000000000000 }, - { "addr": "0x30668d76b67c36731995aa1eff5d651bbd009014", "balance": 72000000000000000000000 }, - { "addr": "0xc7e2fb31dcf0743ef99f7d92613e2a3295b477f8", "balance": 15000000000000000000 }, - { "addr": "0x4f26eedb59c0125d724b5dd6e927a80e64439964", "balance": 73000000000000000000 }, - { "addr": "0x45b177d2555c5c911905d43f9aa6c66c3199f362", "balance": 200000000000000000000 }, - { "addr": "0xfc1ab1ee5b163879a850477fbfeb35eaec52abc8", "balance": 173499200000000000000 }, - { "addr": "0xfaaba0eee22ab16bc40aafe5ce64dd37b42f87e8", "balance": 73000000000000000000 }, - { "addr": "0x67ad8494d5ecf29018c49f806b47c24ddfbc0e4a", "balance": 20000000000000000000 }, - { "addr": "0xfb6e3625161c92d17634c95aa169187f352a4d54", "balance": 10000000000000000000 }, - { "addr": "0xa9ef14bd3b28a199f9cf8afe2b6cab49f8c17ac9", "balance": 200000000000000000000 }, - { "addr": "0xf3430c8d6a34d74ec2a29dcc169c6331bd7b9cd5", "balance": 73000000000000000000 }, - { "addr": "0x1b8f9edb22fc21f385955d60528a35d6473099a3", "balance": 200000000000000000000 }, - { "addr": "0x7b561bb86b6ace103071141bd4ebfd7277f0e022", "balance": 400000000000000000000 }, - { "addr": "0xe8a17811a0c54eee0a13f13bd71e868a1fb2558f", "balance": 73000000000000000000 }, - { "addr": "0xdc1b27e0ec08765d42df3d57bbe42b74a86fbf32", "balance": 173499200000000000000 }, - { "addr": "0x46e8ffe4b8e4cb5db9a4e7a001f18d0a1708cd74", "balance": 200000000000000000000 }, - { "addr": "0x23816621feb9179e1ec0a2cc6e37f7e79d34c6e7", "balance": 200000000000000000000 }, - { "addr": "0xb7e8af89318aabdd162560a1daebd8859c87a89a", "balance": 35999820000000000000000 }, - { "addr": "0x86dcc30bb0a713aa47566db7409f2db04783d842", "balance": 73000000000000000000 }, - { "addr": "0x9dd8eebc09f53a7f3762b4d0a9718c9868f98a30", "balance": 10000000000000000000 }, - { "addr": "0xdec1a5ec2f46b01b871ec0e17e96e49505c1076d", "balance": 200000000000000000000 }, - { "addr": "0xb1d5e813a9a31918734c2ed967a62b2791563044", "balance": 1000000000000000000000 }, - { "addr": "0x584387aa71d76b530b0df14fa1cde93df76aea45", "balance": 280000000000000000 }, - { "addr": "0x47d33575e5b4e45c65db7d825c1850cfdc944da5", "balance": 1333300000000000000000000 }, - { "addr": "0x347de1148622265e771a5d5a16fb05934d1ce60d", "balance": 1423300000000000000000000 }, - { "addr": "0x11b10f7cade2a7335eb745442c23dbe17248e3e7", "balance": 200000000000000000000 }, - { "addr": "0xc87b8c0f708dcdfdd9e9fc5531a32ef4d1e7a0f7", "balance": 5000000000000000000 }, - { "addr": "0x9fc4fd4f37ffca0a5cb226e0e96e4466f43909d7", "balance": 60000000000000000000 }, - { "addr": "0xb6002c96137dfba9fb1e6731324ebcffea5674a9", "balance": 5000000000000000000 }, - { "addr": "0xbce0fe66ace4368292b0d628a489817dab008fe6", "balance": 880000000000000000 }, - { "addr": "0xda996484a79073d7ec084ecb82bf2063263177ea", "balance": 5000000000000000000 }, - { "addr": "0xbae7acd9cadd69da7f3dbc21d5dd1e12dab8ec85", "balance": 173499200000000000000 }, - { "addr": "0xda8d549155361fadaf68530bb773182ea67b15c4", "balance": 23999880000000000000000 }, - { "addr": "0x7176f1ab06a96723571710d6c4f40c61762e0af2", "balance": 5000000000000000000 }, - { "addr": "0xae7d8e31a2be7582899f6174b64698d054e22b34", "balance": 173499200000000000000 }, - { "addr": "0xf6c5d4ff26955937c667eb6b3b2affda7e769b90", "balance": 73000000000000000000 }, - { "addr": "0x1fe9bec5504c93764c9d62b6876830c65fd91447", "balance": 62997000000000000 }, - { "addr": "0x99a853e83a7868ae963a796b01b2c7ee046011a3", "balance": 8541258500000000000000 }, - { "addr": "0x0ddbaf0c7880c21fc3538a63fd621e1fdab9cc51", "balance": 370000000000000000000 }, - { "addr": "0x7c45d52e6a84aaa317770aac204ec68ee3327dee", "balance": 23999000000000000000000 }, - { "addr": "0xf4c924f185626a7c4253ce42108c15886db26f72", "balance": 1000000000000000000000 }, - { "addr": "0x3a0b820b92bd7605e58d415b733ee8997079e5f8", "balance": 400000000000000000000 }, - { "addr": "0x031f1409a916faa2adea5bcea04cbddc7f0aff9a", "balance": 200000000000000000000 }, - { "addr": "0x32af39a2925452b312477c27cf750fcad9def069", "balance": 73000000000000000000 }, - { "addr": "0x14124918e0f66be7656a00e6b678b96545e599de", "balance": 200000000000000000000 }, - { "addr": "0xa9f7e6e2172d1517eaacbfe67f63fc2ebdae7534", "balance": 173499200000000000000 }, - { "addr": "0xe799e3deb8a31fcde4e47876751fa8ca6201f504", "balance": 200000000000000000000 }, - { "addr": "0xdfbadc10b56ad60e759a7bf9d6384c32fff17a20", "balance": 73000000000000000000 }, - { "addr": "0xada29477e223b12f8515bbf8bff13f984e856bdc", "balance": 73000000000000000000 }, - { "addr": "0x0249b51a48ac7f276893f1de47e4fcf4eaa7e7dc", "balance": 200000000000000000000 }, - { "addr": "0x8533a0bd9310eb63e7cc8e1116c18a3d67b1976a", "balance": 507322617500000000000000 }, - { "addr": "0x69780fb30194cfd22456d7c0502639eab6fcef2d", "balance": 5000000000000000000 }, - { "addr": "0x6c263c702828047cbe000485ec813532ef083363", "balance": 273000000000000000000 }, - { "addr": "0x29b394d7ea5afcfa47b5495656ac5cac81a93070", "balance": 5000000000000000000 }, - { "addr": "0x14676ea9cef784e9f7c8ee8e3a586431a52d7ffa", "balance": 200000000000000000000 }, - { "addr": "0x32f96dea074d6c8d521d04323a4b73a8ac89ddd7", "balance": 5000000000000000000 }, - { "addr": "0x787cec4d55cc07cd32fb11db1a2819e36a14c197", "balance": 5000000000000000000 }, - { "addr": "0x0fd13dfe77fea773a446b374685b250cd8f2d6a7", "balance": 880000000000000000 }, - { "addr": "0x2c4ae27e24b966339d89078c3e511bdd04ac12ee", "balance": 5000000000000000000 }, - { "addr": "0xe0cfecb53aa7c305bf852403c5547df6e6f2f3d9", "balance": 5000000000000000000 }, - { "addr": "0x74bc1b328be2018b4846d5bb694adde04199c204", "balance": 73000000000000000000 }, - { "addr": "0x4de73d0255374c725924134eadd70b1c71064b6a", "balance": 5000000000000000000 }, - { "addr": "0x7ec4cfbe769cccade43a77be0f9dbba65ff17d0d", "balance": 73000000000000000000 }, - { "addr": "0xe8caf3cbd3c9f5037d41b8b0a33581eabfe79819", "balance": 73000000000000000000 }, - { "addr": "0x78a4c508e7763a2dd3821bd9e2b3ed28dca56522", "balance": 73000000000000000000 }, - { "addr": "0x2074d2c0d4daedcaf1e085e7e81de6c655dcb271", "balance": 47999750000000000000000 }, - { "addr": "0xddc67294dc05e615e584898e31927d3dc47fb66f", "balance": 173499200000000000000 }, - { "addr": "0x5d655f396c7b36d7b1b9f911c4955f02c87d950c", "balance": 73000000000000000000 }, - { "addr": "0x7e34c63ebb4c01945724fa604db0d2c73413a686", "balance": 1585218160000000000000 }, - { "addr": "0x91ce6ff2f618fe67734c4d8ba363d2e858ddc68d", "balance": 5000000000000000000 }, - { "addr": "0x67cb7efa84835a2cdba543fad862298e651ce793", "balance": 5000000000000000000 }, - { "addr": "0x740ceedca7a9a1aad8f794a70a859d68cf257f50", "balance": 5000000000000000000 }, - { "addr": "0x2593dd10fc01455bb5916451fcb0b2f769c58bc1", "balance": 200000000000000000000 }, - { "addr": "0xba1be460f21def18f0df03f191f9b9c1e1e21928", "balance": 24000000000000000000000 }, - { "addr": "0xc4a3ba24193037051c9e37a5e34013371e7ed629", "balance": 24866940000000000000000 }, - { "addr": "0x0f08f6fcb8ddeea02dba03c908e1f0a0ccd1313d", "balance": 10000000000000000000 }, - { "addr": "0xb45861a5fdf9388c6e627b9595dd84dcfa60d210", "balance": 5000000000000000000 }, - { "addr": "0x99edce7020e983f72edc60bb0c1018706cabdaa1", "balance": 80000000000000000000000 }, - { "addr": "0x5518e80efda442ff69c1eed7284b1f876847de3c", "balance": 5000000000000000000 }, - { "addr": "0x6f1c7aafe89ceaada0dc80e47956ef46c9e540c9", "balance": 200000000000000000000 }, - { "addr": "0xd1c619d42a7e749f5119c62c0bcd7f4fcd110c2a", "balance": 400000000000000000000 }, - { "addr": "0x8b358deae804ddbbe5f28cac705c203a125a3f2c", "balance": 200000000000000000000 }, - { "addr": "0x885f311f0be6374c7cb1f86f456d509d4f47f6c5", "balance": 5000000000000000000 }, - { "addr": "0x69db037277e5bcc77f2c0c9b97ef24ba47edb8ac", "balance": 200000000000000000000 }, - { "addr": "0xd3cef89026c69294e5a7393d26d3b3984705efff", "balance": 73000000000000000000 }, - { "addr": "0x66f86ec0280b91110af9b1159675d9ea00295620", "balance": 5000000000000000000 }, - { "addr": "0x72912ad27b6ecb65dba3a42d4d522856c2aad1e6", "balance": 5000000000000000000 }, - { "addr": "0x0ebf7d4021ae455fdf967cd1aad35714abd930f3", "balance": 5000000000000000000 }, - { "addr": "0x384b5cbac484064a50e692bb33ada2a074e94675", "balance": 5000000000000000000 }, - { "addr": "0x963405a7883ab6b82fe284a8a87b0046dc6ac86c", "balance": 5000000000000000000 }, - { "addr": "0xfd582f45a4698d5b8fe919da8166eaa088c6a04d", "balance": 5000000000000000000 }, - { "addr": "0xfec02a121dff561588b2737ad01cea535626b589", "balance": 1585218160000000000000 }, - { "addr": "0x891c943727c1fef4c87e3fb5329b8cbdff42ff8d", "balance": 200000000000000000000 }, - { "addr": "0x4c0c3ceb86daaa6169ca96a69d1342286209c2b8", "balance": 1585218160000000000000 }, - { "addr": "0xa24bf74c35caee726e1797a9c368facd3602c34a", "balance": 880000000000000000 }, - { "addr": "0xad0737f9c2fc2a067abe6aaa2d1e268495b7fec3", "balance": 5000000000000000000 }, - { "addr": "0xe145b5ec763a9c837a46db2c1f09e180917b71d3", "balance": 10000000000000000000 }, - { "addr": "0x237eab0477989f860d4a1b1c5f7f31d0a81b0ebb", "balance": 218160000000000000 }, - { "addr": "0xa7225e4cbcbd610c49acb9ac279bb12346d40b12", "balance": 73000000000000000000 }, - { "addr": "0x07f9e23a73ef3d673e48b26060b462b940ed759e", "balance": 73000000000000000000 }, - { "addr": "0x7e392c03d5f99ea50f2e003bf01e58128e34a58a", "balance": 73000000000000000000 }, - { "addr": "0x68f4bf42dd795ee9d1a01c6bba6c89c8e1f5ca48", "balance": 23999880000000000000000 }, - { "addr": "0xb3f989f7a573b5777df794d599adc187077ad28d", "balance": 479997320000000000000000 }, - { "addr": "0x91b445eb133cd73fde4ca62956149ffdee722ee6", "balance": 119999390000000000000000 }, - { "addr": "0xf0280aa09232e1c409f9029852213e33baadc20c", "balance": 5000000000000000000 }, - { "addr": "0xd344fb20819a560fb3a2cc60b499f746dbc8facc", "balance": 5000000000000000000 }, - { "addr": "0xf5e45b0266d2cfdc50b951665152f0f4f92cfc2c", "balance": 5000000000000000000 }, - { "addr": "0x52afbf8cf8b1dde8b8f210795636e3fc3979e1a6", "balance": 5000000000000000000 }, - { "addr": "0x21f50c42b0aefba67ddf011cc5509068735e5ef1", "balance": 200000000000000000000 }, - { "addr": "0xa55e087af1ff59a81e75f62cd9c473718bd7887c", "balance": 5000000000000000000 }, - { "addr": "0x7ed03aa8a1d122a590115c773fca0a2e2a7a53f8", "balance": 73000000000000000000 }, - { "addr": "0x3c0b17799537f1467636a74ed1d3f10a610c70b3", "balance": 200000000000000000000 }, - { "addr": "0xad99a43e82cc412c7cce8262534b3b278cb57440", "balance": 880000000000000000 }, - { "addr": "0x0d8717d516381706c070764d5a3949bb9f916235", "balance": 1585218160000000000000 }, - { "addr": "0x85c0c17ea670e196e84c03c567eb1c86c2109817", "balance": 10000000000000000000 }, - { "addr": "0x6c81b5eafeedd4466fbf89b7afe9d58211df06e1", "balance": 5000000000000000000 }, - { "addr": "0x0e1e12c11c1eca0b31dcf139d7130ccf36ceb91e", "balance": 2191945218160000000000000 }, - { "addr": "0xb4df7d7cd5c683d7b030dcd765b9414a1676787f", "balance": 73000000000000000000 }, - { "addr": "0x6e4b752a81dec55415304f765a5274bd851ee57d", "balance": 10000000000000000000 }, - { "addr": "0xf9c7eb5f15981cd064dba128b9e3085805ae1341", "balance": 5000000000000000000 }, - { "addr": "0x97b379f22750176592209dfdb233f20d7a179138", "balance": 23999880000000000000000 }, - { "addr": "0xc3c70e41eec49c4705ce43000259f1f1634eb98e", "balance": 48000000000000000000000 }, - { "addr": "0x67a1084221ce8bbc330acbdae5f3c816d5fc139b", "balance": 880000000000000000 }, - { "addr": "0xbd08b14053a60d9f2a4d1be625c8476c9b914e8b", "balance": 5000000000000000000 }, - { "addr": "0xbea1b6b94f68c13579560c4a32fa47057cd774e1", "balance": 173499200000000000000 }, - { "addr": "0x31a273b447f60b1edf0335215f222c7841e5dfe1", "balance": 218160000000000000 }, - { "addr": "0x87c75a04d38d9452710335331f1359752a54d6cd", "balance": 20000000000000000000 }, - { "addr": "0x8410d885416bb6f00d7713e917840f35fc4b1786", "balance": 384001000000000000000000 }, - { "addr": "0x55413f9e55570efa095865f9ca917d8549d2861e", "balance": 23999880000000000000000 }, - { "addr": "0xb7678ab17169097e758a5e7d246e9ae8cbfaf8ff", "balance": 24000000000000000000000 }, - { "addr": "0x8399188bf79cce65570ac73d09da32e278f577ee", "balance": 2585218160000000000000 }, - { "addr": "0x07a495f8692293fad59254e58140fa0c4079bea7", "balance": 20000000000000000000 }, - { "addr": "0xb43240827ae5609dc73c105d6887a3dbdd1ee3f8", "balance": 200000000000000000000 }, - { "addr": "0x51dbf108cbccfdc901688a37c3f159dc87d3e0dc", "balance": 73000000000000000000 }, - { "addr": "0xe6260c550dfd758050baffc9d4f09a80791bf23a", "balance": 200000000000000000000 }, - { "addr": "0x5ebd683a6ee08534975beadcf7c1ddce692dfa26", "balance": 23999880000000000000000 }, - { "addr": "0xe9f0ab1b33d3b33312ba359613a66cd48c6a8175", "balance": 20000000000000000000 }, - { "addr": "0x1d2594a6581ae5513e4b2a4b8e759d9554b4d7b7", "balance": 15000000000000000000 }, - { "addr": "0xf21ee179bd721807c4cb4a2844a4b1bb4a833f18", "balance": 510000000000000000 }, - { "addr": "0x9cdd687d220d80e84e115706bb6aac579aa1a31b", "balance": 35000000000000000000 }, - { "addr": "0x3c6295814503f1e14ae9307744fa574d699a1768", "balance": 134343000000000000000000 }, - { "addr": "0xce6793364b36b3f6c93efa770055a399688e7009", "balance": 2850000000000000000000 }, - { "addr": "0x7f90630cfcb0996fe80034811e9cc10f42101887", "balance": 10000000000000000000 }, - { "addr": "0x0507580e6e1096dc96e0eafdd0d1e5cc9a5b2cbb", "balance": 73000000000000000000 }, - { "addr": "0x95ec860f97e2a6be4b2e5908d0d846e89b4bc1fb", "balance": 5000000000000000000 }, - { "addr": "0xcee568ea7613c2ae806f087e6195dd77070077cb", "balance": 73000000000000000000 }, - { "addr": "0x41987f312c027abd33778dc06ea5ea7f0095a5c3", "balance": 95999510000000000000000 }, - { "addr": "0xda5970653e0bbe6eab089e080ba8784d2ded810e", "balance": 80000000000000000000 }, - { "addr": "0x7839ed51f3485805101714f12e41504669456944", "balance": 1000000000000000000000 }, - { "addr": "0xd9dbff53a827b1ba6086b21c04b50823c51d2af8", "balance": 20000000000000000000 }, - { "addr": "0xfa0a5f9527126037aedbfeb726e4333baee441b9", "balance": 20000000000000000000 }, - { "addr": "0xa567da45b22460d9d4a18444266248263385da8a", "balance": 1000000000000000000 }, - { "addr": "0x12c6501b9c11fc514001b262942bec8b6bf81976", "balance": 10000000000000000000 }, - { "addr": "0x4a712693d63b9fffe99a199d09acfe1348fa6ad0", "balance": 5000000000000000000 }, - { "addr": "0x60cf97a7aa049645d61c9b4a367818901ab15f00", "balance": 390000000000000000 }, - { "addr": "0x424040e352e0e6b037d3f9b72fc1daef60139c90", "balance": 239998770000000000000000 }, - { "addr": "0x87e8d2c1f2c4d82c6df6af604a23dbb587959ced", "balance": 880000000000000000 }, - { "addr": "0x79b3066a3e6cee78e5d55a040cc63c71c10a8803", "balance": 5000000000000000000 }, - { "addr": "0xd166a3827c7c93526ffbfe92d8cbe5b9c4a72fc1", "balance": 5000000000000000000 }, - { "addr": "0xdd9feb7c643c3ff4df842d04de46434e9ee76ba0", "balance": 5000000000000000000 }, - { "addr": "0x29c3e1836be096574d7277267f11bf3a110e36ca", "balance": 73000000000000000000 }, - { "addr": "0xf6da6e6d30275f407f98ebf6fbd323c8836820c8", "balance": 73000000000000000000 }, - { "addr": "0xe8343041f65e91e17a2b6c7f3f75dffe5216463e", "balance": 1585218160000000000000 }, - { "addr": "0x4216620ad2df4a19e4513c4e9dea967a232a64e0", "balance": 200000000000000000000 }, - { "addr": "0x03fe73fca7bd53b8de3d38cd5e39d6062859bf3f", "balance": 200000000000000000000 }, - { "addr": "0x2c0d24e5eb35029fb95af00c187f4d2222a027b9", "balance": 25000000000000000000 }, - { "addr": "0x3de1e2bd2f8571213ebba5d165ab4e5965ad63ac", "balance": 5000000000000000000 }, - { "addr": "0xf16d21904cc8392b96791eb6f879c79063ea98ad", "balance": 200000000000000000000 }, - { "addr": "0xa90bddf32d09c77ec012ed66229802ffc681f2ee", "balance": 5000000000000000000 }, - { "addr": "0x46a0ee2cb418859cdff04a891ef47f97e020616a", "balance": 200000000000000000000 }, - { "addr": "0x1b58e27462b54bc08856c24b325f867d54812364", "balance": 5000000000000000000 }, - { "addr": "0xfb232febf5fb0d41a8b2dc3dae23d2703462f573", "balance": 748700000000000000 }, - { "addr": "0x864d21923308d1da9a7d6f12311a076aa9318ed9", "balance": 5000000000000000000 }, - { "addr": "0x1bf8f69fd4471ca8b01f9ee01a87e3c23fa300b3", "balance": 1585218160000000000000 }, - { "addr": "0xe86d0397cc095fad3d0c0f30f491c65f6ecb7754", "balance": 73000000000000000000 }, - { "addr": "0x3da2bce910f5ce414a8df8c639462d7f233527cc", "balance": 5000000000000000000 }, - { "addr": "0x77d3d9bd6f4d6743381d4f68134591c49b299a89", "balance": 200000000000000000000 }, - { "addr": "0xb013f72e51fb184d8b7b672bef6b1a4e2b5c179d", "balance": 60263690000000000000000 }, - { "addr": "0xd0bdfcb40eaba98cb8094e8def6bea2cb3a3bac5", "balance": 5000000000000000000 }, - { "addr": "0xc7a5d9002baaed7a93b1f79a5028f2cc4c650cc9", "balance": 400000000000000000000 }, - { "addr": "0x791f897a9d7c972b7b1f1e9110f00f536b3ab21a", "balance": 5000000000000000000 }, - { "addr": "0xb6a303eaf121335d5cf95699a7d229a7970ff5f3", "balance": 73000000000000000000 }, - { "addr": "0xb770649de740089c4e359cb325b04ce36efb844a", "balance": 173499200000000000000 }, - { "addr": "0xc3d07130c32c11fb0389ed1d514b302cfa9df08c", "balance": 5000000000000000000 }, - { "addr": "0x0682f4bbf1b1c12e0f79e462d1b483888efdf4d8", "balance": 10000000000000000000 }, - { "addr": "0x7c13114d0db709ef9b2eaaa3ae6c50a0723943b8", "balance": 160000000000000000000000 }, - { "addr": "0xd3b83cde3eeb58080de205a7c42ef1e512176f4d", "balance": 73000000000000000000 }, - { "addr": "0xfe234a30e2ef001657ffd01249c6b59ac209cd14", "balance": 10000000000000000000 }, - { "addr": "0xc322e56a02fb54f007d289b653d9ff58a5e9c233", "balance": 5000000000000000000 }, - { "addr": "0x6457bdcc93fcfdb342d681a64fb64a9e808e1eff", "balance": 717596330000000000000000 }, - { "addr": "0x4a83d582bec924e4225ab35990c49a070ba93e47", "balance": 173499200000000000000 }, - { "addr": "0x5508e52b983e977108113ec1dfe95e48e97a2e33", "balance": 200000000000000000000 }, - { "addr": "0xb1b04bde81773ceb6c55339147171468a757dcfe", "balance": 73000000000000000000 }, - { "addr": "0x4b7f33bf62b46e1a8d7d6fd37e03e05b3c7065c8", "balance": 1585218160000000000000 }, - { "addr": "0x64588b1033657738dfc10a675aa2cac5433785b1", "balance": 73000000000000000000 }, - { "addr": "0x5b9808807f7433b92c5f6e73052733620d6c9436", "balance": 23999880000000000000000 }, - { "addr": "0xa3612b3f2f4586b8ab9b3f6b8233bc6ee75d37d8", "balance": 5000000000000000000 }, - { "addr": "0xbea6507fe9057e39443635750d795183fcdfb4b4", "balance": 20000000000000000000 }, - { "addr": "0x593a982b8ba4a9be3347e1d87de77a3f876feadb", "balance": 5000000000000000000 }, - { "addr": "0xf973155058ca3cb37da07e1a05a62e7a35d6c3a5", "balance": 200000000000000000000 }, - { "addr": "0xf46151b2e15f02c0f10e8780d2cc2dbf881d505a", "balance": 850000000000000000 }, - { "addr": "0xd1f8e0f178f6d074446e31f97c54c574d371fcbf", "balance": 200001000000000000000000 }, - { "addr": "0xc894b811927b837e3c86bda87896e3f19a238489", "balance": 5000000000000000000 }, - { "addr": "0x0410724f2098046e83202256fa92a7195aecd6e3", "balance": 3000000000000000000000000 }, - { "addr": "0x417044a320e0a16947cbb959ea85a88b86186c16", "balance": 73000000000000000000 }, - { "addr": "0xc87dd3d3434346e0c785f6015785823834637802", "balance": 200000000000000000000 }, - { "addr": "0x65f3dc3f030e91d049e3bdc8486a73fcf1129a35", "balance": 218160000000000000 }, - { "addr": "0x5fc7389b92252448fd497eb07b79938ab8a84237", "balance": 5000000000000000000 }, - { "addr": "0x2eb9d259c6e565f80ca4e7b092c79d9489c6883a", "balance": 50000000000000000000 }, - { "addr": "0x44e3dff8aea929343f337dbff6857ce152814042", "balance": 200000000000000000000 }, - { "addr": "0x22d68cc90bce30ac2345db0ab1d3acbe083d3732", "balance": 1000000000000000000000 }, - { "addr": "0x8b8b8c800da3000b1a3f56ea6eab6e8c201845dc", "balance": 200000000000000000000 }, - { "addr": "0x8cd5da5e56a1ed34f8483164e310353fae26e68b", "balance": 173499200000000000000 }, - { "addr": "0xc56a47ffebb8269d77a403659ad1f22a237d7b2c", "balance": 17415340982300000000000 }, - { "addr": "0xb509e05f1287e1aefd06845872ee7960892561c6", "balance": 200000000000000000000 }, - { "addr": "0x55f9d1b657aaa01178017f05a724e01b83675f3c", "balance": 1000000000000000000000 }, - { "addr": "0x6177671cfb0f522df7bed041835ec3252dcc7086", "balance": 200000000000000000000 }, - { "addr": "0xeb8e85857e277d79e0650ade138e80b3ca516139", "balance": 5000000000000000000 }, - { "addr": "0x8f5acc92c5b55cf48ea80bdce7255d7d08fa5035", "balance": 5277860000000000000000 }, - { "addr": "0x0907c695a324e17f453d0d3d0dfaf6ff2d55651a", "balance": 200000000000000000000 }, - { "addr": "0x96ff102fb441908d24c2a68a1ab07a5d9f506a5f", "balance": 200000000000000000000 }, - { "addr": "0xdd452fe2bb4eb3430f59bca631d11f72b33e8830", "balance": 10000000000000000000 }, - { "addr": "0x42e8382735b5af07f8a0549f8f653a4f4cb97095", "balance": 73000000000000000000 }, - { "addr": "0x622c32896e8d7b881f8ddefc4e3e0714ad9ae675", "balance": 73000000000000000000 }, - { "addr": "0x5d2c537a0e95e899053d219686129170bbf9f22d", "balance": 5000000000000000000 }, - { "addr": "0x156bf6892310dc94df58ff14a63c6d8ee5f611ad", "balance": 73000000000000000000 }, - { "addr": "0x3c691d49d8c3e35b0887851c84892ad31899f0c4", "balance": 200000000000000000000 }, - { "addr": "0x7e9c34c6c8c040e5e216f30c210ade0cc600b656", "balance": 5000000000000000000 }, - { "addr": "0xcc59fe3c1ee592fc3f4480bfd82cfa542c154283", "balance": 10000000000000000000 }, - { "addr": "0xe06c8bfdd85cc8c3602e62d2a29f35d350bd7d3d", "balance": 200000000000000000000 }, - { "addr": "0x44eac2afafa66daa900c27e38eb49cca784909aa", "balance": 200000000000000000000000 }, - { "addr": "0x1907d6d61377996705e567509c7ca64527df090e", "balance": 173499200000000000000 }, - { "addr": "0x5a46bb7f8656bc6e9eb50912de71acd1966ebe58", "balance": 5000000000000000000 }, - { "addr": "0x0dabd23d2efb3f8a3478c9f52eb9be7739d18282", "balance": 5000000000000000000 }, - { "addr": "0x6eb06f4cc2a1102a833150f63e9324d12713f254", "balance": 1585218160000000000000 }, - { "addr": "0x9ad34882fa5482bab8b56e8d077a133eeeff7ac5", "balance": 35999820000000000000000 }, - { "addr": "0xc29b445a8df52682f94a0c54e068efaceffb6084", "balance": 73000000000000000000 }, - { "addr": "0xde7cfaa88bd424b43209228f48769754594dc286", "balance": 5000000000000000000 }, - { "addr": "0xc665b54bc69dea45112fb310e6d951a95e07ce21", "balance": 150000000000000000000 }, - { "addr": "0x400757d790f9b891c4412032d6cb291c248ad1b8", "balance": 5000000000000000000 }, - { "addr": "0x78a65f1e79eb32aaabac64d3555d3650cb5a7838", "balance": 4217000000000000000000 }, - { "addr": "0x0c0d02d96ce90c44a18700959d83486e0ba32955", "balance": 25199000000000000000000 }, - { "addr": "0xf963c817d713df2b4b30924ae823eaa4d6c63170", "balance": 200000000000000000000 }, - { "addr": "0xc8d3bc94f1daceffec741e7ffdf7f64ed3d63a18", "balance": 113000000000000000 }, - { "addr": "0x1f7736b8de9c85a4e48f877a40430a5608e4af7e", "balance": 73000000000000000000 }, - { "addr": "0x9d12b0efc9ea00882819ccd0ef218b62e0c23028", "balance": 49000000000000000000000 }, - { "addr": "0x764916f47aabc79822c1b9b1372053bf5e19839a", "balance": 20000000000000000000 }, - { "addr": "0x5e84be8a90c4ea21fef4c618791b27b2a9f48d62", "balance": 5000000000000000000 }, - { "addr": "0x59677da3fb07a988d80d000a39b6158a21c6aa94", "balance": 1585218160000000000000 }, - { "addr": "0x5ab5892de2e24d8ca8a56b6a28d03694ed72ff7d", "balance": 5000000000000000000 }, - { "addr": "0x57df9f3c29fb17fa12224bfe2924cd5eb0764b6b", "balance": 200000000000000000000 }, - { "addr": "0xf5b56e6a6dc88ac96d0d5df828803d2250c921fa", "balance": 5000000000000000000 }, - { "addr": "0x36528df2d2d0d41ce29151a95b914dee2ab54a39", "balance": 173499200000000000000 }, - { "addr": "0x0cfc0946b3038e9c0e36e892356d8b6820692054", "balance": 10000000000000000000 }, - { "addr": "0x5ede32cc53ce9b39701a58e75139ae19e08101a9", "balance": 3215750000000000000000000 }, - { "addr": "0xe19765ca36d390c25c12567d9287d425446e25c6", "balance": 5000000000000000000 }, - { "addr": "0xef7b2d846c5699c2b914671c0990e09e3efc63d6", "balance": 10000000000000000000 }, - { "addr": "0xc1925c45531e2b5f8854bb17b84c15171f31f846", "balance": 5000000000000000000 }, - { "addr": "0xd34a16e4d33706f081e803cabf61a3b83e059411", "balance": 200000000000000000000 }, - { "addr": "0x93153e10e0685432995ba2305010f94e925e9bb1", "balance": 59349850000000000000000 }, - { "addr": "0x68dc41c9cbfd5f1b7e5be5338b7a914e22258967", "balance": 95999510000000000000000 }, - { "addr": "0x864f876c24ee8fa830bfee84edee4ea758a7480e", "balance": 5000000000000000000 }, - { "addr": "0x328f8a1fa31c249fb3792d1d2f573ba3ce0c6658", "balance": 15000000000000000000 }, - { "addr": "0xd7b36118c43ad57d32cdeb32b359c1f4fad030a7", "balance": 1000000000000000000000 }, - { "addr": "0xb85b15197f0d827fe7350c45400dbafe850e54f9", "balance": 73000000000000000000 }, - { "addr": "0x95ed91e587f17a311cd216c704a2cbd06cff085a", "balance": 1585218160000000000000 }, - { "addr": "0xd2db7224e26657efa5275f473f21f453b179a463", "balance": 5000000000000000000 }, - { "addr": "0xc380b949d76d5e984db70b5b9a3f0b3dba671e44", "balance": 50700000000000000000000 }, - { "addr": "0x0ec6054cfa6730166a9ecd6ec58ded0d75b89391", "balance": 4266560000000000000000000 }, - { "addr": "0x6e0621aef065e3e8d88772e300c02793a4f8525c", "balance": 23999880000000000000000 }, - { "addr": "0xc666e0ae3dfc56ae6d29283ea80a7ca51219679d", "balance": 1585218160000000000000 }, - { "addr": "0x8e06250e0b5d710105e2011f73b82a8a9a1a21c5", "balance": 73000000000000000000 }, - { "addr": "0xf16ccf54721306b0f23c4d89f208ae71a5cfd8b4", "balance": 5000000000000000000 }, - { "addr": "0xbc7ccc3aa9a062cd646ca4947335ef68b87d23fd", "balance": 73000000000000000000 }, - { "addr": "0xa0082544798040fa980a51deffceab76ffa434c2", "balance": 73000000000000000000 }, - { "addr": "0x333c68f000fa4ae9da5bdb260477ad60b2b8aa34", "balance": 73000000000000000000 }, - { "addr": "0xa652a54896450b29c0235ff09e62530e66e19ad4", "balance": 200000000000000000000 }, - { "addr": "0x48c2fc9014a6b50a5301930ee8ecb21c34e42181", "balance": 200000000000000000000 }, - { "addr": "0x52438b4361328042ab9b041a203ff1c58924f69b", "balance": 200000000000000000000 }, - { "addr": "0x1151000fb9b1a8416a69f8944b08253008f760ef", "balance": 5000000000000000000 }, - { "addr": "0xd6630a08737c09c4544f76ce9cea17310552cf32", "balance": 200000000000000000000 }, - { "addr": "0xe819d9e631f8020625b13fbc62b6bdd80a91bf06", "balance": 30000000000000000000 }, - { "addr": "0x6ce33d87f627820c721ee24766184c8e04861ce6", "balance": 100000000000000000000 }, - { "addr": "0x2b5d570e2a00b242554280eeba96a6cf1c6fba52", "balance": 20000000000000000000 }, - { "addr": "0xfee8000669860437ca433e062946188ab0099af5", "balance": 34559820000000000000000 }, - { "addr": "0xf01e90d755514dac3d217cea046412d961a51992", "balance": 5000000000000000000 }, - { "addr": "0xd75252ee995f250caf545ec2425532e21017ed2c", "balance": 73000000000000000000 }, - { "addr": "0x3af0eaf01290ec26d1d16ac98023b0be6e8b9222", "balance": 173499200000000000000 }, - { "addr": "0xd68fbd0da07ff71fcf364aa190ae0e4e25b94fd8", "balance": 73000000000000000000 }, - { "addr": "0x20bb8607d8e4c7e96480a453255bd3d470266592", "balance": 73000000000000000000 }, - { "addr": "0x5bf3fce98b36b028041c7494bfa3a31d0d12aa4e", "balance": 73000000000000000000 }, - { "addr": "0x6cdb1397d0f692d68d84c5b8b694a4679ba0e501", "balance": 73000000000000000000 }, - { "addr": "0x551b4ab4746c485b112f0eb0e61d5bb969e2c548", "balance": 2399980000000000000000 }, - { "addr": "0x88fc00c35ba9bb026ab8ebf4bf6c6b2862bf75cc", "balance": 73000000000000000000 }, - { "addr": "0xd663a26865dd87997274a25dc51000352a3508b7", "balance": 5000000000000000000 }, - { "addr": "0xc02b88ec523a338ec4fae3e68a7ac4f9f45eae63", "balance": 5000000000000000000 }, - { "addr": "0x8c3e990b6a5e82e38fd49cd3a6eb4495a913809a", "balance": 200000000000000000000 }, - { "addr": "0xba72fc0f60f159a86a85d2ac615e16dcfca49f52", "balance": 5000000000000000000 }, - { "addr": "0xb0a8846c83f569a6032c7c1193a29c8299d1e424", "balance": 200000000000000000000 }, - { "addr": "0x5ed3bbb858c8c15aae7daf415ecbbfdbf7169cd2", "balance": 73000000000000000000 }, - { "addr": "0x7a2e6b36a0e477d91c0da37eaed6597c15bd162b", "balance": 20000000000000000000 }, - { "addr": "0x4beb727d4d5065c177ceaa10a1115a21005db0f0", "balance": 5000000000000000000 }, - { "addr": "0x8fae8df3a5c61d6e9a799a37453741cce97440a3", "balance": 73000000000000000000 }, - { "addr": "0x34b41ca6b52c7beb95009442036b090b3f170b26", "balance": 200000000000000000000 }, - { "addr": "0x0989b360e0469eff77a39ca0f146cbda9dd98962", "balance": 400000000000000000000 }, - { "addr": "0x6ff0330c15bd87a04f8e07fdaf55cea484e9938b", "balance": 200000000000000000000 }, - { "addr": "0x561ef8aa29eb10a3dd96cd4f3f36bba9f2463371", "balance": 173499200000000000000 }, - { "addr": "0xa1ed02b5da992c66dcf44ad1c21286fa0759084f", "balance": 5000000000000000000 }, - { "addr": "0xc3b43d454089c9daf53c2dbe8bc480518d20fde0", "balance": 764000000000000000000 }, - { "addr": "0x9fd83ebd9ca3363a62ac5f09f28d308956184bf3", "balance": 200000000000000000000 }, - { "addr": "0x8743ea544b68b2de87db323471ea3e28711fab57", "balance": 5000000000000000000 }, - { "addr": "0x9aad8fe30abfdd58808752d89f83538db9e3b86e", "balance": 73000000000000000000 }, - { "addr": "0xa5fc8447e061e18687200bad2a44711260d68000", "balance": 73000000000000000000 }, - { "addr": "0xa246d9afaa322aa274dd3e931d655d11feb77118", "balance": 1585218160000000000000 }, - { "addr": "0x6cbd6d4e5a79b1bd588d6ecff57babddec5ce76b", "balance": 200000000000000000000 }, - { "addr": "0x1ce0e0661c4483705e9c1033d4e9edb8a2a452f6", "balance": 120002000000000000000000 }, - { "addr": "0x8d8b42307ce364f43546e71ad103c5f2e587fdd1", "balance": 5000000000000000000 }, - { "addr": "0x34e3acf4324aec7a9d94e374117c9118f7ab5080", "balance": 73000000000000000000 }, - { "addr": "0x399b27d3d722d2ebec37cfcc57e6668849da2be1", "balance": 200000000000000000000 }, - { "addr": "0xa29b62b3d3a5e7c0b8a80f950664cc59af744f96", "balance": 10000000000000000000 }, - { "addr": "0x17cd46d83549fc7bbf0fcc3974e40fb6dea213f5", "balance": 10000000000000000000 }, - { "addr": "0xbe7c3963139c836836428f3b5de6f453bc615b29", "balance": 5000000000000000000 }, - { "addr": "0xc7b8e8fbefef2de025ba4a1322693971c26342c4", "balance": 73000000000000000000 }, - { "addr": "0xa094a8d01790aa813beeaee49fdeba23900f2b72", "balance": 20000000000000000000 }, - { "addr": "0xef54c6ccf13092bb39caf3829ee5667fd60d813c", "balance": 5000000000000000000 }, - { "addr": "0xc4c91fbcc3be93f77db0469eabd9f97446872d2e", "balance": 5000000000000000000 }, - { "addr": "0x2b315113446dfe1f149e623797779044c182b22f", "balance": 5000000000000000000 }, - { "addr": "0xc9d47da20be40f0a8e00912e818a798da868984c", "balance": 5000000000000000000 }, - { "addr": "0x0647f910dd0882e974369e60f94809740615fcca", "balance": 73000000000000000000 }, - { "addr": "0x7747397daeeacd31f1a88789eac3094e7b12cd5c", "balance": 73000000000000000000 }, - { "addr": "0x0a733c64d44d120fe1be002273b8314566795e3c", "balance": 10000000000000000000 }, - { "addr": "0xb0502b25f0500b1b3159cae14ecc331b69f6cedb", "balance": 23999880000000000000000 }, - { "addr": "0x9114bb59ec6151f09cd4479459bcd918c21be7c1", "balance": 435000000000000000000 }, - { "addr": "0x6dcfc8ed98a15f050485bdea941daedbb3c0fab7", "balance": 100000000000000000 }, - { "addr": "0x1feaadf4bd772723ce161a62140366577a70c6f2", "balance": 23999880000000000000000 }, - { "addr": "0x2b6988e1b50a7aa205b965bc73cf847de597098d", "balance": 20000000000000000000 }, - { "addr": "0x4d0a81f62773841d68899236730d608eab89d47a", "balance": 23999000000000000000000 }, - { "addr": "0x93e6a02b43470629fd11ba7d688ff9e261110e67", "balance": 5000000000000000000 }, - { "addr": "0x174114f37423fb60f284a20b1f02022880b1aef9", "balance": 10000000000000000000 }, - { "addr": "0xba0e2deac5bd606d0f5d33834010c94e5cc394dd", "balance": 144000000000000000000000 }, - { "addr": "0xf895cf0a2ca8f53946a6242a2f532134407a22b6", "balance": 5000000000000000000 }, - { "addr": "0x87f4713fc4d96d28b1d8be2115868c5b9c59ee36", "balance": 200000000000000000000 }, - { "addr": "0xe6385a3fe118bd37cef39f6ca49f18a9ece1e87a", "balance": 5000000000000000000 }, - { "addr": "0xd6fe6a4315876b1bb0d444bd14d2bca10829ee29", "balance": 5000000000000000000 }, - { "addr": "0x420be10855e173cab6327d86259c4e9263683649", "balance": 5000000000000000000 }, - { "addr": "0x096dd39a7cb53e38f1bac35215e3e0e744e39fa7", "balance": 200000000000000000000 }, - { "addr": "0x276933e856754ab6fe28aaf6ee44c379c33befba", "balance": 20000000000000000000 }, - { "addr": "0x28213036a4921c6835c0ef82bf425ef545d34f31", "balance": 73000000000000000000 }, - { "addr": "0x80e7ebc5670c7c1aafb10b19729404b207427a2c", "balance": 200000000000000000000 }, - { "addr": "0xf2563b7434cd4942297a36f14f3550ab6fa06857", "balance": 5000000000000000000 }, - { "addr": "0x8b4a55927a6349b43260228f67e7517830fe6481", "balance": 400000000000000000000 }, - { "addr": "0xfbd13d59d1a0becfecd9c6a382276ffb4cbf6e6d", "balance": 2767846731420000000000 }, - { "addr": "0x9bf5d32445c833b3497424971cac8eb7bec86253", "balance": 1858218160000000000000 }, - { "addr": "0x36a4bb52b5a728932b93eb41c385e998b03d4b4b", "balance": 880000000000000000 }, - { "addr": "0x33b4b71943cbba687c36ec28a7e22d3efbb47593", "balance": 2639990000000000000000 }, - { "addr": "0x0b4ffca799c4ed12e38db199c0ff9c18321a3867", "balance": 10000000000000000000 }, - { "addr": "0xd9101c2e2c8184a1981280939593fb9a2fe3ab5c", "balance": 273000000000000000000 }, - { "addr": "0x610eff58142181f939da2afb41c106ad28245a9e", "balance": 5000000000000000000 }, - { "addr": "0xec041a2774171673df2e27f8ad6b2337dd62958c", "balance": 200000000000000000000 }, - { "addr": "0x2e9c45348a7baa53c1ec49a48d71f5d857b9b0c3", "balance": 173499200000000000000 }, - { "addr": "0x969aac215a636233de5e6de32c2dabdf1cb264d2", "balance": 30000000000000000000 }, - { "addr": "0x5980a4010dcf7b55a5f884b673f1b88459bcb667", "balance": 1585218160000000000000 }, - { "addr": "0x2cd2b2c81dad0f33f5e1c299732cc5138fb45f82", "balance": 173499200000000000000 }, - { "addr": "0x2480b1d917b31be41a79e03a66831adb73c84038", "balance": 5000000000000000000 }, - { "addr": "0x0e3bbdee1a708f88b4f998dc4fd8ae2b7548c449", "balance": 52799000000000000000000 }, - { "addr": "0xa07be0326dc186edee270b41ccad6a66ceeb682f", "balance": 228160000000000000 }, - { "addr": "0xca743221b893c1a66f1b2dcb3baddb604d3a9c45", "balance": 48000000000000000000000 }, - { "addr": "0x6b6adebe1b5150e30d9ceddc6c4fd1082dd4d662", "balance": 1176878509100000000000000 }, - { "addr": "0x70f28f7f689c2c523ca0b947ff96606b48d78858", "balance": 200000000000000000000 }, - { "addr": "0xce651d05b105582100ee41352d232b050a093e06", "balance": 30000000000000000000 }, - { "addr": "0xbdd5fe80ceef94c99334c5174b68293e4849d835", "balance": 200000000000000000000 }, - { "addr": "0x907f546bf44dd4f6f2d61e707e7c81fb76965c74", "balance": 520000000000000000 }, - { "addr": "0xecb9687e35a042fbf393e168747425bdcc9e2dc5", "balance": 200000000000000000000 }, - { "addr": "0xb4dc6142edcf206afd335e1c3ce785a5dd2b464e", "balance": 2111000000000000000000 }, - { "addr": "0xd8904e2d4301bb93a838dec57fc4d26ddc42423c", "balance": 111838800000000000000000 }, - { "addr": "0xc4e0621e30097c3b568559ffd13de615599878c7", "balance": 73000000000000000000 }, - { "addr": "0xacc4fa1747836fdb8b625c64db60bbc23dc3b3d1", "balance": 1000000000000000000000 }, - { "addr": "0x8a5126893492564aaf78ebff5efa68bcc228904d", "balance": 20000000000000000000 }, - { "addr": "0x10a44e587de4de5d67d2eb7eb0b68d1bc8e1caba", "balance": 10000000000000000000 }, - { "addr": "0x06fb74815e05bacfa25c5bb6f70b8222d65a6833", "balance": 650000000000000000 }, - { "addr": "0x89aae47098e3c2362623b8f24f00db67e2269fa0", "balance": 5000000000000000000 }, - { "addr": "0x1a1c844769e6ae20e7f3cdd762f5e8fde37f9dbd", "balance": 200000000000000000000 }, - { "addr": "0x7039b77e01553e9833e9d9f194fd44e3339bff9a", "balance": 5000000000000000000 }, - { "addr": "0x591c12f9beb6a6ea4432cdfef977050718d316ce", "balance": 1000000000000000000000 }, - { "addr": "0xeb61b70693a6d688c8957bc9671c46234bd2e369", "balance": 750000000000000000 }, - { "addr": "0xbeae8de92034cda8b0c8a36a74b6a1fb42a3cd9f", "balance": 5000000000000000000 }, - { "addr": "0x0441b8e09ce023cdb7a3c934bd9fd391d1e5150c", "balance": 200000000000000000000 }, - { "addr": "0x1ea478c2d53917f803cb9914b0b230ad06800064", "balance": 6000000000000000000000 }, - { "addr": "0x156a2a062f1abacf9565c2e014106b14ac36b369", "balance": 76000000000000000000000 }, - { "addr": "0x729da7170a403e1c6be7097740221e19d7e2b817", "balance": 20000000000000000000 }, - { "addr": "0xccae532e84eee0068080d54dc9da2aba6a84916e", "balance": 73000000000000000000 }, - { "addr": "0x61be912d346a65a5aa18334400d37b5c5daac815", "balance": 5000000000000000000 }, - { "addr": "0x3dcb506527d60e60dd3679c7d00896cf5af937ad", "balance": 490000000000000000 }, - { "addr": "0x34128b57a0db91f2a75f2d146f9d9efb21246b95", "balance": 20000000000000000000 }, - { "addr": "0xbdd86c724140b99ddb2345e130f46e30369a3893", "balance": 5000000000000000000 }, - { "addr": "0x6f8772da3257db3483567aa23293934c753d65a0", "balance": 200000000000000000000 }, - { "addr": "0xbbd8f28814567414c2db39a6b11cf1d852389275", "balance": 4545945900000000000000 }, - { "addr": "0xac0baaa59184f982223985a1b289084e95b1b372", "balance": 73000000000000000000 }, - { "addr": "0xd4b00cd726889a18338389b6ac71795e7196a64a", "balance": 173499200000000000000 }, - { "addr": "0x52a96a550b31d9ead5e84af74225802b866a5b50", "balance": 5000000000000000000 }, - { "addr": "0x3059880647722ff3a20866b68c0eaed6b8cebd78", "balance": 10000000000000000000 }, - { "addr": "0x556af685831cec9f34d7a7bbb6bca4333616d999", "balance": 1585218160000000000000 }, - { "addr": "0xb79bfd992379994de4cbb62732df012c68572a13", "balance": 173499200000000000000 }, - { "addr": "0x238bc19d4752fa49d934736ed61323c807953f6f", "balance": 5000000000000000000 }, - { "addr": "0xcec764fdd3c13f4f8d62e6255b5f0d14daa47b33", "balance": 5000000000000000000 }, - { "addr": "0x576f6b4ef09bc36b7fb33246c52070206606e647", "balance": 400000000000000000000 }, - { "addr": "0x0c5d97d4092935670745bafaaba4efb80d7df02a", "balance": 26399000000000000000000 }, - { "addr": "0xe5385dbc0f497c83c677f0a50a7a9ff0f2cfe5ee", "balance": 173499200000000000000 }, - { "addr": "0xb41679718380bb0a14e0533b74f2732baf0c039a", "balance": 5000000000000000000 }, - { "addr": "0x5d71478ccc3766992f2f7e5f60467fd046541b38", "balance": 73000000000000000000 }, - { "addr": "0xbefb53af85388587428297d427561d868a2817a0", "balance": 1585218160000000000000 }, - { "addr": "0x556884af70f63c2ea4de9a186ff48d6010399beb", "balance": 200000000000000000000 }, - { "addr": "0x5923e9ce80b0d465a4caaf4ce9e04c8a38fc6c44", "balance": 173499200000000000000 }, - { "addr": "0x925a9b36db2c2a0a56f3842e3852c0ae6d13b2a6", "balance": 200000000000000000000 }, - { "addr": "0xdcb7a32a6a354adefdd69a361cc5fd1053dfb5cf", "balance": 400000000000000000000 }, - { "addr": "0xab958b3d30c83f2506c7f23ca94b7056ed63e56e", "balance": 5000000000000000000 }, - { "addr": "0x52179be7f7bb4aa6d26315c572fb623c299c3f66", "balance": 173499200000000000000 }, - { "addr": "0x3eaea6f116b4b5f2b3d50d5a6b19b4ecf107bc11", "balance": 5000000000000000000 }, - { "addr": "0x176074416d113d30f4aedf01e1c45ad9bbce16c3", "balance": 130000000000000000000 }, - { "addr": "0x2b4e7362d39dff56b7761513e23212c7fffeb519", "balance": 10000000000000000000 }, - { "addr": "0x935005ac21abb9bbe21552480f596f3713634cd4", "balance": 73000000000000000000 }, - { "addr": "0xe57f065243bc76ba56929df93a3aa43ccd2f40da", "balance": 27359000000000000000000 }, - { "addr": "0xffe38ba0210772ce0e37bbcf4ef4e98721360135", "balance": 2288906032600000000000000 }, - { "addr": "0x9e1e80dd69c009de404fe49c7842bc702215344e", "balance": 5000000000000000000 }, - { "addr": "0x7fe3e86d0e2e826a30839a1471328041ea8a60a2", "balance": 200000000000000000000 }, - { "addr": "0x8be4f269bdf094d7dde455474024f7428ff10201", "balance": 200000000000000000000 }, - { "addr": "0x29d6af12ffb8ada9fea21a953cdff3d2f1f77874", "balance": 200000000000000000000 }, - { "addr": "0x3cbde0d307e13e713378b2b114cc90798463cd2a", "balance": 5020955906400000000000000 }, - { "addr": "0x32dc3a4ed9e073a88ba982cd9f66fc96b69abc62", "balance": 17902846153850000000000 }, - { "addr": "0x3832dd4e35f8a04bd5401dc893b9610575afb12e", "balance": 200000000000000000000 }, - { "addr": "0x5ef7585f8467a931a2abcd6346ea52768f9ebafe", "balance": 1000000000000000000000 }, - { "addr": "0x59ed209073f32bc882ac23eb942a582b855b04b0", "balance": 59349850000000000000000 }, - { "addr": "0x3398b90388b9a0b6769f3b61e3530c94450ce07d", "balance": 5000000000000000000 }, - { "addr": "0xb4f99c4a8e12db5706ca4ca428d87d46547990a0", "balance": 173499200000000000000 }, - { "addr": "0x8873afa5c34ab80dd23020223f1bb8e756f001be", "balance": 5000000000000000000 }, - { "addr": "0x5c4452dce7c259c7e73c5d25ab8bf93d6b1503e7", "balance": 200000000000000000000 }, - { "addr": "0x6cd898add40e4a343cdfba2bd659a2e59dc90865", "balance": 820000000000000000 }, - { "addr": "0x00e258b84f5a804d836e8e0804a6e3c4372e8847", "balance": 400000000000000000000 }, - { "addr": "0x89a5049b20fa3ac4e1f45d89b59d6a6e96853071", "balance": 48000000000000000000000 }, - { "addr": "0x97d4c49867ad16bad0cf6799597d5d7bdda5a6b9", "balance": 596000000000000000000 }, - { "addr": "0x72f5ea5015b68a7987d926830212a748db0184b7", "balance": 173499200000000000000 }, - { "addr": "0x84732f2159d82913de7d69e9637e336d3eaaa999", "balance": 200000000000000000000 }, - { "addr": "0x9c19ca5e9b1951bb1ea59b470aeb95386eac3eae", "balance": 50000000000000000000 }, - { "addr": "0x836cbc1259000987369deb73a175f4d0152be1bb", "balance": 5000000000000000000 }, - { "addr": "0x2ed56cb8026160ce0df8f2e777b053e615fe37be", "balance": 491200000000000000 }, - { "addr": "0xd89a60d38cd166855b1b71e755eaf9509764e757", "balance": 73000000000000000000 }, - { "addr": "0x59df382b6592b111830c49a900e46f4c9443395d", "balance": 60000000000000 }, - { "addr": "0xae32011b91326500fe2faefdbff8ee22b46fa566", "balance": 73000000000000000000 }, - { "addr": "0xddde4d56d17e407a01e5b8a6e4c26ada8e045e1e", "balance": 200000000000000000000 }, - { "addr": "0xd7d766446105f0d7c9c3aca129f68b7926331b41", "balance": 73000000000000000000 }, - { "addr": "0x4fe3ca9a0d8affc504c05ba3fd85e0ce167cd1ce", "balance": 200000000000000000000 }, - { "addr": "0x29c2d909a3b646585e36774e769661adc0ef6477", "balance": 5000000000000000000 }, - { "addr": "0xcfea3f8ac205832f61f188d635bfcb292f6319ad", "balance": 10000000000000000000 }, - { "addr": "0xcb7278aa906ccc21a3c25a23911961bd0c83a56d", "balance": 5000000000000000000 }, - { "addr": "0xc721d5f2ad4c9b8290bbf5d50407ba87d37dcfe9", "balance": 173499200000000000000 }, - { "addr": "0x1ac76e7fb96806bba23761f6361eb9fcc3a20149", "balance": 583437020000000000000000 }, - { "addr": "0xc9e29bace9f74bafff77919a803852c553bc89e5", "balance": 450000000000000000 }, - { "addr": "0x3ea899116d2c938d75ddbfdb69b0b188927663ce", "balance": 73000000000000000000 }, - { "addr": "0x90b0015c145bebc5a88ff8a23457311d8df311e1", "balance": 173499200000000000000 }, - { "addr": "0x4751a34d59d6dfce65a4373e6a80bd9c980314c2", "balance": 63800000000000000 }, - { "addr": "0x912cdd34c17f3a56255f2e83134513bef4918371", "balance": 1585218160000000000000 }, - { "addr": "0x50781ab8ed9d99772e4d7c85251d5a3db6f77808", "balance": 960000000000000000000 }, - { "addr": "0x2ffea403ae09b3e2054febda121110b092308922", "balance": 880000000000000000 }, - { "addr": "0x7e1ead37c067e55b6e01398ab754eaf67d28d9a5", "balance": 73000000000000000000 }, - { "addr": "0x8c1ad01bb1d95d3dfd4220962f14a6f910153472", "balance": 10000000000000000000 }, - { "addr": "0xcceb0d7d3ec593bde0658aefe80424376db528e6", "balance": 5000000000000000000 }, - { "addr": "0x610242b3c6b25593791c1fe4e26968536d924087", "balance": 173499200000000000000 }, - { "addr": "0x9fd11ed60123bcd96c396f6fb35d1984160593ed", "balance": 5000000000000000000 }, - { "addr": "0x9facfb4b1d89e53e02abb7797353544047502658", "balance": 1585218160000000000000 }, - { "addr": "0xac115fb2d872f81b5bb2d9800afe7e31c12b3d2b", "balance": 73000000000000000000 }, - { "addr": "0xefaa9e5a331ad704ae0a372f440e9f9c1344d394", "balance": 320000000000000000 }, - { "addr": "0xbe1c881e489ea5ebf60082f3826add9835cdcdd0", "balance": 1585218160000000000000 }, - { "addr": "0x7079c056f8f72d12a737eb0ac1c8d3d1e046bdef", "balance": 73000000000000000000 }, - { "addr": "0x45114a221c5241fccff9acd803aca2cf79f0934b", "balance": 273000000000000000000 }, - { "addr": "0xa8ec0b0dd0d5ce4ef9ad7f258ceebb4c9e9afa8e", "balance": 5000000000000000000 }, - { "addr": "0xf2f042ed1faa366ecce8ce3b1c481497785e9caa", "balance": 30000000000000000000 }, - { "addr": "0x69a81bc02163ed89ec786342813858583681a761", "balance": 5000000000000000000 }, - { "addr": "0x597444080a043daee3740e262c8581d456a06e34", "balance": 10000000000000000000 }, - { "addr": "0xc8f09e8029766f99e9e59f3e33b862efd1701273", "balance": 20000000000000000000 }, - { "addr": "0xff3a37698a095b3705bb9a528929c0194834bd6b", "balance": 5000000000000000000 }, - { "addr": "0xb73ccc7e46c3ef8ba8c56ecb653796d53230e51d", "balance": 72000000000000000000000 }, - { "addr": "0xfbafc2fb87fa852c2e976367709c38b4e4faeddf", "balance": 5000000000000000000 }, - { "addr": "0x2668bfef5554871106d48927633ad0cddf5ced3a", "balance": 200000000000000000000 }, - { "addr": "0xf4d3139836ccf66cb985d1517e844923cd499302", "balance": 200000000000000000000 }, - { "addr": "0xea14ca3460db95fb2b6c09e693e55f016cc9c040", "balance": 200000000000000000000 }, - { "addr": "0x21085709fd96de40770c06a9511cf726bcc9bcc4", "balance": 173499200000000000000 }, - { "addr": "0x85ccbf18f9e1abe27683c4b1f763a085758d68d3", "balance": 5000000000000000000 }, - { "addr": "0x78f67f2e9fa84144eab0e3685838fd5e05b60bf9", "balance": 200000000000000000000 }, - { "addr": "0x6070a30e55ada368f6bc9259d3a2bbc63a3734b1", "balance": 200000000000000000000 }, - { "addr": "0x330fa0ab79cd87a5e89c11098ccebd31b9dc8b59", "balance": 5000000000000000000 }, - { "addr": "0xe51bcc666f1911e2e1eaf1122cfec828d4d9df3f", "balance": 73000000000000000000 }, - { "addr": "0xfdfcd965baf5d80b38ee35f8ccf6e80d7593296a", "balance": 73000000000000000000 }, - { "addr": "0xcf1d6f20dd96744757e1d5f4ba0d687a23308757", "balance": 73000000000000000000 }, - { "addr": "0x4b97bc37730a202008c36c5731d4bc5dc4efbe03", "balance": 5000000000000000000 }, - { "addr": "0x1dd0f980f9cf3d302c552f9a49407213f6f501f9", "balance": 400000000000000000000 }, - { "addr": "0xa69f17ce74dc5f846aa8f1b449ac3116e9a17b00", "balance": 23999000000000000000000 }, - { "addr": "0x3dc0ee476f79d6cd46df292c4d8b3ce090712a80", "balance": 73000000000000000000 }, - { "addr": "0x9b43f04191baeb2648b96a7a0088bb894fdc3b14", "balance": 5000000000000000000 }, - { "addr": "0x83b7253259ac4c692403da1e180c576b3490c399", "balance": 5000000000000000000 }, - { "addr": "0xe851c0633efee77e5bbdad3f5f7de41831448ced", "balance": 1000000000000000000000 }, - { "addr": "0xb1f5d5a60cad612c54aa3fcc48175c7915f546ec", "balance": 5000000000000000000 }, - { "addr": "0x599d0befd255c7452a2a5c99a1fa9cfc650b4288", "balance": 5000000000000000000 }, - { "addr": "0x500d82e12274fc0f069a76fa9b8500047579e5b7", "balance": 73000000000000000000 }, - { "addr": "0x0fcf721391d08978575d9a14199ff45d53c9c03a", "balance": 20000000000000000000 }, - { "addr": "0xa95902d5e4d96ffa124f4b77309a6d4aaf025716", "balance": 5000000000000000000 }, - { "addr": "0x87d8ce625a784cd592c22c6c8d8acb45b554a2cd", "balance": 27599860000000000000000 }, - { "addr": "0x449e68083d8469db52f2174c7fd80437dd15122d", "balance": 73000000000000000000 }, - { "addr": "0xb9e5ac1d910827b3bb1898f57cccb922c98465e4", "balance": 24344010000000000000000 }, - { "addr": "0x0c3dfac526daaea2bb5c04c9a220a7fb05be0bf2", "balance": 33839000000000000000000 }, - { "addr": "0x895f80b9cdffa7af1d68de4aee1c34c4238f7adb", "balance": 273000000000000000000 }, - { "addr": "0x7f3668c32b266128f2f7a11e9af526ff173b1f90", "balance": 73000000000000000000 }, - { "addr": "0xc8943a4546bc35a8ea77a9639ae39958dcb7920b", "balance": 200000000000000000000 }, - { "addr": "0x925a54e81827b33e5648b3b4aa0df3913063cb34", "balance": 5000000000000000000 }, - { "addr": "0x1d12ab1500648fa1aa3c37b3bb61449c4d8ddf55", "balance": 2000000000000000000 }, - { "addr": "0xf15cc35a2c94173e5de74e9d7cc73dcb3bca2208", "balance": 73000000000000000000 }, - { "addr": "0xdf8efb8a522561ea9bd8c55874dca4536ee5c618", "balance": 353500000000000000 }, - { "addr": "0x76965332832d21e2b818933449ac45b47487e3b1", "balance": 12011940000000000000000 }, - { "addr": "0x19a9e14e033bc8969a484ae566a0320fc593c00a", "balance": 48001000000000000000000 }, - { "addr": "0x07483f18f45c7691cb4fa4035e6a6a81e02fde3c", "balance": 200000000000000000000 }, - { "addr": "0x689c56aef474df92d44a1b70850f808488f9769c", "balance": 37562229851148020000000000 }, - { "addr": "0x256338c134fbe9f3ab3071394eba0333b6b036b6", "balance": 200000000000000000000 }, - { "addr": "0x700054097be4da89733406fc9067ffe943a399de", "balance": 400000000000000000000 }, - { "addr": "0x277d5e8ded652d4bfec420c7d3cea55bf9462d9d", "balance": 1000000000000000000000 }, - { "addr": "0xddc29e07f53d7fd17c73bf81c8073daa41ab2838", "balance": 1585218160000000000000 }, - { "addr": "0x9f776ccbc53b99aae36b8f77d8ec350424708b98", "balance": 200000000000000000000 }, - { "addr": "0xcafdc692a94069c66b213511934c2332ae3217e8", "balance": 40799790000000000000000 }, - { "addr": "0x366d2079bb4f79fc4f260cace0f2b99ee26b74bc", "balance": 5000000000000000000 }, - { "addr": "0x3aa1f4fb314e2316478f16d653f2b089ca7d530d", "balance": 5000000000000000000 }, - { "addr": "0xfe06e7212068650987a7f5b520b182ea177d0ae0", "balance": 1000000000000000000 }, - { "addr": "0xe014f7b0baec96d94d8fd93012ab711e35a3a62c", "balance": 200000000000000000000 }, - { "addr": "0xa844b5dcd19fa1ab4f0f7e65021feb0c2dc007bb", "balance": 83999000000000000000000 }, - { "addr": "0x37b40f0bacb0cb22eea73487c5e15d99a788d8c4", "balance": 173499200000000000000 }, - { "addr": "0xd9032d7d8cbec094b6ac629cda5aab429771044c", "balance": 200000000000000000000 }, - { "addr": "0xec0ccaa4f78657049800ef1e52331874e579a682", "balance": 200000000000000000000 }, - { "addr": "0x7400425e43ce12cd5cc12dd0be0f538878fc025b", "balance": 200000000000000000000 }, - { "addr": "0xe49e7f7ee60203214fdf8b5bd79de44ccbac7e10", "balance": 200000000000000000000 }, - { "addr": "0xc4f689d4caac442ae76da8d296e53bdd36800ab0", "balance": 100000000000000000000000 }, - { "addr": "0xc4746440281496cdaa419eaa4d1c18053280e6db", "balance": 40000000000000000000 }, - { "addr": "0x91badb37025544ad9b47ce68178552e63c58c0ce", "balance": 10000000000000000000 }, - { "addr": "0x43ddb1d8d48da0dfcf0faed82851c25095565f17", "balance": 5000000000000000000 }, - { "addr": "0x69bb4dc67a0a00fbca7fb385adc91c93e232b870", "balance": 10000000000000000000 }, - { "addr": "0x7ad593173924edf3a89875868cc306a7a60e709b", "balance": 200000000000000000000 }, - { "addr": "0x98a0b2ae8e47d243ebfa8d3ddba23b21f321940e", "balance": 173499200000000000000 }, - { "addr": "0x760922bc3d34b4ac07b9467838df399279b97b15", "balance": 5000000000000000000 }, - { "addr": "0x36a2688e8e60c13b4a124766e598b6169b0e9642", "balance": 23999880000000000000000 }, - { "addr": "0x9dc2832be2aa98713b164eeea1b5579d1fd65f0f", "balance": 73000000000000000000 }, - { "addr": "0xadf6ca08aa489040c5e6063f6df21f9f41546035", "balance": 10000000000000000000 }, - { "addr": "0xd85a6d5030159f06933e92548d423b08f6d0dc6c", "balance": 200000000000000000000 }, - { "addr": "0xfa10596cedaf024ee9d93587d700ca9d36add360", "balance": 24000820000000000000000 }, - { "addr": "0x77c88205812a6fef2402a9fec7e7c4be6f914b3c", "balance": 2600382695200000000000000 }, - { "addr": "0x86eb9d6a41523917c99620c5660b72428db0d37b", "balance": 72002000000000000000000 }, - { "addr": "0x3b0dbedf17bb10ed0f5d231862009e34f0eb0387", "balance": 1909205100000000000000 }, - { "addr": "0xd785705cf884df8e34e3c8fe7d2ba939a60fd8ff", "balance": 5000000000000000000 }, - { "addr": "0x58d7cbd29e8772607e3b963044850e17e3f88612", "balance": 200000000000000000000 }, - { "addr": "0x756b8b8700589e656d9358b92d64bd29dc38e6bc", "balance": 73000000000000000000 }, - { "addr": "0x00cef004a0123b630704bb783d5b6ce9f8f08c20", "balance": 200000000000000000000 }, - { "addr": "0xaa9d8853c23e82bd4ef9f7d71479d7599cdf27ac", "balance": 200000000000000000000 }, - { "addr": "0x15f4d02171b782e78c3f207a77ecad3bd017ff15", "balance": 10000000000000000000 }, - { "addr": "0x0d46d7a5172e32c32949ebf93bbd619abfb4c2d6", "balance": 200000000000000000000 }, - { "addr": "0x5c01d4d00903308006fea25e19ecff29b26a1e27", "balance": 73000000000000000000 }, - { "addr": "0x326d9b6e54bdab12ff492d80667ad1f005ec5412", "balance": 200000000000000000000 }, - { "addr": "0x1e85faae5d1d62b90cc37fef22551c139c7b7171", "balance": 23999880000000000000000 }, - { "addr": "0xe44e0552f27455f51db1df1ce4aa5181ef32ed0b", "balance": 2000000000000000000 }, - { "addr": "0x30e98371c5584bf5cbfac6b16a4907f4b4f823a4", "balance": 5000000000000000000 }, - { "addr": "0x1bc83e672fd7b386eb4bdf1b1aa96eecabdfb2d7", "balance": 73000000000000000000 }, - { "addr": "0xf7d377ebe63fb92b64083ed1b1e8ddd25e9084a8", "balance": 73000000000000000000 }, - { "addr": "0xee159e89c4cee7832d58fce8fd64c2a262bf11fb", "balance": 1785218160000000000000 }, - { "addr": "0x6ed32ffeee88382387d4da1d496de01bf7a537c9", "balance": 870000000000000000 }, - { "addr": "0x8a2d6d9155f0a0049813953061baf58e923644c3", "balance": 173499200000000000000 }, - { "addr": "0xd56486bfc9ba1655f373f0db45efeb86554f2d17", "balance": 48000000000000000000000 }, - { "addr": "0x9dfc193ab5ba4eb5dadc89b2713e8cd72a464baf", "balance": 5000000000000000000 }, - { "addr": "0xf000e00c125d7eac0a7310cf7a1830bc71c37aa3", "balance": 5000000000000000000 }, - { "addr": "0x5fe9cfa5cfecdc333eb102d219b4e77eacde9828", "balance": 173499200000000000000 }, - { "addr": "0x798e3700737988e47ea01cf37cc377e2b76bde4e", "balance": 73000000000000000000 }, - { "addr": "0xaa943064326ad587d6bb41884844e5d16edfdd20", "balance": 73000000000000000000 }, - { "addr": "0x07ada50fc9372d12d45d5db6f80d7c54c13fc435", "balance": 200000000000000000000 }, - { "addr": "0xa290dd03f3e654cafef1223faa4b6402d7b7e40a", "balance": 73000000000000000000 }, - { "addr": "0x388c097a9918a818ac8e9116be5d0d3b952599b7", "balance": 200000000000000000000 }, - { "addr": "0x5100ecaf16881ddd105bf750d3d94fc383a3658a", "balance": 880000000000000000 }, - { "addr": "0x9bcc85c74b3893522fa7eb2cad12acbe037d7726", "balance": 5000000000000000000 }, - { "addr": "0x32e1e501fc48b1fa316e28cc79467bad3b63c411", "balance": 182628571428571428571 }, - { "addr": "0x85d908a2a3d6323089b9ba6f095cd5ff0def734d", "balance": 73000000000000000000 }, - { "addr": "0x685c99aea6502586ebb076c38e69275952f2e207", "balance": 200000000000000000000 }, - { "addr": "0xf7793d27a1b76cdf14db7c83e82c772cf7c92910", "balance": 4946971534590000000000 }, - { "addr": "0x9eba310fc37d9ff8fefd5fea1cec926e9b9f661c", "balance": 5000000000000000000 }, - { "addr": "0x348e6db568ac9dae8cc486b9fe937a47fb4cccb9", "balance": 73000000000000000000 }, - { "addr": "0xb0fe5c3d56c58819ec7b0a0c4c39fc761a34043f", "balance": 5000000000000000000 }, - { "addr": "0xd75bef63f0064dde6b06058c2f1fb01c634d3397", "balance": 73000000000000000000 }, - { "addr": "0xec83717ddba1945004906a09ef8359d63db8dec0", "balance": 200000000000000000000 }, - { "addr": "0x94a4a7691caf0f03cbf8739de1a32711471f84eb", "balance": 173499200000000000000 }, - { "addr": "0x9462b12065d033fd8d6d4852df758e4a4b3d5ccf", "balance": 200000000000000000000 }, - { "addr": "0xe75ca0bb840ebb021b61abb4108575b965936af1", "balance": 200000000000000000000 }, - { "addr": "0x7cf33fa7a5a03c2bad0ec7443d5ea9eca5ca549d", "balance": 73000000000000000000 }, - { "addr": "0x4885a1bae73e16d42a68c48f078b765ae9efcaa3", "balance": 5000000000000000000 }, - { "addr": "0x1fef4234ede807255fcccb7d62614db5c811eafb", "balance": 173499200000000000000 }, - { "addr": "0xd6fdd80bcc12b9a19033907251543829d03e258f", "balance": 73000000000000000000 }, - { "addr": "0x0838b63f70d8fe6d44d52aae85f0c133b26a370c", "balance": 200000000000000000000 }, - { "addr": "0x78bd266a9f1c6cce1734cee4f8b6f711c8054ccf", "balance": 506640000000000000000000 }, - { "addr": "0x150b7a982c250370437325c6c7963669d0c03baa", "balance": 10000000000000000000 }, - { "addr": "0x5f942b0da9bc1c1517c5a0b150e58dffa33f15c8", "balance": 146000000000000000000 }, - { "addr": "0x6c6f6d1e2d48b5381234f9feee0dfba5477dd0ff", "balance": 400000000000000000000 }, - { "addr": "0x430ffc66c3650ab62080d559db129b6ebe3dd8fb", "balance": 73000000000000000000 }, - { "addr": "0x0a5542041d46c8694c770feb228018215db4e821", "balance": 460963400000000000000 }, - { "addr": "0x8da8f50faaab6392dd3aa771f006109b7c22c7b9", "balance": 6154000000000000000000000 }, - { "addr": "0x6ff41bc3471889deac1ba6a86c6ef62ceaa984f2", "balance": 200000000000000000000 }, - { "addr": "0x1cc930aa7165d868373d1f4916ae6ffccd0daa33", "balance": 5000000000000000000 }, - { "addr": "0x4b41fe7ce2ab782fa3e5fb402aa76487b84ec7c9", "balance": 1985218160000000000000 }, - { "addr": "0xedaa36f809e25d83cdf76cf8009864bf4a705f62", "balance": 26933200000000000000000 }, - { "addr": "0xff16e23dabc16c933e46c49a669d33f62f2377c6", "balance": 35000000000000000000 }, - { "addr": "0x85dc50e518a12568cde7b95931687702f56ccb8c", "balance": 200000000000000000000 }, - { "addr": "0x143b8be87404b4e215f28399162c3b317395bc0d", "balance": 23989880000000000000000 }, - { "addr": "0x36c828d9c69f607dbe6e0524a4f550f738f28ec0", "balance": 5000000000000000000 }, - { "addr": "0xb97611d9ec1888fe703c6a2dd19574c10830c763", "balance": 5000000000000000000 }, - { "addr": "0xef0e4d10814279fc64df445fe07ea0cdd060c846", "balance": 20000000000000000000 }, - { "addr": "0x6c50d70e231e4f869f422ebe2b70ae5879852d73", "balance": 73000000000000000000 }, - { "addr": "0x4fd45fc1b433ed71b0bc947f5062c94ccf521c0a", "balance": 5000000000000000000 }, - { "addr": "0x36e4fab07c315ab7db5e586dfd5759f9de0d443e", "balance": 1585218160000000000000 }, - { "addr": "0x18847af9364f7d18612aca502881472bc0a847da", "balance": 10000000000000000000 }, - { "addr": "0x7002fb4dc885f7c50495fdad0f8a19d0f6aa3a84", "balance": 23999880000000000000000 }, - { "addr": "0xcac3db6b43f6b343346e592b6bf716a21829189a", "balance": 10000000000000000000 }, - { "addr": "0x8dcec09a4e87d44858509b4e1c5b93ef7d339274", "balance": 173499200000000000000 }, - { "addr": "0x593f602a471f0b9583441e1c1f0990e2d6234a5c", "balance": 15000000000000000000 }, - { "addr": "0xcdb15c485ad3242d43e55dea315dee1aa9169da0", "balance": 880000000000000000 }, - { "addr": "0x15bb24064d955c00b35843db650e65837337c1c5", "balance": 200000000000000000000 }, - { "addr": "0x184e4c77b09be5b8d52f3832d20ad1d5c2aacf8d", "balance": 10000000000000000000 }, - { "addr": "0xe9150d6eecd7f26bec818b8a4530433de122a8d0", "balance": 11160000000000000000000 }, - { "addr": "0x837780edf5226e368af38920eb0b83af4837f132", "balance": 200000000000000000000 }, - { "addr": "0x1d332cabd27b8f036a204240a8f1548175c0355d", "balance": 73000000000000000000 }, - { "addr": "0xb0e0b7d7e1c10c5177b90135d6f986dbab2bad5e", "balance": 73000000000000000000 }, - { "addr": "0x0055cd5f017027d10adf4f13332181e6d8d886bb", "balance": 166640000000000000000000 }, - { "addr": "0xe4567f511afe25af253842a6c330d92108df92f3", "balance": 1585218160000000000000 }, - { "addr": "0x9dec1b16c7c0f0a2e8ac098e585000e015f670e5", "balance": 23999880000000000000000 }, - { "addr": "0xa42a59456891c3efdb10f9175cd43e2f9b997d3b", "balance": 24479870000000000000000 }, - { "addr": "0x369da92dfc5057898f71f12d4c4e34f032605966", "balance": 5000000000000000000 }, - { "addr": "0xfc224a90c1766bf58968f7b794a8744fe9c704f1", "balance": 73000000000000000000 }, - { "addr": "0xaf4b3c66df0f73db5de1e20926d365f074f9bbbc", "balance": 5000000000000000000 }, - { "addr": "0x75e7ff18f6b1f80c07accc809e15298836b8a793", "balance": 200000000000000000000 }, - { "addr": "0x7bb0d3b246c84719cd347ececd0316c6fa3267e0", "balance": 5000000000000000000 }, - { "addr": "0xf88eb5bd3c2a24c8746afc3a89ab0fa114a71549", "balance": 15235043144029920000000000 }, - { "addr": "0xefd36c9286357d0b3973fa5dec528e8d9b0a7c1f", "balance": 73000000000000000000 }, - { "addr": "0x21db3421b51c6a160e8dbb3c7a0801bc8a7112d4", "balance": 173499200000000000000 }, - { "addr": "0x94d99f50f08fe740506266b7c9c9efe399194da2", "balance": 20000000000000000000 }, - { "addr": "0xa9f1e08e6f730b61eae43bae61b12618a99f48c1", "balance": 5000000000000000000 }, - { "addr": "0x4793c32ec786faf29d6712b37c75b27d54833fda", "balance": 5000000000000000000 }, - { "addr": "0x9b4e193eaa8c35fac121d3bceaf39199bbe3958b", "balance": 5000000000000000000 }, - { "addr": "0xe885b4d4392b2979d96a055201f110c2503eae54", "balance": 520497600000000000000 }, - { "addr": "0xfcf8ceeefdbd3929af23f96434b81755b449c69f", "balance": 73000000000000000000 }, - { "addr": "0x86113e746e8b54b13039882fd126597802b20e69", "balance": 73000000000000000000 }, - { "addr": "0xc36f844a056337b6c4f70653cae3f9feb118ec64", "balance": 1585218160000000000000 }, - { "addr": "0xb32c98f77ef8d898a01df771a72843b6a4762080", "balance": 200000000000000000000 }, - { "addr": "0xce62697dc32030483c1f2eadb572ca4670eb654f", "balance": 200000000000000000000 }, - { "addr": "0x0c0176b86c9321ec54565791ac60c06d9f7886ed", "balance": 40000000000000000000 }, - { "addr": "0x87b422d166adccdf614fdad15175fdcdaf98fcb9", "balance": 23999880000000000000000 }, - { "addr": "0x08bb31a3970156425e0e9f8ebc4879a85675009e", "balance": 200000000000000000000 }, - { "addr": "0xaaf8612ec4437350619c04c7254df45b0b9b62b9", "balance": 200000000000000000000 }, - { "addr": "0xb84aefccacbbe8405cf72e523882f97e897ee25d", "balance": 200000000000000000000 }, - { "addr": "0x8dcb7726227c3798439c9d0e9fcfd2784f63a894", "balance": 5000000000000000000 }, - { "addr": "0x7778130950db07487461fb969a8cf8612788884c", "balance": 10000000000000000000 }, - { "addr": "0xd0a928488f467dd1b474ff4ae70cd1e90301efee", "balance": 200000000000000000000 }, - { "addr": "0x1ef750856cfeef0e648f7586b301d8b5d498e634", "balance": 1600000000000000000000 }, - { "addr": "0x76ffde2c2c683d3c300f45e14a5ccd769cbcd4dc", "balance": 20000000000000000000 }, - { "addr": "0xaf87e99206a022471f6e15dd0c67788192f16cd5", "balance": 73000000000000000000 }, - { "addr": "0xdedd3fb709ccf3ecc73979432300b0be883ee2ce", "balance": 5000000000000000000 }, - { "addr": "0xfa3fc640518c0299cc9fb4407947d32cc6288e1b", "balance": 750000000000000000 }, - { "addr": "0x76cc139ed34a385337d30d3e9c230b1f269929e6", "balance": 200000000000000000000 }, - { "addr": "0xcb0acdcf97232a2f1bc1068030ee02b854791e59", "balance": 200000000000000000000 }, - { "addr": "0xa937aee24089e84d5a0c788c8196bc199413f105", "balance": 10000000000000000000 }, - { "addr": "0x56799633d1e779e7ea0b7c24de3e8f30f408dce3", "balance": 73000000000000000000 }, - { "addr": "0x22da9bb26c31a36912c4e64ef326fcd618dddb73", "balance": 35999820000000000000000 }, - { "addr": "0x463f344bf4d02a1b0965ff64724dbed0c2d8a670", "balance": 5000000000000000000 }, - { "addr": "0x6b0720340e9b942f3d05ce70b5f18ddfa944a8fd", "balance": 1000000000000000000 }, - { "addr": "0x4d20b39af2ee7255b8dd56494171f7a9f3187da3", "balance": 73000000000000000000 }, - { "addr": "0xef9d710a8b3a4c99c3974a52c0377da6389ec270", "balance": 400000000000000000000 }, - { "addr": "0x799acd62d82f7220eafd7a68ccecdf67ffe51089", "balance": 799620000000000000000000 }, - { "addr": "0xb63a8e4b75a8ed24887e28ea9ce7efaaa2ab8b19", "balance": 1000000000000000000000 }, - { "addr": "0x2c1b162d62952fd785d4f9ea348fbde4a02b82a7", "balance": 200000000000000000000 }, - { "addr": "0xe31e5f6a30b7f61f26b959a3d5217c151c955481", "balance": 72001000000000000000000 }, - { "addr": "0xfb06da68e326210b9548a679316657e105ee947d", "balance": 73000000000000000000 }, - { "addr": "0xfe43fb0bfa84f659b5bd695b1a6b5d8828aec047", "balance": 5000000000000000000 }, - { "addr": "0xd0dbf1ebd476fc31499d641e8d442b37f9dbba41", "balance": 73000000000000000000 }, - { "addr": "0x1eb527ce74340f7bed0bd8f29bf9c39864f778f5", "balance": 20000000000000000000 }, - { "addr": "0xadee93ddeee890eb33edc3224d69cea8f4d596d8", "balance": 73000000000000000000 }, - { "addr": "0x54a8ce71aa7346b4ef5cae8938b33efc2deb31e0", "balance": 880000000000000000 }, - { "addr": "0x786d3fed1d8a5f99a83ca3925d0dccb8db48900f", "balance": 73000000000000000000 }, - { "addr": "0xc18406ca0a0923e05eb5954510f6b6047013fc2a", "balance": 73000000000000000000 }, - { "addr": "0x14b889b25e70f60d8dc0aa5f10c83680add61351", "balance": 200000000000000000000 }, - { "addr": "0x72b0087fc05294a64bcf4dcdc3717be78badcec5", "balance": 73000000000000000000 }, - { "addr": "0xa16975da831ddbfa745ac38468750fc8529c73f0", "balance": 73000000000000000000 }, - { "addr": "0xca15d6345704c189e8e44d84fe9578255a218e36", "balance": 73000000000000000000 }, - { "addr": "0x8b7389443191a8dea2ddb6c0e99d3d8dff19b169", "balance": 73000000000000000000 }, - { "addr": "0xf4f8144a4252abef2079cc9bd6a77d5bd74c730f", "balance": 5000000000000000000 }, - { "addr": "0xb8f7cc93318824cbe4bd2348c376241300d1d035", "balance": 253327000000000000000000 }, - { "addr": "0xb598724885f3d057e9396e3a1a1c381a6dde49f7", "balance": 73000000000000000000 }, - { "addr": "0x1c7fd8b052eb14033178a33c9aa243bc65c88135", "balance": 3963185000000000000000000 }, - { "addr": "0xc04c7d276fccc11e714d247dad12c399be857585", "balance": 173499200000000000000 }, - { "addr": "0x4f1a36f56bccaa50e1c499422f42345552d29193", "balance": 5000000000000000000 }, - { "addr": "0x7c058e0421d61e65c8af0915432f8292df9c575b", "balance": 16400000000000000000000 }, - { "addr": "0xefbd0fe79b7fe3b73a811f7e59a6bdfbf3400ecc", "balance": 5000000000000000000 }, - { "addr": "0x0681d729ddbac66de28f0df109e75c5a779de195", "balance": 20000000000000000000 }, - { "addr": "0xe42dd16cc8480bc0f055130238dd2ecdef7dd236", "balance": 1000000000000000000000 }, - { "addr": "0x5042c1be024ee0bdc3b01773a8c00485da6306a2", "balance": 597980000000000000000000 }, - { "addr": "0x1e229fde47b25fe41c19a5154f0f9beeb58e1120", "balance": 5000000000000000000 }, - { "addr": "0x3bc776363e799333be931efcfa54db1704654946", "balance": 200000000000000000000 }, - { "addr": "0x690d95cc68ef0324519fe623279ffa9f300abfce", "balance": 173499200000000000000 }, - { "addr": "0xcc8356660c19522434b049070c9c7ba41f25f4ca", "balance": 5000000000000000000 }, - { "addr": "0xa33c8e042a83b24eb22f52b01143844701966fcb", "balance": 50000000000000000000 }, - { "addr": "0x23eac1d05924badb6b68d10f19c837a41e96fe33", "balance": 10000000000000000000 }, - { "addr": "0x1f9f86a478fa041c303297475c1318d98eaeeae5", "balance": 20000000000000000000000000 }, - { "addr": "0x533bf7ed4235725b4fe363c7235d3b0280d149ac", "balance": 173499200000000000000 }, - { "addr": "0x02521eb18905ee6300554fab6da30038b7130c40", "balance": 200000000000000000000 }, - { "addr": "0xd2e71d836e9e97c14696e4dce440cdfdb8ac083d", "balance": 73000000000000000000 }, - { "addr": "0xb65fdab0999b90e5d82b615c30fa9054a389e8cc", "balance": 73000000000000000000 }, - { "addr": "0x9dcba3a1eafd3f1b47da2ab8a68c348e85dee0be", "balance": 5000000000000000000 }, - { "addr": "0xbaac685e59ba94f8d3e72beb063dac0cf55da226", "balance": 73000000000000000000 }, - { "addr": "0x3cebb663c64abe7575392c08045c78d5648cb77a", "balance": 182628571428571428571 }, - { "addr": "0x1662801f0b91504fd3162b68f998a08f550594e6", "balance": 20000000000000000000 }, - { "addr": "0xb5ed2c3e75a5dfb786829bb81666346f304398cd", "balance": 200000000000000000000 }, - { "addr": "0x30d0c2c02229adbe7a49469fb44ed7da836f8dd4", "balance": 173499200000000000000 }, - { "addr": "0xa21b06f78cbcbc7fdc31d5738bda1f4ad8f6b109", "balance": 53519720000000000000000 }, - { "addr": "0x16d2be4942cc6374f47caf564fda1e14724c1d48", "balance": 10000000000000000000 }, - { "addr": "0xae44f22641e2d567d7ea467e619cc9301667de10", "balance": 5000000000000000000 }, - { "addr": "0xff4f310b4e5d340a715af5e50f62bb05f85f507a", "balance": 10000000000000000000 }, - { "addr": "0x2dc2b93e3b2f2f129c00c41ce2fa79329a4dc9c7", "balance": 20000000000000000000 }, - { "addr": "0x1682f120f22d994dfde4d7cfc63985f062886aee", "balance": 17704193400000000000000 }, - { "addr": "0x9c3c67eaf3c22ff92d6ae45eb782188b2a3fed32", "balance": 73000000000000000000 }, - { "addr": "0x7f762c128e89e9656708824d39ea5cb474f2241a", "balance": 71999630000000000000000 }, - { "addr": "0x309d8bb1519add75d0b478e9d987c168b5157275", "balance": 150000000000000000000000 }, - { "addr": "0x4ac810bdfee5fbff04c329a91b097766c7d4d9b9", "balance": 5000000000000000000 }, - { "addr": "0xe8c88ad5207a33ac3481d179f0b581abb8adec96", "balance": 24699210000000000000000 }, - { "addr": "0x3603af6656bb7ede331e6285e6a90f74b95b4c51", "balance": 5000000000000000000 }, - { "addr": "0x2136072b5ab0626eb41e1e1173d1a738b609ba59", "balance": 20000000000000000000 }, - { "addr": "0x026f677e9deb81a435213bc23cbe70cea7eda19f", "balance": 23999880000000000000000 }, - { "addr": "0xa448fde20ed363ff71e398a8855cf9b040541e38", "balance": 24239880000000000000000 }, - { "addr": "0x096ef4fdc51bf33b9d8e94e0d145e067d11cacb3", "balance": 45000000000000000000 }, - { "addr": "0x398c491a8b4e4cc9d5b90a56ae42747493353e1b", "balance": 1785218160000000000000 }, - { "addr": "0xdf95a7dfe3dd1f06e5168bd6a0d60ca533a3a82c", "balance": 73000000000000000000 }, - { "addr": "0xeb63f6a02db2138ec54716f3b817e0353e22f047", "balance": 200000000000000000000 }, - { "addr": "0xff33517c9c5cd3f6050372671d62e2ca0d4319fc", "balance": 20000000000000000000 }, - { "addr": "0x944372420cd81a53e63867f8b00c39a04df11c05", "balance": 73000000000000000000 }, - { "addr": "0x2c9a301698fe29a5fad50e65f4c227e258f2b9d2", "balance": 173499200000000000000 }, - { "addr": "0x676aed026d8a257d8c0f7fd58d9fe2d439c043c2", "balance": 73000000000000000000 }, - { "addr": "0x317d96e78293a8559146205c221e37f8ff5034ef", "balance": 5000000000000000000 }, - { "addr": "0xaf2ab3a132ec5289788d9a397374780de0d16638", "balance": 126700000000000000000000 }, - { "addr": "0x75bf2a7439f95923227ea6f854964dddfd39260c", "balance": 40000000000000000000 }, - { "addr": "0x9bb49ace464e11f06a3c25bda9e33f3aceba30ee", "balance": 5000000000000000000 }, - { "addr": "0xd5b7de757b0950da81e88e1420227ee413e90592", "balance": 1585218160000000000000 }, - { "addr": "0xa86d436ca76de15a6629e07ad455d0a3439a573c", "balance": 200000000000000000000 }, - { "addr": "0x6e76fa4477f4dedd46e4fdd7bc6295b86848814c", "balance": 73000000000000000000 }, - { "addr": "0x2d1aed74988b65283b8c0a30fd1e71e62fb9712c", "balance": 200000000000000000000 }, - { "addr": "0x72e07d61d8ddf3d3cde8311377aae0c4241da4c2", "balance": 73000000000000000000 }, - { "addr": "0x0a36afe2a5325fd86c614d1db73437d1dc193b21", "balance": 200000000000000000000 }, - { "addr": "0x1bebb4ab3cc099f2fdf95042fac168d7392b6a34", "balance": 73000000000000000000 }, - { "addr": "0x5eb8a5e1aa1a553c0357d28a73e09f835a013ced", "balance": 73000000000000000000 }, - { "addr": "0x9799bd7415b2c592aeb2e9ec4bdb02ba2dafe211", "balance": 62944352579431920000000000 }, - { "addr": "0xd93e2c710b4c9ebf2a91bc0f8ba34b677873ecf5", "balance": 5000000000000000000 }, - { "addr": "0x640d8dbde1cd3f4ced5c52ed9ff24629a083a702", "balance": 200000000000000000000 }, - { "addr": "0xb285f7ec37a730adfc72924cd6f85e3e5f66cc7b", "balance": 1585218160000000000000 }, - { "addr": "0xa5af6fb70cdd70c485c8ac888405f86b53e8fd95", "balance": 30000000000000000 }, - { "addr": "0x328e6cd45c16f164fe58609e802c88c4d3cb9360", "balance": 3299240000000000000000 }, - { "addr": "0xfdcea5ac589af6a2997f5b2f7dadfe61f505b744", "balance": 173499200000000000000 }, - { "addr": "0xc24ef04a7cda3c74ed528f721b6b94fa93c98c81", "balance": 73000000000000000000 }, - { "addr": "0xf4567612fbfd8a07384ffb972c330c28bc61a433", "balance": 200000000000000000000 }, - { "addr": "0xe0d386a1db7a09a791db456aa5bb7a0572d71a36", "balance": 73000000000000000000 }, - { "addr": "0xf4208a081307d44411102c8f6a7e5c1db139d99d", "balance": 5000000000000000000 }, - { "addr": "0x61cd863f537d658f866782e24a97a61df55b39d9", "balance": 120000000000000000000 }, - { "addr": "0x13b096568acad7ffc72f3c28f445aa46a5acc2bc", "balance": 200000000000000000000 }, - { "addr": "0x873106b00ed25bd11d408966f6ef3b0180283025", "balance": 73000000000000000000 }, - { "addr": "0x4f13f0848784d00cc41c640f00fbe501ad8e6cfa", "balance": 73000000000000000000 }, - { "addr": "0xf1e772e14586228f4ed155438060834e86e6e8eb", "balance": 73000000000000000000 }, - { "addr": "0xc5bdfb091f98b3b8013096461c1b9bdf0e43fd24", "balance": 200000000000000000000 }, - { "addr": "0x63a5d86ce4d009601eebc81f4345bf6e3f7d1472", "balance": 73000000000000000000 }, - { "addr": "0x2a01be44b6b3cab8f6b4ca594695cfed9958b6bd", "balance": 830000000000000000 }, - { "addr": "0xe12efeb304175447f27395c0acbee82701584014", "balance": 173499200000000000000 }, - { "addr": "0x36ff8323bd00f2047706c4204e3a0c2e388fa35b", "balance": 200000000000000000000 }, - { "addr": "0x52d8391005a107efa8e1bb3cedfa143e7ff7fd94", "balance": 76799610000000000000000 }, - { "addr": "0x848ef0faf92f016060d4bb5ef58be04865bf3862", "balance": 23999000000000000000000 }, - { "addr": "0x92ca80c8035dbf01a4fdecdaa570885e69334046", "balance": 5000000000000000000 }, - { "addr": "0xecc03538d9af264725dabd36417441f7971c91f6", "balance": 1585218160000000000000 }, - { "addr": "0x250851cf74aec31ac78d08e40ae0a384c65e2184", "balance": 20000000000000000000 }, - { "addr": "0x7b56ad40f2bc6fc774a5abcd146e8e162f7cf9e3", "balance": 73000000000000000000 }, - { "addr": "0xb49c68aeeb58ea6a0e5fa6a11a62c26a5bcf0dc6", "balance": 200000000000000000000 }, - { "addr": "0xbf30af6da1c247edcee3a775f9b6db714e30d0ec", "balance": 73000000000000000000 }, - { "addr": "0x9512b8c1b63c9893258920b5998134a1261db85d", "balance": 1000000000000000000000 }, - { "addr": "0x6086df629af971247fa313106cceb1212b887579", "balance": 73000000000000000000 }, - { "addr": "0x2231988f4ce39a69270f25604b3afa1ca532de5d", "balance": 25000000000000000000 }, - { "addr": "0xd6d9de9edf8cb07795266434bdcf44c85776ab11", "balance": 5000000000000000000 }, - { "addr": "0xc48f7ae72ff1edb5bcf4273eea308c3a4674ddce", "balance": 37199000000000000000000 }, - { "addr": "0x5dfc939a45a3f80aba58a09caa52a69ebdcbad36", "balance": 5000000000000000000 }, - { "addr": "0x4baf855f7817232d818781880d0574c8458cc0e5", "balance": 20000000000000000000 }, - { "addr": "0x03eec6965e7ffe5e68d4bba060a98997966fe16a", "balance": 218160000000000000 }, - { "addr": "0xb885979ffbd8cf4919c50f59bc0fb3405997315a", "balance": 2250000000000000000000000 }, - { "addr": "0x3a11eb653bffe05005a8581c49d6aaa3c932f276", "balance": 5000000000000000000 }, - { "addr": "0xdc1c439c554dc811b16eb85ad893ef373179327b", "balance": 73000000000000000000 }, - { "addr": "0x6bab80f5094c2f91e4f50ef72dde609b98c21729", "balance": 73000000000000000000 }, - { "addr": "0xaa6ffa422d01715756397d0a3d4785f0ee7550ce", "balance": 23999880000000000000000 }, - { "addr": "0x99859f377694d040c35a5a96d7e5ba8d631125a3", "balance": 182628571428571428571 }, - { "addr": "0xed845eec3b0f8aeabbc92f0df276fb2fb465354c", "balance": 50000000000000000000 }, - { "addr": "0x6901ec8e280b14f359c34bcbd33421a66ba0a71c", "balance": 1399860000000000000000 }, - { "addr": "0x03f37a3df2f79ce71d4a2beb157a26aa09fd4b18", "balance": 200000000000000000000 }, - { "addr": "0x68c9c3b623b928449788b6f766e3fcf5712df170", "balance": 24000000000000000000000 }, - { "addr": "0x8b038da89c7057a840a9d93dbb010780e9469aec", "balance": 5000000000000000000 }, - { "addr": "0xb0a881a227954baf0dad857b2d2f8406726181cd", "balance": 200000000000000000000 }, - { "addr": "0xb9adda0b19daad909e58f83c4f9a5029230ac717", "balance": 200000000000000000000 }, - { "addr": "0x634221eb8d6c07312f2935dceae5b586f5f104ca", "balance": 5000000000000000000 }, - { "addr": "0xc359edd0413e6e30b30595bb6693db383a536fc6", "balance": 200000000000000000000 }, - { "addr": "0x35353d1ea22f6d1db8aa60ede0fc49ecf2ad79b2", "balance": 5000000000000000000 }, - { "addr": "0x1bf8d9af18176d958be75397442dc739b073dd05", "balance": 5000000000000000000 }, - { "addr": "0xeb5e3707e2c3f406603fa303f6eedf05371c9621", "balance": 73000000000000000000 }, - { "addr": "0x910247983eee4457cb48c15125283a9a28c407e1", "balance": 173499200000000000000 }, - { "addr": "0x8ed7ef1dff89b3cc2191a9b3365402b47f85615c", "balance": 200000000000000000000 }, - { "addr": "0xa16137f67dd53461a5d6ee93fa4b78b5b535a90c", "balance": 73000000000000000000 }, - { "addr": "0x9bb8839ac0c7f186db112355e3835b85bfc03dcf", "balance": 73000000000000000000 }, - { "addr": "0x7341a2a8275e8e155c823421d349a19b3a7fe8e5", "balance": 5000000000000000000 }, - { "addr": "0xa0f515275c5487eaee77f0e7f7aff350b8b4fda4", "balance": 5000000000000000000 }, - { "addr": "0xc89970afa3971b43b9a22e35f3d08f0a5c50dcea", "balance": 5000000000000000000 }, - { "addr": "0x163024155f438bcbde11d0811dfd7bd551bafed3", "balance": 5000000000000000000 }, - { "addr": "0xb6cb7f3af7d50630fbf69a1a71052a1baf924e5e", "balance": 200000000000000000000 }, - { "addr": "0xded00fcfeaf04f92b5a7c9821d74485e0e19eadf", "balance": 5000000000000000000 }, - { "addr": "0xf3efe116eabcf6eb394d83eac76959ad19b8ec01", "balance": 173499200000000000000 }, - { "addr": "0x93583643da0d521dff5dd5c85612265a92ad59bc", "balance": 188000000000000000000 }, - { "addr": "0xd974132b2738bf446b6c81d8f5fa5bd78be756a6", "balance": 200000000000000000000 }, - { "addr": "0xf569600b75c4dda5e80eaac61e38c374ce7688af", "balance": 73000000000000000000 }, - { "addr": "0x66076811d58c2a23d95d220ed0c761edffd4e172", "balance": 73000000000000000000 }, - { "addr": "0xe89c9cd6f72bfde7bd34b733d1f9d25504a7530d", "balance": 125999360000000000000000 }, - { "addr": "0xc92d9ca5245325a48612245e82a112cbd85be700", "balance": 73000000000000000000 }, - { "addr": "0xb8e7416f12565454eef5dd003fa475baa39bd21f", "balance": 23999880000000000000000 }, - { "addr": "0x84e70e4b72c4a07b848cb56f4804a5616ab33c4d", "balance": 23999880000000000000000 }, - { "addr": "0xd8b4e96b33af4458e70fade5e735b915393bc70e", "balance": 10000000000000000000 }, - { "addr": "0x8c67213ecb0c93cadd85b317b94d6bebdb85f4c4", "balance": 73000000000000000000 }, - { "addr": "0xfb28c5c80fa8323cb8e026e392a2e9bbc273f02f", "balance": 5000000000000000000 }, - { "addr": "0x3af8e3db004c3a2c5fdd86a3a8d7224ef223dad5", "balance": 5000000000000000000 }, - { "addr": "0x5574341cc7f823f08faddb5774464ba9aa725d87", "balance": 5000000000000000000 }, - { "addr": "0xe0281922241bf255c80b8bd3354496a26da5171c", "balance": 50230000000000000000000 }, - { "addr": "0x8d85d4cce711c74d195c4fe92e02faa6865b98a0", "balance": 73000000000000000000 }, - { "addr": "0x938fe8070864c84c41053711334fc19b92a99249", "balance": 73000000000000000000 }, - { "addr": "0xbcf2268edf70891df07bef547e1e9db58c62c105", "balance": 200000000000000000000 }, - { "addr": "0x5aac6f457f18a41fe784db5e4d441fbcc39a57c8", "balance": 200000000000000000000 }, - { "addr": "0x0718089b81ae8d0e66259d372fdc68eeec7cb653", "balance": 173499200000000000000 }, - { "addr": "0x1b01288bf2a3e6a168c47896ea602dabc7e9ba80", "balance": 5000000000000000000 }, - { "addr": "0x55281f0f213107c34f1204ae0936a024c2a41486", "balance": 96000000000000000000000 }, - { "addr": "0x63b327f133a985e71ae5153f4f18b74125f27187", "balance": 12001820000000000000000 }, - { "addr": "0x8521d5ac12e8ecc596bf3cc7d724c4d2f2ac8337", "balance": 200000000000000000000 }, - { "addr": "0x5333ae2c55f2587ebc38f1a0b8a4242740327ba0", "balance": 5000000000000000000 }, - { "addr": "0xf71e6006a4fb3cb34a1bdac6865c233a6ae6e203", "balance": 273000000000000000000 }, - { "addr": "0x2baa335e6db2a38940e9d0e04c100f1067b65e39", "balance": 173499200000000000000 }, - { "addr": "0xa48a577594bc2fce4e742d826931a2f20daba271", "balance": 200000000000000000000 }, - { "addr": "0x69e4837ed797df973b3422a70810404f75eb938a", "balance": 5000000000000000000 }, - { "addr": "0x5dc33f4a5a150aaa903799fa4736d555f55be1e0", "balance": 50000000000000000000 }, - { "addr": "0x6e523bfc6a2573d42ecf4d2776d82c1dd46bbae0", "balance": 173499200000000000000 }, - { "addr": "0x43197c928896f4e11db1d16812e0f981138fb3d3", "balance": 35999820000000000000000 }, - { "addr": "0xbb83c7775484fc51272b43fa73d0be48e782eb62", "balance": 75040040000000000000000 }, - { "addr": "0x014a2740a2f16a5da1e5290e7d8157ff6899326c", "balance": 5000000000000000000 }, - { "addr": "0x94aab4f907a61a77d7e6ae10842d443f71a365f6", "balance": 5000000000000000000 }, - { "addr": "0x71ba84a38e0d45277e78d68be513de767c71c314", "balance": 1585218160000000000000 }, - { "addr": "0x5dfd24c7e7cacb042622688a4ea35e459c457f8f", "balance": 146000000000000000000 }, - { "addr": "0x8e1acd3c719030bd7bf07954dcbdeb596bddde4d", "balance": 1000000000000000000000 }, - { "addr": "0x058d984b1be350a16797b88edd6c090e41028ed0", "balance": 24000610000000000000000 }, - { "addr": "0x5db2be76a0e707ffda6f91cc38aca68c4177399a", "balance": 218160000000000000 }, - { "addr": "0x833e980d00e72618936d29aac2f32a4fcfff4f52", "balance": 5000000000000000000 }, - { "addr": "0x5d33ee6e3109c204a8597c43ea4949dc7977eb7e", "balance": 173499200000000000000 }, - { "addr": "0x13e256112a6d491bb36fbdf2e25601f7c23ee34e", "balance": 200000000000000000000 }, - { "addr": "0x813fc2d051443e50fdbcd739b8a18d08e3b62c30", "balance": 200000000000000000000 }, - { "addr": "0xc0528554399367f6db401c5f464aa2daa1217cd9", "balance": 23999880000000000000000 }, - { "addr": "0x54198a693fd6d9e07e5d0892ad377ce8b519a168", "balance": 173499200000000000000 }, - { "addr": "0xcbc0600ca2093e1e2e5356501e104e4fe02d6c50", "balance": 5000000000000000000 }, - { "addr": "0x626e3b2925143bd4ef45e5ec43e5b6c97b01dc4f", "balance": 200000000000000000000 }, - { "addr": "0xf8bdbc4d27ad5ce5e3e28c29edfb684d9a236ec1", "balance": 200000000000000000000 }, - { "addr": "0xd747d0f7d0676c31caf55a7c29e047667d0c8187", "balance": 5000000000000000000 }, - { "addr": "0x93cf56b13bb39bfb43d5ec18097a7da4e6d73018", "balance": 1010250000000000000000 }, - { "addr": "0x3a15bbdd24f1e766aeee3a3a85a3b8ca46605462", "balance": 5000000000000000000 }, - { "addr": "0xabb48afdd13f8fca99698ded1a075e5307c8fc11", "balance": 5000000000000000000 }, - { "addr": "0x3e9c5aed5d2be7d926e9a3f2fa2bc8a57e612f58", "balance": 48000000000000000000000 }, - { "addr": "0x50635bcbd6c5aabe05703aef4e2b813d3f7df201", "balance": 1585218160000000000000 }, - { "addr": "0xe10a1f9707b55031bd7df4b4def30c5c06526803", "balance": 200000000000000000000 }, - { "addr": "0x71bf08b80740a9c01084f973fb05182ebaf14ec6", "balance": 73000000000000000000 }, - { "addr": "0xb4f3c5d47816257912e24d561b9a074fe7262038", "balance": 1585218160000000000000 }, - { "addr": "0x26b5fdcbffa27ce5fee2149eb544f3b26b874ded", "balance": 48000000000000000000000 }, - { "addr": "0x930444fda8d1d132acdd626bf360b1fdba066235", "balance": 200000000000000000000 }, - { "addr": "0xc297a3975b85dd3e757097d800b429d565963322", "balance": 10000000000000000000 }, - { "addr": "0x0b94254d1b57b9d72c5d898472d8902a7f6ad225", "balance": 73000000000000000000 }, - { "addr": "0x5d7bd41e697a333a76aba9974fa81bbbb3d2613e", "balance": 200000000000000000000 }, - { "addr": "0x60de7d8aebb08d9c3003a7872ad057343c6aa79c", "balance": 73000000000000000000 }, - { "addr": "0x6844957459e2227880061f8ec40f586cb722e960", "balance": 73000000000000000000 }, - { "addr": "0xae58f002510f2d4d9c08650b39218c0d52be47be", "balance": 119999000000000000000000 }, - { "addr": "0x0e03e898448e8f7fb0b2eb6991b63e2e9bbd7987", "balance": 48719000000000000000000 }, - { "addr": "0xc78d7fcbcd82c341f9dc92bf9c764ae48505ee7e", "balance": 24719870000000000000000 }, - { "addr": "0xe9ecca37715818971ec479c80087102e406c2b4f", "balance": 200000000000000000000 }, - { "addr": "0xb8168143141e49f9f2033cbef9f6f7dee52f4333", "balance": 26399860000000000000000 }, - { "addr": "0x691829e89567ce49109562859a3f98cd1505b403", "balance": 59519700000000000000000 }, - { "addr": "0x2b00191a182a8aae575733ed1ccbe87840540d93", "balance": 5000000000000000000 }, - { "addr": "0xf115e174e6794a844a50f1392ee0ce44c2a31913", "balance": 10000000000000000000 }, - { "addr": "0x9f94c17bb8fc0c1e1dcb7966c5ef46f1a0d1013e", "balance": 200000000000000000000 }, - { "addr": "0x8d3e95c45f6d285f8339a485a873e329de5d7d07", "balance": 1000078160000000000000 }, - { "addr": "0x5b4b7ecb696da559c480e48341ed6acb9c22f253", "balance": 5000000000000000000 }, - { "addr": "0x3c3072ce3c16d9f4fd4ee8fccd3e8852ee81e25d", "balance": 5000000000000000000 }, - { "addr": "0x90f91351f4027a2463c65708af309aede3fc9b9d", "balance": 200000000000000000000 }, - { "addr": "0x3823541c7599542e8c65e70c6ca30bb4c0bb4502", "balance": 47999750000000000000000 }, - { "addr": "0xca9b20d70b8e5cc10a94f663b0365c7077488d6f", "balance": 24475000000000000000000 }, - { "addr": "0x8990e265b4e699721d58cce651508d4191a3dc7e", "balance": 5000000000000000000 }, - { "addr": "0x67b56f29a74cf0a46b5d9b4aac5e54d4b8cb4adf", "balance": 5000000000000000000 }, - { "addr": "0xc293834c0caa59d10cf71371222d20ca7cd4de15", "balance": 5000000000000000000 }, - { "addr": "0xec54ebd95e87d12b35c9872b59021bc9fd40038c", "balance": 64600000000000000 }, - { "addr": "0x07c7c3e2544e7ca8b0a3944fe6de5831c91d28d4", "balance": 148045506100000000000000 }, - { "addr": "0xdaad0c980633efbb2fcb588730f9965e92d074df", "balance": 252807000000000000000000 }, - { "addr": "0xdf230754fb09cfbec313e7fd3d64986dbe26a07a", "balance": 100000000000000000000 }, - { "addr": "0x7a8bce8ac1959fd07d8642946dc11c94574251ec", "balance": 1000000000000000000000 }, - { "addr": "0x48518d91185752bafec93da192e739ee5b2ad9aa", "balance": 10000000000000000000 }, - { "addr": "0xea291c4d133200abaf87e1243a83bfffe75eeeea", "balance": 173499200000000000000 }, - { "addr": "0x1c06166b65268c35c0c12f6835b769591f979966", "balance": 5000000000000000000 }, - { "addr": "0x91b2414e5e45e01651539deb02bcffcc58495d56", "balance": 218160000000000000 }, - { "addr": "0x4cb6602b926f88b1f95c6133e2f8f08b3fc15e97", "balance": 73000000000000000000 }, - { "addr": "0xcf0ba397c2011ef129a3aeac8cd6836a29046af5", "balance": 73000000000000000000 }, - { "addr": "0x15218c1e31af8660b735e730cac312778f63f785", "balance": 73000000000000000000 }, - { "addr": "0x9a8d72d7ad434962641a7fd72e764f902b696d52", "balance": 1585218160000000000000 }, - { "addr": "0x1bd38a68ed912cdba165393d2b15bd148abbb502", "balance": 73000000000000000000 }, - { "addr": "0xb9e8768e068376d78ec951ed61a528eb6986dae9", "balance": 200000000000000000000 }, - { "addr": "0xb1f1fe48a0b6634d21ed23d8bc6d5dfd67bc4871", "balance": 73000000000000000000 }, - { "addr": "0x5ad82164c7b2fb6ff402dfd971f0ee58103d87e4", "balance": 5000000000000000000 }, - { "addr": "0x6a56d78bf53bce2450a6e067f5f7c8d1cda1f4cf", "balance": 60000000000000 }, - { "addr": "0x1941db35b17deed868819611e183b381747a7d3d", "balance": 200000000000000000000 }, - { "addr": "0x4c8050f43bc5c9e0e0084a81f9f5527eece185d2", "balance": 73000000000000000000 }, - { "addr": "0x615c3ebe01a9be8ffb080a010eaf5fc29785de08", "balance": 5000000000000000000 }, - { "addr": "0x88f64710e0de3fa22a0d9876d3658db941049344", "balance": 200000000000000000000 }, - { "addr": "0x427121878e10710e6d2d9a27427c0b6116c475a5", "balance": 73000000000000000000 }, - { "addr": "0xa9ab1fe3c71d98fcfb6a4cea819069ac65681afb", "balance": 200000000000000000000 }, - { "addr": "0xab47ba09fde8dba58d4d1fcc6195b299529239e9", "balance": 10000000000000000000 }, - { "addr": "0x25830ea233cfaf4766d1fd294f7791b6e4279ba5", "balance": 5000000000000000000 }, - { "addr": "0x1c3748253f0fadc8e76e550f2f60c0d2c51361ca", "balance": 5000000000000000000 }, - { "addr": "0x02d9418146e85874e59717a20dce1107c018b239", "balance": 1585218160000000000000 }, - { "addr": "0x5de795b7300f54cd9936019d73e1a967059ee338", "balance": 173499200000000000000 }, - { "addr": "0x216911bbffaeffda49017ea2f7afe670b016b20b", "balance": 130000000000000000000 }, - { "addr": "0x2eac08b23287c5cfd5155638f6b5a597606e5d94", "balance": 10000000000000000000 }, - { "addr": "0x15c5e901c570e05bd72a072c905a255e9a8a155c", "balance": 10000000000000000000 }, - { "addr": "0xb31a18190b2e4c6b38cb5bb116614c4bc935a125", "balance": 419000000000000000000 }, - { "addr": "0xb9ba01906c59be6b6255dd713bc142d3b8f125de", "balance": 200000000000000000000 }, - { "addr": "0x71a3252f429986a43bde02aadb88c2735294d101", "balance": 200000000000000000000 }, - { "addr": "0xa8b30e5bbab6976e95c53a94e1b2747496fc5d7a", "balance": 73000000000000000000 }, - { "addr": "0xac77d55cab9f412c1a4cd45be724317315cef4ff", "balance": 10000000000000000000 }, - { "addr": "0xd918890ec974bdf7ed739c11084c9124d12724a8", "balance": 5000000000000000000 }, - { "addr": "0x63e5011ff41768e48f281fd93949eb752d7ff626", "balance": 10000000000000000000 }, - { "addr": "0xb13b19bf4937ee802e611144d8a6a547374b4b1f", "balance": 182628571428571428571 }, - { "addr": "0xcded97b1bb891921856e6afa17847df8a201d724", "balance": 1585218160000000000000 }, - { "addr": "0x9507420a6882ff024ea2d2feaf0b4ca0a5301bbe", "balance": 200000000000000000000 }, - { "addr": "0x98747800852c2f808bb0561596a30168e434d271", "balance": 73000000000000000000 }, - { "addr": "0xd7ebc5280548cb99e460c59a040ad236fb642ebc", "balance": 200000000000000000000 }, - { "addr": "0x8d448866f6090889f747bb507eb5eda02ee5e12f", "balance": 10000000000000000000 }, - { "addr": "0x4590e59b856f3426dcd3e62a97fd07e4ec3381b1", "balance": 5000000000000000000 }, - { "addr": "0x942995d5c0cd6dd168b0c5d46803c02cb018e5ea", "balance": 64196000000000000000000 }, - { "addr": "0x4ccb5c927a246561b43b6a4849f055c0643089fd", "balance": 200000000000000000000 }, - { "addr": "0x90f4e7b1e23e893b388a7b1931cfa34a86bf527a", "balance": 200000000000000000000 }, - { "addr": "0xc2b03a053d151fcff57427c89b2c469eae4eba45", "balance": 200000000000000000000 }, - { "addr": "0x07a003aa8c666789ee62037bbd4e7a1e769c6dbd", "balance": 880000000000000000 }, - { "addr": "0x6a56f194ee40ae7d11e78bed8227d2768828cb20", "balance": 5000000000000000000 }, - { "addr": "0xdbdaff3f6b1fa9d3589eb130f478774e29667e1b", "balance": 73000000000000000000 }, - { "addr": "0x551b17429b92c04131dd8f994e40e201a104c57d", "balance": 1000000000000000000000 }, - { "addr": "0x43004f889faeaa009275f49e33805ac695d01cc3", "balance": 73000000000000000000 }, - { "addr": "0xfa756326a39dffd9ad076851970f812b284bd959", "balance": 200000000000000 }, - { "addr": "0xebb1c5d2ff7f26c9f0693e5880bf6bce47a15a10", "balance": 5000000000000000000 }, - { "addr": "0x372a9b5f66d9378b3ee27eb7f3b2f283f5e84e21", "balance": 5000000000000000000 }, - { "addr": "0xa5bebc7d36884d9e2fabf59eaca9580ad9a99005", "balance": 1000001000000000000000000 }, - { "addr": "0xa25cfe540ea3c3c506504769b7bad3685aac975f", "balance": 173499200000000000000 }, - { "addr": "0x1bd1e05801f05ac995b76fbe9450d00014397673", "balance": 5000000000000000000 }, - { "addr": "0x9df6716a16bbc68fd5aea1a106fa6be202579a0b", "balance": 5000000000000000000 }, - { "addr": "0x48137c018cdca89942fab062ada415a79e06ebef", "balance": 311998400000000000000000 }, - { "addr": "0x1a0329eed854b7983b0982b86f6a7f986df20b0d", "balance": 2666600000000000000000000 }, - { "addr": "0x3c2bec93322dcfbc504115db5fbdc610161043e6", "balance": 73000000000000000000 }, - { "addr": "0x6a984ed4090a2211ad34d94e7bcd16c3f5a4074a", "balance": 200000000000000000000 }, - { "addr": "0xe69b9100badb1ac372c6a5507b350fa2459e629d", "balance": 5000000000000000000 }, - { "addr": "0x192c1e55d2a657871e419b676f52fefdd5e9e4a3", "balance": 10000000000000000000 }, - { "addr": "0x61c69cf693143ea453f7667c5022e4ff94993cac", "balance": 5000000000000000000 }, - { "addr": "0x6919d3c0ba0fb6761ccc06d3f63e77948edb28c5", "balance": 10000000000000000000 }, - { "addr": "0x67b94e6d657d363bde378e613859fbea4a86535f", "balance": 73000000000000000000 }, - { "addr": "0xccfac68835bf83cd506b59087be6fbcd27dedd8d", "balance": 65303485000000000000000000 }, - { "addr": "0xc1c6ceac7e5108861964e0c725d7173e6019ffb8", "balance": 810000000000000000 }, - { "addr": "0xbe048055a1d6fcb1bd5030b42afe9a468eb3a750", "balance": 73000000000000000000 }, - { "addr": "0x7262d8f292d6916a4329d22515940e599fba5c0b", "balance": 24295000000000000000000 }, - { "addr": "0xb0a52726911ba4a803bdf14f64916ff811efdc69", "balance": 200000000000000000000 }, - { "addr": "0x8bc427033346be192a24eafff24e5c55d1d86c7a", "balance": 10875000000000000000000000 }, - { "addr": "0x9ce1ba82743f1daf79491a0c0a89e7ad2382af76", "balance": 128075040000000000000000 }, - { "addr": "0x50fedb536ee0d9304ac6beac8068a7413b83b674", "balance": 73000000000000000000 }, - { "addr": "0xb222018516594ca86e04323a4433118025c7bcd6", "balance": 589565072026818500000000 }, - { "addr": "0x42cb9dee113c5bde2a6c0523377e759c2ee543ae", "balance": 43424202000000000000000000 }, - { "addr": "0xeede23cd826726df1a1fc873cd93c9026d45f320", "balance": 5000000000000000000 }, - { "addr": "0x807ab0dc0da63de6021d71fc5871ec9b4f543835", "balance": 10000000000000000000 }, - { "addr": "0xc0e3d0ab095634a6eb8423d698a928e213f41d18", "balance": 95999510000000000000000 }, - { "addr": "0x51b0d457aee5421c530e05700dd708e9d7932363", "balance": 50000000000000000000 }, - { "addr": "0xfe4b2c0ec709352c5956f18ee72e8286ca7da53c", "balance": 1000000000000000000000 }, - { "addr": "0x0b2df5ca8ad7b15a11eec321aa0c633ac2b3ba7f", "balance": 73000000000000000000 }, - { "addr": "0xd48d99a22ec370dd7e465c62c79a9913086e68b4", "balance": 1585218160000000000000 }, - { "addr": "0x165ad90b59dc006964f9685fd8cfc4165936909b", "balance": 200000000000000000000 }, - { "addr": "0x6eb0af204a08d781c29ef167099eaec18bf80a4f", "balance": 1585218160000000000000 }, - { "addr": "0xf211aca7d8413b03321b1b48ac9e81a0999aefd7", "balance": 5000000000000000000 }, - { "addr": "0xca97e3b04431b95bd00badd937d1abe757590ac6", "balance": 860000000000000000 }, - { "addr": "0x221ce2ba101b3672a9935acb44c5f57ce8f8a1fe", "balance": 5000000000000000000 }, - { "addr": "0x8c1edd588f9fcaff3d2d82407f90e2a3725ee4d2", "balance": 49463000000000000000000 }, - { "addr": "0xa53a2e318894f557b6118965f51968d0a83571be", "balance": 5000000000000000000 }, - { "addr": "0x850c3bb0bd06880b3d90a54383c526d0019c5552", "balance": 114000000000000000000000 }, - { "addr": "0x5e7286bcfbeb21ad7e4143247ebe7cd30ac3499e", "balance": 5000000000000000000 }, - { "addr": "0x4ebe77ec26496f59075720734c52a3933251bda8", "balance": 20000000000000000000 }, - { "addr": "0x8d79403307e551cb641a2ebf5d43741604668abe", "balance": 5000000000000000000 }, - { "addr": "0x4fb2b9ad1ab7797ec5488657f0df53f944e45a44", "balance": 3000000000000000000000 }, - { "addr": "0x6d36829ac4af1615e951d9e1914f086759534400", "balance": 200000000000000000000 }, - { "addr": "0x5ea4ba7eed66720fe17bcc6e5c77f667115facf6", "balance": 200000000000000000000 }, - { "addr": "0xf829bb96d62e0027d0be11c543c60c4c894d7c3a", "balance": 5000000000000000000 }, - { "addr": "0x32eb5d5149400391c0ea05cfb9992ae066029d56", "balance": 25000000000000000000 }, - { "addr": "0x19ddf3657e966a774742db56e819fe15ddc992ba", "balance": 200000000000000000000 }, - { "addr": "0x8866f4c5204ca53678e1cf018e9c56e69c5e0016", "balance": 5000000000000000000 }, - { "addr": "0x6e1a5c6aeeb3c5422e1955556c179b0ba6732027", "balance": 5000000000000000000 }, - { "addr": "0xfedf7a1c8358c7fd6209e2e177e54cb413d6f5a1", "balance": 200000000000000000000 }, - { "addr": "0x88c070d77635d5fa54ec0e88dd50232c0b6d3043", "balance": 30000000000000000000 }, - { "addr": "0xe1c0b6796b22b458f338c13c11ff58f96133bad4", "balance": 5000000000000000000 }, - { "addr": "0x86ffb4f768555ce5aa50848efbabd9caac2d667b", "balance": 25199000000000000000000 }, - { "addr": "0x3703ce3bc646fb32f03751532e9e4c21a247a518", "balance": 1776001000000000000000000 }, - { "addr": "0xf4defde5def9426551a13cde13c41db86ae200d2", "balance": 200000000000000000000 }, - { "addr": "0x8824d4f44ef876885a2f9d5ff1c03c930e8eb0d7", "balance": 73000000000000000000 }, - { "addr": "0x2d0929e1ac4e95d46029cb94ff4cbf59614eddfb", "balance": 5000000000000000000 }, - { "addr": "0xd8b4ca05291f23c7cde376df1cb38efeb9708794", "balance": 25000000000000000000 }, - { "addr": "0x24528b6cd27303b2bba7cb1574d48e01530bc692", "balance": 1000000000000000000000 }, - { "addr": "0xccc379ae301e4ad4409c5117e214aa7b1cd80193", "balance": 200000000000000000000 }, - { "addr": "0x69c52c6dcc2be4ccadccbf9c07609b5d6c73766c", "balance": 73000000000000000000 }, - { "addr": "0x2b85f474697f6d5d85d1664bb371e86cce116ad1", "balance": 200000000000000000000 }, - { "addr": "0x1ef0547248297e1a145795b30aefa55dff59bcba", "balance": 400000000000000000000 }, - { "addr": "0xbfcce5ebe8b408ee92c00d60d6ad8f27c6dc6d25", "balance": 186662000000000000000000 }, - { "addr": "0x4ca1e4a1897fec53aad0a75ee74979df71d65fc9", "balance": 10000000000000000000 }, - { "addr": "0x194d1d057a56437e1bbd97d2ddb2c8b32638f45e", "balance": 200000000000000000000 }, - { "addr": "0xebd5dd1b808c5414b59527c5daa046d4c8ee311d", "balance": 73000000000000000000 }, - { "addr": "0x04d8fb7546295fa5ca168fe7411690a6a51c4d03", "balance": 200000000000000000000 }, - { "addr": "0x444f638830e0ef2eee2357b0b437824be3f17b57", "balance": 2778364879400000000000000 }, - { "addr": "0xaae8bd017ea941955f7c514d8a41d417c6762237", "balance": 173499200000000000000 }, - { "addr": "0xa40da9873b18cc6b81b31b4f3d98727a5b7205d1", "balance": 173499200000000000000 }, - { "addr": "0xadcdfe134d8577e4117a3999075a5797a077552c", "balance": 72000000000000000000000 }, - { "addr": "0x0816446dc591a255b38cd6d1e183900803ff2bc5", "balance": 1500000000000000000000000 }, - { "addr": "0x5b0d6816a690da57bb39790f406efc02392fdb4a", "balance": 200000000000000000000 }, - { "addr": "0xb8fb14c56b245a037a8dd524ef6408acf7d74d97", "balance": 5000000000000000000 }, - { "addr": "0x332e2fe1dd6ce9b2b53d84b79b49642544a4c8ec", "balance": 33191830000000000000000 }, - { "addr": "0x0b8d212a96aadca6a59d6b5f89c88e9e8400161b", "balance": 10000000000000000000 }, - { "addr": "0x2a03e7115efaf12bb474113bddefd8b052f11025", "balance": 5000000000000000000 }, - { "addr": "0x5617f14cb0113ce42b5c7d5b5e0cb3381c4979d6", "balance": 47999760000000000000000 }, - { "addr": "0x255a7d75ea70d92a739fa841aa4945c3b8882e60", "balance": 5000000000000000000 }, - { "addr": "0x724bfc57bb536aab95b52c0270bfdd499834e0cb", "balance": 23999880000000000000000 }, - { "addr": "0x8ef589ac70db4f0a338727be3a5d7790e497b91d", "balance": 200000000000000000000 }, - { "addr": "0x42f8fd3c8df08120059180501622efebda70cf05", "balance": 73000000000000000000 }, - { "addr": "0xeaf3319111f365df945cd0f1b586549e25b624b2", "balance": 200000000000000000000 }, - { "addr": "0x8dde8e03d98f9a6caf29ed6d67a160e41e9a411e", "balance": 173499200000000000000 }, - { "addr": "0x72aa176b32557142eab012e1280ca2264b8d5fad", "balance": 200000000000000000000 }, - { "addr": "0xee606735129af13e309f9eb6bf21672ace1dae95", "balance": 510000000000000000 }, - { "addr": "0x511cc557fc817b289d4918c1cce9fc4678ae1dce", "balance": 200000000000000000000 }, - { "addr": "0x18545d8d017dbcb76283c96588a8812e3f043ba9", "balance": 73000000000000000000 }, - { "addr": "0xba27940d238cdeef4481e7612eac5e8ccaadd1c1", "balance": 73000000000000000000 }, - { "addr": "0x609786026f4666c7b7d5b5d67e0e122a79149a03", "balance": 73000000000000000000 }, - { "addr": "0x01f40339476e51e0b0532f0b435eb7dac738a31f", "balance": 73000000000000000000 }, - { "addr": "0x04ec02bc619e7592656be91f6162f01834351938", "balance": 73000000000000000000 }, - { "addr": "0x04e856de45afeb3d953c4f66daaac5f0580d78aa", "balance": 651000000000000 }, - { "addr": "0x3ff09b861dc0ebe522b4d3722274135f915078e3", "balance": 10000000000000000000 }, - { "addr": "0x771ce2659799048011e38c3de99e704291450492", "balance": 200000000000000000000 }, - { "addr": "0x42c23e76334774a242d1bec2e80898065583f8c0", "balance": 1000000000000000000000 }, - { "addr": "0x54a02b9b29b38ebacc3072500d74da8a2a3838ea", "balance": 1091606200000000000000 }, - { "addr": "0x035d3fa55230b15c9a31d9bc57108eb553a28994", "balance": 173499200000000000000 }, - { "addr": "0x08f837b350baffa3686d0f26d6a854a98bfb60e9", "balance": 73000000000000000000 }, - { "addr": "0x0586b12a381d865895a093f8cc88ed93dd230fef", "balance": 73000000000000000000 }, - { "addr": "0xfa620bad0789ae9d6f12b89663cc058b49bd2e7b", "balance": 200000000000000000000 }, - { "addr": "0xde3dbdbe465d3d363d951abb9c0a34c6c926a728", "balance": 5000000000000000000 }, - { "addr": "0xc0f35482f68aa12633ce646024fef24bfedbd67f", "balance": 5000000000000000000 }, - { "addr": "0x7c06f83249ec4b2ef2f3858487968933798777ea", "balance": 10000000000000000000 }, - { "addr": "0xe9dd6ceea5472a076f4b07c5c4973fd77628512d", "balance": 5000000000000000000 }, - { "addr": "0x868d9d30c50f99e23f72c0f089f6e9302b5a5336", "balance": 200000000000000000000 }, - { "addr": "0x62cfc31f574f8ec9719d719709bcce9866becacd", "balance": 836600000000000000 }, - { "addr": "0x875471b6f1ebdb19b6c00a44236ce22edb581a54", "balance": 5000000000000000000 }, - { "addr": "0x6a05984427f86f796c64858f859df519658e83c8", "balance": 5000000000000000000 }, - { "addr": "0x197d65c6e2ca3b12779808f86b073fbbe3cf1c7a", "balance": 5000000000000000000 }, - { "addr": "0x42f63828764ec44763f3d4013fc0b0e18e41e6dd", "balance": 73000000000000000000 }, - { "addr": "0x930d05d8e253a96c5351dfbd3bd6e88e29960c85", "balance": 30000000000000000000 }, - { "addr": "0xb33da502e29cea243cb0b6504fae2f6f1027cdce", "balance": 200000000000000000000 }, - { "addr": "0xf6428b1da7637130e3b67de0eea2ef6f74bce74b", "balance": 200000000000000000000 }, - { "addr": "0x76ba34b604a4c8f27a9d6d0a2d14dda2ee892d67", "balance": 30000000000000000000 }, - { "addr": "0xae34d7d382c47b1207b98d8d9e646d7840bf6310", "balance": 5000000000000000000 }, - { "addr": "0x3803fb582d6528f579204c8fd6533fb7e6403071", "balance": 5000000000000000000 }, - { "addr": "0xd86fc39fc488af71932730c5185958b0a6fd48f1", "balance": 182628571428571428571 }, - { "addr": "0xdfd58e43c6f2f6714a976faecd1380afcb75c60f", "balance": 200000000000000000000 }, - { "addr": "0xd83e2d4ed9c9ccfe824258ca45be4f9ca9f19611", "balance": 311650000000000000000 }, - { "addr": "0x12a0331411de5e12a440a460085f5d3cb4011054", "balance": 10000000000000000000 }, - { "addr": "0xc0d3a8d939d8653f0fd8fe7a0646dd3884293466", "balance": 200000000000000000000000 }, - { "addr": "0x517d6c773a987a75a8333929a6fd06dd9d762448", "balance": 35759820000000000000000 }, - { "addr": "0x54d9c896c9673f76a237c8eab55dcf9f0b97ef09", "balance": 200000000000000000000 }, - { "addr": "0x9ee7f0568434929991c3da4bb1dcb5a8ceec2a8e", "balance": 266660000000000000000000 }, - { "addr": "0x95b5eb36cb89c85b15c5bb313bc887a539d3cae8", "balance": 73000000000000000000 }, - { "addr": "0xa67e26333c9e34a1014e70a7d727361cf1d764b4", "balance": 73000000000000000000 }, - { "addr": "0xda851e0e0638e8d0712a75a33171b940b1b81a96", "balance": 200000000000000000000 }, - { "addr": "0x6fb33d47cf26aece1a04f4ee0db59cccb23b3e9c", "balance": 24000000000000000000000 }, - { "addr": "0xaba86575801dbe174cee4106a20e2ffffa2cee77", "balance": 5000000000000000000 }, - { "addr": "0xa02f4252e90c39596c4a47a4bfb0282638c73f49", "balance": 200000000000000000000 }, - { "addr": "0xffe5affcf874d051937a9ba9914aa6009859c4a7", "balance": 173499200000000000000 }, - { "addr": "0xce5c961ccf6e0381ac2f2ea905a81751cc881841", "balance": 5000000000000000000 }, - { "addr": "0xf65330d04f5000823d0bc6a4f7048457b4ecd1dd", "balance": 475200000000000000 }, - { "addr": "0xa4a1149761724c3ac0d8401cdae6aae765a2d5fa", "balance": 5000000000000000000 }, - { "addr": "0x084f16a8ca7529d3ed104db258652466fb73d721", "balance": 73000000000000000000 }, - { "addr": "0x4f71b85cb0e86b49cc0986e7e446db62ebdf09ec", "balance": 5000000000000000000 }, - { "addr": "0x6ce34e412f8cb0c38cb2e40bc62b6a4ce88d4eb4", "balance": 150000000000000000000 }, - { "addr": "0x21e062a233192506f3103cae2387fe83bf064994", "balance": 73000000000000000000 }, - { "addr": "0xc7c6ec2e2e685601a1f6cf57d7e42ca516738176", "balance": 73000000000000000000 }, - { "addr": "0x92d4331d1c89600da2f1241d3d3cbc550247dfe2", "balance": 5000000000000000000 }, - { "addr": "0xf48453a50baaab75b8d0edc0fb15e9eb78eaf9ff", "balance": 200000000000000000000 }, - { "addr": "0x6419aa3b7a41ad9b982a88e600d0ab6a360ccdc1", "balance": 200000000000000000000 }, - { "addr": "0x6910bbd96c2326ab42abcbbc1494aea0803b25b0", "balance": 5000000000000000000 }, - { "addr": "0x09247b903317cf766976266f8b3cfe24845d14dd", "balance": 23999880000000000000000 }, - { "addr": "0x0ae877fb04a6b3764122a5c402fe0d1cf249168f", "balance": 200000000000000000000 }, - { "addr": "0x812959c9ea7cf58681d458a44f5f9c0b827446b8", "balance": 5333200000000000000000000 }, - { "addr": "0xfec9d7af5b06360e567e9b6174c1fb6591492aba", "balance": 35997420000000000000000 }, - { "addr": "0x86474dc9e2e727abc8378c4b22e9368b196e3a1a", "balance": 5000000000000000000 }, - { "addr": "0xfd1b54e5924bea9be43d11492a2559e3b6a152b6", "balance": 5000000000000000000 }, - { "addr": "0xacea69bd82284481ea869874e32d7d9212ab7e46", "balance": 200000000000000000000 }, - { "addr": "0xab706c6e0d67928cf48a650730770c8b1b1f3835", "balance": 200000000000000000000 }, - { "addr": "0x274f3c32c90517975e29dfc209a23f315c1e5fc7", "balance": 154623368599607142857142 }, - { "addr": "0x3b8e10b84ba379cb81f95117effbfc3f86448554", "balance": 1585218160000000000000 }, - { "addr": "0x5c30690a5f11810c298c10642eb1f3288d29b6e7", "balance": 73000000000000000000 }, - { "addr": "0x304f00d00efdfd17ef1028ab541ea514dbc63ee0", "balance": 15000000000000000000 }, - { "addr": "0xfd94a3604a96061efdf74c3fae9c03fad2ed330c", "balance": 20000000000000000000 }, - { "addr": "0x964b125d984069592fe597ae139c614b1cb7430b", "balance": 10000000000000000000 }, - { "addr": "0xf248fd79569fea7de520765cd21167c2c7ca98d8", "balance": 73000000000000000000 }, - { "addr": "0x284e4fc5aebfa2a3a841dfa6a989a40d6eda4bf4", "balance": 200000000000000000000 }, - { "addr": "0xbfe1d37c25703486fcf629bf7bf949161057548d", "balance": 73000000000000000000 }, - { "addr": "0xe7589a9435e27bf1443ebb279083f044c054e9fe", "balance": 35999820000000000000000 }, - { "addr": "0x5168e3cb866e7d5c956a076a17e8c7cb5107f663", "balance": 73000000000000000000 }, - { "addr": "0x0be4ec3d52ff7a6f57620610900c74d2038afe60", "balance": 47999750000000000000000 }, - { "addr": "0x59ed54a493a2c1d48e9e013eb7c204dcce2e0fb8", "balance": 5000000000000000000 }, - { "addr": "0x5e852bab4df49913319251a1f9c97b58a55ef2c6", "balance": 200000000000000000000 }, - { "addr": "0x9667b155f65ddd02b856bf495163cf53f105d971", "balance": 200000000000000000000 }, - { "addr": "0x69e1aec744c1872c66b7f9c95c0f373f6ea7ed02", "balance": 173499200000000000000 }, - { "addr": "0x899b5d52671830f567bf43a14684eb14e1f945fe", "balance": 99671741000000000000000000 }, - { "addr": "0x21622b929ff899dffe778ae64873b3ae35431b64", "balance": 173499200000000000000 }, - { "addr": "0x6b3ec4f371aaf12aa1d5ebf9ffb6067dffd33823", "balance": 400000000000000000000 }, - { "addr": "0x7b6b059499c64c12c5ebfad319d8f55b30fbf4b6", "balance": 400000000000000000000 }, - { "addr": "0x4e69d8d12f4070609447525e59babb80a8b055f6", "balance": 73000000000000000000 }, - { "addr": "0x82d50f2179c94b0c4af549a721478c63282df8f5", "balance": 266660000000000000000000 }, - { "addr": "0x224cd0ace0e649a976ac91c775034b4c102c2fe1", "balance": 5000000000000000000 }, - { "addr": "0x3c50a99bacf3d460793476f9836d7d216b21659e", "balance": 73000000000000000000 }, - { "addr": "0x5c2aadd624b0bdb8bfbb3bbee5968ae225418fe5", "balance": 200000000000000000000 }, - { "addr": "0x7584e5507632cfcfa04985940ce8b4da5281e8c4", "balance": 696649000000000000000000 }, - { "addr": "0x6305908d6b94e1d87e4b8f0cd7346eeaea02eb84", "balance": 5000000000000000000 }, - { "addr": "0x6061f4c1bccca29c2bae603dc4fd9968d51ad052", "balance": 200000000000000000000 }, - { "addr": "0xd450b0d396604a525f122241a1054689e72a5268", "balance": 20000000000000000000 }, - { "addr": "0xe85e79bb28f2e17d0918ef744faf78f20ff2f10c", "balance": 73000000000000000000 }, - { "addr": "0x0830fb47f47ec72e6349025c78ba2a8802204c33", "balance": 10000000000000000000 }, - { "addr": "0x2062f93f996eddb39e4115b358aba22d0dc081db", "balance": 200000000000000000000 }, - { "addr": "0xe62d6f4deed17fe255fefb31be4537f320a84aa2", "balance": 200000000000000000000 }, - { "addr": "0xf6de9358b768a7891bd6e6edd46bec9110070590", "balance": 73000000000000000000 }, - { "addr": "0xddcfaad38bce42bf0f9d0b04cec917d05146101c", "balance": 73000000000000000000 }, - { "addr": "0x58d0ffd05924b4ad2028850e5a4b67c94c3d5909", "balance": 5000000000000000000 }, - { "addr": "0x3e0308c6f474efc9e8bd001a12f5e5c83146af0d", "balance": 173499200000000000000 }, - { "addr": "0x1fd377669548a51eed8e1400da0bc607a37c8fa0", "balance": 173499200000000000000 }, - { "addr": "0x74ce8e0c18fe73334a057bc11e156729a1f6cea0", "balance": 5000000000000000000 }, - { "addr": "0xef98c29119b05e1681d97143eebe18e30aca1285", "balance": 1000000000000000000 }, - { "addr": "0x62e7258115dcb9f1368e0be9e0bc62f6a1b30454", "balance": 173499200000000000000 }, - { "addr": "0x0f99b72940c970ff37bca9d8e29258abc8f57e0d", "balance": 10000000000000000000 }, - { "addr": "0x75f52a980f637c32aa5215a335820db2efbc498c", "balance": 73000000000000000000 }, - { "addr": "0x9d851728a94293c8518c6840e566c9f24b8c3bb4", "balance": 5000000000000000000 }, - { "addr": "0x235f8597355a7c726d0064d66ccc8b3ce8aad18c", "balance": 5000000000000000000 }, - { "addr": "0x3c27908d7cde9612825933261c0831e655462fbe", "balance": 200000000000000000000 }, - { "addr": "0xd71d5ca79d55675f79190b9e85577ce3fe55fe32", "balance": 1501000000000000000000000 }, - { "addr": "0x8a483538cec225ded8c607fcc943f2b36b6c359a", "balance": 1000000000000000000000 }, - { "addr": "0x47de05a57bbdc08ee9d2a5357a6ed02b8d115a41", "balance": 73000000000000000000 }, - { "addr": "0xe381071d74d4d724b80cd6bcc1a4a384301c43d7", "balance": 5000000000000000000 }, - { "addr": "0x53bce13bed79facd6cb44803fa8ac660e636e30e", "balance": 73000000000000000000 }, - { "addr": "0x31470d0df2dd93b0533d951875932afc18b99ebc", "balance": 73706000000000000000000 }, - { "addr": "0x37a4c4e41b2140698555a6df039680d38755fb2e", "balance": 73000000000000000000 }, - { "addr": "0x4f0621d43e609afc84b95794ca939c93217cf880", "balance": 173499200000000000000 }, - { "addr": "0xabad3e81c6faa1747c3a4380a25062742082c176", "balance": 5000000000000000000 }, - { "addr": "0xb134fffbd5116edd55c07d8b3984fe4e6c442277", "balance": 30000000000000000000 }, - { "addr": "0xae893447effd362cb5e58bd28e375389ed46144f", "balance": 173499200000000000000 }, - { "addr": "0x5bf81cb0718752a46ecd2c578304d98f95d87ac9", "balance": 119900390000000000000000 }, - { "addr": "0xc752d8c4a1d5b04ce6a40b0bbc68f3a58aab512e", "balance": 266660000000000000000000 }, - { "addr": "0x47139cbec96ff8e2d06e0595f966827e400492c3", "balance": 13333000000000000000000000 }, - { "addr": "0xdc8baab851091503b076c35a5f6bf970282268c5", "balance": 200000000000000000000 }, - { "addr": "0xed7856023efe6be37f1c47c327d75230bc35c238", "balance": 1000000000000000000000 }, - { "addr": "0x87f96365560a76c61f1e20643e4052539fbadbcb", "balance": 73000000000000000000 }, - { "addr": "0xd761fab82d996724e9cad876c8616c0d4c92caad", "balance": 12000000000000000000000 }, - { "addr": "0xf0b9a6ed58c30c6811438b895011db5bb55e21eb", "balance": 5000000000000000000 }, - { "addr": "0x4a155d155247479fce45c4472188166a70938674", "balance": 73000000000000000000 }, - { "addr": "0xccc5b4ef70bc4e8e2486e5ee8c79a47adfbfe6ba", "balance": 73000000000000000000 }, - { "addr": "0xd42587f3fada01e0aa5743c8ea635b684bedacbb", "balance": 73000000000000000000 }, - { "addr": "0x153c4a441c666dda7eb94633f11482be918b7f14", "balance": 10000000000000000000 }, - { "addr": "0xf1a6c4a97c80ada51882fe8cf0bc72214b321fad", "balance": 5000000000000000000 }, - { "addr": "0xa925ec4463865aede04fa7dffec7e45db09653ab", "balance": 5000000000000000000 }, - { "addr": "0x534a14d17c9ec759693b2a9d6aff62bb75c05e38", "balance": 40000000000000000000 }, - { "addr": "0x56ebaa552e8dac903888c4880c62405b2cdef9d6", "balance": 23999880000000000000000 }, - { "addr": "0xb26bde43f771601ff6bc00858299f1144a009048", "balance": 23999880000000000000000 }, - { "addr": "0xcc078e64e28eb887e09fff12bf01fbb786be0efd", "balance": 73000000000000000000 }, - { "addr": "0xdf329a8ba92d7dc6b7f61fda952b92aa7a7e864b", "balance": 73000000000000000000 }, - { "addr": "0x87092463493d9187cfc09b03bd94420073a9058e", "balance": 1000000000000000000 }, - { "addr": "0x0de9e640cf3a7a2db90d2c413a51105e1332ff49", "balance": 2000000000000000000 }, - { "addr": "0x7aadc4870fc699ad53cb8138be92e41327163104", "balance": 73000000000000000000 }, - { "addr": "0xe24d997577e2781f5d8d74241674ef65d095a6dc", "balance": 10000000000000000000 }, - { "addr": "0xaf18b7b2853ff4eb2edd25cdabec5765dbff6447", "balance": 182628571428571428571 }, - { "addr": "0xdf1d8878a0ca4560038db36e77cc623a4fc40e29", "balance": 5000000000000000000 }, - { "addr": "0x502dc3f87b7c71511b96aa904852e0136ae24670", "balance": 5000000000000000000 }, - { "addr": "0xf0def7cfb2d6490df6698848f8be406c6d9aa8a7", "balance": 24119880000000000000000 }, - { "addr": "0xe633a20ee75327052ccd4c95cb2c84957fe3cda7", "balance": 200000000000000000000 }, - { "addr": "0x8b4424e27f9d0707bddcfbafb5ed2f94dc9dd682", "balance": 200000000000000000000 }, - { "addr": "0x7e6f42c61857bba04bab8cd2279160eff287e056", "balance": 73000000000000000000 }, - { "addr": "0xf0dd7a91c2d22373be323ccc29c362bea8313edd", "balance": 10000000000000000000 }, - { "addr": "0x0c3bebeea316a0a329b8d8dcfa192c600e7b37b9", "balance": 73000000000000000000 }, - { "addr": "0x7e186a5a32a6046e47e77c5300288f81eb7c6661", "balance": 200000000000000000000 }, - { "addr": "0x2c1ac172bae15654dc612e9d4377bd4cd864c3ef", "balance": 73000000000000000000 }, - { "addr": "0xdd37c12c9b94eaf62835497d498f7def102c3749", "balance": 182628571428571428571 }, - { "addr": "0x9a984f3e455f44fb79d19ffc432c64c4fc72da45", "balance": 5700000000000000000000 }, - { "addr": "0x53f5ed25b0649309c25e874da2fc6315638ecf61", "balance": 5000000000000000000 }, - { "addr": "0x9a7ec57e3b09bb706b0fa8cee5e7c8ab9baa0759", "balance": 200000000000000000000 }, - { "addr": "0x901ba7395ee76dc111c276b68a4b11359875c28c", "balance": 5000000000000000000 }, - { "addr": "0x6f8a25c84b865c3731d51bb045c038c0ef7cb6e3", "balance": 73000000000000000000 }, - { "addr": "0x7f0886a2356caf07e06e25e23ae5e06e1278bf89", "balance": 273000000000000000000 }, - { "addr": "0x7643c87be90787ae992802ce4540616e2ab0fe20", "balance": 200000000000000000000 }, - { "addr": "0xe01cb76f4bf0c6934751d9c12c20c246df8ee461", "balance": 73000000000000000000 }, - { "addr": "0x671391738b2a6781a684902bbf99534f21e96d91", "balance": 5000000000000000000 }, - { "addr": "0x0ee6d17519b17243241f92a7028dcc42435f18a3", "balance": 23999880000000000000000 }, - { "addr": "0x04f177c85a66b376cbcdfb7c335d1b74c4eb4703", "balance": 200000000000000000000 }, - { "addr": "0x73fc2de45d88d1c8217d2ee42835474f251bbd5c", "balance": 40000000000000000000 }, - { "addr": "0xa28501398d14733ad9c3f61a760251c9885567be", "balance": 511637300100000000000000 }, - { "addr": "0x4f2a9dbbef885cf71b62ef8b26a18b2eb5f06d31", "balance": 5000000000000000000 }, - { "addr": "0x52bcd9935d88b5459a8c232faeb93354ba451442", "balance": 200000000000000000000 }, - { "addr": "0xf1ede8810c96f5e73f4f9a51f99e6f8ea5a760fe", "balance": 2000000000000000000000 }, - { "addr": "0xbfa72402ad34cff8ed5804cfbce5b8647151d9c7", "balance": 200000000000000000000 }, - { "addr": "0x2ff0260d443e09a5ccb247337c5f4f17ba424a81", "balance": 141001822000000000000000 }, - { "addr": "0x752e993aa920838c46582bd3b81b532e404c768e", "balance": 5000000000000000000 }, - { "addr": "0x2f66b3b4dae6db4439cb1d8734f6270441e02427", "balance": 390000000000000000 }, - { "addr": "0x20333559cccd1414baeaec55df22632229a1ae1a", "balance": 10000000000000000000 }, - { "addr": "0xaf7fe07e95893c89d3637f6619c6c46f54942df1", "balance": 200000000000000000000 }, - { "addr": "0x521b51c9f2019738306dcac00c6543c63b3cc175", "balance": 273000000000000000000 }, - { "addr": "0xbfe96f543da8689f2f7140d23954fa05fa2126e6", "balance": 5000000000000000000 }, - { "addr": "0x565e03b9b85261fc06a0c36e01cc8be9199d1521", "balance": 5000000000000000000 }, - { "addr": "0xf69726c9e98f68fcd2d708c07331a468290966c1", "balance": 20000000000000000000 }, - { "addr": "0xb4202573e2d7aa3410859f8f67db9f8375d7bfea", "balance": 5000000000000000000 }, - { "addr": "0xbebda8e2c7128b5c9a8ec7da162704255e1c958d", "balance": 1000000000000000000000 }, - { "addr": "0xc67a4b3d8985f9739a5188bb9a47eb9bcbb8e007", "balance": 31199840000000000000000 }, - { "addr": "0xf6beb0983416228d0db9e748fe6507349ff785a5", "balance": 200000000000000000000 }, - { "addr": "0xab130912eba98738fb2fd0718bd3d48d86b34241", "balance": 5000000000000000000 }, - { "addr": "0x50075178096c78d1683867587a994ab0364df8b9", "balance": 20000000000000000000 }, - { "addr": "0x039d605c368a9760eae4db0377e399534523ee17", "balance": 73000000000000000000 }, - { "addr": "0x2de0b2befebd943d892b2d44f293faf322c24b04", "balance": 2461000000000000000000 }, - { "addr": "0x6494171ccd6aeef68b3dcc8464b99729b76722ac", "balance": 5000000000000000000 }, - { "addr": "0xe056e6e6c9732212c7d44138dea7f8f4edd7a555", "balance": 200000000000000000000 }, - { "addr": "0x928204ebe863623f7e101b2af15ce9412862565f", "balance": 10000000000000000000 }, - { "addr": "0x4d2a865f7141687dbc7a1493fb36de7817da320d", "balance": 73000000000000000000 }, - { "addr": "0x0a40bbedd64ddd5236f67c4ba6d68afc33776d92", "balance": 200000000000000000000 }, - { "addr": "0x25716290268bdb9a02f8870cc3ac66851894f572", "balance": 10000000000000000000 }, - { "addr": "0xe5c7f2bb9e6dcef23c4580270d316b977462828b", "balance": 200000000000000000000 }, - { "addr": "0xe57f83c7dbbb29c1a4889a8b2272ebef249eaa83", "balance": 28799850000000000000000 }, - { "addr": "0x8457e2c48f131ab3a532209f55cd4c85e80dcdb9", "balance": 5000000000000000000 }, - { "addr": "0x89ca3f4ac63ad0a5ea8b2e61978fc0a247c1e3dd", "balance": 73000000000000000000 }, - { "addr": "0xa0b5eea00032352c0f8c0bf1889d75831b89f10e", "balance": 73000000000000000000 }, - { "addr": "0x34226ca0f9cdf5b043ed9f4cd1ac958175621e14", "balance": 173499200000000000000 }, - { "addr": "0x6cc88953c5735ac0f4e5955c6365111e7c2c4970", "balance": 5000000000000000000 }, - { "addr": "0x1fa0f3ce114af23f779dea8fdf8198b71df0e4df", "balance": 1585218160000000000000 }, - { "addr": "0xb9165ea172eab45d1f3c4e62a2890e6a9e0b1f19", "balance": 48000000000000000000000 }, - { "addr": "0x518a1e2d782bfa1b665ca98cda2a706c797a5e19", "balance": 5000000000000000000 }, - { "addr": "0x9b8097f7b01c240462912eb9989f59e9f288a181", "balance": 5000000000000000000 }, - { "addr": "0xf3ea646c2bf378e344306cdd377bc1d2c6d02440", "balance": 65897630000000000000000 }, - { "addr": "0x688a944d60cef475b64f4efbc2311d8eeb777625", "balance": 200000000000000000000 }, - { "addr": "0x3fb032551b93a6ebe9dcb3646aeff18c16d847d7", "balance": 40000000000000000000000000 }, - { "addr": "0xe0268de3ee8da75dc6817969ddadb42b09460f53", "balance": 5000000000000000000 }, - { "addr": "0x675b40d4a63f5f286ec5e8c97f6ef4119c6f3ba6", "balance": 73000000000000000000 }, - { "addr": "0xb1e06450ef0c90586af6ccd219feb773ec495c09", "balance": 73000000000000000000 }, - { "addr": "0x64e5b160586956262fe217d34e86fed8d8fac09c", "balance": 5000000000000000000 }, - { "addr": "0x0e4b4ab06b8c1434eee073233fabea46dcf86a88", "balance": 746377187260000000000000 }, - { "addr": "0x617f7063aad0553512a0bcdf4b147052281a8377", "balance": 200000000000000000000 }, - { "addr": "0xa34ec04e9d50b216f7fc4bf636c6f77f875d5a86", "balance": 24000000000000000000000 }, - { "addr": "0xd538e441212b79e85ca1afd3127e515768dbfec8", "balance": 73000000000000000000 }, - { "addr": "0x862ce64a3dd9e5af525a09038bd83e98575f0f80", "balance": 73000000000000000000 }, - { "addr": "0xe3d10faf4cf90250f76be9afe9a3f169fd2f4271", "balance": 50000000000000000000 }, - { "addr": "0x800d9dcb9c073907ed59e74f27882f9275e1dea1", "balance": 173499200000000000000 }, - { "addr": "0x004c7e5ff5b2924587af243c802c56141c7f628f", "balance": 200000000000000000000 }, - { "addr": "0xde1aef3f3d7ec3eda1bf10ca665deb733ccfce5a", "balance": 73000000000000000000 }, - { "addr": "0x55e376434e7733f670501ad330f7b404c8a54a5d", "balance": 200000000000000000000 }, - { "addr": "0x4d065b0d39c4fe2377d60cefefd636f9ca1770c7", "balance": 73000000000000000000 }, - { "addr": "0xe5e18ff1f881607857f408eb0009eb63491a6d39", "balance": 5000000000000000000 }, - { "addr": "0x1da820a6a3d916b5ca93eecc6b73fc57cfc88a87", "balance": 200000000000000000000 }, - { "addr": "0xb58990193dc9865af24c2504c81bb973339b7ea1", "balance": 880000000000000000 }, - { "addr": "0xa554c822186e46ead65dfbf277fe58004b713bab", "balance": 5000000000000000000 }, - { "addr": "0xcef07180b29699fe31887f6682e55bf74b9eadc3", "balance": 5000000000000000000 }, - { "addr": "0x676e63974d15dd6e6bb8f249db4f947f0f6127d4", "balance": 23999880000000000000000 }, - { "addr": "0x0186be2c4b734400570828e18df35cf759198aea", "balance": 1585218160000000000000 }, - { "addr": "0xcab7932b59a4fe0170fb79de07bc2929464b5759", "balance": 73000000000000000000 }, - { "addr": "0x46f7d63f591718cf99efd6f43a776b3b869e523d", "balance": 273000000000000000000 }, - { "addr": "0x0078c999f4ad4ec2fcbf2083bfe5daf6c4dff0ac", "balance": 73000000000000000000 }, - { "addr": "0x8a852756e592700f12a7210adc176db811ce56e0", "balance": 14725000000000000 }, - { "addr": "0x9ab1ad2a16148449df94d3b7a31971346107d04c", "balance": 5000000000000000000 }, - { "addr": "0xa68d83a4aa4726f3e5961d87edeead2a93c89987", "balance": 1000000000000000000000 }, - { "addr": "0x93598138a9b2f79316667c9f1535efe81083560b", "balance": 45000000000000000000 }, - { "addr": "0x9fb465df844bbee88631bebfc8b51a4ce4b41607", "balance": 20000000000000000000 }, - { "addr": "0x4c3d4c6ab8957abf3732188b6411d0feb1bc9383", "balance": 220000000000000000000000 }, - { "addr": "0xbd90f0224beae60cd338c0363abed9f425ce8a5c", "balance": 10000000000000000000 }, - { "addr": "0xb49c599733cbe1bd36dafb7cb2f276786eb9bda7", "balance": 73000000000000000000 }, - { "addr": "0xd4b9018e605638da51acb7477c2fc7b273dd084c", "balance": 5000000000000000000 }, - { "addr": "0x9f7686c04af982abd0ca476a7606323da9391a8b", "balance": 10000000000000000000 }, - { "addr": "0xd7be5ad963666bcdbfc7b9ec7f1a3c2143d43c85", "balance": 73000000000000000000 }, - { "addr": "0xf2d9191d0a182d95f37923de2c5b60a7b131dbcb", "balance": 173499200000000000000 }, - { "addr": "0x34340ba66e02416166c3eaeb419a3621c3db750d", "balance": 600000 }, - { "addr": "0x37f7ff1864f5d5cba2b63592656049f2d7d06fb4", "balance": 35999820000000000000000 }, - { "addr": "0xaee03f9e7648d0c45c15365e4cb6685805a81cf9", "balance": 73000000000000000000 }, - { "addr": "0xe286d16718104d15b107f0cf5f120e42d1a785a8", "balance": 200000000000000000000 }, - { "addr": "0x324d1c3906be0e75fd20d57d04cd11dfba4503f0", "balance": 5000000000000000000 }, - { "addr": "0xdbefc1c8de9e1aaf99903cd3d87eb79bb4441bfa", "balance": 1349999000000000000000000 }, - { "addr": "0x20131939502855d87328717101d69af77a00bb01", "balance": 73000000000000000000 }, - { "addr": "0x344aee1363cf704c097f78f8ed4af417c84d8b05", "balance": 5000000000000000000 }, - { "addr": "0x54b319076855cc99344ad65422b4d26d7cb5f7e6", "balance": 41039790000000000000000 }, - { "addr": "0xbf56a534670a30181651528b30f1df2af784c95c", "balance": 73000000000000000000 }, - { "addr": "0xc04b7d580ddea31a952928acd62fe52df460b438", "balance": 40000000000000000000000000 }, - { "addr": "0xc2ce6b1828c3ce830bb1737a24e74bf64b000f73", "balance": 23999880000000000000000 }, - { "addr": "0x58ec96038f847eefef5c56bd1b584211635879a4", "balance": 121295380000000000000000 }, - { "addr": "0x4557ab70ae3da109fac06dc1c07a7503b6d03b1a", "balance": 1585218160000000000000 }, - { "addr": "0xe6c3f40cf9fbc7adc8195a0cf893644574bcf4cb", "balance": 5000000000000000000 }, - { "addr": "0x53231f8e8f45d2144bcb4a17fdb9db41bc5d27a2", "balance": 5000000000000000000 }, - { "addr": "0xe66de97b0fd6732550b1eee5164be201a808c850", "balance": 200000000000000000000 }, - { "addr": "0x01c9e3429ffabbb2d4e26421cdb53fe3446dacd5", "balance": 23999880000000000000000 }, - { "addr": "0x97b5c02a68c7e870e02ab096c6aadf39938e71f9", "balance": 253320000000000000000000 }, - { "addr": "0x513d316d25c6754898b4e09b1e17a0358c09e877", "balance": 10000000000000000000 }, - { "addr": "0xd274a4b404dda62087792c9c92c97f2b60cc0c33", "balance": 1585218160000000000000 }, - { "addr": "0x1061c9509b77651af185b28e61e1892eb9dbeceb", "balance": 73000000000000000000 }, - { "addr": "0x4be901715431212754302c6d37ea1ad42a2eceb0", "balance": 73000000000000000000 }, - { "addr": "0x88b7c2e3a42eed7aab6638b380f60ae54b7d4dc0", "balance": 200000000000000000000 }, - { "addr": "0x31a990dab04761a208cc05dd1ada0bbb5920993c", "balance": 5000000000000000000 }, - { "addr": "0x9d2ed5e49028a0179754704606f31dd62eccd6ae", "balance": 2900000000000000000000 }, - { "addr": "0xde6902417073a468daff06e98aeeecea0860a437", "balance": 5000000000000000000 }, - { "addr": "0x2cc28e1967350712c446b5f889e4024d2599e186", "balance": 73000000000000000000 }, - { "addr": "0x844ef968331705ac250be93213528536789de233", "balance": 73000000000000000000 }, - { "addr": "0x721e71a3be0f0b439ae5e9e2fc8e2ec85feddd4f", "balance": 143999260000000000000000 }, - { "addr": "0xa8ac9c7cf298ef5d00b6ca3c6e3623dde1fb3253", "balance": 73000000000000000000 }, - { "addr": "0x146695920531c13bcbae4b48e55891228bf3de3b", "balance": 1000000000000000000 }, - { "addr": "0xcfca0bfdbfe2a11e405515f99205fc69bd5da1d4", "balance": 860000000000000000 }, - { "addr": "0xb51d9c477184d619c98c1c8828aa2612056ebf96", "balance": 273000000000000000000 }, - { "addr": "0xf35c0ce971a4a80d363c640758eb1be40f30e3c1", "balance": 5000000000000000000 }, - { "addr": "0xb0eda9cdf9a5b547b5892aced643d94ba089a03a", "balance": 200000000000000000000 }, - { "addr": "0xeb8c23d5fb59d7c16cdc66d52aca12659634d38b", "balance": 5000000000000000000 }, - { "addr": "0xed5f767b3f9e38447e5faf9cf2bad18c7218a471", "balance": 240000000000000000000000 }, - { "addr": "0xf827c482dd1165affde08a9917c0272dd0340714", "balance": 200000000000000000000 }, - { "addr": "0xdf941d4947ab3560c7641d8283f718df28c5c3b4", "balance": 18160000000000000 }, - { "addr": "0x809abd47ab4afc728f5e8ad67de3a2f8d5f8b9eb", "balance": 200000000000000000000 }, - { "addr": "0x409dee03324459fa7c85d172952106cf79be008a", "balance": 173499200000000000000 }, - { "addr": "0x4b49b5d5eb1f4106e9336f01077844b462650c68", "balance": 79998000000000000000000 }, - { "addr": "0x61a3b536b39ee28844ed61a2d7cf9868a6206815", "balance": 1000000000000000000 }, - { "addr": "0xf78b0c4314b3bf39458a4e2c3e11a68efcdaa853", "balance": 5000000000000000000 }, - { "addr": "0xa31ac7a381ac38696e42eee1e723e4a262faf696", "balance": 2462000000000000000000 }, - { "addr": "0x7e102e3384ba4af479dd87293d9001d5ac8a3a2b", "balance": 5000000000000000000 }, - { "addr": "0x190d16e4ab40cdee07a8aa9e5af0f4904ef2dd42", "balance": 10000000000000000000 }, - { "addr": "0xe86844dcbc4d9020c71f31306cbe7112d74ff330", "balance": 10000000000000000000 }, - { "addr": "0x7cfb299bffee4aa9dd6d5fca3451b5213a45b6ba", "balance": 200000000000000000000 }, - { "addr": "0x0e11da02047b831e4996cd37ecc5bd44df4d1f55", "balance": 200000000000000000000 }, - { "addr": "0x238e2a03beeb68232af5a4fdd08b08b36873e1f4", "balance": 200000000000000000000 }, - { "addr": "0x3deccc5391a83bb91dc519ce4b6af0915af2fc34", "balance": 200000000000000000000 }, - { "addr": "0x96d086c56e4353ddae191342c76c0b43023679a9", "balance": 50000000000000000000 }, - { "addr": "0x527ba64cb394e293039fd591a141ff7d5bbaeb59", "balance": 355000000000000000000 }, - { "addr": "0xe3bc858c486e782b5910dbf0c88fbe752d15c867", "balance": 1000000000000000000 }, - { "addr": "0xaaad30e2b49d23d3eda6342de7bc9d12c7796313", "balance": 5000000000000000000 }, - { "addr": "0x4211989b265a1e2b6db1653df3ecc56329450a3a", "balance": 20000000000000000 }, - { "addr": "0xe2dc5f9bef0204a6fa6c6eaaa1b3b46a2ca84604", "balance": 50000000000000000000 }, - { "addr": "0x525f61396a3b7cbffa6993c362e9a97b7bf3eee2", "balance": 5000000000000000000 }, - { "addr": "0xbc58418cf0c3759c43b5ae4a884b365be6d46b40", "balance": 5000000000000000000 }, - { "addr": "0xc1ecff966dd8a0e71e74c57b9cfcc12b6747b962", "balance": 5000000000000000000 }, - { "addr": "0x39fd82827c3cdab0307d36728a4a420433c9f999", "balance": 73000000000000000000 }, - { "addr": "0x23bd3a03194a76a87a5a741b8bfd566f8aadd811", "balance": 5000000000000000000 }, - { "addr": "0xc59f0098bb2dde944fa7e443b7687000dda87f03", "balance": 73000000000000000000 }, - { "addr": "0x2191856c8557e2f420cde7b7b7b99312efbb2f0a", "balance": 200000000000000000000 }, - { "addr": "0x6492d966ec9831142a41b12bff08727b91c0393b", "balance": 200000000000000000000 }, - { "addr": "0x253917be58b51c27ad49cb98e98c5f74edfb3b63", "balance": 119999390000000000000000 }, - { "addr": "0x364dcc4365637950f4aa9f8efe5527e5c7d8fa10", "balance": 73000000000000000000 }, - { "addr": "0x5d5ace07b21709021caf33f7969139f79158e3cb", "balance": 5000000000000000000 }, - { "addr": "0x965eba1586122fd79b2886bd221a30455f8359e4", "balance": 10000000000000000000 }, - { "addr": "0x853b95046a6a76f148fc73366546b040330cb0af", "balance": 100000000000000000000 }, - { "addr": "0xf2114c3b244e4a7beb40f7f316ee21b5bb218710", "balance": 73000000000000000000 }, - { "addr": "0x8561c6baea361150fd96521dbb5fb72f9839404c", "balance": 5000000000000000000 }, - { "addr": "0x9f799141b4b58d2e025f534086625615e8b020f1", "balance": 5000000000000000000 }, - { "addr": "0x28957bf30d5c4d4c857d879067da8330b84166e9", "balance": 24503000000000000000000 }, - { "addr": "0xa3edc0ebf0f1fd38a93432ab18a8cff1c469bc67", "balance": 73000000000000000000 }, - { "addr": "0x98f8a59e5ca41bcc3d0cdda5fbfc6926e4d24f5b", "balance": 1000000000000000000000 }, - { "addr": "0x94c09b1ac49dcd8bea426cea8766f6df1c513aa1", "balance": 20000000000000000000 }, - { "addr": "0x9bcc2e2f832c92bdb6b3d86bcfc7d57e0a860ac6", "balance": 200000000000000000000 }, - { "addr": "0xcc4617781180e14eeb00b731bcdf483e599ae2af", "balance": 200000000000000000000 }, - { "addr": "0x32e8bcc6e7993f3cfbe8454ea2edc03d157bc0e0", "balance": 73000000000000000000 }, - { "addr": "0xcf9939029b6ab9a53e49dafd4e30d3295f764f08", "balance": 993860000000000000000 }, - { "addr": "0xdafd1be5fdd1c35b6da0d21d85d7ca55242a8d65", "balance": 200000000000000000000 }, - { "addr": "0x47d9069508b71ec57c95cb54173aa490e96778bd", "balance": 35836466000000000000000000 }, - { "addr": "0x0fa779cf4e1fe4fa9ebd07438dd6183006c8743c", "balance": 200000000000000000000 }, - { "addr": "0x2c68df48e4c7bc690cbf6a4db8e825334ffe10d0", "balance": 23999880000000000000000 }, - { "addr": "0xe88e2f21cbe1b3b59578f8715bdd3287f9764cb4", "balance": 119999390000000000000000 }, - { "addr": "0xaa7080958bb8efd9e2eb953c99340dc0c7de7d7b", "balance": 200000000000000000000 }, - { "addr": "0x3d867abe8538d74981ba1a153af31d4a2af0b443", "balance": 1000000000000000000000 }, - { "addr": "0xb448ff66fd39b4c951efb0fefaa31dead4ce68f2", "balance": 73000000000000000000 }, - { "addr": "0x8a0dfef66dae84760a2eb557d46a52591149d9be", "balance": 5000000000000000000 }, - { "addr": "0x53ab0cf6bfc986fb41297cf4a53e374aafeeb593", "balance": 5000000000000000000 }, - { "addr": "0xb251ff9c95cb25a9e1d8b96c10507c6ad742544e", "balance": 12557076600000000000000 }, - { "addr": "0xbb0cd99b91c2eb976eeaff47d4017e1b1af563bc", "balance": 5000000000000000000 }, - { "addr": "0x05ec894e22c46e9408f33f2b1714e4f79568bc84", "balance": 1000000000000000000000 }, - { "addr": "0xb383f88f0e40982c0fb3fa6b87bcdf81ca1099e7", "balance": 3124480000000000000000000 }, - { "addr": "0xf9bf680ef305c79f682b48d9c956425538f4db54", "balance": 173499200000000000000 }, - { "addr": "0xd4b4bcb5811f1254044d912f5c5edf49ed659a37", "balance": 200000000000000000000 }, - { "addr": "0x5f2371401ed2ccc6ccca31d0340ecc0fc9c25b42", "balance": 73000000000000000000 }, - { "addr": "0x009a74217675c22a63b7a930f1b39a5c7df78e53", "balance": 880000000000000000 }, - { "addr": "0x6b1bbf157b148dae9637901420a410c0c8733ca3", "balance": 24023000000000000000000 }, - { "addr": "0x6583ef67fd9ff036b9bfe2a2a29ff05d223f30e7", "balance": 400000000000000000000 }, - { "addr": "0xc5d6d9e78e679fb6b8df1169b15ce2eeef90fe54", "balance": 5000000000000000000 }, - { "addr": "0x57b9e97920c54b43c50ca7caa75bd53ac47290be", "balance": 400000000000000000000 }, - { "addr": "0x26f41839b103f778cd879554984cca85561679ff", "balance": 200000000000000000000 }, - { "addr": "0xb767d2c383dfb81ff9affe5de01e80f2ac976c2f", "balance": 106664000000000000000000 }, - { "addr": "0x3f30b10a73b5895daa4723b5f66704373d56b144", "balance": 200000000000000000000 }, - { "addr": "0x0947502c275e0d5e0639296d38bb39150e44f9d9", "balance": 10000000000000000000 }, - { "addr": "0xae051417f93bc66e3e6439547fd33dbcf1dc9f14", "balance": 8101951200000000000000 }, - { "addr": "0x73e16c0cf173229e953d60179513105c05cf7d81", "balance": 27233400000000000000000 }, - { "addr": "0xf494be31a19ed71d55c4ce12e5f0aec76fe1a9c2", "balance": 1000000000000000000000 }, - { "addr": "0xd7488d91930ef952535ea525ca4d3f147a0ca038", "balance": 20000000000000000000 }, - { "addr": "0x2d9751a03162544b18e6bdcb1b2c93fb6aa1284a", "balance": 73000000000000000000 }, - { "addr": "0xa17115b6fbf7764ef57f28990cf0e14f6c9990b7", "balance": 73000000000000000000 }, - { "addr": "0x787d5e2b51f30071eb15cedd5cd76566ce2c2cf6", "balance": 73000000000000000000 }, - { "addr": "0xa8e0469b9ca3349a2764386fcfd2a79d7321de04", "balance": 20000000000000000000 }, - { "addr": "0x940bcd7e8d386463f2f315898408db65e88a3d40", "balance": 5000000000000000000 }, - { "addr": "0x32fa05d7ef95546ed98c02bb0c8e5a646012c653", "balance": 1266600000000000000000000 }, - { "addr": "0x4bb567773e53887b12a349fc338abee41ae4cd7e", "balance": 5000000000000000000 }, - { "addr": "0xe7706a6a2c8fe00aa1565917a8e1168bec79ce96", "balance": 35000000000000000000 }, - { "addr": "0xcb7b0233fb67d036787f3e1b73a305deafdf5d8a", "balance": 29066000000000000000000 }, - { "addr": "0xda98296a61fd2d01a2bda39af6be12c8d43e8eb7", "balance": 75000000000000000000000 }, - { "addr": "0x21657fcc5f14e9a6f5e42e0bab2443a9ec5d3d6b", "balance": 5000000000000000000 }, - { "addr": "0x65f98b6eb00b27fe7bfbde0c3395074f22f48895", "balance": 73000000000000000000 }, - { "addr": "0xef3e1eaa9e375b56e9c4b9e557ba386dbed034f4", "balance": 5000000000000000000 }, - { "addr": "0xc304b42ac6f84e3d15f29ba410b18eb4210d776f", "balance": 5000000000000000000 }, - { "addr": "0x4ad474805842fe51d92db6b55c0649e3bdc14303", "balance": 9950000000000000000000 }, - { "addr": "0xba894a69d51401ff128d3231fe5e9484eed84bc7", "balance": 182628571428571428571 }, - { "addr": "0x6a31f2caa375f6f83973ce08c067b270ea6b1962", "balance": 48000000000000000000000 }, - { "addr": "0x225ce622a343f4b5bf44a13732f18a9ce48ba7aa", "balance": 73000000000000000000 }, - { "addr": "0x3953785f68d01996969e6b25e574bfa50f915121", "balance": 95999510000000000000000 }, - { "addr": "0x943c68bdac8a778a94eebce3be31cf3b8432d5f0", "balance": 73000000000000000000 }, - { "addr": "0x2a055b93ffd425c4410454ca922d8a6dc6a6a82d", "balance": 400000000000000000000 }, - { "addr": "0x34f5bd4678b30d83a78f01c34f354f992adff2b1", "balance": 5000000000000000000 }, - { "addr": "0xae74d08f9729765b7ea0192b3dd70a491981eaab", "balance": 5000000000000000000 }, - { "addr": "0x9dd75c58ab25ae4db09f3bc7b6dbdb0d9147c44b", "balance": 3120210000000000000000 }, - { "addr": "0xcd78b3d4ad0b9f15f12c239197b04c8cb8196fbe", "balance": 10000000000000000000 }, - { "addr": "0xeaa00f688823642d511d7c56622e2ed54bac56e2", "balance": 10000000000000000000 }, - { "addr": "0x6739602632bfdbcc451f3538a0d7c2c83fbff926", "balance": 10000000000000000000 }, - { "addr": "0x33c31fc36cd14c7df33dd2a6217b92e77505e28a", "balance": 5000000000000000000 }, - { "addr": "0xa7fb5252bcfd186fa962d24f6cda90bbbd911997", "balance": 5000000000000000000 }, - { "addr": "0x2dd6cdc3a096d14eb8f4804201cd2f97a715ab20", "balance": 3000000000000000000000 }, - { "addr": "0xc938178feaf8caa0f119a141c7b92a399d400c60", "balance": 73000000000000000000 }, - { "addr": "0x08cfa2cc6166529b8af1001a8962ea703434aa8e", "balance": 173499200000000000000 }, - { "addr": "0xe4c4c29473697300f3396a7ec7f5d96bd30b04b5", "balance": 200000000000000000000 }, - { "addr": "0x3c377fe2eb35d045502ecf3daf2ca91b7ddc7539", "balance": 200000000000000000000 }, - { "addr": "0x8df1627785281aecca8b5affa04b0f92a810b091", "balance": 5000000000000000000 }, - { "addr": "0x9c1cb39cbd078d62a2439c047365ffc938c67d82", "balance": 72000000000000000000000 }, - { "addr": "0xd13725a6c7b857c566c0931ba8203340f725715a", "balance": 5000000000000000000 }, - { "addr": "0xba78ed958e486dd498f897e1f70728a07583bfc2", "balance": 200000000000000000000 }, - { "addr": "0xc8647f87ec426bd15301982e56c0afe85b1e21f3", "balance": 5000000000000000000 }, - { "addr": "0x4a70f4066a7fccdc0cc1bbb7f1d09ef954665802", "balance": 73000000000000000000 }, - { "addr": "0x96b48e06a9326ffa6fa278dd38777e791e7a0ff5", "balance": 5000000000000000000 }, - { "addr": "0x204890aada5a2f1983a654b66f6b07b29deead9d", "balance": 26585218160000000000000 }, - { "addr": "0xac2f8fd6d10fc55e600625563d612f7cbaaf6925", "balance": 5000000000000000000 }, - { "addr": "0xda4821f582e18c97526d4e2cf2164272c58a3a62", "balance": 45000000000000000000 }, - { "addr": "0xa3dadea933a4442679246f6414ffcb62dd6831bc", "balance": 200000000000000000000 }, - { "addr": "0xb8021189fe267bc63597a9d570b5e2227674d26e", "balance": 5000000000000000000 }, - { "addr": "0x7e30260bcf843ff13ac932804876a58886366beb", "balance": 25200000000000000000000 }, - { "addr": "0x54e7f037920451626be99877499aff4a2d265ae7", "balance": 1000000000000000000000 }, - { "addr": "0xb76fadc3e372c33433900bf5bb7c6e950e0e8403", "balance": 60000000000000000000000 }, - { "addr": "0x0ed968c47718153a5c2375a814baab57819aceb7", "balance": 5000000000000000000 }, - { "addr": "0xcf629c48913bfcf6fa9e43297a8348fa0f1d4eaa", "balance": 10000000000000000000 }, - { "addr": "0xed95af775ae2d463cb9e0a2b2d016c4eb9d4610b", "balance": 5000000000000000000 }, - { "addr": "0xedd0bf79043b5a13d7e5cae8bc2cc84b0cedd833", "balance": 10000000000000000000 }, - { "addr": "0xe2ffa42f39eb83d7f4b33e8ed421d62b2095969e", "balance": 200000000000000000000 }, - { "addr": "0x7f32b91a792d6218a2f207f3ccd0fe5d42ee584f", "balance": 173499200000000000000 }, - { "addr": "0xa0cab1dcf0497ae04e011a3c003ae85598a92fd3", "balance": 200000000000000000000 }, - { "addr": "0x21a324b1af0b9f863b1fabec45438d0b29265f19", "balance": 850000000000000000 }, - { "addr": "0x29ea0789daf8f04bdb4a5d555eed70a473cbe909", "balance": 23999880000000000000000 }, - { "addr": "0xaf2d1fb3c05b08547ece66c6776f68c205567615", "balance": 200000000000000000000 }, - { "addr": "0xa52a0306281d239afc52d1c5253b8a66dcda6427", "balance": 73000000000000000000 }, - { "addr": "0x958583d7e454bf8ef5f90a0f8fdc9423a748d6b7", "balance": 73000000000000000000 }, - { "addr": "0x196d7d4058835055d1f62978b9c0129db76b4d14", "balance": 100000000000000000000000 }, - { "addr": "0x1d2963afa927949d542a34ea86017bf938c17c8c", "balance": 8571428571 }, - { "addr": "0x0bab24fc1deea9425661ada3b5e115d5adcd6454", "balance": 10000000000000000000 }, - { "addr": "0x5719e59d083fe912b92e9715bf80b08cf773d736", "balance": 870000000000000000 }, - { "addr": "0x3c113f6f0b6182f781c81b7304ffa95cd101585d", "balance": 5000000000000000000 }, - { "addr": "0x21b59ec5b8a456c09147637a29c9f20bb8133ddf", "balance": 173499200000000000000 }, - { "addr": "0x06a4e06abae469a8e3a3df375c4b92053d333d74", "balance": 1000000000000000000000 }, - { "addr": "0x7c8a5290a6e2275fe1761f54cc30e75b46e56e8c", "balance": 167999140000000000000000 }, - { "addr": "0x580e56b6c0db36afb33a8fcd2d3bce8ffe74b683", "balance": 5000000000000000000 }, - { "addr": "0x2f6f0e20d1e313a8d693a6ae2bbd23a4acf231c7", "balance": 48000000000000000000000 }, - { "addr": "0x90d576fe72c53e3dd83e08236b692579bc8d2da6", "balance": 45000000000000000000 }, - { "addr": "0xdde9b4a2f7d3a4745044dd522feacef20cd5b743", "balance": 20000000000000000000 }, - { "addr": "0xa3ff15d2535945e5f66f703a3f2d535d0471c335", "balance": 950000000000000000 }, - { "addr": "0xf8f6ce202f166b9ab613942eedeef2723a0d45cc", "balance": 1585218160000000000000 }, - { "addr": "0x03bc56cb920ba31dea09830a7b56969dc2c71b29", "balance": 120000000000000000000000 }, - { "addr": "0x77fe9433f734a28ca594402675fa22f3b038873b", "balance": 5000000000000000000 }, - { "addr": "0xf446eacd5ad27a9cb51cb00601019c9970ca49f3", "balance": 1000000000000000000000 }, - { "addr": "0x3ddebaded3619823f7ee82b3524507eec19e2228", "balance": 20000000000000000000 }, - { "addr": "0x7caa5babae9396cddf674dccbc4188c1aa3b8ed5", "balance": 73000000000000000000 }, - { "addr": "0x9d0ae83d9fa02909855c6ada2b14673286bb23d7", "balance": 173499200000000000000 }, - { "addr": "0xc50732fa1cccb17576a51ee6a40f0525306fbc65", "balance": 59999690000000000000000 }, - { "addr": "0x09aea8bd26926e4fad00cce534454d65772600fe", "balance": 10000000000000000000 }, - { "addr": "0xf20144362e4c4ccc55ab5046222fba04a44ef190", "balance": 5000000000000000000 }, - { "addr": "0x21bf6bab89b5c6fb2b0110207747c4b46d7cc789", "balance": 30000000000000000000 }, - { "addr": "0x9f76925b815cb230646d3e5542097716156b9887", "balance": 200000000000000000000 }, - { "addr": "0x9385e3d5a9acddf04efea273fdb73be8da0d7a25", "balance": 182628571428571428571 }, - { "addr": "0x3507e0ef48922e38530a0a0166b71737e7b31f39", "balance": 24239880000000000000000 }, - { "addr": "0x7907d85d352ac4c6e6be2d408270cda686c0c4fd", "balance": 20000000000000000000 }, - { "addr": "0x1b9f96d4893d85fc2f536b71321803995bd84a92", "balance": 200000000000000000000 }, - { "addr": "0xdc7669e36b5a2bbd322f724a8431c380f7feb2c3", "balance": 73000000000000000000 }, - { "addr": "0x491bfd1fc1dd4f42bc767bb0612dd41c011152a2", "balance": 200000000000000000000 }, - { "addr": "0x648ec48016fc9d60d136ae7985ef94563084c9d7", "balance": 643150000000000000000000 }, - { "addr": "0xae280650e6bcb3202769ff302d0e557473aa2047", "balance": 1585218160000000000000 }, - { "addr": "0x9112b4d6feb03d112ba40ba12a6f193864d6a8bd", "balance": 200000000000000000000 }, - { "addr": "0xa330bf4fd21f93fb06beb240973119e4b7bf3283", "balance": 73000000000000000000 }, - { "addr": "0xb3693c13df96344cfeae5fdff75207ecf4238f6d", "balance": 5000000000000000000 }, - { "addr": "0xe1f580cec5a0dfb1f4a0157fe5b5a6d273512d80", "balance": 5000000000000000000 }, - { "addr": "0x73405d1c2811c2ccfb346aaa0a2da87c6991ee5c", "balance": 1520000000000000000000 }, - { "addr": "0xf6062f716886ed3dd8a36508c7bdb937b1f7ca15", "balance": 10000000000000000000 }, - { "addr": "0xea72ee920f003e2198c99ee118c91c96ee3935c7", "balance": 5000000000000000000 }, - { "addr": "0xdec6c374365fbff68929aeb624b96e787ae0026b", "balance": 5000000000000000000 }, - { "addr": "0x5d27791d18ffd78900ebd910353e6701356750e3", "balance": 200000000000000000000 }, - { "addr": "0x988a1486fd1e2faddb25b45497dabe02da4c24a8", "balance": 73000000000000000000 }, - { "addr": "0x199ff21a7634440e57633d07004dbaa5ebf9b2ea", "balance": 1585218160000000000000 }, - { "addr": "0xc967404193cdc4342e2a570cdecbb53de98fc48a", "balance": 5000000000000000000 }, - { "addr": "0x7a1b55db53744a1b32dd8467af65bd3f49c117b0", "balance": 218160000000000000 }, - { "addr": "0x55144aa34f1f7185f3ef334076530923d8cce381", "balance": 73000000000000000000 }, - { "addr": "0x618cbc1a011bd7f99424ecf8cd710143d4142519", "balance": 200000000000000000000 }, - { "addr": "0x370654a361e48ecf188450fa10d1907f2dd993dd", "balance": 73000000000000000000 }, - { "addr": "0x946accc2d5dafcad68be4170cf62457ee7275a85", "balance": 1785218160000000000000 }, - { "addr": "0x255e7fd6125f01152834ce8926c6f12c72e76e5f", "balance": 200000000000000000000 }, - { "addr": "0xee53c08f73dc2068e4a3be818c4be004f48ef9fa", "balance": 173499200000000000000 }, - { "addr": "0x91f10cffdeb9701f2a03d72ff309fb08857a9b49", "balance": 880000000000000000 }, - { "addr": "0x46ed39bb81f4d8ca38cb127201ce84cf52b5a607", "balance": 73000000000000000000 }, - { "addr": "0x849ff6cad2a2c39e977e887ddc32529e0b902a0b", "balance": 5000000000000000000 }, - { "addr": "0x2be00065ba05354c5c6a5e373302f22373363985", "balance": 5000000000000000000 }, - { "addr": "0x1c97425f16cb33dfa1c0059d36d808f271340f5e", "balance": 5000000000000000000 }, - { "addr": "0x8ba01bb37b01a972a4f338a6d3bdf299503be6ef", "balance": 5000000000000000000 }, - { "addr": "0x47475e787265e27e8628b7e39e7f0a3cf7a9e1f9", "balance": 1000000000000000000 }, - { "addr": "0x1d407738a8a1c1738ffa81f44f2dbcbe87c98794", "balance": 73000000000000000000 }, - { "addr": "0xfc41877ff307ba4f9d499c7847081dbf2698fc89", "balance": 1785218160000000000000 }, - { "addr": "0x899c7a0bf9c4e529a9f2f4ecf542e938a3827264", "balance": 5000000000000000000 }, - { "addr": "0x70fe0c13ffb15527a9ca0374268dae1b103686bf", "balance": 400000000000000000000 }, - { "addr": "0x10b05f41aef9ac78be9c7a598163a190748a4d44", "balance": 20000000000000000000 }, - { "addr": "0xffb58d45bd998a2fd3c1383d9de80cc2a95ee552", "balance": 73000000000000000000 }, - { "addr": "0x8759b5a7d8af9e45ba4dbfd3c3ca54353c1d6aa7", "balance": 53333060000000000000000 }, - { "addr": "0x8e59bdf00d049056b4c3d89372f5b43fbb167351", "balance": 200000000000000000000 }, - { "addr": "0x930167701ab3e1a9cebbef221b76ff1b13c9b664", "balance": 5000000000000000000 }, - { "addr": "0xce7fca4308f85c46c2b18fb96620e7a9975331d4", "balance": 20000000000000000000 }, - { "addr": "0x30d1c4f7783d572eaba2b7aaa1a79bd94f60678c", "balance": 1585218160000000000000 }, - { "addr": "0x84ec28854cd1854b7741b068800ce319a4ae73c6", "balance": 5000000000000000000 }, - { "addr": "0x9780c0a84c19cef9d0a255e967cb6245cc7aa342", "balance": 1000000000000000000000 }, - { "addr": "0xf7223b52e642e52c703cee40afd198f9be7d087e", "balance": 5000000000000000000 }, - { "addr": "0xe350acaeba7bf32fb97651cff73fbcabd3556645", "balance": 20000000000000000000 }, - { "addr": "0x0b96f7f717f43e83cbb5513edf1a960e9f51a59e", "balance": 909000000000000000 }, - { "addr": "0x31a85a7f40ad6f6474618c63619be7f1a41acca6", "balance": 173499200000000000000 }, - { "addr": "0x5897b6ffe7bb88c7455afd33eb498b026ea2b154", "balance": 218160000000000000 }, - { "addr": "0x4264e8b879a72c59b331018d58038f8b13aab110", "balance": 273000000000000000000 }, - { "addr": "0xdf2e4d726369906e301177d424f65585fb3a83c1", "balance": 20000000000000000000 }, - { "addr": "0xdc6c35a8c732509fcc62848039de5be5e887fcb5", "balance": 48000000000000000000000 }, - { "addr": "0x4d33378a44dbcf07a6e3dc24c924d9c28af5b1ac", "balance": 5000000000000000000 }, - { "addr": "0x26012a57516aaf169521564d8e24d66fbb9c5ad6", "balance": 23999880000000000000000 }, - { "addr": "0x1ef08784db3354ea9692a1f18572c48c8addbc84", "balance": 1000000000000000000000 }, - { "addr": "0x57856b3d5cf91213c9952d798c694b0fe6530056", "balance": 73000000000000000000 }, - { "addr": "0x74445ef8b44c4d804b2371a54a7fd6f142feb4ec", "balance": 23999880000000000000000 }, - { "addr": "0x3ea043730728b8eb029eb7f293ac3a43550617b9", "balance": 73000000000000000000 }, - { "addr": "0x38b462b18702b511974c1d927fd0f31227316419", "balance": 73000000000000000000 }, - { "addr": "0x1610ff857827fecc6acc186ec2a98c289552d31b", "balance": 200000000000000000000 }, - { "addr": "0x9bb4de4353f37bd83a7d9928bcf82b298d1e05c0", "balance": 10000000000000000000 }, - { "addr": "0x3100b11093652dbfae36307503f009766522d4de", "balance": 1585218160000000000000 }, - { "addr": "0x6a937a6d486f4fe70ec738950f31d7b1a3a1b50f", "balance": 200000000000000000000 }, - { "addr": "0xdd3c2227265959c1da0524ea58d9a5ff2c023c05", "balance": 20000000000000000000 }, - { "addr": "0xa9808977bd6fa7e4405b2e9d0c93b0d5fdfb1e60", "balance": 15000000000000000000000000 }, - { "addr": "0xa620161a58450419bddec4ea98ac5e8cabd363cc", "balance": 5000000000000000000 }, - { "addr": "0x58ef564d34353c1d635767a882ac4752538dc681", "balance": 10000000000000000000 }, - { "addr": "0xa0fb19373b259951a94e11f1ecb8ca08201e1256", "balance": 5000000000000000000 }, - { "addr": "0x81bd09a88fa4d41434564a6f7de5209c92efcb8f", "balance": 5000000000000000000 }, - { "addr": "0x096e54877caa46aafe758114f34f4c3d0356e893", "balance": 693996800000000000000 }, - { "addr": "0xd0987169f2135302b5eb5a1da8e8b1fb533adb62", "balance": 173499200000000000000 }, - { "addr": "0x5a8ac982e809abd57d7f91d82de4bc77ccec2777", "balance": 1585218160000000000000 }, - { "addr": "0x70b37a5ffb48fd6b7d0c401ee8f81177d2bf242d", "balance": 5000000000000000000 }, - { "addr": "0x004225fe84cea7d0271b726465154199d0607ad3", "balance": 200000000000000000000 }, - { "addr": "0x3633ab5ad5f21a62b6b4cfa9b4eac5f2d4c86fcf", "balance": 200000000000000000000 }, - { "addr": "0x057867d18f7ab56caefa5c54a5c735d66b90a438", "balance": 621454000000000000000000 }, - { "addr": "0xe3262a004b7c3885ce2fce260c4181a0399a7a3e", "balance": 23999880000000000000000 }, - { "addr": "0xae64bfb1c73070c295f254bab4006e3bcb5fe78b", "balance": 73000000000000000000 }, - { "addr": "0xa07cc29725e6cbc95c7152b29d64591d4c38e033", "balance": 1585218160000000000000 }, - { "addr": "0x81a162c4cfc76bc202f1b6719a9db79bb1cc56a7", "balance": 600000000000000000000 }, - { "addr": "0x979ac75fe4b71229bf700135297992d56e9407eb", "balance": 10000000000000000000 }, - { "addr": "0x6205fcf2726e2181702aef0023600cf63e5044c6", "balance": 1000000000000000000000 }, - { "addr": "0x7441c42d9e4ebf981f5629e91d9069605785724d", "balance": 5000000000000000000 }, - { "addr": "0x06831d66797313533837c58089d923a844dcc855", "balance": 73000000000000000000 }, - { "addr": "0xc039b40d89c2f7581449bac37c7437968ace62a3", "balance": 20000000000000000000 }, - { "addr": "0x33ca552a84b974a1a480961992fa476e83a643a7", "balance": 5000000000000000000 }, - { "addr": "0x9b2ed35d36e54915929c21c777a27aa648c89e06", "balance": 5000000000000000000 }, - { "addr": "0x066cab61566df1960783480d2cb07f45097cbbd3", "balance": 24000000000000000000000 }, - { "addr": "0x38e476696b12c87a0977238dc8a8dfc2875f1b46", "balance": 30000000000000000000 }, - { "addr": "0xffc75f46219b486621bffa8ee7e2979c4c6f7245", "balance": 20000000000000000000000 }, - { "addr": "0xceb5e5afc3b77cb33b1f51cb9814b3c1cdb03ac7", "balance": 910000000000000000 }, - { "addr": "0x11e3f12aa7408d89d981bf3187223cbae173033e", "balance": 688860000000000000 }, - { "addr": "0x86856408bc14c9cfaf3edcb4cb00ff76172e5e4a", "balance": 73000000000000000000 }, - { "addr": "0xbc70ae59f5bff95d5afd77b988a2559a8349b668", "balance": 1234391000000000000000000 }, - { "addr": "0x26e52e00880f655ebdf1257105c35698bdc7224e", "balance": 73000000000000000000 }, - { "addr": "0xb5108c4acd398ce68239484c44e6a121247b1abb", "balance": 23999880000000000000000 }, - { "addr": "0x233231b001f36d3c02789c4e1bebab5d8c041730", "balance": 173499200000000000000 }, - { "addr": "0x6bdec87008d5672ec0a47409f31dc1e58c0e0edc", "balance": 5000000000000000000 }, - { "addr": "0x9834a885bd3ba78c964f2319d5616419cfa1696b", "balance": 730000000000000000 }, - { "addr": "0xc152992be6e06f30e9de20381ea29727e4c6186a", "balance": 47999000000000000000000 }, - { "addr": "0x9f7344e2a224051f3584bf1bb9137f14d0d1b8f0", "balance": 200000000000000000000 }, - { "addr": "0x8132caf30077f83ac035ef0ee2c653d66add45c8", "balance": 200000000000000000000 }, - { "addr": "0x42c2488111f7b3cdc15c39881604d31694190e46", "balance": 200000000000000000000 }, - { "addr": "0x96bc6015ff529ec3a3d0b5e1b7164935df2bf2fd", "balance": 133330000000000000000000 }, - { "addr": "0xca9c58881f7893ee38965a431f4bb7b76cad6b5c", "balance": 200000000000000000000 }, - { "addr": "0x27e3730a07edea4b06971645d60f7891497121b7", "balance": 200000000000000000000 }, - { "addr": "0x74f81d27ea98410a7123bb12d72ed670e02bf843", "balance": 200000000000000000000 }, - { "addr": "0x48ac2bdf75c8159b3f0cc08946b9b544565d4fdf", "balance": 10000000000000000000 }, - { "addr": "0xc7d645c7a2250ad97ef34b6c697fef04d6c02aa8", "balance": 311998400000000000000000 }, - { "addr": "0x1d463bf1c07c2bd54cdf1589ff6af7035802edcf", "balance": 5000000000000000000 }, - { "addr": "0x23c0ca07c1ece4abd7e7b125979a46d4b7eaae30", "balance": 30000000000000000000 }, - { "addr": "0xd739ac28c31af393b21b322cca8d02560845ef0c", "balance": 200000000000000000000 }, - { "addr": "0xdd74ba29ffaa324a10065b58a8f89d98d25d4749", "balance": 5000000000000000000 }, - { "addr": "0xd0881251f04a79db45dbd48f0539db4fae649e91", "balance": 24000000000000000000000 }, - { "addr": "0xea2ec5688a85f97f656076755912ee1011ff7a62", "balance": 50000000000000000000000 }, - { "addr": "0x6b3527b7464f275536210af5ef1c0e8e45961d28", "balance": 182628571428571428571 }, - { "addr": "0x9aead68c872f8451ad3c0b5eadbb3ec1398e19f7", "balance": 23999880000000000000000 }, - { "addr": "0x5fd90e08a9941f7a649f4234bdd876786ab6c7a8", "balance": 5000000000000000000 }, - { "addr": "0xa8b6967781d524b7710e3f3ac0d126ad5c97dc80", "balance": 73000000000000000000 }, - { "addr": "0x26a0588987cc2229df39ecb1fecd5900e391094f", "balance": 10000000000000000000 }, - { "addr": "0x79bfddcce72320478b62bf83e8628829a387bd80", "balance": 409282000000000000 }, - { "addr": "0x9ae930e587837f4d970443dde1a0d39b531de0be", "balance": 72000000000000000000000 }, - { "addr": "0x0dd4945ce5f0646e69dd217f56a7381bd2f970c5", "balance": 200000000000000000000 }, - { "addr": "0x6f5e71c0265dc42ae10943c88396c34b0e9a44c1", "balance": 5000000000000000000 }, - { "addr": "0x1106738bf805783efd278056d4c0dc3d499535bc", "balance": 173499200000000000000 }, - { "addr": "0x3a729c905e93a73be8ae75d9003fa91eaf371681", "balance": 73000000000000000000 }, - { "addr": "0xcd8856106df835b5ea484e3acdfff1595a820161", "balance": 73000000000000000000 }, - { "addr": "0xaedb0257ecc0097fdbc7052003d17fcc5595b7e5", "balance": 5000000000000000000 }, - { "addr": "0x0c136f5106153df9ce8823e838818c2f696044c1", "balance": 24263000000000000000000 }, - { "addr": "0x35da0b9a98f35bc39120986455f8c9d0fe9303b0", "balance": 200000000000000000000 }, - { "addr": "0x67558a248a16142165b9f20d5c62a6aa2532753c", "balance": 65519670000000000000000 }, - { "addr": "0x2b3e3e0cac0a2195f134f0c3e25732a824e64d33", "balance": 20000000000000000000 }, - { "addr": "0x85027961223a5acc6b43bb335510d84ddea1877f", "balance": 1585218160000000000000 }, - { "addr": "0xbaa9425dca11360d07bbb619217e600f6cafb8a1", "balance": 73000000000000000000 }, - { "addr": "0xa5dd2d43855da6e3f55b255e8bcfc3a352cc7d67", "balance": 880000000000000000 }, - { "addr": "0x5b6d4394ee81ace14efa3ed7e71ecaa6b01c8b05", "balance": 5000000000000000000 }, - { "addr": "0xe95adf63d5348b826466e105249392cece807c73", "balance": 414986331000000000000 }, - { "addr": "0xe4834ac452fdf4425e4e45191f254a2f91b1768f", "balance": 5000000000000000000 }, - { "addr": "0x2e65215ed32c5c70394d45b396989212fde28063", "balance": 200000000000000000000 }, - { "addr": "0xd2e30e6acd08e6152434429cc1c6c3a78b9f845c", "balance": 73000000000000000000 }, - { "addr": "0x1493743f4d624ff7d778613376a360db2f98a711", "balance": 7245218160000000000000 }, - { "addr": "0x4648ad11e09220ab6a29f9d8b74da446484239e6", "balance": 399990000000000000000000 }, - { "addr": "0x75a5113e513d76c92128a53574d91b2c0d0e9da6", "balance": 173499200000000000000 }, - { "addr": "0x4bca53cd41a014304614d2b3046f7f15e59c75ef", "balance": 23999880000000000000000 }, - { "addr": "0x246e1fe10c267d4a0638a6dd267e158bf9121f1a", "balance": 288000000000000000000000 }, - { "addr": "0x5ab82bcab99a409d63a2beb804a646eab58f537e", "balance": 173499200000000000000 }, - { "addr": "0x2e653915a83b943ed9bb2778200ed52edc004d65", "balance": 73000000000000000000 }, - { "addr": "0xf2b18cf0d4352e8d9839f196d2267237b0537049", "balance": 96440000000000000000 }, - { "addr": "0x9e71eb7fcc007823ff5a91c06be9edc4a0347fee", "balance": 50000000000000000000 }, - { "addr": "0x9dc3ba3db665015af79f76b453bc13884e3e21ca", "balance": 5000000000000000000 }, - { "addr": "0xc31d120ac31a6a2a6d9db6332896ff8cef2c2466", "balance": 73000000000000000000 }, - { "addr": "0x745cf587fc961bc3de15d2e971e5d872325b2cda", "balance": 73000000000000000000 }, - { "addr": "0xd8c581f892253df1371693ca35252389888ce3e9", "balance": 200000000000000000000 }, - { "addr": "0x727f4a4984a500918314e631e30cd12b2a96be7e", "balance": 23999880000000000000000 }, - { "addr": "0xb5602f71c9d0b23ff9c30fc15ab83de5254fc42f", "balance": 173499200000000000000 }, - { "addr": "0xd8ba43ddb19cb7022b0c019b72e5bfa1798c5c22", "balance": 5000000000000000000 }, - { "addr": "0x9017c30feeea2f2d1077133d17f7c93e12228de3", "balance": 5000000000000000000 }, - { "addr": "0xb785c95f3c711456d72fd32fd0571fa8481dc5ca", "balance": 23999000000000000000000 }, - { "addr": "0xca887f1affec4670da37bdf2a8bdb32d706634f4", "balance": 42000000000000000000000 }, - { "addr": "0xd412943172e67f877c2d215be6bede1d99b30644", "balance": 120000000000000000000000 }, - { "addr": "0x2656c49a99056141eaa7435e12a7a235af3443a8", "balance": 173499200000000000000 }, - { "addr": "0x89b5eae36983a28283fa4e230faaaed39c504776", "balance": 200000000000000000000 }, - { "addr": "0xeef04bfaf08a5b8b4aaf8d2e01f1519e507c9de6", "balance": 499000000000000000000 }, - { "addr": "0x4f71d67322f7f97944c26a917acd990b793e0f2a", "balance": 200000000000000000000 }, - { "addr": "0xbe060fec25745dd3f6be66df92dc9d54d74b66ef", "balance": 1000000000000000000 }, - { "addr": "0x852849064c4ffbff46f94c49fda058c2d6fef946", "balance": 47859090000000000000000 }, - { "addr": "0x5c370fd28adb0d83365def036a2a751e6e13d44c", "balance": 5000000000000000000 }, - { "addr": "0xa42b71200cef75ece1bbc970f619dc03a598f2eb", "balance": 5000000000000000000 }, - { "addr": "0x5f93ba1669af4a6696034d47f5d03dfe2db99c56", "balance": 73000000000000000000 }, - { "addr": "0x0c2a23ad30d87479b88619bcb8b92450fa9017c4", "balance": 10000000000000000000 }, - { "addr": "0xca83fc0097866994881ee5b2266cc6954eb03557", "balance": 200000000000000000000 }, - { "addr": "0x0668b61475de75bfa16dc1a2b9f02f2b59485af0", "balance": 23999880000000000000000 }, - { "addr": "0xd8bf077dff011cd60591e3aa78ecf5c11a7ce9cb", "balance": 5000000000000000000 }, - { "addr": "0x80c8cac19441766af9384a8155bd42a926e3ff45", "balance": 5000000000000000000 }, - { "addr": "0x79dc6378695635920daf5c2f6c450d5e1b299f42", "balance": 5000000000000000000 }, - { "addr": "0x1b030579c97fea304504b7a7d72982b5a44aab54", "balance": 10000000000000000000 }, - { "addr": "0x57e1687dfc1cdf305c82b1951c47c17ff869cee0", "balance": 30000000000000000000 }, - { "addr": "0x29545763bcc782677c90880d412a79e1d3d9b2bf", "balance": 5000000000000000000 }, - { "addr": "0x615c48b50da330323fc6961e0dabe1b8dfe79f19", "balance": 200000000000000000000 }, - { "addr": "0x8cadec491304366d22de2bcd43d14853098a30ed", "balance": 20000000000000000000 }, - { "addr": "0x6288263202df47ef885d474318d7b40a656226fd", "balance": 200000000000000000000 }, - { "addr": "0x25382e1ca2fce2341b2fd4243f059b3b4e3a10b5", "balance": 5000000000000000000 }, - { "addr": "0x26140b1646ec52f9223963979e3b9de5001332da", "balance": 200000000000000000000 }, - { "addr": "0x1586beb2f1134437b3ea9ade28894e003156aac2", "balance": 10000000000000000000 }, - { "addr": "0x139c831e1ce3420926e7159b631a3b9e55c861a0", "balance": 35999820000000000000000 }, - { "addr": "0x582ea16bd0819d1713ecbc0437bd13e6522ffdb7", "balance": 1585218160000000000000 }, - { "addr": "0x5acd6d1dbcb1de9a167bacd1f32c104714969433", "balance": 5000000000000000000 }, - { "addr": "0xf4d4993aa5c9f79b24c4378b50ea0c82f9b5dd8a", "balance": 20000000000000000000 }, - { "addr": "0x22280c08962d12aad63f94987e5b1f0fe7105ac8", "balance": 173499200000000000000 }, - { "addr": "0x1bfc0c5fc8c48d3465217511def1b4234fa7f48d", "balance": 20000000000000000000 }, - { "addr": "0x3386977d14b177cf4f711f08851ac8252dc9b007", "balance": 20000000000000000000 }, - { "addr": "0x38295902971735ff36e3b2bb13266959f2d08509", "balance": 200000000000000000000 }, - { "addr": "0xac5e8fec1513caaf4de88176d7c22d72f8ed7a6b", "balance": 73000000000000000000 }, - { "addr": "0x1d9e96f8443643858e5fa5cccd245e259e592b34", "balance": 73000000000000000000 }, - { "addr": "0x81f8217091fb49796f59f3c9809d1a7a9ff0cebd", "balance": 400000000000000000000 }, - { "addr": "0x32c612780c29a4dc247fc3cf362870d83adc08df", "balance": 5000000000000000000 }, - { "addr": "0x805ef1c4f69fcc087a1576b42207919b6293369d", "balance": 146000000000000000000 }, - { "addr": "0x43f8827bd71fc7821a1176752e42c6a35752a56c", "balance": 200000000000000000000 }, - { "addr": "0x21c0fa7a9ce6cd723f5ed1270e6b44a089b874f4", "balance": 200000000000000000000 }, - { "addr": "0x3613cca5bcc2d07533cbd67513e3143be92af7a0", "balance": 5000000000000000000 }, - { "addr": "0xdb5f771ee846501264ea025b1c5cfba9093b69fc", "balance": 73000000000000000000 }, - { "addr": "0x33ebb60176da6c50f67b54cf56ab661e6d41527f", "balance": 500000000000000000 }, - { "addr": "0x8bbaea19a0a59f65864e5a7519a055d15adaf722", "balance": 10000000000000000000 }, - { "addr": "0x6792742a79b93cc90b61f9fa35467d79d70d716b", "balance": 200000000000000000000 }, - { "addr": "0x95cc5b4a32a9815b74a51418b5b9f1f62ab5e1ad", "balance": 200000000000000000000 }, - { "addr": "0x790a792f85fe5d4151e597bfcf91a5c477ddb45c", "balance": 173499200000000000000 }, - { "addr": "0x7296b09fc76103ac7307ff64ecba61724f320fba", "balance": 5000000000000000000 }, - { "addr": "0x94d35e27d69f7e5ba1ed09e9ee8dae4674a17945", "balance": 5000000000000000000 }, - { "addr": "0x4e8817daea57f4a881272da2e020052fc1da98b0", "balance": 5000000000000000000 }, - { "addr": "0x600ccb10e9ab7f9a54368ab92f31c40dadda2d35", "balance": 200000000000000000000 }, - { "addr": "0xa9f232850e8ff5049bdd3022b90a46889901466b", "balance": 870000000000000000 }, - { "addr": "0xaee2260598df13089ac015b4c89624a2685b5d91", "balance": 1585218160000000000000 }, - { "addr": "0xef17ec299aed97b580806234efee5ce4e5304a97", "balance": 47999000000000000000000 }, - { "addr": "0xeb6749338bf7d2fa246c44cc2684596bb971d6ef", "balance": 173499200000000000000 }, - { "addr": "0x97a551d13a6824472222085fe55fe5339bb8a6a1", "balance": 73000000000000000000 }, - { "addr": "0x5bb18edff363654e4d64282ffe6fe68a96af1e18", "balance": 273000000000000000000 }, - { "addr": "0x4cf148f97060da1b0bb2590d4de74cd3a0cd3c57", "balance": 200000000000000000000 }, - { "addr": "0x4a756d224af72c90fdebb50b6bea1a67627ff903", "balance": 5000000000000000000 }, - { "addr": "0x154b7f2aa381519b73e3f0a8991ce96d08c8300f", "balance": 20000000000000000000 }, - { "addr": "0x6c62923af79c9005f85edf6c65ccae44f0c8e78a", "balance": 73000000000000000000 }, - { "addr": "0x77bf1659e901ae8f5a2016a96302fc584c99df44", "balance": 5000000000000000000 }, - { "addr": "0x812c72b8f04c9ac35b45e71fbbe26c23b5c0abae", "balance": 55909850000000000000000 }, - { "addr": "0x1db2b71e070b42b5fe1210dacbbc3482accc32fb", "balance": 10000000000000000000 }, - { "addr": "0xcec3a01728309f569a015618df7934931e684263", "balance": 173499200000000000000 }, - { "addr": "0x5b878e099041cd169524c65fbc648cb812352ebc", "balance": 200000000000000000000 }, - { "addr": "0x038921cf7d36db1c8a51ddeac22bcc571bdbea4c", "balance": 30000000000000000000 }, - { "addr": "0xdc5d26d98b80294ec21d9eb3cae03e0d8b469a8e", "balance": 10000000000000000000 }, - { "addr": "0xadad5b847d04a49daab145c7c839241a29150224", "balance": 200000000000000000000 }, - { "addr": "0xc98462e5ce74d85a384741b5a1d8c45dd8081f12", "balance": 73000000000000000000 }, - { "addr": "0x47e9abe62ad3ce155683a1deb6e63e90120a6984", "balance": 5000000000000000000 }, - { "addr": "0x2c567e8f9e9aa6967a4ce8335cf57db81adcfa56", "balance": 73000000000000000000 }, - { "addr": "0x946ceea252cc101e9ea094acf615b8122b0bbd42", "balance": 73000000000000000000 }, - { "addr": "0x32aadac6e2f61b5c2160e120997974b875e36edc", "balance": 18160000000000000 }, - { "addr": "0xe9b8a70697f4d53d2661a6de4b27020957c05237", "balance": 23980000000000000000000 }, - { "addr": "0x78a415d58f3c2376743e8a2faa1b3456a2fb5304", "balance": 25000000000000000000 }, - { "addr": "0xcf4eb4ca0731d5c47e59681dc8d7263598ffe8b4", "balance": 5000000000000000000 }, - { "addr": "0xe2aa00c7f914508dcfe8c24b570a8885b38a19c2", "balance": 135000000000000000000 }, - { "addr": "0x58e251613c4393e786955db07fbc4d8c9a6a78e5", "balance": 200000000000000000000 }, - { "addr": "0x4253b6efc2049dce6b72e3ed3565a42dea211bec", "balance": 5000000000000000000 }, - { "addr": "0xbb05396c8e31061ae7940ef03f9458c0f511ee07", "balance": 510000000000000000 }, - { "addr": "0x4d95fb2a051120fcbf3f15566d5fde62b101f066", "balance": 23999880000000000000000 }, - { "addr": "0xf9c216586344728d45f58e27cc2d2e2ff38d63a0", "balance": 20000000000000000000 }, - { "addr": "0x7bd0b8117764e1789988a5d2a133f318a5752118", "balance": 15000000000000000000 }, - { "addr": "0x42b7555abe2f10a44f60c21468bc5223f31c2d2c", "balance": 200000000000000000000 }, - { "addr": "0x301bf709f7f511fd8df3a165bf270dca2fde8502", "balance": 200000000000000000000 }, - { "addr": "0x4cbc2b34a4c339b4cadfb1e74a7f85a4352ac6d5", "balance": 200000000000000000000 }, - { "addr": "0x4634b5ee77d45e9cc0646ea56b3172e5184e3ac2", "balance": 800000000000000000 }, - { "addr": "0x407b4f2f41249cd68e67d1c3968c3c8b5c797ffd", "balance": 273000000000000000000 }, - { "addr": "0xda0103a12bcb7a7b888f606745fb4265e374ddaf", "balance": 400000000000000000000 }, - { "addr": "0xaaa6dd300eb1aceac74757822fc46e0e5e691091", "balance": 760000000000000000 }, - { "addr": "0xf070f4126090579f4e86346852441202618ef8c0", "balance": 5000000000000000000 }, - { "addr": "0xcb82c5f377efdc8cabfa3fa5ab12a5d056189199", "balance": 200000000000000000000 }, - { "addr": "0x98c99685ac385f36264d67468ac75e9b6e7a50cb", "balance": 73000000000000000000 }, - { "addr": "0x7a2aeb4d050a0aef815e12844b4c49a6f97809ef", "balance": 200000000000000000000 }, - { "addr": "0xf843ca594c91581950df94217fe0124b85a74d61", "balance": 200000000000000000000 }, - { "addr": "0x1857394e1839839078439cbf71a6acb622b3ccfd", "balance": 73000000000000000000 }, - { "addr": "0x403d76e891b239833b8d140c62ff819821b46e54", "balance": 73000000000000000000 }, - { "addr": "0xb6b372838f4db1a5c825699379282acb8441a02c", "balance": 200000000000000000000 }, - { "addr": "0x858bca305b97aa421356e25f8a519baa67f43b48", "balance": 10000000000000000000 }, - { "addr": "0x3fcdc4ac9db774c1c92c22112162288aed8be3b1", "balance": 273000000000000000000 }, - { "addr": "0xd603d8664e8b88aae3b69133d50a99941b4726f4", "balance": 23999880000000000000000 }, - { "addr": "0xf434fde093d9054836b653878951f341180097f6", "balance": 750000000000000000 }, - { "addr": "0x7d7873766e9ed9fcd47151a1c26ab99f47625a43", "balance": 10000000000000000000 }, - { "addr": "0xc82b73be5f99670675f073c128b7b46a23fe9e70", "balance": 200000000000000000000 }, - { "addr": "0xaf9bd853d690289576ee4405e2100f2165466db3", "balance": 40000000000000000000000000 }, - { "addr": "0x793e2a268d7fc8abb47825822416e7b2750a7c6d", "balance": 200000000000000000000 }, - { "addr": "0x5928175e934f8ce963019dbb48ca88fb38c9624e", "balance": 23999880000000000000000 }, - { "addr": "0xed4ce41e51805072d52562df80dc8b75151681e4", "balance": 200000000000000000000 }, - { "addr": "0xe7f2ed220510e1753eecc6f2054fedfcd427ec8f", "balance": 200000000000000000000 }, - { "addr": "0x86ebb1c45f9a5c03517174cf7779e1f5fea0569d", "balance": 273000000000000000000 }, - { "addr": "0x2b8bf2ed7e129eea7618e75d7454efe64948c884", "balance": 200000000000000000000 }, - { "addr": "0x695d91c1274facaaedc8ccc149d715bf76e48c35", "balance": 73000000000000000000 }, - { "addr": "0xad0abce8e6eb8d19a5e22f5fdd19b4adc2f725c7", "balance": 5000000000000000000 }, - { "addr": "0x4dfe7013672e90f8a019d4420d5f48d9f549c269", "balance": 5000000000000000000 }, - { "addr": "0xb12bb08f6c5568e5aaa682f719155a2f2db4ada0", "balance": 73000000000000000000 }, - { "addr": "0x623277a2980d966af7218451cfe1d4661300d741", "balance": 20000000000000000000 }, - { "addr": "0x7dc03ce6da14a3c1fef491ad4c46c62891d09a31", "balance": 33925830000000000000000 }, - { "addr": "0xe679933d8791a13199d320906b449e7d7244c24e", "balance": 5000000000000000000 }, - { "addr": "0x7609dc752a8fc7c3dab9de7fd19189fbaaf8a8f4", "balance": 1000000000000000000000 }, - { "addr": "0xbdd8f3566d1ce4f8052c3084d5d7f1b75a60d5eb", "balance": 200000000000000000000 }, - { "addr": "0xce647b1e0ecf5ea114ace464f31ec879e90cb902", "balance": 114821000000000000000000 }, - { "addr": "0x2ff10231c358914a17e22646129f34a105e97854", "balance": 73000000000000000000 }, - { "addr": "0x07ed7ace0166fec699b7fc4462106dfef97b8963", "balance": 73000000000000000000 }, - { "addr": "0xf56b53d15114dfdd74145e1dc4a84539680490fb", "balance": 35999820000000000000000 }, - { "addr": "0x44554534d845a11ae167fc70c3f8556f7794dcdc", "balance": 173499200000000000000 }, - { "addr": "0xe02cd974e1e4ef8542bb33b80576ebaaa6a29cf8", "balance": 200000000000000000000 }, - { "addr": "0xc7ba7fa006f95e17b5c94b0e8c6d375b08166d00", "balance": 20000000000000000000 }, - { "addr": "0xcee62b9ab38e9cecf562f502dd7e68432af466be", "balance": 173499200000000000000 }, - { "addr": "0x1e653a7636d1846fb46366eba05c78f167744980", "balance": 73000000000000000000 }, - { "addr": "0x288558b7ca3efa0e7c5e3706d1855e23319e51ef", "balance": 239998770000000000000000 }, - { "addr": "0x656c51c32a7da05e825e3187c39aefc604fca351", "balance": 1985218160000000000000 }, - { "addr": "0x4ab5a902d7e7460677470d44e881ac61f12bd4f7", "balance": 65000000000000000000 }, - { "addr": "0x666a295b4c29fc3123204cc4eefb624eeb4f2400", "balance": 10000000000000000000 }, - { "addr": "0x39ac2abbb719775b0e6e64117c838cada9e2b795", "balance": 140000000000000000000 }, - { "addr": "0x2343ed5b4dd8729596bfd86b715797711106e53c", "balance": 200000000000000000000 }, - { "addr": "0xaf7115c6ca156a6d4cf106dbf95fbc5397378b1a", "balance": 200000000000000000000 }, - { "addr": "0x9e61161094652fe55efac0472e62507c5cbc85bc", "balance": 200000000000000000000 }, - { "addr": "0x9f6453aa893f214b5c9f32f4ccc9b98174720f9e", "balance": 395000000000000000000 }, - { "addr": "0xdc79250126e9d0883416413a19722b90c0439b16", "balance": 1000000000000000000000 }, - { "addr": "0xc0c11094b2c745f988c3391111e5aa45b68fe468", "balance": 73000000000000000000 }, - { "addr": "0x037ddf22a14f6092e813489e1305ba6b4fc8496d", "balance": 200000000000000000000 }, - { "addr": "0xdf9414c6c02a77c4edd5be9dc951d5c7adf0cddc", "balance": 10000000000000000000 }, - { "addr": "0xf1581663fc43b02e6125519cf643378f8077168c", "balance": 5000000000000000000 }, - { "addr": "0x5a3f12496bb038bee549abd3218e9414c49b01d7", "balance": 5000000000000000000 }, - { "addr": "0x26f11bed84635fda25a5f19ec07959b779919dc0", "balance": 273000000000000000000 }, - { "addr": "0x46c522ad7a8f9834e6d0fd35224cc0b5e93d154a", "balance": 717000000000000000 }, - { "addr": "0x79ba404f7010369260ff2d4edace1472ae7a23e8", "balance": 10000000000000000000 }, - { "addr": "0x913391cff1e7c3842482b5b5f6fd59dcde1ec40e", "balance": 1585218160000000000000 }, - { "addr": "0x4b5ed7d18699baef26b5d419a924a9811fbd9851", "balance": 73000000000000000000 }, - { "addr": "0xfdbfeed6cbb5b20f88cd1dddb2468fcbd0470e37", "balance": 20000000000000000000 }, - { "addr": "0x4191abd8e2005c58a2dfa3990c1385cae47d4281", "balance": 5000000000000000000 }, - { "addr": "0x95c7b5ae2afb4508cbd7b5779fe9d674be56c4d8", "balance": 73000000000000000000 }, - { "addr": "0xccf8ccdef13b9294b792d42e329e6dd2b253ef96", "balance": 200000000000000000000 }, - { "addr": "0xe1d97fa14cbef1df48e2ca175e98f12ddb485f35", "balance": 5000000000000000000 }, - { "addr": "0xbb73de654a5e678f5b58617b172e506703c323d3", "balance": 73000000000000000000 }, - { "addr": "0xcb3c8d76fad4b5afe3c01b8525004f26dfd8ea74", "balance": 173499200000000000000 }, - { "addr": "0x2a87d62c13a7a4dbd2a3a23a6f05207f4d3fcf27", "balance": 5000000000000000000 }, - { "addr": "0x14c149836b14993f6fce4a9a06c56820e1b15cc0", "balance": 10000000000000000000 }, - { "addr": "0x21183a562384bcf3d7bd32a2c22811c6847621f2", "balance": 10000000000000000000000 }, - { "addr": "0x59bd14777d28094b21cb60a5c2773971edb17273", "balance": 670300000000000000 }, - { "addr": "0xbf1e23b51e7c1008fa3115748978b1698d8a810a", "balance": 5000000000000000000 }, - { "addr": "0xd4d576b6a46105a7bfe3f9ea5a06af1ada1d0286", "balance": 10000000000000000000 }, - { "addr": "0xbe40a2c7df532d40e24bf722f43223a745724a83", "balance": 73000000000000000000 }, - { "addr": "0xcb8df586333ec854e32ef8e80b3a89d114ac5448", "balance": 73000000000000000000 }, - { "addr": "0x510197ec6f432908223fa6ae0ba231f867456c33", "balance": 3890000000000000000000 }, - { "addr": "0x70ef6020731e18bddb937769c0bded0ff9bbfbc9", "balance": 173499200000000000000 }, - { "addr": "0xe27f638b37397c0669f9201973312418aefbc0b0", "balance": 73000000000000000000 }, - { "addr": "0x2bb7381dae6d1eb2b9765ea85a930ca3dee85f6a", "balance": 200000000000000000000 }, - { "addr": "0xeac11a98ac20562c92256e604992717139d58e49", "balance": 1000000000000000000000 }, - { "addr": "0x692a3beece99cb8c412e099e2d56e9295e0f5d54", "balance": 1000000000000000000000 }, - { "addr": "0xbc7022877255dfc026574686816931a794fa8e5f", "balance": 173499200000000000000 }, - { "addr": "0xa668b8ccf0008fba90649856a2953b06bd726e4c", "balance": 100088000000000000000000 }, - { "addr": "0x45ec8f91807c97495d8fb7e017d2bee41de6e8d8", "balance": 830000000000000000 }, - { "addr": "0x8f4e9d43583b7d4b8cff5a027220e36401c12b8e", "balance": 7398820000000000000000 }, - { "addr": "0x714613bf5daf8ea2868206eb30e733709ad1fde0", "balance": 5000000000000000000 }, - { "addr": "0x125cc908fb438e08e40216af6e98247837240067", "balance": 40000000000000000000000000 }, - { "addr": "0xf705747e57b3f53daa8746b67065327127c2c816", "balance": 73000000000000000000 }, - { "addr": "0xe699e00853b8f7fe6766b4b55023c56deabe20b8", "balance": 200000000000000000000 }, - { "addr": "0x638d396fab90dda702f8cbb2819ce9b3dd8861b1", "balance": 5000000000000000000 }, - { "addr": "0x3828fb5be73c47e8418e0707eb0d33fdf1669bf4", "balance": 73000000000000000000 }, - { "addr": "0x778a81fd2ee977ec79ab9bad5331a04200a9c330", "balance": 30503780000000000000000 }, - { "addr": "0x07e263cb04d1049e6d63d65e999bbec47050954f", "balance": 73000000000000000000 }, - { "addr": "0x69399699409b2ad03437db31a5de854c84d26559", "balance": 200000000000000000000 }, - { "addr": "0x37d7ca064363d8383aa7d5d22fd85905e6340c8c", "balance": 13333200000000000000000000 }, - { "addr": "0x3976b711394981c976931abf34a0d93aedc00a70", "balance": 479997540000000000000000 }, - { "addr": "0x30f881c9953b8cc32f90f5f4b30facf6b1f168cc", "balance": 30000000000000000000 }, - { "addr": "0x170f554e1e71a5390354d5bee34c0617b741840a", "balance": 200000000000000000000 }, - { "addr": "0x5916e743da662f5ed4fe2c6dbd421c1c7451c234", "balance": 10000000000000000000 }, - { "addr": "0x7c433d81ad35ccb159d3338b9a7ac12b881cd11c", "balance": 5000000000000000000 }, - { "addr": "0xbc7fb88cbb19ad544a0ff461f39e931fa9a634f8", "balance": 8910000000000000000000 }, - { "addr": "0x7e48555451c7e46afe4ee81e95069440bea6d0c8", "balance": 5000000000000000000 }, - { "addr": "0x1fb69d712bd03e1606fa4003f33ab492c8e8d6ba", "balance": 192000000000000000000000 }, - { "addr": "0xa5f7f88635f10523c39c6a9c81bc8e6016a44ba1", "balance": 332638280000000000000000 }, - { "addr": "0xe36c7237992d409bdb1811187fdd04bfadcb5af9", "balance": 173499200000000000000 }, - { "addr": "0x4418c57a5ca0b8e97e9fd5537ad00452169d6f7a", "balance": 73000000000000000000 }, - { "addr": "0xc9aa0c129628ee1365a1ade93eca37a76f094382", "balance": 60000000000000 }, - { "addr": "0x78765c3c302b07109c58a29be3cf698d1f3f74c8", "balance": 750000000000000000 }, - { "addr": "0x60204dc53b997c37b4bf84b920000a5a9a568e19", "balance": 200000000000000000000 }, - { "addr": "0x66e26ce8ec68613f80cd052f0087ceeff8c0e00e", "balance": 5000000000000000000 }, - { "addr": "0x041efbc812c6d5919e9b77144c77e05ad8fceb6c", "balance": 73000000000000000000 }, - { "addr": "0xdd0eace873a8813ced8f4b516112bb0e513e8565", "balance": 73000000000000000000 }, - { "addr": "0xab4e23ba3a1d2169bc4cee440f303c2b6b30cf95", "balance": 73000000000000000000 }, - { "addr": "0x5e5129a957a0a530de3d927c743ef2566ae30a57", "balance": 812300000000000000 }, - { "addr": "0x46b8689d29b00015d87c91caace2acd740a57aca", "balance": 5000000000000000000 }, - { "addr": "0xde7353b9933d245e905a92a37d08e80f00631316", "balance": 5000000000000000000 }, - { "addr": "0xa2ff7c567051b62e53dcfe7d9e94c99cfe48af92", "balance": 400000000000000000000 }, - { "addr": "0xe34bc30f114f294a6000f310515b4fb421e991dd", "balance": 200000000000000000000 }, - { "addr": "0x25a98fcf8059a11824b5a9affe21e67295ded221", "balance": 1585218160000000000000 }, - { "addr": "0x41b4f5f40c229fae20ad18bb584ccdad77438b9d", "balance": 200000000000000000000 }, - { "addr": "0xa11027b5a556dcc95f798a40ebc060ee216c482f", "balance": 24000000000000000000000 }, - { "addr": "0xacdefda6a62ed3580f3e3d246af85228f10611f6", "balance": 73000000000000000000 }, - { "addr": "0xa9f284c0133cf73ff682402e94093fa6d016a51c", "balance": 73000000000000000000 }, - { "addr": "0xb959859ea1ae4501e287234e87bf793b3898b36e", "balance": 200000000000000000000 }, - { "addr": "0x0920c508f39ef5452dece454fdeffd0e94c51d67", "balance": 10000000000000000000 }, - { "addr": "0xea38fc4e5882b2c889324bba1be085e73010370b", "balance": 73000000000000000000 }, - { "addr": "0x015eb5b28588263d411e61fa7538e0d6a2b13a36", "balance": 880000000000000000 }, - { "addr": "0x99b1e91a69498ebc31b9281367d2f8654ce4dfda", "balance": 10000000000000000000 }, - { "addr": "0x23c5a5859d3769007b3e4ca4f15e643143f227e8", "balance": 20000000000000000000 }, - { "addr": "0xc9f955ad4b15a411f48a81d74461637ff9026ac7", "balance": 5000000000000000000 }, - { "addr": "0x56c50005ef4922b22f1cd46b5962ed95063521a3", "balance": 5000000000000000000 }, - { "addr": "0x7ba5a0c65290c67079a2ff9fde169327eaec25de", "balance": 5000000000000000000 }, - { "addr": "0x5661e1ad3a982c49ee96760d04b8b1525242ea06", "balance": 73000000000000000000 }, - { "addr": "0xaa9fa285b10d2062ea32368b37b59a83c9a9b200", "balance": 35759820000000000000000 }, - { "addr": "0xd154a4942c63a1ab9da293c53003f11dd0f441aa", "balance": 200000000000000000000 }, - { "addr": "0xc08b0fd09ad772c127ce616e2be39d4fe676b214", "balance": 666650000000000000000000 }, - { "addr": "0x255159cd818c5fad6c2b65db1aefe43029332a6e", "balance": 73000000000000000000 }, - { "addr": "0xda482f8e7f3b49c1e5ce74f15d0d222a2185270e", "balance": 200000000000000000000 }, - { "addr": "0xed657489d17cad877d378329b3d382b6e0d2b93d", "balance": 5000000000000000000 }, - { "addr": "0xa6c5a2f6e36f61032f1f865a13ed53c62050c656", "balance": 5000000000000000000 }, - { "addr": "0x8f81e6500f1cee6d246a7dafb1fb038f6b8be7e2", "balance": 400000000000000000000 }, - { "addr": "0x997904c98e9a5a5b8dbb59f00e111b7b4e42dfa0", "balance": 10000000000000000000 }, - { "addr": "0x29ed191612485ed6c73144dd14dbfab5bf96e4ff", "balance": 6000000000000000000000 }, - { "addr": "0x8459a34170029ecf5a5c881a998d64a44844964b", "balance": 200000000000000000000 }, - { "addr": "0x8935bb55aaeb7ecdcf31f1740c15e88824419970", "balance": 10000000000000000000 }, - { "addr": "0x0d7342dfec10cc933198bbdee1222a3ac48190f4", "balance": 25324740000000000000000 }, - { "addr": "0xea9d20d56c3af7c91d14f549b4fcf91fee63ab21", "balance": 200000000000000000000 }, - { "addr": "0x900b725224142c1dc2c837f111d67eb715f29f07", "balance": 30000000000000000000 }, - { "addr": "0xed53036721b299a5d8d766a75fb9e4ecf90d4038", "balance": 4948050000000000000000 }, - { "addr": "0x9093b54087555c4e18f21f9b4fdc92d4bf4abee2", "balance": 30000000000000000000 }, - { "addr": "0xd8009ef731f31b10b65c7d9cc0495dc8bab94e80", "balance": 200000000000000000000 }, - { "addr": "0xb272b2bd985b2f12f56679caf7537d6d3700ef26", "balance": 5000000000000000000 }, - { "addr": "0xdbd63118eea744ed7c1bcc77280a6f0512721f89", "balance": 1150000040130000000000000 }, - { "addr": "0x202969677e542ccae5ed20c74d1a642af02e0bf7", "balance": 200000000000000000000 }, - { "addr": "0x4f5d0d9695af360e712c73d7c720ccab35e7c2ce", "balance": 5000000000000000000 }, - { "addr": "0xa80c30b3e99ba69abf3b0d403c38dd5e9fb72fa5", "balance": 5000000000000000000 }, - { "addr": "0xd60eb709ca6038cf0bf989f314d402a355f4ab18", "balance": 1585218160000000000000 }, - { "addr": "0x37797a9bc701c0ccde58dd3a7dc5b43524033204", "balance": 10000000000000000000 }, - { "addr": "0x61653bf8f03c82a7b2ad2fcc877da9514e5a0ffd", "balance": 200000000000000000000 }, - { "addr": "0xf0af4456662fea3e0d8004182830fa74a6ae7db1", "balance": 173499200000000000000 }, - { "addr": "0xe5f69b9c6b6a5f04bf5a626c4a92c5c1afe5d0fe", "balance": 5000000000000000000 }, - { "addr": "0x08407142a4ffb278bfba97a845156c115cb2ac93", "balance": 10000000000000000000 }, - { "addr": "0x068ec3958d90175d28bfaea66eae48b96f05d072", "balance": 200000000000000000000 }, - { "addr": "0xf2aa3b6c8c37c9224cb11c0b03aae0fcdc5fc461", "balance": 5000000000000000000 }, - { "addr": "0x5b8eb0827e4ace775d62c62d7e4f65f03cf46376", "balance": 10000000000000000000 }, - { "addr": "0xb2f300153d727a2c9f34f12d3db7e9d31a4df382", "balance": 30000000000000000000 }, - { "addr": "0x5deec8984aadf24a3015f272059aba3abfb9e8bd", "balance": 5000000000000000000 }, - { "addr": "0x4f0c46d0bd46225872f7f4b9701454049fb2de76", "balance": 5000000000000000000 }, - { "addr": "0xf54b5908d3848dba2855ae394e9afb24d34e4c96", "balance": 20000000000000000000 }, - { "addr": "0x1339be0b0b63eb2c1d76530f1c4f38d46c9aa5dc", "balance": 200000000000000000000 }, - { "addr": "0xa7fafbc82f5724080c66711691d2b98b009c2201", "balance": 5000000000000000000 }, - { "addr": "0x3ff81cd5685b53e07a03d704875bc1a21bd20e68", "balance": 200000000000000000000 }, - { "addr": "0x1bd7be6c4f9e843d2215744b83b911fdfb644bc0", "balance": 10000000000000000000 }, - { "addr": "0x2972bb708f83473f525fc65d81a6697078aa9e67", "balance": 5000000000000000000 }, - { "addr": "0x71bf7f21cd4270ea47eda14f237fd1ce01a50c8b", "balance": 73000000000000000000 }, - { "addr": "0xa02c48f811afcd8754537c3d10faa0d77d22d413", "balance": 10000000000000000000 }, - { "addr": "0xa4ffc82827639766ce640301b7b99dd341cca0cf", "balance": 48000000000000000000000 }, - { "addr": "0x42b462278d97c28dbac7e5fd25c9c6a7f749c794", "balance": 200000000000000000000 }, - { "addr": "0xa14f6fc32cb22c74f4279e08f06b29a0beb11b5f", "balance": 73000000000000000000 }, - { "addr": "0xfc2024cf0fa95456de3342bc245c684bd1546393", "balance": 47999000000000000000000 }, - { "addr": "0x837583db4a289eb5b1531174ba214af8ada42711", "balance": 653700000000000000 }, - { "addr": "0x1bef95ba4b04d5ee2160bfacd91496317e224af1", "balance": 200000000000000000000 }, - { "addr": "0x4db16ed6d45dedbedd6da9f9e6c61b483f04fb38", "balance": 223939000000000000 }, - { "addr": "0x25bbd7467ddb5d35946256a59d4be71251435db5", "balance": 25000000000000000000 }, - { "addr": "0xbbadbcf57bcf03586990a70dabedbb10b53936c1", "balance": 200000000000000000000 }, - { "addr": "0xa92a96fe994f7f0e73593f4d88877636aa7790ba", "balance": 9655000000000000000000 }, - { "addr": "0xf640fc54c1ebe4a17afdc4680746326fc34565b3", "balance": 5000000000000000000 }, - { "addr": "0x7e1134bbb0074f0b1346b3ac5803d75f1a2f9163", "balance": 71999630000000000000000 }, - { "addr": "0x4dc0d1fb951b71e40658faf8c9086dfc5c1422b1", "balance": 255628571428571428571 }, - { "addr": "0xa3289ece92ab667444b16e2fb891b62e42b81792", "balance": 73000000000000000000 }, - { "addr": "0xb171f1cd1e8d42cce6940b0d09509a266b98ab9a", "balance": 173499200000000000000 }, - { "addr": "0x4c0285e0f05800d33cb42462412e4b38ee321565", "balance": 1000000000000000000000 }, - { "addr": "0x58faacba5c74f597da6dba4c9c09618f85ab42c6", "balance": 5000000000000000000 }, - { "addr": "0x611fe1f16b5a8705efd837e2839c25940258fc58", "balance": 750000000000000000 }, - { "addr": "0x9c0629eecc2f6be50a3451c0ad1324d5b70509dd", "balance": 23999880000000000000000 }, - { "addr": "0x040c00df2718cca746454327d8672d05c926b533", "balance": 73000000000000000000 }, - { "addr": "0xabdf3cc2f5428f0a373c2e8af74b322582a2a90b", "balance": 5000000000000000000 }, - { "addr": "0xc77b5a61f8a7b7d6c6b1f125a51d00cce25d564c", "balance": 1985218160000000000000 }, - { "addr": "0x398646e26814c67edd6f49da25c121be0cf96c40", "balance": 23999880000000000000000 }, - { "addr": "0x3be495d08464360e1511d2a5f1c54149ac7e06de", "balance": 200000000000000000000 }, - { "addr": "0xd7c3563520fd6099abede4b99a177e26021bc8b1", "balance": 20000000000000000000 }, - { "addr": "0x967648788daba09eba211cf1818eb7acebfc02e7", "balance": 200000000000000000000 }, - { "addr": "0x92928216c30bf25a1a449d3f9b505c32ed3f7d8c", "balance": 200000000000000000000 }, - { "addr": "0xafec4321db022d166078907738b91fc967f42533", "balance": 10000000000000000000 }, - { "addr": "0x8b99d3432e54c38eea5b2cef892d04558274922c", "balance": 200000000000000000000 }, - { "addr": "0xb85a92e1f5f98a38238c3ff1a6a0ed19ba798e22", "balance": 5000000000000000000 }, - { "addr": "0x1dc4cbf0ea4ff27157c0b937a972c900e6e8f17f", "balance": 73000000000000000000 }, - { "addr": "0xb42815342e4fe7c198d90779f055509f8ce464a5", "balance": 173499200000000000000 }, - { "addr": "0xee65acef171682d306d912678a3f63aac2261dc8", "balance": 10000000000000000000 }, - { "addr": "0xc24042b2645819cff343a6e270724c13478b2c48", "balance": 546800000000000000 }, - { "addr": "0x1dba29b1c583a035d2640e507eaa89f1adc13486", "balance": 173499200000000000000 }, - { "addr": "0x47742f217f6b284ff9b53426d9f72fad2cb096a1", "balance": 73000000000000000000 }, - { "addr": "0x776fb36aa210e2e24a169d4ade2fd89611196aaf", "balance": 73000000000000000000 }, - { "addr": "0xb8d38cb32b7971ed61350a2af653278850ca1d67", "balance": 1585218160000000000000 }, - { "addr": "0xfedf7772a8f1a17c5714fc15acbda5e47df9eade", "balance": 5000000000000000000 }, - { "addr": "0x7ffb7f6ca94f2fb188a4d0f5783763b9b156b93e", "balance": 870000000000000000 }, - { "addr": "0x9aa4977575604acb1eb8c12a7ba05d0d194a4b2f", "balance": 5000000000000000000 }, - { "addr": "0x3b82233a4e126b9d3ca426c82bc32a448ebdef7a", "balance": 5000000000000000000 }, - { "addr": "0x37d08ca508ffe7e97fd125c34955824e2c21b85a", "balance": 11248880000000000000000 }, - { "addr": "0x03a9445de9377cbff81f56b5b0fb09a5e4fff89e", "balance": 73000000000000000000 }, - { "addr": "0x5bee11f662ace80a4393b23e4f67c8d76268610e", "balance": 5000000000000000000 }, - { "addr": "0xdecf25aa19825c4c70755eba55b8b178cfa058af", "balance": 73000000000000000000 }, - { "addr": "0x8c181575ad02f0b6df136311761a5782711a7b19", "balance": 5000000000000000000 }, - { "addr": "0x2a88a5810a980ecdbe55f78b5d39db6ed0fc2064", "balance": 173499200000000000000 }, - { "addr": "0x1e079b4f5d97a83c3b6a005eb62f6728715bbc46", "balance": 10000000000000000000 }, - { "addr": "0xdaca678e479c0c62c4cf7a14cc669c241c2b1d99", "balance": 5000000000000000000 }, - { "addr": "0xc0148a5fe90599a5c5231ed8345be0d9df2d0878", "balance": 1000000000000000000000 }, - { "addr": "0x9c635c2d073d393c9eeec8c1e36b269541454ac3", "balance": 200000000000000000000 }, - { "addr": "0x915fcb4ef6ea444a7d1b91565e8fa90687dba021", "balance": 146000000000000000000 }, - { "addr": "0xe391245ed07fec863b83fb10b149b0fd64bcb786", "balance": 80000000000000000 }, - { "addr": "0x23bbfc89720abea5effb5ab68644c51fd357da34", "balance": 30000000000000000000 }, - { "addr": "0x1b9e533a8bc40dd22189476d76e3221669d3af22", "balance": 20000000000000000000 }, - { "addr": "0xe76854b4c5f140e0eb2eefd51dcf457c68b0a40f", "balance": 273000000000000000000 }, - { "addr": "0xe9af0282bc9656dec205272c3716a1eee5a5c203", "balance": 5000000000000000000 }, - { "addr": "0xe5b11cca07429df39cfaff239d18a1bcb15c40e9", "balance": 5000000000000000000 }, - { "addr": "0x88746d41fa92e6024678d7a7c9f28f2038774a50", "balance": 173499200000000000000 }, - { "addr": "0x8307147c4f48c25c5ac376624f88f60f3938d31f", "balance": 73000000000000000000 }, - { "addr": "0xe019b48e08a238ebe9f7107f8327b60803a4ba67", "balance": 290000000000000000000 }, - { "addr": "0x4aaf20428565fee70198e17a69803ea7a7754158", "balance": 390000000000000000 }, - { "addr": "0xb4c5af77a79d3fffb02b64b7ec9cbc089afd4bb2", "balance": 200000000000000000000 }, - { "addr": "0xbe5beb49103787aa30ae7b141507f9254a20fd0f", "balance": 5000000000000000000 }, - { "addr": "0x2e27317df68efbeec361dda674501d92925e68ab", "balance": 200000000000000000000 }, - { "addr": "0x0e0e54385dd9b70179bf5b38b551578c47db6a3a", "balance": 1585218160000000000000 }, - { "addr": "0xca8f37d5b1361aff37f2324994924ac2ac287784", "balance": 5000000000000000000 }, - { "addr": "0x0b165d70825c6cc066f37d777316bf569ac9e429", "balance": 200000000000000000000 }, - { "addr": "0x63d97a208b27a36347bcfc2c35769453484862e9", "balance": 23999880000000000000000 }, - { "addr": "0x90121b5ad185bbce5a62f7755d0061ec9312e3d2", "balance": 5000000000000000000 }, - { "addr": "0x20314ab36eb94baf3e6b684d0bf489adfb776070", "balance": 73000000000000000000 }, - { "addr": "0xf4f6e5e11ac093b0ad476efd3ada4e2ae93b5ba4", "balance": 200000000000000000000 }, - { "addr": "0x1bc40197c8917536b34a767d644bca098eed0def", "balance": 5000000000000000000 }, - { "addr": "0xfec12816f0a34c63199c38e8b651fa2be8de9e94", "balance": 73000000000000000000 }, - { "addr": "0x6be9583e5dccfbfab8e54d38e291cc36e2b79183", "balance": 5000000000000000000 }, - { "addr": "0xab892a71686e94311eedc66cd74d2079371d1508", "balance": 5000000000000000000 }, - { "addr": "0x29db4fb16981a4eb61166018659326968d120883", "balance": 5000000000000000000 }, - { "addr": "0xd618115721995707b752bd9dd87accd5576f15e4", "balance": 23999880000000000000000 }, - { "addr": "0x05f543f78ec876d29bff0eb382025572cb406018", "balance": 10000000000000000000 }, - { "addr": "0xd369be3b6e310d109b01fa0a8fcd610626ac57c3", "balance": 73000000000000000000 }, - { "addr": "0xed22ced880f0a904cfff77e15782f6764caf91ca", "balance": 200000000000000000000 }, - { "addr": "0x320ca9ccc3dbb92d578f1be6bf92521e083bb5d1", "balance": 880000000000000000 }, - { "addr": "0x6493ac3446c644ed5b5996dfd7366af23405bb92", "balance": 553578000000000000000000 }, - { "addr": "0x49c178c51721ddc85f8c1ec68d398f10a89dd8f4", "balance": 5000000000000000000 }, - { "addr": "0x6aebeaab4ad87b5d74cf43a61cccd6e5f00903fc", "balance": 96754000000000000000000 }, - { "addr": "0xfda8dec8a774f337f237134309e3f13e5d5fe09a", "balance": 200000000000000000000 }, - { "addr": "0x8a56733973743363c0082a058dc62efd12f9ac84", "balance": 26160000000000000000000 }, - { "addr": "0xd80929aba17917532bf6610d33d418b1343e92c5", "balance": 10000800000000000000000 }, - { "addr": "0x779c7b5cadccd0902d2aced65a20f70a4b19282f", "balance": 130593668186388890000000000 }, - { "addr": "0xf2ff6be73e11720e3283e910a1a6d7b43f83448b", "balance": 5000000000000000000 }, - { "addr": "0x73ae711999efe20155bc9347c31b51fc30b968e3", "balance": 10000000000000000000 }, - { "addr": "0x79dcd80bf65a004cf202460071262cd1a5479178", "balance": 25000000000000000000 }, - { "addr": "0xc0009889a75609020c7fafe24280cc40cbf3f13e", "balance": 23899880000000000000000 }, - { "addr": "0x2289124b90cd403c5f0c671bdb1226bcd5145c93", "balance": 5000000000000000000 }, - { "addr": "0x164ed8a5ce753f69fd270375b2318c18b17a7526", "balance": 173499200000000000000 }, - { "addr": "0x97ffe3b55760a0efd91dd0193796e345e55cf1d3", "balance": 200000000000000000000 }, - { "addr": "0x4a4f56ce59a9a8212b951cd52c966acac8c20cad", "balance": 5000000000000000000 }, - { "addr": "0x320d49b575e6e40a5959ab7f39695732117aef80", "balance": 600000000000000000 }, - { "addr": "0xf90ffec6ece1c0e5c6deb1ff17b782dfaf87b07f", "balance": 73000000000000000000 }, - { "addr": "0x41eb85a5548f36c0aad343a05eebb106df164e96", "balance": 10000000000000000000 }, - { "addr": "0xab18501ba40bc01a561514ae28ca6d09966fdccc", "balance": 73000000000000000000 }, - { "addr": "0x5b230b9f42fa64fc9e886ee9a6b34a9b0d999a04", "balance": 73000000000000000000 }, - { "addr": "0x196f73d3f2f75309c5a6987681e181739387e652", "balance": 1350000000000000000000000 }, - { "addr": "0xaaece9614c40b8fb7e0954f69298eb2c14c4fd8a", "balance": 5000000000000000000 }, - { "addr": "0xe968284ec573ddb68e632de0262e78e6736656dc", "balance": 73000000000000000000 }, - { "addr": "0xb6da42b4f16d85deb462c72015ba7baca1da0044", "balance": 200000000000000000000 }, - { "addr": "0x25961cdd686a1a2b0ef09655e05a026de523715b", "balance": 1000000000000000000000 }, - { "addr": "0x984f369327482a1ac54b5d18b8731872322f3666", "balance": 200000000000000000000 }, - { "addr": "0x42a38ecac0528eca45c967747eae3474a5c57ac6", "balance": 1000000000000000000 }, - { "addr": "0xfa45c6991a2c3d74ada3a279e21135133ce3da8a", "balance": 1866620000000000000000000 }, - { "addr": "0x5bddfda81c88bc3726d308b44162596f23237dc5", "balance": 173499200000000000000 }, - { "addr": "0xa2c728ca7273c290774e68af653d100ef1c4126e", "balance": 73000000000000000000 }, - { "addr": "0xd9160ff6c6ed7b7cce97e47fa2d6cc57bad05cf2", "balance": 1000000000000000000000 }, - { "addr": "0x5ceaf4a83666dc1e2d5788e56fbbdbdce2a58149", "balance": 73000000000000000000 }, - { "addr": "0xb55f155e6d5899a9c30d54b982a29a206f6e216c", "balance": 880000000000000000 }, - { "addr": "0x23a615cbc9cbdcf7b82b595a526caee6fed12401", "balance": 200000000000000000000 }, - { "addr": "0x1133847bc5d343e1b455466fa784b4a3b5bf5861", "balance": 200000000000000000000 }, - { "addr": "0xbf7f1692ae54ec0860c598ebbdce68090c12117a", "balance": 5000000000000000000 }, - { "addr": "0x6ba3c4b9b8c9358c4a425046497e702299310f87", "balance": 20000000000000000000 }, - { "addr": "0x6a1c30c45f65d8554381ebc9fc1754db46d60717", "balance": 5000000000000000000 }, - { "addr": "0x4343f5f5c95d637747a6544411887362179d8efe", "balance": 5000000000000000000 }, - { "addr": "0xb5611fc48e25bf883138717093392896402176df", "balance": 200000000000000000000 }, - { "addr": "0xcd8deb85cef96c41fd52a058ef0c9a957b73d1a3", "balance": 73000000000000000000 }, - { "addr": "0x059bcfde10fa582252d569ff6e665a80a9100f52", "balance": 200000000000000000000 }, - { "addr": "0xebf35a07f38797f1820a1890384c669c1987e2ac", "balance": 5000000000000000000 }, - { "addr": "0x410b13bbbd491ce9a48091ad57fd73fa025e13f6", "balance": 5000000000000000000 }, - { "addr": "0x4944baf5da09c4a33d3ec6ff290055030449d72e", "balance": 73000000000000000000 }, - { "addr": "0x5bec4d85cd7f3bc79737551f67b17fc975a6676e", "balance": 173499200000000000000 }, - { "addr": "0x832f883f1a8d291332fe5671829ddf0887fe9988", "balance": 20000000000000000000 }, - { "addr": "0xe3468894e64ac0a96ceff5d6f2d868844321b036", "balance": 1585218160000000000000 }, - { "addr": "0xcc076070dc2a82c3c62a60642e68acd28fadd956", "balance": 173499200000000000000 }, - { "addr": "0xfcf18385d368011b3044a619da70c15b28359cd1", "balance": 5000000000000000000 }, - { "addr": "0x190ba667a42b9a52ddad1c3240a74f8d8aee5ada", "balance": 4584218120000000000000 }, - { "addr": "0x63cd51cecb1d22875057c68a4b159e01f4216c05", "balance": 689655000000000000000000 }, - { "addr": "0x554c2350139b6151dd86bd2b5c9a16e85d6c3a53", "balance": 5000000000000000000 }, - { "addr": "0xb2d0ec52e4b6c2356a2fcaccb20f2647b203cf70", "balance": 5000000000000000000 }, - { "addr": "0x136892ed916efec7d43182567655cdd87d676a88", "balance": 200000000000000000000 }, - { "addr": "0xce5e0befbf7e1f869d38a2ac2cf19c400b78ede1", "balance": 26399860000000000000000 }, - { "addr": "0xdae9c177783e1df84252d011c918658496304a16", "balance": 173499200000000000000 }, - { "addr": "0x3e7e65dbdf018547c3c13b75b7f241a8676c02b7", "balance": 1000000000000000000000 }, - { "addr": "0x7d9d76ca223a5c85d99d2cb2bf2318e9913e92cd", "balance": 200000000000000000000 }, - { "addr": "0xad8fb4eea3a59b21be25c02062e58db5a10483a0", "balance": 200000000000000000000 }, - { "addr": "0x6dfe28d04e66ed84c35022b313de14811dd70f40", "balance": 5000000000000000000 }, - { "addr": "0x5e3cc491481a1ec7be08852dc072a1130d2b6117", "balance": 71999630000000000000000 }, - { "addr": "0x1d488654a83873caa20d26e8fe674da0d3210424", "balance": 5000000000000000000 }, - { "addr": "0x3265b7a82dbb5d71b7a0dfd3e9a099d958c3d4a2", "balance": 5000000000000000000 }, - { "addr": "0xc9c8a63151f1ed88b7832260ea8a329759d2ea9d", "balance": 1585218160000000000000 }, - { "addr": "0x2a8637124d202263d4b143a05f1343e291076979", "balance": 218160000000000000 }, - { "addr": "0x2c9058ec1fa9a387e31d7f2588d41da0d8d258b4", "balance": 5000000000000000000 }, - { "addr": "0xfa5829d1b7a88f588ef99022f65e4ee5cd29aaf4", "balance": 5000000000000000000 }, - { "addr": "0xf05cf0b63783e3b2be27e48ae8195e2edd718857", "balance": 5000000000000000000 }, - { "addr": "0x412e5c37f98d7e2b3314b5ea29cae1a853c65255", "balance": 273000000000000000000 }, - { "addr": "0x6c05d43d86ba89698e9bac9e9d35ad9ad45c08b4", "balance": 133230770000000000000000 }, - { "addr": "0x3305ddf3bae1c7eae2d78d92edbe52e82455991d", "balance": 200000000000000000000 }, - { "addr": "0xccad86d901765190b3499580ec7b9a8058daf949", "balance": 201958970000000000000000 }, - { "addr": "0x1ee9ef27fd87ac9ae00bcfa8610123c6c684cde1", "balance": 5000000000000000000 }, - { "addr": "0x42f7852d455bf3f57814efbb9876e92516c626a2", "balance": 240001000000000000000000 }, - { "addr": "0xe9f18085152e7a4d3df1219ad258d77770e8efb4", "balance": 312000000000000000000000 }, - { "addr": "0x3143f89e0802b393ffc27a09d3b2dfe33841691f", "balance": 173499200000000000000 }, - { "addr": "0x02228ab4c4ee07322314f5b20355de977de94277", "balance": 200000000000000000000 }, - { "addr": "0xf3da46d1535cc80dacf6c096796652a59f873894", "balance": 73000000000000000000 }, - { "addr": "0x436a3b7c3a8ef4cf64ac58d6c927dd6fa4441cb1", "balance": 570000000000000000 }, - { "addr": "0xeecffda0e00be7f47e1ed42459531a656557ea05", "balance": 73000000000000000000 }, - { "addr": "0xf527c0d2752c2df59b02a19e136051f1cfb14e66", "balance": 273000000000000000000 }, - { "addr": "0x7f76e311b0424b9f8d2afca35a356b1d6345be4a", "balance": 73000000000000000000 }, - { "addr": "0x323a99b06600e8f8658f256d93534f3c88ea7dd2", "balance": 73000000000000000000 }, - { "addr": "0xba0105fadce31d090ab2460e6f3739f93e42cdbe", "balance": 73000000000000000000 }, - { "addr": "0x148ca435a1b807c228cfc8f4ba8e8f6770d5c784", "balance": 10000000000000000000 }, - { "addr": "0xddcdb30d514b17906199e84cc9f41322d2007afe", "balance": 1000000000000000000 }, - { "addr": "0x579b8c5d89da9a517ea7f42041a93c2951470523", "balance": 200000000000000000000 }, - { "addr": "0x75a538bbff1d68d6640c041509e22ff4a62ed679", "balance": 73000000000000000000 }, - { "addr": "0x98ac31827201a60f3a78603b2115f9d69965c99e", "balance": 5000000000000000000 }, - { "addr": "0x64541ba0ca8686891e6c3b51c23037af30957070", "balance": 73000000000000000000 }, - { "addr": "0xbf34335ef5ff12cb4515637a5a1bb3e8f23c400c", "balance": 5000000000000000000 }, - { "addr": "0xbd44bb547ae90fbabdfd882539ac38039877339f", "balance": 48000000000000000000000 }, - { "addr": "0xb77b32e7aff27920aac46b07c5d8731ae81c147d", "balance": 5000000000000000000 }, - { "addr": "0xd11f555c41b5e94f4b3952235b94a1b7bc753a43", "balance": 5000000000000000000 }, - { "addr": "0x85aa0c5e44530e26cf6b651a1938f913f13fb2db", "balance": 5000000000000000000 }, - { "addr": "0x4d3c670b13e34ca4bc9236069489e60594f2468c", "balance": 1839199000000000000000000 }, - { "addr": "0xe651d065735b32eaa3a3541867b3bd43d45218e7", "balance": 77921420000000000000000 }, - { "addr": "0xfcac1f81f4adedcd922ca138dfcf4beeb8151998", "balance": 1585218160000000000000 }, - { "addr": "0x14bf117d68aaaacff32d11305d4468265056d8ad", "balance": 18000000000000000000000 }, - { "addr": "0x07045078f6893e94b8d5f4fe171d5d14274452de", "balance": 200000000000000000000 }, - { "addr": "0x5f46390d4166ae0164edd48b8bb1a5ed0f8e0343", "balance": 200000000000000000000 }, - { "addr": "0xe203591792b3104a9bb518042a7d2f721d592d21", "balance": 5000000000000000000 }, - { "addr": "0xb1f00ceae1f82f4e16d8d4882dbaff00916f7167", "balance": 48000000000000000000000 }, - { "addr": "0x26e0bf9b12387e16ea81f0dfffdd1871fadc3ea8", "balance": 73000000000000000000 }, - { "addr": "0x486a485f9e4c17ae6da6632627fa629ecd413701", "balance": 200000000000000000000 }, - { "addr": "0x57222b4b05c21195544dc2fc0847832f358580ab", "balance": 73000000000000000000 }, - { "addr": "0xfd13f98812bb3eb2fae88e822264755413ba791f", "balance": 5000000000000000000 }, - { "addr": "0xd63ce00dda37fa8892c891c19d1eb3a46053e482", "balance": 5000000000000000000 }, - { "addr": "0x0523490431af38fecd64a3daf4f2874f3d7dea59", "balance": 520000000000000000 }, - { "addr": "0x278e7baffc2f482b5fd86ec0de7e1778c5b811d7", "balance": 5000000000000000000 }, - { "addr": "0x66d69696aa83dea4dbb918c0534b7bfbe0fef8b3", "balance": 5000000000000000000 }, - { "addr": "0xf7bbdfb0646183603c0d7038ae97f2559faf45d1", "balance": 72000000000000000000000 }, - { "addr": "0x71b867449e2091ec3e938845bb2ca55b9f332bdf", "balance": 1585218160000000000000 }, - { "addr": "0x9c695d6140971c5c9e0f5f0b7d3ce9765ef99d79", "balance": 73000000000000000000 }, - { "addr": "0x1d0fa88e049fff2e999163fd7c5540a7acd0c50e", "balance": 200000000000000000000 }, - { "addr": "0xb5bc2552467dac88630988b722a82d0c999f602a", "balance": 200000000000000000000 }, - { "addr": "0x4ab82f9616c042eb7f552b307412b95f25c19de6", "balance": 1000000000000000000 }, - { "addr": "0xf874389c20794d25997de54ac95340898c10cb1b", "balance": 25000000000000000000 }, - { "addr": "0x9c298313f7839f7c5bea0dc1926cf31ae7e51c81", "balance": 182628571428571428571 }, - { "addr": "0x9d84f399e50962075dc9316a0daef1882a61c7bf", "balance": 200000000000000000000 }, - { "addr": "0x876dc448fa4ed790836017fe830e29f40faae401", "balance": 73000000000000000000 }, - { "addr": "0x572a4f555a7c1ea831eba05db5f5802bb9a6df02", "balance": 73000000000000000000 }, - { "addr": "0xfae4a88a1bf1c31c314f6a45c21b3afc9fe522b6", "balance": 73000000000000000000 }, - { "addr": "0x3adf142f6538db7dbe1c207e59e34eac1fa34bcd", "balance": 5000000000000000000 }, - { "addr": "0x0ebad17ff03d354a041f9ea40f9be7054faa403b", "balance": 200000000000000000000 }, - { "addr": "0x90c1cfdad347c2ca0a41f4a4b711e2e1358de610", "balance": 730000000000000000 }, - { "addr": "0x4d7e795021bee16a5c7ac89faf5894ec983be808", "balance": 10000000000000000000 }, - { "addr": "0xd201ca669a3ad713e3544528a8a86ad5dc845de6", "balance": 173499200000000000000 }, - { "addr": "0x3f93867785ef2153314416506480cb319cc750e9", "balance": 1585218160000000000000 }, - { "addr": "0xe90629ed4731a498fcdf801161497fa64be50bf4", "balance": 173499200000000000000 }, - { "addr": "0x1a3b32a8ca789c29401645dcc04c969cfe982a9c", "balance": 200000000000000000000 }, - { "addr": "0x84886427df9464e1195d4dc1bd79cb74184663b8", "balance": 200000000000000000000 }, - { "addr": "0xddad5ec4c69b474293a6b09eeac55be33041a4a5", "balance": 200000000000000000000 }, - { "addr": "0x72335d59ca30311d43ec9bfb243b1f80c98868e7", "balance": 200000000000000000000 }, - { "addr": "0x8d8142b8340e2d8d14b3cd1895ddfe910c7d1bad", "balance": 50000000000000000000 }, - { "addr": "0xd7f8ba3df885fbdf06dca5d1c862993b7dce64ad", "balance": 144000000000000000000000 }, - { "addr": "0xc8081d0e0f9306a24dbd7564c8921acf35bd825e", "balance": 5000000000000000000 }, - { "addr": "0x57ec88746bf14b04e68855225b8a4ffd0bf2ea4a", "balance": 239998400000000000000000 }, - { "addr": "0xef1b116dd3fc1bb567f2b1890430c10431b684eb", "balance": 26399860000000000000000 }, - { "addr": "0xd077fa9c72d933253610c5b4e63c14c39fab30fc", "balance": 200000000000000000000 }, - { "addr": "0xf614c7026b09b6a36e4951353344dc06e2152b8a", "balance": 5000000000000000000 }, - { "addr": "0xea4b3089989572900640578cc8850c58432383f8", "balance": 73000000000000000000 }, - { "addr": "0xc564ca26f76524da0152c5af5db1f580b15f2852", "balance": 40000000000000000000 }, - { "addr": "0x1b124a08141366ada0fdd9d62eeae9b3ce06b6cf", "balance": 200000000000000000000 }, - { "addr": "0x202ad38d53ef06eca0f4164884df6957ca54ebf4", "balance": 73000000000000000000 }, - { "addr": "0xa0d51d2ab4a60c44d69b8c540bdd3715242fbcd2", "balance": 1000000000000000000000 }, - { "addr": "0xfb1855970d2ee6cd1b631be006af6ce741d5e09c", "balance": 1603995000000000000000000 }, - { "addr": "0xa4c6e709a868d1f05365e441148a08709e2aa5e1", "balance": 5000000000000000000 }, - { "addr": "0x99b317acd148fd3b47881f0a55522bfd0bd91679", "balance": 72000000000000000000000 }, - { "addr": "0x151e71d8c892dda12a34ba92e323d2060ff4a9a9", "balance": 533320000000000000000000 }, - { "addr": "0x0352a83da35d57c26f15e23d1309b12f4f1bf313", "balance": 73000000000000000000 }, - { "addr": "0x051e58727b5179a665fa41c213e81cab7ee4cc0b", "balance": 73000000000000000000 }, - { "addr": "0x2fefe6c8aee31d426d59bb61aef9d789a5a1d654", "balance": 200000000000000000000 }, - { "addr": "0xcf38d93cf46ef7b1cb6903234d71f13c2c041595", "balance": 75000000000000000000 }, - { "addr": "0xebad6bf755b957b6e4c8c9bca12f03884b284047", "balance": 10000000000000000000 }, - { "addr": "0x3b12c5062758436b0dd3a19762fc0fa8e5863aed", "balance": 5000000000000000000 }, - { "addr": "0x41ed3fd888601ebce021d98d1100e8c7f10c1224", "balance": 1000000000000000000000 }, - { "addr": "0x3c0c131ec82db76a212cf96b7adfa95ca41fd37d", "balance": 4299440000000000000000000 }, - { "addr": "0xfb9264e5edd7154860f6650527fe9ee54743d0f8", "balance": 173499200000000000000 }, - { "addr": "0xe9bf870aac02503ee9b04e536c106236f696c68c", "balance": 73000000000000000000 }, - { "addr": "0xc25e595118a579df73b9fbbea8d96ab95938afcb", "balance": 73000000000000000000 }, - { "addr": "0xaef3ace8998d1a56f78a2c74d33aaeb0011fcf2c", "balance": 5000000000000000000 }, - { "addr": "0x23b9a9391cb5f2011beb073b71e8db23ff37d5c3", "balance": 200000000000000000000 }, - { "addr": "0x9a712a721346253ecf929414913cf42844da66ed", "balance": 5000000000000000000 }, - { "addr": "0xeed4553f2839b6cea10d4030d728d1a56ca4084a", "balance": 1585867810080000000000 }, - { "addr": "0x44387ea882d88fcd68eef400bcb6feafa82b9eb8", "balance": 23999880000000000000000 }, - { "addr": "0x0062575d20b14ab2a97e88f2aca89aa2cba61367", "balance": 48000000000000000000000 }, - { "addr": "0x84a4179d6d6d0dc54b589b39495b2765e54f38a2", "balance": 333300000000000000 }, - { "addr": "0x1be9af560e1121a4b6c46e661c0fd6d38f257d00", "balance": 200000000000000000000 }, - { "addr": "0x646d93da5d3ab2a924fa5398bbbeeff4e9d83b93", "balance": 110000000000000000000 }, - { "addr": "0x1878e7b71c9cd2f770d6fb9c6cccb724d786ca0e", "balance": 300000000000000000000000 }, - { "addr": "0xece31b9c927f21ccbca34818b29af52ad6820a59", "balance": 23999000000000000000000 }, - { "addr": "0x35664c41e879c8d256f415b4a986b52a28c99a75", "balance": 200000000000000000000 }, - { "addr": "0xde656ae52544c3eeb135994f4fd44f4866eb21bf", "balance": 73000000000000000000 }, - { "addr": "0x3a5cba18165bfa05fb1dd8118c5f5fa6a99a6e3b", "balance": 23999880000000000000000 }, - { "addr": "0x97b26fffda46fde30d0a4ba71283f4ab356a685d", "balance": 200000000000000000000 }, - { "addr": "0xd140ff04ae54e1803c14fab5f54c25237fcba9f4", "balance": 200000000000000000000 }, - { "addr": "0x4609cab7f143be69c997a0e6151ed99dd329105b", "balance": 5000000000000000000 }, - { "addr": "0x98118d9162f852c79dd775897cf2c1e9ed9910ea", "balance": 200000000000000000000 }, - { "addr": "0x53fe21bcb68506abbc1ffdd0ab11e71ce0cdd88a", "balance": 73000000000000000000 }, - { "addr": "0xd6615787c1bd964e5dbdf573a0779b04c044d468", "balance": 200000000000000000000 }, - { "addr": "0xeac13011b19417e012978ee32a9cd3cad6da16f4", "balance": 73000000000000000000 }, - { "addr": "0x2eb41d601fe19b33072f97682dad9fa91a589ccc", "balance": 1585218160000000000000 }, - { "addr": "0x6be263f3ef83c183fe3b7d01a6e364ad81083077", "balance": 80000000000000000 }, - { "addr": "0x946f4dfcc5ba1ae13af69f5753468dae70a2a781", "balance": 565000000000000000 }, - { "addr": "0xc16f0cc30d27c2c8645001f3cd2ee95477c343d7", "balance": 5000000000000000000 }, - { "addr": "0xf41db0c21079aba09926f3dc088225e65684530c", "balance": 73000000000000000000 }, - { "addr": "0x1e82a191022c2d5190f2ff443ea4c00203c65db4", "balance": 399710000000000000000000 }, - { "addr": "0x3dcb6d9ec56178aef64f56426b1b3c404fc525e4", "balance": 10000000000000000000 }, - { "addr": "0xafcd335d99a1407413722dc231d281360604b486", "balance": 73000000000000000000 }, - { "addr": "0x0b1c7c46022f062edaec9ae135a1cda8403072a3", "balance": 200000000000000000000 }, - { "addr": "0xb7fd8796556c12fb5e1b9afa899d0303a08e7321", "balance": 73000000000000000000 }, - { "addr": "0x4cef945ef8eb1aab56fd691394bced098294ea62", "balance": 116510000000000000000000 }, - { "addr": "0x497c5258e259eaa3675a159bfe3b23b1b5d7f786", "balance": 1585218160000000000000 }, - { "addr": "0x000877f43163f4556ae0e069721f74cfd1a124a8", "balance": 410400000000000000 }, - { "addr": "0xbaa229f5dc5cb63f40dabda0d1ddc570c3794fa5", "balance": 28000000000000000000000 }, - { "addr": "0xe8e61287af80eb3392b5e0d9241f6a8947ff1be1", "balance": 218160000000000000 }, - { "addr": "0xaa7f64162c451d5631425eefd604dbbde47665b5", "balance": 173499200000000000000 }, - { "addr": "0x91ccd88d182071745281ee586584683e2a60006d", "balance": 1585218160000000000000 }, - { "addr": "0x0ea360478cd2dd40c3db9f81d9bd492c49d9dba0", "balance": 400000000000000000000 }, - { "addr": "0xa8f278adf79b06c2fc59e4bad23a5b92b4ad6e32", "balance": 200000000000000000000 }, - { "addr": "0x2838376bde1f79407be376de41af5a9595c20fa2", "balance": 200000000000000000000 }, - { "addr": "0x0f41c2c60a83c37bc6f0471341a120656993a687", "balance": 20000000000000000000 }, - { "addr": "0xb8823e03fd71449dbb00369cebf713df6c26b45a", "balance": 840000000000000000000000 }, - { "addr": "0xc7cae1dc3ea63a8a94242f63a432e292bfae71ec", "balance": 5000000000000000000 }, - { "addr": "0x1573829a063fb0fb38d0a3694fc698ea7e487b0a", "balance": 10000000000000000000 }, - { "addr": "0x93b08d9466f06c811011ffae4ee8fcc2802037ec", "balance": 2320431980830000000000000 }, - { "addr": "0x3bb1ad90c6db74471ee5bd538d4d63a541a7bfaf", "balance": 200000000000000000000 }, - { "addr": "0x6da07c1dd3194f665156e30d32fc415283ea291e", "balance": 218160000000000000 }, - { "addr": "0xb42c464652683b3e8c725e9aeae096c3179a4a5c", "balance": 1099970100000000000000 }, - { "addr": "0xca88ab1fea3e1440d4f1b1dbced6ac1ed58e85f4", "balance": 5000000000000000000 }, - { "addr": "0xa7d9848a8f49fe3bb4a5f0b35ae2ae25f3b18d97", "balance": 55000000000000000000 }, - { "addr": "0x4cac5b0f3761966f446a5ced5a04475e5576ff2a", "balance": 23999880000000000000000 }, - { "addr": "0x6bf0e3e28b0f0c429278a965092c1be40cec03db", "balance": 5000000000000000000 }, - { "addr": "0x29f7b3d477472dc58f2a25dc42fb22676a516fca", "balance": 5000000000000000000 }, - { "addr": "0xc63df80fa61365c4ad2164b5fd31bc51558a7343", "balance": 5000000000000000000 }, - { "addr": "0x0aee24af42c4050b43a5e5d26b77f1f37103be3d", "balance": 200000000000000000000 }, - { "addr": "0xf1b1360b9aaab0039744a68269eac852f0042b73", "balance": 73000000000000000000 }, - { "addr": "0xcaaa7c4684bc149842ccc8e5b0ebaeac7ae671ef", "balance": 10000000000000000000 }, - { "addr": "0x5c577bf1f5f3c792c15dbe737678a6d7855a0ffd", "balance": 73000000000000000000 }, - { "addr": "0xabc9ab2f82c0b5253da89e94203ee55d1f8a01ee", "balance": 73000000000000000000 }, - { "addr": "0xdea884710910d22d601595be90d4d05e9dbcd4fc", "balance": 5000000000000000000 }, - { "addr": "0x0fa08acf48c4eecc8ce0b363d268905c8b0dda18", "balance": 10000000000000000000 }, - { "addr": "0x9c03e8b9717e7c60f3ccf016345497e6248551f0", "balance": 18023910000000000000000 }, - { "addr": "0xcf374063c929106b5d751aba44c2def6bbd5f1ea", "balance": 5000000000000000000 }, - { "addr": "0xdb26ab156b6c1d9e4f641252da2adeee087352e5", "balance": 200000000000000000000 }, - { "addr": "0x29b29f5600ff62272e037ffef8b0bacd637000a9", "balance": 200000000000000000000 }, - { "addr": "0x8028d91c0f2498a03be985912de4d55e622c612b", "balance": 48000000000000000000000 }, - { "addr": "0x32b64b8c453cbf2abf8d449e2506dd1efc9c7028", "balance": 23999000000000000000000 }, - { "addr": "0x93d5c212f04b3212a85267f2eaad454b3d5f08b9", "balance": 5000000000000000000 }, - { "addr": "0x4ff803a6aefe13a6b386c6d87c9328d80fa1d735", "balance": 200000000000000000000 }, - { "addr": "0xf639fd91a0132e6f7e81fceaae8d3b5a0e01786e", "balance": 5000000000000000000 }, - { "addr": "0xefd5bff7698c3ccf73741f97d34e468d8949972a", "balance": 73000000000000000000 }, - { "addr": "0x6020a4d51a601a302b6fadc7a29403d77f46d5aa", "balance": 173499200000000000000 }, - { "addr": "0xf40fef636739c519b6dfdfab73c0c6c477909669", "balance": 73000000000000000000 }, - { "addr": "0x4f0e328f1be8c0648dd6bba54430f2540d6bdbdb", "balance": 73000000000000000000 }, - { "addr": "0x45da8cd5b785e9335097d1be7d288e1b9ed604f0", "balance": 5000000000000000000 }, - { "addr": "0xf2e3ad5fdc18133f1f588e674a835c2af18d8da2", "balance": 65303483000000000000000000 }, - { "addr": "0x902e928e7c484b63b40befbe449e2499fea5aba2", "balance": 880000000000000000 }, - { "addr": "0xba22522b57b517e619b3a4af87c2f1fc5c7d660a", "balance": 20000000000000000000 }, - { "addr": "0xb0d81b8074cb04db82ed8ae165f1a017c8f31342", "balance": 20000000000000000000 }, - { "addr": "0x41e903148e45e4cff1b9bb7e1a3b2b8e4e084d4b", "balance": 1576000000000000000000000 }, - { "addr": "0xe7771c63af787c834366585fb2caa7f413cf64a3", "balance": 266660000000000000000000 }, - { "addr": "0xddb54a6678008d961df1d914cd0b1c04669fad0f", "balance": 266660000000000000000000 }, - { "addr": "0x6a471a3ddb01740119bbdbd110b60bd6cd6362e9", "balance": 5000000000000000000 }, - { "addr": "0xa3dc9c50e01388c7d26d9bf685e216b255696bca", "balance": 5000000000000000000 }, - { "addr": "0x87eeb3cca6dc4cadb848f6795225f4ed976a8176", "balance": 5000000000000000000 }, - { "addr": "0xee7eca3bcf3cdf2cc3131fd1e0deca9199152807", "balance": 73000000000000000000 }, - { "addr": "0x508a2470dcd149e9b43767e64d6134b81a392801", "balance": 73000000000000000000 }, - { "addr": "0x428b3717a6e9eea810b0af9442ba9bb9e9a02551", "balance": 690000000000000000 }, - { "addr": "0xd483073e51ef9c13aeab5eaf33008aa7a37ed7d7", "balance": 5000000000000000000 }, - { "addr": "0x9616e91ea84ee69c35cb161bc4c4335e1dc6590d", "balance": 5000000000000000000 }, - { "addr": "0x54a9f9f321c2d9c73fce3db8ea7c4b1d69f14d5d", "balance": 1000000000000000000000 }, - { "addr": "0xda054c9919c54fccdbfca20f73fae791a22c1b0e", "balance": 1785218160000000000000 }, - { "addr": "0xeabafbde22b4ecd57d903d1902a6955af8d98c13", "balance": 5000000000000000000 }, - { "addr": "0x225fd7554626bae657bad5d6d66c047dbe00716d", "balance": 5000000000000000000 }, - { "addr": "0x69a8b5652004914a0b5147e364e41b89818b1dd3", "balance": 12000000000000000000000 }, - { "addr": "0x72b3ea7fdd0e48757dd921a08a5297d5f7279f20", "balance": 23999880000000000000000 }, - { "addr": "0xa04e187d8e323127b7fd5117f27a35cf46adbac7", "balance": 200000000000000000000 }, - { "addr": "0xb87677fd6634c215eb3aa2e74a2cf917532fe6d4", "balance": 73000000000000000000 }, - { "addr": "0x80797518ee67ca0d5e5672a8aad135b199e061c8", "balance": 173499200000000000000 }, - { "addr": "0x1f493729d36f0a0cf6c67be7402ebc15ed7c048e", "balance": 5000000000000000000 }, - { "addr": "0xad674fb75a012e5ea93990d58424cb5d04b09ca6", "balance": 60000000000000 }, - { "addr": "0xb2603bd327e0c5c3104e07d788726bc8552eefb2", "balance": 173499200000000000000 }, - { "addr": "0xebedf944387c3adae2666ab16d52dd4794b65dfd", "balance": 200000000000000000000 }, - { "addr": "0x4452b58d2fdb19dc757085ef6200a5ff549fbda9", "balance": 840000000000000000 }, - { "addr": "0xf2aeede281d64941fc96d65c2c194f0a98d7e34b", "balance": 10000000000000000000 }, - { "addr": "0x00e117a7d4c68c42dabe9339e63d93519ffce484", "balance": 5000000000000000000 }, - { "addr": "0xe5ba6b7631accb25938e01349700fffab08fb258", "balance": 5000000000000000000 }, - { "addr": "0xe338c3c19f96b78fbc2f9a783c0400442bea17fb", "balance": 73000000000000000000 }, - { "addr": "0xbc7e50bc72fa24a9e7832f0399f81e6580fd5d6f", "balance": 240000000000000000000000 }, - { "addr": "0x17421ca8928c37f968bc32ac410018fbc791a33e", "balance": 34799820000000000000000 }, - { "addr": "0x2f33d48e160356eac796992031e70724f67545a9", "balance": 273000000000000000000 }, - { "addr": "0x6df78d5363fd5a52dedfa0844601738532dc69e5", "balance": 48239750000000000000000 }, - { "addr": "0xd4bd3c6b97e07b3406a76b6538aee472e9ca1819", "balance": 400429500000000000000 }, - { "addr": "0x8a0e49bba28d707ead5517b5b84923b132ab3d5e", "balance": 20000000000000000000 }, - { "addr": "0xf2751a3afd3c2e955307cdd442c5deb3bb654cca", "balance": 73000000000000000000 }, - { "addr": "0xa8af79abd335bf855528b7904a807928a70a7c26", "balance": 73000000000000000000 }, - { "addr": "0x3eddb2b1ac18585e3bae8c9f46ca9f5706782238", "balance": 5000000000000000000 }, - { "addr": "0x534947e6a047bd9ca58fec021528229a819ab85f", "balance": 200000000000000000000 }, - { "addr": "0xb7e5a4efadb771c25da598bc43238aa9b8d40ac8", "balance": 20000000000000000000 }, - { "addr": "0x156d776a09df9de69a980198766b67e70bf056c4", "balance": 10000000000000000000 }, - { "addr": "0xa80aa136c288c4ea8b8a1513b04f59d4bc1dad09", "balance": 73000000000000000000 }, - { "addr": "0x088ac5769018b7b2ad81f7c58e9ec148d2e1b860", "balance": 73000000000000000000 }, - { "addr": "0x9be15a370b98d0153cd2eacd4cadcd59c46bd035", "balance": 40000000000000000000000000 }, - { "addr": "0x20c6946a4ad0fec39501ca2baf0530664dc0194c", "balance": 15000000000000000000 }, - { "addr": "0xc881574a2e917b2d477861de6dc6e94e886a2ab7", "balance": 3901875000000000000000000 }, - { "addr": "0xdc526b9916fe753ed6e197405a40201815364d2a", "balance": 73000000000000000000 }, - { "addr": "0xf3a15825704d351f4e118774b45b5f238616c154", "balance": 129963970000000000000000 }, - { "addr": "0x163b1ee88da521b7fcb5f38d8f48ee9eb6336ec5", "balance": 11999000000000000000000 }, - { "addr": "0x8d3b7363ee9746aa71a28d5fd199a0c7ece6b974", "balance": 200000000000000000000 }, - { "addr": "0xaf6de4999152768ab81666a3a9e22b6bf6fa5874", "balance": 200000000000000000000 }, - { "addr": "0x1a641d6d856028111b7b26f0a433bee0039f5150", "balance": 25000000000000000000 }, - { "addr": "0x06a8f8de5013ebc13c44e88947b51e633e5699b1", "balance": 25208580000000000000000 }, - { "addr": "0x05224a89758486cf9dd6b19142ac4e2e38d2858f", "balance": 25133930000000000000000 }, - { "addr": "0xa9aee8ff5f613b71c9489e7dc9a06cedf2c9c79f", "balance": 1199993860000000000000000 }, - { "addr": "0xdc43b7489d6c983978aae88000255e7290eba76c", "balance": 5000000000000000000 }, - { "addr": "0x4c0b7a47e34bb1422a69a31388811436a56b836e", "balance": 5000000000000000000 }, - { "addr": "0x95a1e81a88faa4ef8e61f66ea6c9cc8049acdecd", "balance": 73000000000000000000 }, - { "addr": "0x1e434932d375a7f7190d926226f45769999a0948", "balance": 239999000000000000000000 }, - { "addr": "0x5078e58f46d693fdc93e6dd58cb07cd9af7e44c0", "balance": 200000000000000000000 }, - { "addr": "0x924f4bcd8696dcd927724b32466148d4aeff7002", "balance": 5000000000000000000 }, - { "addr": "0x01f8fd8dceb118bc1d503f762e95a6287731a10c", "balance": 200000000000000000000 }, - { "addr": "0x9df01b6d9077e5f8ccb447e171912dca7f6c34ae", "balance": 5000000000000000000 }, - { "addr": "0xa79c13aa3034a97287103b821932129cbedb0608", "balance": 73000000000000000000 }, - { "addr": "0x0e69a80f4fc7f145556721d096b1ce6ca64646a6", "balance": 10000000000000000000 }, - { "addr": "0x04590ea4bb25d2c12d8351f7d2bbbb55cb9b6d19", "balance": 443239000000000000000000 }, - { "addr": "0x8835679e409a59fb7c6383ee24ef689428fcb128", "balance": 1333300000000000000000000 }, - { "addr": "0x22eb3784dff55912e6c482f7e0986c7c9339a523", "balance": 173499200000000000000 }, - { "addr": "0x6f4898e8d3f875118a4548d05df1ed535b45a15b", "balance": 73000000000000000000 }, - { "addr": "0x83e664c2c600d50f91853b018ea111ce06472884", "balance": 10000000000000000000 }, - { "addr": "0x033d4bf1fbfaa0f5e14810ce114eb8e125173f28", "balance": 880000000000000000 }, - { "addr": "0xf8c7b0de219dbce614c1bb5524c130bca8e25062", "balance": 5000000000000000000 }, - { "addr": "0x4fd257d3a2eeb4a0d0f94bfafab110050e2143d9", "balance": 380000000000000000000 }, - { "addr": "0x4fb81dd2d9b1819134cd9906754509bc4337315f", "balance": 1000000000000000000000 }, - { "addr": "0x037b17a25800870ca39ec6226e0fb4f43afe362a", "balance": 200000000000000000000 }, - { "addr": "0x43f08b7c3bd890729eb0c0b13501bfa93a86578c", "balance": 5000000000000000000 }, - { "addr": "0xe80bd7361d0b2885d3fe12eb5bd6312ce77220df", "balance": 5000000000000000000 }, - { "addr": "0xf8754a0705d7a1c7308ce88a52340335d0c3b63b", "balance": 7990000000000000000000 }, - { "addr": "0x7e96374f9d86772f7705943731edb2f0e3133d33", "balance": 2000000000000000000000 }, - { "addr": "0x5e953bd2615ebc483e181d60f18d4dd4c6eada18", "balance": 10000000000000000000 }, - { "addr": "0xb6ce6c2e1078909bc27cd3c6c3b15c16e18c5935", "balance": 5000000000000000000 }, - { "addr": "0x89508e6c617a726d2deaa468ad8dbb61b5ca25dc", "balance": 880000000000000000 }, - { "addr": "0x722bfed4319041946f097a6811f8c4f1588d3eb4", "balance": 5000000000000000000 }, - { "addr": "0x02011e7ef9aa0aee000b9a9cd34bf51e29b3a1a9", "balance": 1585218160000000000000 }, - { "addr": "0xaebb6fddc38185e5098c5fe4c9a4e22fe26e2f8f", "balance": 5000000000000000000 }, - { "addr": "0x6fbef8c6d816c5635bec296ad19040dc8320bd67", "balance": 3491709440783000000000000 }, - { "addr": "0xf9ffba4a175368b51b27f31e8b68cdaf956a60a3", "balance": 5000000000000000000 }, - { "addr": "0xc5a3953a776144b944f27f921cc3c81408621e7e", "balance": 630000000000000000 }, - { "addr": "0x70868912318eeea9a02cd5dd9e762d4c99e58bb2", "balance": 200000000000000000000 }, - { "addr": "0xea4d02b36461e62750b9a76bdae11ce3933e5e40", "balance": 5000000000000000000 }, - { "addr": "0xa2ba78144d2d02a968ccd773bdff09225f68035d", "balance": 24000000000000000000000 }, - { "addr": "0xc712e10af2e4033244a03080ba3303556c7dd747", "balance": 5000000000000000000 }, - { "addr": "0x894cdb462bbc8f809c603ff8ee394f6cbea2ec08", "balance": 73000000000000000000 }, - { "addr": "0xf6da55efe4cebf901a0c523482428c0c8fd0aac4", "balance": 200000000000000000000 }, - { "addr": "0xcf293de7c77dc0723d00367ad6a084471ca881d4", "balance": 24000000000000000000000 }, - { "addr": "0x403299bde225220bd714bde8445b79b45483e5b3", "balance": 5000000000000000000 }, - { "addr": "0x85a6f4d2e3f954bf2c1bba1dd142dfeec01bd97c", "balance": 20000000000000000000 }, - { "addr": "0x5ea47c77461d9fd64271868b0b716f4cf244906f", "balance": 47999000000000000000000 }, - { "addr": "0xc0998c780e0e3c13791c5a32721380d4b8e4c105", "balance": 880000000000000000 }, - { "addr": "0xb17299174ebd00d57ebe29bbe1b2d71122169e7a", "balance": 200000000000000000000 }, - { "addr": "0xc8aadfd5f7e78188b00e2b12e559b90a0cefbde8", "balance": 5000000000000000000 }, - { "addr": "0x6fbdd55de6c7df3a88ee2360dc7502a60146b073", "balance": 200000000000000000000 }, - { "addr": "0xbea53f063accf0f7399fe9a42120a8484af41782", "balance": 273000000000000000000 }, - { "addr": "0x6e78fa292c856285cea38f22a4669e19435ee54a", "balance": 1585218160000000000000 }, - { "addr": "0xbf15be76539a2148ee3df3c898e3bbc075c9677b", "balance": 73000000000000000000 }, - { "addr": "0xcc81cad7bce7f3e2460f0dcf60273a287f7b6d8d", "balance": 200000000000000000000 }, - { "addr": "0x4887d1378a7c15c91e38402f736f2327dfc6b193", "balance": 5000000000000000000 }, - { "addr": "0x59003c3b831a57dba7827b569c086ef0a0e6c2bf", "balance": 5000000000000000000 }, - { "addr": "0xef845e3a5da60e87283bae86fd9bdaa107052bfa", "balance": 25000000000000000000000 }, - { "addr": "0x6a6ea7db067d555cbb7f6b10ad96968f832fedf7", "balance": 300000000000000000000 }, - { "addr": "0x34cf1f76958b77f827d50581c400f21fbab61ccc", "balance": 7199000000000000000000 }, - { "addr": "0x2c48350e60aec12a967a7cf1ee31e3f2f674f9ca", "balance": 200000000000000000000 }, - { "addr": "0x77788b6fe20ed97760afdb9f7bb3da7ef3902e68", "balance": 5000000000000000000 }, - { "addr": "0xd484e98435eac30c82c32f46acb8eb3d34dc1a50", "balance": 5000000000000000000 }, - { "addr": "0x910947aff8c7c2d3803955e72e4a4ef5fc162a2c", "balance": 173499200000000000000 }, - { "addr": "0x70949063b9f06cd249104f92d694ddc17b67e5ea", "balance": 10000000000000000000 }, - { "addr": "0x2e7aeb57c3130d0b13f56aff1da77605f9a929c7", "balance": 73000000000000000000 }, - { "addr": "0xba41ca47541a612f4c60c9fdecf3484ff4ff7b00", "balance": 5000000000000000000 }, - { "addr": "0xeda316fc9a5cc5a1d1b3b48cdf89f3db6cb6d2e6", "balance": 85981181200000000000000 }, - { "addr": "0xb2b744e33b85426ccc67ab5212027245b9e1962a", "balance": 73000000000000000000 }, - { "addr": "0xfd7ecc9ed17f8ca28d09745d9511a8031b34615a", "balance": 10000000000000000000 }, - { "addr": "0xe9a6837ca59b8316bd6a679710e24ae010dc0e27", "balance": 200000000000000000000 }, - { "addr": "0x8ede3fb7fdd40761449fcb82a1bcbf4840c61392", "balance": 200000000000000000000 }, - { "addr": "0x4a3e11e080aa70f578e4dd57d8d39ed69fb0bc45", "balance": 50000000000000000000 }, - { "addr": "0x07aae0bad8197b334af8047d0ee58f22f6c3b0bb", "balance": 200000000000000000000 }, - { "addr": "0x868ff0f18d74fd482fd5c88731959fbc3d2bc972", "balance": 325499000000000000000000 }, - { "addr": "0x12bf3bb9ebb831c6e1d0fabcea7f3802d7cf5d0e", "balance": 173499200000000000000 }, - { "addr": "0x93f8b601b03a585e4bb040de594f02e9d2b28435", "balance": 5000000000000000000 }, - { "addr": "0xb9bf29567e5501c1351588fefecfdf5a107cda8e", "balance": 1585218160000000000000 }, - { "addr": "0x2ed645c7b759a1ec173268ae3f5f5eccd6241464", "balance": 10000000000000000000 }, - { "addr": "0x9f1bedfc8dea9d22266bc4e2600e6e792b4af380", "balance": 200000000000000000000 }, - { "addr": "0xe31a563465df9f0d9b86e330ac5ac3a9cb8b67d0", "balance": 5000000000000000000 }, - { "addr": "0x2ea203ebe68f375cb205b9da2a166acc154cd83b", "balance": 173499200000000000000 }, - { "addr": "0x0c3cdf9f089097acc289d0ce22e3ddffed4d0e76", "balance": 73000000000000000000 }, - { "addr": "0x33b450da27481288caaf56a4ceaad9f2ac6f10ec", "balance": 10000000000000000000 }, - { "addr": "0x45908dda88ee2b0e4f99cb0bd0912d71672a0723", "balance": 880000000000000000 }, - { "addr": "0x46a5f28fd5d9fd1ab3c27d8110a1078349eb038f", "balance": 5000000000000000000 }, - { "addr": "0x9dc6ec100ce49deda36992f6b1dc60f4651be520", "balance": 5000000000000000000 }, - { "addr": "0xd49429e49f7a61f909c78798d73bad9c16cb7931", "balance": 5000000000000000000 }, - { "addr": "0xd1af104b67150832d459dce0f516b6a828f0f8bb", "balance": 1585218160000000000000 }, - { "addr": "0x4003252381b4cda816defbc7ed1c28770a876c0b", "balance": 73000000000000000000 }, - { "addr": "0x8e5288f655b544ce58d457d4b9eaf66664efed58", "balance": 73000000000000000000 }, - { "addr": "0x1bd01af018ad0cd7585bab8079ccc296aa78be4e", "balance": 30000000000000000000 }, - { "addr": "0xdec3804e2e818f50ad002a39f17a6f4130541ebf", "balance": 200000000000000000000 }, - { "addr": "0x9ca0c59de42510c3ff7f0fac4bc5f399a0b3573f", "balance": 5000000000000000000 }, - { "addr": "0xf378ae8639d7e6101230a094154ac14da301a193", "balance": 200000000000000000000 }, - { "addr": "0xbd8b2c5e8c8de6701ffec7a640d7b06a6e65efc2", "balance": 200000000000000000000 }, - { "addr": "0x403206df5c0fbb96d117b31d280f4b0f4d3819a9", "balance": 5000000000000000000 }, - { "addr": "0xa1794e76042bc69ea9b573cc02c55a9b83e650b1", "balance": 5000000000000000000 }, - { "addr": "0x32b06bd0523b7ee640993bfa9a1a064fe351255a", "balance": 5000000000000000000 }, - { "addr": "0x3513ca3f39fbdb1502bcfc741b6a5f59e4c024cc", "balance": 5000000000000000000 }, - { "addr": "0x490a58a6aa492bddfd6912b1e1b788d4d05fff00", "balance": 1000000000000000000 }, - { "addr": "0x36502e9d6de6a9355b24a5000216acf7d8dabb31", "balance": 1585218160000000000000 }, - { "addr": "0x8f95d678e18cace420fa52265236604b995a77ea", "balance": 200000000000000000000 }, - { "addr": "0xa328fc14d3c0da1b453d8a57e6ebfb6097dcafd3", "balance": 5000000000000000000 }, - { "addr": "0xd433d4601f1228c2c57e40443237ffc6127f5d6f", "balance": 5000000000000000000 }, - { "addr": "0x4d49725f99a93033b38e99550d81ac8b826b4324", "balance": 73000000000000000000 }, - { "addr": "0x2d6c3a9644027d63f56b7c36c44dc37fffc696ba", "balance": 120000000000000000000000 }, - { "addr": "0xea8e31566ccb5ae89cb14a9ea62ae3e90ffd054a", "balance": 73000000000000000000 }, - { "addr": "0x8d8401d705324e82f95afd9b46d88380bf9e2a7d", "balance": 10000000000000000000 }, - { "addr": "0xc1ed9808006cde95f74dc27b5a162bd8b28e848b", "balance": 200000000000000000000 }, - { "addr": "0x933a196033d7a06234b0be014661f37fb91fca91", "balance": 5000000000000000000 }, - { "addr": "0x86fda86d83deb5fd8f5c400ade3d68e242ed5da4", "balance": 5000000000000000000 }, - { "addr": "0xf6192e5fb85afbc7770ac803b3c31c498cf1873f", "balance": 5000000000000000000 }, - { "addr": "0x3c4eea3ce59f8566fbab78599b5879f1908a1215", "balance": 5000000000000000000 }, - { "addr": "0xb0037f4a00a966bde8ebfc50a14a62854fae4c83", "balance": 770000000000000000 }, - { "addr": "0x09557960faf7aca0ceaca342eb9ab5c050561027", "balance": 10000000000000000000 }, - { "addr": "0x0bfd9f4d09ad6f1b3cb8931283f854cb138f4c71", "balance": 48000000000000000000000 }, - { "addr": "0xf5f521ab6d90ac4ddcc15b09c1a0cb9fc45b8eb5", "balance": 200000000000000000000 }, - { "addr": "0x11ff1883b3df072f0e18769b7266faa330e379e7", "balance": 26879860000000000000000 }, - { "addr": "0x0e81a264f490d0bcf21b09c9725542fd27ae4b4b", "balance": 10000000000000000000 }, - { "addr": "0x7e6e2573e21ccf27c8797f9432769fa62bc172ca", "balance": 173499200000000000000 }, - { "addr": "0xbe2715824c37c16bc11eea1497c037134a5c27a6", "balance": 5000000000000000000 }, - { "addr": "0x639a8f144c3f1c6c92233ac0386a373e425eea68", "balance": 73000000000000000000 }, - { "addr": "0xadc3edaa8a393b9a41819a35727cb0fd6ea0c8ea", "balance": 173499200000000000000 }, - { "addr": "0xbfd6749561b6317917d1cb711b9fdfb9304a494a", "balance": 20000000000000000000 }, - { "addr": "0xf8bf993e41d3b8c8aa543c18a99dfc874031d7cd", "balance": 5000000000000000000 }, - { "addr": "0x599b64a430976e0eaf53483f3fda8a986bfd6dfc", "balance": 5000000000000000000 }, - { "addr": "0xf26e6469792ed74318b64eaea8cd32ab3edd9ae2", "balance": 1000000000000000000000 }, - { "addr": "0x9199e33cd30325f9c16982697bdb28db22975f98", "balance": 60405070000000000000000 }, - { "addr": "0x492663213b7d2bb84aa3e70d9b98f6ddc6ab54e6", "balance": 20000000000000000000 }, - { "addr": "0xe1d9b686678425eef7b8623dd38b50ed9c8419ac", "balance": 73000000000000000000 }, - { "addr": "0xddae399731bae9111c51881c90a942e074d7a978", "balance": 5000000000000000000 }, - { "addr": "0xcbe5394aba0ffd3663aa259e4efb4967424366d6", "balance": 1585218160000000000000 }, - { "addr": "0x1262ccb1a2abdccc79b77e87dec20f7b903d369b", "balance": 1585218160000000000000 }, - { "addr": "0xe8c38ad66319314d406c4275ee4b362dc599d6db", "balance": 26399860000000000000000 }, - { "addr": "0x7be65abd90fa1b402f433c3a749863c7cd57a91b", "balance": 11999000000000000000000 }, - { "addr": "0x091d33157bd37c727ef8bd08ee194db9ce6f587a", "balance": 73000000000000000000 }, - { "addr": "0x2f6fe36a89c1fc17eacd0bc62124970f1a7e0fed", "balance": 5000000000000000000 }, - { "addr": "0x03a150f897271e40b4e92b22a5676a655d3dfa70", "balance": 200000000000000000000 }, - { "addr": "0xfe1f43f05af5e8c9b3fe70fe59d9c9b112584efc", "balance": 200000000000000000000 }, - { "addr": "0xca66c6ba468a39c17dbf4b40d787f41a924d634f", "balance": 37664099000000000000000000 }, - { "addr": "0x09aabe1727a9f3d9a26cc46410ca22f2b50d034c", "balance": 20000000000000000000 }, - { "addr": "0x1601499503ab7bebc53ece00dbdbb553f2236bb7", "balance": 73000000000000000000 }, - { "addr": "0x7cb1db2195da6bc7f38cafefa5b232fd6544cdc6", "balance": 5000000000000000000 }, - { "addr": "0x96df33725894617c1a12f5134ac8a0c566046d4b", "balance": 5000000000000000000 }, - { "addr": "0x73b21bbd953001966064f39960e6111ac2b0de0c", "balance": 173499200000000000000 }, - { "addr": "0xcfa573845aa96184b2bdd4e65cc768bc350490e3", "balance": 5000000000000000000 }, - { "addr": "0x595266944215f7e44550cdac4d7fa783ab056b60", "balance": 25000000000000000000 }, - { "addr": "0xde1c28707a2a69fb63b65ed138da1ca6c4ec1628", "balance": 5000000000000000000 }, - { "addr": "0x17acbcf374adacc212e9a0e25bd5587c3b038bc7", "balance": 10000000000000000000 }, - { "addr": "0x5f33855b0938b65abba6503c06dd3caa7989dd72", "balance": 5000000000000000000 }, - { "addr": "0x469531ff87169ed657ee8028431ff0e14830a11c", "balance": 5000000000000000000 }, - { "addr": "0x1601e5fe5efdd25cf1d83d84230539276777468c", "balance": 273000000000000000000 }, - { "addr": "0xe0eb6b59847213e0f2f84ef61c9ab36a04e7971c", "balance": 200000000000000000000 }, - { "addr": "0x4960d62a23f0d44f47ef6dd6886ab6e2b20111f0", "balance": 20000000000000000000 }, - { "addr": "0x79587eea13e11f86137206479b96d77386d2e001", "balance": 73000000000000000000 }, - { "addr": "0xe3ddca2327e44aebb8dbbfd0226caba1ab64f47e", "balance": 73000000000000000000 }, - { "addr": "0xf9577c020c66e552983b03c21b2ccaeda151562c", "balance": 400000000000000000000 }, - { "addr": "0x76fb1c69c1f40e8ea55138fe305b881197643fef", "balance": 5000000000000000000 }, - { "addr": "0x8ed2aeba208ec15c0a3ddee475ea405c853cb33b", "balance": 144000000000000000000000 }, - { "addr": "0xc44f1ab8600f833221df13d1f1fdf3db1d94965b", "balance": 73000000000000000000 }, - { "addr": "0x594356a966e444a84e65b30d3e814e8995e9e8e3", "balance": 73000000000000000000 }, - { "addr": "0xc099eef71ce8c3600bf884a1f7ea9b5f149baa55", "balance": 30000000000000000000 }, - { "addr": "0x977e03c85e45fa04d7a1846bc93cfd6d0ab8d6d1", "balance": 5000000000000000000 }, - { "addr": "0xe7bbb9a71d0725ea15720bedafb4a0469949a00b", "balance": 400000000000000000000 }, - { "addr": "0x005553e572e0a0df67f0f98781006f2bf513ede6", "balance": 20000000000000000000 }, - { "addr": "0x36e90a8ac5c6cefe7967f4c8c4484fcbbaf7c6a0", "balance": 30000000000000000000 }, - { "addr": "0x652df5bf5cc788b19233638089e4a66f7ecd690e", "balance": 1585218160000000000000 }, - { "addr": "0x5d705c167c52b3dececc48d08b041473530bb18d", "balance": 35999820000000000000000 }, - { "addr": "0x539b11d8c2740b2933fdeacb3176aa5527fddca4", "balance": 73000000000000000000 }, - { "addr": "0x0bdc4fb41c9938f3b7e1e7fcca680ab67b81b69a", "balance": 5000000000000000000 }, - { "addr": "0xa772f93eb92319f00eda3c12a0609c2648225753", "balance": 200000000000000000000 }, - { "addr": "0xc876a87ccc25fb1510260cca2a3518f5bfaa2ce4", "balance": 40000000000000000000000000 }, - { "addr": "0x80f564f022d22730ef980753f97be31b9fe28aae", "balance": 128630000000000000000000 }, - { "addr": "0x4ac7fd46a120f78b62ee7878872125274fe46ee3", "balance": 173499200000000000000 }, - { "addr": "0x6065301c7e202e7c82b3cb82c50e1cdca8e95381", "balance": 73000000000000000000 }, - { "addr": "0xfac61b21faa08471b33ecff0e6d963a8c3ad893a", "balance": 25300000000000000000000 }, - { "addr": "0x31c317b53da0d9f3e207676a356a9feb4e1548a9", "balance": 5000000000000000000 }, - { "addr": "0xd4e2e00d7c9b158b28fb8604d4e774d1efe8da39", "balance": 380000000000000000 }, - { "addr": "0x78e461e48a5d51883995ca5812ee6389f6261021", "balance": 533320000000000000000000 }, - { "addr": "0x8b8d85d8ebefcb181ec909bc065bef698f198583", "balance": 273000000000000000000 }, - { "addr": "0xe81a55165f2e30b2df457016bf8e3c0105d9f5a1", "balance": 35950000000000000000 }, - { "addr": "0xdd4b7c62cc44c12f0f901940235945e97491b7a9", "balance": 73000000000000000000 }, - { "addr": "0xe6ccd0f4ebabc4ba3901b708c23e4151b1c4d92c", "balance": 5000000000000000000 }, - { "addr": "0x7507bef620f6f502ab823d00bc40083d1b002af1", "balance": 218160000000000000 }, - { "addr": "0xb3ba790c64941d498ba2e3f94fbac431ff05c1a3", "balance": 2437029749490000000000 }, - { "addr": "0x7207a3c46022ac7e40ad713dad198de91fa3d06b", "balance": 5000000000000000000 }, - { "addr": "0x01d99e03a49c7a7ce2bd67ad12543b050861a15e", "balance": 120000000000000000 }, - { "addr": "0x62cef0fe8fc827fa0af7b3a8971672df70023975", "balance": 50000000000000000000 }, - { "addr": "0x5c01377852b40bc4ae25bf217ffa037e23170444", "balance": 3291140000000000000000000 }, - { "addr": "0xebd7fa6630718dd6154c06ca13d3e8fe4b54a98b", "balance": 10000000000000000000 }, - { "addr": "0xb4607e165d7a3a2fbd46b7207fa0df883d0da8b8", "balance": 173499200000000000000 }, - { "addr": "0xe37bc1cc965cbae4724fdf6a34fe3ec032de7140", "balance": 40000000000000000000000000 }, - { "addr": "0xb2dae1a4a2d3fa9a6abd2c5bc86ffe0eec8a8b3b", "balance": 5000000000000000000 }, - { "addr": "0x3ca6e03ac02b4ca77c6754ffcbac1a9a07d98435", "balance": 80000000000000000 }, - { "addr": "0x0273b0b36399aa2d3efb326c315c2801236be16b", "balance": 73000000000000000000 }, - { "addr": "0x54ed57ec54ef6b6a802c78ad858ad16992deba60", "balance": 73000000000000000000 }, - { "addr": "0xf147b5026ad1a886d6185d11081cab369c4dade6", "balance": 20000000000000000000 }, - { "addr": "0x4511563eca76b99863da484335ece17230e20c74", "balance": 200000000000000000000 }, - { "addr": "0xa39622917b287fe5fdb1e77ae1f6012f2293aa0e", "balance": 5000000000000000000 }, - { "addr": "0x9eb5615daf56b4a5d0d22bbb12871dd2f072c05e", "balance": 20000000000000000000 }, - { "addr": "0xf90adaaccf067793ae66924f5f73d009a31d0a09", "balance": 160000000000000 }, - { "addr": "0x06dab868bf9b2b3f75908360283fb2b894812dfb", "balance": 58210096500000000000000 }, - { "addr": "0xb53fba762bfc0060ccad74a8de7abd98d1d9cdeb", "balance": 73000000000000000000 }, - { "addr": "0x78540d5471a12a2011d20c9ad816f5af8de3fa74", "balance": 1000000000000000000 }, - { "addr": "0x52d523e0a55823fb3317285fe9d693fb170bb33a", "balance": 62399000000000000000000 }, - { "addr": "0xcd4131315531df3dfd2f84e5dfe32aec13e80e61", "balance": 72000000000000000000000 }, - { "addr": "0xa81de19907c577e1e1304673233f459eaf7c7311", "balance": 38000000000000000000000 }, - { "addr": "0x56678b7c874cadb7fddfe96d4b2cbf5758b802a7", "balance": 71980000000000000000000 }, - { "addr": "0xa3ee44e66a923c756e32a48df4166d5dcc2b3472", "balance": 73000000000000000000 }, - { "addr": "0x23364e6d46be3c2341abfd40adb946bac1997853", "balance": 200000000000000000000 }, - { "addr": "0x67772417d78cdb804ec1d52a0b7f14c89f5aea65", "balance": 5000000000000000000 }, - { "addr": "0xd5d09ac5abf6f7c2c93be4a1cc5a4038d811f00a", "balance": 5000000000000000000 }, - { "addr": "0x0ef41fb82015c887735db87344b1c34043560825", "balance": 880000000000000000 }, - { "addr": "0xecae980d560c5ed3fbd7cd30e478e6e35dbbcb2e", "balance": 5000000000000000000 }, - { "addr": "0x134b8318b938096e9c55dd10540b337e2e1f9177", "balance": 2000000000000000000 }, - { "addr": "0xf91d297110867ebf8e27021ea4e060eac9d36491", "balance": 200000000000000000000 }, - { "addr": "0xa08a67b51bef146a415654ed4a405c765b961ff0", "balance": 5000000000000000000 }, - { "addr": "0xb942cca5728d04640cbc4578c3084b66f24e741e", "balance": 96000000000000000000000 }, - { "addr": "0x8591789d72cbd4b837c0d8559ddaff791ffa7761", "balance": 5000000000000000000 }, - { "addr": "0xf411c307cc8736627ae6718c4f5f999be70713d7", "balance": 5000000000000000000 }, - { "addr": "0x1c6dcdbc690a9cad657375dceed22b1a851a1ac4", "balance": 200000000000000000000 }, - { "addr": "0x9571c76ea581083574c1e98c3b90cd5fb5d443e1", "balance": 5000000000000000000 }, - { "addr": "0x7753307187d0b9e0f753d7426e499f721363500f", "balance": 69359000000000000000000 }, - { "addr": "0x5a0c8dda790b1b5ac5744b4ef4ada6138cdaae74", "balance": 1000000000000000000000 }, - { "addr": "0xc050932d02e8662385536982cb57f87112732653", "balance": 5000000000000000000 }, - { "addr": "0x9945dad0f2637fc268f407c9de9d3c0ff6164654", "balance": 10000000000000000000 }, - { "addr": "0x633d9380a1123bb17550420a0ea5febd2818e35d", "balance": 20000000000000000000 }, - { "addr": "0x9be579b42e904161b5216a67de76693c7ff48d46", "balance": 1264034700000000000000000 }, - { "addr": "0x5ac574bb14512ee604eca6ba9df26fe13c50ca5f", "balance": 200000000000000000000 }, - { "addr": "0x0ed135099eee37a87e2585187845f7241e77f1b8", "balance": 200000000000000000000 }, - { "addr": "0x2760797f81d61d2d77202ed66fedb51dfd56b997", "balance": 5000000000000000000 }, - { "addr": "0x116b0cce4dfc7a0ece5f117a12f694527631d6ca", "balance": 23999880000000000000000 }, - { "addr": "0x154ff9264decd84c422f07ab8a54e850a0a28431", "balance": 59739000000000000000000 }, - { "addr": "0x597e57fc11e5d9fed0fa6cd3a87b3234c8cfaf62", "balance": 73000000000000000000 }, - { "addr": "0x917026cc35a882bd1f02f3671b85c95c362a9c9f", "balance": 5000000000000000000 }, - { "addr": "0x30b6c80dc7996b36560413a3384e71dab74fcc52", "balance": 200000000000000000000 }, - { "addr": "0xa4371d8151eda04da0e700151e83243a5092554c", "balance": 5333200000000000000000000 }, - { "addr": "0xcfbc646bc8c8f4312b53bf7f32e9ab2a8ba2d51b", "balance": 20000000000000000000 }, - { "addr": "0xc06173f0ed819241dab5debc0a4866ea6492325c", "balance": 5000000000000000000 }, - { "addr": "0x3b52e385315021ce58cd0c9808d1abbdd40bbc8c", "balance": 760000000000000000 }, - { "addr": "0x00d56928fc3fa8036a5e6cef9f74ce19ad8271e1", "balance": 73000000000000000000 }, - { "addr": "0x1e6f148d09e4f78c53b6d7dbd2d1c5a771d14987", "balance": 20000000000000000000 }, - { "addr": "0x557d0696277d21dbf6209aac382d9037331a45b8", "balance": 200000000000000000000 }, - { "addr": "0x3f27c7c8f5791f3099dc41451471cbe909a18806", "balance": 1409325000000000000000000 }, - { "addr": "0xec5d50b235b24939e157ed273cf9348d98620c53", "balance": 200000000000000000000 }, - { "addr": "0xefd2690a07ecaeef29d754bf7f11df49563a2fdf", "balance": 73000000000000000000 }, - { "addr": "0x94b3df056653d265041e3f4039ddc96df6c4ceb7", "balance": 200000000000000000000 }, - { "addr": "0x2f89d527e6ddc8999f712d00e313cb83dd1d543c", "balance": 50000000000000000000 }, - { "addr": "0xb87481d9357a91c0d8cb402dbec71997e7bc189c", "balance": 48000000000000000000000 }, - { "addr": "0x5e8b33ebd72c7d9f32020174f5e827d796a36b44", "balance": 73000000000000000000 }, - { "addr": "0x50cbfc95e0a28b7e7ec9f7b360aef464d849fdd4", "balance": 200000000000000000000 }, - { "addr": "0x380fb937334c1b6ff015223f07cf4fdaa0d08fcf", "balance": 73000000000000000000 }, - { "addr": "0x3c4af13458c3b43a8970daccbf5957b299064ee2", "balance": 10000000000000000000 }, - { "addr": "0x7d56e253d5d706c74365ebd2577de82a48f7d1ff", "balance": 5000000000000000000 }, - { "addr": "0x009700c9c896dddc4a861b5ec8b9b44889785827", "balance": 590000000000000000 }, - { "addr": "0x36b199901053c3f20d8aff7fd10cb23246d17c1c", "balance": 25199870000000000000000 }, - { "addr": "0x0ccabcc0cb91f427899126e9966d8eb04e5cff71", "balance": 200000000000000000000 }, - { "addr": "0xf02cd579e8fc7184d855c82d59826b1c224d6b4e", "balance": 5000000000000000000 }, - { "addr": "0xdadc6a28a05aa4920a3645b03689af1e5929e435", "balance": 5000000000000000000 }, - { "addr": "0x29d06faefdf7c772b82bb0250ad375ce9f90d53c", "balance": 1585218160000000000000 }, - { "addr": "0x8d7a08cc5d435a6d6fc9d18135ed6188c1b62aa3", "balance": 47999760000000000000000 }, - { "addr": "0x61e5097d8469f0b0edaf642f2bf06df7c29cce69", "balance": 170000000000000000000 }, - { "addr": "0x36909d9fa1016a5a87a1f1f4ddd7e811727e51ab", "balance": 200000000000000000000 }, - { "addr": "0x3d76d07bf5ecda2f23c9a84971d8c92fd6b33920", "balance": 24263880000000000000000 }, - { "addr": "0x9d308e7171d5298b2bcad5decbf7f07b45393f1b", "balance": 73000000000000000000 }, - { "addr": "0x845ff1442ab4f9c14f3e5b8f32799a0bb4fc9cde", "balance": 5000000000000000000 }, - { "addr": "0xa2b9a7aa727f69fcd819f6eea6d996db787b41da", "balance": 10000000000000000000 }, - { "addr": "0x7074fdde3dbb08d567ce5662bed403a8db514d0e", "balance": 73000000000000000000 }, - { "addr": "0x71d1915dfbe93740f37ea10e281bd7cd91f50adf", "balance": 5000000000000000000 }, - { "addr": "0xd0e9cdef0061936dca8a1b4a529ea00a3db19abb", "balance": 200000000000000000000 }, - { "addr": "0xf6e81a87b06182f8716ad3a8f01ddd7d436ad76b", "balance": 1000000000000000000000 }, - { "addr": "0x3a2ebd6889adfac37bb3dec4688222c1913c2471", "balance": 73000000000000000000 }, - { "addr": "0xac93ddd3b4c2c391d73dc7f7e21c0cddec80689c", "balance": 119999390000000000000000 }, - { "addr": "0xd7fc74dfe04cd5be30953e14ea5ac03614461db8", "balance": 5000000000000000000 }, - { "addr": "0xb83525975c2cb809d3cc3fa195bb68cf49bf8c9a", "balance": 73000000000000000000 }, - { "addr": "0x95d65d3a60d815a6e8f233beb890c409838ccabe", "balance": 5000000000000000000 }, - { "addr": "0x51fea7a5bd6cb9e72734aace3a3578afebdd06d7", "balance": 73000000000000000000 }, - { "addr": "0x4ad5ab37049eacfe6c98bb8a80abc02ee747ae4c", "balance": 240001000000000000000000 }, - { "addr": "0xd47e824790b564e5eb8d2ad037e5b450ee65de72", "balance": 173499200000000000000 }, - { "addr": "0x9c145a6c7ac655dd5dea6c5a679f9f4c494494fd", "balance": 880000000000000000 }, - { "addr": "0x6fa4141b278625faf7a176f19425fbc165a5c721", "balance": 5000000000000000000 }, - { "addr": "0x5042830909eb6f47f43d62f73560ba2ac27764ce", "balance": 5000000000000000000 }, - { "addr": "0xc4ddb0ec596e0e701a0da96a801651ee153b4d27", "balance": 47999750000000000000000 }, - { "addr": "0x811ef8364c877381d93abc88583984ae385d9575", "balance": 830000000000000000 }, - { "addr": "0xc56ee534c1288cfd3bb8c017cfe87a258e7ddaa4", "balance": 73000000000000000000 }, - { "addr": "0x963724f9ce2b90fe19780329fd170975ee58ef0e", "balance": 750000000000000000 }, - { "addr": "0x335bd4bb55ec004498060ebc154b0230c62a895b", "balance": 90000000000000000000 }, - { "addr": "0x8c4d30e6d625a18892a76c8485b134111181ddcc", "balance": 73000000000000000000 }, - { "addr": "0x3907a1baf186712cc0909efc669b4a52619ef052", "balance": 173499200000000000000 }, - { "addr": "0x24238a69c2fe7dec2d872699cf16373e41179b49", "balance": 5000000000000000000 }, - { "addr": "0x52beb9bc004e56ba6f44ba57c4fb218812c24d56", "balance": 35519000000000000000000 }, - { "addr": "0x8ce768fbc1c244b7a17db091dca4b24f936c7556", "balance": 50000000000000000000 }, - { "addr": "0x616de5848ed7d24c90e01b1b9a3766c984c36741", "balance": 73000000000000000000 }, - { "addr": "0x7404363a8e9f8ae084adfe5dcccec87177f248ae", "balance": 200000000000000000000 }, - { "addr": "0xc752c3443df5569f9f76571e4062d5527742eef9", "balance": 5000000000000000000 }, - { "addr": "0xd2f494ee0203d1cc19d706a73560be919a5ad327", "balance": 5000000000000000000 }, - { "addr": "0x8a863979a4e39183f2f0268b1bdb50fb9e498a00", "balance": 5000000000000000000 }, - { "addr": "0xe327be41069f8b5a97ac4c3dd56f7f2981a72ed5", "balance": 73000000000000000000 }, - { "addr": "0xb56d5c5f3bc91e18414652d7c0553aeabed4ed05", "balance": 5000000000000000000 }, - { "addr": "0x03aa17d7f1cb7d10739e0391f53c0b4862c48316", "balance": 1000000000000000000000 }, - { "addr": "0x1fdb189d6bbd2ec4e35814ffd72c03fc15724c2e", "balance": 200000000000000000000 }, - { "addr": "0xbedef5248449560a54e846326839c2ae6b35227b", "balance": 200000000000000000000 }, - { "addr": "0x1e7432d7815321a8af4b19188838025791427e3e", "balance": 73000000000000000000 }, - { "addr": "0x4824e7a3ff103b597899018c9c0692dedbe67adc", "balance": 20000000000000000000 }, - { "addr": "0x56c45a059f487fa6a9f01f7e441f88464681e02a", "balance": 200000000000000000000 }, - { "addr": "0xb575ecb118741def177e9fcd459b8354b74d2c01", "balance": 200000000000000000000 }, - { "addr": "0x3c3fb672fd40f9538d1ebdff6a33afd541a5cb1e", "balance": 173499200000000000000 }, - { "addr": "0x957cd4ff9b3894fc78b5134a8dc72b032ffbc464", "balance": 73000000000000000000 }, - { "addr": "0x9b5af578e153980abd758f2be08809b89da85c90", "balance": 5000000000000000000 }, - { "addr": "0x3b62597cf897726a73b3bf33d1cd02b0ba7e6b39", "balance": 5000000000000000000 }, - { "addr": "0x11c631db5342676fd2f689f71fe0fc021a605213", "balance": 73000000000000000000 }, - { "addr": "0xc7ff7d027db82bfe3f3b867ada5e0bd74ec82c7f", "balance": 26238310000000000000000 }, - { "addr": "0xd45b64cd5a7e7172e3cc9a01744def12234f09db", "balance": 5000000000000000000 }, - { "addr": "0x396c3a5aaf4d7bf6bc8e9f4ea779bf69d0a473a5", "balance": 55230000000000000000000 }, - { "addr": "0xb61ee107bf5e61f824aa3b5dfb46e0ad99bc9b3c", "balance": 173499200000000000000 }, - { "addr": "0x5034a02fed4b68fe50a14838eb6cbbc0f1e388a5", "balance": 833600000000000000 }, - { "addr": "0x812d50561a02beda88290cb921048360e18c34df", "balance": 10000000000000000000 }, - { "addr": "0xb780b0bb8a29ca2c144544235892d42698a1af0c", "balance": 200000000000000000000 }, - { "addr": "0x6dd4734e858a87f2c685018240622088620cd4ae", "balance": 400000000000000000000 }, - { "addr": "0xe128ddf8e2a712502556b5f633746e7a04ff951b", "balance": 5000000000000000000 }, - { "addr": "0xe9c1369d2de6212a594986ae9a545e4a09e2d9af", "balance": 126560000000000000 }, - { "addr": "0xa5751d246672c35f252e2d1a99041779c511d46a", "balance": 5000000000000000000 }, - { "addr": "0xa3195b70430791c946e3fe96ca6c87a0b4b7421e", "balance": 1000000000000000000000 }, - { "addr": "0x7cd7ba15d62bd20a149471e29ce852b4ea4a5dbf", "balance": 678160000000000000 }, - { "addr": "0x8f3e6c3330fe741e233f097b190fab95dd071fa4", "balance": 5000000000000000000 }, - { "addr": "0xd630622bcdb699e39c6ac88f812286e1f0496aae", "balance": 73000000000000000000 }, - { "addr": "0xb819ebbe995b6c95d95cd537bba47fc0c0aaa7bd", "balance": 5000000000000000000 }, - { "addr": "0x58a6109b466ea4f422c202c7d7a02d0bb0783b47", "balance": 5000000000000000000 }, - { "addr": "0xb6d18ae705345d15b305cd3f8547fdb8d6abe5b1", "balance": 73000000000000000000 }, - { "addr": "0x687bb9678d443d473f696982043aa31f3c1fd2fa", "balance": 200000000000000000000 }, - { "addr": "0x71f01ef048375538e5db76578a347a394e7e524a", "balance": 200000000000000000000 }, - { "addr": "0x57d744cadb3ab6e70c72448cd0c1f8fa1d4ee482", "balance": 25000000000000000000 }, - { "addr": "0xa264a0e823d0b63bad1469fae4a92d7468b9cad3", "balance": 5000000000000000000 }, - { "addr": "0x301edd7f9565e56b7db0702b8fd39f288f5cabaa", "balance": 35000000000000000000 }, - { "addr": "0x74866c5bd94acfb6ec37d6e3d4cb97cf273bcdb5", "balance": 73000000000000000000 }, - { "addr": "0x73271041125cee25425ebe8b195a75449bc84f21", "balance": 73000000000000000000 }, - { "addr": "0xd9ee4db818ed219cfdb9dcfaf58abc71ee685617", "balance": 73000000000000000000 }, - { "addr": "0x712cf311e61650e47d5d85a0e158fd3f96962cca", "balance": 10000000000000000000000 }, - { "addr": "0xead07d18b4ad47774eebd2ae0b2fe325c1ecb9b0", "balance": 200000000000000000000 }, - { "addr": "0x09da77f8ac9cf590481b02405511785994b8e32a", "balance": 116901000000000000000000 }, - { "addr": "0x7120841bdf4100ed6f245a456942f18351e2344e", "balance": 200000000000000000000 }, - { "addr": "0xd99dfea88ea1a6995ace4845c1f64ac2c6cc0dc9", "balance": 200000000000000000000 }, - { "addr": "0x1dc2ad73d741db4c0be3a01b977597d46dcc6dbe", "balance": 173499200000000000000 }, - { "addr": "0x35c60d4370d64a1b5d348226cc8b35fa6c5d6e90", "balance": 48239750000000000000000 }, - { "addr": "0x4cf3c2ea86db57aad65d99f356ad23f7c329172f", "balance": 20000000000000000000 }, - { "addr": "0x4820e2284c75c69f899424257f1e6defccd9433e", "balance": 200000000000000000000 }, - { "addr": "0x769f61bbba8d5c8506a7273ba71c2d6bdd5a082c", "balance": 200000000000000000000 }, - { "addr": "0xd7e0dc071ef38544a072ce6f333a8697bc11c1b5", "balance": 2666520000000000000000000 }, - { "addr": "0x274e4779b5bbf7c09e58a405a46b35188dd7794d", "balance": 5000000000000000000 }, - { "addr": "0x248583fc32fbc414bd4709c32cc7cbb4859d7455", "balance": 182628571428571428571 }, - { "addr": "0xb050cb13cdf94a875b1140f47fe1124d20cfd75d", "balance": 680000000000000000 }, - { "addr": "0xbdf12cdd39af00f22821346aad0f1667f5e9e639", "balance": 173499200000000000000 }, - { "addr": "0x327c6586bd8651b2169413617097ff8845ec1482", "balance": 5000000000000000000 }, - { "addr": "0x3dbfedd86bab4a1ee006311be124d9eb7d276e7f", "balance": 5000000000000000000 }, - { "addr": "0x1d2098cec2772a0dcff006c0c7d4a717ab68c18c", "balance": 5000000000000000000 }, - { "addr": "0xdec60482b8ee60cfc181bc2140e4802319c83793", "balance": 5000000000000000000 }, - { "addr": "0x9a592864806620ea8189fec2b9c7c011060bd232", "balance": 200000000000000000000 }, - { "addr": "0x421353ec795f271307b2c071e4d2142099610747", "balance": 5000000000000000000 }, - { "addr": "0xd835b2bc75a07a7039419786ae241dce301672d7", "balance": 5000000000000000000 }, - { "addr": "0x064e255b75bd74aeb028c9f6e06c89f8484d19c8", "balance": 5000000000000000000 }, - { "addr": "0x68d217d2e89edade8833578976fa9722796f7233", "balance": 100000000000000000 }, - { "addr": "0x591ff431ea9ecf92b047adb13d34b68607edddf4", "balance": 173499200000000000000 }, - { "addr": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", "balance": 281292133783941090000000000 }, - { "addr": "0x555bab900bbb100084fefc8fe26b98208c16680a", "balance": 73000000000000000000 }, - { "addr": "0xe29da41261c5c4776de5d6d926f2b9f4914185ab", "balance": 200000000000000000000 }, - { "addr": "0x233c7a90a75afade99e9ae667696b0e12c181f1e", "balance": 1585218160000000000000 }, - { "addr": "0xb0508a7a73a0cfee9629df93a02ac32288f99b95", "balance": 11905840000000000000000 }, - { "addr": "0xfd5507f3973f2ecf2c9b57675d1ed001d57e0ada", "balance": 200000000000000000000 }, - { "addr": "0xa634f2d92811be4a7079dba502401fe6e5dcb8cd", "balance": 1785218160000000000000 }, - { "addr": "0x75d0809a9fe3d49008067ed99183960d044b86a1", "balance": 73000000000000000000 }, - { "addr": "0xe2d97088a9170e837d91c166e8323308701499b9", "balance": 5000000000000000000 }, - { "addr": "0x5b6412a12e42ffd1e7d0748c0773c6b3c873e49b", "balance": 200000000000000000000 }, - { "addr": "0x1a502d2be4ef99eabb8020208fbff057dd7c7d6b", "balance": 200000000000000000000 }, - { "addr": "0x8b13faa2b20d67db7b9c97104521236731317733", "balance": 1000000000000000000000 }, - { "addr": "0xa3d8f94024c2c2bf08bd9e0b9b57994e07598ece", "balance": 20000000000000000000 }, - { "addr": "0x9b77601e54360c8f78b369ca761c649bce52c63e", "balance": 400000000000000000000 }, - { "addr": "0x289f43a93fd0e226f5cde5a5d389f5349d6e0813", "balance": 38399800000000000000000 }, - { "addr": "0xd2b6c3fb2e3e16b9134168d8e2c77a40559826c2", "balance": 173499200000000000000 }, - { "addr": "0x06a9b20dfe3c843cac02765e119924efd4cce30e", "balance": 200000000000000000000 }, - { "addr": "0x2ba99ab62211f0c95f51d380e1832e58e4d9a237", "balance": 30000000000000000000 }, - { "addr": "0x54266d316605f1fed19d80e1cd0f113ea77226a1", "balance": 23999000000000000000000 }, - { "addr": "0xbc9458c481c0b532b5a7db71689434fe3c22c4a2", "balance": 730000000000000000 }, - { "addr": "0x051aa668c9c3f97097d988713149631e98af53d0", "balance": 5000000000000000000 }, - { "addr": "0x00929d43cba1d458bb6680c300930a55c2536fd7", "balance": 20000000000000000000 }, - { "addr": "0x03e4621ab80add4a6118bac502e5404925839b43", "balance": 200000000000000000000 }, - { "addr": "0xbe45b08d23d9baf4c5e04f8fee8f81249b3ff861", "balance": 200000000000000000000 }, - { "addr": "0xc482b22f706f67c4d0c27f244e1d9dc2e3965c97", "balance": 5000000000000000000 }, - { "addr": "0x7a80e85b22d9a950d906d646fc6a731b3cd621dc", "balance": 5000000000000000000 }, - { "addr": "0xa482b444d6ca78c13db6ae9b08d07f03041c1ad1", "balance": 173499200000000000000 }, - { "addr": "0x88c8ba2fcd4f3b0f9871183c41777ec3697d3bbc", "balance": 200000000000000000000 }, - { "addr": "0x17b612edd258492e059c2b3fa4fdafe30bd9aa29", "balance": 10000000000000000000 }, - { "addr": "0x7ea16034b5831e297c6e117d1595a38f5f21f38a", "balance": 216000000000000000000000 }, - { "addr": "0x6bfc6682aa864ac16fc590f16159684c7a433066", "balance": 7999800000000000000000000 }, - { "addr": "0xf7183a0f5b75e53c560ddc990ab675fa38d54fa5", "balance": 200000000000000000000 }, - { "addr": "0xcf57d1b9adb07797c5adccf87a7126134dd44f70", "balance": 200000000000000000000 }, - { "addr": "0xa44d876d83e69f6c9f7dff4a62296bfbb3756c18", "balance": 5000000000000000000 }, - { "addr": "0x47e2da89311a22f7c2a2f8e1a58387269989d245", "balance": 5000000000000000000 }, - { "addr": "0x79ac2120028c4ae39d531dc822d9a636ca6ba5b2", "balance": 73000000000000000000 }, - { "addr": "0x92711960ea265632c56399ed8411e6f85071b53a", "balance": 73000000000000000000 }, - { "addr": "0xaad38cc52e56aeee3912d08cabf52a73a89dd05e", "balance": 5000000000000000000 }, - { "addr": "0xb16a65c8fdab16d0389ac98ec58f1224867b847f", "balance": 1000000000000000000000 }, - { "addr": "0x9a4531473f3b6a8fba2a56162df1931ae7c36633", "balance": 262048174700000000000000 }, - { "addr": "0xe26d8ea58a132285dd6066ec8a2bbd7d71ee09e2", "balance": 5000000000000000000 }, - { "addr": "0xd5b3b9e65b50df955558ee6c7c4f6840ee07e077", "balance": 73000000000000000000 }, - { "addr": "0x813ce58a9bea9cb6fd11b3dde5d870f70f53adfe", "balance": 32000000000000000000000 }, - { "addr": "0x20f2b5457770d90428019e7851c405cee2161c7d", "balance": 5000000000000000000 }, - { "addr": "0x1dc66f89e47d1d6240162eddaf36ab2cba91362e", "balance": 1585218160000000000000 }, - { "addr": "0x288bbfa207a86d9086bb76296c3f3eb07d105381", "balance": 5000000000000000000 }, - { "addr": "0xb4ab74492ef0ff06833dec6111f4e675dac71807", "balance": 5000000000000000000 }, - { "addr": "0x5e955d0cdbcb24d8db3c1537d02d206cdcc93c1f", "balance": 200000000000000000000 }, - { "addr": "0x1dc65f5792c46a6877a737bd512e95080e7568f4", "balance": 1585218160000000000000 }, - { "addr": "0x9e9153c596f10682ab6fd8c9e97c3af37bb2849d", "balance": 200000000000000000000 }, - { "addr": "0x3e80be148954019067cb420d442de5b1059c6ddc", "balance": 10000000000000000000 }, - { "addr": "0xca5d24e7dd9efdf1c89452cba7a0f8de92883bbb", "balance": 10000000000000000000 }, - { "addr": "0xbd814b2f7fd859da6cc333ca0c10e99c178c59f5", "balance": 207702277900000000000000 }, - { "addr": "0x5be9281f2b0b6db54c12809188489b71b73a7938", "balance": 5000000000000000000 }, - { "addr": "0x6c02b5a21fc7986b90ce8c822469d87430ea99ca", "balance": 173499200000000000000 }, - { "addr": "0x1614c512e28c4cf85b86247a333d0c5f79a38bad", "balance": 1199993860000000000000000 }, - { "addr": "0x76d249619b5738c0ccc276f289ee790605bdee22", "balance": 200000000000000000000 }, - { "addr": "0x4c8811b2f517f8e1bd635001af6197773f07fd1a", "balance": 200000000000000000000 }, - { "addr": "0xf7a4942e8463a075be3bd2f2a0421d1a2ac224cd", "balance": 880000000000000000 }, - { "addr": "0x1ace0433df8596db4236c16ea20794c1ae0c800d", "balance": 5000000000000000000 }, - { "addr": "0xeb19e0ad4a13f120c3a2346a5a3a3d2fd6dbac88", "balance": 300600000000000000000000 }, - { "addr": "0x911b287c36dde0cbf0611929a05cb17752fd44d8", "balance": 173499200000000000000 }, - { "addr": "0xf0673828337d8519de610b553779a6ca6b2159a7", "balance": 30000000000000000000 }, - { "addr": "0x5a1dcdb6e08cf4dc44d9403d82147b86b531a0f6", "balance": 200000000000000000000 }, - { "addr": "0xd3ee6a7a5288fc0d33a491a1a96fb2964cb08d2a", "balance": 5000000000000000000 }, - { "addr": "0xee935672edd794a636e7d9f3220da2ffd6ea9d67", "balance": 7500000000000000000000000 }, - { "addr": "0xa9cc21e685d117ac08c901d92158af9aa9c5ad12", "balance": 5000000000000000000 }, - { "addr": "0xb6f012c97747a626cf40204d94f8a37ca1b6843b", "balance": 266660000000000000000000 }, - { "addr": "0x7857ad2127257f706bae4826e8a08585319c40e9", "balance": 23999880000000000000000 }, - { "addr": "0x519387393e5779781732ba0cd2b928b9aa64402d", "balance": 177791093500000000000000 }, - { "addr": "0xf218bd3a309ba2c38063be068c3de259a688e045", "balance": 200000000000000000000 }, - { "addr": "0x56ab060f8ecadbc1ac0962610d91e04194198a0b", "balance": 5000000000000000000 }, - { "addr": "0x21607ac3a5a30b7f09ae4a020ce1da2c18252edd", "balance": 5000000000000000000 }, - { "addr": "0x15f42c0e5c9e1a90e2db86a8a612d6a067b44db7", "balance": 10000000000000000000 }, - { "addr": "0xf9090fd7d6045d7c686bfb026a1d4d6bec4be69c", "balance": 29000000000000000000000 }, - { "addr": "0x8a99bcc517dc6c9d8ab142bc43e7284eb3a3b9d7", "balance": 381860000000000000000000 }, - { "addr": "0xab5b6d4af253876475d4663a8a59f15d49c19723", "balance": 5000000000000000000 }, - { "addr": "0x7420c3df6fde8551b8885ecd1ef1e0363f653a46", "balance": 1000000000000000000000 }, - { "addr": "0x9d02233d3e093ff5cfa6a30330d4801b486ababa", "balance": 870000000000000000 }, - { "addr": "0x52e385b35c3732b6a28152a9cd022b481920c69c", "balance": 5000000000000000000 }, - { "addr": "0x63864f6d2a1502c19a0ca30e8799a8289f213a84", "balance": 200000000000000000000 }, - { "addr": "0x1114560e4ceee3d69c1024b16d1e239e98a0202d", "balance": 10000000000000000000 }, - { "addr": "0x9b230c99cd5db07906ea802195459b633ff9c19d", "balance": 10000000000000000000 }, - { "addr": "0xcba8485345a1ed3682409bc04ebbeeb2a9dc5960", "balance": 5000000000000000000 }, - { "addr": "0x68d35438b8f0e81c4c6661901f31b16d5f1dbe0d", "balance": 167999140000000000000000 }, - { "addr": "0x71c2688c654250bc13cc074470f5aac20ba8856a", "balance": 73000000000000000000 }, - { "addr": "0x7898524cc9c3995e6aba4f074f1dffc97c1c82a4", "balance": 173499200000000000000 }, - { "addr": "0xea4227d496a34d3d2991e2a1d44f8dbacc8e68d0", "balance": 200000000000000000000 }, - { "addr": "0xb9c17b7c11a9a5aaf63f6341079e9e5ded7856b8", "balance": 10000000000000000000 }, - { "addr": "0xe0c95626075bb6d64614d1e583d3bfba29d29db0", "balance": 15000000000000000000 }, - { "addr": "0x6216f9002c260ed7daebf451f941688f8073e47b", "balance": 30000000000000000000 }, - { "addr": "0x8948df8771630528fbd7795b884f025a0c766997", "balance": 73000000000000000000 }, - { "addr": "0x3f51b9b24cd79efe292402f35ce4c79761422ef6", "balance": 10000000000000000000 }, - { "addr": "0x6da386f4248a46fce8a7b2f87d34af1ac3124371", "balance": 200000000000000000000 }, - { "addr": "0x9be5008c5f81f3f869a66afb767dd9e8cd7cff3f", "balance": 870000000000000000 }, - { "addr": "0x29f6aa1aa25f9dccf51db71169a9ed0180ce48ce", "balance": 63201735000000000000000 }, - { "addr": "0xe32d2b2d174a7235280dc418fbdb420ca633f3d2", "balance": 5000000000000000000 }, - { "addr": "0x70f27eca22a8dacc4e110483d603c133e12881b4", "balance": 200000000000000000000 }, - { "addr": "0xd5e5cd78505cbfa4c8076408d38e802ec47f697c", "balance": 73000000000000000000 }, - { "addr": "0x9e46076bd325000e22787127e65ad4ffaf084cf9", "balance": 10000000000000000000 }, - { "addr": "0xd15a9c16febac7fcb9ecf7ba2b31dada4a576288", "balance": 30000000000000000000 }, - { "addr": "0x74befe926a1630a7a071d817cbb49c2b6f273d70", "balance": 23999000000000000000000 }, - { "addr": "0x32d5bf8abd11ade720a9ccec7f6a1b857a658879", "balance": 82834032054000000000000 }, - { "addr": "0x5717ed294bf0ffe8835cb93ddd27c61094e560af", "balance": 200000000000000000000 }, - { "addr": "0x1d8376bec36e80f9dbc601347e265195c7ed9f15", "balance": 200000000000000000000 }, - { "addr": "0x5f92a7b3e97b79f6fee2a0c7bdf6c3e13d3c5b15", "balance": 200000000000000000000 }, - { "addr": "0x7e31b668e6e71c56e3c3ca79e36da67b763d9542", "balance": 73000000000000000000 }, - { "addr": "0xe196c2d3fbccd8066edf1cec78efe6897ed9fb68", "balance": 5000000000000000000 }, - { "addr": "0xba342f36690c5cc714933f7a223f48d97120f26d", "balance": 10000000000000000000 }, - { "addr": "0x317b9af6a8ee910e10783316d363c034c7ba9df4", "balance": 5000000000000000000 }, - { "addr": "0x55b74ef0ff2c983205dc88c09ba0b2c0da009d2d", "balance": 5000000000000000000 }, - { "addr": "0x8dc22c74f357deb5787041ef0b0775319edced96", "balance": 20000000000000000000 }, - { "addr": "0x34fac153ea6eee0381010673b472143cb6bf9cd6", "balance": 23999880000000000000000 }, - { "addr": "0xbe3578eb89dfd244b243090a46c288fae3b0f31c", "balance": 1000000000000000000000 }, - { "addr": "0x6fa9a435c8fa2dc67ad3045a6258511326c84e8b", "balance": 73000000000000000000 }, - { "addr": "0xd9a3b1e370b535e430cd4f1d892c73ffc8377cef", "balance": 73000000000000000000 }, - { "addr": "0x6b0121b6b1e91179b96c037d872ce5261c392d69", "balance": 23999880000000000000000 }, - { "addr": "0x674f6b43aa84e039f37bf01cb53fcc195f27da38", "balance": 5000000000000000000 }, - { "addr": "0xf5c085d8472e36f0e19e4eb121876a49c42c3ce5", "balance": 200000000000000000000 }, - { "addr": "0xd8f108574eb253018c7e1221198daebb8f54c72c", "balance": 610000000000000000 }, - { "addr": "0x46cb53d097d689efdf8b83b41abed49a413d46e5", "balance": 1000000000000000000 }, - { "addr": "0x5459981a60f5cdbd51c859bd9283e48b44567b24", "balance": 200000000000000000000 }, - { "addr": "0xdfa5897ca28926bc5f27ebc5b9496faabda5d645", "balance": 200000000000000000000 }, - { "addr": "0x62c15527723f5b11ec2644314fb4853514471e45", "balance": 266660000000000000000000 }, - { "addr": "0x776041079852e84d9ca9ee87f6c0c4234b60df0f", "balance": 431409000000000000000000 }, - { "addr": "0xfc3efb9f6124d68b33de4ecce3f3057b564638f8", "balance": 750000000000000000000000 }, - { "addr": "0x792c973579aa0923193734faa67ec2215d0b7589", "balance": 73000000000000000000 }, - { "addr": "0xb60c3b0d8564712d90332092a16e0972227d30a3", "balance": 5000000000000000000 }, - { "addr": "0xc70f346cfc2e1ceee5887c89fec676f1a2b1be31", "balance": 5000000000000000000 }, - { "addr": "0xc8a6dc105acf9c40dbe1e2aebcaa639f24d27428", "balance": 97939400000000000000000 }, - { "addr": "0x0ba498a81938de892165b99807e2c003cb4e18f3", "balance": 200000000000000000000 }, - { "addr": "0xc862567d9b5a343db9228ea33d041c574179e3f6", "balance": 5000000000000000000 }, - { "addr": "0x5c963446f75d9e27a6183e714df79f07941925ef", "balance": 73000000000000000000 }, - { "addr": "0xf65bd56d081f2973758955836e6c3c5fdcbef4b2", "balance": 1013280000000000000000000 }, - { "addr": "0xbf128f013f40ec7fdfe95d0a298e85764f628e7f", "balance": 173499200000000000000 }, - { "addr": "0xea8331da1c3de2b72f185bab7438484afa2a7526", "balance": 23999880000000000000000 }, - { "addr": "0x4c6a52c4c526ea98b33f3547168fe706f7616f39", "balance": 5000000000000000000 }, - { "addr": "0x8055fe5a92fe744b1d829942f0c92bfded78f0d9", "balance": 5000000000000000000 }, - { "addr": "0xb3ff2ae46548a1db57d3133b99c9014fc2891bba", "balance": 5000000000000000000 }, - { "addr": "0xf0e843801a6f25feb1fedade4ab1c36459435b86", "balance": 200000000000000000000 }, - { "addr": "0xf3c82bf69ecb01a886d948fab56537bf0cdf9c9e", "balance": 200000000000000000000 }, - { "addr": "0x3cf974b7c14308d5b63641f65d8995ffa8840529", "balance": 40000000000000000000 }, - { "addr": "0xf390c2500a44ed5f859b724c08c9046e79baf0d2", "balance": 200000000000000000000 }, - { "addr": "0x3140b74c1bea4fb922fc60234cf05390405d8f0c", "balance": 5000000000000000000 }, - { "addr": "0x4b85d1f3fc229a974ed0bcf61123eaf00f948961", "balance": 73000000000000000000 }, - { "addr": "0x24bfd88b262205f99ce73ed7618988f324a44bae", "balance": 1850000000000000000 }, - { "addr": "0xb726c42d723a6e776bb101f08ca4601de4ad27e7", "balance": 200000000000000000000 }, - { "addr": "0x40a6d80cd729587593182802b09ba8047522b056", "balance": 5000000000000000000 }, - { "addr": "0x531d3f83cda8fb2042ebe840a7638db11c53469e", "balance": 5000000000000000000 }, - { "addr": "0x385afc90ba449afc9f91d65fa00b1da908cc5221", "balance": 31199840000000000000000 }, - { "addr": "0x43c86232da955aaac86a0a79105ef8a08d550586", "balance": 5000000000000000000 }, - { "addr": "0x9a675d451143e3134c614b7b14f87f3b3f8675cc", "balance": 173499200000000000000 }, - { "addr": "0x9d747739df61eebbf9d442f7d568abb05aafd6b1", "balance": 1585218160000000000000 }, - { "addr": "0xc1f269c92b0945078ab00cadb2019cbaaebc3800", "balance": 200000000000000000000 }, - { "addr": "0x6e2d973f345f1600677591944931fbf2348bbc82", "balance": 73000000000000000000 }, - { "addr": "0x34956cb32e94f5c9149ec401402e660bd13c57f1", "balance": 5000000000000000000 }, - { "addr": "0x5459439338d9b9942b823b998e900f357e46bdb4", "balance": 40000000000000000000000000 }, - { "addr": "0x4562f062f6195a323db97e8d3bb7a73414b0cf7a", "balance": 120000000000000000000000 }, - { "addr": "0x1d479aae019223a12fe255f6ec8badb6bf9ce040", "balance": 870000000000000000 }, - { "addr": "0x2373875a45aab9e95f2da292f05646e1f72dcfe2", "balance": 5000000000000000000 }, - { "addr": "0xbd6932053a2b71ae18ee801d1c4a7990846f727e", "balance": 23999880000000000000000 }, - { "addr": "0xebb2b2fcacd4f158333ad21e24ca6c821e1056e5", "balance": 200000000000000000000 }, - { "addr": "0xd8cb9c5abc98e1b44c0c0e47bdd55a4b1e34e1b7", "balance": 5000000000000000000 }, - { "addr": "0x63882195d8769bf232922fb1a8d5b89c0d84edb9", "balance": 23999880000000000000000 }, - { "addr": "0x3fee524646e0f58fe179b803086c61cce4fb7b69", "balance": 5000000000000000000 }, - { "addr": "0x265648f9f37c3186bd3f3451bc7cb805b548e63b", "balance": 1585218160000000000000 }, - { "addr": "0x605b964093aebea013cdaa6d04bae48fd327095d", "balance": 200000000000000000000 }, - { "addr": "0x8b1ea47e37a70e7feefc6a6945a4a7272a7934db", "balance": 99660000000000000000000 }, - { "addr": "0x89f91bfbae97eb6fa0a3b33567ecb0aefbed2e0b", "balance": 5000000000000000000 }, - { "addr": "0xf6283c94c6fb94da6d4b7701aee1e2eb79185881", "balance": 73000000000000000000 }, - { "addr": "0x5a34bc00bba40c7b3f3a6f25f48e5085b7444674", "balance": 167999140000000000000000 }, - { "addr": "0xd4c6e6f7ea0531821ebf53b2d305aebee978fd2e", "balance": 26399860000000000000000 }, - { "addr": "0x16d36f4ceaaa5df2d12a961fa001040e576a4342", "balance": 10000000000000000000 }, - { "addr": "0x30f42658ae236a1c5d14e95b196674ad833b8815", "balance": 200000000000000000000 }, - { "addr": "0xd79adf05ee509c3363e94476958065cbc4809e2d", "balance": 2000000000000000000000 }, - { "addr": "0xd57833fa73755552f603856f1216306cfe7489a5", "balance": 5000000000000000000 }, - { "addr": "0xc171a7b3b9d874844260314eb94777f8a20fb6f7", "balance": 23999000000000000000000 }, - { "addr": "0x9978ae52f6695983230725c9d1e30007cf42f1b1", "balance": 8571428571 }, - { "addr": "0x38ae6982a9de7d4b0d46d22c7bf0414ac5ee3460", "balance": 5000000000000000000 }, - { "addr": "0x0f42ad83798758ed5d6d48ae9036acc5e16bed1e", "balance": 173499200000000000000 }, - { "addr": "0x4e80d831bae6e461521c05e0359ae11a119ce9c3", "balance": 73000000000000000000 }, - { "addr": "0x892a575f14499d2c76966eba0b5158602a2f271a", "balance": 830000000000000000 }, - { "addr": "0x0f20571233a7b6950c9d2e554bfa6253664740d5", "balance": 480000000000000000 }, - { "addr": "0xbef9515fa4cb2434ea1c0cd04c575a79b04a6d68", "balance": 5000000000000000000 }, - { "addr": "0x4013e083d8a808e1e53c3fb22a0d53085282ddef", "balance": 10000000000000000000 }, - { "addr": "0x52d4b013677f005406e35cfe990129e31a9550fe", "balance": 73000000000000000000 }, - { "addr": "0x780c6087c18318c3266696b4e18f21b351a2c7d3", "balance": 73000000000000000000 }, - { "addr": "0x74d37d3ef86e1ba77abbbbe8537121208b168bd4", "balance": 23999000000000000000000 }, - { "addr": "0xc526675141b245cc683de776530bac22ed1853cc", "balance": 5000000000000000000 }, - { "addr": "0x3e647199983bd25bd7dac844f5ef2e304efff489", "balance": 400000000000000000000 }, - { "addr": "0x9eea4936f8cd74d83718eab283ea8762259ac261", "balance": 200000000000000000000 }, - { "addr": "0xecc292384b1d64171cf699eca494e5c340e399a2", "balance": 73000000000000000000 }, - { "addr": "0xb5cbe2f86681b5a35cc95020e20565400a83bc6b", "balance": 173499200000000000000 }, - { "addr": "0x4ea037c1524c596288a722ab819ae6bcaf545e13", "balance": 1585218160000000000000 }, - { "addr": "0xee0a75b49966e650d8731aa88ff0536e2d1206c2", "balance": 1199000000000000000000000 }, - { "addr": "0xee7a944f1bf2fa018b0ead224dd3f354e8008fd5", "balance": 73000000000000000000 }, - { "addr": "0x5af16d61a0c8ea0b71912d0ea846eb54ca03ac30", "balance": 5000000000000000000 }, - { "addr": "0x8ce8c68b890a556baf9b785e9d66fff70d0f24c5", "balance": 39538000000000000000000 }, - { "addr": "0x9082a7753be4de163e52e4a815074bf736abf85e", "balance": 200000000000000000000 }, - { "addr": "0x4f42352a6801975db4acd2448d3b2c771a1777ef", "balance": 5000000000000000000 }, - { "addr": "0x17618efea29227bcc2613f247d1a36a39ace1c6c", "balance": 10000000000000000000 }, - { "addr": "0x2758783fb177a0f3430187b485c4d462625383b1", "balance": 10000000000000000000 }, - { "addr": "0x894d2188549e82cddf14fec61844882b19fe957c", "balance": 73000000000000000000 }, - { "addr": "0x051688500f9bb73e030f9633f25f8aad1003b6cb", "balance": 19199880000000000000000 }, - { "addr": "0x9c49ad755a71bccd2412183753031439bd043d39", "balance": 10000000000000000000 }, - { "addr": "0xd7a48e59efb08f034e70fd73252eb4e18e584f98", "balance": 5000000000000000000 }, - { "addr": "0x74d712c2e6e9ed333841b93373a4b821723d2696", "balance": 25439870000000000000000 }, - { "addr": "0xfb66e939337d72ba2eb6d686fe09cd9b070d388c", "balance": 200000000000000000000 }, - { "addr": "0x90be57fa93bcafb999faa5d0fcd6f29223abe613", "balance": 10000000000000000000 }, - { "addr": "0x52f06f686d2e0a6e4f22b9319ce45549d330d89a", "balance": 200000000000000000000 }, - { "addr": "0xe9a4290b2d9815531ceff03d15d07563f4834396", "balance": 880000000000000000 }, - { "addr": "0x6835a0ac71cabcce8be56258e8fe9f082f7c7278", "balance": 20000000000000000000 }, - { "addr": "0xdd413ea41fcd1307069bcb6eb1b7b7c62442f6ae", "balance": 1000000000000000000 }, - { "addr": "0x61cb3377451133e27326e5581f648875e3319aa8", "balance": 320126324813830000000000 }, - { "addr": "0xa83ddd190fdc78edf81344a700810910f34d5eda", "balance": 5000000000000000000 }, - { "addr": "0x74575ba71701d4b5dee9898e3992ea61993d0aab", "balance": 20000000000000000000 }, - { "addr": "0xfa77fb345ae62c6c05bf3865fa14234b0347bf41", "balance": 5000000000000000000 }, - { "addr": "0x5a987cbad031d88b64f347e6f3244ad07fa0e0d6", "balance": 5000000000000000000 }, - { "addr": "0x397ddd2c8cf9c2331982b14c129346b3faed10dd", "balance": 5000000000000000000 }, - { "addr": "0x0d37b04a7597d5e448270edcf166cd152cf53d39", "balance": 148060000000000000000000 }, - { "addr": "0x8024dd93f0f06775067d301ef477e2d61a2cd96f", "balance": 5000000000000000000 }, - { "addr": "0x08155e80e6367f88c723c54887ba365f097e9731", "balance": 770000000000000000 }, - { "addr": "0x0fd03e9035266caf51b2e0c72060eeb1b9e8c449", "balance": 9710009832400000000000 }, - { "addr": "0x503acedbf86e483bd705a44b5cbdba535f4d145f", "balance": 73000000000000000000 }, - { "addr": "0x93492172cb92ad8b33c42e95f5461732c4a23212", "balance": 240001000000000000000000 }, - { "addr": "0xd544374ac198574f0c07044ee7533fdb3656e8d0", "balance": 200000000000000000000 }, - { "addr": "0x53b55fdc1813393cd38830d48f87425795f5f2ca", "balance": 5000000000000000000 }, - { "addr": "0xa8eadd20a3ee95741f591eaed25d3b5124f23265", "balance": 5000000000000000000 }, - { "addr": "0x885386d3a037fca04f87cc6f263b1282e34cbc64", "balance": 200000000000000000000 }, - { "addr": "0x58dd72c8d6618380145510a37fa26779431c163d", "balance": 73000000000000000000 }, - { "addr": "0x4b6441a87a903acd90d9ada4254433fe7b4926aa", "balance": 10000000000000000000 }, - { "addr": "0x544733ee2b03231cefba3f8db123c24da534538d", "balance": 40000000000000000000000000 }, - { "addr": "0x8814608eb240b8d7dfe875ab820e3a6e1574f284", "balance": 5000000000000000000 }, - { "addr": "0xbfaaa94f0976121ea65de080410cfabab7b34a61", "balance": 140000000000000000 }, - { "addr": "0x7603ce7f055d19672b457954f285d5d8263caa4c", "balance": 10000000000000000000 }, - { "addr": "0x176246b187a5fb1fb02cf6413a9fe16da1d9ec39", "balance": 35000000000000000000 }, - { "addr": "0xc20714362e8a1c1619e60976c482c36902de3c3b", "balance": 200000000000000000000 }, - { "addr": "0x0bc0a633df0ab7a239862a0ba1bcc82294c7432d", "balance": 73000000000000000000 }, - { "addr": "0x46a5d78c2c8835c68716292e5e821cb46247e84e", "balance": 650000000000000000 }, - { "addr": "0x891391c5eccff6301cc3c3aade1b18ced5e7ac7e", "balance": 173499200000000000000 }, - { "addr": "0xd6890b00efde16b18956915d69bb75ec7accbd28", "balance": 200000000000000000000 }, - { "addr": "0xe502e14a4ddd0352067e24e217dd72245d9d3d83", "balance": 200000000000000000000 }, - { "addr": "0x6b11225baf2bc7249e34d5f4bd469f27c6d239da", "balance": 10000000000000000000 }, - { "addr": "0xf9b3d9e672a05d0c94e8bb5e44499665577a2054", "balance": 5000000000000000000 }, - { "addr": "0x09e31530930f9ad033ccace722252633df53b328", "balance": 200000000000000000000 }, - { "addr": "0x238dd49d2378d3579bc99a5382dcb50b30b362cd", "balance": 200000000000000000000 }, - { "addr": "0xc4dded6143ba6fe7540242b526c48d977831500d", "balance": 5000000000000000000 }, - { "addr": "0x9a3bf7e7ae91fdbfec14762f96a7d80862eac06d", "balance": 10000000000000000000 }, - { "addr": "0xf3b37f02f92db110c754d6d83c4691b3bdd31a92", "balance": 73000000000000000000 }, - { "addr": "0x8af0373ccc658aae3e2351aefe78c778c3e0fe3c", "balance": 1585218160000000000000 }, - { "addr": "0xf0188459657ee30ea49650e38a93b9150cd0ea7d", "balance": 5000000000000000000 }, - { "addr": "0x5f7554b57ff10c9a54735ba25e14222bfc52613a", "balance": 12000000000000000000000 }, - { "addr": "0x96b3c97ef1656c01ac361f3704459cae3e3898fd", "balance": 24000000000000000000000 }, - { "addr": "0x14d647c835b950c8ba64d4a013134cddcf54fc0d", "balance": 173499200000000000000 }, - { "addr": "0x0c8f6f846bb880bbefd5ae7ab7fbf6540596eec6", "balance": 20000000000000000000 }, - { "addr": "0x485fb1f3714927b57104e6ad4666dceae41a0f3d", "balance": 23999880000000000000000 }, - { "addr": "0xe6b0155f69b1808971706ae4fb61da79020f8ae3", "balance": 173499200000000000000 }, - { "addr": "0x838010720b6666dbddb772ffc32b187f5bd759d1", "balance": 24000000000000000000000 }, - { "addr": "0x7a031bb36bac52812eadb315b4a2382b3fd0271d", "balance": 40295000000000000000000 }, - { "addr": "0x2ea2e4b60447f22645eaa8aa8b0411389aca23ee", "balance": 5000000000000000000 }, - { "addr": "0x47319b4eaaf05a769f0f6c0a0526fb4faa6ffb58", "balance": 200000000000000000000 }, - { "addr": "0x927e68f1b481840ff221223b3f8bed445c9c93f3", "balance": 5000000000000000000 }, - { "addr": "0x1bcfb603b6b8b052b1138cbd2034f56eb15069f5", "balance": 217600000000000000 }, - { "addr": "0x1c7e97e3e781ad2fec2e394d7b790c428415d598", "balance": 25000000000000000000 }, - { "addr": "0x30e92cc36c17a34ba3be6507f631ddf0290fd375", "balance": 40000000000000000000000000 }, - { "addr": "0x07b8c364eb9f44d2cb795a48eb7051fd25e51df7", "balance": 173499200000000000000 }, - { "addr": "0x176d2ef9e13ba3705469bca287af7c1ae14a04ea", "balance": 200000000000000000000 }, - { "addr": "0x595650c5a0a86618e6378cd7b3af8b6ab8f2d962", "balance": 400000000000000000000 }, - { "addr": "0xb7014d9823038aaf673675eeaf8fb58d77b8942d", "balance": 1000000000000000000000 }, - { "addr": "0x9a9754daa02157161a2aae38ade03cdc935d59e6", "balance": 200000000000000000000 }, - { "addr": "0x247bd7ff3063434511566ad022e31448f38098f2", "balance": 131000000000000000000000 }, - { "addr": "0x256227555dcd410ca595e16df7131ed66c869372", "balance": 266660000000000000000000 }, - { "addr": "0x8d6fe0196759134852309ee9b66c401d52f2f906", "balance": 10000000000000000000 }, - { "addr": "0x87192b8feea85798feca2ea7769bcdbb1fba8c10", "balance": 5000000000000000000 }, - { "addr": "0xc1929751524d37c08b606da7027d4b016fc28485", "balance": 10000000000000000000 }, - { "addr": "0xc033d59a0dda74163f975a405b17ee89cc14cd9e", "balance": 50000000000000000000 }, - { "addr": "0x5e09532a7528903d0ce8d9f58064034667dcfdb6", "balance": 5700000000000000000000 }, - { "addr": "0x45c9be300620ad52d4874d013175e2a367fd83f3", "balance": 5000000000000000000 }, - { "addr": "0x99f19a9a780bf9018a9daf42b5676a5ceee83221", "balance": 570000000000000000 }, - { "addr": "0xdc31283a3e04124ea734c273b47c8e99aa0d12b8", "balance": 52799000000000000000000 }, - { "addr": "0x1f9f22ea934d743bd59ed2f2d16a215b8470178b", "balance": 5000000000000000000 }, - { "addr": "0xe9d9c92d96f0e04869f357d04b2e5abac939db16", "balance": 73000000000000000000 }, - { "addr": "0x601567a7e2690cae2f15a4841ff5f7d8e16ed97a", "balance": 8401280838464285714296 }, - { "addr": "0x9ea60d448e997fb6a51d9655ceb7f4d5b8fcf7c6", "balance": 23999880000000000000000 }, - { "addr": "0x277b5236d3560d437626ec621c496a2af62bce48", "balance": 200000000000000000000 }, - { "addr": "0x83704e77f1bdffd5015016731ae684c492ab7952", "balance": 5000000000000000000 }, - { "addr": "0xf0cd3287963a0266e4547587a05c05c360e31b90", "balance": 5000000000000000000 }, - { "addr": "0x0fc093a0d0012a2ff9e72d6a227942b09081127f", "balance": 126700000000000000000000 }, - { "addr": "0xf78f26fea4b348987bb01727c11efd85e936a71b", "balance": 48000000000000000000000 }, - { "addr": "0x12ac52d50d3e4a9eb28e4bd9fce84d133d11ceed", "balance": 73000000000000000000 }, - { "addr": "0x47bb195e6a6ac067eff8e4a21ba4190c93d0ccd1", "balance": 73000000000000000000 }, - { "addr": "0x1336294805d1ff091f7df630eb873ba2d324d6f0", "balance": 182628571428571428571 }, - { "addr": "0x8f7d9f7908e23fa7885523baae70f92e57a33164", "balance": 195000000000000000000 }, - { "addr": "0x5a2789766faf0bf964b9e2cc7e88ab7f989b6949", "balance": 5000000000000000000 }, - { "addr": "0x12e902cc85075cfaf1a312990e45dc0324e81d0a", "balance": 880000000000000000 }, - { "addr": "0x52caed03bc9eadbd0abf100f3d9e7ef24021f4e3", "balance": 5000000000000000000 }, - { "addr": "0x64ed958f838fae61e441f106c4b345bfc1f02f4d", "balance": 5000000000000000000 }, - { "addr": "0xc74e30dd99ae01bb7d5fee41ad3216b9c1db76dd", "balance": 73000000000000000000 }, - { "addr": "0x0b13ef9844f9207730a0e97b26800f80b5aff3cf", "balance": 73000000000000000000 }, - { "addr": "0xc4ea35f414d9f89a368a3311ad6cdf3ad728ff08", "balance": 173499200000000000000 }, - { "addr": "0xf6e198c4ddb31d442884ba7f2ca8506dde793eb0", "balance": 24479870000000000000000 }, - { "addr": "0x5e9bd523db06baa82c909e9a6983e2ae5d8398dd", "balance": 173499200000000000000 }, - { "addr": "0x6b6f3c20a0263ea55f30b810a5789f5c7c0dbb2d", "balance": 200000000000000000000 }, - { "addr": "0x8aafc0c0ef827b21eddb7f63a15437c32657f52e", "balance": 5000000000000000000 }, - { "addr": "0x5bf2c9fe483d91f0c6deb24aaf9a555eadd61b99", "balance": 200000000000000000000 }, - { "addr": "0x0b0ab1ef0a7d4eda773e0b41c577680a0935b186", "balance": 10000000000000000000 }, - { "addr": "0xce27fab76d5ef6813cf102aea33852d0d90f94bc", "balance": 200000000000000000000 }, - { "addr": "0x98e33f1f8ba1c9892dd4c156482cd5cf7df61232", "balance": 200000000000000000000 }, - { "addr": "0xf2897a5e53c1bef0d309412b129ad14157fce42a", "balance": 5000000000000000000 }, - { "addr": "0x720ebeb6c60c37b59436ed7c8a49fced5e2856e1", "balance": 5000000000000000000 }, - { "addr": "0xb50643a2c533931c596cbdbfaf719f771dcfa836", "balance": 73000000000000000000 }, - { "addr": "0x11d29042f3af0f4f8b06ffe2bb7438fbfefc60a8", "balance": 10000000000000000000 }, - { "addr": "0x0f2b146c7ac5df1674ec8e9b7da3b08f5e995d37", "balance": 10000000000000000000 }, - { "addr": "0x1b0fb3d4228ff375e8fa6ceddd9940ae3df996f9", "balance": 200000000000000000000 }, - { "addr": "0x9021de3c60976982f89aaa713ef16ec5f5a2c678", "balance": 40000000000000000000000000 }, - { "addr": "0xe4e27f61d7f5b7a22a5e7cdff794b8ccc3b51b47", "balance": 1585218160000000000000 }, - { "addr": "0xab50ef884f8e172a0f5b8d2a241e8dc0ab76b27c", "balance": 48000000000000000000000 }, - { "addr": "0xb13a864fc2fe3900db8ca3536840bad377d0864d", "balance": 5000000000000000000 }, - { "addr": "0xa2da8a130ff22f2f7a93fffb89b9c0f3739f77da", "balance": 200000000000000000000 }, - { "addr": "0x4a167eb7166004eb3b3956a1c09dbd5234b61736", "balance": 1585218160000000000000 }, - { "addr": "0x3e6c2d87447be0ac22d9421c7aaab5b0f8eacc73", "balance": 73000000000000000000 }, - { "addr": "0x263b347ae2b28651805d225d48a19f6f67c510dd", "balance": 5000000000000000000 }, - { "addr": "0x9c878c4242ec58ccc9ad7a76646445b90775e890", "balance": 5000000000000000000 }, - { "addr": "0x46ddb6ecd2749583a1d3e1aed3e8fad84215e9b5", "balance": 30000000000000000000 }, - { "addr": "0xbc11f0a18fc4c60eb78b8bd13e95411124bbbf02", "balance": 200000000000000000000 }, - { "addr": "0x99d6360f8a027e081d69e593aa1da612fea92538", "balance": 182628571420000000000 }, - { "addr": "0x71121cabfd32349ced5fdafbad4ab84c84b2bc63", "balance": 5000000000000000000 }, - { "addr": "0x8663ad74012467af5552741804b8aaa5900fd2cd", "balance": 5000000000000000000 }, - { "addr": "0x84fca512d4d1800f5d439c04ef2b7375341f0994", "balance": 200000000000000000000 }, - { "addr": "0x1c37b3e8fb76a4c4f8d6738ce3649b828314a988", "balance": 9600000000000000000000 }, - { "addr": "0x2af7cb72cbf285c28ef2f397bb11f46b051fda12", "balance": 73000000000000000000 }, - { "addr": "0x00e175e99d2c01085afb725ed6d13f55b4d3409f", "balance": 173499200000000000000 }, - { "addr": "0x0fcf24efb105dfdf90806de3c2d5492639bd5123", "balance": 73000000000000000000 }, - { "addr": "0x0ff75de01dbf169ae870686bf09cf65d0a60321e", "balance": 10000000000000000000 }, - { "addr": "0x492b93e2e2b06341901df4d84e84819193a8b7ef", "balance": 200000000000000000000 }, - { "addr": "0x97df0dbaa3137e99b4c1e1fcbb9ed29d10e0ad5f", "balance": 10000000000000000000 }, - { "addr": "0x0ee46667c101aacabfa4184d00cd52ddd4bb0ac5", "balance": 10000000000000000000 }, - { "addr": "0x979de1924e025e07d43583d77ae08653f3ff2487", "balance": 400000000000000000000 }, - { "addr": "0x72b52d2d77e0a047a6733995a38833f701668d6e", "balance": 50000000000000000000 }, - { "addr": "0x83108b1d3e5dbbaa8130b02443808a0f23edb2a9", "balance": 400000000000000000000 }, - { "addr": "0x7807732a6be426ea45d891207b339eccd6e545b2", "balance": 490884000000000000000000 }, - { "addr": "0x6981fc86f1da6fee43d2059b0abf037713b746b5", "balance": 218160000000000000 }, - { "addr": "0x7ec3bab7c8be43f5efae5e51033a1f01b6cbff3c", "balance": 5000000000000000000 }, - { "addr": "0xa05aecb7b81400d5f27bb4997cbb57e568130107", "balance": 5000000000000000000 }, - { "addr": "0x99fdeba0e5bc2566059f9ea6ed8a09c34483eecf", "balance": 5000000000000000000 }, - { "addr": "0x782c230134e1f364b3a2b1b971942484486ccf97", "balance": 5000000000000000000 }, - { "addr": "0x57ae3a83acd81d3b715b19e642f337ef88d25e75", "balance": 5000000000000000000 }, - { "addr": "0xb45cc6e30bfe333c13e8bada1f29aa1fb6eac2f7", "balance": 73000000000000000000 }, - { "addr": "0x4663ae6d242b4a91a53816628d25d936c1df3518", "balance": 5000000000000000000 }, - { "addr": "0x26fcdf88ab495362f447f9e2e6f1cf7a825b9a09", "balance": 60000000000000 }, - { "addr": "0x2511180970c0968297c4b6b24bc7375f89caee1d", "balance": 5000000000000000000 }, - { "addr": "0x8ead872e8cc745a39a46d41dc9f6205ea0ebd237", "balance": 5000000000000000000 }, - { "addr": "0xbb6f3e982da30c95abf305337d8fecd30a3ad5a9", "balance": 30000000000000000000 }, - { "addr": "0xd93db237e654f255a82e14361c321a048916a499", "balance": 200000000000000000000 }, - { "addr": "0x38817bc0a838d702d6e4c7252d911f2734169cb9", "balance": 73000000000000000000 }, - { "addr": "0xe3d20e65e200462a00e076cd4fdb7d975ee6f244", "balance": 5000000000000000000 }, - { "addr": "0x09132adc6d7d52501f8273701196f871af15d860", "balance": 10000000000000000000 }, - { "addr": "0x1db32d35bbe45765b3a1dd5cf1fad3f5a7f7f8cd", "balance": 5000000000000000000 }, - { "addr": "0x5c12ca4b972cb4330f344978bee120dc6ee60367", "balance": 5000000000000000000 }, - { "addr": "0x95f4cd2270d99a3deebe67e0d1252a6ccfeb0d35", "balance": 200000000000000000000 }, - { "addr": "0xf3a06216fc91065d54c14238bf335621c2bb7fb6", "balance": 5000000000000000000 }, - { "addr": "0x0097b8664ff3e01939cfc7e625f448a959b6bea0", "balance": 100230000000000000000000 }, - { "addr": "0xa7968e25eb69c2a7a13608827fcaf7064a09a463", "balance": 200000000000000000000 }, - { "addr": "0xa1994b2de45c0823100ee33dc7d244ab4852c7a4", "balance": 630000000000000000 }, - { "addr": "0xad78b0a55afd56685ab2d8e6bab96bbc23966d8a", "balance": 200000000000000000000 }, - { "addr": "0x7d15ebf17dd35c5f04cdb11efe212170dac8917a", "balance": 5000000000000000000 }, - { "addr": "0x502768a1027d010d86b927f03422bab826ac66ec", "balance": 1585218160000000000000 }, - { "addr": "0x7dc2b3b2ea5443b9b122a9d62a92913ccd74c25b", "balance": 5000000000000000000 }, - { "addr": "0x24632be28d33c09b2ca549f07eb3f505d8f3efcf", "balance": 200000000000000000000 }, - { "addr": "0x3a906129e9d43ce89f95c20d317d572d881540de", "balance": 5000000000000000000 }, - { "addr": "0x7a3b722b2fbfb66d94607d55437712dbe29db5f2", "balance": 53292310000000000000000 }, - { "addr": "0x6d6c3448097df124833c84034d65604802ce6a50", "balance": 200000000000000000000 }, - { "addr": "0x331a8236a75bfeb5bb350ddcaa36e939a4da9a3b", "balance": 10000000000000000000 }, - { "addr": "0x0bcba31485645411df35ef3fb5fe8df3eb8f748f", "balance": 10000000000000000000 }, - { "addr": "0x83ed8e854ef990c49c51092e522c2374d7107a9c", "balance": 173499200000000000000 }, - { "addr": "0xe928676042e5d61107847574336edf6c60d5e071", "balance": 95000000000000000000 }, - { "addr": "0x2496e346de4a1813e32e239a4ba8b2cfdcdfdbb6", "balance": 200000000000000000000 }, - { "addr": "0x167eeef7528fa89952bfe4fcffc8bf94547139d9", "balance": 73000000000000000000 }, - { "addr": "0x915b79ef143cdc1333b734ba2a18b535f4360b6b", "balance": 10000000000000000000 }, - { "addr": "0x8873244d1e13c744af9629f486857bf841765e5a", "balance": 5000000000000000000 }, - { "addr": "0x582933d73c3734327324c1d0e094e52198a7918f", "balance": 23999000000000000000000 }, - { "addr": "0x72b30454f8147fbb1dd993af4b2ca12ec5b4db1c", "balance": 1500000000000000000000000 }, - { "addr": "0x2b33937f08727cb1906e9258d1ccdd09df1c3927", "balance": 24000000000000000000000 }, - { "addr": "0x9854e2cb0e71c3bb783be136634c450da5509bf5", "balance": 73000000000000000000 }, - { "addr": "0x46cc30610d4f3a520ee6a4e355baadba16993711", "balance": 23999880000000000000000 }, - { "addr": "0x7b8b37f21bd01188a41df34fd60a32231a8ad34a", "balance": 24000000000000000000000 }, - { "addr": "0x995e075a3d21fa229262152a5e90b1cc5ab0eff1", "balance": 20000000000000000000 }, - { "addr": "0x8e584473272ddf2733ab1d68c3a404703bd296e6", "balance": 23999880000000000000000 }, - { "addr": "0x7ac5ae6cb21659696e45717514b75e92af3a7653", "balance": 5000000000000000000 }, - { "addr": "0x81175eb87529130d993170cc62a1c36e44fa55bf", "balance": 14879670000000000000000 }, - { "addr": "0xc7699888b71b7ed4a6e4bd066771d434b7b7a569", "balance": 192000000000000000000 }, - { "addr": "0xb13b1d250bee5925027283fe17733dd204bf4acc", "balance": 10000000000000000000 }, - { "addr": "0x6dc9337448319fc195b34cac6d4753cdda81ba5c", "balance": 20000000000000000000 }, - { "addr": "0xc26500975eac3ceabd5db501a442341c008e6160", "balance": 200000000000000000000 }, - { "addr": "0x91c0a8294e24e2b4d1d79fbdc4eae99ed1701c87", "balance": 73000000000000000000 }, - { "addr": "0xbe82d60eac1b9df52466886d974dd227b739315b", "balance": 173499200000000000000 }, - { "addr": "0x5b7dd6ecefd1217cc92b3fbff29ea534cb2dec43", "balance": 200000000000000000000 }, - { "addr": "0x2fffce7aaca02ef7e8a491b88ad01e5be6bfeeba", "balance": 73000000000000000000 }, - { "addr": "0xb5dbc909b8e527850ef851dfd97d489b2042b11e", "balance": 5000000000000000000 }, - { "addr": "0x24a842a8fd7b8695306a99b600cdb01ae618d57c", "balance": 5000000000000000000 }, - { "addr": "0x291d89e18b158615aaf52f6a6e6bafac7bea1e2c", "balance": 73000000000000000000 }, - { "addr": "0xfb3ca114e93a80d93be65be8db4dbae597cd9354", "balance": 73000000000000000000 }, - { "addr": "0xec7676d1fc5f12c452cc740ec31f42d035a5aeb6", "balance": 271500000000000000 }, - { "addr": "0x9b45c6b8b5b99da46ab6ae47d0ab247eb9bb3c4b", "balance": 73000000000000000000 }, - { "addr": "0xabc5c962bfc8deb495c8a97eed3fa859c9166036", "balance": 173499200000000000000 }, - { "addr": "0x23afb62f6daa261177bb722cabdc864acbb12c55", "balance": 5000000000000000000 }, - { "addr": "0xa448525e1ff4b3a3a2eedc0a1c86a8a67903fe50", "balance": 200000000000000000000 }, - { "addr": "0xf033480e86e4b02f032e5387df44d985b15e6065", "balance": 20000000000000000000 }, - { "addr": "0xc40b36865763f039baff126f044fa4a464f71441", "balance": 50399740000000000000000 }, - { "addr": "0x01c70d1ea81f257b1e21d403bcba5cf52f5f07ea", "balance": 1235770000000000000 }, - { "addr": "0x70ee24a7a081bb5f231042c44ca83cd8d401537f", "balance": 10000000000000000000000 }, - { "addr": "0x56295b4fd7150fa6ad34922aaeb446ab5e034ec9", "balance": 73000000000000000000 }, - { "addr": "0x9de3c1c05a5d8b6005ce8218b2b8a81f6d09e4f8", "balance": 173499200000000000000 }, - { "addr": "0xc45952f4fd8d9449120807b074d0baeb36605e74", "balance": 200000000000000000000 }, - { "addr": "0x79f1faf61d0d5c5ff3d7dcff106d073eed739056", "balance": 20000000000000000000 }, - { "addr": "0xb67664cddba9186d9d5a727ebc1abf3bd72f6571", "balance": 20000000000000000000 }, - { "addr": "0x752faf9d0109f6671af39b63ce5e8012f79c46f6", "balance": 173499200000000000000 }, - { "addr": "0x70991ace29ed7dd7e570ee5537f2ef5e5255a0be", "balance": 95999000000000000000000 }, - { "addr": "0x2b3bb6ac1231a9d06a1647f4f56495132140c655", "balance": 10000000000000000000 }, - { "addr": "0x119f05a89ccf243188235f8dcd4e2b0b2989a42a", "balance": 200000000000000000000 }, - { "addr": "0xabf2d6286af54d9daafbb4332fa0a008ee2238db", "balance": 263998000000000000000000 }, - { "addr": "0xcc0f1920f677d4a02b7b53b286243b8319ee260b", "balance": 1000000000000000000000 }, - { "addr": "0xd8ed640de8f38539bc37f5a824b08a5dc47be8cd", "balance": 200000000000000000000 }, - { "addr": "0xcf20985f4ca31fa78c6297728a4669de5e3c1a2c", "balance": 200000000000000000000 }, - { "addr": "0xd6dd7237d6ae1e8a576b0c294fe57aa67669460f", "balance": 5000000000000000000 }, - { "addr": "0xe7feebd66748608348148de67e2daea37281d90e", "balance": 980606839000000000000000 }, - { "addr": "0x65fce57553524cf2bc6ddfbd45accf941b4d7f6c", "balance": 112125399865500000000000 }, - { "addr": "0xfd6c024e05d4a4b1b65dd7676392d4d3ce2be527", "balance": 73000000000000000000 }, - { "addr": "0xb97e88cd68af74d26b7fae1d2114d7842389e017", "balance": 73000000000000000000 }, - { "addr": "0x4f8086f01b96694be6b8c55ca171edbe60dd5fd8", "balance": 173499200000000000000 }, - { "addr": "0xad7896f048418432321f118b4b621692eb1d6ed5", "balance": 5000000000000000000 }, - { "addr": "0xc9b404f41b97852540bc63a22f23e57bddcde768", "balance": 5000000000000000000 }, - { "addr": "0x839d11e26c3dfd4c4ac5ac215d8c0685ac90458b", "balance": 880000000000000000 }, - { "addr": "0xd27d301c73cb936e1ec6dcfbda326803e84c79ac", "balance": 200000000000000000000 }, - { "addr": "0xbc9496e2d7779dd863fd41b63e30e077e5bae03d", "balance": 5000000000000000000 }, - { "addr": "0x88393b0e8afa883065eebb5fd98a7c137f38ccda", "balance": 73000000000000000000 }, - { "addr": "0x16d6052cdf5fcfed781bff5fb1673a0c1e884a11", "balance": 200000000000000000000 }, - { "addr": "0xe4a9181a04e1724fa6f501218e9ba52678c57ec7", "balance": 30479840000000000000000 }, - { "addr": "0x8e611a7c047dccce380feb8fac806bfa361c6ddf", "balance": 7990000000000000000000 }, - { "addr": "0xafebfedcfe6c5950e18b1905a91ca95cbcb09c27", "balance": 23999880000000000000000 }, - { "addr": "0x79549daefc36d9fbaf7376b61f7dfe53af39e0e1", "balance": 20000000000000000000 }, - { "addr": "0xdf2c7cf3ac8ecf6a5dcf68e02c6365d5602fb4c0", "balance": 200000000000000000000 }, - { "addr": "0xf7bd9603132e2831eed78cc57bd86a37718ccd5f", "balance": 5000000000000000000 }, - { "addr": "0xfd461c667c0e4916de138f43db97e732f97e23af", "balance": 5000000000000000000 }, - { "addr": "0xdcc36794887396573ecb58061a93af6c5fd9cf03", "balance": 800000000000000000 }, - { "addr": "0x4f442bbc1c053b443670fdf8d1a34e0d109bf3c1", "balance": 10000000000000000000 }, - { "addr": "0x27af8582c5f29e2f819b550d4761efec8fe21775", "balance": 5000000000000000000 }, - { "addr": "0x9b3d66192b9fe924014c38e627f084786a7333c6", "balance": 47934000000000000000000 }, - { "addr": "0xbf552bfe1091b077a2dd7603ca40f46d6d1d6408", "balance": 200000000000000000000 }, - { "addr": "0x408a6eb4d27e6cbeeaee0c247627dfffd37bcc2e", "balance": 182628571428571428571 }, - { "addr": "0xa1e0ef543b35dd70f71173506636d0e76a075626", "balance": 200000000000000000000 }, - { "addr": "0xe464e9c6605ccd06fb041cf53b7dc26f2399e8d9", "balance": 1000000000000000000000 }, - { "addr": "0x181997098ce0bf0d6ec0b925d520ab27dea03c3e", "balance": 20000000000000000000 }, - { "addr": "0x5e9d1c94f201c8c14e288a4597722a4293fe6167", "balance": 200000000000000000000 }, - { "addr": "0x0f3b1d25144972a3b979a52b195fc6a1340b97e3", "balance": 10000000000000000000 }, - { "addr": "0x8ccb98ac1c451df5b41a8e5455e94b4ac79d7411", "balance": 5000000000000000000 }, - { "addr": "0xc105e6dd79fdafcae094217bb0ec8522b6a53357", "balance": 5000000000000000000 }, - { "addr": "0x82465dfa321b7c539cfc03e5d110fa7dd3777ee6", "balance": 5000000000000000000 }, - { "addr": "0xbcc3feb7d6aebfa37adc15a370c1707f28506ee3", "balance": 73000000000000000000 }, - { "addr": "0xa394ff6101023fc36ea8e0ebaf7e3b2c1f045a63", "balance": 5000000000000000000 }, - { "addr": "0x447de7c3c366f4cd8477c5031c21c1a6ed09beb0", "balance": 73000000000000000000 }, - { "addr": "0x3937997270d88b522362c7e836a68c81b3631685", "balance": 1009750000000000000000 }, - { "addr": "0xba2889d46548eec3cc2e93b451a878e84e0a678f", "balance": 5000000000000000000 }, - { "addr": "0xeecde3b84ae260fa8ebfa37cd9784e6e98be11ef", "balance": 200000000000000000000 }, - { "addr": "0x3575a830f0b9e9a5c1b9f40aa1d6d5c0ef4f8e10", "balance": 5000000000000000000 }, - { "addr": "0x38410ef0fd779e995ac70147804e1226a6fa4416", "balance": 5000000001500000000 }, - { "addr": "0x3bebe554a4caf742ed65506307343999f734dbde", "balance": 5000000000000000000 }, - { "addr": "0xddcad0c7876ab80cc6bf00338285b1d6e7777c22", "balance": 182628571428571428571 }, - { "addr": "0x19af01e6a65f17bed9edd61a9ee7a279258328ac", "balance": 5000000000000000000 }, - { "addr": "0x7bce435c64f0bc53371c48234e8ffdf116c3d2a7", "balance": 10000000000000000000 }, - { "addr": "0x4be7eb2c378a8139dacddb7a404162af2c4a0d93", "balance": 200000000000000000000 }, - { "addr": "0x0eff3804f3120bc659f1a43538685d3efa315268", "balance": 73000000000000000000 }, - { "addr": "0x789d67a52d3d44985b790db012faea158481f08d", "balance": 182628571428571428571 }, - { "addr": "0x0e096ffeb630737fec7e90317c44867f139781ea", "balance": 189119030000000000000000 }, - { "addr": "0xb41e2f97eb4b80f52fb0472f552a1dd0983b7c2a", "balance": 200000000000000000000 }, - { "addr": "0x8f1631696f5fc0fdbd98cf0a1e0934acd47d032c", "balance": 3499880000000000000000 }, - { "addr": "0x9ca3118ff3bd8726f622f8b1bad36898168f6c86", "balance": 20000000000000000000 }, - { "addr": "0xb0660b443a00805b7bdca4931f012d56f6de681f", "balance": 73000000000000000000 }, - { "addr": "0x8e756a406ff5eae03f4e66eb150eec600d0d63dd", "balance": 200000000000000000000 }, - { "addr": "0x8551c26356b3afd0ff7bf9b40ef0e10d19c60808", "balance": 200000000000000000000 }, - { "addr": "0x07d9539aa201a1f584a19da0c579c6240bd924eb", "balance": 31199840000000000000000 }, - { "addr": "0x4c78bf1eceefd2a4678219a26064c868f429b0c2", "balance": 73000000000000000000 }, - { "addr": "0x03e87f9733bd4f6d78963a37639342e243ccf42d", "balance": 30000000000000000000 }, - { "addr": "0x1e97b5fe9def3c767a22fa0566c4dca0c4907e45", "balance": 5000000000000000000 }, - { "addr": "0x7e559c30b70ad0bbed736a0de8a146bc580c95c7", "balance": 690000000000000000 }, - { "addr": "0x00e8e06950fa90d65f386275b78c73b68ef38ef0", "balance": 350000000000000000 }, - { "addr": "0xdceb85c946e586241b8491fc08b301a0b638048e", "balance": 5000000000000000000 }, - { "addr": "0x1e0e276fabfbda69bf2eaca14614bd14e2c3d7b2", "balance": 73000000000000000000 }, - { "addr": "0x901cb2826c264d7e64d5a1fb30f56e3f39a313ae", "balance": 200000000000000000000 }, - { "addr": "0xb423a944dabf93e5ef987729460496fd2cfd3ae1", "balance": 5000000000000000000 }, - { "addr": "0x56adfa5828bd73fb933ab1e3baca8e4d285a6255", "balance": 1000000000000000000000 }, - { "addr": "0x750bdd76cc72ff51a58e77810936a88fdfb89cd3", "balance": 5000000000000000000 }, - { "addr": "0x9d8a5f5655a07f27f9c96e90a6da714400a70f54", "balance": 73000000000000000000 }, - { "addr": "0xa4796209a6b29064407bc54f99bc69ed85419fc4", "balance": 24105690000000000000000 }, - { "addr": "0x34da610e829c917ad2b75091de0b32f719d91b32", "balance": 200000000000000000000 }, - { "addr": "0x01fccf3603704e04c15d87d102cba0389b47b09c", "balance": 1354000000000000000000000 }, - { "addr": "0x4b71522c06f93cd149e0b6d5be1a66ccc7658e94", "balance": 200000000000000000000 }, - { "addr": "0x6df8e8f41a997693af8bc09bca45eec7eff3f3ab", "balance": 5000000000000000000 }, - { "addr": "0xf2b09f39f03d046b51ec44a8b342ea7ea27b54df", "balance": 1585218160000000000000 }, - { "addr": "0xe1ae7493401a284b30b4ffb4f9a9f85eb08aa983", "balance": 20000000000000000000 }, - { "addr": "0xef299f4fca56f52d6ce5d2a1c8182614560460c9", "balance": 5000000000000000000 }, - { "addr": "0x0ca41ca4e16be670a3bd0d2fcefec66ee5044cf0", "balance": 33025509000000000000000000 }, - { "addr": "0xebeaf3857cd04353cae87d2cd4aea6f5cfeed3ec", "balance": 73000000000000000000 }, - { "addr": "0x95f30938040fafdeae6343618bb822e961ea118e", "balance": 155999200000000000000000 }, - { "addr": "0x1487c15e3d32d1a19ad94c14343d5ce7ccb0e8d1", "balance": 73000000000000000000 }, - { "addr": "0xbb72800ce3ffb72b34f2ed46574a2de17b409b1c", "balance": 100000000000000000000 }, - { "addr": "0x57b28a79ac11c7004689adc0a53578ecb6287880", "balance": 10000000000000000000 }, - { "addr": "0xe0f500d0402da51b21dd6b8b87514781786d0ea1", "balance": 10000000000000000000 }, - { "addr": "0xe0580dffd046ec5c18f248e0fa6b590497352741", "balance": 73000000000000000000 }, - { "addr": "0x54eee7b5d76ab4cc42415deec2812f804e2b13a3", "balance": 200000000000000000000 }, - { "addr": "0xb9c9a7a42e3b07af3a93204d7c6287e9e5eaf612", "balance": 200000000000000000000 }, - { "addr": "0xfb5ef7fdf0f5f631645ee95ce47953a629dfd046", "balance": 200000000000000000000 }, - { "addr": "0x9827aa5bd56eafcdc4d987ab55c256a54ac01d7b", "balance": 73000000000000000000 }, - { "addr": "0xb3a160f73231be278ac769352d463b96a6dca48b", "balance": 5000000000000000000 }, - { "addr": "0xad803045b8c41491c2a3288a8a30af224c076a06", "balance": 29998750000000000000000 }, - { "addr": "0xea547f0f41a67d10cf02d5459a197764b67a454e", "balance": 5000000000000000000 }, - { "addr": "0x49de2e62954b79f6b41631fd49b4a876a989220d", "balance": 73000000000000000000 }, - { "addr": "0xc91a70e1f1664c3f776708862a74570aa3610608", "balance": 5000000000000000000 }, - { "addr": "0xd62b063b5f26f6b7912b28958d3c2cda1b4463f8", "balance": 7919171639728000000000000 }, - { "addr": "0x67c4b05c8fe7dff69bbf5e4c952176f43957338d", "balance": 36719810000000000000000 }, - { "addr": "0xde0b0ddbce212bb8af1c1976f0092fa5d1299dd2", "balance": 5000000000000000000 }, - { "addr": "0xbd4ff376b7db919613890f19ae1dbc44d86e8f1e", "balance": 5000000000000000000 }, - { "addr": "0xf3792d8a2690977cc8696febe8f655527595649f", "balance": 200000000000000000000 }, - { "addr": "0x638448f443cf7ced8f117100ba7bef03037f4983", "balance": 173499200000000000000 }, - { "addr": "0x2b074966f44827cf41b980fd2a259537617f7cc1", "balance": 5000000000000000000 }, - { "addr": "0x0a070b67159dae24a2f633673690586d3ca17f91", "balance": 10000000000000000000 }, - { "addr": "0x70be75744c708d71f628bce46ae13259061b01ff", "balance": 173499200000000000000 }, - { "addr": "0x65684f2e45394337cfae71615a0c95eefad743b3", "balance": 5000000000000000000 }, - { "addr": "0xe9f0ead3ec5597da05e5e338466b3665e7d6e235", "balance": 200000000000000000000 }, - { "addr": "0xaac401e776771798225b2c0a744416ce55e70df5", "balance": 24003100000000000000000 }, - { "addr": "0x723c805d716acd360440c72b3994014e279acaf1", "balance": 11357097000000000000000 }, - { "addr": "0x44deced609fff31e9041305dbbf913711f772a5c", "balance": 5000000000000000000 }, - { "addr": "0xcc7f36006526e43c0bd9576244b24c68c022c326", "balance": 273000000000000000000 }, - { "addr": "0x999752dd110cd1600756f1696d284cdb9900d4f5", "balance": 5000000000000000000 }, - { "addr": "0xb50fd10b6fc5542c60a217f55fa94e392585c7f2", "balance": 5000000000000000000 }, - { "addr": "0xe9298d5ae39264257a08d815b608dcf4aca173e1", "balance": 59349850000000000000000 }, - { "addr": "0xffaf5cf49f12963f993ae63e7dfb7c7da42851bf", "balance": 20000000000000000000 }, - { "addr": "0xef67ec0659ce8736878e72e26ed53625e113da75", "balance": 200000000000000000000 }, - { "addr": "0x8d9e133ffbadff13a921b1305b9ce433ede9a6f8", "balance": 5000000000000000000 }, - { "addr": "0x1cfbb8498cddfa355a46f8fc4c1625f6d1d24f5e", "balance": 73000000000000000000 }, - { "addr": "0x74bc005c9eeff7c4a2af5acc6c6488da68517cd7", "balance": 30000000000000000000 }, - { "addr": "0x4d5ab452adb1ebb37ff55a9bfc189a071c67067f", "balance": 73000000000000000000 }, - { "addr": "0x4b0f9cae9bc40a1f60f0faac1fbed72a94370ced", "balance": 1000000000000000000 }, - { "addr": "0xe9693609e983f4b82a7971cdfd21a9a505b4d8f5", "balance": 5000000000000000000 }, - { "addr": "0xcb96165e0f5f89e0e69ec2c5008c6abf4a4255d3", "balance": 1000000000000000000000 }, - { "addr": "0xfba8763d939f30af181657c8722b57e9b5a58c50", "balance": 30000000000000000000 }, - { "addr": "0x5d51c6c8c2f789e2991768d0714876e76b8f355f", "balance": 120000000000000000000000 }, - { "addr": "0xceb28c20d62ac8259f4f0c556d8004ebe269fee7", "balance": 30000000000000000000 }, - { "addr": "0x8e1d1e1a1bc95cee50667bccd84e5114ff8c827c", "balance": 5000000000000000000 }, - { "addr": "0x1c5db9971f18164673205c5393401ae80a8fba0e", "balance": 73000000000000000000 }, - { "addr": "0xe3d0db982b92aa6de6ac49b877bb68bc7cd150f0", "balance": 173499200000000000000 }, - { "addr": "0x229c040bae587ceb7d6dfe5d89494527e4f02a2b", "balance": 73000000000000000000 }, - { "addr": "0xe67b64c6ca44c5a49b103b99b8ad474d2ce6229a", "balance": 73000000000000000000 }, - { "addr": "0xc91c5fd26598c603b383f63567cc2209f4d77c09", "balance": 20000000000000000000 }, - { "addr": "0xf02d458eb58f7bfc05065fab3a20a1b7b2d48b8c", "balance": 73000000000000000000 }, - { "addr": "0xb87984aa68b5b7eccda3b5eb6b323667966b1655", "balance": 165668000000000000 }, - { "addr": "0xf062b43ac2c03066194c2f4bdaf340d98cd1cfd2", "balance": 200000000000000000000 }, - { "addr": "0x164cfacccb3a07e834f2b2ec2696c4c2e26436ea", "balance": 200000000000000000000 }, - { "addr": "0x5ba9234c178aabcfe2296092c1fcc815f722f6da", "balance": 110000000000000000000 }, - { "addr": "0x944952562d5672bbca7d804346a69f4f70e107f6", "balance": 5000000000000000000 }, - { "addr": "0x46403ed743715f4f7480595469daf45828436ddf", "balance": 1585218160000000000000 }, - { "addr": "0x5b6fd91ce603b7d51a1a7c8807bf58033bce75c5", "balance": 23999880000000000000000 }, - { "addr": "0x7bea7f35a6cf4db6d062aad4a316fa2be83904ec", "balance": 73000000000000000000 }, - { "addr": "0xb0d0e8f6e92fe7e13b336e7d87a4d81607251860", "balance": 5000000000000000000 }, - { "addr": "0x1bf0902146afb99385b2a82a3c1b30026e588dba", "balance": 96000000000000000000000 }, - { "addr": "0x24f2758fe7e77452d2a331fb7c4c8dcf45c1bb80", "balance": 173499200000000000000 }, - { "addr": "0x5750c58a11ad4097ca3a7727dc49d5b5c5af58fd", "balance": 5000000000000000000 }, - { "addr": "0x87dc84e5c7d743531cdb4b8b27d7ad53ff6c43e9", "balance": 312001000000000000000000 }, - { "addr": "0xfebb5c94d89573cc33392386f151fcc62295b038", "balance": 240001000000000000000000 }, - { "addr": "0x44b98e707cb96b8d8a4af87c083301f1055ecc3c", "balance": 55000000000000000000 }, - { "addr": "0xf1f9914b7d2b04280ef247d4bb13a51d89798f7a", "balance": 73000000000000000000 }, - { "addr": "0x56f16a61ddb9f28d794324734a471d53d972b486", "balance": 26879860000000000000000 }, - { "addr": "0x42cb8b28666676375048b80cd8a8d2e62fa03abd", "balance": 73000000000000000000 }, - { "addr": "0x1aa839d91b509df5b48b50ac0033681ebd1d0248", "balance": 73000000000000000000 }, - { "addr": "0x259ef31bc1d78ab3fa8508f33271db3a1f781f32", "balance": 5000000000000000000 }, - { "addr": "0x0fff4f21a3547d70c566fff3c2c5bf5c1ac00aac", "balance": 10000000000000000000 }, - { "addr": "0xfce7e6ed395ed52c2b1d2ff81a008e9773d13143", "balance": 73000000000000000000 }, - { "addr": "0x9d2b90953d1bf9dbe61e3952895a2f4ee6a22929", "balance": 5000000000000000000 }, - { "addr": "0xc5140e9b1f771d21a159f5b66dfdbc0b697bd6d1", "balance": 200000000000000000000 }, - { "addr": "0x7d5bc7504c3c1b2eefca2521ba40e40a8d12df77", "balance": 8638000000000000000000 }, - { "addr": "0x0b8904f7ccc2b3244ebc3b15f60dcc541b130b1a", "balance": 15000000000000000000 }, - { "addr": "0xa2650f7fc2a5f324538154a9f3d857a658f75792", "balance": 750000000000000000 }, - { "addr": "0x96802ce93e0ae13545dd0656d1bc769add0e0327", "balance": 200000000000000000000 }, - { "addr": "0xbaa285dbfe3f0f8cb95d8f33716513063ff35229", "balance": 25127000000000000000000 }, - { "addr": "0x4e1210620f75de25af344229525f2cc4e18de047", "balance": 200000000000000000000 }, - { "addr": "0x860cbd77c2f08b149cbaab887006068ea675df4e", "balance": 73000000000000000000 }, - { "addr": "0xb7674923751865dd93dbf6c6551a651bd90af30d", "balance": 73000000000000000000 }, - { "addr": "0x7ce4c19a5450bca8217da6699b662a9eb4b46e04", "balance": 200000000000000000000 }, - { "addr": "0x981a5e4c482b69bedcee7026dc4f60582feac142", "balance": 40000000000000000000 }, - { "addr": "0x76064825b95e53a1575657df3bc0f41d11e28f07", "balance": 200000000000000000000 }, - { "addr": "0x1fe1ebc3eeff7733ca809f62a39f4f93b33b2749", "balance": 30000000000000000000 }, - { "addr": "0xd4d1caff67b58a9b0e72e8cf743c7ea1730caab6", "balance": 200000000000000000000 }, - { "addr": "0xff26ccf9058b9bd8facfb6a8876864fec193285d", "balance": 1350000000000000000000000 }, - { "addr": "0xee94e1fa27b37d5ac66d4fafcbe79fd79c529313", "balance": 5000000000000000000 }, - { "addr": "0x638fc75726baea60304b38be38d3b583f923ab6a", "balance": 850000000000000000 }, - { "addr": "0x93f8d75cb5154ec3581a9834ae1aacc17827478a", "balance": 5000000000000000000 }, - { "addr": "0xb032a528b68bf7cfcea50a412a50750128104225", "balance": 5000000000000000000 }, - { "addr": "0xe32c17795dfebf4e2a3bd7cd2b3dab26f5500e95", "balance": 23999880000000000000000 }, - { "addr": "0x4967c23646fa6472d9d299f1ef6a7c94435f6129", "balance": 200000000000000000000 }, - { "addr": "0xda4be18a88de48b1bbcee77e79f89615da955d59", "balance": 200000000000000000000 }, - { "addr": "0xdfa7baad5f058fe77406a0a9640f7ff3e0e91aac", "balance": 200000000000000000000 }, - { "addr": "0xcc512e452c485f600cb293681240362f54ad6e8d", "balance": 5000000000000000000 }, - { "addr": "0x81a881f6ddaa4c0b8f4be89403cce9f4f1b7a35e", "balance": 173499200000000000000 }, - { "addr": "0x6094cf351d39af430967380a5aa35ffa7ef3d3bf", "balance": 5000000000000000000 }, - { "addr": "0x1f4d88bb700bbb7dee3031ff01f29f59dbb67bc2", "balance": 200000000000000000000 }, - { "addr": "0xc37b6a7cdf4b83a975f8129f4afeb8f218f46a3d", "balance": 173499200000000000000 }, - { "addr": "0x53987410be0ede7b393e1f4a7ddc4c20c17b6c28", "balance": 73000000000000000000 }, - { "addr": "0x88be127de6dfb33ad7b51261ce650329cc6cd502", "balance": 200000000000000000000 }, - { "addr": "0xf744a68c42143e45f8e05f933ae22114cbf394de", "balance": 10000000000000000000 }, - { "addr": "0xd4b02417a9860a358d078a893c491a48e1c22dc4", "balance": 73000000000000000000 }, - { "addr": "0x68e4347dbce07c1ba09f2557a6e8f8cef4e96c3f", "balance": 200000000000000000000 }, - { "addr": "0x0882a2ca4f0ce9b56653e2cb9efd3a0698219535", "balance": 10000000000000000000 }, - { "addr": "0xd5d3913e9cf3c8341ad0e059dc5e2690c3631e4e", "balance": 200000000000000000000 }, - { "addr": "0x457f8b6e784d6deae663f59f303f32eac6358c5b", "balance": 5000000000000000000 }, - { "addr": "0xc138210568985aa82f319fea639cc596dc96b50a", "balance": 10000000000000000000 }, - { "addr": "0x732efee2f54c4e90099753133c98ed207111124b", "balance": 173499200000000000000 }, - { "addr": "0xe72ad7dda06d94854f3e8b1557abea249e5371d9", "balance": 200000000000000000000 }, - { "addr": "0x940c240df236fa2a31dae11a8b7bf5d75a5dd238", "balance": 20000000000000000000 }, - { "addr": "0x52a7e3c695d3b87579b3057e07ae8575fd348bb4", "balance": 5000000000000000000 }, - { "addr": "0x00c8d8d5ae08106af30d6e661c601e0216f1346f", "balance": 73000000000000000000 }, - { "addr": "0x7cac90f0f3cabf33101938b0b3f9daea8fcc918d", "balance": 5000000000000000000 }, - { "addr": "0x700d414504b70795670a17b6bbc9f5cb5ebb4e00", "balance": 73000000000000000000 }, - { "addr": "0xbc098029e6af300837a78eaeb6ded48566897b63", "balance": 23999880000000000000000 }, - { "addr": "0xd279694f98560c82113e26d7ee6bf573e3f6b8f7", "balance": 200000000000000000000 }, - { "addr": "0xfa9bceaf639aca1a58f44a896a0f2de6f7622625", "balance": 73000000000000000000 }, - { "addr": "0x3ed09f2137d9ef8253e7e70fce775980304e3a8e", "balance": 200000000000000000000 }, - { "addr": "0xb7aa32ce557495e6901840fc3ced18eed2945230", "balance": 20000000000000000000 }, - { "addr": "0xe0e86ec78bf89598eaa97d8c430bcc1109477878", "balance": 880000000000000000 }, - { "addr": "0x135e6eb91866e4c3b40939336ea9b2056e2b8988", "balance": 273000000000000000000 }, - { "addr": "0x6987da8c3af0fc1dc174b8773754b8e2162ecc22", "balance": 10000000000000000000 }, - { "addr": "0x6e3fa36449c4ba5b3653ca29eb527ebc23619802", "balance": 530000000000000000 }, - { "addr": "0xc21fde3a9ce08ac9e517dbf7cddf088f154c285e", "balance": 173499200000000000000 }, - { "addr": "0x8eda9718d2045f2931f27d39ed82bbda45715402", "balance": 200000000000000000000 }, - { "addr": "0x1c0e0948589272b9f5f66755da6596b1ef9f1596", "balance": 73000000000000000000 }, - { "addr": "0xc4cc603f779e12c68b68da4f3e177af3832a10ca", "balance": 200000000000000000000 }, - { "addr": "0xec8d077e53a9a24301d54880d3c462c79b48ffb7", "balance": 73000000000000000000 }, - { "addr": "0x7fb922efa1578c8eda7cc1d6b440a083bf88ca0c", "balance": 10000000000000000000 }, - { "addr": "0x8ec11efae45c4baab232f2a5ec77d4928b710758", "balance": 5000000000000000000 }, - { "addr": "0xc383a9411fa1e199ba36ec743f37f2dc4cc0419c", "balance": 5000000000000000000 }, - { "addr": "0x7851aecaef19f7d5a715b185bb6e52ce22c3510f", "balance": 173499200000000000000 }, - { "addr": "0x62e178bf2123a73dd085ff56a9242df6af305d58", "balance": 260844274600000000000 }, - { "addr": "0xa724d1010650ae0a4a2de3eee11f3e1bf4888817", "balance": 5000000000000000000 }, - { "addr": "0xd35c960f4aab91d49ab1e322a79e5b1070ddfe28", "balance": 5000000000000000000 }, - { "addr": "0x85ee8d33d2a9d739b3f961bbc5a190923e7579a0", "balance": 30000000000000000000 }, - { "addr": "0x84cb4a4b77830704d9b845f633b541c869a1e7f0", "balance": 26399860000000000000000 }, - { "addr": "0xd618931d8a1dfe05e4e57b7bd0ec5328153b5744", "balance": 5000000000000000000 }, - { "addr": "0xbe76ba180bfe30f47187e82cf8fc91ff1f34f24c", "balance": 73000000000000000000 }, - { "addr": "0xfcd571eb4a320ed0b823eeb9fd4ec3e0bea37c93", "balance": 10000000000000000000 }, - { "addr": "0xd7a60a5b5208c87881bc08f5eed276dd9f38b14a", "balance": 5000000000000000000 }, - { "addr": "0x67ffb0c645f5843ff88a6ff0fc91fd1798974e57", "balance": 1585218160000000000000 }, - { "addr": "0x0a9463508770a3cf7fcec9db782b8a23700c0f6e", "balance": 5000000000000000000 }, - { "addr": "0x32c5fce06441904478bb05c39656ebadf5a77389", "balance": 200000000000000000000 }, - { "addr": "0xa005e152b6417e32e6128425c079332b269eb0eb", "balance": 200000000000000000000 }, - { "addr": "0x27be440977829cffb1496f4330a1e8c0b1d9d37e", "balance": 200000000000000000000 }, - { "addr": "0x9e8bb167364d04c05476356bd6e74d359ba0a547", "balance": 200000000000000000000 }, - { "addr": "0x67ebf3726a02e70828f82d7a4b432dfd03062284", "balance": 2000000000000000000 }, - { "addr": "0xaba4f42eea55cd91b5b4a592a9f7989c90d4a2ef", "balance": 5000000000000000000 }, - { "addr": "0x4d319d6c7f7adb392990734a35a1ce84c65d102f", "balance": 73000000000000000000 }, - { "addr": "0xa9fdcfc0c95f1c76718f21b75583800567e57c3f", "balance": 5000000000000000000 }, - { "addr": "0xafb661fa0043c9db9ba70482da3710e146400190", "balance": 5000000000000000000 }, - { "addr": "0xfc71a1408b8a736bb752b30e661d1fe541740673", "balance": 144237000000000000000000 }, - { "addr": "0x19dab8885e95d7c66aa897715a61ffc4af5d6353", "balance": 73000000000000000000 }, - { "addr": "0xcd2df2fbf49de57d8b7c00e84bf65f6b1e1561cd", "balance": 5000000000000000000 }, - { "addr": "0x054f26e198b0b6822b3c74909856952c2263c054", "balance": 5000000000000000000 }, - { "addr": "0xfbdd38cf4d9e2294acde44b3f98f69b6d63d2589", "balance": 182628571428571428571 }, - { "addr": "0xd643370d6b99ccb4da2770683f30be104f7d3c63", "balance": 10000000000000000000 }, - { "addr": "0x678e41e0607ec4d56f590b57c32545225f892a40", "balance": 200000000000000000000 }, - { "addr": "0xedc55f3f10e542d3d47e1d7afed04497e252c7aa", "balance": 200000000000000000000 }, - { "addr": "0xfcefcb16bf0e6923fef38f90fb80c705626ecbbf", "balance": 173499200000000000000 }, - { "addr": "0x0e988976556b5281ed7c31bdd0ae7ebff746f050", "balance": 900000000000000000 }, - { "addr": "0x759cd5e169cc28fdb7d2692197fe44f7fa42e134", "balance": 200000000000000000000 }, - { "addr": "0x1791845d062e2d6f84079404f9d1b2deb161d220", "balance": 73000000000000000000 }, - { "addr": "0xb8dea0adddedcac73136f35cd161e7fe48a34b95", "balance": 73000000000000000000 }, - { "addr": "0xc6fc7ed15043fe1c67b37c078c9c332afb4f7e82", "balance": 5000000000000000000 }, - { "addr": "0xd870c259144bad079f6b00724339cdbfdce5eedd", "balance": 23999880000000000000000 }, - { "addr": "0xadaf0f3d4dc0175e91932abda2588d0f84f8efa4", "balance": 200000000000000000000 }, - { "addr": "0x791ff7e8773cc0f585ef3dc3c3d8f638f86e8cdd", "balance": 10000000000000000000 }, - { "addr": "0x5bf3ab1340fb6d0a91b3d37fe7c036fb227398ad", "balance": 1585218160000000000000 }, - { "addr": "0x3e5bdd1e9db35e5dec086acfa059fda8407da2e1", "balance": 5000000000000000000 }, - { "addr": "0x5f59917ab0cfecd847c7cdaa0f08aa800434c05b", "balance": 200000000000000000000 }, - { "addr": "0x7ba5c7cabf9a0f45be2424fb44d83225b7c57986", "balance": 73000000000000000000 }, - { "addr": "0xc8e49347bae7f423da9db3af1a9bc882a7f5b336", "balance": 25000000000000000000 }, - { "addr": "0xccf7f1a37a756f82e2453ce62ab16e5fe815278c", "balance": 73000000000000000000 }, - { "addr": "0x9fca22ccf5c0a3897bf6e58f90ef10da8c1f249c", "balance": 200000000000000000000 }, - { "addr": "0xee34056d8a9ca8c9b67f38de39399ee3ba9c20e0", "balance": 5000000000000000000 }, - { "addr": "0xaae07d02c7944f65de7e6122fdbb71aba0bff2d2", "balance": 13180000000000000000000 }, - { "addr": "0x71e16d6c765788807bd83cb87fc2f76894eee1f4", "balance": 200000000000000000000 }, - { "addr": "0x5da4fafe70e084bddfe14ee316cc1f0eda3b1de8", "balance": 73000000000000000000 }, - { "addr": "0x28ec536741da38cb36e743300d5f6aec64468842", "balance": 5000000000000000000 }, - { "addr": "0xdf7d1b82cacad566aa57790e92b83a2fdfa73293", "balance": 510000000000000000 }, - { "addr": "0xf16c60404709791d131e69f40bc7a6b924e3239c", "balance": 5000000000000000000 }, - { "addr": "0x1026fe921dfcf11140d608179baa66a6e424dc65", "balance": 10000000000000000000 }, - { "addr": "0xf91c64c9f2db839723938c06d36f14fba659f7c3", "balance": 273000000000000000000 }, - { "addr": "0x091e697bf83a19477bccfd180fcf04c3ed2514d8", "balance": 10000000000000000000 }, - { "addr": "0x533d5f5ff093d7a12665271e874bfe648fbbd677", "balance": 5000000000000000000 }, - { "addr": "0x12af867e79732b01968faa351773c41c4141b96e", "balance": 10000000000000000000 }, - { "addr": "0x725f221a5c1c5f241e2007a332f7ca6404d00fc4", "balance": 273000000000000000000 }, - { "addr": "0xf354b571e098cae0a1bc5f800dc231ce23c8a17d", "balance": 5000000000000000000 }, - { "addr": "0xd8aba0ca545034bebf4fb1e110d24fc831fae2a5", "balance": 73000000000000000000 }, - { "addr": "0x451fd6de5a960140920ad3b41dbfb7d67a002f06", "balance": 73000000000000000000 }, - { "addr": "0xaf9dbc3d242d061e50349362a439008d2a29274f", "balance": 25199870000000000000000 }, - { "addr": "0x339f404e55bd0a38093a5f226b0c1a364283515f", "balance": 43199780000000000000000 }, - { "addr": "0x2cc7c607176bfb82fcf1272b29335cd84ab88a54", "balance": 1000000000000000000000 }, - { "addr": "0xa96d49fb2f1cf5d892c3d3dcef6168aa837ce177", "balance": 73000000000000000000 }, - { "addr": "0xc3e4144f25397bf87204318d66c0e963c9a973c8", "balance": 72000000000000000000000 }, - { "addr": "0x114bf7475c5008be3a00b3fe604720a0671b8fcf", "balance": 72001000000000000000000 }, - { "addr": "0xab630368fb79a33136416112b15f6e77856eb494", "balance": 5000000000000000000 }, - { "addr": "0x29f800fb147931c60f4766a5d060a79948fe1773", "balance": 5000000000000000000 }, - { "addr": "0x8b0297b3dd0ba674868aedb8f1ff1e66fecda1ed", "balance": 200000000000000000000 }, - { "addr": "0x8295aa9d3f0c0f5a9c38e04408395a0329ed0789", "balance": 73000000000000000000 }, - { "addr": "0xcf1defeaa739ee89747f42e38748d915dbc8254e", "balance": 273000000000000000000 }, - { "addr": "0x5f938eef52a6f814bda7ca81aee5d2e90206f867", "balance": 73000000000000000000 }, - { "addr": "0x7a9edd448daa60816e07d29f836033364600c9b2", "balance": 10000000000000000000 }, - { "addr": "0x6e7701ef0392bd0b6456fccb2e418ae158750740", "balance": 1585218160000000000000 }, - { "addr": "0x1793c707c990ca1ff93dd6f0b3918c19df2ea870", "balance": 5000000000000000000 }, - { "addr": "0x2de3dd34c928c343605b391d49280239f5687a02", "balance": 73000000000000000000 }, - { "addr": "0x80edec415c337b4fd43b56263f923e816600a721", "balance": 73000000000000000000 }, - { "addr": "0xec028aac2c0dc104ca7e61ab082288d776608ed5", "balance": 73000000000000000000 }, - { "addr": "0xfede72b810c64a9110bd760bbb3c2e148e703d1f", "balance": 5000000000000000000 }, - { "addr": "0x9e569e7f6306fd065dcc6dcd46cec64f6225a5a1", "balance": 5000000000000000000 }, - { "addr": "0x1cf37315f4dcaa1e8807c506038011bad26ca111", "balance": 200000000000000000000 }, - { "addr": "0x0d62d7097ea65ebbbbd8d62cd54aec2bef6a1565", "balance": 5000000000000000000 }, - { "addr": "0x4d48255d31c43692fc8d585eda684c8645d45e39", "balance": 1585218160000000000000 }, - { "addr": "0x087fac32121e657a02be4332015eb045fa90683e", "balance": 10000000000000000000 }, - { "addr": "0x1839183bd03e4897bb4ebbc37d9f1fdf59bb1d23", "balance": 1585218160000000000000 }, - { "addr": "0x30930ab4832a7b7c7ba8ae4fec774e49ce08e1f1", "balance": 13133000000000000000000000 }, - { "addr": "0x1ec8a7bb8f6739904b28fa577bf0e6d23839aded", "balance": 5000000000000000000 }, - { "addr": "0xc0e109adb09eac3e4ea86a5c119fb65c4a2b1ff2", "balance": 5000000000000000000 }, - { "addr": "0x4b5bef53333dcdd7a321aab6b9f9c756aefa6c13", "balance": 5000000000000000000 }, - { "addr": "0x6b9e767e13fb0672b78cf8d17cd018c5d6aa0844", "balance": 200000000000000000000 }, - { "addr": "0xfa1e1777cda3e02e5c83bf80b4afb079a3fa3f69", "balance": 200000000000000000000 }, - { "addr": "0xff73c2953ad86d47ea826d7d806a695eedef8e34", "balance": 200000000000000000000 }, - { "addr": "0x3974babb4abe8ad477e3591d50da57a813ee106f", "balance": 5000000000000000000 }, - { "addr": "0x01e4f024fd1bf85dc7038d3e4843752655a5b97f", "balance": 200000000000000000000 }, - { "addr": "0xf134cb84c0cb0e3280cf79b44edbe1ac0cfe8291", "balance": 600001000000000000000000 }, - { "addr": "0x9daa1cd8dd72ce0a0f4e54817b2080995a078655", "balance": 200000000000000000000 }, - { "addr": "0xb0fbec4ce35c55a7963463a4c9d514c6c47d6768", "balance": 26666000000000000000000 }, - { "addr": "0x4214a1879b2678aa9ca0abcdc8effd02e40f4419", "balance": 860000000000000000 }, - { "addr": "0xfd814cffc7d7c7648ba6fbe7485891b199e79eb2", "balance": 5000000000000000000 }, - { "addr": "0xd9082554362daa10f4d39e952a1d8ddbf38a08b5", "balance": 400000000000000000000 }, - { "addr": "0xd6370325595a5d67180a5870bf057c993d6d11e1", "balance": 47999000000000000000000 }, - { "addr": "0x771be05c0eb840af7e232f38f07e1a9812136e55", "balance": 5000000000000000000 }, - { "addr": "0xb3adb4dc8144b24b5a620f8234d22b63534e56e5", "balance": 72000000000000000000000 }, - { "addr": "0x130ab237d38882612cfb4cf0af2413c8dd414ae0", "balance": 10000000000000000000 }, - { "addr": "0xf768067aef62b92125b8c611bf2067fcd6299973", "balance": 23980000000000000000000 }, - { "addr": "0x27282c184934fe1b45680ba9f5712cbcccd47318", "balance": 5000000000000000000 }, - { "addr": "0x7893f55dd2c954986ae820f071a7443d84600425", "balance": 73000000000000000000 }, - { "addr": "0x862c30454af194e741679e37c6e5f9a30d3c4432", "balance": 73000000000000000000 }, - { "addr": "0xa5c4e1ae8d343900eedb72fbc86970311bda0049", "balance": 200000000000000000000 }, - { "addr": "0xa1b7bb1463500c1c16435e8fbb74ba44d21ea29f", "balance": 40000000000000000000000 }, - { "addr": "0xbf1b06df50427ef66dccaf8f5727c5660576a43e", "balance": 200000000000000000000 }, - { "addr": "0x702043ce7d66e09381919799fdc9489f146334bd", "balance": 173499200000000000000 }, - { "addr": "0xfff4bfbbd697b6cab314173e6a0aebaa52dbc614", "balance": 5000000000000000000 }, - { "addr": "0x4db1f2b7aa4e4a1f7eeeeca5b9874db4c86bcc02", "balance": 1585218160000000000000 }, - { "addr": "0x65414853b153bc019409a1f5976866d58acbfd9a", "balance": 5000000000000000000 }, - { "addr": "0x5beb450c3f212e258c82acdb843fd906fba94aa1", "balance": 200000000000000000000 }, - { "addr": "0x78e5fed861cb476d05dd90a09250683ae7996fac", "balance": 5000000000000000000 }, - { "addr": "0x02dc0e901f8ed3009a0025fdb19045a5cc40a07a", "balance": 200000000000000000000 }, - { "addr": "0xc2a56bc910150192968b5b3de3b81264b608f238", "balance": 5000000000000000000 }, - { "addr": "0x60137d61ab1412dd5cd61098a49524841f44b3cb", "balance": 3833333000000000000000000 }, - { "addr": "0x66cb1b7bcdbd9e02380066059018be9f03504223", "balance": 200000000000000000000 }, - { "addr": "0xaf70a0030fe9a3493cd709af27cfce5922789fa8", "balance": 192001000000000000000000 }, - { "addr": "0x87d572928760886833ee9b6e7da740360788f344", "balance": 47999760000000000000000 }, - { "addr": "0x990d1f775201185929ddc813267a5fcddbd9015e", "balance": 200000000000000000000 }, - { "addr": "0xd608e86fc1c5cd1aa13450c305cc1c6d0100939c", "balance": 200000000000000000000 }, - { "addr": "0x77f7a04d3215046883b5d4c52419522c439b39e0", "balance": 40000000000000000000 }, - { "addr": "0x760af7a30d76e9e53896fe220a39e86f3c94d527", "balance": 173499200000000000000 }, - { "addr": "0xb6180039937a59039ead8f69e4df19cf85d3c03d", "balance": 200000000000000000000 }, - { "addr": "0xa9c137174a7918223f36cdf893129edcdac9505e", "balance": 73000000000000000000 }, - { "addr": "0x3f1c54d2c2b01e740a793115d1adb32c45a87942", "balance": 73000000000000000000 }, - { "addr": "0xb1201169d228b6da59b0d76653c01f7eb03ba9ff", "balance": 200000000000000000000 }, - { "addr": "0x1d983347f5ecde45c00bafe9c38a64496d9b596f", "balance": 200000000000000000000 }, - { "addr": "0x99678b1e0549127335dc5a6308f278a8f764cacf", "balance": 73814848160000000000000 }, - { "addr": "0x5e1828dcedf7f780cf603a78792c7f84f1dcf9f6", "balance": 200000000000000000000 }, - { "addr": "0xca14d90f2489c701eb713f2fad1d5f611b506652", "balance": 5000000000000000000 }, - { "addr": "0x0fe45975d92949a07e068522e3fb456917cdce15", "balance": 200000000000000000000 }, - { "addr": "0x073585bab56274a79db9a6672256af6cba1c308c", "balance": 20000000000000000000 }, - { "addr": "0xb8553d5233126a777d7331e115d9ff571bfb8c87", "balance": 73000000000000000000 }, - { "addr": "0x6540f8f6d070b2912e31b29e9de2a058c46c4da5", "balance": 1333300000000000000000000 }, - { "addr": "0x87f738c2ce83a39067faf533930a9c4ed17d41ab", "balance": 73000000000000000000 }, - { "addr": "0xe9e3180cd61cb831bc378fe08b1f4eb57b4b4da4", "balance": 29800000000000000000000 }, - { "addr": "0xb668cc5333a3a4717bf2e3fb11c7949964e7917f", "balance": 73000000000000000000 }, - { "addr": "0x0e55abb7dc58d2ac28ede80a323ee491a010b05e", "balance": 73000000000000000000 }, - { "addr": "0xde75a2e9db6b39340afd7b5b055a57a524f48da6", "balance": 5000000000000000000 }, - { "addr": "0xbc45c35aacdf2e90cc1e8e7f8672b9c1008689d5", "balance": 200000000000000000000 }, - { "addr": "0xb22158949f1fc20e446d296882c8bf560f6a7c51", "balance": 200000000000000000000 }, - { "addr": "0xe1f2f8d7ce86881fe475694e2024662eead37a28", "balance": 73000000000000000000 }, - { "addr": "0x33073b22e892cd3f2c331b80c490b9b28fe37a48", "balance": 120000000000000000000000 }, - { "addr": "0x6182275531b9a2c1c55cb14ba118741773053db0", "balance": 1585218160000000000000 }, - { "addr": "0x71edd2c6a6ff394ef44ec658ea1ef74ded9db98f", "balance": 5000000000000000000 }, - { "addr": "0x7be8b8ee1fc3313e206f56f1a0e4f2ce4ce4394b", "balance": 5000000000000000000 }, - { "addr": "0xb4c999e574ce1df40581afb7e3d640e082d6fa4e", "balance": 73000000000000000000 }, - { "addr": "0xb86eda5c52e6f2951bb10b40a3c397ee4e16fd4e", "balance": 5000000000000000000 }, - { "addr": "0x86ec1a26fe4ebff03d968603a3212bb3115071ac", "balance": 371216000000000000000000 }, - { "addr": "0xe4fb6eef7abfbf90a8d8c0850a2c3d16597f60d8", "balance": 266660000000000000000000 }, - { "addr": "0x180c39e03e3e5acd765bfcfea50e60eaa76a4734", "balance": 10000000000000000000 }, - { "addr": "0x5870b25a31641f6d1270177decb149fb92b1f214", "balance": 140000000000000000000 }, - { "addr": "0xff204e574de0d2cb8b22b9599b580f62e265bdb0", "balance": 47999750000000000000000 }, - { "addr": "0x95f8930010f5d6cb3e615c134f6ac0472377c443", "balance": 200000000000000000000 }, - { "addr": "0x9311134a610f8597d53d80b1d0443c27c8fe9a28", "balance": 5000000000000000000 }, - { "addr": "0x98ee55e4945e20455b66c1e82e0cc88ea5a34c14", "balance": 23999880000000000000000 }, - { "addr": "0x37ef26feb33617cce74b3a31d9f857577bb6ceab", "balance": 200000000000000000000 }, - { "addr": "0x0200a5c0ed242be4afef914a623cbc387c0c8d2d", "balance": 73000000000000000000 }, - { "addr": "0x5ba9b4b8dff6fc1316c493cec30bc017bb70e673", "balance": 182628571428571428571 }, - { "addr": "0x12535d988f6cbe62981cfd068c8b8a357b4463ac", "balance": 10000000000000000000 }, - { "addr": "0x2e69330e363ef618e784481b7b27db29ae933793", "balance": 71999630000000000000000 }, - { "addr": "0xa5eada2666953828a56c5ca6aa9008017441ec00", "balance": 5000000000000000000 }, - { "addr": "0x03e130bed8b72086394d58d86f54739dcdc4274f", "balance": 133330000000000000000000 }, - { "addr": "0x31f877d897918c93a84c92d46e30573d7fc1fa35", "balance": 25000000000000000000 }, - { "addr": "0x22ac91957b8f4cff46d51ad1db79a7adaefe9dc8", "balance": 5000000000000000000 }, - { "addr": "0xc0a2eec10f2ee353e29ccf585621ef1fd9e39985", "balance": 19913150000000000000000 }, - { "addr": "0x379fc5befacdce20c7d837555c0b51d5d3cfdc44", "balance": 20000000000000000000 }, - { "addr": "0x7947fafee18de81d179108777e8eb7825afecb87", "balance": 30000000000000000000 }, - { "addr": "0xff7c9dd973894ca3724714e96b3fe1b2eec72e17", "balance": 273000000000000000000 }, - { "addr": "0x33bc9091aa84acce681357dbcde9c5dcf34fc70d", "balance": 110000000000000000000 }, - { "addr": "0xb98f697efa250f9f42453db84e5e57a371d18ca6", "balance": 73000000000000000000 }, - { "addr": "0xf9099c872105fac030ef02bcda9f677390c7678a", "balance": 73000000000000000000 }, - { "addr": "0x53e1370a7e781e4c706d98b0d934dbc33970477a", "balance": 40000000000000000000000000 }, - { "addr": "0xa539e5ea36937ddda20fa0791b5685b389acbe4a", "balance": 200000000000000000000 }, - { "addr": "0xc7129c10f8056986716effffbbe0f1e9c80622d8", "balance": 899200000000000000 }, - { "addr": "0x29c44a91ed9aca688f0f407efa95632945e87739", "balance": 5000000000000000000 }, - { "addr": "0xf90a29ce7a9322361cc6dd260022d38e7597ea2c", "balance": 200000000000000000000 }, - { "addr": "0x905741f15ec270d5305dea5a7e1da1aaccfa83e4", "balance": 5000000000000000000 }, - { "addr": "0x82ec3d91f69c23b3c83b089a47b01a10f617ee98", "balance": 120000000000000000000000 }, - { "addr": "0xc9494f248302bcf7a631ddbf5974510f812b3a5c", "balance": 173499200000000000000 }, - { "addr": "0x7ba3b68b917d540183e3db15030d15add63cc4e2", "balance": 48000000000000000000000 }, - { "addr": "0x9165fa74ecc78e20335816242a7f3e06fdc96cd3", "balance": 5000000000000000000 }, - { "addr": "0x99306bd250c8c89f643751dce48e377531dfedd5", "balance": 73000000000000000000 }, - { "addr": "0x47791c1767c04d9a310d200d3eaa0c5744436f10", "balance": 73000000000000000000 }, - { "addr": "0x1f9f9f5e49deab3299aca8774d3c4ba98b20fffd", "balance": 200000000000000000000 }, - { "addr": "0xc0d9531c915b64a601583cd15cd5e70052a2fe1d", "balance": 73000000000000000000 }, - { "addr": "0x822d373acee3e1965164a3dca1b8bd63cbd2a046", "balance": 420000000000000000000000 }, - { "addr": "0x4de50a45bc856e896859ea849e685a67a9fa2090", "balance": 73000000000000000000 }, - { "addr": "0xa8fc0893aa4a051d0b2cfe96b8bcac22589d4341", "balance": 5000000000000000000 }, - { "addr": "0x247624f889a0a0763f13a6b50d11ab5dccbfcd4d", "balance": 5000000000000000000 }, - { "addr": "0x6239bf5928fe80343012e2ea5787ae1272648c33", "balance": 5000000000000000000 }, - { "addr": "0x12472c3571ac2f631dd4fae74a6842dfc4f518ab", "balance": 130000000000000000000 }, - { "addr": "0x9ac1e6fba59de32f53e94228a3e8b9bf197e57a0", "balance": 5000000000000000000 }, - { "addr": "0xec97efb3eb960a10d3ddcb8973a9387c8472f1d4", "balance": 200000000000000000000 }, - { "addr": "0x3fdb9790940e1aa4f6965ba2c37a3b3296e22348", "balance": 10000000000000000000 }, - { "addr": "0xce14f66177429926126e50f4bcc288b44b245d91", "balance": 400000000000000000000 }, - { "addr": "0x28317a51a70e012aced506aba18527b74ac05280", "balance": 1000000000000000000000 }, - { "addr": "0xa4507a1a98ae580f62501d6c884228f5d2215132", "balance": 5000000000000000000 }, - { "addr": "0xc1ed5d8af303e5dfc9d871a3deb275d5fcfd9438", "balance": 73000000000000000000 }, - { "addr": "0xde3b3de93d4e7ef99b31e5dbbff17ab4580d8f61", "balance": 73000000000000000000 }, - { "addr": "0xc2da4e7f15834bb682978dfa6a8ab60c84a13c9b", "balance": 24219210000000000000000 }, - { "addr": "0x283c23a1516866134fde5ad01f4d577e63e48cfc", "balance": 200000000000000000000 }, - { "addr": "0xd44a9cd73957183f1e586a60412bb5a1ea5bd37e", "balance": 5000000000000000000 }, - { "addr": "0xf99dd16450b98b7bf8c9f4f42ace9c91a31b05ca", "balance": 10000000000000000000 }, - { "addr": "0x2f6e925fac0915df9238fcce8e52b486f5481e90", "balance": 8790623800000000000000 }, - { "addr": "0xe6c3cb78b47ff1e1f9333eceade27d757f837658", "balance": 400000000000000000000 }, - { "addr": "0xb5f79c004d3d82d4e907c0547509ec6efab650eb", "balance": 35999820000000000000000 }, - { "addr": "0xb8d5e74dcb557e7bd789f61b6a2cf628f64df3d8", "balance": 73000000000000000000 }, - { "addr": "0xc81a410770306c6b7fd2f580b5ef8f7c670cb1dd", "balance": 73000000000000000000 }, - { "addr": "0x390ef3db9e22afa268800b883308307e43d8a856", "balance": 11999000000000000000000 }, - { "addr": "0xb7b86bb8819bc0ee5f2b7884cafc9f6b7a0d43ef", "balance": 173499200000000000000 }, - { "addr": "0x937551981b219cb5dc38e8daec49c16708001b3e", "balance": 5000000000000000000 }, - { "addr": "0x7043816db4b33a2dc8ddf8f33872ce2b6426fb13", "balance": 1585218160000000000000 }, - { "addr": "0x52ab21ba65e2f9f6e629ecbbcafb0ea26b6c6aa8", "balance": 5000000000000000000 }, - { "addr": "0xe5e5a91b6b0189cf094d48e4735e29f0b8c4418a", "balance": 2000000000000000000 }, - { "addr": "0x7b14a43a55e54ddac6fcea1159873888a9526358", "balance": 20000000000000000000 }, - { "addr": "0x868c34634557983293d7ed2b80998f94c8935d26", "balance": 200000000000000000000 }, - { "addr": "0x13ee9058b9ca4a1baf03da167ba8c0622bb19f7b", "balance": 200000000000000000000 }, - { "addr": "0xb2875506f90620ab93e86a93bb69342f3e264629", "balance": 5000000000000000000 }, - { "addr": "0xecda496c64b194bb0c2ea23bb622355bcd142e4b", "balance": 5000000000000000000 }, - { "addr": "0xdcaf996a2c85c50de9feeb7b9e5bc78ee0e98625", "balance": 3400000000000000000000 }, - { "addr": "0x1eeb4249d9a838bc29f970db0b857935fc107503", "balance": 5000000000000000000 }, - { "addr": "0x401cf2f1ae54eeaec7767590be269601923dba39", "balance": 357820000000000000 }, - { "addr": "0x5d1d2f317ed57de04aee50d8ee65d22d3275d9a6", "balance": 13898463276422040000000000 }, - { "addr": "0x6d6ed077adc3f08fdaa8de74215c31ae51e3f602", "balance": 200000000000000000000 }, - { "addr": "0x209bf02f70e4c2ad6427933d1a4ce6520d50ad36", "balance": 5000000000000000000 }, - { "addr": "0xd6b7b49729ac6d6d05f427ea78aaede77d947403", "balance": 1000000000000000000 }, - { "addr": "0xa0fcbf7efe5310b72fa958e68b7b381ed896e590", "balance": 200000000000000000000 }, - { "addr": "0x17441041c6bb8b2a9ee24a8bc8007d34ca77ed80", "balance": 73000000000000000000 }, - { "addr": "0x3cfd9bd163f917b27691ac525bf9b5261a8c8ab6", "balance": 200000000000000000000 }, - { "addr": "0xbf7ba111b7504892683bd892e1972741b8f9cfa8", "balance": 73000000000000000000 }, - { "addr": "0xb54ffcb57720e4ce15f4e18942065289d072a848", "balance": 24239000000000000000000 }, - { "addr": "0x220dfabd68defd0e8ac739ec1938d064e329cc80", "balance": 200000000000000000000 }, - { "addr": "0xcc7891e4984bb7f18091bf32d43074e37c4dd93d", "balance": 5000000000000000000 }, - { "addr": "0x2688fdf43f609f5f5e834d6ed201af0d7fca9f1d", "balance": 173499200000000000000 }, - { "addr": "0xbed39520c6a369274f33e0a74c69dc98f6f12ad6", "balance": 176235000000000000000000 }, - { "addr": "0x0049fab7f5dd1f26f057bd5d972ffc6ba3c349dd", "balance": 266660000000000000000000 }, - { "addr": "0x9660c130e6b0e48e39c35062b345c2d7ef217e5e", "balance": 870000000000000000 }, - { "addr": "0x8f3478f63864f2ba4a7f296ec35d7d79f6a59d1d", "balance": 10000000000000000000 }, - { "addr": "0xbc55caf43f06e8d9dfe1b9433caf56f158a349bf", "balance": 10000000000000000000 }, - { "addr": "0x45cf5a58ece9d0718bc1f66dc46ba06e9960e17e", "balance": 5000000000000000000 }, - { "addr": "0xe620a7d730569f788cfcdeed3bd3e4e5e8f488e3", "balance": 200000000000000000000 }, - { "addr": "0x46115812fd32d98e349a3c8c5617dfc8922d1553", "balance": 10000000000000000000 }, - { "addr": "0x314db1f3b619b7c1c068599cbd0c67878d382337", "balance": 5000000000000000000 }, - { "addr": "0x40a6ebe452b57f5b1791a6d85f88d510cc4950df", "balance": 200000000000000000000 }, - { "addr": "0xe71c4f96a4fbf6cd4b321debaceeb119310273f3", "balance": 200000000000000000000 }, - { "addr": "0xa316ec441634b01ac046625dc9b7e8ee2a89d1af", "balance": 24265580000000000000000 }, - { "addr": "0x93aced0a7775e3cd0262668b3675f0a0e39e20c8", "balance": 200000000000000000000 }, - { "addr": "0x7b4bb674390eb8e52b15f6560285f3e52f98630f", "balance": 12999880000000000000000 }, - { "addr": "0x097f4369d956142ab56e2aa60fd4fece832e0e19", "balance": 18160000000000000 }, - { "addr": "0xa0d0ef7ded1b1ed5b0ca9c3f8cb2d4ae8d83e360", "balance": 200000000000000000000 }, - { "addr": "0xf41451f2ea7952f16c79ee25016d926389dc6641", "balance": 73000000000000000000 }, - { "addr": "0x70336841725201f0974bb61e0d4af05e48d6b92d", "balance": 750000000000000000 }, - { "addr": "0xed4aa8154bc56997dbba1cdb09222a5d9c52da09", "balance": 1333300000000000000000000 }, - { "addr": "0x4b7a4f290a595bfd8a446717d7956ad37b3981c6", "balance": 5000000000000000000 }, - { "addr": "0xe8fdef3407325da2ebb04bd76bbc226776b61001", "balance": 5000000000000000000 }, - { "addr": "0x9d9012fb6027ee28b2eabad996b384b59b224e3f", "balance": 200000000000000000000 }, - { "addr": "0x83cf7efd68312b31d7a2f5e4e095e040d84055a6", "balance": 73000000000000000000 }, - { "addr": "0x0f97948687e206d417a310ceec10bca32d23c9fb", "balance": 73000000000000000000 }, - { "addr": "0xc60520e557980fe939b318846f1fc9e9bd90a1f8", "balance": 266660000000000000000000 }, - { "addr": "0x325a2fba9ba2bc35e35e324d63fb250c3881055c", "balance": 10000000000000000000 }, - { "addr": "0x19e47e3eeba5f404b189b444418602be86c1b7dd", "balance": 200000000000000000000 }, - { "addr": "0x68b1d50bbeee2bc53256a518a7a75f5542a452cd", "balance": 23999880000000000000000 }, - { "addr": "0x1473f2a08af7cf393d898b4a7c9e0b7a49e45a53", "balance": 15000000000000000000 }, - { "addr": "0xd81c8edfd99664cf7a8b0d06bd273b3b6c4fa6e6", "balance": 73000000000000000000 }, - { "addr": "0xb26c83ca2d596671589992f08155c2ba3cbf89c1", "balance": 23999880000000000000000 }, - { "addr": "0x3574f379bb6604f0b663b1c17f93977150363fe2", "balance": 5000000000000000000 }, - { "addr": "0x66535df904a7ada43b378ee94d9746cfe3772e05", "balance": 5000000000000000000 }, - { "addr": "0x58619298f322ac4c5327d4e82d3d9270e8c7a2c9", "balance": 200000000000000000000 }, - { "addr": "0x5f0b78a597ceb1ac29137a3bb59f1edc3e080716", "balance": 5000000000000000000 }, - { "addr": "0xae16394b4b66751fce2d8a56094e114f2eb7d378", "balance": 173499200000000000000 }, - { "addr": "0x98519c5abb8565e78a62ce5462fda7c5252e1e15", "balance": 635000000000000000000 }, - { "addr": "0xc668115cf76d72aab320fe6ede48da8cb9fe3e2c", "balance": 5000000000000000000 }, - { "addr": "0x32604ac5bfe553cf2bc0cca12394ee994220f38d", "balance": 73000000000000000000 }, - { "addr": "0xac03dad36c3e5e9f90024c3c72668d5520d23c6c", "balance": 23999880000000000000000 }, - { "addr": "0xe703712500c487cd64076f673372155900509be4", "balance": 5000000000000000000 }, - { "addr": "0x5acca8e15f3ab7a93e49e77487e1e4e623b94148", "balance": 23999880000000000000000 }, - { "addr": "0x6ae4dc5981e6b7e9f13528a3cee9fb257e3fe012", "balance": 293560000000000000000 }, - { "addr": "0x5a8ae5bdcd6fe59d669379572e601202a94b0315", "balance": 200000000000000000000 }, - { "addr": "0x2505e1a6c6236b006298b3e56c3d57b728da75ec", "balance": 30000000000000000000 }, - { "addr": "0xfc86ddf04099271e63b0ad60a0084723c081ef90", "balance": 24239000000000000000000 }, - { "addr": "0x764c3f277b9deb7053dba9feb556dc55b0107335", "balance": 1585218160000000000000 }, - { "addr": "0x413dd3c8aae8b406a6baa3e0aa77abb01b3258fd", "balance": 23999880000000000000000 }, - { "addr": "0x876d7d49f9835c267f2871ae3df339f7023cfa3f", "balance": 20000000000000000000 }, - { "addr": "0xf592715f6e65c38b207d6cc6414eb061e0f097a2", "balance": 5000000000000000000 }, - { "addr": "0xf0feee1997ffc6bb2b13f560c5653aa55b010780", "balance": 5000000000000000000 }, - { "addr": "0xdb7771931329dd502c70d780c8b2210be9f13b65", "balance": 5000000000000000000 }, - { "addr": "0xd4122a91e8ecc9f6283344c37b8eb463be983bb5", "balance": 730000000000000000 }, - { "addr": "0xe3f5862918242915d6a3c1523d1c5553426591e1", "balance": 20000000000000000000 }, - { "addr": "0x44e1241d518d6617dcc6d35eb64ac75000005efc", "balance": 5000000000000000000 }, - { "addr": "0xef6dd0bc8a776c7873ce9404e4764f94d004b5ea", "balance": 10000000000000000000 }, - { "addr": "0x7b37fce85453992180e20e0fc4c99840f99cd60f", "balance": 200000000000000000000 }, - { "addr": "0xa8f1d2993ab308c204d99ca2005b1d0bd0eeae0e", "balance": 200000000000000000000 }, - { "addr": "0xd7df43277eea5d0532567e811385c63e3b7e857f", "balance": 173499200000000000000 }, - { "addr": "0xd02838b1b36f954b8e3fb4e2ddc76efe315eab40", "balance": 1000000000000000000000 }, - { "addr": "0x3355a8ab0c6fa955753627f1848daa61d2d1386d", "balance": 900000000000000000000000 }, - { "addr": "0x292bf2de41885c33ae5a8e088f4fcbc9938ff44d", "balance": 5000000000000000000 }, - { "addr": "0xbb252475e227ca966d1b43981bc8882ac1d545f3", "balance": 1585218160000000000000 }, - { "addr": "0xf010bf672eefa41dab519725e2a5f293b697c7fe", "balance": 1000000000000000000000 }, - { "addr": "0xaf7a377b3b6dc6f4f518280f051b9bacce8e3dc8", "balance": 49387592700000000000000 }, - { "addr": "0xcea4214b426ae0161a240f791305e6ba0b9d6a47", "balance": 10000000000000000000 }, - { "addr": "0x70f7613f73798b171788b618b2d06ec1e6d8e353", "balance": 20000000000000000000 }, - { "addr": "0x3290755745ed61bc8715506ba32069a385b217cb", "balance": 15000000000000000000 }, - { "addr": "0x507f3a4e7db6d46c46768534aa862f83480e8b14", "balance": 10804000000000000000000 }, - { "addr": "0x8ce6c50cb2c00e28f9b6ef3ce62b1a474b05ebb9", "balance": 73000000000000000000 }, - { "addr": "0xf41d7faa981fab250ff34beab1663a0b7a01190e", "balance": 200000000000000000000 }, - { "addr": "0xd962f27ae9fb9067a2158158f6e269aa48f85349", "balance": 5000000000000000000 }, - { "addr": "0x3a2a76f3b55276fb2680998367ac1c83a0e6852a", "balance": 173499200000000000000 }, - { "addr": "0xa3c3e5a2c565f13a1913ac61f9e0f57610f4a37c", "balance": 200000000000000000000 }, - { "addr": "0x1fb508f4f6ca01e3062129e021ca1484adb660ad", "balance": 5000000000000000000 }, - { "addr": "0xddf8d6c80ccb70be4836e635dff6ee64f31ce471", "balance": 5000000000000000000 }, - { "addr": "0x68acc0dbacd11b362c52e2af0dceca498d6a236b", "balance": 5000000000000000000 }, - { "addr": "0x3be988f0fde6f1c9ed82ae70be1b1dcbec7864d6", "balance": 200000000000000000000 }, - { "addr": "0x27ae998148805808f4b90519bc888c2cb39df91c", "balance": 25585218160000000000000 }, - { "addr": "0xa3325e98ad60424bc4433e2cd0a3bf171f338f5d", "balance": 73000000000000000000 }, - { "addr": "0xef2d12c8ca5ccc1fe89a737ea61d055885c7c116", "balance": 73000000000000000000 }, - { "addr": "0x2b459b90b4920f87ccb818f933475506cb4aa2ba", "balance": 47999750000000000000000 }, - { "addr": "0x434f0d1cff7aa7c3e4aa2962edac1ee7dfe13835", "balance": 5000000000000000000 }, - { "addr": "0x9c01732fd678aff29501b40ed63c441e19418e68", "balance": 3000000000000000000000000 }, - { "addr": "0x091bb5f1a238c3c4705069214ffeed44c5d003aa", "balance": 23999880000000000000000 }, - { "addr": "0x984a1b1d201ed40ab414d306ac78c3ff46375e27", "balance": 200000000000000000000 }, - { "addr": "0x52f79baae550cdcb4eb514403afa9eb715b6345d", "balance": 5000000000000000000 }, - { "addr": "0x1ac18049b20a9309ba9ba5a0a3184c7a437e1ac6", "balance": 30000000000000000000000 }, - { "addr": "0x6e3131da7179359915bbc1fe62438fe594d3242e", "balance": 5000000000000000000 }, - { "addr": "0x56a5a134b4e8452370bd482277e179bf28320407", "balance": 73000000000000000000 }, - { "addr": "0xb1287051b6fd2a9ab9daed90b539758b7ea31cba", "balance": 1585218160000000000000 }, - { "addr": "0x13f418c1e661549346df35038ceb2714ad292349", "balance": 1585218160000000000000 }, - { "addr": "0xd4679914a3244a821291d1fb6bba7da2a09838d9", "balance": 73000000000000000000 }, - { "addr": "0x406d4798607d18119a689391dc8d2b6f21b0debc", "balance": 73000000000000000000 }, - { "addr": "0x61421c60e2221830c92a020dcdb68611d7a8c913", "balance": 10000000000000000000 }, - { "addr": "0xa6fd6615ff67af9d97f956598bf660e130c3f481", "balance": 5000000000000000000 }, - { "addr": "0x1d9b95d6b46451fe4990ad35b761258a29c73528", "balance": 630000000000000000 }, - { "addr": "0xe51130d5432c7d400c08a023dc53523e6e226a55", "balance": 3360000000000000000000 }, - { "addr": "0xb8e2042164cae8ca7126ded919cd9f0b56f75954", "balance": 1585218160000000000000 }, - { "addr": "0x2f7586603243221031a5fe62b34d4c0da9c62cf1", "balance": 20000000000000000000 }, - { "addr": "0xb65c1aad455142d35bff1cf0c74c39be2199ff8f", "balance": 200000000000000000000 }, - { "addr": "0xc340716226c01489177fb053ab19c88d57909008", "balance": 50000000000000000000 }, - { "addr": "0xf0c0bf1500f31b34c6b42751653504b06bbcec41", "balance": 5000000000000000000 }, - { "addr": "0xa155a828519d9b2c9b271c3220b53dbad498882d", "balance": 20000000000000000000 }, - { "addr": "0xb1ff3cadcae211f45829553db537ff0d5c824cf4", "balance": 10000000000000000000 }, - { "addr": "0x7883b847e50d9255d8f9916b0e79e11287f999d8", "balance": 25679870000000000000000 }, - { "addr": "0xa1a98b3ba396ebedf61726409cf007a9c5e25054", "balance": 73000000000000000000 }, - { "addr": "0x8434303241ddb6a0261429d524272f92af3e661b", "balance": 103483199764000000000000 }, - { "addr": "0xd894d0bef4d4ae8f4f7283d202ad031b28894d88", "balance": 1785218160000000000000 }, - { "addr": "0x6d2a2256d39bded977be2ad5f0e516bbbcd49b1e", "balance": 1182628571428571428571 }, - { "addr": "0x3156ad889d26130f0ccb1ebf52470ef2a07b815a", "balance": 5000000000000000000 }, - { "addr": "0xc3ef13b6a255752c5b82ebfbd50c956e2a59c778", "balance": 30000000000000000000 }, - { "addr": "0x813db16d1360d28ebc22d6e1a50f2d2d37ac4864", "balance": 73000000000000000000 }, - { "addr": "0x6282205c4d9871bcea1201d755cd38a6d282b823", "balance": 10000000000000000000 }, - { "addr": "0x3c3710c4d8bdf64fe85148bee887b36a38e0267f", "balance": 38975800000000000000000 }, - { "addr": "0x3d966d1a2b21d831d1c98213934694781a7caa9a", "balance": 25999070000000000000000 }, - { "addr": "0xd8cce7f2012338a31ce0e60d6eeecc512489ea23", "balance": 1585218160000000000000 }, - { "addr": "0xe75f2ec993d09151fce71594f6ebab944bcf7f8d", "balance": 200000000000000000000 }, - { "addr": "0x3aaebf899ab8eda169bd2e9e07873bf67f159da1", "balance": 5000000000000000000 }, - { "addr": "0xa0f795bb855cb34562b94bafbbb54bc98af47134", "balance": 45000000000000000000 }, - { "addr": "0x5a24ce59174454350b81ab7c585b25e79e3ebb40", "balance": 200000000000000000000 }, - { "addr": "0xf474e3fa71eae9dda8067f62bc183887208b009d", "balance": 173499200000000000000 }, - { "addr": "0x596c231adbec0db3c7716860541b63002edd9f88", "balance": 1785218160000000000000 }, - { "addr": "0x25c641c4e7afedee998f29c8bb11914ca52c3d45", "balance": 1585218160000000000000 }, - { "addr": "0x1ba7018c8c4279d6c55c71981e5c8897be4583a2", "balance": 1585218160000000000000 }, - { "addr": "0xc2a1910f3882ec7812ad82909332163b6031e007", "balance": 200000000000000000000 }, - { "addr": "0x2b5634c42055806a59e9107ed44d43c426e58258", "balance": 201938532169429377879000000 }, - { "addr": "0x5003ea73260960f0bd248bf995613d1a2c5783cc", "balance": 1945810958300000000000000 }, - { "addr": "0xee1a9c69605fb39d018ec02b461ed95ea05afba6", "balance": 200000000000000000000 }, - { "addr": "0xda0a16c48bb016964c105ccb56de674ef56af50f", "balance": 5000000000000000000 }, - { "addr": "0x441dccb6121d22b535c2fc5aa0901788c0c16f3c", "balance": 10000000000000000000 }, - { "addr": "0xcf40bbed21c52d5d1f2efbffc06a5b1bf01dc29c", "balance": 5000000000000000000 }, - { "addr": "0x96203a314504fb1a14d40c6bf9d08d3ebad3425f", "balance": 50000000000000000000 }, - { "addr": "0xe220254e61b9c694d7db31f8d2a963fdb9363f94", "balance": 146000000000000000000 }, - { "addr": "0xe17170e4f8f7196bc737df335a6f0ff776cc3df4", "balance": 173499200000000000000 }, - { "addr": "0x59144b0d43da38427ac7dffc47dbcb0ecda0d34d", "balance": 200000000000000000000 }, - { "addr": "0x6fea170eecdf3738a0652aef50840ecbcf70bd68", "balance": 2666600000000000000000000 }, - { "addr": "0x8608e6b3090e7f072bb64c1bf982b0bbcaf7f90b", "balance": 5000000000000000000 }, - { "addr": "0xfded74a8b2e2050d4a4b1c51f9d9555049ddc0ba", "balance": 5000000000000000000 }, - { "addr": "0xdf2839697fb4b6b5fce0cafa5fca417a1b8da11f", "balance": 400000000000000000000 }, - { "addr": "0xf862a7e2e4fdaad42959bad4d291b361d568a958", "balance": 200000000000000000000 }, - { "addr": "0x9bf4bf45f15f5e2d1820c3ef09ba1e5c31d7181a", "balance": 10000000000000000000 }, - { "addr": "0x769a73d4b1a0dd6d876697eef0710d57ab32b8c2", "balance": 5000000000000000000 }, - { "addr": "0xd331dd738eb46cd1877d44b5568891da14e95666", "balance": 24000000000000000000000 }, - { "addr": "0x97d8d56da01e59765727fc212fcf0c3d02f3bff8", "balance": 200000000000000000000 }, - { "addr": "0xf880185f69d8fff78aebdb5ca594d8740dbb4a81", "balance": 200000000000000000000 }, - { "addr": "0x10a196361fab0defff1ebc489d9e3a9ad36dd67a", "balance": 30000000000000000000 }, - { "addr": "0x2aea5f105de103263a43943a9da1cf44f929d092", "balance": 5000000000000000000 }, - { "addr": "0xe36f34e355fd32a60a37f30ea0979b45c145da42", "balance": 23999880000000000000000 }, - { "addr": "0xa47b515f07930b851d1baa5aaa67606274ec5d3a", "balance": 200000000000000000000 }, - { "addr": "0x4ba1a4ed6eaf5710d0ece854c061f59d630e0bf3", "balance": 200000000000000000000 }, - { "addr": "0xd2d293f5e79e16f0fbb029e82de083d6568b039e", "balance": 72000000000000000000000 }, - { "addr": "0xd707460d30a4be7d10ebeefc7b525a5561861362", "balance": 121949000000000000000000 }, - { "addr": "0x9b536b6a6442b1ad6fbdee029b3e0b78e35cfa96", "balance": 458316645966900000000000 }, - { "addr": "0x3105923c7794ac9aab5182c91d3a15e847fbb1c3", "balance": 5000000000000000000 }, - { "addr": "0x194848ead690a63c2f5e109b320d5c5efa4a8313", "balance": 23999880000000000000000 }, - { "addr": "0x4665e1f4083266fed1835388ea6092f973ac1fa5", "balance": 5000000000000000000 }, - { "addr": "0x3762b48193c363048afd3314ec9e3f3bac94046a", "balance": 173499200000000000000 }, - { "addr": "0x3cae3f235b3f246dada8b5e16eff60ed15bd6df2", "balance": 20000000000000000000 }, - { "addr": "0x43ac9572722e72514df760d9319fbe8c97f85ef3", "balance": 5000000000000000000 }, - { "addr": "0xec82af54aef546b79c820dd270680dd2ee9bdd34", "balance": 200000000000000000000 }, - { "addr": "0x12e4dfdad4cbbeb0df1a65cf1e5bc3c68bbc1291", "balance": 5000000000000000000 }, - { "addr": "0x7b934056e90fe978a219194a9f5469cb4360782b", "balance": 5000000000000000000 }, - { "addr": "0x659502448e812a7a6ff6e39c104ba717e497364c", "balance": 200000000000000000000 }, - { "addr": "0xf0635547560e9c4682ced62e6ef2e818d9bf68bc", "balance": 73000000000000000000 }, - { "addr": "0x4e8b5006a41f7a6d239497d2e76a04e60cd0ce1b", "balance": 200000000000000000000 }, - { "addr": "0x652c1e5a869c58d6fd427017bfe967b4bda753a5", "balance": 73000000000000000000 }, - { "addr": "0x0ec7b8230935e0f95e847732444f6fbd7698f3b4", "balance": 73000000000000000000 }, - { "addr": "0x5df1bacd8ae2dd526465eb402f85e680c0fa1bb4", "balance": 20000000000000000000 }, - { "addr": "0x45aa33cad66d3c8f273e53566abc004a88d324ce", "balance": 173499200000000000000 }, - { "addr": "0x2634eee00dd65ce437bf4a4fcc580e62a352d808", "balance": 35137730700000000000000 }, - { "addr": "0x58b1bc3228123b4156e85ceef48676e1f7620edd", "balance": 95999000000000000000000 }, - { "addr": "0xa50a57b0823471780a18d75b89dc961d3ffcfaeb", "balance": 27119860000000000000000 }, - { "addr": "0xb11b0219636aa80e2c2ab85a6a451e17b070beab", "balance": 200000000000000000000 }, - { "addr": "0xaedfc6ee6c5522acaeeb8701bbfe42e7b4dbf29a", "balance": 264000000000000000000000 }, - { "addr": "0xe01b9095bf153d63aa8c268b282c6a9e23a4c386", "balance": 5000000000000000000 }, - { "addr": "0x2815e2166ca19b252900a178ecb744965374117d", "balance": 5000000000000000000 }, - { "addr": "0xcaf28da35fc39995dc642c5311265dd3320e9576", "balance": 5000000000000000000 }, - { "addr": "0x856b5fb0608752b85c725ec55a720f334eb05379", "balance": 200000000000000000000 }, - { "addr": "0x527b30286dcb7179a98e103101ec8557581dca9a", "balance": 24002000000000000000000 }, - { "addr": "0x8e35df02213a58b7f62cee4673b75a979b9f3d3f", "balance": 50000000000000000000 }, - { "addr": "0x244e2166d6eea0e90792870f1888c0abb6132a21", "balance": 1000000000000000000000 }, - { "addr": "0x843b14c997ea8811495a4ef67b58fcba48a4eb02", "balance": 200000000000000000000 }, - { "addr": "0x5a92917adaa9acd4de9498569339215ca3123d70", "balance": 173499200000000000000 }, - { "addr": "0x11583c8d360ed26af67375560a0367f0d16e2632", "balance": 200000000000000000000 }, - { "addr": "0x9c7c587a102ce571c5ea4483b744b840393b624d", "balance": 713139600000000000 }, - { "addr": "0xbb3368e56966efc6f71e20c8cc8b62e0381d90c1", "balance": 200000000000000000000 }, - { "addr": "0xb7bb69f6f87e72ae494cf7b571f5dd2e9ceb0641", "balance": 600001000000000000000000 }, - { "addr": "0x1902eb31c4665f6bf89be09c874c2f1a2d077177", "balance": 10000000000000000000 }, - { "addr": "0x959fd7ef9089b7142b6b908dc3a8af7aa8ff0fa1", "balance": 146000000000000000000 }, - { "addr": "0xc0765aabcacc34bb26ac89a68f2dfe61d4db7d18", "balance": 1000000000000000000000 }, - { "addr": "0xee21f2a0e08c145d34adb5e2a988f92117f7362b", "balance": 40000000000000000000 }, - { "addr": "0x8e4e5af6a09fbd27af06c7c33870876771bedbdd", "balance": 33217696700000000000000 }, - { "addr": "0xfa8f2cbda067bcf4e0dcefd38f9259d07fe29e03", "balance": 690000000000000000 }, - { "addr": "0xf6b919e021d706e1cadb2dce79699e74dbf018f0", "balance": 10000000000000000000 }, - { "addr": "0xacd07d6b8f4b55fc3b96c42b986d9e60ff498d4a", "balance": 1000000000000000000000 }, - { "addr": "0x3fc2bffea0520fb7db6be202891c8436d2bd558d", "balance": 73000000000000000000 }, - { "addr": "0x5a3502ac6e77b9be1a51455d0af312e523630102", "balance": 5000000000000000000 }, - { "addr": "0x8c9c281a420648492c6f6dcb3c08bcea7bad436f", "balance": 127199350000000000000000 }, - { "addr": "0x195f3521b4048a106f4e3d45d8a1a50f28b72f06", "balance": 10000000000000000000 }, - { "addr": "0xe07dd1067e07c985c7becb89eca1ed8fceeaa8c6", "balance": 200000000000000000000 }, - { "addr": "0x0d5c69764d9a1818dc3ecf7eda9365254539cf2f", "balance": 10000000000000000000 }, - { "addr": "0x975d8311219f51273217048dd04de07822008bb6", "balance": 1000000000000000000000 }, - { "addr": "0x18ffc7990eed8b09592fc7a299c725056fd6eb95", "balance": 73000000000000000000 }, - { "addr": "0x1b4e89ae9d93c940f87d5d60e496e9a12c70754c", "balance": 30000000000000000000 }, - { "addr": "0x45352ca45374d5375905d4c3a0ffd4449c7f758d", "balance": 5000000000000000000 }, - { "addr": "0x9ba4cc5b43cc7bf6abe56409f0d1461ab3ba34e5", "balance": 5000000000000000000 }, - { "addr": "0x56931e99efc76d003664dafcee14950da5ab9972", "balance": 496500000000000000 }, - { "addr": "0xb015e8cbc5f6993fb9264f2fd18a8a2f76b90b5a", "balance": 5000000000000000000 }, - { "addr": "0x4a1058042dca14bf64b190da5b24227995d1738f", "balance": 1585218160000000000000 }, - { "addr": "0xbe99b7442cdab5a25802cab4d365ba77f64dcaea", "balance": 73000000000000000000 }, - { "addr": "0xfbfb0c72f89cbb80ae12a38223cc63082e3b476e", "balance": 1585218160000000000000 }, - { "addr": "0x9e2c9d0525acb5ee0d37482e08bd2947658854bb", "balance": 73000000000000000000 }, - { "addr": "0x5834363082533aafce963b13bd24d83666738033", "balance": 1585218160000000000000 }, - { "addr": "0xd0aa0f034d3b2cb674d1319f9d1d6962ecee65ab", "balance": 73000000000000000000 }, - { "addr": "0x6b7c75f1c04c7b83259972e35da09cce78773c70", "balance": 1000000000000000000000 }, - { "addr": "0x0fa816bcd2d2624633b4c76b7ccfe71616d196fb", "balance": 200000000000000000000 }, - { "addr": "0xafc436dacd283650daa70cea1208df8329524a85", "balance": 218160000000000000 }, - { "addr": "0x1a78f34fde42f839e64c965f21943e9c044096b5", "balance": 5000000000000000000 }, - { "addr": "0xd4b01ecc202eadf1ffa515937680533bd0b0e020", "balance": 73000000000000000000 }, - { "addr": "0x5f8fc3257778c084cc93f518dec42f224c576991", "balance": 1585218160000000000000 }, - { "addr": "0xf1e67f5bf7e112a05525f564e78837b0760f5f24", "balance": 1585218160000000000000 }, - { "addr": "0xaf7838a7f0dfb6249d6e36d44e24d610cc664efe", "balance": 30719840000000000000000 }, - { "addr": "0x1e1e0ffed58de495aa8def036500595774a9d7fa", "balance": 173499200000000000000 }, - { "addr": "0x7fe659f8ea034b7bbdae383c2902f2f3b93a1d5e", "balance": 5000000000000000000 }, - { "addr": "0xf0ba2de6986e2c53226e7aba1d099603cb0ad0e4", "balance": 200000000000000000000 }, - { "addr": "0x8a6537ff17497ba179b1f4663d1f0b6320ee1c18", "balance": 180722000000000000000000 }, - { "addr": "0xe9cd55c9d479f6b1a92b28b0b16027a6883f977d", "balance": 5000000000000000000 }, - { "addr": "0x5caec75bce76a418942c12d554e4482830d110f1", "balance": 221800000000000000 }, - { "addr": "0x807091ce8d9869e6df43235c5fa52275dd159875", "balance": 11000000000000000000000 }, - { "addr": "0xc1984ba4117c959ed61f23181b3560500a1f39c7", "balance": 1000000000000000000 }, - { "addr": "0xd2a25cfadd0c8c7a60659615c2673af9a7e628e3", "balance": 880000000000000000 }, - { "addr": "0x504c9e7cad5cad8f3fbe5753d822b9bb5abf6c59", "balance": 73000000000000000000 }, - { "addr": "0xe68ccfb89faf878702697bc59dad2f536bac18bc", "balance": 73000000000000000000 }, - { "addr": "0x2f7b642080418cb2192f6d4ff4bb2f2e7810266f", "balance": 200000000000000000000 }, - { "addr": "0x71dbaac0128bce4d5489b08d3177e79caed37939", "balance": 73000000000000000000 }, - { "addr": "0xab182ae1848fda0ed9d0891229b30d00c8a9c2a4", "balance": 20000000000000000000 }, - { "addr": "0x54cfecfe224dab213768d76599c635302feb841b", "balance": 4712255749947050000000000 }, - { "addr": "0x6a8155bb737a0c2adecac526cd0f564ad22a5323", "balance": 5000000000000000000 }, - { "addr": "0xafee213f12ae02d35193dc221f2fd4468963cec1", "balance": 200000000000000000000 }, - { "addr": "0xce70c54618f34d9169da18b8dc8bb09bbfd46dd3", "balance": 73000000000000000000 }, - { "addr": "0x4e0e56f0a46e2d9a0577e7378fcca596c29eff4f", "balance": 200000000000000000000 }, - { "addr": "0xd510eff8cd530f058723799bb64d52b92ab4b67c", "balance": 10000000000000000000 }, - { "addr": "0xa4d1b3998dea98aa8376004c2febaf7cc4674639", "balance": 1000000000000000000000 }, - { "addr": "0xce2cb32f4fd63b0cdbc745eaffce7909ed8b6603", "balance": 173499200000000000000 }, - { "addr": "0xc195ea2b01beccac40522cd4b741588e8ab52622", "balance": 218160000000000000 }, - { "addr": "0x6968d60dc4bd8ea7292554a01cd755a0c446376a", "balance": 5000000000000000000 }, - { "addr": "0x5f4802a629fcbce575fa3147404ae8145d3a088a", "balance": 73000000000000000000 }, - { "addr": "0xe90488dcfd0bc00704585f9d4634bb7e988dd359", "balance": 200000000000000000000 }, - { "addr": "0x4e42136b6e664c48e33c2aa207de3f5fcc1bf8fb", "balance": 146000000000000000000 }, - { "addr": "0x3167e0686cd2f037e44123678bf351f613477cae", "balance": 24239880000000000000000 }, - { "addr": "0x829d0463d5c3b4478006dee28bbf095039b24c9b", "balance": 30026250000000000000000 }, - { "addr": "0x002acfc3672d74e197bda678c912a7c827624025", "balance": 400000000000000000000 }, - { "addr": "0x0ce3543930d77456f680df142cc770480fac4be5", "balance": 73000000000000000000 }, - { "addr": "0xc4aaea39e43c4f6c2cd44bc3ccbb7365aa680626", "balance": 73000000000000000000 }, - { "addr": "0x6c1a5024e3312fbce150730feb51e897b062a061", "balance": 5000000000000000000 }, - { "addr": "0x6f4a323b3815492bb2d2dc20e10435fbfe6b129e", "balance": 400000000000000000000 }, - { "addr": "0xad32230b7c2b1598dd46c2dd61cfea6abebc7592", "balance": 73000000000000000000 }, - { "addr": "0xb40596bdf8e368d977d950c781707ae6cdf60ed3", "balance": 20000000000000000000 }, - { "addr": "0xf9cd279131d901626d4dc9293ae888b83e508da0", "balance": 73000000000000000000 }, - { "addr": "0x3e4536bb5a6b94e0395b946c1d336045b1353bee", "balance": 1585218160000000000000 }, - { "addr": "0x173fc58fe51c788aa7ad4172ed69768f2dfab219", "balance": 73000000000000000000 }, - { "addr": "0xb38d67e2bc55140a8cd6c3d199fe20d2bd7760f4", "balance": 880000000000000000 }, - { "addr": "0x4c9f19a2765fc121e6c62442b5a9f1aa3e2ce497", "balance": 73000000000000000000 }, - { "addr": "0x8b44c266b6346b9e76d4f9ac1ded488a35812feb", "balance": 79343590000000000000000 }, - { "addr": "0xa21fbfa9c69f8062d4daf65fc5338a60c0879086", "balance": 200000000000000000000 }, - { "addr": "0x2befdcf06fe6106cab1de4ea397982afda6079e4", "balance": 816034000000000000000000 }, - { "addr": "0x1222905bc70dc9a3fd088a7df9b08c3d2aaf0203", "balance": 73000000000000000000 }, - { "addr": "0x488185ca37bb0553a54db75a581bd6da8da9e8f2", "balance": 1585218160000000000000 }, - { "addr": "0x36de999c394b2c33dd57a0a038bb4a5b3169debc", "balance": 5000000000000000000 }, - { "addr": "0x2c67ae683b0a5318915dc874898cdf9f50eeb896", "balance": 200880000000000000000 }, - { "addr": "0x930a3e89d189efdbd3e26e1c536fdebf6cb5211c", "balance": 5000000000000000000 }, - { "addr": "0x8140af40b1f3224ec449e3751298c12c9c12c83f", "balance": 73000000000000000000 }, - { "addr": "0x6cdc455a76bf44f851a2f631f0c76483ab1a4dd4", "balance": 5000000000000000000 }, - { "addr": "0xe189750b6c7a566797f27d6bd8242705d3ef58d7", "balance": 173499200000000000000 }, - { "addr": "0x3299abd60d2b8335d12aec5296873e026e988648", "balance": 3561104767112000000000000 }, - { "addr": "0x01f578226cbd5f544083ba723bc4a1000d39742b", "balance": 799980000000000000000000 }, - { "addr": "0x5ecfb464baef902133db3c2aff41276a93ca2d19", "balance": 5000000000000000000 }, - { "addr": "0x8765716762c6740463c63c0b04433db207f700e6", "balance": 73000000000000000000 }, - { "addr": "0x9122b8c2bf621d72edf442c5ba173570df78e950", "balance": 10000000000000000000 }, - { "addr": "0x8ba98277cf3c1ed8b55e095f3374000d56bed631", "balance": 200000000000000000000 }, - { "addr": "0xa7d83814c8a3de45bedfc560af7c3ba81f5ab6b1", "balance": 1585218160000000000000 }, - { "addr": "0x817675beffbfe32432e4275409ff47f8fc10ba2f", "balance": 73000000000000000000 }, - { "addr": "0xbc495fee100efc2d201dc04d20998b952c786769", "balance": 200000000000000000000 }, - { "addr": "0x8706114754f94aa67c9c9064fa347246e30674e4", "balance": 5000000000000000000 }, - { "addr": "0x1f0178ac65dc49105cee34114f1c9b57dd555f6b", "balance": 200000000000000000000 }, - { "addr": "0x37cee986e4bdff434ca06fe56224193eeff2e1ac", "balance": 10000000000000000000 }, - { "addr": "0x19d434f2a935b32b1247a91a9183ba8d6e7a375b", "balance": 154356000000000000000000 }, - { "addr": "0x4e31dc0267bfdf78112068d72098b12aaeb970e6", "balance": 1350000000000000000000000 }, - { "addr": "0x0548e24a53f52a471ac5e8c9b4a9d9a8929d7570", "balance": 73000000000000000000 }, - { "addr": "0xcd20a14531bd4bc1cb39257876507c483305b557", "balance": 173499200000000000000 }, - { "addr": "0xc2049616b74236a7405f3b01175815cb4279e14c", "balance": 200000000000000000000 }, - { "addr": "0x623d148476049195eb4fd14292346b6339f9d59e", "balance": 200000000000000000000 }, - { "addr": "0x2ad260a74dd5a113872b82f2064b47ec2796b4b3", "balance": 200000000000000000000 }, - { "addr": "0xde70043edf21a081bbdb9bafd1a4b0f340936b1c", "balance": 200000000000000000000 }, - { "addr": "0x34b1526c59a8a6d00357c10c172c4b09fe2356f2", "balance": 73000000000000000000 }, - { "addr": "0x62fe7145e1cd757dd8e8d52f0940267a0384dbce", "balance": 200000000000000000000 }, - { "addr": "0xb91a2b07d4240108c09143cc7a96181c00fcbdcb", "balance": 200000000000000000000 }, - { "addr": "0x9e0454674942155c02eee89ff96b067ff5ab6709", "balance": 200000000000000000000 }, - { "addr": "0xf2ac05426981aaa783e6e62847761770c2e49d7f", "balance": 760000000000000000 }, - { "addr": "0x7a3592d8e7dfe3153c5d2f04db8fb2d964cf4738", "balance": 5999390000000000000000 }, - { "addr": "0xe3c46bfc4d94dcfb014b44b3c59217743fb4a652", "balance": 30000000000000000000 }, - { "addr": "0xcc95a5c984bc8b05aceb88f21dff68022ea4e586", "balance": 85000000000000000000 }, - { "addr": "0xf157ff504d3bba489fd61cddce29c128c1208226", "balance": 853000000000000000 }, - { "addr": "0xeda45c057ea9fa3c09cf35845b2e28f6da647a3a", "balance": 73000000000000000000 }, - { "addr": "0xe6e0bfdc956ce3c15c8c32062c453a6a7e05406d", "balance": 24000000000000000000000 }, - { "addr": "0x364db2c524687f098d768b3ad0309e127e83c798", "balance": 880000000000000000 }, - { "addr": "0x4e25986d719d62007857db4b9477c9ea40766e04", "balance": 5000000000000000000 }, - { "addr": "0x1df14a727783189295b86773b6f794b5b3e15770", "balance": 5000000000000000000 }, - { "addr": "0x548fed9e28f702e2bd42321019807f8a0671572b", "balance": 1000000000000000000 }, - { "addr": "0x6f055d1f55ddb87953243edf1a9ed01738a418f6", "balance": 73000000000000000000 }, - { "addr": "0x98beea20d410036021b4040c3d1c50069a7c9358", "balance": 5000000000000000000 }, - { "addr": "0xc322dc37eeb660ea2a58b4738fc09e386779df12", "balance": 185096000000000000000000 }, - { "addr": "0x09db9ae31a0e8cb1d4762070809dada6ea7a4785", "balance": 200000000000000000000 }, - { "addr": "0xd22579c4993845662567966bae4a93fde9176c73", "balance": 47999750000000000000000 }, - { "addr": "0x0226ab4302c14d9afd7c256a49624b2a26506891", "balance": 173499200000000000000 }, - { "addr": "0xc3a34e2ed42a0d154cd1565b43553d8bf397d128", "balance": 146000000000000000000 }, - { "addr": "0x740846daf0bb84349892dc4bf118dfa2e30bd4ee", "balance": 1000000000000000000000 }, - { "addr": "0x2c78a323048e6b499cd40785b8fd9c1c05b1cf16", "balance": 5000000000000000000 }, - { "addr": "0x525ea65001c0fa3a022d37da172beb9313d7355f", "balance": 52799730000000000000000 }, - { "addr": "0xdfbeea7a57b1281f2b394a781d5c88efc5798f44", "balance": 200000000000000000000 }, - { "addr": "0x5702f8a27d6a79e3229dbc14211f2cf410b89b40", "balance": 5000000000000000000 }, - { "addr": "0xd37e02e628ff1b929fa6d27b0e93ad4578d27baa", "balance": 218160000000000000 }, - { "addr": "0x38224068c3acc2178a356754ffaa157033a6e88a", "balance": 5000000000000000000 }, - { "addr": "0xa02fbeb9861da959d5a5637f2b9406d91da7186f", "balance": 200000000000000000000 }, - { "addr": "0xc3001eb3f3a0269f27f0f256de7a674352611f27", "balance": 200000000000000000000 }, - { "addr": "0x8e2ee405e9ff86327578ee0c2fad584c4a821c1f", "balance": 200000000000000000000 }, - { "addr": "0xd69b05fa71b97f044065e1a92ed5d4d10c209203", "balance": 73000000000000000000 }, - { "addr": "0x241a91ab50c9f3d9c37f215b65a7f45f6821ef7d", "balance": 200000000000000000000 }, - { "addr": "0xc6a591d54a248accdd97139544b5127420a24b86", "balance": 30000000000000000000 }, - { "addr": "0xe72861f9ef9d1b336347b8f5b2e239d15d0c4b2c", "balance": 1985218160000000000000 }, - { "addr": "0x52b398fa9d639c594778244c287cddac268b3a5f", "balance": 5000000000000000000 }, - { "addr": "0xe54dc6bf92e052c3f755ceee7582797da9e4f08d", "balance": 400000000000000000000 }, - { "addr": "0xc9b8e31376efa30d525b1a7e72b0770c8258abbd", "balance": 810000000000000000 }, - { "addr": "0x6c0e8d7899bc86da1a777fef34bf5500bb58823e", "balance": 200000000000000000000 }, - { "addr": "0xfee5ed14e11276eab4070eba25d4daea49f4168b", "balance": 200000000000000000000 }, - { "addr": "0xd876cf2e25fbe1569c67899251a17bd1cdf99b23", "balance": 10000000000000000000 }, - { "addr": "0x11e8b76308a028944c6c5d392186d5b651c0a363", "balance": 719996310000000000000000 }, - { "addr": "0x6095b3f16a1367c1c6c2db26dc8f8617292700ba", "balance": 73000000000000000000 }, - { "addr": "0x5f202ca6cf5ab3f2be75050387ed37b4aa5042da", "balance": 5000000000000000000 }, - { "addr": "0x73736a74f5d80ad6c8c71a4e0651e9dfff789a13", "balance": 880000000000000000 }, - { "addr": "0x7e7a0f2cd99edf8d28bed3f6f71184c509fbb83d", "balance": 5000000000000000000 }, - { "addr": "0x791dad64f50c20edc2dea63d00143269cebd54f7", "balance": 5000000000000000000 }, - { "addr": "0xd0c6e4c8619bf1187df229f35a78f7ba04198b4e", "balance": 200000000000000000000 }, - { "addr": "0x6899ccba54e24950e6036bfd8cec3f637d932090", "balance": 23999880000000000000000 }, - { "addr": "0x1be8893707b0cb0315009e91b99557e6c3ab90e3", "balance": 73000000000000000000 }, - { "addr": "0x2e160e2a84c4a97c28045a7a00679396a53dad48", "balance": 400000000000000000000 }, - { "addr": "0x4f1700bb52b95a2919b4afc274637b99ec3b6477", "balance": 73000000000000000000 }, - { "addr": "0x92142b81bf1c91e2d2c9f56e775cef1210baef8d", "balance": 73000000000000000000 }, - { "addr": "0x92690e610c55e830839ddd1db04160c980360eba", "balance": 200000000000000000000 }, - { "addr": "0x881e0426986d38ca11092f164feb604b7d7739ba", "balance": 200000000000000000000 }, - { "addr": "0xb07e901bb79e6dc1e30229181e2efa834d306a16", "balance": 50000000000000000000 }, - { "addr": "0xf3483930d15d130bd870b9b5da0f7e26f2103e9a", "balance": 73000000000000000000 }, - { "addr": "0xb1b4bca2f275345074899ab868c86f95030b3e89", "balance": 5000000000000000000 }, - { "addr": "0x6977dfe21b8eebffe775cc637e5a9e3c744c6ad8", "balance": 200000000000000000000 }, - { "addr": "0xf52efbe426a1ae6d3bd539c5db867c732412b9d7", "balance": 23999000000000000000000 }, - { "addr": "0x4d9b8dc3cc85ed602a4c601ba906e4f9d05b4a0c", "balance": 600000000000000000000 }, - { "addr": "0xc8c90780449980c439f2af43cd5d14dabd4983b8", "balance": 349479492300000000000000 }, - { "addr": "0x6582886206275f9736d622537663a12efd228c83", "balance": 5000000000000000000 }, - { "addr": "0x3558684534d4a14cb447dbd8aee465a12f922ffd", "balance": 73000000000000000000 }, - { "addr": "0x8ff272f798e3033775c08625f57d112dfe39eb51", "balance": 5000000000000000000 }, - { "addr": "0x9780d0a21399fc34065460671208ee694c980491", "balance": 71999630000000000000000 }, - { "addr": "0x5a0707c809baf80d1fba263bcc86b9bd1243ffdf", "balance": 5000000000000000000 }, - { "addr": "0x2dccf319a2f2f6ea56f2a5310621182b249e99eb", "balance": 200000000000000000000 }, - { "addr": "0x50bae63bc545545542d66d00c4d6b898b2706be4", "balance": 854100000000000000 }, - { "addr": "0x4ead2091ef1e804f085bc32f05c04dd2b0df0138", "balance": 48000000000000000000000 }, - { "addr": "0x3b19a16f26a7ad5846a33ec17e31e44be38476e0", "balance": 880000000000000000 }, - { "addr": "0xbb1ba684fa08973802a9e2ee35566238c1e6b3b5", "balance": 20000000000000000000 }, - { "addr": "0x0cb07aed1005686533bad2cfdba10ade7b1a020b", "balance": 99000000000000000000 }, - { "addr": "0xe7c8c3ef64819834390067f3f0c1984081b58373", "balance": 1585218160000000000000 }, - { "addr": "0x6efca373466d59a90d3eeb808249e84cea117216", "balance": 73000000000000000000 }, - { "addr": "0x1e7ad2f5ce7a518f452a510670c108a5f2f7b3d2", "balance": 5000000000000000000 }, - { "addr": "0x088c6ce6760c45a62c15e81f6f81178d00eb66f5", "balance": 73000000000000000000 }, - { "addr": "0xeea3b1383b8d5394ee32fd96540ebb4862a89673", "balance": 5000000000000000000 }, - { "addr": "0xe26686f5f296b67dd82d55ae7e33785ffa42d519", "balance": 5000000000000000000 }, - { "addr": "0x0a4edc5473bfcd61d73ce23f16735332e8e59327", "balance": 30000000000000000000 }, - { "addr": "0xcc1af2e14e1bd887c3c7753411ed1d600e70adf4", "balance": 400000000000000000000 }, - { "addr": "0x89d9d9be3049a694b4c19b3607cba04cc7b846ef", "balance": 1585218160000000000000 }, - { "addr": "0xa17673d92d935e9bacdf7b6162d8a9367c1ff7dd", "balance": 1000000000000000000000 }, - { "addr": "0x5453cef660d6dbb91ec73ada9e9a187756e9c3e9", "balance": 200000000000000000000 }, - { "addr": "0xc635d4555c4cf8cb0f53a25e8c0e83398e508aa6", "balance": 73000000000000000000 }, - { "addr": "0xe057bc1aec2062ea816c9b6b4af5ad10bc4550e4", "balance": 200000000000000000000 }, - { "addr": "0x19a8978e37cf9a1d8cc47b60eb3893b33579fb4f", "balance": 200000000000000000000 }, - { "addr": "0x73be3c66610d90effdd7e1ba31f99944c82c5428", "balance": 200000000000000000000 }, - { "addr": "0xb36ed4f4fe177e7727b1355581e1e851dc14d55d", "balance": 30000000000000000000 }, - { "addr": "0x20334a24ec55a57007716a83d6b7bf4cf2fd8f49", "balance": 5000000000000000000 }, - { "addr": "0xc5173cc45a6806a242a14e039a5c06eec30a32bd", "balance": 5000000000000000000 }, - { "addr": "0x12c5ee3f854a3bedb8c73eecede9f326ed0555af", "balance": 10000000000000000000 }, - { "addr": "0x24a45683add0d4fd9b12e33ffe398c5666b77786", "balance": 20000000000000000000 }, - { "addr": "0xcd6a5305a69ce1fbd9dafcad4d8ec51966d68f16", "balance": 200000000000000000000 }, - { "addr": "0xef082efcffaae54e4220c0bf1e2e1b7f940e87e7", "balance": 65303483000000000000000000 }, - { "addr": "0x7f50397078ad4da62c4e2eb6a5e4503d36e50bb2", "balance": 2041583000000000000000000 }, - { "addr": "0x3f329bf6da22797f953f951a4da3243e1e9e95b6", "balance": 5000000000000000000 }, - { "addr": "0xb40b71ec785d814a2e4abb6858e7b13e1fda269a", "balance": 5000000000000000000 }, - { "addr": "0x84a4aad0521956edea82d60c64a95656ff8c4663", "balance": 200000000000000000000 }, - { "addr": "0x9d16dd9ef723d5d7cd01e780e8cc0d0eebdbe651", "balance": 73000000000000000000 }, - { "addr": "0xe9351998d9b0a78be8af5910b956beafb3dac46d", "balance": 73000000000000000000 }, - { "addr": "0x38b145ba9cef0483ae1b5eee758a1be22e555da5", "balance": 5000000000000000000 }, - { "addr": "0x5fcefacfe770691e747f47b751b4972f96689ea7", "balance": 15000000000000000000 }, - { "addr": "0x6b0d282a917814cb035fb5481591538b33468d8b", "balance": 73000000000000000000 }, - { "addr": "0xb3e201e82e2fc191f84d404f0185f12b150f1998", "balance": 160000000000000 }, - { "addr": "0xf515e02652e0817df01d3b9e90523c8cddb804ee", "balance": 5000000000000000000 }, - { "addr": "0x6dc0280bbf2cb480d439bc5099bcac714679cca4", "balance": 200000000000000000000 }, - { "addr": "0x148bfca14a04db35e68eb4c99cd42146a94411ea", "balance": 73000000000000000000 }, - { "addr": "0xc3883df80750c0e79da0eb55a3b9136a20e51d32", "balance": 73000000000000000000 }, - { "addr": "0xa4505c99d526ee0289526acb8db032eca49f0e00", "balance": 73000000000000000000 }, - { "addr": "0xe806e9e7f8933096bbc05c5ac6e3965bf403db1b", "balance": 73000000000000000000 }, - { "addr": "0xa23c1d05723dcf04a88c4debd6dade6d84d71bad", "balance": 5000000000000000000 }, - { "addr": "0x61b3c970df88bfd3deaf268577cc8a305fc0c1b6", "balance": 200000000000000000000 }, - { "addr": "0x05baf6ba3ad460ebdfc4659001e395810aac21c1", "balance": 73000000000000000000 }, - { "addr": "0x81871dc2abc99288cf3f4ab5dd3bb420e94c6123", "balance": 5000000000000000000 }, - { "addr": "0xcef88c909763edc74617c7af649faeb871d7fa9e", "balance": 40000000000000000000 }, - { "addr": "0xb9b32b12d7712c2611ab55ccd134b50d40e52984", "balance": 10000000000000000000 }, - { "addr": "0x74b2456b9b227e8b39a463791533a0ecbc37ef8f", "balance": 5000000000000000000 }, - { "addr": "0xd03aa90e7d64228b180ff1a60cbcc1a19c6d7435", "balance": 5000000000000000000 }, - { "addr": "0xda3754e5984a0dbff04fa4a9796a54606242e135", "balance": 28391500000000000000000 }, - { "addr": "0x035e1c29871e29122582727cf3ed287fbba2fa59", "balance": 200000000000000000000 }, - { "addr": "0xc5fda9b6258b392f120db67202c605bf22c29853", "balance": 173499200000000000000 }, - { "addr": "0x6f02d990c96c1d71d4ef395f1475e2bbb65e5267", "balance": 200000000000000000000 }, - { "addr": "0x3515c1f9832f8505885ac2aa11c4afa11c770ee7", "balance": 23999880000000000000000 }, - { "addr": "0x5007488d39aca3690107799d1573ef2045c55213", "balance": 200000000000000000000 }, - { "addr": "0xbf9a38c66c31eee04cc511ebf5c74b78f33e8ff3", "balance": 400000000000000000000 }, - { "addr": "0xc58b2d621e1fce156158fba008a6803095b6c090", "balance": 27911140000000000000000 }, - { "addr": "0x3e666be5da04b6cb0456870c233bf847fbdb582b", "balance": 73000000000000000000 }, - { "addr": "0x560993a1220d6f09c907272e64a995c9dd0f3e8b", "balance": 200000000000000000000 }, - { "addr": "0x75de3b05a9281dda0b6bc8d52ce3c06c0c8f2efa", "balance": 10000000000000000000 }, - { "addr": "0x3bfdfa848cdb23ad7818e1460bf9ffbb8b3ffffb", "balance": 20000000000000000000 }, - { "addr": "0xf36698ba31571d596014baf3309207dd096eb8e9", "balance": 647114000000000000000000 }, - { "addr": "0x5c2eb311e882e00a4c130f3646c29016bc23f93a", "balance": 28799850000000000000000 }, - { "addr": "0x56c4e755ff81cb9d104025c7c245abfa2f3d9453", "balance": 200000000000000000000 }, - { "addr": "0xdbf8537010cb7c686c7d30411a6724210c900c4f", "balance": 218160000000000000 }, - { "addr": "0x538241cc22854461047f8922663e7906b059db77", "balance": 73000000000000000000 }, - { "addr": "0x7e03a5d775a3e3f07c5a87cb0bfc036a3702b7b7", "balance": 5000000000000000000 }, - { "addr": "0x82ee740e456d445184f9ce44c00025e67fdf5067", "balance": 24000000000000000000000 }, - { "addr": "0x7acc0b51c1c07458369a508178ac0f38b1ba54f2", "balance": 1585218160000000000000 }, - { "addr": "0x885ca55f34afb92cba06f58a7f7a2ef054d64770", "balance": 17361024993187762120400000 } - ] -} diff --git a/wemix/scripts/mainnet-genesis.json b/wemix/scripts/mainnet-genesis.json deleted file mode 100644 index c4fd21773897..000000000000 --- a/wemix/scripts/mainnet-genesis.json +++ /dev/null @@ -1,12301 +0,0 @@ -{ - "alloc": { - "0x000877F43163F4556Ae0E069721F74Cfd1A124A8": { - "balance": "0x5b208a027d20000" - }, - "0x002aCfc3672d74e197bDa678C912A7C827624025": { - "balance": "0x15af1d78b58c400000" - }, - "0x004225FE84cea7D0271B726465154199D0607ad3": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0049FAB7f5dD1F26F057BD5d972Ffc6ba3c349Dd": { - "balance": "0x3877aae596c4e0100000" - }, - "0x004c7e5fF5B2924587af243C802C56141C7F628F": { - "balance": "0xad78ebc5ac6200000" - }, - "0x005553E572E0a0Df67f0F98781006f2bF513edE6": { - "balance": "0x1158e460913d00000" - }, - "0x0055CD5F017027D10ADF4f13332181e6D8D886BB": { - "balance": "0x2349928f6f70d5c00000" - }, - "0x0062575d20b14aB2A97e88F2AcA89aa2CbA61367": { - "balance": "0xa2a15d09519be000000" - }, - "0x0078c999f4ad4ec2fcBf2083bFe5dAF6c4Dff0aC": { - "balance": "0x3f514193abb840000" - }, - "0x00929D43CbA1d458bB6680C300930a55C2536fd7": { - "balance": "0x1158e460913d00000" - }, - "0x009700C9c896DDDc4a861B5ec8B9b44889785827": { - "balance": "0x83019dfc17b0000" - }, - "0x0097b8664Ff3E01939CFc7e625F448a959B6Bea0": { - "balance": "0x15397aac06b35a580000" - }, - "0x009a74217675C22a63b7a930f1b39A5c7dF78e53": { - "balance": "0xc3663566a580000" - }, - "0x00CEf004A0123B630704BB783d5B6CE9F8f08C20": { - "balance": "0xad78ebc5ac6200000" - }, - "0x00D56928FC3FA8036a5e6CeF9f74Ce19aD8271e1": { - "balance": "0x3f514193abb840000" - }, - "0x00E8E06950Fa90D65F386275b78c73b68ef38eF0": { - "balance": "0x4db732547630000" - }, - "0x00c8d8D5aE08106AF30D6e661C601E0216F1346f": { - "balance": "0x3f514193abb840000" - }, - "0x00e117A7d4c68c42DAbe9339e63D93519fFce484": { - "balance": "0x4563918244f40000" - }, - "0x00e175e99d2c01085aFB725Ed6d13f55B4D3409F": { - "balance": "0x967c8fb296e740000" - }, - "0x00e258b84F5A804d836e8e0804A6E3c4372E8847": { - "balance": "0x15af1d78b58c400000" - }, - "0x014A2740A2F16A5Da1E5290e7d8157ff6899326c": { - "balance": "0x4563918244f40000" - }, - "0x015EB5b28588263d411e61FA7538e0D6a2b13A36": { - "balance": "0xc3663566a580000" - }, - "0x0186bE2c4b734400570828e18DF35CF759198aEa": { - "balance": "0x55ef523dac9a570000" - }, - "0x01C70d1EA81f257B1e21D403bcBA5CF52F5f07Ea": { - "balance": "0x112656448215a000" - }, - "0x01C9e3429FFaBbB2d4E26421cdb53Fe3446DacD5": { - "balance": "0x515093df72fa1f40000" - }, - "0x01E4F024FD1bF85dc7038D3e4843752655A5b97f": { - "balance": "0xad78ebc5ac6200000" - }, - "0x01F40339476E51e0B0532f0b435eB7Dac738a31F": { - "balance": "0x3f514193abb840000" - }, - "0x01F578226cBd5f544083ba723Bc4a1000d39742b": { - "balance": "0xa96700b0c44ea0300000" - }, - "0x01F8fD8DcEB118bC1D503F762e95A6287731a10C": { - "balance": "0xad78ebc5ac6200000" - }, - "0x01FcCF3603704E04C15D87D102Cba0389B47b09C": { - "balance": "0x11eb87cb1188b7a400000" - }, - "0x01d99e03A49C7A7cE2bd67AD12543B050861a15e": { - "balance": "0x1aa535d3d0c0000" - }, - "0x0200A5C0Ed242bE4afef914A623cBC387c0C8d2D": { - "balance": "0x3f514193abb840000" - }, - "0x02011E7ef9aa0AEe000b9A9cd34BF51E29B3a1a9": { - "balance": "0x55ef523dac9a570000" - }, - "0x02228ab4c4ee07322314F5b20355dE977DE94277": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0226Ab4302c14d9afD7c256A49624B2a26506891": { - "balance": "0x967c8fb296e740000" - }, - "0x0249b51a48aC7F276893f1dE47E4fcF4EaA7E7DC": { - "balance": "0xad78ebc5ac6200000" - }, - "0x02521EB18905EE6300554fab6dA30038b7130C40": { - "balance": "0xad78ebc5ac6200000" - }, - "0x026f677E9DEB81a435213Bc23Cbe70Cea7Eda19F": { - "balance": "0x515093df72fa1f40000" - }, - "0x0273B0B36399AA2D3efb326c315c2801236BE16B": { - "balance": "0x3f514193abb840000" - }, - "0x02D9418146E85874e59717a20dCe1107c018B239": { - "balance": "0x55ef523dac9a570000" - }, - "0x02Dc0e901f8eD3009A0025fdb19045a5cC40A07A": { - "balance": "0xad78ebc5ac6200000" - }, - "0x031f1409A916fAA2ADeA5bCEa04CbDDC7f0aFF9A": { - "balance": "0xad78ebc5ac6200000" - }, - "0x033d4bf1FbFAa0f5e14810ce114eB8e125173f28": { - "balance": "0xc3663566a580000" - }, - "0x0352A83Da35d57c26f15e23d1309B12F4F1Bf313": { - "balance": "0x3f514193abb840000" - }, - "0x035D3Fa55230b15c9A31D9Bc57108eb553A28994": { - "balance": "0x967c8fb296e740000" - }, - "0x035E1c29871E29122582727Cf3Ed287fBba2fA59": { - "balance": "0xad78ebc5ac6200000" - }, - "0x037B17a25800870Ca39Ec6226e0Fb4f43AfE362a": { - "balance": "0xad78ebc5ac6200000" - }, - "0x037DDF22A14F6092E813489e1305ba6b4fC8496d": { - "balance": "0xad78ebc5ac6200000" - }, - "0x038921Cf7D36dB1c8a51dDEac22bCC571BDbEa4c": { - "balance": "0x1a055690d9db80000" - }, - "0x039d605c368A9760eaE4Db0377e399534523ee17": { - "balance": "0x3f514193abb840000" - }, - "0x03E87f9733bD4f6d78963A37639342E243CCF42D": { - "balance": "0x1a055690d9db80000" - }, - "0x03EEC6965e7fFe5E68D4BBa060a98997966Fe16A": { - "balance": "0x3070f5d38330000" - }, - "0x03F37a3dF2f79ce71D4a2bEb157A26aA09fd4b18": { - "balance": "0xad78ebc5ac6200000" - }, - "0x03a150f897271E40B4e92b22a5676a655d3Dfa70": { - "balance": "0xad78ebc5ac6200000" - }, - "0x03a9445de9377CBFf81F56B5b0FB09a5e4FfF89E": { - "balance": "0x3f514193abb840000" - }, - "0x03aa17d7f1CB7D10739E0391F53c0b4862C48316": { - "balance": "0x3635c9adc5dea00000" - }, - "0x03bC56cB920Ba31dEa09830A7B56969dc2c71b29": { - "balance": "0x1969368974c05b000000" - }, - "0x03e130Bed8b72086394D58D86f54739dcDC4274f": { - "balance": "0x1c3bd572cb6270080000" - }, - "0x03e4621ab80aDd4a6118bac502E5404925839B43": { - "balance": "0xad78ebc5ac6200000" - }, - "0x03fe73FCA7bD53b8dE3d38cD5e39D6062859bF3F": { - "balance": "0xad78ebc5ac6200000" - }, - "0x040C00DF2718cca746454327d8672d05c926B533": { - "balance": "0x3f514193abb840000" - }, - "0x0410724F2098046E83202256fA92A7195aEcD6E3": { - "balance": "0x27b46536c66c8e3000000" - }, - "0x041EFbC812C6D5919E9b77144C77E05AD8FcEB6C": { - "balance": "0x3f514193abb840000" - }, - "0x0441b8e09ce023Cdb7A3C934Bd9Fd391d1e5150C": { - "balance": "0xad78ebc5ac6200000" - }, - "0x044689edc79b1E84B2eD88873aC8db7a0ccb0e39": { - "balance": "0x4563918244f40000" - }, - "0x044fCA57a57b92398d9BBd5d5fEe440F172113df": { - "balance": "0xad78ebc5ac6200000" - }, - "0x04590eA4Bb25d2C12d8351f7D2Bbbb55cb9b6D19": { - "balance": "0x5ddc08ca4721853c0000" - }, - "0x04F177C85A66b376cBCDfB7c335D1B74c4eb4703": { - "balance": "0xad78ebc5ac6200000" - }, - "0x04d8FB7546295Fa5ca168fe7411690a6A51C4d03": { - "balance": "0xad78ebc5ac6200000" - }, - "0x04e856DE45aFEb3d953C4f66DaAac5F0580D78aA": { - "balance": "0x25014bfbfb000" - }, - "0x04ec02bc619e7592656BE91F6162F01834351938": { - "balance": "0x3f514193abb840000" - }, - "0x0507580e6E1096dc96E0eaFdD0D1E5cC9A5B2Cbb": { - "balance": "0x3f514193abb840000" - }, - "0x051688500F9bB73e030f9633F25F8AAd1003b6CB": { - "balance": "0x410d3dc4ead0ef40000" - }, - "0x051E58727B5179a665fa41C213e81cAB7eE4CC0B": { - "balance": "0x3f514193abb840000" - }, - "0x051aA668c9c3f97097D988713149631E98Af53D0": { - "balance": "0x4563918244f40000" - }, - "0x05224A89758486cF9DD6b19142ac4E2E38D2858F": { - "balance": "0x5528358e9bb4db10000" - }, - "0x0523490431af38fecd64A3DAF4f2874F3d7dEA59": { - "balance": "0x737693eb3340000" - }, - "0x0548e24a53F52A471aC5e8C9B4a9d9A8929D7570": { - "balance": "0x3f514193abb840000" - }, - "0x054f26e198B0B6822B3c74909856952c2263c054": { - "balance": "0x4563918244f40000" - }, - "0x057867d18F7AB56caeFA5c54a5C735d66B90A438": { - "balance": "0x839916be8b97e5780000" - }, - "0x0586b12a381d865895a093F8CC88ED93dd230Fef": { - "balance": "0x3f514193abb840000" - }, - "0x058d984B1be350A16797b88edD6C090E41028eD0": { - "balance": "0x515135f72517ffd0000" - }, - "0x059BCFDe10fA582252d569FF6E665A80a9100F52": { - "balance": "0xad78ebc5ac6200000" - }, - "0x05BAF6Ba3ad460eBDfC4659001E395810AAC21C1": { - "balance": "0x3f514193abb840000" - }, - "0x05ec894E22C46E9408f33f2b1714E4f79568Bc84": { - "balance": "0x3635c9adc5dea00000" - }, - "0x05f543F78eC876d29BFF0eb382025572CB406018": { - "balance": "0x8ac7230489e80000" - }, - "0x0647F910DD0882E974369E60F94809740615fcca": { - "balance": "0x3f514193abb840000" - }, - "0x064e255B75BD74aEb028c9F6E06c89F8484D19C8": { - "balance": "0x4563918244f40000" - }, - "0x0668b61475De75bfA16DC1A2b9f02f2B59485aF0": { - "balance": "0x515093df72fa1f40000" - }, - "0x066CaB61566dF1960783480D2CB07f45097CBbd3": { - "balance": "0x5150ae84a8cdf000000" - }, - "0x0681d729ddBaC66DE28F0Df109e75c5a779DE195": { - "balance": "0x1158e460913d00000" - }, - "0x0682f4bbF1B1C12e0F79e462d1B483888efdF4d8": { - "balance": "0x8ac7230489e80000" - }, - "0x06831d66797313533837c58089d923A844dCc855": { - "balance": "0x3f514193abb840000" - }, - "0x068EC3958d90175d28BfAEa66EaE48b96f05d072": { - "balance": "0xad78ebc5ac6200000" - }, - "0x06A4E06aBAE469A8E3A3DF375C4B92053d333D74": { - "balance": "0x3635c9adc5dea00000" - }, - "0x06A9B20DfE3C843CAc02765E119924eFD4cCe30e": { - "balance": "0xad78ebc5ac6200000" - }, - "0x06DAb868Bf9b2B3F75908360283fB2b894812dFb": { - "balance": "0xc53935e1470dd1b4000" - }, - "0x06a8f8dE5013eBC13c44E88947b51e633e5699b1": { - "balance": "0x5568f52fd38109a0000" - }, - "0x06fb74815e05BaCfA25C5bb6F70b8222d65A6833": { - "balance": "0x905438e60010000" - }, - "0x07045078f6893E94b8d5F4fE171D5D14274452dE": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0718089B81AE8D0E66259D372fdc68EeeC7cb653": { - "balance": "0x967c8fb296e740000" - }, - "0x073585BAb56274a79Db9A6672256aF6CbA1c308c": { - "balance": "0x1158e460913d00000" - }, - "0x07483f18f45C7691cb4fA4035e6A6A81e02FDE3C": { - "balance": "0xad78ebc5ac6200000" - }, - "0x07Ada50Fc9372d12d45D5DB6f80d7c54C13Fc435": { - "balance": "0xad78ebc5ac6200000" - }, - "0x07E263Cb04D1049E6d63D65E999bbEC47050954f": { - "balance": "0x3f514193abb840000" - }, - "0x07a003Aa8c666789ee62037BBd4E7A1e769c6dbD": { - "balance": "0xc3663566a580000" - }, - "0x07a495f8692293fAd59254e58140Fa0c4079Bea7": { - "balance": "0x1158e460913d00000" - }, - "0x07aaE0bAd8197b334af8047d0eE58F22F6c3b0Bb": { - "balance": "0xad78ebc5ac6200000" - }, - "0x07b8c364eb9f44D2cB795a48Eb7051Fd25e51Df7": { - "balance": "0x967c8fb296e740000" - }, - "0x07c7C3E2544E7cA8b0A3944fe6de5831C91d28D4": { - "balance": "0x1f59901e9b3de1e74000" - }, - "0x07d9539aA201a1F584a19dA0C579c6240Bd924eb": { - "balance": "0x69b58c25829bf700000" - }, - "0x07eD7acE0166FeC699B7fc4462106DfeF97B8963": { - "balance": "0x3f514193abb840000" - }, - "0x07f9E23a73ef3d673e48b26060B462B940ed759E": { - "balance": "0x3f514193abb840000" - }, - "0x08155E80e6367f88C723c54887bA365f097e9731": { - "balance": "0xaaf96eb9d0d0000" - }, - "0x0816446dC591A255b38CD6D1E183900803ff2BC5": { - "balance": "0x13da329b6336471800000" - }, - "0x0830fB47F47EC72E6349025c78bA2a8802204C33": { - "balance": "0x8ac7230489e80000" - }, - "0x0838b63f70D8fE6D44d52aAE85F0C133B26A370C": { - "balance": "0xad78ebc5ac6200000" - }, - "0x08407142a4FFB278BfBa97a845156c115cb2aC93": { - "balance": "0x8ac7230489e80000" - }, - "0x084F16A8CA7529D3ed104db258652466Fb73D721": { - "balance": "0x3f514193abb840000" - }, - "0x087Fac32121E657A02Be4332015EB045fA90683e": { - "balance": "0x8ac7230489e80000" - }, - "0x0882a2Ca4f0ce9B56653E2cB9Efd3A0698219535": { - "balance": "0x8ac7230489e80000" - }, - "0x088C6cE6760C45a62C15E81f6f81178D00Eb66f5": { - "balance": "0x3f514193abb840000" - }, - "0x088aC5769018b7B2Ad81f7C58E9Ec148d2E1b860": { - "balance": "0x3f514193abb840000" - }, - "0x08BB31A3970156425e0e9F8EBC4879a85675009E": { - "balance": "0xad78ebc5ac6200000" - }, - "0x08CFa2cc6166529B8Af1001a8962eA703434aA8e": { - "balance": "0x967c8fb296e740000" - }, - "0x08F837b350bAFFa3686d0F26D6a854A98bFb60e9": { - "balance": "0x3f514193abb840000" - }, - "0x0907c695a324e17f453d0d3d0dfaF6FF2D55651A": { - "balance": "0xad78ebc5ac6200000" - }, - "0x09132aDc6d7d52501F8273701196f871aF15D860": { - "balance": "0x8ac7230489e80000" - }, - "0x091BB5f1a238c3C4705069214fFeed44C5D003AA": { - "balance": "0x515093df72fa1f40000" - }, - "0x091E697BF83a19477BCCFd180fcf04C3Ed2514D8": { - "balance": "0x8ac7230489e80000" - }, - "0x091d33157Bd37C727ef8BD08eE194db9Ce6f587A": { - "balance": "0x3f514193abb840000" - }, - "0x0920c508f39Ef5452dece454fdefFd0e94c51d67": { - "balance": "0x8ac7230489e80000" - }, - "0x09247B903317cF766976266f8b3Cfe24845d14DD": { - "balance": "0x515093df72fa1f40000" - }, - "0x0947502C275E0d5E0639296d38bB39150E44F9D9": { - "balance": "0x8ac7230489e80000" - }, - "0x09557960faf7aCa0CeaCA342Eb9AB5C050561027": { - "balance": "0x8ac7230489e80000" - }, - "0x096DD39A7CB53E38f1bAC35215E3e0E744e39fA7": { - "balance": "0xad78ebc5ac6200000" - }, - "0x096Ef4fdC51Bf33B9d8E94E0D145e067D11cACB3": { - "balance": "0x270801d946c940000" - }, - "0x096e54877Caa46aAfe758114F34F4c3d0356E893": { - "balance": "0x259f23eca5b9d00000" - }, - "0x097F4369D956142AB56e2aA60fd4fEcE832E0E19": { - "balance": "0x40846c7d1f0000" - }, - "0x0989b360E0469eff77a39cA0f146cBDa9dd98962": { - "balance": "0x15af1d78b58c400000" - }, - "0x09AEA8bd26926e4FaD00CCe534454d65772600Fe": { - "balance": "0x8ac7230489e80000" - }, - "0x09DA77f8AC9cF590481b02405511785994b8E32A": { - "balance": "0x18c13745c3f503740000" - }, - "0x09Db9ae31a0E8CB1d4762070809dada6Ea7A4785": { - "balance": "0xad78ebc5ac6200000" - }, - "0x09aabe1727A9F3d9A26Cc46410ca22f2b50D034C": { - "balance": "0x1158e460913d00000" - }, - "0x09e31530930F9ad033CcacE722252633df53b328": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0A4Edc5473BfCD61D73cE23F16735332e8E59327": { - "balance": "0x1a055690d9db80000" - }, - "0x0A5542041D46C8694C770Feb228018215db4e821": { - "balance": "0x18fd26fa02e04c8000" - }, - "0x0A9463508770A3cF7fceC9Db782b8a23700c0F6E": { - "balance": "0x4563918244f40000" - }, - "0x0AEe24aF42c4050b43A5e5d26B77f1f37103BE3D": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0B0AB1eF0a7D4EDa773E0B41c577680a0935b186": { - "balance": "0x8ac7230489e80000" - }, - "0x0B165D70825c6cC066f37D777316BF569AC9E429": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0B1c7c46022F062edaEC9aE135A1CDa8403072a3": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0B2DF5cA8Ad7b15A11eEc321AA0c633aC2b3Ba7F": { - "balance": "0x3f514193abb840000" - }, - "0x0B4FFcA799C4ED12e38Db199c0ff9c18321a3867": { - "balance": "0x8ac7230489e80000" - }, - "0x0B94254D1b57b9D72c5d898472D8902a7f6aD225": { - "balance": "0x3f514193abb840000" - }, - "0x0B96F7F717f43E83CbB5513Edf1A960e9f51a59E": { - "balance": "0xc9d6aaf14d48000" - }, - "0x0BA498A81938DE892165B99807e2C003cb4E18F3": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0BAB24FC1deEa9425661aDA3B5e115D5adcD6454": { - "balance": "0x8ac7230489e80000" - }, - "0x0Bc0A633Df0aB7A239862a0Ba1bCC82294c7432D": { - "balance": "0x3f514193abb840000" - }, - "0x0C0176b86c9321EC54565791AC60c06D9f7886ED": { - "balance": "0x22b1c8c1227a00000" - }, - "0x0C2A23AD30d87479B88619bCB8b92450fA9017c4": { - "balance": "0x8ac7230489e80000" - }, - "0x0C3bebEea316A0A329b8D8Dcfa192C600E7b37b9": { - "balance": "0x3f514193abb840000" - }, - "0x0C5D97d4092935670745BaFAABA4EFB80D7dF02a": { - "balance": "0x59717b8681a811c0000" - }, - "0x0CCabcC0cB91f427899126e9966D8eB04e5CfF71": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0CFC2092ef4953dAB9FFf502cE0Aa8863f890fCe": { - "balance": "0x8ac7230489e80000" - }, - "0x0CFc0946B3038E9C0E36e892356d8b6820692054": { - "balance": "0x8ac7230489e80000" - }, - "0x0D46D7A5172e32c32949eBF93bbD619abFb4c2D6": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0D5C69764D9A1818Dc3eCF7EDa9365254539Cf2f": { - "balance": "0x8ac7230489e80000" - }, - "0x0D7342dfEC10Cc933198bBDEE1222a3aC48190F4": { - "balance": "0x55cdb5e35c6e5fa0000" - }, - "0x0DD4945Ce5f0646E69dd217f56a7381Bd2F970C5": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0DDbaf0c7880c21Fc3538a63FD621e1FDaB9cc51": { - "balance": "0x140ec80fa7ee880000" - }, - "0x0E03E898448E8F7fB0b2Eb6991B63e2E9BBD7987": { - "balance": "0xa510ff1b7acdfdc0000" - }, - "0x0E1E12c11C1EcA0b31dcf139d7130ccF36Ceb91e": { - "balance": "0x1d029969fbd067bb70000" - }, - "0x0E3Bbdee1A708F88B4F998dc4FD8AE2b7548C449": { - "balance": "0xb2e3d5186e8a99c0000" - }, - "0x0E4b4aB06B8c1434eeE073233fabEA46dcf86A88": { - "balance": "0x9e0d303ab9269527c000" - }, - "0x0E55ABb7dc58d2ac28EdE80a323EE491a010B05E": { - "balance": "0x3f514193abb840000" - }, - "0x0EBAD17ff03d354a041f9EA40f9bE7054Faa403B": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0EBf7d4021AE455fDf967Cd1aAD35714aBd930f3": { - "balance": "0x4563918244f40000" - }, - "0x0EC6054cfA6730166a9Ecd6Ec58dED0D75B89391": { - "balance": "0x3877aae596c4e01000000" - }, - "0x0EFF3804f3120Bc659f1a43538685d3eFA315268": { - "balance": "0x3f514193abb840000" - }, - "0x0Ea360478cD2DD40c3dB9F81D9BD492c49D9DBA0": { - "balance": "0x15af1d78b58c400000" - }, - "0x0Ec7B8230935e0f95E847732444f6FbD7698F3B4": { - "balance": "0x3f514193abb840000" - }, - "0x0F08f6fcB8DdEEA02DbA03C908e1f0A0CCD1313D": { - "balance": "0x8ac7230489e80000" - }, - "0x0F41c2c60a83C37BC6F0471341a120656993A687": { - "balance": "0x1158e460913d00000" - }, - "0x0F42Ad83798758ed5d6D48ae9036ACc5e16beD1e": { - "balance": "0x967c8fb296e740000" - }, - "0x0F97948687E206d417A310ceEc10BCa32d23c9fb": { - "balance": "0x3f514193abb840000" - }, - "0x0F99B72940c970FF37bCA9D8e29258aBc8f57E0D": { - "balance": "0x8ac7230489e80000" - }, - "0x0FA779Cf4e1fe4fa9EbD07438dD6183006c8743c": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0FCf24efB105DfDF90806dE3c2D5492639bd5123": { - "balance": "0x3f514193abb840000" - }, - "0x0FE45975d92949A07E068522E3fb456917cDCe15": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0FFf4f21a3547D70C566FFF3C2C5bf5C1Ac00AaC": { - "balance": "0x8ac7230489e80000" - }, - "0x0Fc093A0d0012a2fF9E72d6A227942b09081127f": { - "balance": "0x1ad46bb71aa148300000" - }, - "0x0a070b67159dAE24a2F633673690586d3cA17f91": { - "balance": "0x8ac7230489e80000" - }, - "0x0a36aFE2a5325Fd86c614D1db73437D1Dc193B21": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0a40bBedd64Ddd5236F67c4ba6d68Afc33776d92": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0a733C64D44D120fE1be002273b8314566795e3C": { - "balance": "0x8ac7230489e80000" - }, - "0x0ae877fB04a6B3764122A5c402fe0d1cf249168F": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0b13ef9844F9207730a0e97B26800f80B5aFF3cF": { - "balance": "0x3f514193abb840000" - }, - "0x0b8904F7CcC2B3244ebC3b15f60dCC541b130B1a": { - "balance": "0xd02ab486cedc0000" - }, - "0x0b8d212A96AadCA6a59d6b5f89c88e9E8400161b": { - "balance": "0x8ac7230489e80000" - }, - "0x0bCBa31485645411Df35Ef3Fb5fe8DF3eB8f748F": { - "balance": "0x8ac7230489e80000" - }, - "0x0bdC4fb41c9938f3B7e1E7fcca680Ab67b81b69a": { - "balance": "0x4563918244f40000" - }, - "0x0be4EC3D52ff7a6f57620610900c74D2038AfE60": { - "balance": "0xa2a1258676cd4270000" - }, - "0x0bfD9F4D09Ad6f1B3Cb8931283F854cB138f4C71": { - "balance": "0xa2a15d09519be000000" - }, - "0x0c0D02d96Ce90c44A18700959D83486E0Ba32955": { - "balance": "0x5560a5ffdf9dc5c0000" - }, - "0x0c136F5106153df9Ce8823E838818C2F696044C1": { - "balance": "0x5234cc3fd1dd6bc0000" - }, - "0x0c3cDf9F089097ACc289D0ce22e3DDFfEd4D0E76": { - "balance": "0x3f514193abb840000" - }, - "0x0c3dfac526daaEa2bB5c04c9A220a7fb05BE0Bf2": { - "balance": "0x72a6a762d4b4b5c0000" - }, - "0x0c8F6f846Bb880BBeFd5aE7ab7FBF6540596EEC6": { - "balance": "0x1158e460913d00000" - }, - "0x0cB07aed1005686533BAd2cFDba10ADE7b1A020B": { - "balance": "0x55de6a779bbac0000" - }, - "0x0ca41Ca4e16Be670A3Bd0d2FCEfEC66ee5044cF0": { - "balance": "0x1b516c6e25a62850740000" - }, - "0x0cdCeFb2a0792dd5B917F2d2d5CCe4e54e405952": { - "balance": "0x8ac7230489e80000" - }, - "0x0ce3543930D77456F680df142Cc770480FAC4Be5": { - "balance": "0x3f514193abb840000" - }, - "0x0d1abf0d17741Dd824975824DE81D889d56ae2C8": { - "balance": "0xd02ab486cedc0000" - }, - "0x0d37B04a7597D5E448270Edcf166cd152Cf53D39": { - "balance": "0x1f5a5943487feff00000" - }, - "0x0d62D7097eA65EbbbbD8D62Cd54aEC2BEf6a1565": { - "balance": "0x4563918244f40000" - }, - "0x0d8717D516381706c070764d5A3949bB9F916235": { - "balance": "0x55ef523dac9a570000" - }, - "0x0dAbd23d2Efb3F8A3478C9f52EB9be7739D18282": { - "balance": "0x4563918244f40000" - }, - "0x0de9E640cF3A7A2Db90d2C413A51105E1332fF49": { - "balance": "0x1bc16d674ec80000" - }, - "0x0e096FFEB630737FeC7E90317c44867F139781Ea": { - "balance": "0x280c29c4cd6f7adf0000" - }, - "0x0e0e54385dd9b70179BF5b38b551578c47DB6a3A": { - "balance": "0x55ef523dac9a570000" - }, - "0x0e11da02047B831e4996cd37ECC5bd44Df4d1F55": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0e69a80F4FC7f145556721d096B1Ce6CA64646a6": { - "balance": "0x8ac7230489e80000" - }, - "0x0e81A264f490D0BCf21b09C9725542fd27Ae4B4b": { - "balance": "0x8ac7230489e80000" - }, - "0x0e988976556B5281ed7c31BdD0aE7EbfF746F050": { - "balance": "0xc7d713b49da0000" - }, - "0x0eD135099EeE37A87E2585187845F7241E77F1B8": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0eD968C47718153A5c2375A814Baab57819aCeb7": { - "balance": "0x4563918244f40000" - }, - "0x0eE46667C101aACAbfa4184d00cd52DDD4bB0aC5": { - "balance": "0x8ac7230489e80000" - }, - "0x0ee6D17519b17243241F92A7028dcc42435f18A3": { - "balance": "0x515093df72fa1f40000" - }, - "0x0ef41fB82015C887735DB87344B1C34043560825": { - "balance": "0xc3663566a580000" - }, - "0x0f20571233A7B6950c9D2E554bFA6253664740D5": { - "balance": "0x6a94d74f4300000" - }, - "0x0f2b146C7aC5DF1674Ec8e9B7Da3b08F5E995d37": { - "balance": "0x8ac7230489e80000" - }, - "0x0f3B1D25144972a3B979A52B195Fc6a1340B97E3": { - "balance": "0x8ac7230489e80000" - }, - "0x0fA816bcD2D2624633B4c76b7CCFe71616D196fb": { - "balance": "0xad78ebc5ac6200000" - }, - "0x0fCf721391d08978575d9A14199ff45D53c9C03A": { - "balance": "0x1158e460913d00000" - }, - "0x0fD13dFe77FEa773A446b374685B250Cd8F2d6a7": { - "balance": "0xc3663566a580000" - }, - "0x0fF75de01DBf169AE870686Bf09Cf65d0A60321E": { - "balance": "0x8ac7230489e80000" - }, - "0x0fa08acf48C4EEcc8Ce0B363D268905c8B0ddA18": { - "balance": "0x8ac7230489e80000" - }, - "0x0fd03e9035266CaF51B2E0c72060Eeb1B9E8C449": { - "balance": "0x20e6174c0bb18422000" - }, - "0x1026Fe921dFcF11140d608179baA66a6E424Dc65": { - "balance": "0x8ac7230489e80000" - }, - "0x1061C9509b77651AF185b28E61E1892eB9dbeceB": { - "balance": "0x3f514193abb840000" - }, - "0x10B05F41AEF9aC78bE9C7A598163A190748a4D44": { - "balance": "0x1158e460913d00000" - }, - "0x10a196361fAB0dEfFf1EbC489D9E3A9AD36dD67A": { - "balance": "0x1a055690d9db80000" - }, - "0x10a44E587dE4dE5d67D2Eb7EB0b68D1bC8E1CABA": { - "balance": "0x8ac7230489e80000" - }, - "0x1106738bF805783efD278056D4C0Dc3D499535Bc": { - "balance": "0x967c8fb296e740000" - }, - "0x1114560e4cEEe3d69c1024B16d1e239E98a0202D": { - "balance": "0x8ac7230489e80000" - }, - "0x1133847bC5D343e1b455466FA784b4A3b5Bf5861": { - "balance": "0xad78ebc5ac6200000" - }, - "0x114Bf7475c5008be3a00B3fE604720a0671B8fCf": { - "balance": "0xf3f2e99965a44640000" - }, - "0x1151000fb9B1a8416A69F8944b08253008f760EF": { - "balance": "0x4563918244f40000" - }, - "0x11583C8D360ed26Af67375560A0367F0d16E2632": { - "balance": "0xad78ebc5ac6200000" - }, - "0x116B0ccE4DFC7A0eCe5F117A12f694527631d6cA": { - "balance": "0x515093df72fa1f40000" - }, - "0x119f05a89ccf243188235f8DCD4e2b0b2989A42a": { - "balance": "0xad78ebc5ac6200000" - }, - "0x11C631Db5342676Fd2f689f71Fe0Fc021A605213": { - "balance": "0x3f514193abb840000" - }, - "0x11E3F12AA7408d89d981Bf3187223cBae173033e": { - "balance": "0x98f52852ff9c000" - }, - "0x11E8B76308a028944c6c5D392186d5b651C0A363": { - "balance": "0x98771403390f0ccf0000" - }, - "0x11b10F7CAde2A7335eB745442c23Dbe17248E3E7": { - "balance": "0xad78ebc5ac6200000" - }, - "0x11d29042F3af0f4f8b06ffE2bB7438fBfefC60a8": { - "balance": "0x8ac7230489e80000" - }, - "0x11ff1883b3dF072f0e18769b7266FAA330e379e7": { - "balance": "0x5b128fe4e65e7720000" - }, - "0x1222905bc70DC9a3FD088a7df9b08c3d2aaf0203": { - "balance": "0x3f514193abb840000" - }, - "0x12472C3571AC2f631Dd4fAE74a6842dFC4f518ab": { - "balance": "0x70c1cc73b00c80000" - }, - "0x12535d988f6cbe62981cfd068C8b8A357b4463Ac": { - "balance": "0x8ac7230489e80000" - }, - "0x125CC908Fb438e08e40216af6E98247837240067": { - "balance": "0x2116545850052128000000" - }, - "0x1262cCb1a2aBDcCc79B77E87DEC20F7B903d369b": { - "balance": "0x55ef523dac9a570000" - }, - "0x12A0331411dE5e12A440a460085f5D3CB4011054": { - "balance": "0x8ac7230489e80000" - }, - "0x12Ac52d50D3e4a9EB28E4BD9FCe84D133D11CeED": { - "balance": "0x3f514193abb840000" - }, - "0x12Bf3bB9eBb831C6E1D0FAbcea7f3802D7cf5d0e": { - "balance": "0x967c8fb296e740000" - }, - "0x12C5Ee3f854A3BeDb8c73EEcEDe9F326Ed0555af": { - "balance": "0x8ac7230489e80000" - }, - "0x12E4DFDad4CbBEB0dF1a65cf1e5BC3C68BBc1291": { - "balance": "0x4563918244f40000" - }, - "0x12E902cC85075CfAf1a312990E45dC0324e81D0A": { - "balance": "0xc3663566a580000" - }, - "0x12af867e79732b01968FaA351773C41C4141B96E": { - "balance": "0x8ac7230489e80000" - }, - "0x12c6501B9c11fc514001B262942beC8b6bf81976": { - "balance": "0x8ac7230489e80000" - }, - "0x130aB237d38882612cfb4cF0Af2413C8dD414ae0": { - "balance": "0x8ac7230489e80000" - }, - "0x1336294805D1ff091f7df630EB873bA2D324D6f0": { - "balance": "0x9e67b061b4d0db6db" - }, - "0x1339BE0b0b63Eb2C1d76530f1C4F38D46c9aa5dC": { - "balance": "0xad78ebc5ac6200000" - }, - "0x134b8318b938096E9C55dD10540B337E2e1F9177": { - "balance": "0x1bc16d674ec80000" - }, - "0x135E6eB91866e4c3B40939336ea9B2056e2b8988": { - "balance": "0xecca2d59581a40000" - }, - "0x136892ED916EFEc7d43182567655CDD87d676A88": { - "balance": "0xad78ebc5ac6200000" - }, - "0x139C831e1CE3420926e7159b631a3b9e55c861A0": { - "balance": "0x79f8ddcf2c772ee0000" - }, - "0x13B096568ACaD7Ffc72f3c28F445aA46A5ACC2BC": { - "balance": "0xad78ebc5ac6200000" - }, - "0x13e256112A6d491bB36fbdF2e25601F7C23eE34e": { - "balance": "0xad78ebc5ac6200000" - }, - "0x13ee9058B9CA4A1baF03dA167ba8c0622Bb19F7B": { - "balance": "0xad78ebc5ac6200000" - }, - "0x13f418C1e661549346dF35038CeB2714AD292349": { - "balance": "0x55ef523dac9a570000" - }, - "0x14124918E0F66Be7656A00E6b678B96545E599de": { - "balance": "0xad78ebc5ac6200000" - }, - "0x143b8BE87404B4E215f28399162C3b317395bc0D": { - "balance": "0x5147e76d42b180c0000" - }, - "0x146695920531C13BCbaE4b48E55891228bf3De3b": { - "balance": "0xde0b6b3a7640000" - }, - "0x14676Ea9cEF784e9F7C8Ee8e3A586431a52D7ffA": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1473f2A08AF7Cf393d898b4A7C9e0b7a49e45A53": { - "balance": "0xd02ab486cedc0000" - }, - "0x1487C15E3D32d1A19ad94C14343D5CE7CcB0E8D1": { - "balance": "0x3f514193abb840000" - }, - "0x148BfCA14A04db35E68Eb4c99cD42146A94411Ea": { - "balance": "0x3f514193abb840000" - }, - "0x148ca435a1B807C228CFC8f4ba8e8f6770d5C784": { - "balance": "0x8ac7230489e80000" - }, - "0x1493743F4D624Ff7d778613376A360Db2F98A711": { - "balance": "0x188c399a9b581470000" - }, - "0x14Bf117D68aaAACFf32D11305D4468265056D8Ad": { - "balance": "0x3cfc82e37e9a7400000" - }, - "0x14C149836B14993F6FCe4A9A06c56820E1b15cc0": { - "balance": "0x8ac7230489e80000" - }, - "0x14D647C835b950c8Ba64d4a013134CDDCF54fc0D": { - "balance": "0x967c8fb296e740000" - }, - "0x14b889B25e70f60D8Dc0aa5F10c83680add61351": { - "balance": "0xad78ebc5ac6200000" - }, - "0x150B7a982c250370437325C6c7963669D0c03Baa": { - "balance": "0x8ac7230489e80000" - }, - "0x151E71d8c892dda12A34Ba92E323D2060Ff4A9A9": { - "balance": "0x70ef55cb2d89c0200000" - }, - "0x15218c1e31Af8660b735e730Cac312778F63F785": { - "balance": "0x3f514193abb840000" - }, - "0x153c4a441C666dDA7Eb94633F11482be918b7f14": { - "balance": "0x8ac7230489e80000" - }, - "0x154B7F2aA381519B73e3f0a8991Ce96d08C8300f": { - "balance": "0x1158e460913d00000" - }, - "0x154Ff9264Decd84c422F07AB8a54e850a0A28431": { - "balance": "0xca6752a7536848c0000" - }, - "0x156Bf6892310Dc94Df58fF14a63C6d8Ee5F611ad": { - "balance": "0x3f514193abb840000" - }, - "0x156a2A062F1abacf9565C2e014106b14aC36B369": { - "balance": "0x1017f7df96be17800000" - }, - "0x156d776A09Df9de69A980198766B67e70bF056C4": { - "balance": "0x8ac7230489e80000" - }, - "0x1573829A063fB0fB38D0A3694fc698eA7E487b0A": { - "balance": "0x8ac7230489e80000" - }, - "0x1586beb2F1134437B3EA9ADE28894E003156AAc2": { - "balance": "0x8ac7230489e80000" - }, - "0x15BB24064d955c00b35843dB650e65837337C1c5": { - "balance": "0xad78ebc5ac6200000" - }, - "0x15C5E901c570E05BD72a072c905A255E9A8A155c": { - "balance": "0x8ac7230489e80000" - }, - "0x15F42C0E5C9E1A90e2db86a8a612D6A067B44Db7": { - "balance": "0x8ac7230489e80000" - }, - "0x15f4D02171b782e78C3f207a77EcAd3bd017FF15": { - "balance": "0x8ac7230489e80000" - }, - "0x1601499503Ab7beBc53eCe00dbdBB553F2236bb7": { - "balance": "0x3f514193abb840000" - }, - "0x1601e5fe5eFDD25cf1d83D84230539276777468c": { - "balance": "0xecca2d59581a40000" - }, - "0x1610Ff857827FECC6Acc186Ec2a98C289552D31B": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1614C512E28c4cF85b86247a333D0c5f79A38Bad": { - "balance": "0xfe1bcc28e60b851a0000" - }, - "0x163024155f438bcBdE11D0811DFD7bD551BAFEd3": { - "balance": "0x4563918244f40000" - }, - "0x163B1ee88Da521B7FCb5f38D8f48Ee9eb6336eC5": { - "balance": "0x28a77936e92c81c0000" - }, - "0x164CfACCcB3A07E834f2B2ec2696c4c2E26436EA": { - "balance": "0xad78ebc5ac6200000" - }, - "0x164ed8a5cE753f69fD270375B2318C18B17a7526": { - "balance": "0x967c8fb296e740000" - }, - "0x165aD90B59dC006964F9685Fd8cFC4165936909b": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1662801f0B91504Fd3162B68F998A08F550594E6": { - "balance": "0x1158e460913d00000" - }, - "0x167eeEF7528Fa89952Bfe4FCFFc8bf94547139D9": { - "balance": "0x3f514193abb840000" - }, - "0x1682F120F22d994DFDE4D7Cfc63985F062886Aee": { - "balance": "0x3bfbf0a1076972f8000" - }, - "0x16D2BE4942cC6374F47cAf564fDa1e14724C1D48": { - "balance": "0x8ac7230489e80000" - }, - "0x16D6052cDf5fcFEd781bFF5fb1673A0c1E884A11": { - "balance": "0xad78ebc5ac6200000" - }, - "0x16d36F4ceAAA5dF2D12A961fA001040E576a4342": { - "balance": "0x8ac7230489e80000" - }, - "0x170F554e1e71A5390354D5BEE34C0617B741840a": { - "balance": "0xad78ebc5ac6200000" - }, - "0x173FC58Fe51c788aA7ad4172eD69768f2dfab219": { - "balance": "0x3f514193abb840000" - }, - "0x174114F37423fB60f284A20B1f02022880B1AEF9": { - "balance": "0x8ac7230489e80000" - }, - "0x17421CA8928c37f968bC32ac410018fBc791A33E": { - "balance": "0x75e808488a6ce2e0000" - }, - "0x17441041C6bb8b2a9ee24a8bc8007D34cA77ed80": { - "balance": "0x3f514193abb840000" - }, - "0x176074416D113d30F4aEdF01E1c45ad9bBCE16C3": { - "balance": "0x70c1cc73b00c80000" - }, - "0x17618efEa29227BCC2613F247D1a36A39Ace1C6C": { - "balance": "0x8ac7230489e80000" - }, - "0x176246b187A5fb1FB02CF6413a9fE16DA1D9Ec39": { - "balance": "0x1e5b8fa8fe2ac0000" - }, - "0x176D2eF9E13BA3705469bCA287AF7C1Ae14A04ea": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1791845d062E2d6f84079404F9d1b2deb161d220": { - "balance": "0x3f514193abb840000" - }, - "0x1793C707C990cA1FF93Dd6f0B3918C19Df2Ea870": { - "balance": "0x4563918244f40000" - }, - "0x17B612EDd258492E059C2B3fA4fDAfE30bd9Aa29": { - "balance": "0x8ac7230489e80000" - }, - "0x17Cd46D83549fc7bBF0FCC3974E40FB6dea213F5": { - "balance": "0x8ac7230489e80000" - }, - "0x17acbcF374ADAcC212e9A0e25Bd5587c3b038Bc7": { - "balance": "0x8ac7230489e80000" - }, - "0x17e9E1d2DBf426305199c1bEdE4eCc81386DfA6C": { - "balance": "0x4563918244f40000" - }, - "0x180C39e03e3E5acD765BFcfEa50e60eaA76a4734": { - "balance": "0x8ac7230489e80000" - }, - "0x181997098ce0bF0D6ec0B925D520aB27DEA03c3e": { - "balance": "0x1158e460913d00000" - }, - "0x1839183bD03e4897Bb4eBBC37d9f1Fdf59Bb1D23": { - "balance": "0x55ef523dac9a570000" - }, - "0x183f226fFE89fDFAd71a8DF1C89930E124b64321": { - "balance": "0x8ac7230489e80000" - }, - "0x1847652379eaF511629aAD2cAB2fd3B8CE47D3ba": { - "balance": "0x55ef523dac9a570000" - }, - "0x184e4C77b09be5b8D52f3832d20ad1d5C2aaCf8d": { - "balance": "0x8ac7230489e80000" - }, - "0x18545D8d017dBcb76283C96588A8812e3f043BA9": { - "balance": "0x3f514193abb840000" - }, - "0x1857394E1839839078439cbf71a6ACb622B3CCfD": { - "balance": "0x3f514193abb840000" - }, - "0x1878E7b71C9cd2F770D6fB9c6CCcB724D786CA0E": { - "balance": "0x3f870857a3e0e3800000" - }, - "0x18847aF9364f7D18612acA502881472bC0A847da": { - "balance": "0x8ac7230489e80000" - }, - "0x18Ffc7990eEd8b09592fC7a299c725056fd6EB95": { - "balance": "0x3f514193abb840000" - }, - "0x1902EB31c4665f6bf89bE09c874c2F1A2d077177": { - "balance": "0x8ac7230489e80000" - }, - "0x1907D6D61377996705E567509C7ca64527DF090e": { - "balance": "0x967c8fb296e740000" - }, - "0x190BA667A42B9a52ddaD1C3240a74F8D8aEE5AdA": { - "balance": "0xf882ce6be955088000" - }, - "0x190d16E4ab40cdEe07A8aA9E5Af0f4904ef2dd42": { - "balance": "0x8ac7230489e80000" - }, - "0x191D6c2F7EC5a5b1cA8b93d815c9BFBeead494e4": { - "balance": "0x3f514193abb840000" - }, - "0x192c1e55d2a657871E419b676F52fEFDd5E9E4A3": { - "balance": "0x8ac7230489e80000" - }, - "0x1941db35B17deEd868819611E183B381747A7d3d": { - "balance": "0xad78ebc5ac6200000" - }, - "0x194848EaD690A63c2F5e109B320d5c5Efa4a8313": { - "balance": "0x515093df72fa1f40000" - }, - "0x194d1d057A56437E1BbD97D2dDb2c8b32638F45E": { - "balance": "0xad78ebc5ac6200000" - }, - "0x195f3521B4048A106f4e3d45D8A1a50f28b72F06": { - "balance": "0x8ac7230489e80000" - }, - "0x196D7D4058835055D1f62978B9C0129dB76b4d14": { - "balance": "0x152d02c7e14af6800000" - }, - "0x196f73d3f2F75309c5a6987681E181739387E652": { - "balance": "0x11ddfa58a6173ffc00000" - }, - "0x197D65c6e2Ca3B12779808F86b073fbBe3cf1c7a": { - "balance": "0x4563918244f40000" - }, - "0x199fF21A7634440e57633D07004DBaA5ebf9b2EA": { - "balance": "0x55ef523dac9a570000" - }, - "0x19A8978e37cF9A1D8Cc47b60Eb3893B33579FB4F": { - "balance": "0xad78ebc5ac6200000" - }, - "0x19A9E14E033BC8969a484Ae566a0320fc593C00a": { - "balance": "0xa2a23b14bcd65640000" - }, - "0x19Af01E6A65f17bed9Edd61A9eE7A279258328ac": { - "balance": "0x4563918244f40000" - }, - "0x19D434F2a935B32B1247A91A9183bA8D6e7A375B": { - "balance": "0x20afa7d09adcb3500000" - }, - "0x19Dab8885E95D7C66Aa897715a61Ffc4AF5D6353": { - "balance": "0x3f514193abb840000" - }, - "0x19E47E3EEbA5F404b189b444418602be86c1b7dD": { - "balance": "0xad78ebc5ac6200000" - }, - "0x19ddF3657E966A774742DB56E819fE15ddC992bA": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1A01c03E7043E590263B76Cb38aeE2Db3Ea71d0a": { - "balance": "0x4563918244f40000" - }, - "0x1A0329eeD854b7983b0982b86f6A7f986df20B0D": { - "balance": "0x234acacf7e3b0c0a00000" - }, - "0x1A103231FBA8f4BD4762c7210dFa2ffAe68243C7": { - "balance": "0x4563918244f40000" - }, - "0x1A1C844769e6aE20e7F3cDd762F5e8FDe37f9dbd": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1A641d6d856028111B7b26F0A433BeE0039f5150": { - "balance": "0x15af1d78b58c40000" - }, - "0x1A78F34FDE42f839E64C965f21943E9c044096B5": { - "balance": "0x4563918244f40000" - }, - "0x1Ac18049B20a9309BA9Ba5a0A3184C7A437e1Ac6": { - "balance": "0x65a4da25d3016c00000" - }, - "0x1Ac76e7fb96806bba23761f6361eB9Fcc3A20149": { - "balance": "0x7b8c2f29ac2f9b960000" - }, - "0x1Ace0433Df8596dB4236C16ea20794C1AE0c800D": { - "balance": "0x4563918244f40000" - }, - "0x1B01288bf2A3E6A168c47896EA602dABC7e9ba80": { - "balance": "0x4563918244f40000" - }, - "0x1B030579c97fea304504B7A7D72982b5a44aab54": { - "balance": "0x8ac7230489e80000" - }, - "0x1B0Fb3D4228ff375E8fA6ceDDD9940aE3Df996F9": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1B58e27462B54bC08856C24B325F867d54812364": { - "balance": "0x4563918244f40000" - }, - "0x1B6D3d9B0BDc784f203b7465ee4dFda74e38AB32": { - "balance": "0x3f514193abb840000" - }, - "0x1B9f96D4893d85Fc2f536B71321803995bD84A92": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1BA7018C8C4279D6c55C71981e5C8897be4583a2": { - "balance": "0x55ef523dac9a570000" - }, - "0x1BC40197C8917536B34a767D644BCa098eED0def": { - "balance": "0x4563918244f40000" - }, - "0x1BC83e672FD7b386eb4BdF1b1Aa96EeCABdfB2D7": { - "balance": "0x3f514193abb840000" - }, - "0x1BCFb603B6b8b052b1138CBD2034f56eb15069F5": { - "balance": "0x305120c0f200000" - }, - "0x1BEbB4ab3cc099F2fDF95042FaC168d7392b6a34": { - "balance": "0x3f514193abb840000" - }, - "0x1BFC0c5FC8c48D3465217511def1B4234fa7f48D": { - "balance": "0x1158e460913d00000" - }, - "0x1C3748253f0FaDC8e76E550F2F60C0d2C51361Ca": { - "balance": "0x4563918244f40000" - }, - "0x1C5Db9971f18164673205c5393401Ae80a8fbA0e": { - "balance": "0x3f514193abb840000" - }, - "0x1C6dCdbC690a9cad657375DceED22b1a851a1ac4": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1CC930Aa7165d868373d1f4916AE6ffcCD0dAa33": { - "balance": "0x4563918244f40000" - }, - "0x1CE0E0661C4483705E9C1033D4e9eDb8A2a452F6": { - "balance": "0x1969524ae227a9c80000" - }, - "0x1CF37315F4Dcaa1e8807C506038011bad26ca111": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1D12Ab1500648fA1aA3c37B3BB61449c4D8ddF55": { - "balance": "0x1bc16d674ec80000" - }, - "0x1D2098cec2772a0DcfF006C0c7D4A717aB68c18c": { - "balance": "0x4563918244f40000" - }, - "0x1D2963AFa927949D542a34ea86017Bf938c17c8C": { - "balance": "0x1fee59edb" - }, - "0x1D463bf1C07c2Bd54CDF1589fF6Af7035802EdCF": { - "balance": "0x4563918244f40000" - }, - "0x1D488654a83873CaA20D26e8Fe674da0D3210424": { - "balance": "0x4563918244f40000" - }, - "0x1D8376bEc36e80F9DbC601347E265195C7eD9F15": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1D983347F5ecde45C00BAfE9c38a64496d9b596f": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1D9B95d6b46451fe4990aD35B761258a29C73528": { - "balance": "0x8be35a9807f0000" - }, - "0x1D9e96f8443643858e5fa5ccCD245e259E592B34": { - "balance": "0x3f514193abb840000" - }, - "0x1DC2ad73D741Db4c0BE3a01B977597D46DCc6Dbe": { - "balance": "0x967c8fb296e740000" - }, - "0x1Db32d35BBE45765b3A1DD5cf1fAd3f5a7f7f8CD": { - "balance": "0x4563918244f40000" - }, - "0x1Dc4cbF0eA4FF27157c0b937a972c900E6e8f17f": { - "balance": "0x3f514193abb840000" - }, - "0x1Dc65F5792C46A6877A737bD512E95080E7568f4": { - "balance": "0x55ef523dac9a570000" - }, - "0x1Dd0f980F9cf3D302C552f9a49407213F6F501f9": { - "balance": "0x15af1d78b58c400000" - }, - "0x1E0E276fABFbdA69bF2eaCA14614bd14e2C3d7b2": { - "balance": "0x3f514193abb840000" - }, - "0x1E1E0FfEd58De495aa8dEf036500595774A9d7FA": { - "balance": "0x967c8fb296e740000" - }, - "0x1E229FDE47b25fe41c19A5154f0f9beeB58e1120": { - "balance": "0x4563918244f40000" - }, - "0x1E434932d375a7F7190D926226f45769999A0948": { - "balance": "0x32d25f3232cd0e9c0000" - }, - "0x1E653a7636D1846Fb46366EBa05C78f167744980": { - "balance": "0x3f514193abb840000" - }, - "0x1E6F148d09E4F78C53B6D7DbD2d1C5A771d14987": { - "balance": "0x1158e460913d00000" - }, - "0x1E85faAe5d1d62B90cc37FEF22551c139c7b7171": { - "balance": "0x515093df72fa1f40000" - }, - "0x1E97b5Fe9DeF3c767A22Fa0566C4DcA0C4907E45": { - "balance": "0x4563918244f40000" - }, - "0x1EF750856cfEef0e648f7586B301D8b5D498e634": { - "balance": "0x56bc75e2d631000000" - }, - "0x1Eb527ce74340f7BEd0Bd8F29bF9c39864F778F5": { - "balance": "0x1158e460913d00000" - }, - "0x1Ee9ef27FD87Ac9aE00BCfA8610123c6C684CDe1": { - "balance": "0x4563918244f40000" - }, - "0x1F493729d36F0A0CF6c67BE7402ebc15Ed7C048e": { - "balance": "0x4563918244f40000" - }, - "0x1F7736B8DE9C85a4e48f877A40430A5608e4aF7e": { - "balance": "0x3f514193abb840000" - }, - "0x1F9F9F5E49DeAb3299Aca8774D3C4ba98b20ffFD": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1FA0F3cE114AF23f779Dea8FDF8198B71Df0e4DF": { - "balance": "0x55ef523dac9a570000" - }, - "0x1Fe1EBC3eEFF7733Ca809f62A39F4f93B33b2749": { - "balance": "0x1a055690d9db80000" - }, - "0x1FeF4234edE807255FCCcB7d62614DB5c811EaFB": { - "balance": "0x967c8fb296e740000" - }, - "0x1FeaaDF4bD772723CE161A62140366577a70C6f2": { - "balance": "0x515093df72fa1f40000" - }, - "0x1a3B32a8Ca789c29401645dcC04C969CFe982a9c": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1a502D2be4EF99eABB8020208fbff057Dd7C7D6b": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1aA839d91b509Df5B48b50ac0033681eBd1d0248": { - "balance": "0x3f514193abb840000" - }, - "0x1aC90257e21404C4BFa781cb11E3Af07F6E4981b": { - "balance": "0x3f514193abb840000" - }, - "0x1b124A08141366aDA0FdD9D62eeae9B3cE06B6Cf": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1b4E89aE9d93c940F87d5D60e496e9A12c70754c": { - "balance": "0x1a055690d9db80000" - }, - "0x1b698A48101A22De2b6f4240DeA0E5210d6e8070": { - "balance": "0x4563918244f40000" - }, - "0x1b8F9EDb22Fc21F385955D60528a35d6473099A3": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1b9e533A8bC40dd22189476D76E3221669d3Af22": { - "balance": "0x1158e460913d00000" - }, - "0x1bD01af018aD0cd7585bAB8079ccC296aA78be4E": { - "balance": "0x1a055690d9db80000" - }, - "0x1bD38A68Ed912cdba165393d2b15bD148aBbb502": { - "balance": "0x3f514193abb840000" - }, - "0x1bEF95BA4B04d5Ee2160BfaCD91496317E224af1": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1bF8f69fd4471Ca8B01f9eE01a87e3C23fa300B3": { - "balance": "0x55ef523dac9a570000" - }, - "0x1bd1E05801F05aC995b76fBe9450d00014397673": { - "balance": "0x4563918244f40000" - }, - "0x1bd7bE6c4f9E843d2215744B83b911FDfB644bC0": { - "balance": "0x8ac7230489e80000" - }, - "0x1be8893707B0cB0315009e91B99557e6C3AB90e3": { - "balance": "0x3f514193abb840000" - }, - "0x1be9AF560e1121a4B6c46E661C0fd6d38f257d00": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1bf0902146AFb99385b2A82a3c1b30026e588Dba": { - "balance": "0x14542ba12a337c000000" - }, - "0x1bf8d9Af18176d958Be75397442dC739B073dD05": { - "balance": "0x4563918244f40000" - }, - "0x1c06166B65268C35C0C12F6835b769591F979966": { - "balance": "0x4563918244f40000" - }, - "0x1c0e0948589272B9F5f66755Da6596b1ef9F1596": { - "balance": "0x3f514193abb840000" - }, - "0x1c37b3e8fb76A4C4f8D6738CE3649b828314a988": { - "balance": "0x2086ac3510526000000" - }, - "0x1c7E97e3E781ad2fec2e394d7b790c428415d598": { - "balance": "0x15af1d78b58c40000" - }, - "0x1c7fd8B052Eb14033178A33C9Aa243Bc65C88135": { - "balance": "0x3473cb0791df14e240000" - }, - "0x1c97425f16CB33DfA1c0059D36d808f271340f5E": { - "balance": "0x4563918244f40000" - }, - "0x1cFBb8498Cddfa355A46f8fC4C1625F6d1D24f5E": { - "balance": "0x3f514193abb840000" - }, - "0x1d0Fa88E049FFf2e999163fD7C5540a7ACD0c50e": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1d2594A6581Ae5513e4B2a4b8E759d9554B4D7b7": { - "balance": "0xd02ab486cedc0000" - }, - "0x1d332cabD27B8F036A204240a8f1548175C0355d": { - "balance": "0x3f514193abb840000" - }, - "0x1d407738A8a1C1738FFA81F44F2DBCbE87c98794": { - "balance": "0x3f514193abb840000" - }, - "0x1d479Aae019223a12fE255F6eC8BaDB6bF9ce040": { - "balance": "0xc12dc63fa970000" - }, - "0x1dB2b71e070b42b5fe1210daCBBc3482aCCC32FB": { - "balance": "0x8ac7230489e80000" - }, - "0x1dF14a727783189295B86773b6F794b5b3e15770": { - "balance": "0x4563918244f40000" - }, - "0x1da820A6A3d916B5CA93EECC6B73fc57CfC88a87": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1dba29B1c583A035d2640E507EAA89F1Adc13486": { - "balance": "0x967c8fb296e740000" - }, - "0x1dc66f89E47D1D6240162EDdaF36Ab2cba91362E": { - "balance": "0x55ef523dac9a570000" - }, - "0x1e079b4F5D97a83C3b6A005Eb62f6728715bbc46": { - "balance": "0x8ac7230489e80000" - }, - "0x1e5cC40567ddFcCB13AEe3B65a114283A38b75a9": { - "balance": "0x8ac7230489e80000" - }, - "0x1e7432d7815321A8AF4b19188838025791427E3E": { - "balance": "0x3f514193abb840000" - }, - "0x1e7ad2F5Ce7A518f452A510670c108a5f2f7b3d2": { - "balance": "0x4563918244f40000" - }, - "0x1e82a191022C2d5190f2ff443EA4c00203C65Db4": { - "balance": "0x54a452908da83ab80000" - }, - "0x1eC3Eded993926e5768F4c22482D78814d69e55f": { - "balance": "0x3f514193abb840000" - }, - "0x1eF08784Db3354ea9692A1F18572C48c8AdDBC84": { - "balance": "0x3635c9adc5dea00000" - }, - "0x1ea478C2d53917f803Cb9914b0B230aD06800064": { - "balance": "0x14542ba12a337c00000" - }, - "0x1ec8A7BB8F6739904b28fA577Bf0E6d23839aded": { - "balance": "0x4563918244f40000" - }, - "0x1eeB4249d9A838Bc29f970DB0b857935FC107503": { - "balance": "0x4563918244f40000" - }, - "0x1ef0547248297e1a145795b30AEfa55DfF59BcbA": { - "balance": "0x15af1d78b58c400000" - }, - "0x1f0178aC65dc49105cEe34114f1c9b57dd555f6B": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1f4d88bB700bBB7DEE3031fF01f29f59DBB67Bc2": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1f9f22EA934d743bD59ed2f2D16A215b8470178b": { - "balance": "0x4563918244f40000" - }, - "0x1f9f86A478fa041c303297475c1318d98EAeeAE5": { - "balance": "0x108b2a2c28029094000000" - }, - "0x1fB508F4F6Ca01E3062129E021Ca1484ADB660aD": { - "balance": "0x4563918244f40000" - }, - "0x1fDb189D6bBD2EC4e35814ffd72c03Fc15724C2E": { - "balance": "0xad78ebc5ac6200000" - }, - "0x1fb69d712bd03E1606Fa4003f33ab492C8e8d6bA": { - "balance": "0x28a857425466f8000000" - }, - "0x1fd377669548a51eeD8e1400dA0Bc607A37c8fA0": { - "balance": "0x967c8fb296e740000" - }, - "0x1fe9BEc5504c93764C9d62b6876830C65FD91447": { - "balance": "0xdfcf700eea5000" - }, - "0x20131939502855D87328717101d69AF77a00BB01": { - "balance": "0x3f514193abb840000" - }, - "0x202969677e542cCAE5ed20C74D1A642Af02E0BF7": { - "balance": "0xad78ebc5ac6200000" - }, - "0x202AD38D53Ef06eca0F4164884Df6957Ca54eBf4": { - "balance": "0x3f514193abb840000" - }, - "0x20314ab36eB94Baf3e6b684d0bf489ADfB776070": { - "balance": "0x3f514193abb840000" - }, - "0x20333559ccCd1414baeAeC55dF22632229A1AE1A": { - "balance": "0x8ac7230489e80000" - }, - "0x20334a24eC55a57007716A83d6B7BF4cF2Fd8F49": { - "balance": "0x4563918244f40000" - }, - "0x204890aADA5a2F1983A654b66F6b07b29dEeAd9D": { - "balance": "0x5a1300435ff57f70000" - }, - "0x2062f93f996eDdb39E4115b358aBa22d0dc081Db": { - "balance": "0xad78ebc5ac6200000" - }, - "0x2074D2C0d4DAeDCaF1e085E7e81De6c655dCB271": { - "balance": "0xa2a1258676cd4270000" - }, - "0x209Bf02F70e4C2ad6427933D1a4ce6520d50AD36": { - "balance": "0x4563918244f40000" - }, - "0x20C6946A4ad0fEC39501CA2bAf0530664dC0194C": { - "balance": "0xd02ab486cedc0000" - }, - "0x20bB8607D8E4c7e96480a453255BD3D470266592": { - "balance": "0x3f514193abb840000" - }, - "0x20f2b5457770D90428019e7851c405cEE2161C7D": { - "balance": "0x4563918244f40000" - }, - "0x21085709Fd96DE40770C06a9511Cf726bCc9bCC4": { - "balance": "0x967c8fb296e740000" - }, - "0x21183A562384bCf3D7bD32A2C22811C6847621F2": { - "balance": "0x21e19e0c9bab2400000" - }, - "0x2136072B5AB0626eb41e1e1173D1a738B609Ba59": { - "balance": "0x1158e460913d00000" - }, - "0x21607ac3A5a30B7f09aE4A020ce1da2c18252edd": { - "balance": "0x4563918244f40000" - }, - "0x21622b929ff899dffe778AE64873b3Ae35431B64": { - "balance": "0x967c8fb296e740000" - }, - "0x21657fCc5f14e9a6f5E42e0bAB2443A9Ec5D3d6b": { - "balance": "0x4563918244f40000" - }, - "0x216911BbFFaEFfdA49017eA2F7aFe670b016b20b": { - "balance": "0x70c1cc73b00c80000" - }, - "0x2191856c8557e2f420Cde7b7B7B99312eFbB2F0a": { - "balance": "0xad78ebc5ac6200000" - }, - "0x21BF6BAB89b5c6Fb2B0110207747c4b46D7cc789": { - "balance": "0x1a055690d9db80000" - }, - "0x21C0fA7a9Ce6cD723f5Ed1270e6B44A089B874f4": { - "balance": "0xad78ebc5ac6200000" - }, - "0x21E062A233192506F3103caE2387fe83bf064994": { - "balance": "0x3f514193abb840000" - }, - "0x21F50C42b0aefbA67dDF011cc5509068735E5ef1": { - "balance": "0xad78ebc5ac6200000" - }, - "0x21a324b1aF0B9F863B1FAbeC45438d0B29265f19": { - "balance": "0xbcbce7f1b150000" - }, - "0x21b59Ec5b8A456C09147637a29C9F20Bb8133dDF": { - "balance": "0x967c8fb296e740000" - }, - "0x21db3421b51c6a160e8DbB3C7a0801Bc8a7112D4": { - "balance": "0x967c8fb296e740000" - }, - "0x220dfabD68defd0e8ac739Ec1938d064E329cc80": { - "balance": "0xad78ebc5ac6200000" - }, - "0x221CE2ba101B3672A9935ACb44C5F57cE8f8A1FE": { - "balance": "0x4563918244f40000" - }, - "0x22280c08962d12aad63F94987E5B1F0fE7105AC8": { - "balance": "0x967c8fb296e740000" - }, - "0x2231988F4cE39A69270f25604b3AFa1cA532de5d": { - "balance": "0x15af1d78b58c40000" - }, - "0x224cd0acE0e649a976ac91C775034b4c102c2FE1": { - "balance": "0x4563918244f40000" - }, - "0x225Ce622A343f4B5bF44A13732f18A9cE48Ba7aA": { - "balance": "0x3f514193abb840000" - }, - "0x225fd7554626bae657BAd5d6d66c047DBe00716d": { - "balance": "0x4563918244f40000" - }, - "0x2289124B90cd403C5f0C671BDB1226Bcd5145C93": { - "balance": "0x4563918244f40000" - }, - "0x229C040bAE587CeB7d6DFe5d89494527E4F02a2B": { - "balance": "0x3f514193abb840000" - }, - "0x22Ac91957b8f4CFf46d51ad1dB79a7AdaefE9dC8": { - "balance": "0x4563918244f40000" - }, - "0x22Da9BB26C31A36912c4E64eF326fCd618DDDB73": { - "balance": "0x79f8ddcf2c772ee0000" - }, - "0x22EB3784dff55912E6c482f7e0986c7C9339a523": { - "balance": "0x967c8fb296e740000" - }, - "0x22d68cc90bCe30Ac2345DB0AB1D3acbe083d3732": { - "balance": "0x3635c9adc5dea00000" - }, - "0x233231B001F36D3c02789C4e1bEBAb5d8c041730": { - "balance": "0x967c8fb296e740000" - }, - "0x23364E6d46BE3C2341abFD40adb946bAC1997853": { - "balance": "0xad78ebc5ac6200000" - }, - "0x233c7A90a75AFade99e9Ae667696b0E12C181F1E": { - "balance": "0x55ef523dac9a570000" - }, - "0x2343ED5B4DD8729596bFd86b715797711106e53C": { - "balance": "0xad78ebc5ac6200000" - }, - "0x235F8597355A7c726D0064D66cCc8B3ce8aaD18C": { - "balance": "0x4563918244f40000" - }, - "0x2373875a45aAB9E95f2Da292f05646e1F72dCFe2": { - "balance": "0x4563918244f40000" - }, - "0x237EAb0477989F860d4A1B1c5F7f31D0a81B0eBb": { - "balance": "0x3070f5d38330000" - }, - "0x23816621fEb9179E1EC0a2Cc6e37f7e79d34C6E7": { - "balance": "0xad78ebc5ac6200000" - }, - "0x238Dd49D2378d3579bC99a5382dCb50B30B362cD": { - "balance": "0xad78ebc5ac6200000" - }, - "0x238E2a03beeb68232aF5a4FdD08b08B36873e1F4": { - "balance": "0xad78ebc5ac6200000" - }, - "0x238bc19D4752fA49D934736ed61323C807953F6f": { - "balance": "0x4563918244f40000" - }, - "0x23A615cbc9cbdCf7B82b595A526CAEe6feD12401": { - "balance": "0xad78ebc5ac6200000" - }, - "0x23Afb62f6dAa261177BB722CaBdc864acBB12c55": { - "balance": "0x4563918244f40000" - }, - "0x23B9A9391cB5F2011Beb073b71E8db23fF37d5C3": { - "balance": "0xad78ebc5ac6200000" - }, - "0x23C0CA07c1EcE4abd7E7b125979A46D4b7eAaE30": { - "balance": "0x1a055690d9db80000" - }, - "0x23C5A5859D3769007B3e4ca4f15e643143f227e8": { - "balance": "0x1158e460913d00000" - }, - "0x23EAc1d05924badb6b68d10f19c837a41E96FE33": { - "balance": "0x8ac7230489e80000" - }, - "0x23bD3a03194A76A87A5A741B8bfD566f8aADd811": { - "balance": "0x4563918244f40000" - }, - "0x23bbfc89720abEA5efFB5aB68644C51fD357DA34": { - "balance": "0x1a055690d9db80000" - }, - "0x241a91Ab50C9F3d9C37f215b65A7f45f6821ef7d": { - "balance": "0xad78ebc5ac6200000" - }, - "0x24238A69C2fe7dEc2D872699Cf16373E41179b49": { - "balance": "0x4563918244f40000" - }, - "0x244E2166D6eeA0e90792870F1888C0AbB6132a21": { - "balance": "0x3635c9adc5dea00000" - }, - "0x24528b6cd27303b2bBA7Cb1574d48E01530BC692": { - "balance": "0x3635c9adc5dea00000" - }, - "0x24632be28d33c09B2Ca549f07eb3F505D8F3EFCF": { - "balance": "0xad78ebc5ac6200000" - }, - "0x246e1fE10c267d4a0638a6DD267e158bF9121F1a": { - "balance": "0x3cfc82e37e9a74000000" - }, - "0x247624F889A0a0763F13A6b50d11ab5DcCbfCd4d": { - "balance": "0x4563918244f40000" - }, - "0x247bd7Ff3063434511566aD022E31448F38098F2": { - "balance": "0x1bbd8633ec40ebe00000" - }, - "0x2480b1d917B31bE41A79e03A66831aDB73c84038": { - "balance": "0x4563918244f40000" - }, - "0x248583FC32fbC414Bd4709C32CC7Cbb4859D7455": { - "balance": "0x9e67b061b4d0db6db" - }, - "0x2496e346de4A1813e32E239a4ba8B2CfdCDFdbB6": { - "balance": "0xad78ebc5ac6200000" - }, - "0x24A842A8Fd7B8695306a99b600cDb01aE618d57c": { - "balance": "0x4563918244f40000" - }, - "0x24F2758FE7E77452d2a331fb7c4C8DCf45c1Bb80": { - "balance": "0x967c8fb296e740000" - }, - "0x24a45683AdD0d4fd9B12e33ffe398c5666b77786": { - "balance": "0x1158e460913d00000" - }, - "0x24bFd88B262205f99CE73Ed7618988F324A44bAe": { - "balance": "0x19ac8532c2790000" - }, - "0x2505E1a6c6236b006298B3E56C3D57b728dA75Ec": { - "balance": "0x1a055690d9db80000" - }, - "0x250851Cf74aEc31AC78D08E40Ae0A384C65e2184": { - "balance": "0x1158e460913d00000" - }, - "0x2511180970c0968297c4b6b24Bc7375f89caee1D": { - "balance": "0x4563918244f40000" - }, - "0x25382E1ca2fcE2341b2Fd4243f059B3B4E3a10b5": { - "balance": "0x4563918244f40000" - }, - "0x253917BE58b51c27aD49cB98e98C5f74eDFB3b63": { - "balance": "0x19692e124cfbba030000" - }, - "0x255159CD818c5FaD6c2B65Db1AEFE43029332A6E": { - "balance": "0x3f514193abb840000" - }, - "0x255A7d75EA70D92A739FA841aa4945C3b8882E60": { - "balance": "0x4563918244f40000" - }, - "0x255E7fd6125F01152834CE8926c6f12C72e76E5F": { - "balance": "0xad78ebc5ac6200000" - }, - "0x256227555dcD410ca595E16DF7131ED66c869372": { - "balance": "0x3877aae596c4e0100000" - }, - "0x256338c134fBe9f3aB3071394ebA0333b6b036B6": { - "balance": "0xad78ebc5ac6200000" - }, - "0x25716290268BDb9A02f8870Cc3Ac66851894F572": { - "balance": "0x8ac7230489e80000" - }, - "0x25830EA233cFAf4766D1fd294f7791b6e4279Ba5": { - "balance": "0x4563918244f40000" - }, - "0x2593DD10FC01455bb5916451fcb0b2F769c58Bc1": { - "balance": "0xad78ebc5ac6200000" - }, - "0x25961cDd686a1a2B0Ef09655E05a026DE523715b": { - "balance": "0x3635c9adc5dea00000" - }, - "0x259eF31bc1D78AB3fA8508f33271Db3A1f781F32": { - "balance": "0x4563918244f40000" - }, - "0x25BBD7467Ddb5d35946256a59D4BE71251435dB5": { - "balance": "0x15af1d78b58c40000" - }, - "0x25a98FcF8059a11824B5a9aFfE21e67295DeD221": { - "balance": "0x55ef523dac9a570000" - }, - "0x25c641C4E7aFedEE998F29c8BB11914Ca52C3D45": { - "balance": "0x55ef523dac9a570000" - }, - "0x26012A57516AaF169521564D8e24d66FBB9c5AD6": { - "balance": "0x515093df72fa1f40000" - }, - "0x26140b1646Ec52F9223963979e3b9DE5001332dA": { - "balance": "0xad78ebc5ac6200000" - }, - "0x2634Eee00dD65CE437bf4A4FCc580E62a352D808": { - "balance": "0x770d1f87ff955c4c000" - }, - "0x263B347aE2b28651805D225D48a19f6F67C510Dd": { - "balance": "0x4563918244f40000" - }, - "0x265648F9f37C3186BD3f3451bc7cB805b548E63B": { - "balance": "0x55ef523dac9a570000" - }, - "0x2656c49A99056141EAA7435E12A7A235Af3443A8": { - "balance": "0x967c8fb296e740000" - }, - "0x2668bFeF5554871106d48927633AD0cDdF5ced3A": { - "balance": "0xad78ebc5ac6200000" - }, - "0x2688fdf43F609f5F5E834D6eD201aF0d7FCA9F1D": { - "balance": "0x967c8fb296e740000" - }, - "0x26E0bf9B12387e16eA81f0dfFfdD1871FADc3EA8": { - "balance": "0x3f514193abb840000" - }, - "0x26E52E00880f655EBdf1257105C35698bdC7224e": { - "balance": "0x3f514193abb840000" - }, - "0x26F41839b103f778CD879554984Cca85561679ff": { - "balance": "0xad78ebc5ac6200000" - }, - "0x26FCDf88AB495362F447F9E2E6f1Cf7A825b9A09": { - "balance": "0x3691d6afc000" - }, - "0x26a0588987cC2229Df39ecb1FECD5900e391094F": { - "balance": "0x8ac7230489e80000" - }, - "0x26b5fdCBFfa27Ce5fEe2149EB544F3b26B874ded": { - "balance": "0xa2a15d09519be000000" - }, - "0x26f11beD84635fDa25A5f19Ec07959B779919dC0": { - "balance": "0xecca2d59581a40000" - }, - "0x27282C184934FE1b45680Ba9f5712cbCcCD47318": { - "balance": "0x4563918244f40000" - }, - "0x274F3c32C90517975e29Dfc209a23f315c1e5Fc7": { - "balance": "0x20be264cafa010b539b6" - }, - "0x274e4779B5bbf7C09e58a405A46B35188dd7794d": { - "balance": "0x4563918244f40000" - }, - "0x2758783FB177A0F3430187B485C4d462625383B1": { - "balance": "0x8ac7230489e80000" - }, - "0x2760797F81D61D2D77202ED66FEdb51DFD56b997": { - "balance": "0x4563918244f40000" - }, - "0x276933E856754AB6Fe28AAF6EE44c379C33befba": { - "balance": "0x1158e460913d00000" - }, - "0x277B5236D3560d437626EC621c496A2af62bcE48": { - "balance": "0xad78ebc5ac6200000" - }, - "0x277D5E8DED652d4BFec420C7D3CeA55bf9462d9D": { - "balance": "0x3635c9adc5dea00000" - }, - "0x278E7BaFfC2F482B5fD86eC0DE7e1778C5B811D7": { - "balance": "0x4563918244f40000" - }, - "0x27Be440977829CfFB1496F4330A1E8C0b1d9d37e": { - "balance": "0xad78ebc5ac6200000" - }, - "0x27E3730a07edEa4B06971645D60f7891497121b7": { - "balance": "0xad78ebc5ac6200000" - }, - "0x27ae998148805808F4b90519bC888C2cb39Df91c": { - "balance": "0x56afa3a883979570000" - }, - "0x27af8582C5F29e2f819b550d4761EfeC8FE21775": { - "balance": "0x4563918244f40000" - }, - "0x2815e2166cA19b252900A178ECb744965374117d": { - "balance": "0x4563918244f40000" - }, - "0x28213036A4921c6835c0EF82BF425ef545D34F31": { - "balance": "0x3f514193abb840000" - }, - "0x28317a51a70E012aceD506aBA18527B74ac05280": { - "balance": "0x3635c9adc5dea00000" - }, - "0x2838376bdE1f79407bE376de41af5A9595C20Fa2": { - "balance": "0xad78ebc5ac6200000" - }, - "0x283c23a1516866134Fde5Ad01f4d577e63E48Cfc": { - "balance": "0xad78ebc5ac6200000" - }, - "0x284e4fC5aeBfA2a3A841dfA6a989A40D6eda4Bf4": { - "balance": "0xad78ebc5ac6200000" - }, - "0x288558B7CA3eFA0e7C5e3706D1855e23319e51eF": { - "balance": "0x32d25c01130504450000" - }, - "0x288Bbfa207A86D9086BB76296C3F3Eb07D105381": { - "balance": "0x4563918244f40000" - }, - "0x28957bf30D5C4d4c857D879067da8330b84166e9": { - "balance": "0x5304f6f458ac47c0000" - }, - "0x289F43A93fD0e226F5CDe5a5d389f5349d6e0813": { - "balance": "0x821a846b923dcec0000" - }, - "0x28eC536741Da38cb36E743300D5f6AeC64468842": { - "balance": "0x4563918244f40000" - }, - "0x291d89E18B158615aAf52f6A6E6bAfaC7beA1e2C": { - "balance": "0x3f514193abb840000" - }, - "0x292Bf2De41885C33aE5a8E088F4fcbC9938ff44D": { - "balance": "0x4563918244f40000" - }, - "0x29545763BCc782677c90880D412A79e1d3d9B2Bf": { - "balance": "0x4563918244f40000" - }, - "0x2972Bb708f83473f525FC65D81a6697078aa9E67": { - "balance": "0x4563918244f40000" - }, - "0x29B29F5600fF62272E037FFef8b0bacD637000A9": { - "balance": "0xad78ebc5ac6200000" - }, - "0x29C3E1836bE096574d7277267f11BF3A110e36cA": { - "balance": "0x3f514193abb840000" - }, - "0x29C44a91ED9Aca688f0F407eFa95632945E87739": { - "balance": "0x4563918244f40000" - }, - "0x29Db4fB16981a4EB61166018659326968D120883": { - "balance": "0x4563918244f40000" - }, - "0x29ED191612485ED6c73144dD14DBFab5BF96e4Ff": { - "balance": "0x14542ba12a337c00000" - }, - "0x29F6AA1aa25F9DcCf51db71169a9Ed0180Ce48CE": { - "balance": "0xd622c44755b4ccd8000" - }, - "0x29F7b3D477472dC58f2a25DC42FB22676A516fcA": { - "balance": "0x4563918244f40000" - }, - "0x29F800fb147931c60F4766A5d060A79948Fe1773": { - "balance": "0x4563918244f40000" - }, - "0x29b394D7Ea5AfCFA47B5495656AC5cAc81A93070": { - "balance": "0x4563918244f40000" - }, - "0x29c2d909A3B646585E36774e769661adC0eF6477": { - "balance": "0x4563918244f40000" - }, - "0x29d06FAefdF7c772B82Bb0250aD375CE9F90D53c": { - "balance": "0x55ef523dac9a570000" - }, - "0x29d6Af12FFb8aDa9fEA21a953CDfF3d2F1F77874": { - "balance": "0xad78ebc5ac6200000" - }, - "0x29eA0789DAf8F04Bdb4A5D555Eed70A473cBe909": { - "balance": "0x515093df72fa1f40000" - }, - "0x2A01be44b6b3Cab8F6b4Ca594695cFED9958B6bD": { - "balance": "0xb84c09a3b930000" - }, - "0x2A03E7115EFaf12Bb474113BdDEFd8b052F11025": { - "balance": "0x4563918244f40000" - }, - "0x2A055B93FFd425C4410454Ca922d8A6dC6a6a82d": { - "balance": "0x15af1d78b58c400000" - }, - "0x2AD260a74Dd5a113872b82f2064B47EC2796b4b3": { - "balance": "0xad78ebc5ac6200000" - }, - "0x2Aea5f105DE103263a43943a9DA1cF44F929D092": { - "balance": "0x4563918244f40000" - }, - "0x2B00191A182A8aae575733ED1cCBE87840540d93": { - "balance": "0x4563918244f40000" - }, - "0x2B315113446dfE1f149e623797779044C182b22f": { - "balance": "0x4563918244f40000" - }, - "0x2B3BB6Ac1231a9d06a1647F4f56495132140c655": { - "balance": "0x8ac7230489e80000" - }, - "0x2B459B90b4920f87cCB818F933475506CB4aA2ba": { - "balance": "0xa2a1258676cd4270000" - }, - "0x2B5634C42055806a59e9107ED44D43c426E58258": { - "balance": "0xa70a25c3ab3a0c160e43c0" - }, - "0x2B58095C1C1A91127B90Cf02b387E912031F129F": { - "balance": "0x3cfc6e7d0164482d0000" - }, - "0x2B5D570E2a00b242554280eEBa96A6cF1c6Fba52": { - "balance": "0x1158e460913d00000" - }, - "0x2B6988E1B50A7aA205B965bC73cf847dE597098D": { - "balance": "0x1158e460913d00000" - }, - "0x2B8bf2eD7e129EEA7618e75D7454EFe64948c884": { - "balance": "0xad78ebc5ac6200000" - }, - "0x2Baa335e6db2A38940E9D0E04C100f1067b65E39": { - "balance": "0x967c8fb296e740000" - }, - "0x2BeFDcf06fe6106Cab1dE4eA397982AfDA6079e4": { - "balance": "0xaccd4ab22a91d9480000" - }, - "0x2C0d24e5eb35029Fb95AF00C187F4D2222a027b9": { - "balance": "0x15af1d78b58c40000" - }, - "0x2C48350E60aeC12A967a7cF1Ee31E3f2F674f9ca": { - "balance": "0xad78ebc5ac6200000" - }, - "0x2C4Ae27E24B966339d89078c3E511BDD04AC12ee": { - "balance": "0x4563918244f40000" - }, - "0x2C67AE683B0a5318915DC874898cdf9F50EeB896": { - "balance": "0xae3c51fb130780000" - }, - "0x2C68DF48e4C7bC690CBf6a4db8E825334FfE10D0": { - "balance": "0x515093df72fa1f40000" - }, - "0x2C9058ec1fa9A387E31D7f2588D41DA0D8d258b4": { - "balance": "0x4563918244f40000" - }, - "0x2C9aA75080F97bC94728184Ed1F331e41259EFCC": { - "balance": "0x2d79883d2000" - }, - "0x2CC7c607176bFb82FCF1272b29335Cd84aB88a54": { - "balance": "0x3635c9adc5dea00000" - }, - "0x2Cc28E1967350712C446B5F889E4024d2599e186": { - "balance": "0x3f514193abb840000" - }, - "0x2D0929E1ac4E95d46029Cb94fF4cBf59614eDdfB": { - "balance": "0x4563918244f40000" - }, - "0x2D1aed74988B65283B8C0a30Fd1E71e62fb9712c": { - "balance": "0xad78ebc5ac6200000" - }, - "0x2E69330E363Ef618e784481b7b27db29aE933793": { - "balance": "0xf3f1b965e9c761b0000" - }, - "0x2EA203EBE68f375Cb205B9da2A166ACC154cd83b": { - "balance": "0x967c8fb296e740000" - }, - "0x2ED56Cb8026160ce0dF8f2E777b053e615fe37BE": { - "balance": "0x6d117cc29ac0000" - }, - "0x2Eb41d601Fe19B33072f97682Dad9fa91a589Ccc": { - "balance": "0x55ef523dac9a570000" - }, - "0x2Ed645C7B759a1ec173268ae3F5F5ECCD6241464": { - "balance": "0x8ac7230489e80000" - }, - "0x2F33d48e160356eac796992031E70724f67545A9": { - "balance": "0xecca2d59581a40000" - }, - "0x2F66B3B4Dae6Db4439Cb1D8734f6270441e02427": { - "balance": "0x5698eef06670000" - }, - "0x2F6F0e20D1E313a8D693A6Ae2BbD23A4aCF231C7": { - "balance": "0xa2a15d09519be000000" - }, - "0x2F7586603243221031A5fe62B34D4c0dA9C62Cf1": { - "balance": "0x1158e460913d00000" - }, - "0x2F7b642080418cb2192f6d4fF4bb2F2e7810266f": { - "balance": "0xad78ebc5ac6200000" - }, - "0x2FF0260d443E09a5CcB247337C5f4f17ba424a81": { - "balance": "0x1ddbb95dc1545ae30000" - }, - "0x2FFEa403AE09b3e2054FeBdA121110B092308922": { - "balance": "0xc3663566a580000" - }, - "0x2FfFce7aACA02EF7e8A491B88aD01E5bE6bfeeBa": { - "balance": "0x3f514193abb840000" - }, - "0x2a8637124D202263D4b143a05F1343e291076979": { - "balance": "0x3070f5d38330000" - }, - "0x2a87D62C13a7a4DbD2A3a23A6f05207F4d3FCF27": { - "balance": "0x4563918244f40000" - }, - "0x2a88a5810A980eCdBE55f78B5d39DB6ed0Fc2064": { - "balance": "0x967c8fb296e740000" - }, - "0x2af7CB72CBF285c28Ef2f397BB11f46b051fDa12": { - "balance": "0x3f514193abb840000" - }, - "0x2b074966f44827cf41b980Fd2A259537617F7Cc1": { - "balance": "0x4563918244f40000" - }, - "0x2b33937F08727cB1906e9258d1CCDD09Df1C3927": { - "balance": "0x5150ae84a8cdf000000" - }, - "0x2b3E3e0cAc0a2195f134f0c3e25732A824E64D33": { - "balance": "0x1158e460913d00000" - }, - "0x2b4E7362d39Dff56B7761513E23212C7fffEB519": { - "balance": "0x8ac7230489e80000" - }, - "0x2b85F474697f6D5D85D1664BB371E86Cce116AD1": { - "balance": "0xad78ebc5ac6200000" - }, - "0x2bA99AB62211f0C95F51D380e1832E58E4D9a237": { - "balance": "0x1a055690d9db80000" - }, - "0x2bB7381DAe6d1EB2B9765ea85A930CA3DeE85F6A": { - "balance": "0xad78ebc5ac6200000" - }, - "0x2bE00065Ba05354C5c6a5E373302F22373363985": { - "balance": "0x4563918244f40000" - }, - "0x2c1B162d62952fD785d4F9ea348fBDe4a02b82a7": { - "balance": "0xad78ebc5ac6200000" - }, - "0x2c1aC172BAe15654dc612E9D4377bD4CD864c3Ef": { - "balance": "0x3f514193abb840000" - }, - "0x2c567E8F9e9AA6967a4ce8335Cf57dB81aDCFa56": { - "balance": "0x3f514193abb840000" - }, - "0x2c78A323048E6B499Cd40785b8fD9C1c05b1CF16": { - "balance": "0x4563918244f40000" - }, - "0x2c9A301698Fe29a5FaD50E65f4C227E258F2b9d2": { - "balance": "0x967c8fb296e740000" - }, - "0x2cD2B2C81dAD0f33F5e1c299732cC5138Fb45f82": { - "balance": "0x967c8fb296e740000" - }, - "0x2d6C3A9644027D63F56b7c36c44Dc37fFfc696ba": { - "balance": "0x1969368974c05b000000" - }, - "0x2d9751a03162544b18E6BdCb1B2C93fB6aA1284a": { - "balance": "0x3f514193abb840000" - }, - "0x2dCcf319a2f2F6Ea56f2a5310621182b249e99eb": { - "balance": "0xad78ebc5ac6200000" - }, - "0x2dE0b2BefEbD943d892B2D44F293FAF322c24b04": { - "balance": "0x85693c5d102c540000" - }, - "0x2dE3DD34C928C343605B391D49280239f5687a02": { - "balance": "0x3f514193abb840000" - }, - "0x2dc2B93e3b2F2F129C00C41ce2Fa79329A4DC9c7": { - "balance": "0x1158e460913d00000" - }, - "0x2dd6CdC3a096D14EB8F4804201CD2f97A715aB20": { - "balance": "0xa2a15d09519be00000" - }, - "0x2e160E2a84c4a97c28045a7A00679396A53dAD48": { - "balance": "0x15af1d78b58c400000" - }, - "0x2e27317Df68EFBEeC361dDa674501D92925E68ab": { - "balance": "0xad78ebc5ac6200000" - }, - "0x2e65215eD32c5C70394D45b396989212FDe28063": { - "balance": "0xad78ebc5ac6200000" - }, - "0x2e653915A83B943ED9bb2778200ED52edC004d65": { - "balance": "0x3f514193abb840000" - }, - "0x2e7aEB57C3130D0B13f56Aff1dA77605f9a929c7": { - "balance": "0x3f514193abb840000" - }, - "0x2e9C45348A7Baa53c1eC49a48d71f5d857b9B0c3": { - "balance": "0x967c8fb296e740000" - }, - "0x2eB9D259c6E565f80cA4e7b092c79d9489c6883A": { - "balance": "0x2b5e3af16b1880000" - }, - "0x2ea2e4b60447f22645EaA8AA8B0411389ACa23eE": { - "balance": "0x4563918244f40000" - }, - "0x2eaC08b23287C5cFd5155638f6B5a597606e5d94": { - "balance": "0x8ac7230489e80000" - }, - "0x2f6E925Fac0915df9238fcCE8E52b486f5481E90": { - "balance": "0x1dc8a696b61067b8000" - }, - "0x2f6fe36A89C1FC17eaCD0bC62124970F1a7E0fEd": { - "balance": "0x4563918244f40000" - }, - "0x2f89d527e6ddc8999F712d00E313cb83Dd1D543C": { - "balance": "0x2b5e3af16b1880000" - }, - "0x2fF10231c358914A17e22646129F34a105e97854": { - "balance": "0x3f514193abb840000" - }, - "0x2fefe6c8aEe31D426d59BB61aef9D789a5a1d654": { - "balance": "0xad78ebc5ac6200000" - }, - "0x301EdD7f9565e56B7DB0702B8fD39f288f5CABaA": { - "balance": "0x1e5b8fa8fe2ac0000" - }, - "0x301F521aF210E741C2e5559332e66C3562151bE7": { - "balance": "0xad78ebc5ac6200000" - }, - "0x301bf709f7f511fd8dF3A165BF270Dca2FDE8502": { - "balance": "0xad78ebc5ac6200000" - }, - "0x304F00D00EfdfD17eF1028aB541Ea514dBc63eE0": { - "balance": "0xd02ab486cedc0000" - }, - "0x3059880647722Ff3a20866B68C0EaEd6B8CeBd78": { - "balance": "0x8ac7230489e80000" - }, - "0x30668d76b67C36731995aA1efF5D651bBd009014": { - "balance": "0xf3f20b8dfa69d000000" - }, - "0x30930aB4832A7b7c7BA8aE4FeC774E49ce08e1F1": { - "balance": "0xadd055b47afddd6200000" - }, - "0x309d8bB1519ADD75D0b478e9d987C168B5157275": { - "balance": "0x1fc3842bd1f071c00000" - }, - "0x30B6c80dC7996b36560413a3384E71Dab74FCC52": { - "balance": "0xad78ebc5ac6200000" - }, - "0x30E98371c5584Bf5cbFaC6b16a4907F4b4F823A4": { - "balance": "0x4563918244f40000" - }, - "0x30EEdA87Ad4100d2CD3B3E2561a9e599C5D791dE": { - "balance": "0x8ac7230489e80000" - }, - "0x30d0C2C02229aDBe7a49469FB44eD7da836F8Dd4": { - "balance": "0x967c8fb296e740000" - }, - "0x30d1c4F7783d572eaba2B7aAa1a79bD94F60678c": { - "balance": "0x55ef523dac9a570000" - }, - "0x30e92cC36C17a34Ba3be6507F631dDF0290fD375": { - "balance": "0x2116545850052128000000" - }, - "0x30f42658AE236A1c5D14E95B196674Ad833b8815": { - "balance": "0xad78ebc5ac6200000" - }, - "0x30f881c9953b8cC32f90F5f4B30FacF6b1F168cc": { - "balance": "0x1a055690d9db80000" - }, - "0x3100B11093652DBFaE36307503F009766522D4De": { - "balance": "0x55ef523dac9a570000" - }, - "0x3105923C7794AC9Aab5182C91d3a15e847fbb1c3": { - "balance": "0x4563918244f40000" - }, - "0x3140B74c1BeA4FB922FC60234Cf05390405D8F0C": { - "balance": "0x4563918244f40000" - }, - "0x3143F89E0802B393ffC27A09d3B2DFe33841691f": { - "balance": "0x967c8fb296e740000" - }, - "0x31470D0Df2dD93b0533d951875932AfC18B99ebC": { - "balance": "0xf9b9c3a68e01d680000" - }, - "0x314Db1f3b619B7c1C068599CbD0c67878D382337": { - "balance": "0x4563918244f40000" - }, - "0x3156Ad889d26130F0CCB1eBf52470eF2a07B815A": { - "balance": "0x4563918244f40000" - }, - "0x3167e0686cd2F037e44123678bF351f613477Cae": { - "balance": "0x5220be93f9c8fb40000" - }, - "0x317b9aF6a8Ee910E10783316d363C034C7bA9df4": { - "balance": "0x4563918244f40000" - }, - "0x317d96E78293a8559146205c221E37F8FF5034EF": { - "balance": "0x4563918244f40000" - }, - "0x31A85a7F40Ad6f6474618C63619be7f1a41aCCa6": { - "balance": "0x967c8fb296e740000" - }, - "0x31F877D897918c93a84c92d46e30573D7fc1FA35": { - "balance": "0x15af1d78b58c40000" - }, - "0x31a273b447F60B1edf0335215F222C7841E5DFE1": { - "balance": "0x3070f5d38330000" - }, - "0x31a990dab04761a208cc05dd1aDA0bBb5920993C": { - "balance": "0x4563918244f40000" - }, - "0x31c317b53dA0d9F3e207676A356a9fEB4E1548A9": { - "balance": "0x4563918244f40000" - }, - "0x320cA9Ccc3dBb92D578f1be6bF92521e083bb5d1": { - "balance": "0xc3663566a580000" - }, - "0x320d49B575e6e40a5959AB7F39695732117AeF80": { - "balance": "0x853a0d2313c0000" - }, - "0x323A99B06600E8f8658f256d93534f3C88EA7DD2": { - "balance": "0x3f514193abb840000" - }, - "0x324d1c3906bE0e75Fd20D57d04cD11DFbA4503f0": { - "balance": "0x4563918244f40000" - }, - "0x325a2FBA9BA2bC35E35e324d63Fb250C3881055c": { - "balance": "0x8ac7230489e80000" - }, - "0x32604AC5BfE553CF2bc0cca12394ee994220f38D": { - "balance": "0x3f514193abb840000" - }, - "0x3265B7A82Dbb5D71B7a0dfD3E9A099d958C3d4a2": { - "balance": "0x4563918244f40000" - }, - "0x326d9b6e54BdAB12fF492d80667Ad1F005EC5412": { - "balance": "0xad78ebc5ac6200000" - }, - "0x327C6586bD8651B2169413617097fF8845Ec1482": { - "balance": "0x4563918244f40000" - }, - "0x328E6CD45C16f164FE58609e802C88c4D3Cb9360": { - "balance": "0xb2da2713e097c40000" - }, - "0x328F8A1Fa31C249fb3792D1D2F573bA3CE0C6658": { - "balance": "0xd02ab486cedc0000" - }, - "0x3290755745eD61bc8715506Ba32069a385B217cB": { - "balance": "0xd02ab486cedc0000" - }, - "0x3299abD60D2B8335D12aEC5296873E026E988648": { - "balance": "0x2f217e051c2ae77308000" - }, - "0x32AaDAC6E2F61b5c2160e120997974B875e36EdC": { - "balance": "0x40846c7d1f0000" - }, - "0x32B64B8C453CBf2abf8D449E2506dd1EFc9c7028": { - "balance": "0x514fd0793d9379c0000" - }, - "0x32C5Fce06441904478bB05C39656eBadf5a77389": { - "balance": "0xad78ebc5ac6200000" - }, - "0x32C612780c29A4dc247FC3cF362870D83ADC08Df": { - "balance": "0x4563918244f40000" - }, - "0x32DC3a4eD9e073a88ba982cd9F66fc96B69ABC62": { - "balance": "0x3ca83e66b95198c4400" - }, - "0x32F96dEa074d6c8d521D04323a4B73A8aC89ddd7": { - "balance": "0x4563918244f40000" - }, - "0x32FA05D7Ef95546ED98C02BB0c8E5A646012C653": { - "balance": "0x10c368609919745a00000" - }, - "0x32af39A2925452b312477C27cF750FCad9Def069": { - "balance": "0x3f514193abb840000" - }, - "0x32b06bd0523b7EE640993bfA9a1a064Fe351255a": { - "balance": "0x4563918244f40000" - }, - "0x32d5bF8Abd11aDe720a9CCEC7F6a1B857a658879": { - "balance": "0x118a711ebf9a16a96000" - }, - "0x32e1e501FC48B1FA316E28cc79467bAd3B63c411": { - "balance": "0x9e67b061b4d0db6db" - }, - "0x32e8BcC6e7993f3cfbe8454ea2edc03D157BC0e0": { - "balance": "0x3f514193abb840000" - }, - "0x32eB5D5149400391C0ea05CfB9992ae066029d56": { - "balance": "0x15af1d78b58c40000" - }, - "0x3305ddF3bAE1C7EAE2D78D92edBe52e82455991D": { - "balance": "0xad78ebc5ac6200000" - }, - "0x33073B22e892cd3F2C331B80C490b9b28fe37A48": { - "balance": "0x1969368974c05b000000" - }, - "0x330fa0aB79Cd87a5E89c11098ccEBd31b9DC8b59": { - "balance": "0x4563918244f40000" - }, - "0x331A8236A75BfeB5Bb350DDcAA36E939A4dA9A3B": { - "balance": "0x8ac7230489e80000" - }, - "0x332e2fE1dD6ce9b2b53d84b79B49642544A4C8eC": { - "balance": "0x707552c7725d1cf0000" - }, - "0x333c68F000Fa4AE9dA5bDB260477aD60b2B8aA34": { - "balance": "0x3f514193abb840000" - }, - "0x3355A8AB0C6fa955753627f1848DaA61d2D1386d": { - "balance": "0xbe951906eba2aa800000" - }, - "0x335bD4BB55eC004498060ebC154b0230C62A895b": { - "balance": "0x4e1003b28d9280000" - }, - "0x3386977D14B177cF4f711F08851ac8252DC9b007": { - "balance": "0x1158e460913d00000" - }, - "0x3398b90388B9A0B6769f3B61E3530c94450ce07d": { - "balance": "0x4563918244f40000" - }, - "0x339F404e55BD0a38093A5f226B0C1A364283515F": { - "balance": "0x925dd6153c1906a0000" - }, - "0x33B450dA27481288caaF56a4CeaaD9F2AC6F10Ec": { - "balance": "0x8ac7230489e80000" - }, - "0x33C31fC36Cd14c7df33DD2A6217B92e77505E28A": { - "balance": "0x4563918244f40000" - }, - "0x33Ebb60176da6c50F67b54cf56Ab661E6D41527f": { - "balance": "0x6f05b59d3b20000" - }, - "0x33b4B71943cBBA687C36Ec28A7E22D3EFBB47593": { - "balance": "0x8f1d3895bbc77f0000" - }, - "0x33bC9091aa84aCce681357DBCdE9C5dcf34fc70d": { - "balance": "0x5f68e8131ecf80000" - }, - "0x33ca552A84b974a1a480961992Fa476E83a643a7": { - "balance": "0x4563918244f40000" - }, - "0x34128B57A0dB91F2a75F2D146f9d9eFb21246b95": { - "balance": "0x1158e460913d00000" - }, - "0x34226Ca0F9CDf5B043eD9f4cd1ac958175621e14": { - "balance": "0x967c8fb296e740000" - }, - "0x34340bA66E02416166C3EAeB419A3621C3Db750D": { - "balance": "0x927c0" - }, - "0x344AEE1363cf704c097f78F8eD4aF417c84d8b05": { - "balance": "0x4563918244f40000" - }, - "0x347De1148622265E771A5d5A16FB05934d1ce60D": { - "balance": "0x12d653f630968a4900000" - }, - "0x348E6dB568Ac9DaE8CC486b9Fe937a47fb4Cccb9": { - "balance": "0x3f514193abb840000" - }, - "0x34956cb32E94f5c9149EC401402e660BD13C57F1": { - "balance": "0x4563918244f40000" - }, - "0x34DA610E829C917ad2B75091dE0b32f719d91B32": { - "balance": "0xad78ebc5ac6200000" - }, - "0x34E3aCf4324aeC7A9d94E374117C9118f7Ab5080": { - "balance": "0x3f514193abb840000" - }, - "0x34b1526C59a8A6D00357c10C172c4B09FE2356F2": { - "balance": "0x3f514193abb840000" - }, - "0x34b41cA6B52c7bEb95009442036B090B3F170B26": { - "balance": "0xad78ebc5ac6200000" - }, - "0x34cf1F76958B77f827d50581c400f21fbAb61Ccc": { - "balance": "0x1864231c610351c0000" - }, - "0x34f5bD4678b30d83A78F01c34F354F992ADFf2B1": { - "balance": "0x4563918244f40000" - }, - "0x34fAc153eA6eEE0381010673b472143CB6BF9cd6": { - "balance": "0x515093df72fa1f40000" - }, - "0x3507E0ef48922e38530a0a0166b71737e7B31f39": { - "balance": "0x5220be93f9c8fb40000" - }, - "0x3513CA3f39fbdb1502BcfC741b6A5f59e4C024cC": { - "balance": "0x4563918244f40000" - }, - "0x3515c1F9832f8505885ac2Aa11c4AFA11C770Ee7": { - "balance": "0x515093df72fa1f40000" - }, - "0x35353D1eA22F6d1dB8aa60eDe0fC49eCF2AD79b2": { - "balance": "0x4563918244f40000" - }, - "0x3558684534d4A14CB447Dbd8aEe465A12f922FFd": { - "balance": "0x3f514193abb840000" - }, - "0x35664C41e879C8d256F415B4a986B52A28C99A75": { - "balance": "0xad78ebc5ac6200000" - }, - "0x3574f379bb6604f0b663b1C17F93977150363Fe2": { - "balance": "0x4563918244f40000" - }, - "0x3575a830f0B9E9a5C1b9f40AA1D6d5C0EF4F8e10": { - "balance": "0x4563918244f40000" - }, - "0x35C60d4370D64A1B5D348226Cc8B35Fa6C5D6e90": { - "balance": "0xa371503afd9c1e70000" - }, - "0x35dA0B9A98F35Bc39120986455F8C9D0fE9303B0": { - "balance": "0xad78ebc5ac6200000" - }, - "0x3603aF6656bB7EDE331e6285e6a90F74b95b4c51": { - "balance": "0x4563918244f40000" - }, - "0x3613cCa5bcC2d07533CBd67513E3143bE92Af7a0": { - "balance": "0x4563918244f40000" - }, - "0x3633ab5aD5F21A62b6b4CfA9B4EaC5F2d4c86FCf": { - "balance": "0xad78ebc5ac6200000" - }, - "0x364db2C524687F098D768B3AD0309e127E83C798": { - "balance": "0xc3663566a580000" - }, - "0x364dcC4365637950F4aA9F8Efe5527e5c7d8fA10": { - "balance": "0x3f514193abb840000" - }, - "0x36502e9D6DE6A9355B24A5000216acf7d8daBB31": { - "balance": "0x55ef523dac9a570000" - }, - "0x36528DF2D2d0D41cE29151a95B914DeE2ab54a39": { - "balance": "0x967c8fb296e740000" - }, - "0x366D2079Bb4F79FC4F260CACe0f2b99EE26b74BC": { - "balance": "0x4563918244f40000" - }, - "0x36909D9fa1016A5a87A1F1F4DDD7e811727E51AB": { - "balance": "0xad78ebc5ac6200000" - }, - "0x369dA92dFC5057898F71F12D4C4E34F032605966": { - "balance": "0x4563918244f40000" - }, - "0x36De999C394b2c33dD57A0a038BB4A5B3169DEBC": { - "balance": "0x4563918244f40000" - }, - "0x36E4FAB07c315aB7Db5e586dFd5759f9dE0d443E": { - "balance": "0x55ef523dac9a570000" - }, - "0x36E90a8Ac5C6CeFe7967f4c8C4484FCBBaF7c6a0": { - "balance": "0x1a055690d9db80000" - }, - "0x36Ff8323Bd00f2047706c4204E3a0C2e388FA35b": { - "balance": "0xad78ebc5ac6200000" - }, - "0x36a2688e8e60c13b4A124766E598b6169B0e9642": { - "balance": "0x515093df72fa1f40000" - }, - "0x36a4BB52B5a728932B93eb41c385e998B03d4b4b": { - "balance": "0xc3663566a580000" - }, - "0x36b199901053c3f20D8AFF7fD10cb23246d17C1c": { - "balance": "0x5561672da5dd6f30000" - }, - "0x36c828d9c69f607DBE6E0524a4f550F738f28ec0": { - "balance": "0x4563918244f40000" - }, - "0x3703cE3Bc646fB32F03751532E9e4C21A247A518": { - "balance": "0x178153506436c1d640000" - }, - "0x370654a361e48eCF188450fA10D1907f2dd993dd": { - "balance": "0x3f514193abb840000" - }, - "0x372A9b5F66d9378B3Ee27eB7f3b2F283F5E84e21": { - "balance": "0x4563918244f40000" - }, - "0x3762b48193C363048aFD3314Ec9E3f3BAC94046A": { - "balance": "0x967c8fb296e740000" - }, - "0x37797a9bC701c0CcDe58Dd3a7Dc5b43524033204": { - "balance": "0x8ac7230489e80000" - }, - "0x379fc5BefAcdcE20C7d837555C0B51d5D3CFdc44": { - "balance": "0x1158e460913d00000" - }, - "0x37A4c4E41b2140698555a6dF039680D38755fB2E": { - "balance": "0x3f514193abb840000" - }, - "0x37Cee986e4bDfF434Ca06fE56224193EEfF2E1ac": { - "balance": "0x8ac7230489e80000" - }, - "0x37D7ca064363d8383Aa7d5d22Fd85905e6340C8c": { - "balance": "0xb076a38662ece89400000" - }, - "0x37Ef26feb33617ccE74B3a31d9F857577Bb6CEab": { - "balance": "0xad78ebc5ac6200000" - }, - "0x37b40f0BAcb0cb22EEa73487c5e15D99a788d8C4": { - "balance": "0x967c8fb296e740000" - }, - "0x37d08CA508fFE7e97fD125c34955824E2c21B85A": { - "balance": "0x261cd91d8e124180000" - }, - "0x37f7Ff1864f5D5CBa2b63592656049F2D7D06FB4": { - "balance": "0x79f8ddcf2c772ee0000" - }, - "0x3803FB582D6528f579204c8fd6533fB7e6403071": { - "balance": "0x4563918244f40000" - }, - "0x380FB937334C1B6FF015223F07cf4fDAA0d08FCF": { - "balance": "0x3f514193abb840000" - }, - "0x38224068C3Acc2178a356754FFAA157033a6E88a": { - "balance": "0x4563918244f40000" - }, - "0x3823541C7599542e8C65E70c6ca30bB4c0bb4502": { - "balance": "0xa2a1258676cd4270000" - }, - "0x3828FB5be73C47E8418e0707eb0d33FDF1669bF4": { - "balance": "0x3f514193abb840000" - }, - "0x38295902971735FF36E3b2BB13266959f2D08509": { - "balance": "0xad78ebc5ac6200000" - }, - "0x3832DD4e35F8A04bD5401dC893B9610575aFB12e": { - "balance": "0xad78ebc5ac6200000" - }, - "0x38410Ef0FD779e995aC70147804e1226A6fa4416": { - "balance": "0x456391829e5c2f00" - }, - "0x384B5CbAC484064A50e692Bb33ada2a074E94675": { - "balance": "0x4563918244f40000" - }, - "0x385aFc90Ba449AFC9f91D65FA00B1dA908cC5221": { - "balance": "0x69b58c25829bf700000" - }, - "0x38817BC0A838d702D6E4C7252d911f2734169cb9": { - "balance": "0x3f514193abb840000" - }, - "0x388C097a9918a818Ac8E9116bE5d0d3b952599b7": { - "balance": "0xad78ebc5ac6200000" - }, - "0x38B145ba9cEf0483Ae1B5eEe758a1bE22E555dA5": { - "balance": "0x4563918244f40000" - }, - "0x38E476696B12c87a0977238dC8A8dFC2875f1B46": { - "balance": "0x1a055690d9db80000" - }, - "0x38ae6982a9DE7D4B0D46d22c7BF0414Ac5EE3460": { - "balance": "0x4563918244f40000" - }, - "0x38b462b18702B511974c1d927Fd0f31227316419": { - "balance": "0x3f514193abb840000" - }, - "0x3907a1bAF186712cC0909eFc669B4a52619ef052": { - "balance": "0x967c8fb296e740000" - }, - "0x390eF3dB9e22afa268800b883308307e43d8A856": { - "balance": "0x28a77936e92c81c0000" - }, - "0x39308E56330E175D29D31F52032Ac63cd52864aC": { - "balance": "0x4563918244f40000" - }, - "0x3937997270d88B522362C7E836A68c81B3631685": { - "balance": "0x36bd18a31d7eaf0000" - }, - "0x3953785f68D01996969e6B25E574bFA50F915121": { - "balance": "0x145424d455cc180f0000" - }, - "0x396c3a5AaF4d7BF6bC8E9f4Ea779bF69d0A473a5": { - "balance": "0xbb206387aeb38380000" - }, - "0x3974BABb4ABe8Ad477E3591D50DA57a813eE106F": { - "balance": "0x4563918244f40000" - }, - "0x3976b711394981C976931AbF34A0d93AEDC00a70": { - "balance": "0x65a4b802260a088a0000" - }, - "0x397dDd2C8CF9c2331982B14c129346b3fAEd10Dd": { - "balance": "0x4563918244f40000" - }, - "0x398646E26814c67eDD6F49dA25C121be0cf96c40": { - "balance": "0x515093df72fa1f40000" - }, - "0x398c491A8b4e4CC9D5b90A56ae42747493353E1b": { - "balance": "0x60c6e0fa0760770000" - }, - "0x399B27D3D722D2EBEc37CFCC57E6668849Da2be1": { - "balance": "0xad78ebc5ac6200000" - }, - "0x39FD82827c3CDAb0307D36728a4a420433c9f999": { - "balance": "0x3f514193abb840000" - }, - "0x39ac2ABBb719775b0E6E64117C838cadA9e2b795": { - "balance": "0x796e3ea3f8ab00000" - }, - "0x3A15bbdD24f1e766aeee3a3A85a3b8CA46605462": { - "balance": "0x4563918244f40000" - }, - "0x3A2A76f3b55276Fb2680998367aC1c83A0e6852A": { - "balance": "0x967c8fb296e740000" - }, - "0x3A2ebD6889ADFac37BB3deC4688222c1913C2471": { - "balance": "0x3f514193abb840000" - }, - "0x3A5CBa18165bFa05Fb1dD8118C5F5fA6A99a6e3B": { - "balance": "0x515093df72fa1f40000" - }, - "0x3AA1f4FB314e2316478f16d653f2b089cA7D530d": { - "balance": "0x4563918244f40000" - }, - "0x3Adf142f6538Db7DBE1C207E59E34eAC1fa34bcD": { - "balance": "0x4563918244f40000" - }, - "0x3Af8e3db004C3a2c5fDd86A3a8d7224ef223DAD5": { - "balance": "0x4563918244f40000" - }, - "0x3B0dBEDf17Bb10Ed0f5D231862009E34f0eb0387": { - "balance": "0x677f8b130c4022c000" - }, - "0x3B12C5062758436b0DD3a19762fC0fa8e5863AED": { - "balance": "0x4563918244f40000" - }, - "0x3B62597cf897726A73B3Bf33d1Cd02b0Ba7E6B39": { - "balance": "0x4563918244f40000" - }, - "0x3BEbE554A4CAf742ed65506307343999f734DbDE": { - "balance": "0x4563918244f40000" - }, - "0x3Bc776363e799333BE931efcFa54Db1704654946": { - "balance": "0xad78ebc5ac6200000" - }, - "0x3Be988F0FDe6f1c9eD82AE70be1b1dCbEC7864D6": { - "balance": "0xad78ebc5ac6200000" - }, - "0x3BfdfA848cdB23aD7818e1460bf9FfbB8b3fFFFB": { - "balance": "0x1158e460913d00000" - }, - "0x3C0c131ec82dB76A212CF96B7adFA95CA41FD37d": { - "balance": "0x38e711c032e993cc00000" - }, - "0x3C113F6F0b6182f781C81B7304fFa95CD101585D": { - "balance": "0x4563918244f40000" - }, - "0x3C2beC93322DcFBC504115db5fbdC610161043E6": { - "balance": "0x3f514193abb840000" - }, - "0x3C3710c4d8bDf64fe85148BEe887b36A38e0267f": { - "balance": "0x840e1e1cd5c7dec0000" - }, - "0x3C377FE2eB35D045502ECf3daF2ca91B7dDC7539": { - "balance": "0xad78ebc5ac6200000" - }, - "0x3C3FB672FD40F9538d1EbdFF6a33Afd541a5cB1E": { - "balance": "0x967c8fb296e740000" - }, - "0x3C4af13458c3b43A8970daccBF5957B299064ee2": { - "balance": "0x8ac7230489e80000" - }, - "0x3C50A99BACf3d460793476F9836D7D216b21659e": { - "balance": "0x3f514193abb840000" - }, - "0x3C6295814503f1E14ae9307744fa574D699a1768": { - "balance": "0x1c72bfa5c047cebc0000" - }, - "0x3C691D49D8C3E35B0887851C84892AD31899f0c4": { - "balance": "0xad78ebc5ac6200000" - }, - "0x3CAE3f235B3F246dAdA8b5e16EFF60ed15bd6Df2": { - "balance": "0x1158e460913d00000" - }, - "0x3CF974B7c14308d5B63641f65d8995ffa8840529": { - "balance": "0x22b1c8c1227a00000" - }, - "0x3CbDE0d307E13E713378b2b114cC90798463CD2A": { - "balance": "0x4273a90a9524a63f60000" - }, - "0x3Cfd9BD163F917B27691aC525BF9b5261a8c8AB6": { - "balance": "0xad78ebc5ac6200000" - }, - "0x3D76D07bF5eCda2f23c9A84971D8c92fD6B33920": { - "balance": "0x52358fa607441140000" - }, - "0x3D867abE8538D74981Ba1A153aF31D4a2Af0B443": { - "balance": "0x3635c9adc5dea00000" - }, - "0x3D966D1A2b21d831D1c98213934694781A7caa9A": { - "balance": "0x5816993a00603230000" - }, - "0x3DBfEdD86bab4A1eE006311Be124D9Eb7d276E7F": { - "balance": "0x4563918244f40000" - }, - "0x3Dc0ee476F79D6cD46Df292c4D8B3Ce090712a80": { - "balance": "0x3f514193abb840000" - }, - "0x3DcB506527d60e60dd3679c7d00896cf5af937AD": { - "balance": "0x6ccd46763f10000" - }, - "0x3De1E2bd2f8571213EBba5D165ab4E5965AD63AC": { - "balance": "0x4563918244f40000" - }, - "0x3E4536BB5a6B94e0395B946C1D336045B1353BeE": { - "balance": "0x55ef523dac9a570000" - }, - "0x3E9C5aed5D2be7d926e9a3f2fa2Bc8a57e612F58": { - "balance": "0xa2a15d09519be000000" - }, - "0x3EA899116D2c938D75dDbFdB69b0b188927663cE": { - "balance": "0x3f514193abb840000" - }, - "0x3EDdb2B1ac18585e3bAe8C9F46Ca9f5706782238": { - "balance": "0x4563918244f40000" - }, - "0x3Ea043730728b8Eb029EB7f293AC3A43550617B9": { - "balance": "0x3f514193abb840000" - }, - "0x3EaeA6F116b4b5f2B3d50d5A6b19b4eCf107bc11": { - "balance": "0x4563918244f40000" - }, - "0x3F27C7C8f5791f3099DC41451471CBe909a18806": { - "balance": "0x12a6fa94d6021d0940000" - }, - "0x3F51b9b24CD79eFE292402F35ce4C79761422ef6": { - "balance": "0x8ac7230489e80000" - }, - "0x3F93867785ef2153314416506480CB319CC750E9": { - "balance": "0x55ef523dac9a570000" - }, - "0x3FB032551B93a6eBE9DCb3646AEfF18C16d847d7": { - "balance": "0x2116545850052128000000" - }, - "0x3FC2bFfEa0520FB7Db6be202891C8436D2BD558D": { - "balance": "0x3f514193abb840000" - }, - "0x3FDB9790940e1aA4f6965BA2C37a3b3296E22348": { - "balance": "0x8ac7230489e80000" - }, - "0x3FEE524646E0F58fE179B803086C61CCe4fb7b69": { - "balance": "0x4563918244f40000" - }, - "0x3FF81CD5685b53E07a03d704875bC1a21Bd20e68": { - "balance": "0xad78ebc5ac6200000" - }, - "0x3FcDC4aC9DB774c1C92C22112162288AED8be3b1": { - "balance": "0xecca2d59581a40000" - }, - "0x3Ff09B861DC0ebE522B4d3722274135F915078E3": { - "balance": "0x8ac7230489e80000" - }, - "0x3a0b820b92BD7605E58d415B733Ee8997079E5F8": { - "balance": "0x15af1d78b58c400000" - }, - "0x3a11Eb653bfFE05005A8581c49d6aaA3C932F276": { - "balance": "0x4563918244f40000" - }, - "0x3a729c905e93a73Be8AE75D9003FA91eaF371681": { - "balance": "0x3f514193abb840000" - }, - "0x3a906129E9d43cE89f95C20d317d572d881540de": { - "balance": "0x4563918244f40000" - }, - "0x3aAEBf899ab8EDa169bd2e9e07873bf67F159DA1": { - "balance": "0x4563918244f40000" - }, - "0x3af0EaF01290Ec26d1D16AC98023b0be6E8b9222": { - "balance": "0x967c8fb296e740000" - }, - "0x3b19A16F26a7aD5846A33EC17e31e44Be38476E0": { - "balance": "0xc3663566a580000" - }, - "0x3b52e385315021cE58CD0c9808d1AbBdd40BBC8c": { - "balance": "0xa8c0ff92d4c0000" - }, - "0x3b82233A4e126b9d3ca426c82BC32A448EbDef7A": { - "balance": "0x4563918244f40000" - }, - "0x3b8e10b84ba379CB81f95117EFFBfc3f86448554": { - "balance": "0x55ef523dac9a570000" - }, - "0x3bb1AD90c6db74471eE5bd538D4d63a541a7BFaF": { - "balance": "0xad78ebc5ac6200000" - }, - "0x3be495d08464360E1511D2a5f1c54149AC7e06De": { - "balance": "0xad78ebc5ac6200000" - }, - "0x3c0B17799537F1467636A74ED1d3F10A610c70b3": { - "balance": "0xad78ebc5ac6200000" - }, - "0x3c27908d7CDe9612825933261C0831e655462fbe": { - "balance": "0xad78ebc5ac6200000" - }, - "0x3c3072ce3c16D9f4FD4Ee8FcCD3E8852eE81E25D": { - "balance": "0x4563918244f40000" - }, - "0x3c4eEa3CE59f8566fbaB78599B5879f1908a1215": { - "balance": "0x4563918244f40000" - }, - "0x3ca6e03AC02B4Ca77C6754ffCBAc1A9a07D98435": { - "balance": "0x11c37937e080000" - }, - "0x3cebB663C64abe7575392c08045c78D5648Cb77A": { - "balance": "0x9e67b061b4d0db6db" - }, - "0x3d7ec0276619AB3D44B8758bec2652a288Fb6eFe": { - "balance": "0x60c6e0fa0760770000" - }, - "0x3dA2BcE910F5cE414A8DF8c639462d7f233527cc": { - "balance": "0x4563918244f40000" - }, - "0x3dDEBADed3619823F7eE82b3524507eec19e2228": { - "balance": "0x1158e460913d00000" - }, - "0x3dcB6D9EC56178aef64F56426B1b3C404Fc525E4": { - "balance": "0x8ac7230489e80000" - }, - "0x3deccC5391A83BB91dC519CE4B6af0915af2FC34": { - "balance": "0xad78ebc5ac6200000" - }, - "0x3e0308C6F474Efc9e8BD001a12F5E5C83146AF0D": { - "balance": "0x967c8fb296e740000" - }, - "0x3e5BDd1e9DB35e5DEc086aCFa059FdA8407dA2e1": { - "balance": "0x4563918244f40000" - }, - "0x3e647199983BD25Bd7daC844f5ef2E304EFfF489": { - "balance": "0x15af1d78b58c400000" - }, - "0x3e666be5da04B6cb0456870C233BF847fBDb582B": { - "balance": "0x3f514193abb840000" - }, - "0x3e6C2D87447Be0AC22D9421c7aaab5b0f8EaCC73": { - "balance": "0x3f514193abb840000" - }, - "0x3e7E65Dbdf018547c3C13b75B7F241a8676C02b7": { - "balance": "0x3635c9adc5dea00000" - }, - "0x3e80bE148954019067Cb420d442dE5B1059C6ddc": { - "balance": "0x8ac7230489e80000" - }, - "0x3ed09F2137d9eF8253e7E70fce775980304E3A8E": { - "balance": "0xad78ebc5ac6200000" - }, - "0x3f1C54D2C2b01e740A793115D1adB32C45A87942": { - "balance": "0x3f514193abb840000" - }, - "0x3f30b10A73b5895DAA4723B5f66704373D56b144": { - "balance": "0xad78ebc5ac6200000" - }, - "0x3f329bf6Da22797F953F951A4da3243E1e9e95B6": { - "balance": "0x4563918244f40000" - }, - "0x4003252381B4CdA816DeFbC7ED1C28770A876C0B": { - "balance": "0x3f514193abb840000" - }, - "0x400757D790f9B891C4412032D6CB291c248AD1B8": { - "balance": "0x4563918244f40000" - }, - "0x4013E083d8A808E1e53c3Fb22a0D53085282DdEF": { - "balance": "0x8ac7230489e80000" - }, - "0x401cf2F1aE54eeAec7767590BE269601923dbA39": { - "balance": "0x4f73b64e987c000" - }, - "0x403206dF5c0fbB96D117B31D280f4B0f4D3819a9": { - "balance": "0x4563918244f40000" - }, - "0x403299bDe225220bD714bde8445B79b45483E5B3": { - "balance": "0x4563918244f40000" - }, - "0x403D76e891b239833b8D140C62FF819821B46E54": { - "balance": "0x3f514193abb840000" - }, - "0x406D4798607D18119a689391Dc8D2b6f21b0DeBC": { - "balance": "0x3f514193abb840000" - }, - "0x407b4F2f41249cd68e67d1c3968c3c8b5C797ffD": { - "balance": "0xecca2d59581a40000" - }, - "0x408a6eB4d27e6cBEeAEe0c247627dFffd37Bcc2e": { - "balance": "0x9e67b061b4d0db6db" - }, - "0x409deE03324459FA7C85d172952106cF79BE008a": { - "balance": "0x967c8fb296e740000" - }, - "0x40A6d80cD729587593182802b09ba8047522b056": { - "balance": "0x4563918244f40000" - }, - "0x40A6ebE452b57F5b1791A6D85f88D510Cc4950df": { - "balance": "0xad78ebc5ac6200000" - }, - "0x40C9b6E85D28aca9f33f670ef2E6dd208b0EAb38": { - "balance": "0x8ac7230489e80000" - }, - "0x410B13BbBd491Ce9A48091aD57fd73fA025e13F6": { - "balance": "0x4563918244f40000" - }, - "0x412e5c37f98D7e2B3314B5EA29CAE1A853C65255": { - "balance": "0xecca2d59581a40000" - }, - "0x413dD3C8aAe8B406a6bAa3e0aA77abb01b3258fD": { - "balance": "0x515093df72fa1f40000" - }, - "0x417044a320E0a16947cBB959EA85A88b86186c16": { - "balance": "0x3f514193abb840000" - }, - "0x4191ABd8e2005c58a2Dfa3990C1385CAE47D4281": { - "balance": "0x4563918244f40000" - }, - "0x41987f312C027aBD33778DC06ea5ea7F0095a5c3": { - "balance": "0x145424d455cc180f0000" - }, - "0x41B4F5F40C229FAe20AD18bb584cCdAd77438B9d": { - "balance": "0xad78ebc5ac6200000" - }, - "0x41E903148e45e4cFf1B9BB7E1a3b2B8E4E084d4B": { - "balance": "0x14dbb2195ca2289000000" - }, - "0x41Ed3fd888601EbCE021d98D1100E8c7f10c1224": { - "balance": "0x3635c9adc5dea00000" - }, - "0x41eb85a5548F36C0aaD343a05eebB106DF164e96": { - "balance": "0x8ac7230489e80000" - }, - "0x420bE10855e173CAB6327d86259c4E9263683649": { - "balance": "0x4563918244f40000" - }, - "0x4211989b265a1E2B6Db1653Df3EcC56329450a3A": { - "balance": "0x470de4df820000" - }, - "0x421353Ec795f271307b2c071e4D2142099610747": { - "balance": "0x4563918244f40000" - }, - "0x4214a1879B2678aa9Ca0AbCDC8EFFd02e40F4419": { - "balance": "0xbef55718ad60000" - }, - "0x4216620AD2df4a19E4513C4E9Dea967A232a64E0": { - "balance": "0xad78ebc5ac6200000" - }, - "0x424040E352e0e6b037d3F9B72FC1Daef60139C90": { - "balance": "0x32d25c01130504450000" - }, - "0x4253B6Efc2049dcE6B72E3Ed3565a42DEA211BeC": { - "balance": "0x4563918244f40000" - }, - "0x4264E8b879a72C59b331018d58038F8B13AAB110": { - "balance": "0xecca2d59581a40000" - }, - "0x427121878e10710E6D2D9a27427c0B6116c475A5": { - "balance": "0x3f514193abb840000" - }, - "0x42845b096aCa31F1fbacF7feB60Ee051760cc4fC": { - "balance": "0xc12dc63fa970000" - }, - "0x428b3717a6e9eEA810B0AF9442bA9bb9e9A02551": { - "balance": "0x9935f581f050000" - }, - "0x42A38EcAC0528eCa45C967747eAe3474A5C57ac6": { - "balance": "0xde0b6b3a7640000" - }, - "0x42B462278D97c28DbAC7e5fD25C9c6a7f749c794": { - "balance": "0xad78ebc5ac6200000" - }, - "0x42C23e76334774a242d1bEC2E80898065583F8C0": { - "balance": "0x3635c9adc5dea00000" - }, - "0x42Cb8b28666676375048B80cd8A8d2E62FA03Abd": { - "balance": "0x3f514193abb840000" - }, - "0x42F63828764EC44763f3D4013fC0b0e18E41E6dD": { - "balance": "0x3f514193abb840000" - }, - "0x42b7555ABe2F10a44F60C21468Bc5223F31C2d2C": { - "balance": "0xad78ebc5ac6200000" - }, - "0x42c2488111F7b3cdc15C39881604D31694190E46": { - "balance": "0xad78ebc5ac6200000" - }, - "0x42cB9DEE113c5bdE2a6C0523377E759C2Ee543Ae": { - "balance": "0x23eb6eb5146564d8e80000" - }, - "0x42e8382735B5af07F8a0549F8F653a4f4Cb97095": { - "balance": "0x3f514193abb840000" - }, - "0x42f7852d455Bf3F57814EfBB9876E92516C626A2": { - "balance": "0x32d27af3a0345d640000" - }, - "0x42f8Fd3c8df08120059180501622Efebda70CF05": { - "balance": "0x3f514193abb840000" - }, - "0x43004F889FaeAa009275f49e33805AC695d01CC3": { - "balance": "0x3f514193abb840000" - }, - "0x430FFC66c3650ab62080d559Db129B6EBE3dd8Fb": { - "balance": "0x3f514193abb840000" - }, - "0x43197c928896f4E11dB1D16812e0f981138FB3d3": { - "balance": "0x79f8ddcf2c772ee0000" - }, - "0x4343F5F5C95d637747a6544411887362179d8Efe": { - "balance": "0x4563918244f40000" - }, - "0x434F0d1cFF7AA7C3e4aA2962EdAc1eE7DFE13835": { - "balance": "0x4563918244f40000" - }, - "0x435C78574761515Dd923081edD03f9fFCe9C7ABE": { - "balance": "0x514fd0793d9379c0000" - }, - "0x436A3b7c3A8EF4Cf64Ac58D6c927dd6FA4441Cb1": { - "balance": "0x7e90bfae1f90000" - }, - "0x43Ac9572722e72514dF760D9319fbe8c97f85Ef3": { - "balance": "0x4563918244f40000" - }, - "0x43DDb1d8d48Da0dFCf0FAEd82851c25095565F17": { - "balance": "0x4563918244f40000" - }, - "0x43F8827bD71fc7821A1176752E42C6a35752a56C": { - "balance": "0xad78ebc5ac6200000" - }, - "0x43c86232dA955AaaC86a0a79105Ef8a08d550586": { - "balance": "0x4563918244f40000" - }, - "0x43f08b7c3BD890729Eb0c0b13501bFa93a86578C": { - "balance": "0x4563918244f40000" - }, - "0x4418C57a5ca0B8E97E9FD5537AD00452169D6F7a": { - "balance": "0x3f514193abb840000" - }, - "0x441dCcB6121D22b535C2Fc5aA0901788C0C16F3C": { - "balance": "0x8ac7230489e80000" - }, - "0x44387ea882d88fcD68EEf400bcB6feAFA82b9EB8": { - "balance": "0x515093df72fa1f40000" - }, - "0x444f638830E0ef2eEE2357B0b437824be3f17B57": { - "balance": "0x24c57763fbe47ddea8000" - }, - "0x4452b58D2FDB19dc757085ef6200a5fF549FBdA9": { - "balance": "0xba8478cab540000" - }, - "0x44554534D845a11ae167fC70C3f8556F7794dcdc": { - "balance": "0x967c8fb296e740000" - }, - "0x447DE7c3C366F4cd8477C5031C21c1A6Ed09Beb0": { - "balance": "0x3f514193abb840000" - }, - "0x449e68083D8469Db52F2174c7FD80437dd15122D": { - "balance": "0x3f514193abb840000" - }, - "0x44DEced609FFF31E9041305Dbbf913711f772a5c": { - "balance": "0x4563918244f40000" - }, - "0x44E3dff8AeA929343f337dbFf6857CE152814042": { - "balance": "0xad78ebc5ac6200000" - }, - "0x44b98e707cb96b8d8A4af87c083301F1055EcC3C": { - "balance": "0x2fb474098f67c0000" - }, - "0x44e1241D518d6617dCC6d35eB64Ac75000005EFC": { - "balance": "0x4563918244f40000" - }, - "0x44eac2aFAFa66DaA900c27E38EB49cca784909AA": { - "balance": "0x2a5a058fc295ed000000" - }, - "0x45114a221c5241FcCfF9ACd803aCA2cf79f0934b": { - "balance": "0xecca2d59581a40000" - }, - "0x4511563eCA76b99863da484335ECe17230e20c74": { - "balance": "0xad78ebc5ac6200000" - }, - "0x451FD6de5a960140920aD3B41dbFB7D67a002F06": { - "balance": "0x3f514193abb840000" - }, - "0x451a500774C77215CBf963917Db41020FE808c1E": { - "balance": "0x4563918244f40000" - }, - "0x45352CA45374D5375905d4C3A0Ffd4449c7F758D": { - "balance": "0x4563918244f40000" - }, - "0x4553c31c28B71F634BA7e90e3B58E3261aa5E1d9": { - "balance": "0x3f514193abb840000" - }, - "0x4557Ab70AE3Da109FaC06dc1c07a7503b6D03B1a": { - "balance": "0x55ef523dac9a570000" - }, - "0x4562F062f6195A323Db97E8d3bb7A73414B0CF7a": { - "balance": "0x1969368974c05b000000" - }, - "0x457f8b6E784D6DeaE663f59F303f32EaC6358c5B": { - "balance": "0x4563918244f40000" - }, - "0x45908DdA88EE2b0e4F99Cb0BD0912D71672A0723": { - "balance": "0xc3663566a580000" - }, - "0x4590e59b856f3426Dcd3e62A97FD07E4eC3381B1": { - "balance": "0x4563918244f40000" - }, - "0x45AA33Cad66d3c8F273e53566aBC004a88D324cE": { - "balance": "0x967c8fb296e740000" - }, - "0x45C9be300620ad52D4874d013175E2a367fd83F3": { - "balance": "0x4563918244f40000" - }, - "0x45Da8cd5B785E9335097D1BE7D288E1B9ED604F0": { - "balance": "0x4563918244f40000" - }, - "0x45b177d2555c5C911905D43F9aA6C66C3199F362": { - "balance": "0xad78ebc5ac6200000" - }, - "0x45cF5a58ece9D0718bc1f66Dc46Ba06e9960E17E": { - "balance": "0x4563918244f40000" - }, - "0x45eC8f91807c97495d8Fb7E017d2bEE41De6E8d8": { - "balance": "0xb84c09a3b930000" - }, - "0x4609cAB7f143bE69c997A0e6151eD99DD329105B": { - "balance": "0x4563918244f40000" - }, - "0x46115812Fd32D98e349A3C8C5617DfC8922d1553": { - "balance": "0x8ac7230489e80000" - }, - "0x4634b5Ee77D45E9CC0646Ea56B3172e5184E3Ac2": { - "balance": "0xb1a2bc2ec500000" - }, - "0x463f344bf4d02A1b0965ff64724DBeD0c2d8a670": { - "balance": "0x4563918244f40000" - }, - "0x46403ed743715F4f7480595469dAf45828436ddF": { - "balance": "0x55ef523dac9a570000" - }, - "0x4648ad11e09220Ab6A29F9D8b74Da446484239e6": { - "balance": "0x54b38058622750180000" - }, - "0x4663AE6D242B4a91a53816628d25d936c1Df3518": { - "balance": "0x4563918244f40000" - }, - "0x4665e1f4083266fEd1835388Ea6092f973Ac1Fa5": { - "balance": "0x4563918244f40000" - }, - "0x469531fF87169eD657eE8028431FF0E14830a11c": { - "balance": "0x4563918244f40000" - }, - "0x46A5d78c2C8835C68716292e5E821Cb46247E84e": { - "balance": "0x905438e60010000" - }, - "0x46B8689D29B00015D87C91CAACE2acD740a57aCA": { - "balance": "0x4563918244f40000" - }, - "0x46Cb53D097D689efdF8B83B41ABEd49A413D46e5": { - "balance": "0xde0b6b3a7640000" - }, - "0x46F7d63F591718CF99efD6f43a776B3B869E523D": { - "balance": "0xecca2d59581a40000" - }, - "0x46a0ee2cB418859cdfF04A891ef47F97E020616a": { - "balance": "0xad78ebc5ac6200000" - }, - "0x46a5f28fd5d9fD1Ab3C27D8110A1078349EB038F": { - "balance": "0x4563918244f40000" - }, - "0x46c522ad7A8f9834e6D0fd35224cC0b5E93D154A": { - "balance": "0x9f34bb37ff48000" - }, - "0x46cc30610d4f3a520ee6a4E355BAAdbA16993711": { - "balance": "0x515093df72fa1f40000" - }, - "0x46dDB6ecD2749583A1d3E1AeD3e8faD84215E9b5": { - "balance": "0x1a055690d9db80000" - }, - "0x46e8FFE4b8E4Cb5db9A4E7A001F18D0a1708cd74": { - "balance": "0xad78ebc5ac6200000" - }, - "0x46ed39BB81f4d8cA38cB127201ce84cF52b5A607": { - "balance": "0x3f514193abb840000" - }, - "0x47139cBEC96fF8e2d06E0595F966827E400492C3": { - "balance": "0xb075f60d77273c3200000" - }, - "0x471D92d5b4b6D333A9C35CC5F741Ba6c355D748D": { - "balance": "0x2e6adb1664a03900000" - }, - "0x47319B4EAAf05A769f0f6C0A0526fb4faa6fFB58": { - "balance": "0xad78ebc5ac6200000" - }, - "0x4745761587286437ab45066f81E8853954B2c41b": { - "balance": "0x62417d8af6a38200000" - }, - "0x47475e787265E27e8628b7E39e7f0a3cF7a9E1f9": { - "balance": "0xde0b6b3a7640000" - }, - "0x4751a34D59D6dfCE65a4373E6a80bd9c980314c2": { - "balance": "0xe2a9c310ab8000" - }, - "0x47742f217F6B284ff9b53426D9F72Fad2cB096a1": { - "balance": "0x3f514193abb840000" - }, - "0x47791C1767C04d9a310d200d3EAA0c5744436F10": { - "balance": "0x3f514193abb840000" - }, - "0x4793C32ec786faf29D6712B37c75b27d54833fda": { - "balance": "0x4563918244f40000" - }, - "0x47BB195E6a6aC067Eff8E4A21Ba4190c93D0CCd1": { - "balance": "0x3f514193abb840000" - }, - "0x47D9069508B71EC57C95cB54173aA490E96778bD": { - "balance": "0x1da4aab6ee11aeb9880000" - }, - "0x47E9aBe62AD3CE155683a1dEb6e63E90120a6984": { - "balance": "0x4563918244f40000" - }, - "0x47d33575e5b4e45C65DB7d825C1850Cfdc944da5": { - "balance": "0x11a56567bf1d860500000" - }, - "0x47de05a57bBdc08ee9d2A5357A6ed02B8D115a41": { - "balance": "0x3f514193abb840000" - }, - "0x47e2da89311A22f7c2a2f8e1a58387269989D245": { - "balance": "0x4563918244f40000" - }, - "0x48137C018CDca89942Fab062aDa415a79e06Ebef": { - "balance": "0x4211779771a17a600000" - }, - "0x4820E2284c75c69F899424257F1E6DEfcCd9433e": { - "balance": "0xad78ebc5ac6200000" - }, - "0x4824e7A3ff103b597899018C9c0692DedBE67adc": { - "balance": "0x1158e460913d00000" - }, - "0x48518d91185752bAFEC93Da192e739eE5B2Ad9Aa": { - "balance": "0x8ac7230489e80000" - }, - "0x485FB1f3714927B57104E6AD4666dcEAE41a0F3d": { - "balance": "0x515093df72fa1f40000" - }, - "0x486A485F9e4C17ae6Da6632627fa629eCd413701": { - "balance": "0xad78ebc5ac6200000" - }, - "0x488185cA37bb0553A54DB75a581bD6dA8dA9e8f2": { - "balance": "0x55ef523dac9a570000" - }, - "0x4885A1bae73E16d42a68C48F078b765aE9EFcaA3": { - "balance": "0x4563918244f40000" - }, - "0x4887D1378A7c15C91e38402f736F2327dFc6B193": { - "balance": "0x4563918244f40000" - }, - "0x48Ac2bDF75C8159B3f0Cc08946b9B544565D4FDF": { - "balance": "0x8ac7230489e80000" - }, - "0x48C2fC9014A6b50a5301930Ee8ecb21C34e42181": { - "balance": "0xad78ebc5ac6200000" - }, - "0x490a58A6AA492BdDFD6912b1e1b788d4d05Fff00": { - "balance": "0xde0b6b3a7640000" - }, - "0x491bFD1Fc1DD4F42bc767bB0612dD41C011152a2": { - "balance": "0xad78ebc5ac6200000" - }, - "0x492663213B7D2Bb84aa3E70d9B98F6DDC6aB54e6": { - "balance": "0x1158e460913d00000" - }, - "0x492B93E2E2B06341901dF4D84E84819193a8b7ef": { - "balance": "0xad78ebc5ac6200000" - }, - "0x4944baf5da09c4a33d3Ec6Ff290055030449D72e": { - "balance": "0x3f514193abb840000" - }, - "0x4960D62a23f0D44F47EF6dd6886ab6E2b20111F0": { - "balance": "0x1158e460913d00000" - }, - "0x4967c23646fa6472d9d299f1EF6A7c94435f6129": { - "balance": "0xad78ebc5ac6200000" - }, - "0x497C5258e259eAA3675a159bfe3B23B1B5D7F786": { - "balance": "0x55ef523dac9a570000" - }, - "0x49c178c51721Ddc85f8c1eC68d398F10a89dD8F4": { - "balance": "0x4563918244f40000" - }, - "0x49dE2E62954B79f6B41631fD49B4A876a989220d": { - "balance": "0x3f514193abb840000" - }, - "0x49f3Fb93C1F36D299aA5234e2Ee9aEAf43cBb1d4": { - "balance": "0x5150ae84a8cdf000000" - }, - "0x4A167eb7166004Eb3B3956a1c09dBd5234B61736": { - "balance": "0x55ef523dac9a570000" - }, - "0x4A3e11E080Aa70f578E4dd57d8d39Ed69fB0bC45": { - "balance": "0x2b5e3af16b1880000" - }, - "0x4A70f4066a7FCCDC0Cc1BBB7f1d09EF954665802": { - "balance": "0x3f514193abb840000" - }, - "0x4A712693D63b9FFfe99a199D09ACFe1348fa6AD0": { - "balance": "0x4563918244f40000" - }, - "0x4AAF20428565fEE70198E17a69803Ea7a7754158": { - "balance": "0x5698eef06670000" - }, - "0x4AB5a902D7E7460677470d44e881Ac61F12BD4F7": { - "balance": "0x3860e639d80640000" - }, - "0x4AD474805842fe51D92DB6b55C0649E3Bdc14303": { - "balance": "0x21b63fd1aa400b80000" - }, - "0x4Ad5aB37049eaCfE6C98Bb8a80aBc02ee747AE4C": { - "balance": "0x32d27af3a0345d640000" - }, - "0x4B5bef53333dcDD7a321AaB6b9f9c756aEfa6c13": { - "balance": "0x4563918244f40000" - }, - "0x4B5ed7d18699BaEF26B5d419a924a9811fbD9851": { - "balance": "0x3f514193abb840000" - }, - "0x4B71522c06F93cd149E0b6D5Be1A66cCc7658e94": { - "balance": "0xad78ebc5ac6200000" - }, - "0x4B7f33bF62b46e1a8D7D6FD37E03E05b3C7065c8": { - "balance": "0x55ef523dac9a570000" - }, - "0x4BAF855F7817232d818781880D0574C8458Cc0e5": { - "balance": "0x1158e460913d00000" - }, - "0x4Bb567773e53887b12A349fC338aBeE41AE4Cd7E": { - "balance": "0x4563918244f40000" - }, - "0x4Be7eb2c378a8139dAcDdb7A404162AF2C4A0D93": { - "balance": "0xad78ebc5ac6200000" - }, - "0x4C0285e0f05800d33CB42462412e4b38eE321565": { - "balance": "0x3635c9adc5dea00000" - }, - "0x4C0B7A47E34bB1422a69a31388811436a56b836E": { - "balance": "0x4563918244f40000" - }, - "0x4C3d4c6Ab8957abF3732188B6411d0FEB1BC9383": { - "balance": "0x2e963951560b51800000" - }, - "0x4C6A52C4C526eA98B33F3547168fe706f7616F39": { - "balance": "0x4563918244f40000" - }, - "0x4C78Bf1eceEFd2a4678219A26064C868F429B0c2": { - "balance": "0x3f514193abb840000" - }, - "0x4CA1e4A1897FEC53aAD0a75ee74979df71d65FC9": { - "balance": "0x8ac7230489e80000" - }, - "0x4CEF945ef8EB1AAB56Fd691394bceD098294EA62": { - "balance": "0x18ac050eb79059b80000" - }, - "0x4CaC5B0f3761966f446A5ced5A04475E5576ff2A": { - "balance": "0x515093df72fa1f40000" - }, - "0x4Ccb5C927A246561b43b6a4849f055c0643089Fd": { - "balance": "0xad78ebc5ac6200000" - }, - "0x4Cf148F97060dA1B0bb2590d4DE74cd3a0cd3c57": { - "balance": "0xad78ebc5ac6200000" - }, - "0x4Cf3c2eA86DB57aAD65D99F356ad23F7c329172f": { - "balance": "0x1158e460913d00000" - }, - "0x4D0A81f62773841D68899236730d608EaB89D47a": { - "balance": "0x514fd0793d9379c0000" - }, - "0x4D20b39Af2EE7255B8dd56494171f7a9f3187Da3": { - "balance": "0x3f514193abb840000" - }, - "0x4D319d6c7f7aDb392990734a35A1CE84C65d102F": { - "balance": "0x3f514193abb840000" - }, - "0x4D3C670b13e34CA4BC9236069489e60594F2468C": { - "balance": "0x185772d7556115e1c0000" - }, - "0x4D5AB452aDB1ebB37ff55A9Bfc189a071C67067f": { - "balance": "0x3f514193abb840000" - }, - "0x4D7E795021BEE16a5c7ac89fAf5894EC983BE808": { - "balance": "0x8ac7230489e80000" - }, - "0x4D95FB2A051120FcBF3f15566d5FDE62B101f066": { - "balance": "0x515093df72fa1f40000" - }, - "0x4DC0D1fB951b71e40658Faf8C9086DFc5c1422B1": { - "balance": "0xddb8f1f560891b6db" - }, - "0x4Db1f2b7aa4E4a1F7eeEeca5b9874dB4C86Bcc02": { - "balance": "0x55ef523dac9a570000" - }, - "0x4De73D0255374c725924134EAdd70B1C71064B6A": { - "balance": "0x4563918244f40000" - }, - "0x4E1210620f75de25af344229525F2CC4e18De047": { - "balance": "0xad78ebc5ac6200000" - }, - "0x4E31dc0267bFdF78112068D72098B12AAEB970e6": { - "balance": "0x11ddfa58a6173ffc00000" - }, - "0x4E80d831BAE6E461521C05E0359Ae11A119Ce9c3": { - "balance": "0x3f514193abb840000" - }, - "0x4ED164C2faD34ce5073F197435F65d3DF35F76e9": { - "balance": "0xad78ebc5ac6200000" - }, - "0x4Ea037C1524c596288A722Ab819ae6BCaf545e13": { - "balance": "0x55ef523dac9a570000" - }, - "0x4Ead2091EF1e804F085bc32f05c04dd2b0Df0138": { - "balance": "0xa2a15d09519be000000" - }, - "0x4F0621d43e609afC84b95794Ca939c93217Cf880": { - "balance": "0x967c8fb296e740000" - }, - "0x4F1700bB52B95a2919B4aFC274637b99EC3B6477": { - "balance": "0x3f514193abb840000" - }, - "0x4F1a36f56BCcAA50e1c499422f42345552d29193": { - "balance": "0x4563918244f40000" - }, - "0x4F2a9dbBeF885Cf71B62Ef8B26a18b2EB5f06D31": { - "balance": "0x4563918244f40000" - }, - "0x4F42352a6801975db4acD2448D3B2C771a1777EF": { - "balance": "0x4563918244f40000" - }, - "0x4F442bbC1c053b443670Fdf8d1A34e0d109Bf3c1": { - "balance": "0x8ac7230489e80000" - }, - "0x4F5d0D9695Af360E712C73d7c720ccab35e7C2ce": { - "balance": "0x4563918244f40000" - }, - "0x4F71D67322f7f97944c26A917acD990b793E0f2A": { - "balance": "0xad78ebc5ac6200000" - }, - "0x4FB81dD2D9B1819134cD9906754509Bc4337315F": { - "balance": "0x3635c9adc5dea00000" - }, - "0x4FF803A6Aefe13a6b386C6D87C9328d80fa1D735": { - "balance": "0xad78ebc5ac6200000" - }, - "0x4Fe3ca9a0d8afFc504c05ba3FD85E0Ce167cd1Ce": { - "balance": "0xad78ebc5ac6200000" - }, - "0x4a1058042dCa14bf64B190dA5b24227995d1738F": { - "balance": "0x55ef523dac9a570000" - }, - "0x4a155D155247479FcE45C4472188166a70938674": { - "balance": "0x3f514193abb840000" - }, - "0x4a4F56CE59A9a8212B951Cd52c966Acac8C20cad": { - "balance": "0x4563918244f40000" - }, - "0x4a756D224AF72c90FDEbb50B6bEa1A67627FF903": { - "balance": "0x4563918244f40000" - }, - "0x4a83D582bEC924e4225Ab35990C49a070bA93E47": { - "balance": "0x967c8fb296e740000" - }, - "0x4aB82f9616c042eb7f552b307412B95F25c19DE6": { - "balance": "0xde0b6b3a7640000" - }, - "0x4ac7Fd46A120f78B62EE7878872125274Fe46eE3": { - "balance": "0x967c8fb296e740000" - }, - "0x4ac810BDFEe5fbFF04c329a91b097766c7D4D9B9": { - "balance": "0x4563918244f40000" - }, - "0x4b0F9CAe9Bc40A1f60F0FAaC1fBED72A94370CEd": { - "balance": "0xde0b6b3a7640000" - }, - "0x4b41FE7CE2AB782fa3E5fb402aA76487B84ec7c9": { - "balance": "0x6b9e6fb66226970000" - }, - "0x4b49b5D5eB1f4106E9336f01077844B462650C68": { - "balance": "0x10f0b344e06e43380000" - }, - "0x4b6441a87a903acD90D9AdA4254433fe7B4926aA": { - "balance": "0x8ac7230489e80000" - }, - "0x4b7A4f290a595Bfd8a446717d7956Ad37b3981c6": { - "balance": "0x4563918244f40000" - }, - "0x4b85D1F3fC229A974eD0BCf61123eaf00F948961": { - "balance": "0x3f514193abb840000" - }, - "0x4b97BC37730A202008c36c5731d4Bc5Dc4eFBE03": { - "balance": "0x4563918244f40000" - }, - "0x4bA1A4eD6EAf5710d0ECE854c061f59d630E0BF3": { - "balance": "0xad78ebc5ac6200000" - }, - "0x4bEB727D4D5065C177ceaa10A1115A21005DB0f0": { - "balance": "0x4563918244f40000" - }, - "0x4bcA53Cd41A014304614d2B3046f7F15e59c75ef": { - "balance": "0x515093df72fa1f40000" - }, - "0x4be901715431212754302c6D37ea1ad42a2ECeB0": { - "balance": "0x3f514193abb840000" - }, - "0x4c0c3ceB86DAaa6169Ca96A69d1342286209C2B8": { - "balance": "0x55ef523dac9a570000" - }, - "0x4c8050F43BC5c9E0e0084a81F9F5527EecE185D2": { - "balance": "0x3f514193abb840000" - }, - "0x4c8811b2F517f8E1BD635001Af6197773F07Fd1A": { - "balance": "0xad78ebc5ac6200000" - }, - "0x4c9f19A2765fc121e6C62442B5a9F1aA3E2Ce497": { - "balance": "0x3f514193abb840000" - }, - "0x4cb6602B926F88B1F95c6133e2F8F08b3fc15E97": { - "balance": "0x3f514193abb840000" - }, - "0x4cbc2b34a4C339b4caDFb1E74a7f85a4352AC6D5": { - "balance": "0xad78ebc5ac6200000" - }, - "0x4d065B0d39c4fe2377D60cEfeFD636f9Ca1770C7": { - "balance": "0x3f514193abb840000" - }, - "0x4d2A865F7141687DBc7a1493Fb36DE7817da320D": { - "balance": "0x3f514193abb840000" - }, - "0x4d33378A44DbcF07A6E3dC24C924d9C28Af5B1aC": { - "balance": "0x4563918244f40000" - }, - "0x4d48255d31C43692fc8D585EdA684C8645D45E39": { - "balance": "0x55ef523dac9a570000" - }, - "0x4d49725f99a93033B38E99550D81AC8b826B4324": { - "balance": "0x3f514193abb840000" - }, - "0x4d9b8dc3cc85eD602A4c601bA906e4F9D05B4a0c": { - "balance": "0x2086ac351052600000" - }, - "0x4dB16ed6D45dedBedd6da9F9e6c61B483F04Fb38": { - "balance": "0x31b9755825b3000" - }, - "0x4dE50a45Bc856E896859EA849e685A67a9fA2090": { - "balance": "0x3f514193abb840000" - }, - "0x4dfe7013672e90f8A019d4420d5f48D9f549c269": { - "balance": "0x4563918244f40000" - }, - "0x4e0e56F0a46E2d9a0577E7378FCCa596c29EFf4F": { - "balance": "0xad78ebc5ac6200000" - }, - "0x4e25986D719D62007857DB4B9477c9Ea40766E04": { - "balance": "0x4563918244f40000" - }, - "0x4e42136b6E664c48E33C2aA207DE3f5fcC1BF8Fb": { - "balance": "0x7ea28327577080000" - }, - "0x4e69D8d12f4070609447525E59babB80a8b055f6": { - "balance": "0x3f514193abb840000" - }, - "0x4e8817daeA57F4a881272da2E020052fC1DA98B0": { - "balance": "0x4563918244f40000" - }, - "0x4e8B5006A41f7A6D239497d2e76A04e60cD0CE1B": { - "balance": "0xad78ebc5ac6200000" - }, - "0x4eBe77EC26496F59075720734c52A3933251bdA8": { - "balance": "0x1158e460913d00000" - }, - "0x4f0C46d0bd46225872F7f4b9701454049fb2De76": { - "balance": "0x4563918244f40000" - }, - "0x4f0e328f1bE8c0648DD6bbA54430F2540D6bdbdB": { - "balance": "0x3f514193abb840000" - }, - "0x4f13F0848784d00Cc41C640f00FBE501aD8e6Cfa": { - "balance": "0x3f514193abb840000" - }, - "0x4f26eEdb59C0125D724B5dD6E927A80E64439964": { - "balance": "0x3f514193abb840000" - }, - "0x4f71b85cB0E86B49CC0986E7E446DB62ebDf09ec": { - "balance": "0x4563918244f40000" - }, - "0x4f8086F01b96694be6B8c55ca171edBe60DD5fD8": { - "balance": "0x967c8fb296e740000" - }, - "0x4fD257d3A2EEb4a0D0F94bfAFAB110050E2143D9": { - "balance": "0x14998f32ac78700000" - }, - "0x4fD45Fc1B433ed71B0Bc947F5062C94CCf521C0a": { - "balance": "0x4563918244f40000" - }, - "0x4fb2B9ad1AB7797eC5488657f0df53f944E45A44": { - "balance": "0xa2a15d09519be00000" - }, - "0x5003EA73260960F0BD248BF995613d1a2C5783cc": { - "balance": "0x19c0a9f97e98de049c000" - }, - "0x5007488d39aca3690107799d1573eF2045c55213": { - "balance": "0xad78ebc5ac6200000" - }, - "0x50075178096c78D1683867587a994AB0364DF8B9": { - "balance": "0x1158e460913d00000" - }, - "0x500D82E12274Fc0f069a76FA9B8500047579E5B7": { - "balance": "0x3f514193abb840000" - }, - "0x502768a1027D010d86b927F03422bAb826Ac66ec": { - "balance": "0x55ef523dac9a570000" - }, - "0x502Dc3f87b7C71511B96AA904852e0136AE24670": { - "balance": "0x4563918244f40000" - }, - "0x5034A02Fed4b68Fe50a14838EB6cBbc0f1E388a5": { - "balance": "0xb918ac88cc40000" - }, - "0x503ACEdBf86e483BD705a44B5cBDbA535F4D145F": { - "balance": "0x3f514193abb840000" - }, - "0x5042830909eB6F47f43D62F73560bA2aC27764CE": { - "balance": "0x4563918244f40000" - }, - "0x5042c1BE024EE0Bdc3B01773A8c00485Da6306A2": { - "balance": "0x7ea08f8da62cf5f00000" - }, - "0x504C9E7caD5CAD8F3fBe5753d822B9bb5ABf6C59": { - "balance": "0x3f514193abb840000" - }, - "0x50635bCbD6c5AAbE05703AEF4E2B813d3F7DF201": { - "balance": "0x55ef523dac9a570000" - }, - "0x50781AB8eD9D99772E4d7c85251D5a3Db6f77808": { - "balance": "0x340aad21b3b7000000" - }, - "0x5078e58F46D693Fdc93e6dd58CB07Cd9aF7e44c0": { - "balance": "0xad78ebc5ac6200000" - }, - "0x507f3A4e7DB6d46C46768534aa862F83480E8b14": { - "balance": "0x249af9e95f468500000" - }, - "0x508a2470dCD149E9b43767e64D6134b81A392801": { - "balance": "0x3f514193abb840000" - }, - "0x50BaE63bC545545542D66D00C4D6b898b2706be4": { - "balance": "0xbda5f6cbea94000" - }, - "0x50CBfc95E0a28B7e7eC9f7b360Aef464D849FdD4": { - "balance": "0xad78ebc5ac6200000" - }, - "0x50fEDB536ee0D9304aC6bEac8068a7413b83b674": { - "balance": "0x3f514193abb840000" - }, - "0x5100EcaF16881DDd105Bf750D3d94Fc383a3658A": { - "balance": "0xc3663566a580000" - }, - "0x510197EC6f432908223FA6ae0BA231f867456C33": { - "balance": "0xd2e09835e58d880000" - }, - "0x511cc557fc817b289D4918C1CCE9FC4678Ae1DCE": { - "balance": "0xad78ebc5ac6200000" - }, - "0x513d316D25c6754898b4e09B1e17a0358C09E877": { - "balance": "0x8ac7230489e80000" - }, - "0x5168e3CB866E7D5c956a076a17e8c7Cb5107f663": { - "balance": "0x3f514193abb840000" - }, - "0x516D01fA682233Aeb47De93638DDFB5517dAE451": { - "balance": "0xa2a1258676cd4270000" - }, - "0x517D6c773A987a75A8333929a6fd06Dd9D762448": { - "balance": "0x7928b31aa5a852e0000" - }, - "0x518A1e2d782Bfa1B665Ca98Cda2A706c797a5E19": { - "balance": "0x4563918244f40000" - }, - "0x519387393e5779781732ba0cd2b928B9Aa64402d": { - "balance": "0x25a61311d8aa511bc000" - }, - "0x51DBf108cbcCfdc901688A37C3F159dc87D3E0DC": { - "balance": "0x3f514193abb840000" - }, - "0x51b0d457aeE5421C530e05700DD708e9D7932363": { - "balance": "0x2b5e3af16b1880000" - }, - "0x51fea7a5bD6cb9e72734aAcE3A3578AfEbDd06d7": { - "balance": "0x3f514193abb840000" - }, - "0x52179bE7f7Bb4Aa6D26315C572fB623C299c3F66": { - "balance": "0x967c8fb296e740000" - }, - "0x521b51c9f2019738306DCAC00c6543c63b3Cc175": { - "balance": "0xecca2d59581a40000" - }, - "0x52438B4361328042Ab9B041A203Ff1C58924f69b": { - "balance": "0xad78ebc5ac6200000" - }, - "0x525EA65001c0fa3a022D37Da172BeB9313d7355F": { - "balance": "0xb2e4773020a87a50000" - }, - "0x525f61396a3B7CbFfA6993C362e9a97b7bf3Eee2": { - "balance": "0x4563918244f40000" - }, - "0x527Ba64cb394e293039fd591A141FF7D5bBAEb59": { - "balance": "0x133e9d5b211fac0000" - }, - "0x527b30286dcb7179a98e103101EC8557581DCA9A": { - "balance": "0x51526a9b7f42dc80000" - }, - "0x52A7e3C695d3b87579b3057e07aE8575fd348bb4": { - "balance": "0x4563918244f40000" - }, - "0x52A96A550b31D9EaD5E84AF74225802b866A5b50": { - "balance": "0x4563918244f40000" - }, - "0x52Beb9Bc004E56BA6f44ba57C4fB218812C24D56": { - "balance": "0x7857d252845cb9c0000" - }, - "0x52CAed03Bc9eAdbd0AbF100f3d9E7ef24021F4E3": { - "balance": "0x4563918244f40000" - }, - "0x52D4b013677F005406e35CFe990129e31a9550FE": { - "balance": "0x3f514193abb840000" - }, - "0x52D523e0a55823fB3317285fe9d693fb170Bb33a": { - "balance": "0xd36a814d7edcf9c0000" - }, - "0x52D8391005a107efA8E1Bb3CEdfa143E7ff7fd94": { - "balance": "0x104350b0f93a29990000" - }, - "0x52F79bAaE550CdCB4Eb514403AFa9Eb715b6345D": { - "balance": "0x4563918244f40000" - }, - "0x52aB21Ba65E2f9f6e629ECBbCAFB0eA26B6C6AA8": { - "balance": "0x4563918244f40000" - }, - "0x52aFBF8Cf8b1dDE8b8F210795636e3fC3979E1a6": { - "balance": "0x4563918244f40000" - }, - "0x52b398fA9D639C594778244c287CDdAC268B3A5F": { - "balance": "0x4563918244f40000" - }, - "0x52bCD9935D88B5459A8c232Faeb93354BA451442": { - "balance": "0xad78ebc5ac6200000" - }, - "0x52e385b35c3732B6A28152A9Cd022B481920C69C": { - "balance": "0x4563918244f40000" - }, - "0x52f06F686D2e0a6E4f22B9319ce45549D330d89a": { - "balance": "0xad78ebc5ac6200000" - }, - "0x531D3F83CDa8fB2042EBe840a7638Db11C53469E": { - "balance": "0x4563918244f40000" - }, - "0x53231F8e8F45D2144BCB4a17FDb9db41Bc5D27a2": { - "balance": "0x4563918244f40000" - }, - "0x5333aE2c55F2587EBc38f1a0b8a4242740327BA0": { - "balance": "0x4563918244f40000" - }, - "0x533BF7ed4235725B4fE363c7235D3B0280d149AC": { - "balance": "0x967c8fb296e740000" - }, - "0x533d5f5ff093D7a12665271E874bfe648FBbD677": { - "balance": "0x4563918244f40000" - }, - "0x534947E6A047BD9ca58fEC021528229a819aB85F": { - "balance": "0xad78ebc5ac6200000" - }, - "0x534A14D17C9ec759693B2A9d6aFf62bB75C05E38": { - "balance": "0x22b1c8c1227a00000" - }, - "0x538241Cc22854461047f8922663e7906B059dB77": { - "balance": "0x3f514193abb840000" - }, - "0x53987410BE0eDe7b393e1F4A7DdC4C20c17B6c28": { - "balance": "0x3f514193abb840000" - }, - "0x539B11D8C2740b2933fDeaCB3176Aa5527fddCA4": { - "balance": "0x3f514193abb840000" - }, - "0x53E1370A7e781e4c706D98B0D934dBc33970477A": { - "balance": "0x2116545850052128000000" - }, - "0x53FE21bcB68506abbc1fFdD0AB11E71cE0CDd88a": { - "balance": "0x3f514193abb840000" - }, - "0x53ab0cf6BFC986fb41297cF4a53e374AAFeEB593": { - "balance": "0x4563918244f40000" - }, - "0x53b55fdc1813393CD38830D48F87425795F5f2cA": { - "balance": "0x4563918244f40000" - }, - "0x53bCE13beD79FaCd6cB44803fA8Ac660E636E30E": { - "balance": "0x3f514193abb840000" - }, - "0x53f5Ed25B0649309c25E874da2fc6315638ecF61": { - "balance": "0x4563918244f40000" - }, - "0x54198A693fD6d9E07e5d0892ad377CE8b519A168": { - "balance": "0x967c8fb296e740000" - }, - "0x54266d316605f1fEd19D80E1cd0f113Ea77226A1": { - "balance": "0x514fd0793d9379c0000" - }, - "0x544733EE2b03231CEfBa3f8db123C24da534538D": { - "balance": "0x2116545850052128000000" - }, - "0x5453CEf660D6dbb91eC73Ada9e9A187756E9C3E9": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5459439338D9b9942b823B998e900F357E46BdB4": { - "balance": "0x2116545850052128000000" - }, - "0x5459981a60F5cDBD51c859bD9283E48B44567B24": { - "balance": "0xad78ebc5ac6200000" - }, - "0x548fed9e28F702E2BD42321019807F8A0671572b": { - "balance": "0xde0b6b3a7640000" - }, - "0x54A9F9f321c2D9c73FCE3DB8Ea7c4B1d69f14d5d": { - "balance": "0x3635c9adc5dea00000" - }, - "0x54B319076855cC99344ad65422b4d26D7Cb5F7e6": { - "balance": "0x8b0c57f4edfa46b0000" - }, - "0x54D9C896C9673f76A237C8eAB55dCf9F0B97ef09": { - "balance": "0xad78ebc5ac6200000" - }, - "0x54EEE7B5d76Ab4CC42415DeEC2812F804e2b13A3": { - "balance": "0xad78ebc5ac6200000" - }, - "0x54Ed57eC54EF6b6A802c78ad858AD16992dEBa60": { - "balance": "0x3f514193abb840000" - }, - "0x54a02B9B29B38ebAcc3072500d74dA8A2a3838EA": { - "balance": "0x3b2d1447528e038000" - }, - "0x54a8cE71aa7346b4EF5cAE8938B33eFC2deB31e0": { - "balance": "0xc3663566a580000" - }, - "0x54b92125C73D2baC14cb5fe546ceB77C4BfB1d71": { - "balance": "0x4563918244f40000" - }, - "0x54cfEcFE224daB213768D76599c635302Feb841b": { - "balance": "0x3e5dbe564d7dbc9362400" - }, - "0x54e7F037920451626Be99877499AFF4A2D265aE7": { - "balance": "0x3635c9adc5dea00000" - }, - "0x5508E52B983E977108113Ec1dFe95E48E97a2E33": { - "balance": "0xad78ebc5ac6200000" - }, - "0x55144aa34F1f7185f3Ef334076530923d8cce381": { - "balance": "0x3f514193abb840000" - }, - "0x5518E80efDa442Ff69c1EeD7284B1F876847De3c": { - "balance": "0x4563918244f40000" - }, - "0x551B4ab4746c485b112F0eB0E61d5bb969E2C548": { - "balance": "0x821a69c65c69fe0000" - }, - "0x551b17429B92C04131Dd8f994E40E201A104c57D": { - "balance": "0x3635c9adc5dea00000" - }, - "0x55281F0f213107c34F1204ae0936A024c2a41486": { - "balance": "0x14542ba12a337c000000" - }, - "0x55413F9E55570Efa095865F9ca917D8549d2861e": { - "balance": "0x515093df72fa1f40000" - }, - "0x554A1F9E7FF75A245C2Dcd6dCA751520539a57aD": { - "balance": "0x3f514193abb840000" - }, - "0x554c2350139B6151Dd86Bd2b5c9A16E85d6C3a53": { - "balance": "0x4563918244f40000" - }, - "0x555BAB900BBb100084FefC8fE26b98208c16680a": { - "balance": "0x3f514193abb840000" - }, - "0x556884AF70f63c2Ea4De9A186fF48D6010399beB": { - "balance": "0xad78ebc5ac6200000" - }, - "0x556Af685831cEC9F34D7A7BbB6Bca4333616d999": { - "balance": "0x55ef523dac9a570000" - }, - "0x5574341Cc7F823f08FADDB5774464Ba9aa725D87": { - "balance": "0x4563918244f40000" - }, - "0x557D0696277D21dbF6209aac382D9037331a45B8": { - "balance": "0xad78ebc5ac6200000" - }, - "0x55B74EF0fF2c983205dc88C09ba0B2C0Da009D2d": { - "balance": "0x4563918244f40000" - }, - "0x55E376434E7733F670501Ad330F7B404c8A54a5D": { - "balance": "0xad78ebc5ac6200000" - }, - "0x55F9d1b657AAa01178017f05a724e01B83675F3C": { - "balance": "0x3635c9adc5dea00000" - }, - "0x560993A1220d6F09C907272e64a995c9Dd0f3e8b": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5617F14Cb0113CE42b5C7D5B5e0cb3381C4979d6": { - "balance": "0xa2a127bee5f43e80000" - }, - "0x561Ef8aA29Eb10A3dD96cd4f3f36bBA9F2463371": { - "balance": "0x967c8fb296e740000" - }, - "0x56295b4FD7150fa6aD34922AAEB446AB5e034ec9": { - "balance": "0x3f514193abb840000" - }, - "0x562D2f6662b9C0fAA0B5A88E8832266d85A97D2e": { - "balance": "0x4563918244f40000" - }, - "0x565e03B9b85261Fc06A0C36e01Cc8bE9199D1521": { - "balance": "0x4563918244f40000" - }, - "0x5661e1Ad3a982c49Ee96760d04B8B1525242EA06": { - "balance": "0x3f514193abb840000" - }, - "0x56678B7c874CADB7FDdfe96d4B2CbF5758B802A7": { - "balance": "0xf3e0b2a999d89300000" - }, - "0x56799633D1e779E7eA0b7c24De3e8F30F408DcE3": { - "balance": "0x3f514193abb840000" - }, - "0x56931e99Efc76D003664DAfcEE14950da5ab9972": { - "balance": "0x6e3ec1e92fb4000" - }, - "0x56A5A134B4E8452370bD482277E179bf28320407": { - "balance": "0x3f514193abb840000" - }, - "0x56Ab060F8ECAdbC1Ac0962610d91e04194198a0B": { - "balance": "0x4563918244f40000" - }, - "0x56AdfA5828bD73fb933Ab1E3Baca8e4d285a6255": { - "balance": "0x3635c9adc5dea00000" - }, - "0x56B755c36EEB96E38256E62A5Da36347b0B96411": { - "balance": "0x60c6e0fa0760770000" - }, - "0x56C45A059f487fa6A9f01F7e441F88464681E02A": { - "balance": "0xad78ebc5ac6200000" - }, - "0x56C50005Ef4922b22f1cd46b5962ed95063521a3": { - "balance": "0x4563918244f40000" - }, - "0x56F16a61ddb9f28D794324734a471d53D972b486": { - "balance": "0x5b128fe4e65e7720000" - }, - "0x56c4E755fF81cB9D104025c7C245abFA2F3d9453": { - "balance": "0xad78ebc5ac6200000" - }, - "0x56ebAA552e8dAC903888C4880C62405b2cDef9d6": { - "balance": "0x515093df72fa1f40000" - }, - "0x5702f8A27d6a79e3229Dbc14211F2Cf410B89b40": { - "balance": "0x4563918244f40000" - }, - "0x5717eD294bF0ffE8835cb93DDD27c61094E560Af": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5719E59D083Fe912b92E9715Bf80B08CF773D736": { - "balance": "0xc12dc63fa970000" - }, - "0x57222B4B05C21195544DC2fC0847832f358580ab": { - "balance": "0x3f514193abb840000" - }, - "0x572a4f555a7c1EA831Eba05Db5F5802bb9a6DF02": { - "balance": "0x3f514193abb840000" - }, - "0x5730418672afe50564eE63464D6d4b8f11471781": { - "balance": "0x3f514193abb840000" - }, - "0x5750C58A11ad4097CA3a7727DC49d5b5c5AF58fd": { - "balance": "0x4563918244f40000" - }, - "0x576f6b4eF09BC36b7Fb33246c52070206606E647": { - "balance": "0x15af1d78b58c400000" - }, - "0x57856B3D5cf91213C9952D798c694b0fE6530056": { - "balance": "0x3f514193abb840000" - }, - "0x579b8c5D89dA9A517EA7F42041A93c2951470523": { - "balance": "0xad78ebc5ac6200000" - }, - "0x57Ae3A83aCD81D3B715B19e642f337eF88D25E75": { - "balance": "0x4563918244f40000" - }, - "0x57B28A79AC11c7004689ADC0a53578ecb6287880": { - "balance": "0x8ac7230489e80000" - }, - "0x57B9e97920C54B43c50CA7Caa75Bd53AC47290bE": { - "balance": "0x15af1d78b58c400000" - }, - "0x57Df9F3C29fb17fa12224BFE2924CD5eB0764B6b": { - "balance": "0xad78ebc5ac6200000" - }, - "0x57EC88746bF14B04E68855225B8a4ffd0bF2eA4a": { - "balance": "0x32d256de91fadd600000" - }, - "0x57a90f35A46F0236f16EEeDeB9c7512fabAE6857": { - "balance": "0xad78ebc5ac6200000" - }, - "0x57d744caDB3ab6E70c72448Cd0C1f8fa1d4ee482": { - "balance": "0x15af1d78b58c40000" - }, - "0x57e1687DFC1cdF305C82b1951C47C17Ff869CeE0": { - "balance": "0x1a055690d9db80000" - }, - "0x580E56B6c0DB36AfB33a8Fcd2D3Bce8FFe74b683": { - "balance": "0x4563918244f40000" - }, - "0x582933D73c3734327324c1D0e094e52198A7918F": { - "balance": "0x514fd0793d9379c0000" - }, - "0x582EA16bd0819D1713Ecbc0437bD13e6522ffDB7": { - "balance": "0x55ef523dac9a570000" - }, - "0x5834363082533AAFCe963B13bd24d83666738033": { - "balance": "0x55ef523dac9a570000" - }, - "0x584387AA71D76B530b0df14Fa1cDe93Df76aeA45": { - "balance": "0x3e2c284391c0000" - }, - "0x58619298F322Ac4C5327D4E82d3D9270e8c7A2c9": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5870b25a31641F6d1270177dECb149fb92B1f214": { - "balance": "0x796e3ea3f8ab00000" - }, - "0x5897B6FFe7Bb88c7455Afd33Eb498B026EA2b154": { - "balance": "0x3070f5d38330000" - }, - "0x58B1BC3228123b4156E85cEEf48676e1F7620EDD": { - "balance": "0x14541dc0737fd49c0000" - }, - "0x58D0fFD05924B4ad2028850E5A4B67c94c3d5909": { - "balance": "0x4563918244f40000" - }, - "0x58DD72c8d6618380145510a37FA26779431c163D": { - "balance": "0x3f514193abb840000" - }, - "0x58E251613C4393e786955DB07fbC4d8C9a6A78e5": { - "balance": "0xad78ebc5ac6200000" - }, - "0x58Ec96038F847EefeF5c56bD1b584211635879A4": { - "balance": "0x19af6f8bb388b4820000" - }, - "0x58FaACbA5c74f597DA6dBA4c9c09618f85AB42c6": { - "balance": "0x4563918244f40000" - }, - "0x58a6109b466EA4f422C202C7D7A02d0Bb0783b47": { - "balance": "0x4563918244f40000" - }, - "0x58d7cbd29E8772607E3b963044850E17e3f88612": { - "balance": "0xad78ebc5ac6200000" - }, - "0x58eF564d34353C1D635767a882aC4752538dC681": { - "balance": "0x8ac7230489e80000" - }, - "0x59003c3B831A57dBa7827b569C086ef0a0E6c2bF": { - "balance": "0x4563918244f40000" - }, - "0x59144B0D43dA38427aC7DfFc47dBCB0ecdA0D34D": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5916E743Da662F5eD4fe2c6DbD421c1c7451C234": { - "balance": "0x8ac7230489e80000" - }, - "0x591C12f9bEB6A6Ea4432CDfEf977050718d316CE": { - "balance": "0x3635c9adc5dea00000" - }, - "0x591FF431EA9eCf92b047adb13D34b68607eDdDf4": { - "balance": "0x967c8fb296e740000" - }, - "0x5923E9CE80b0d465a4CAAF4CE9E04c8A38fC6c44": { - "balance": "0x967c8fb296e740000" - }, - "0x5928175e934f8Ce963019DBB48CA88Fb38C9624e": { - "balance": "0x515093df72fa1f40000" - }, - "0x593F602A471f0B9583441E1c1f0990e2D6234a5C": { - "balance": "0xd02ab486cedc0000" - }, - "0x593a982B8bA4a9BE3347e1d87DE77A3f876FEaDb": { - "balance": "0x4563918244f40000" - }, - "0x594356a966E444A84E65b30d3e814E8995E9E8e3": { - "balance": "0x3f514193abb840000" - }, - "0x595266944215F7E44550cDAC4D7Fa783ab056B60": { - "balance": "0x15af1d78b58c40000" - }, - "0x595650c5a0a86618E6378cd7B3aF8b6ab8F2D962": { - "balance": "0x15af1d78b58c400000" - }, - "0x59677da3fb07A988d80d000a39B6158a21C6Aa94": { - "balance": "0x55ef523dac9a570000" - }, - "0x596c231aDBec0dB3c7716860541B63002edD9f88": { - "balance": "0x60c6e0fa0760770000" - }, - "0x597444080a043DAEE3740E262C8581d456a06e34": { - "balance": "0x8ac7230489e80000" - }, - "0x597E57Fc11E5D9FeD0fa6cd3a87b3234c8cFaF62": { - "balance": "0x3f514193abb840000" - }, - "0x5980a4010DCF7b55A5F884b673F1b88459bcb667": { - "balance": "0x55ef523dac9a570000" - }, - "0x599B64A430976E0eAF53483F3fda8a986BFD6dFc": { - "balance": "0x4563918244f40000" - }, - "0x599D0bEFD255c7452a2A5c99A1fA9Cfc650B4288": { - "balance": "0x4563918244f40000" - }, - "0x59BD14777d28094B21cb60a5C2773971EdB17273": { - "balance": "0x94d624c70f1c000" - }, - "0x59Ed54A493a2C1D48e9e013eB7C204DCCE2e0fb8": { - "balance": "0x4563918244f40000" - }, - "0x59dF382B6592B111830C49A900E46F4C9443395D": { - "balance": "0x3691d6afc000" - }, - "0x59eD209073F32bc882aC23eb942A582b855b04b0": { - "balance": "0xc915c9fee049d490000" - }, - "0x5A0c8DdA790B1b5AC5744B4Ef4ADA6138cDaAE74": { - "balance": "0x3635c9adc5dea00000" - }, - "0x5A1dCDB6E08cf4dC44d9403D82147B86B531A0f6": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5A24CE59174454350B81AB7c585b25e79e3eBB40": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5A3f12496bB038BEe549ABD3218E9414c49b01D7": { - "balance": "0x4563918244f40000" - }, - "0x5A87705B8eEeA8AAC3a02f081a93d8434375980E": { - "balance": "0x8ac7230489e80000" - }, - "0x5A8AE5bdcd6fE59d669379572e601202A94B0315": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5A92917Adaa9ACD4De9498569339215ca3123d70": { - "balance": "0x967c8fb296e740000" - }, - "0x5AB82bCab99A409d63a2BeB804a646eab58f537e": { - "balance": "0x967c8fb296e740000" - }, - "0x5AD82164C7b2fb6Ff402Dfd971F0eE58103D87e4": { - "balance": "0x4563918244f40000" - }, - "0x5AF16D61a0C8EA0b71912d0Ea846eb54cA03AC30": { - "balance": "0x4563918244f40000" - }, - "0x5Ab5892DE2e24D8cA8A56B6A28D03694eD72ff7d": { - "balance": "0x4563918244f40000" - }, - "0x5AcD6d1DbCb1DE9a167BACD1f32c104714969433": { - "balance": "0x4563918244f40000" - }, - "0x5B4b7Ecb696da559C480e48341ED6Acb9C22F253": { - "balance": "0x4563918244f40000" - }, - "0x5B6412A12E42ffd1e7D0748c0773c6B3c873e49B": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5B6fD91cE603B7d51a1A7c8807bF58033BCE75c5": { - "balance": "0x515093df72fa1f40000" - }, - "0x5B7dd6EceFD1217Cc92b3fbFf29eA534cB2dec43": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5B878E099041cD169524c65fbc648cb812352eBc": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5B9808807f7433B92C5f6e73052733620d6c9436": { - "balance": "0x515093df72fa1f40000" - }, - "0x5BA9B4b8Dff6fC1316c493Cec30bc017bb70e673": { - "balance": "0x9e67b061b4d0db6db" - }, - "0x5BDdFdA81c88bC3726d308B44162596F23237dC5": { - "balance": "0x967c8fb296e740000" - }, - "0x5BEC4d85cd7f3bC79737551F67B17fc975a6676e": { - "balance": "0x967c8fb296e740000" - }, - "0x5BEb450C3f212E258c82Acdb843Fd906FBa94AA1": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5Bf3fCE98b36b028041C7494bFA3a31d0d12AA4E": { - "balance": "0x3f514193abb840000" - }, - "0x5C01377852B40BC4Ae25Bf217ffA037E23170444": { - "balance": "0x2b8ed0e90d8f47d900000" - }, - "0x5C2eb311E882e00a4c130F3646C29016BC23F93A": { - "balance": "0x6193e350adae5b10000" - }, - "0x5C370fd28Adb0D83365deF036A2a751E6e13D44C": { - "balance": "0x4563918244f40000" - }, - "0x5C577Bf1f5f3C792c15dbE737678A6d7855a0ffd": { - "balance": "0x3f514193abb840000" - }, - "0x5CEAf4a83666DC1e2D5788e56fBbDBDcE2a58149": { - "balance": "0x3f514193abb840000" - }, - "0x5D27791d18FFd78900Ebd910353e6701356750E3": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5D2c537A0E95e899053d219686129170BBf9f22D": { - "balance": "0x4563918244f40000" - }, - "0x5D5aCe07b21709021cAf33f7969139f79158E3CB": { - "balance": "0x4563918244f40000" - }, - "0x5D705c167C52B3dECeCc48d08B041473530BB18d": { - "balance": "0x79f8ddcf2c772ee0000" - }, - "0x5D71478ccc3766992f2F7E5F60467Fd046541B38": { - "balance": "0x3f514193abb840000" - }, - "0x5DE795b7300F54CD9936019D73E1a967059ee338": { - "balance": "0x967c8fb296e740000" - }, - "0x5DFC939a45A3f80ABA58A09caa52a69EbDcbAD36": { - "balance": "0x4563918244f40000" - }, - "0x5DFD24C7E7CAcb042622688A4EA35e459C457f8F": { - "balance": "0x7ea28327577080000" - }, - "0x5Da4fafE70e084BdDfe14ee316cc1F0eDA3b1DE8": { - "balance": "0x3f514193abb840000" - }, - "0x5E3CC491481a1Ec7BE08852DC072a1130D2B6117": { - "balance": "0xf3f1b965e9c761b0000" - }, - "0x5E84Be8a90C4EA21Fef4c618791b27B2a9f48d62": { - "balance": "0x4563918244f40000" - }, - "0x5E852baB4dF49913319251A1F9c97B58a55eF2c6": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5E953BD2615Ebc483e181d60F18d4dD4c6eAda18": { - "balance": "0x8ac7230489e80000" - }, - "0x5E955d0CDBcB24d8dB3C1537d02D206CdcC93c1f": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5E9Bd523DB06BAa82C909E9a6983E2ae5d8398dd": { - "balance": "0x967c8fb296e740000" - }, - "0x5E9d1C94f201c8c14E288A4597722a4293FE6167": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5EB8A5e1aA1A553c0357d28a73E09F835a013cED": { - "balance": "0x3f514193abb840000" - }, - "0x5ECfb464BaeF902133DB3c2AFF41276a93CA2D19": { - "balance": "0x4563918244f40000" - }, - "0x5Ebd683a6EE08534975BEAdCf7C1dDCe692DFa26": { - "balance": "0x515093df72fa1f40000" - }, - "0x5Ed3BbB858C8C15aAE7dAf415ecbBfDBF7169CD2": { - "balance": "0x3f514193abb840000" - }, - "0x5F0B78a597CeB1AC29137A3BB59F1Edc3e080716": { - "balance": "0x4563918244f40000" - }, - "0x5F59917aB0CfecD847c7CDAA0F08aa800434c05b": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5F7554b57ff10c9A54735Ba25e14222BFC52613A": { - "balance": "0x28a857425466f800000" - }, - "0x5F92A7b3e97B79F6feE2a0C7bDf6C3E13D3C5b15": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5F938Eef52a6f814BDa7CA81AEE5D2E90206F867": { - "balance": "0x3f514193abb840000" - }, - "0x5FC7389b92252448Fd497eB07b79938ab8A84237": { - "balance": "0x4563918244f40000" - }, - "0x5a0707c809BAF80D1FBa263bcC86b9BD1243ffdf": { - "balance": "0x4563918244f40000" - }, - "0x5a2789766faf0BF964b9E2CC7E88AB7F989b6949": { - "balance": "0x4563918244f40000" - }, - "0x5a34Bc00BBA40c7B3F3a6f25f48e5085B7444674": { - "balance": "0x2393406ab4688e2a0000" - }, - "0x5a3502AC6E77B9be1A51455d0af312e523630102": { - "balance": "0x4563918244f40000" - }, - "0x5a46bB7f8656Bc6e9eb50912De71ACD1966eBe58": { - "balance": "0x4563918244f40000" - }, - "0x5a8Ac982E809ABd57D7F91D82De4bC77Ccec2777": { - "balance": "0x55ef523dac9a570000" - }, - "0x5a987cbaD031d88b64f347e6F3244Ad07Fa0E0d6": { - "balance": "0x4563918244f40000" - }, - "0x5aAC6f457F18a41FE784Db5e4D441Fbcc39A57c8": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5aC574bB14512EE604ECA6BA9dF26fE13C50CA5F": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5acCA8e15F3aB7A93e49e77487e1e4E623b94148": { - "balance": "0x515093df72fa1f40000" - }, - "0x5b0d6816A690dA57bB39790f406efc02392fdb4A": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5b230b9f42fA64fc9E886ee9A6B34A9B0d999A04": { - "balance": "0x3f514193abb840000" - }, - "0x5b6d4394ee81acE14EFa3eD7E71Ecaa6B01C8b05": { - "balance": "0x4563918244f40000" - }, - "0x5b8eb0827e4acE775d62C62d7e4F65f03cF46376": { - "balance": "0x8ac7230489e80000" - }, - "0x5bB18edFf363654e4D64282fFe6Fe68A96aF1E18": { - "balance": "0xecca2d59581a40000" - }, - "0x5bE9281f2B0b6Db54c12809188489B71b73a7938": { - "balance": "0x4563918244f40000" - }, - "0x5bEE11f662ACE80A4393b23E4F67C8d76268610E": { - "balance": "0x4563918244f40000" - }, - "0x5bF3AB1340FB6d0a91B3D37Fe7C036fb227398aD": { - "balance": "0x55ef523dac9a570000" - }, - "0x5ba9234C178AaBcFE2296092c1Fcc815f722F6Da": { - "balance": "0x5f68e8131ecf80000" - }, - "0x5bf2C9fe483d91f0c6dEB24AAF9A555eadD61b99": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5bf81Cb0718752a46ECD2c578304D98F95D87aC9": { - "balance": "0x1963d02ba581fe570000" - }, - "0x5c01D4D00903308006feA25E19ecff29B26a1E27": { - "balance": "0x3f514193abb840000" - }, - "0x5c12ca4b972CB4330F344978Bee120dC6Ee60367": { - "balance": "0x4563918244f40000" - }, - "0x5c2aaDD624B0Bdb8BfbB3bbeE5968aE225418FE5": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5c30690A5f11810C298c10642EB1f3288d29B6e7": { - "balance": "0x3f514193abb840000" - }, - "0x5c4452DCe7c259C7e73c5d25ab8bF93d6B1503E7": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5c963446F75D9E27a6183E714dF79f07941925EF": { - "balance": "0x3f514193abb840000" - }, - "0x5caEc75BCe76A418942C12D554e4482830d110f1": { - "balance": "0x313fdecc32e8000" - }, - "0x5d1d2f317Ed57de04aee50D8eE65d22d3275D9a6": { - "balance": "0xb7f1d343473755665f000" - }, - "0x5d33ee6e3109C204A8597c43Ea4949Dc7977Eb7e": { - "balance": "0x967c8fb296e740000" - }, - "0x5d51C6C8C2f789e2991768d0714876E76B8f355f": { - "balance": "0x1969368974c05b000000" - }, - "0x5d655f396C7b36d7B1B9F911c4955f02c87D950c": { - "balance": "0x3f514193abb840000" - }, - "0x5d7bd41e697A333a76aba9974fa81BbBb3D2613E": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5dB2bE76A0e707FFDA6f91cC38ACa68c4177399A": { - "balance": "0x3070f5d38330000" - }, - "0x5dC33F4a5a150AAa903799fa4736D555f55bE1E0": { - "balance": "0x2b5e3af16b1880000" - }, - "0x5dEA095E87F560ce912E11Fe628Cb3f6e2EA87CC": { - "balance": "0x515093df72fa1f40000" - }, - "0x5deEC8984AadF24A3015f272059aBa3aBfb9E8BD": { - "balance": "0x4563918244f40000" - }, - "0x5df1bacD8aE2DD526465Eb402f85E680c0FA1bB4": { - "balance": "0x1158e460913d00000" - }, - "0x5e09532A7528903D0Ce8d9f58064034667DcfdB6": { - "balance": "0x134ff63f81b0e900000" - }, - "0x5e1828DcEdF7f780cf603a78792C7F84f1DcF9f6": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5e5129a957A0A530dE3D927C743Ef2566aE30A57": { - "balance": "0xb45de8bd70cc000" - }, - "0x5e7286BcFbeB21AD7e4143247eBe7cD30aC3499e": { - "balance": "0x4563918244f40000" - }, - "0x5e8B33Ebd72C7D9f32020174f5e827D796a36b44": { - "balance": "0x3f514193abb840000" - }, - "0x5eA47c77461d9Fd64271868B0B716f4cf244906f": { - "balance": "0xa2a07efde66169c0000" - }, - "0x5ea4BA7Eed66720fe17Bcc6e5c77f667115Facf6": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5ede32CC53CE9B39701a58E75139Ae19E08101a9": { - "balance": "0x2a8f628249a4b42580000" - }, - "0x5ef7585F8467a931a2ABcd6346eA52768F9EbAFE": { - "balance": "0x3635c9adc5dea00000" - }, - "0x5f202Ca6cf5AB3f2be75050387eD37b4Aa5042DA": { - "balance": "0x4563918244f40000" - }, - "0x5f2371401eD2CCc6CcCA31D0340Ecc0fC9C25b42": { - "balance": "0x3f514193abb840000" - }, - "0x5f33855B0938b65ABBa6503C06dD3CaA7989Dd72": { - "balance": "0x4563918244f40000" - }, - "0x5f46390D4166AE0164edD48b8Bb1A5ED0F8E0343": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5f4802a629fCbce575fA3147404aE8145D3A088A": { - "balance": "0x3f514193abb840000" - }, - "0x5f8fC3257778C084cC93f518dec42f224c576991": { - "balance": "0x55ef523dac9a570000" - }, - "0x5f93ba1669aF4a6696034d47F5D03DFE2dB99C56": { - "balance": "0x3f514193abb840000" - }, - "0x5f942B0DA9bc1C1517C5A0b150e58DFFA33F15C8": { - "balance": "0x7ea28327577080000" - }, - "0x5fD61Fcb78eF8BD83D9b25cc2a972aE26C45F3A3": { - "balance": "0xad78ebc5ac6200000" - }, - "0x5fcEFaCfe770691e747f47B751B4972f96689eA7": { - "balance": "0xd02ab486cedc0000" - }, - "0x5fd90e08a9941f7A649F4234BdD876786aB6c7A8": { - "balance": "0x4563918244f40000" - }, - "0x5fe9CFa5cFECDC333eb102d219B4e77EAcdE9828": { - "balance": "0x967c8fb296e740000" - }, - "0x600CCB10E9AB7F9A54368AB92f31c40dAdda2d35": { - "balance": "0xad78ebc5ac6200000" - }, - "0x60137D61AB1412DD5cd61098A49524841F44B3CB": { - "balance": "0x32bbd65f87f5306b40000" - }, - "0x601567A7E2690caE2f15A4841FF5F7D8E16ed97a": { - "balance": "0x1c76f315ab08fa82778" - }, - "0x60204DC53b997C37B4bf84b920000A5a9A568E19": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6020a4d51a601A302b6faDc7a29403D77f46D5AA": { - "balance": "0x967c8fb296e740000" - }, - "0x605B964093aEBEa013CDAa6d04BAe48fd327095D": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6061F4c1BcccA29c2bAe603dc4FD9968D51aD052": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6065301C7E202e7c82b3cB82c50e1cdCa8e95381": { - "balance": "0x3f514193abb840000" - }, - "0x6070A30e55aDA368f6BC9259d3a2BBC63a3734B1": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6086Df629Af971247fa313106CCeb1212B887579": { - "balance": "0x3f514193abb840000" - }, - "0x6094Cf351d39aF430967380a5AA35fFA7Ef3d3bF": { - "balance": "0x4563918244f40000" - }, - "0x6095B3f16a1367c1C6C2dB26dc8F8617292700bA": { - "balance": "0x3f514193abb840000" - }, - "0x609786026f4666C7b7D5B5d67E0E122a79149A03": { - "balance": "0x3f514193abb840000" - }, - "0x60DE7D8AeBb08d9C3003a7872aD057343c6Aa79c": { - "balance": "0x3f514193abb840000" - }, - "0x60cF97A7aa049645D61c9B4A367818901Ab15f00": { - "balance": "0x5698eef06670000" - }, - "0x610242B3C6b25593791C1Fe4e26968536D924087": { - "balance": "0x967c8fb296e740000" - }, - "0x610Eff58142181f939dA2aFB41C106aD28245a9E": { - "balance": "0x4563918244f40000" - }, - "0x611fe1F16B5a8705eFd837E2839C25940258Fc58": { - "balance": "0xa688906bd8b0000" - }, - "0x61421c60e2221830C92a020dCdb68611d7A8c913": { - "balance": "0x8ac7230489e80000" - }, - "0x615c3EBe01a9BE8fFb080A010EAF5fc29785dE08": { - "balance": "0x4563918244f40000" - }, - "0x615c48B50DA330323FC6961e0DAbE1b8dFe79F19": { - "balance": "0xad78ebc5ac6200000" - }, - "0x61653Bf8f03C82A7b2aD2Fcc877DA9514e5a0Ffd": { - "balance": "0xad78ebc5ac6200000" - }, - "0x616dE5848Ed7D24C90e01B1b9a3766c984C36741": { - "balance": "0x3f514193abb840000" - }, - "0x6177671CFb0f522DF7BEd041835ec3252dcC7086": { - "balance": "0xad78ebc5ac6200000" - }, - "0x617F7063AAd0553512A0BcDf4b147052281A8377": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6182275531B9A2C1c55CB14Ba118741773053dB0": { - "balance": "0x55ef523dac9a570000" - }, - "0x618Cbc1a011BD7f99424ecf8CD710143d4142519": { - "balance": "0xad78ebc5ac6200000" - }, - "0x61B3c970Df88BFD3deAF268577Cc8A305Fc0C1b6": { - "balance": "0xad78ebc5ac6200000" - }, - "0x61CD863f537D658F866782E24A97a61dF55b39D9": { - "balance": "0x68155a43676e00000" - }, - "0x61a3B536B39ee28844eD61a2D7Cf9868A6206815": { - "balance": "0xde0b6b3a7640000" - }, - "0x61bE912D346a65A5Aa18334400d37B5C5DAAC815": { - "balance": "0x4563918244f40000" - }, - "0x61c69cF693143ea453f7667C5022e4FF94993cac": { - "balance": "0x4563918244f40000" - }, - "0x61cB3377451133E27326e5581f648875e3319Aa8": { - "balance": "0x43ca15351c37c680bc00" - }, - "0x61e5097d8469f0B0edAf642f2bF06df7c29cce69": { - "balance": "0x93739534d28680000" - }, - "0x6205fcF2726e2181702aef0023600cf63e5044c6": { - "balance": "0x3635c9adc5dea00000" - }, - "0x6216f9002C260eD7dAEBF451f941688F8073e47B": { - "balance": "0x1a055690d9db80000" - }, - "0x622c32896E8D7b881f8DdEfc4e3E0714aD9ae675": { - "balance": "0x3f514193abb840000" - }, - "0x623277A2980D966Af7218451cFe1d4661300D741": { - "balance": "0x1158e460913d00000" - }, - "0x6239Bf5928fe80343012E2eA5787aE1272648C33": { - "balance": "0x4563918244f40000" - }, - "0x623d148476049195Eb4fd14292346B6339F9D59e": { - "balance": "0xad78ebc5ac6200000" - }, - "0x626e3B2925143Bd4eF45e5Ec43e5b6c97b01dc4f": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6282205C4D9871BCEa1201D755Cd38A6d282B823": { - "balance": "0x8ac7230489e80000" - }, - "0x6288263202DF47EF885D474318d7b40A656226FD": { - "balance": "0xad78ebc5ac6200000" - }, - "0x62CAdDEcDD6614aCD65a408e0482Ffeb36A00ee7": { - "balance": "0x4563918244f40000" - }, - "0x62E7258115DCb9F1368e0be9E0Bc62F6A1b30454": { - "balance": "0x967c8fb296e740000" - }, - "0x62c15527723f5B11ec2644314fb4853514471e45": { - "balance": "0x3877aae596c4e0100000" - }, - "0x62c8ca0f8D64FEee534336b7e389928F91C354f1": { - "balance": "0x4563918244f40000" - }, - "0x62cEf0fe8fC827fa0Af7B3a8971672Df70023975": { - "balance": "0x2b5e3af16b1880000" - }, - "0x62cfc31f574F8ec9719d719709BCCE9866BEcaCd": { - "balance": "0xb9c33447b178000" - }, - "0x62e178bf2123a73dd085ff56a9242dF6AF305d58": { - "balance": "0xe23f105bc8b729000" - }, - "0x62fe7145E1cD757dd8E8D52f0940267A0384Dbce": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6305908D6B94E1D87e4b8F0cd7346eeaeA02eb84": { - "balance": "0x4563918244f40000" - }, - "0x633d9380a1123BB17550420A0EA5feBD2818e35d": { - "balance": "0x1158e460913d00000" - }, - "0x634221eb8D6c07312f2935DcEae5B586f5f104ca": { - "balance": "0x4563918244f40000" - }, - "0x638448F443cF7ceD8f117100ba7BEF03037f4983": { - "balance": "0x967c8fb296e740000" - }, - "0x63864F6D2a1502C19a0cA30e8799A8289F213a84": { - "balance": "0xad78ebc5ac6200000" - }, - "0x63882195D8769BF232922Fb1A8D5B89C0d84EDb9": { - "balance": "0x515093df72fa1f40000" - }, - "0x638D396faB90DdA702F8cBB2819ce9B3dd8861B1": { - "balance": "0x4563918244f40000" - }, - "0x638Fc75726baEa60304B38be38d3B583F923Ab6A": { - "balance": "0xbcbce7f1b150000" - }, - "0x639a8f144C3F1C6C92233aC0386A373E425EeA68": { - "balance": "0x3f514193abb840000" - }, - "0x63Cd51CEcb1D22875057c68a4b159E01f4216c05": { - "balance": "0x920a45c02735757c0000" - }, - "0x63E5011fF41768e48f281FD93949eB752D7Ff626": { - "balance": "0x8ac7230489e80000" - }, - "0x63a5d86Ce4d009601Eebc81f4345Bf6e3F7d1472": { - "balance": "0x3f514193abb840000" - }, - "0x63b327f133A985e71ae5153f4F18B74125f27187": { - "balance": "0x28a9eb615a1e2b60000" - }, - "0x63d97A208B27a36347BCFC2c35769453484862E9": { - "balance": "0x515093df72fa1f40000" - }, - "0x640D8dBDe1cD3f4Ced5C52eD9fF24629A083A702": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6419aA3b7A41Ad9B982A88E600D0aB6A360cCdC1": { - "balance": "0xad78ebc5ac6200000" - }, - "0x64541ba0cA8686891E6C3b51C23037Af30957070": { - "balance": "0x3f514193abb840000" - }, - "0x6457bdcC93FcfdB342D681A64Fb64a9E808e1eff": { - "balance": "0x97f4f99972b2a2d10000" - }, - "0x64588b1033657738DFC10a675AA2CaC5433785B1": { - "balance": "0x3f514193abb840000" - }, - "0x646D93Da5d3Ab2a924fA5398BbBEEff4e9d83b93": { - "balance": "0x5f68e8131ecf80000" - }, - "0x648EC48016Fc9d60D136AE7985Ef94563084C9D7": { - "balance": "0x88313b3a854240780000" - }, - "0x6492d966ec9831142A41b12BFf08727B91C0393B": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6493aC3446C644ED5b5996Dfd7366Af23405BB92": { - "balance": "0x75398604e20dd7680000" - }, - "0x6494171Ccd6AeEf68b3DCC8464B99729b76722Ac": { - "balance": "0x4563918244f40000" - }, - "0x64ED958f838fAe61e441F106c4B345bFc1f02f4d": { - "balance": "0x4563918244f40000" - }, - "0x64e5b160586956262fe217D34e86feD8D8fAC09c": { - "balance": "0x4563918244f40000" - }, - "0x652c1E5A869c58d6fD427017bFe967B4BDA753a5": { - "balance": "0x3f514193abb840000" - }, - "0x652df5bf5cC788B19233638089E4A66F7Ecd690e": { - "balance": "0x55ef523dac9a570000" - }, - "0x6540f8F6d070b2912e31B29e9DE2a058C46c4Da5": { - "balance": "0x11a56567bf1d860500000" - }, - "0x65414853B153bc019409A1f5976866d58ACbFD9a": { - "balance": "0x4563918244f40000" - }, - "0x65684f2E45394337cfAe71615a0c95eEfaD743B3": { - "balance": "0x4563918244f40000" - }, - "0x656C51C32A7DA05E825E3187C39aeFc604fcA351": { - "balance": "0x6b9e6fb66226970000" - }, - "0x6582886206275F9736D622537663A12EFD228c83": { - "balance": "0x4563918244f40000" - }, - "0x6583Ef67fd9fF036B9BFE2a2A29FF05d223f30e7": { - "balance": "0x15af1d78b58c400000" - }, - "0x659502448E812A7a6ff6e39C104ba717E497364C": { - "balance": "0xad78ebc5ac6200000" - }, - "0x65F98B6eB00b27FE7BFbDe0C3395074f22f48895": { - "balance": "0x3f514193abb840000" - }, - "0x65FCe57553524cF2bc6dDfBD45Accf941B4D7F6c": { - "balance": "0x17be5481d7d7df431800" - }, - "0x65f3dc3F030e91D049e3bDc8486a73fcF1129a35": { - "balance": "0x3070f5d38330000" - }, - "0x66076811D58c2a23D95D220eD0c761EdFFd4E172": { - "balance": "0x3f514193abb840000" - }, - "0x66535Df904A7ada43b378eE94D9746CfE3772e05": { - "balance": "0x4563918244f40000" - }, - "0x666A295b4c29FC3123204cc4EefB624EEb4f2400": { - "balance": "0x8ac7230489e80000" - }, - "0x66cB1b7BcDBd9E02380066059018Be9F03504223": { - "balance": "0xad78ebc5ac6200000" - }, - "0x66d69696aa83DeA4dbb918c0534b7BFbE0fef8b3": { - "balance": "0x4563918244f40000" - }, - "0x66e26CE8eC68613f80cd052f0087ceEfF8c0E00E": { - "balance": "0x4563918244f40000" - }, - "0x66f86ec0280B91110AF9b1159675d9ea00295620": { - "balance": "0x4563918244f40000" - }, - "0x671391738b2A6781A684902bBf99534F21E96d91": { - "balance": "0x4563918244f40000" - }, - "0x6739602632BFDBCC451f3538A0d7c2C83FBfF926": { - "balance": "0x8ac7230489e80000" - }, - "0x674f6b43AA84e039F37BF01CB53fcC195f27dA38": { - "balance": "0x4563918244f40000" - }, - "0x67558a248a16142165B9F20D5c62A6AA2532753C": { - "balance": "0xddfd413d6e921df0000" - }, - "0x675b40d4a63f5F286EC5E8C97F6Ef4119C6F3bA6": { - "balance": "0x3f514193abb840000" - }, - "0x676AeD026D8A257D8C0f7fD58D9FE2d439C043C2": { - "balance": "0x3f514193abb840000" - }, - "0x676E63974d15DD6e6bB8f249db4f947f0f6127D4": { - "balance": "0x515093df72fa1f40000" - }, - "0x67772417D78CdB804eC1d52A0B7f14c89F5aEa65": { - "balance": "0x4563918244f40000" - }, - "0x678e41e0607EC4d56f590B57c32545225F892a40": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6792742a79b93CC90B61F9Fa35467D79D70d716B": { - "balance": "0xad78ebc5ac6200000" - }, - "0x67A1084221CE8bbc330ACbDAE5f3C816d5Fc139B": { - "balance": "0xc3663566a580000" - }, - "0x67B94E6d657D363bde378e613859FbEA4A86535F": { - "balance": "0x3f514193abb840000" - }, - "0x67C4b05c8fE7dFF69bbF5e4c952176F43957338d": { - "balance": "0x7c695bb451bcc6d0000" - }, - "0x67ad8494d5EcF29018C49F806B47c24dDFBC0e4a": { - "balance": "0x1158e460913d00000" - }, - "0x67b56f29A74CF0a46b5D9B4aAC5e54d4B8Cb4AdF": { - "balance": "0x4563918244f40000" - }, - "0x67cb7Efa84835A2cdba543fAD862298E651CE793": { - "balance": "0x4563918244f40000" - }, - "0x67eBf3726A02e70828F82D7a4B432dfD03062284": { - "balance": "0x1bc16d674ec80000" - }, - "0x67ffb0C645f5843FF88a6ff0fC91fD1798974e57": { - "balance": "0x55ef523dac9a570000" - }, - "0x6835a0ac71CABCCE8bE56258e8Fe9F082F7C7278": { - "balance": "0x1158e460913d00000" - }, - "0x6844957459E2227880061F8Ec40f586cB722E960": { - "balance": "0x3f514193abb840000" - }, - "0x685C99Aea6502586eBB076c38E69275952F2e207": { - "balance": "0xad78ebc5ac6200000" - }, - "0x687bb9678D443D473F696982043aA31f3c1fd2Fa": { - "balance": "0xad78ebc5ac6200000" - }, - "0x688A944D60cEF475b64F4eFbC2311d8EEB777625": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6899ccBA54E24950E6036BFD8CeC3F637D932090": { - "balance": "0x515093df72fa1f40000" - }, - "0x689C56AEf474Df92D44A1B70850f808488F9769C": { - "balance": "0x1f121c8f766c0d14148800" - }, - "0x68B1D50bbeEe2Bc53256A518a7a75F5542A452cd": { - "balance": "0x515093df72fa1f40000" - }, - "0x68D217d2E89edAde8833578976fA9722796f7233": { - "balance": "0x16345785d8a0000" - }, - "0x68E4347dBCE07c1ba09f2557A6e8F8cEf4e96C3F": { - "balance": "0xad78ebc5ac6200000" - }, - "0x68F4bF42dd795ee9d1a01C6bBA6C89c8E1f5CA48": { - "balance": "0x515093df72fa1f40000" - }, - "0x68acC0DBACD11B362c52e2AF0DcecA498D6A236B": { - "balance": "0x4563918244f40000" - }, - "0x68c9C3B623B928449788b6f766e3FCf5712df170": { - "balance": "0x5150ae84a8cdf000000" - }, - "0x68d35438b8F0e81c4c6661901F31b16D5F1DBE0D": { - "balance": "0x2393406ab4688e2a0000" - }, - "0x68dC41c9Cbfd5F1b7E5be5338b7A914e22258967": { - "balance": "0x145424d455cc180f0000" - }, - "0x6901Ec8E280B14f359c34bCbD33421A66BA0a71C": { - "balance": "0x4be2f5c5394e520000" - }, - "0x690d95cC68eF0324519Fe623279fFa9F300aBFCE": { - "balance": "0x967c8fb296e740000" - }, - "0x6910bbd96C2326aB42abCbBc1494AeA0803b25B0": { - "balance": "0x4563918244f40000" - }, - "0x691829E89567Ce49109562859A3F98Cd1505B403": { - "balance": "0xc9a91c4591d39620000" - }, - "0x6919D3C0ba0fB6761Ccc06d3F63e77948EDb28c5": { - "balance": "0x8ac7230489e80000" - }, - "0x692A3beeCe99CB8C412e099e2D56e9295E0f5D54": { - "balance": "0x3635c9adc5dea00000" - }, - "0x69399699409B2AD03437Db31A5De854C84D26559": { - "balance": "0xad78ebc5ac6200000" - }, - "0x695D91C1274faCAaedc8CCc149D715bf76E48C35": { - "balance": "0x3f514193abb840000" - }, - "0x6968D60DC4BD8EA7292554a01Cd755a0C446376a": { - "balance": "0x4563918244f40000" - }, - "0x6977Dfe21B8EEbfFe775Cc637E5A9e3c744c6Ad8": { - "balance": "0xad78ebc5ac6200000" - }, - "0x69780Fb30194CFd22456d7C0502639eaB6fcef2d": { - "balance": "0x4563918244f40000" - }, - "0x6981FC86f1dA6fEE43D2059B0abf037713B746B5": { - "balance": "0x3070f5d38330000" - }, - "0x6987dA8c3AF0Fc1dC174b8773754b8E2162ECC22": { - "balance": "0x8ac7230489e80000" - }, - "0x69A8B5652004914A0B5147E364E41B89818B1DD3": { - "balance": "0x28a857425466f800000" - }, - "0x69C52c6DCc2Be4ccadccBF9c07609b5D6C73766C": { - "balance": "0x3f514193abb840000" - }, - "0x69E4837eD797df973B3422a70810404f75eB938a": { - "balance": "0x4563918244f40000" - }, - "0x69a81bc02163Ed89eC786342813858583681a761": { - "balance": "0x4563918244f40000" - }, - "0x69bb4dc67A0A00FbCA7fB385Adc91c93E232b870": { - "balance": "0x8ac7230489e80000" - }, - "0x69db037277e5bCc77F2C0C9b97EF24ba47edb8ac": { - "balance": "0xad78ebc5ac6200000" - }, - "0x69e1AeC744c1872c66b7f9c95c0F373F6EA7ED02": { - "balance": "0x967c8fb296e740000" - }, - "0x6A1C30C45F65D8554381eBc9Fc1754Db46d60717": { - "balance": "0x4563918244f40000" - }, - "0x6A31f2CAA375F6F83973Ce08C067b270EA6b1962": { - "balance": "0xa2a15d09519be000000" - }, - "0x6A56d78bF53bcE2450A6e067F5f7C8D1CDA1F4Cf": { - "balance": "0x3691d6afc000" - }, - "0x6A8155bb737A0c2aDECAc526cD0f564ad22A5323": { - "balance": "0x4563918244f40000" - }, - "0x6A937A6D486F4fE70EC738950F31D7b1a3a1B50F": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6Ae4DC5981E6B7e9F13528a3CEe9fB257e3fe012": { - "balance": "0xfe9f6a0a707ac0000" - }, - "0x6AeBeaAB4Ad87b5D74cf43a61cCcd6e5f00903fc": { - "balance": "0x147d0b7b475680880000" - }, - "0x6B0121b6b1E91179B96C037d872cE5261C392d69": { - "balance": "0x515093df72fa1f40000" - }, - "0x6B0d282a917814Cb035fb5481591538B33468d8B": { - "balance": "0x3f514193abb840000" - }, - "0x6B1BBF157B148daE9637901420A410C0C8733Ca3": { - "balance": "0x5164a18b4b0e8fc0000" - }, - "0x6B3eC4f371AAf12aa1D5Ebf9ffb6067dffd33823": { - "balance": "0x15af1d78b58c400000" - }, - "0x6BA3c4b9b8c9358c4a425046497E702299310F87": { - "balance": "0x1158e460913d00000" - }, - "0x6BDeC87008d5672Ec0A47409f31dC1e58C0E0EDC": { - "balance": "0x4563918244f40000" - }, - "0x6BF0E3e28B0f0C429278A965092C1Be40CEc03DB": { - "balance": "0x4563918244f40000" - }, - "0x6Be263f3Ef83c183FE3b7D01a6E364AD81083077": { - "balance": "0x11c37937e080000" - }, - "0x6C05d43d86bA89698e9BAC9E9d35ad9Ad45c08b4": { - "balance": "0x1c36745b0420aa050000" - }, - "0x6C0e8D7899bC86Da1a777feF34bf5500BB58823e": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6C263c702828047cbe000485EC813532ef083363": { - "balance": "0xecca2d59581a40000" - }, - "0x6C62923AF79C9005F85EdF6c65ccAe44f0c8E78a": { - "balance": "0x3f514193abb840000" - }, - "0x6C6F6d1e2d48B5381234f9feEe0dfBa5477Dd0FF": { - "balance": "0x15af1d78b58c400000" - }, - "0x6C8Fe2b6ff15Cf8c474fC1CaF4317188fb75FF70": { - "balance": "0x3f514193abb840000" - }, - "0x6CDb1397D0F692D68D84c5B8B694a4679Ba0e501": { - "balance": "0x3f514193abb840000" - }, - "0x6Cdc455A76bf44f851a2f631f0C76483aB1A4dd4": { - "balance": "0x4563918244f40000" - }, - "0x6Ce33d87F627820c721ee24766184C8E04861ce6": { - "balance": "0x56bc75e2d63100000" - }, - "0x6Ce34e412f8CB0c38cb2e40bC62B6a4ce88d4eb4": { - "balance": "0x821ab0d4414980000" - }, - "0x6D6c3448097df124833C84034d65604802cE6a50": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6DC0280BbF2cb480d439BC5099bCAC714679CcA4": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6DC9337448319Fc195b34cAC6d4753cddA81Ba5C": { - "balance": "0x1158e460913d00000" - }, - "0x6DF78D5363Fd5A52DEdFA0844601738532Dc69E5": { - "balance": "0xa371503afd9c1e70000" - }, - "0x6Da07c1DD3194f665156e30D32fC415283ea291E": { - "balance": "0x3070f5d38330000" - }, - "0x6Da386f4248a46FCE8a7b2F87D34af1Ac3124371": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6Dd4734e858a87F2C685018240622088620cD4aE": { - "balance": "0x15af1d78b58c400000" - }, - "0x6E1a5c6aEeB3C5422E1955556C179b0bA6732027": { - "balance": "0x4563918244f40000" - }, - "0x6E3fA36449C4Ba5B3653Ca29eB527eBc23619802": { - "balance": "0x75af03122f50000" - }, - "0x6E523Bfc6A2573d42eCF4d2776d82c1dD46bBae0": { - "balance": "0x967c8fb296e740000" - }, - "0x6E76FA4477F4dedD46E4fDd7bC6295b86848814C": { - "balance": "0x3f514193abb840000" - }, - "0x6E78fa292C856285cea38F22a4669e19435Ee54A": { - "balance": "0x55ef523dac9a570000" - }, - "0x6EB06f4Cc2a1102A833150f63e9324d12713f254": { - "balance": "0x55ef523dac9a570000" - }, - "0x6F02D990C96C1d71d4eF395F1475E2BBB65E5267": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6F055d1F55DdB87953243EdF1a9Ed01738a418f6": { - "balance": "0x3f514193abb840000" - }, - "0x6F1C7aAfe89cEAADa0DC80E47956eF46c9e540C9": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6F5e71C0265dc42aE10943C88396C34B0e9a44C1": { - "balance": "0x4563918244f40000" - }, - "0x6F8772Da3257DB3483567aA23293934c753d65a0": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6FBDD55de6C7Df3a88EE2360dC7502A60146B073": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6FEA170EEcdf3738a0652aEF50840ecbcf70BD68": { - "balance": "0x234acacf7e3b0c0a00000" - }, - "0x6FF0330C15BD87a04F8E07fdAf55cea484E9938b": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6Fb33d47CF26AecE1A04F4Ee0dB59cCCb23b3E9c": { - "balance": "0x5150ae84a8cdf000000" - }, - "0x6FbEF8C6D816C5635beC296Ad19040Dc8320bD67": { - "balance": "0x2e365f2b4aaa711dbf000" - }, - "0x6a05984427f86F796c64858F859df519658e83c8": { - "balance": "0x4563918244f40000" - }, - "0x6a471a3dDb01740119BBDbD110B60BD6cD6362E9": { - "balance": "0x4563918244f40000" - }, - "0x6a56F194EE40aE7d11E78bed8227D2768828Cb20": { - "balance": "0x4563918244f40000" - }, - "0x6a6EA7db067d555cbB7F6b10ad96968F832FEdF7": { - "balance": "0x1043561a8829300000" - }, - "0x6a85206524eE0215CBf49D7AAC3EbDd85e161ef5": { - "balance": "0xecca2d59581a40000" - }, - "0x6a984Ed4090A2211AD34d94E7BCd16C3f5A4074a": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6b0720340e9b942f3D05CE70b5f18dDfA944A8fD": { - "balance": "0xde0b6b3a7640000" - }, - "0x6b11225Baf2BC7249E34d5f4bD469f27C6D239dA": { - "balance": "0x8ac7230489e80000" - }, - "0x6b188964c532c9003213a828311314F3C81cD984": { - "balance": "0x3f514193abb840000" - }, - "0x6b3527B7464F275536210af5Ef1c0e8e45961d28": { - "balance": "0x9e67b061b4d0db6db" - }, - "0x6b6aDeBE1b5150E30d9CedDC6C4FD1082dD4D662": { - "balance": "0xf936b63990df771ec000" - }, - "0x6b6f3c20a0263Ea55f30B810A5789f5c7C0dbb2D": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6b7c75F1c04c7B83259972E35dA09CcE78773C70": { - "balance": "0x3635c9adc5dea00000" - }, - "0x6b9E767e13FB0672B78cf8D17CD018c5D6AA0844": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6bFC6682aa864aC16fc590F16159684C7A433066": { - "balance": "0x69e0606e7ab1241e00000" - }, - "0x6baB80F5094c2f91E4F50EF72DDe609b98C21729": { - "balance": "0x3f514193abb840000" - }, - "0x6bc3DA46182993Dd758e1f998054FCf52281bf4A": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6be9583e5dcCfbFaB8e54D38E291CC36e2b79183": { - "balance": "0x4563918244f40000" - }, - "0x6c02b5a21fC7986B90Ce8C822469d87430ea99cA": { - "balance": "0x967c8fb296e740000" - }, - "0x6c1A5024E3312fBCe150730fEB51e897b062A061": { - "balance": "0x4563918244f40000" - }, - "0x6c50d70e231E4F869F422EBE2B70AE5879852D73": { - "balance": "0x3f514193abb840000" - }, - "0x6c81b5eafEedd4466fBF89B7afE9D58211df06e1": { - "balance": "0x4563918244f40000" - }, - "0x6cBD6D4e5a79b1bD588d6eCFf57BabdDec5CE76b": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6cc88953C5735Ac0F4E5955C6365111E7c2C4970": { - "balance": "0x4563918244f40000" - }, - "0x6cd898aDd40E4A343cDfBa2bd659a2E59dc90865": { - "balance": "0xb6139a7cbd20000" - }, - "0x6d2a2256D39bded977BE2Ad5F0e516bBBcD49b1E": { - "balance": "0x401c44b3e12badb6db" - }, - "0x6d36829Ac4af1615E951D9e1914F086759534400": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6d6ed077AdC3f08fDAa8de74215c31AE51e3F602": { - "balance": "0xad78ebc5ac6200000" - }, - "0x6dcfc8eD98A15f050485bDea941dAeDbb3C0Fab7": { - "balance": "0x16345785d8a0000" - }, - "0x6df8e8F41A997693AF8Bc09BCa45Eec7Eff3f3ab": { - "balance": "0x4563918244f40000" - }, - "0x6dfE28D04e66Ed84C35022B313dE14811DD70F40": { - "balance": "0x4563918244f40000" - }, - "0x6e0621AeF065E3e8D88772e300C02793A4f8525c": { - "balance": "0x515093df72fa1f40000" - }, - "0x6e2d973f345f1600677591944931Fbf2348bbC82": { - "balance": "0x3f514193abb840000" - }, - "0x6e3131da7179359915BBc1FE62438FE594D3242e": { - "balance": "0x4563918244f40000" - }, - "0x6e4B752A81dEc55415304f765A5274BD851EE57d": { - "balance": "0x8ac7230489e80000" - }, - "0x6e7701ef0392bD0b6456fcCB2E418aE158750740": { - "balance": "0x55ef523dac9a570000" - }, - "0x6eB0Af204A08d781C29ef167099EaEc18bF80a4f": { - "balance": "0x55ef523dac9a570000" - }, - "0x6ed32fFeee88382387d4dA1D496de01bf7A537c9": { - "balance": "0xc12dc63fa970000" - }, - "0x6efcA373466d59a90D3Eeb808249E84cEA117216": { - "balance": "0x3f514193abb840000" - }, - "0x6f4898E8d3F875118A4548d05df1ed535B45A15b": { - "balance": "0x3f514193abb840000" - }, - "0x6f4a323b3815492bB2d2Dc20e10435FBFe6B129E": { - "balance": "0x15af1d78b58c400000" - }, - "0x6f8a25C84b865c3731D51bb045c038c0Ef7Cb6e3": { - "balance": "0x3f514193abb840000" - }, - "0x6fA9A435c8fA2DC67AD3045A6258511326c84e8b": { - "balance": "0x3f514193abb840000" - }, - "0x6fa4141B278625fAf7A176f19425Fbc165A5c721": { - "balance": "0x4563918244f40000" - }, - "0x6ff41BC3471889deac1Ba6A86C6ef62ceAA984f2": { - "balance": "0xad78ebc5ac6200000" - }, - "0x700054097BE4Da89733406fc9067ffe943a399De": { - "balance": "0x15af1d78b58c400000" - }, - "0x7002Fb4dC885F7c50495fdaD0F8a19d0F6aa3A84": { - "balance": "0x515093df72fa1f40000" - }, - "0x700d414504b70795670A17b6bBc9F5Cb5ebb4E00": { - "balance": "0x3f514193abb840000" - }, - "0x702043cE7d66E09381919799fdC9489F146334bd": { - "balance": "0x967c8fb296e740000" - }, - "0x70336841725201F0974Bb61E0D4af05E48d6B92d": { - "balance": "0xa688906bd8b0000" - }, - "0x7039b77E01553E9833E9D9F194FD44E3339bfF9A": { - "balance": "0x4563918244f40000" - }, - "0x7043816DB4b33a2Dc8DDf8f33872cE2b6426FB13": { - "balance": "0x55ef523dac9a570000" - }, - "0x7074fDde3dBb08D567ce5662BeD403a8db514d0E": { - "balance": "0x3f514193abb840000" - }, - "0x7079c056f8f72D12A737eb0ac1c8d3D1E046BdEF": { - "balance": "0x3f514193abb840000" - }, - "0x70868912318eeEa9A02cD5dd9E762d4c99E58bB2": { - "balance": "0xad78ebc5ac6200000" - }, - "0x70949063b9F06Cd249104F92d694ddc17b67e5EA": { - "balance": "0x8ac7230489e80000" - }, - "0x70991acE29eD7dD7E570eE5537f2eF5e5255A0BE": { - "balance": "0x14541dc0737fd49c0000" - }, - "0x70B37a5fFb48FD6B7D0c401EE8f81177D2bF242D": { - "balance": "0x4563918244f40000" - }, - "0x70Be75744C708D71F628BCe46aE13259061B01FF": { - "balance": "0x967c8fb296e740000" - }, - "0x70F27eCA22A8dacC4E110483d603C133E12881b4": { - "balance": "0xad78ebc5ac6200000" - }, - "0x70F28F7f689c2c523ca0b947FF96606b48d78858": { - "balance": "0xad78ebc5ac6200000" - }, - "0x70F7613F73798b171788b618b2d06Ec1e6d8e353": { - "balance": "0x1158e460913d00000" - }, - "0x70cD7F81890dB5F63f92A4802A51492447eb86f8": { - "balance": "0x8ac7230489e80000" - }, - "0x70eF6020731E18bDdB937769C0bdEd0Ff9BBfBC9": { - "balance": "0x967c8fb296e740000" - }, - "0x70ee24a7A081BB5F231042c44ca83cD8d401537f": { - "balance": "0x21e19e0c9bab2400000" - }, - "0x70fe0c13fFb15527a9CA0374268daE1B103686bF": { - "balance": "0x15af1d78b58c400000" - }, - "0x71121CabFd32349Ced5fdaFBad4Ab84c84B2bC63": { - "balance": "0x4563918244f40000" - }, - "0x7120841BdF4100Ed6F245A456942F18351e2344E": { - "balance": "0xad78ebc5ac6200000" - }, - "0x712cf311e61650E47d5d85A0E158Fd3F96962cCa": { - "balance": "0x21e19e0c9bab2400000" - }, - "0x714613bF5DAF8EA2868206eb30e733709ad1fDE0": { - "balance": "0x4563918244f40000" - }, - "0x7176F1Ab06a96723571710d6C4f40c61762e0af2": { - "balance": "0x4563918244f40000" - }, - "0x71Bf08b80740A9C01084F973fb05182eBAf14eC6": { - "balance": "0x3f514193abb840000" - }, - "0x71Bf7f21Cd4270Ea47eda14f237Fd1Ce01A50c8b": { - "balance": "0x3f514193abb840000" - }, - "0x71D1915DFBe93740F37ea10e281BD7cD91f50adf": { - "balance": "0x4563918244f40000" - }, - "0x71E16D6C765788807BD83Cb87FC2F76894Eee1f4": { - "balance": "0xad78ebc5ac6200000" - }, - "0x71EDD2C6A6ff394Ef44eC658ea1Ef74deD9Db98F": { - "balance": "0x4563918244f40000" - }, - "0x71a3252f429986a43BDE02AADb88c2735294d101": { - "balance": "0xad78ebc5ac6200000" - }, - "0x71b867449E2091EC3E938845bB2Ca55B9f332BDf": { - "balance": "0x55ef523dac9a570000" - }, - "0x71bA84A38e0D45277e78D68bE513de767c71C314": { - "balance": "0x55ef523dac9a570000" - }, - "0x71c2688c654250Bc13Cc074470f5aAc20BA8856a": { - "balance": "0x3f514193abb840000" - }, - "0x71dbaAC0128bCE4d5489B08D3177e79caED37939": { - "balance": "0x3f514193abb840000" - }, - "0x71f01Ef048375538E5db76578a347A394e7E524A": { - "balance": "0xad78ebc5ac6200000" - }, - "0x7207a3c46022aC7e40aD713dAd198De91FA3D06b": { - "balance": "0x4563918244f40000" - }, - "0x720EbEB6c60C37b59436ED7C8A49fced5E2856e1": { - "balance": "0x4563918244f40000" - }, - "0x721E71a3BE0f0B439ae5e9E2fC8e2EC85FeDDD4f": { - "balance": "0x1e7e372cbd38ec360000" - }, - "0x722bFEd4319041946f097A6811f8C4F1588D3eB4": { - "balance": "0x4563918244f40000" - }, - "0x72335D59ca30311d43ec9bFB243B1f80c98868E7": { - "balance": "0xad78ebc5ac6200000" - }, - "0x723C805d716ACd360440C72b3994014E279AcaF1": { - "balance": "0x267ab61dd056e8a8000" - }, - "0x724bfc57bB536Aab95b52C0270BfDd499834E0cb": { - "balance": "0x515093df72fa1f40000" - }, - "0x725F221a5c1C5F241e2007a332f7ca6404D00fC4": { - "balance": "0xecca2d59581a40000" - }, - "0x7262D8F292d6916a4329D22515940E599FBA5c0B": { - "balance": "0x52508dad392c33c0000" - }, - "0x727F4a4984A500918314e631E30CD12B2A96BE7E": { - "balance": "0x515093df72fa1f40000" - }, - "0x72912Ad27B6ECb65DbA3A42d4d522856C2AaD1E6": { - "balance": "0x4563918244f40000" - }, - "0x7296B09fC76103aC7307FF64eCBa61724F320fba": { - "balance": "0x4563918244f40000" - }, - "0x729DA7170a403E1C6be7097740221E19D7E2b817": { - "balance": "0x1158e460913d00000" - }, - "0x72E07d61D8ddF3d3Cde8311377AAE0c4241dA4C2": { - "balance": "0x3f514193abb840000" - }, - "0x72aA176B32557142EAB012E1280cA2264B8d5FaD": { - "balance": "0xad78ebc5ac6200000" - }, - "0x72b0087Fc05294A64Bcf4dcDc3717be78bADcEC5": { - "balance": "0x3f514193abb840000" - }, - "0x72b30454F8147fbB1Dd993af4B2CA12eC5B4DB1c": { - "balance": "0x13da329b6336471800000" - }, - "0x72b3eA7FDD0e48757dD921a08a5297D5F7279f20": { - "balance": "0x515093df72fa1f40000" - }, - "0x72b52d2d77E0a047a6733995A38833f701668D6e": { - "balance": "0x2b5e3af16b1880000" - }, - "0x72f5Ea5015b68a7987D926830212A748DB0184B7": { - "balance": "0x967c8fb296e740000" - }, - "0x73271041125Cee25425ebE8b195a75449Bc84F21": { - "balance": "0x3f514193abb840000" - }, - "0x732efEe2f54C4E90099753133c98eD207111124B": { - "balance": "0x967c8fb296e740000" - }, - "0x73405d1c2811c2CcfB346aAA0A2da87C6991EE5C": { - "balance": "0x52663ccab1e1c00000" - }, - "0x7341a2a8275E8E155c823421d349a19B3a7Fe8e5": { - "balance": "0x4563918244f40000" - }, - "0x73736a74F5d80aD6C8C71a4E0651E9dfFF789a13": { - "balance": "0xc3663566a580000" - }, - "0x73BE3c66610D90EFFdD7E1BA31F99944c82c5428": { - "balance": "0xad78ebc5ac6200000" - }, - "0x73E16C0cF173229E953d60179513105C05cF7d81": { - "balance": "0x5c45358b3434b0c0000" - }, - "0x73Fc2De45d88D1C8217d2eE42835474F251bbD5C": { - "balance": "0x22b1c8c1227a00000" - }, - "0x73aE711999efE20155bC9347c31B51Fc30b968E3": { - "balance": "0x8ac7230489e80000" - }, - "0x73b21BbD953001966064f39960E6111aC2B0DE0c": { - "balance": "0x967c8fb296e740000" - }, - "0x73d7BA47c8a39A2A706990aFC6b7f1A11E44307a": { - "balance": "0x8ac7230489e80000" - }, - "0x7400425E43Ce12Cd5CC12DD0bE0f538878fC025B": { - "balance": "0xad78ebc5ac6200000" - }, - "0x7404363a8E9f8AE084aDFe5dcCCec87177f248aE": { - "balance": "0xad78ebc5ac6200000" - }, - "0x740846daF0Bb84349892DC4BF118dfa2e30bd4eE": { - "balance": "0x3635c9adc5dea00000" - }, - "0x740cEEdcA7A9a1aad8f794a70A859D68Cf257F50": { - "balance": "0x4563918244f40000" - }, - "0x7420C3dF6fdE8551b8885eCD1eF1e0363F653a46": { - "balance": "0x3635c9adc5dea00000" - }, - "0x7441C42D9E4EBf981f5629e91d9069605785724D": { - "balance": "0x4563918244f40000" - }, - "0x74445eF8b44C4D804b2371a54A7FD6F142fEB4eC": { - "balance": "0x515093df72fa1f40000" - }, - "0x74575bA71701d4B5DEE9898E3992ea61993D0aab": { - "balance": "0x1158e460913d00000" - }, - "0x745CF587fC961Bc3de15d2e971E5D872325B2CDa": { - "balance": "0x3f514193abb840000" - }, - "0x74866c5bD94aCfB6eC37D6e3D4cb97Cf273BcDb5": { - "balance": "0x3f514193abb840000" - }, - "0x74B2456B9B227e8B39A463791533a0ecbc37eF8f": { - "balance": "0x4563918244f40000" - }, - "0x74BEFe926a1630a7A071D817CbB49c2b6f273d70": { - "balance": "0x514fd0793d9379c0000" - }, - "0x74Bc1b328bE2018B4846d5bb694AdDE04199c204": { - "balance": "0x3f514193abb840000" - }, - "0x74CE8e0c18fE73334a057BC11E156729A1f6ceA0": { - "balance": "0x4563918244f40000" - }, - "0x74D37d3EF86e1Ba77abbBBe8537121208b168BD4": { - "balance": "0x514fd0793d9379c0000" - }, - "0x74D712c2e6e9ed333841b93373a4b821723D2696": { - "balance": "0x563191e22cac4b30000" - }, - "0x74F81d27EA98410A7123bB12d72ED670e02Bf843": { - "balance": "0xad78ebc5ac6200000" - }, - "0x74bc005c9EeFF7C4A2af5acC6C6488dA68517cD7": { - "balance": "0x1a055690d9db80000" - }, - "0x7507BeF620F6f502AB823D00bC40083D1b002aF1": { - "balance": "0x3070f5d38330000" - }, - "0x750Bdd76cc72FF51A58E77810936A88fdfB89Cd3": { - "balance": "0x4563918244f40000" - }, - "0x752e993AA920838C46582BD3b81b532e404C768E": { - "balance": "0x4563918244f40000" - }, - "0x752fAF9d0109f6671aF39b63cE5e8012f79c46F6": { - "balance": "0x967c8fb296e740000" - }, - "0x756B8B8700589E656d9358B92D64Bd29dc38e6BC": { - "balance": "0x3f514193abb840000" - }, - "0x7584e5507632cFcfa04985940ce8b4Da5281e8C4": { - "balance": "0x93856aff9f689f840000" - }, - "0x7598c8c59b91A06F4C07460ec8b994B028dE8451": { - "balance": "0x28a8aba2d4306260000" - }, - "0x759cD5e169cc28FDB7D2692197fe44f7FA42e134": { - "balance": "0xad78ebc5ac6200000" - }, - "0x75Bf2A7439f95923227ea6f854964DddFd39260C": { - "balance": "0x22b1c8c1227a00000" - }, - "0x75E7ff18F6B1f80C07aCCC809E15298836B8a793": { - "balance": "0xad78ebc5ac6200000" - }, - "0x75a5113E513d76C92128a53574D91B2c0d0e9DA6": { - "balance": "0x967c8fb296e740000" - }, - "0x75a538bbfF1d68D6640C041509E22ff4a62Ed679": { - "balance": "0x3f514193abb840000" - }, - "0x75d0809A9FE3D49008067ED99183960d044b86a1": { - "balance": "0x3f514193abb840000" - }, - "0x75dE3B05a9281dDa0b6bC8D52CE3c06C0C8f2efA": { - "balance": "0x8ac7230489e80000" - }, - "0x75f52a980F637C32aa5215A335820db2EfBC498c": { - "balance": "0x3f514193abb840000" - }, - "0x7603ce7f055D19672B457954F285d5d8263caA4C": { - "balance": "0x8ac7230489e80000" - }, - "0x76064825B95e53A1575657DF3BC0F41D11e28f07": { - "balance": "0xad78ebc5ac6200000" - }, - "0x760922Bc3D34B4aC07b9467838dF399279B97B15": { - "balance": "0x4563918244f40000" - }, - "0x7609DC752a8fC7C3daB9de7Fd19189fbaAf8A8f4": { - "balance": "0x3635c9adc5dea00000" - }, - "0x760Af7a30d76E9e53896Fe220A39E86f3c94D527": { - "balance": "0x967c8fb296e740000" - }, - "0x7643C87BE90787Ae992802ce4540616E2Ab0FE20": { - "balance": "0xad78ebc5ac6200000" - }, - "0x764916f47aAbC79822c1b9b1372053bf5E19839a": { - "balance": "0x1158e460913d00000" - }, - "0x764C3F277B9deb7053dBa9Feb556dc55B0107335": { - "balance": "0x55ef523dac9a570000" - }, - "0x76965332832D21e2b818933449Ac45B47487E3b1": { - "balance": "0x28b2b278c03a9aa0000" - }, - "0x769A73D4b1a0dd6D876697eef0710D57aB32b8c2": { - "balance": "0x4563918244f40000" - }, - "0x769F61Bbba8D5C8506a7273BA71c2d6Bdd5a082c": { - "balance": "0xad78ebc5ac6200000" - }, - "0x76D249619B5738C0Ccc276f289Ee790605Bdee22": { - "balance": "0xad78ebc5ac6200000" - }, - "0x76bA34B604A4c8F27a9D6D0a2d14DDA2eE892d67": { - "balance": "0x1a055690d9db80000" - }, - "0x76cC139ed34A385337D30D3E9C230B1F269929E6": { - "balance": "0xad78ebc5ac6200000" - }, - "0x76fFDE2C2c683d3C300f45e14a5ccd769CBCD4Dc": { - "balance": "0x1158e460913d00000" - }, - "0x76fb1c69c1F40e8EA55138fE305b881197643FEf": { - "balance": "0x4563918244f40000" - }, - "0x771Ce2659799048011e38C3DE99e704291450492": { - "balance": "0xad78ebc5ac6200000" - }, - "0x771bE05c0eb840Af7e232F38f07e1a9812136E55": { - "balance": "0x4563918244f40000" - }, - "0x7747397daeeACD31F1a88789EAC3094e7b12CD5C": { - "balance": "0x3f514193abb840000" - }, - "0x7753307187D0B9e0F753D7426e499f721363500f": { - "balance": "0xeaff57c0c44be5c0000" - }, - "0x776041079852e84D9Ca9Ee87F6C0c4234B60df0f": { - "balance": "0x5b5aba8f75283e240000" - }, - "0x776Fb36aA210E2e24a169d4ADe2Fd89611196aAF": { - "balance": "0x3f514193abb840000" - }, - "0x7778130950db07487461fB969A8CF8612788884C": { - "balance": "0x8ac7230489e80000" - }, - "0x77788b6fE20eD97760afdb9f7BB3da7Ef3902E68": { - "balance": "0x4563918244f40000" - }, - "0x778A81Fd2ee977Ec79ab9bad5331A04200A9C330": { - "balance": "0x6759cfc760c090a0000" - }, - "0x779Dff7CC9DBb525bb2039C4C48b61F00CcE62F2": { - "balance": "0x7649546139531d89c0000" - }, - "0x779c7B5caDCcD0902D2aCEd65A20f70a4b19282F": { - "balance": "0x6c0648f022848276178400" - }, - "0x77D3d9BD6F4D6743381D4f68134591c49B299a89": { - "balance": "0xad78ebc5ac6200000" - }, - "0x77bf1659E901ae8f5A2016a96302Fc584c99df44": { - "balance": "0x4563918244f40000" - }, - "0x77c88205812A6Fef2402A9fec7E7c4be6f914B3c": { - "balance": "0x226a707435a6848120000" - }, - "0x77f7A04D3215046883B5d4c52419522c439b39e0": { - "balance": "0x22b1c8c1227a00000" - }, - "0x77fe9433F734a28cA594402675FA22F3B038873B": { - "balance": "0x4563918244f40000" - }, - "0x7807732a6BE426EA45d891207B339ecCD6E545B2": { - "balance": "0x67f2dffd811a23900000" - }, - "0x780C6087C18318C3266696b4e18F21b351a2c7d3": { - "balance": "0x3f514193abb840000" - }, - "0x782C230134E1f364b3a2B1B971942484486CCf97": { - "balance": "0x4563918244f40000" - }, - "0x7839Ed51f3485805101714F12e41504669456944": { - "balance": "0x3635c9adc5dea00000" - }, - "0x7851aeCAEF19f7d5a715B185bB6e52CE22C3510F": { - "balance": "0x967c8fb296e740000" - }, - "0x78540D5471A12a2011d20c9AD816F5aF8de3FA74": { - "balance": "0xde0b6b3a7640000" - }, - "0x7857aD2127257f706Bae4826e8A08585319c40E9": { - "balance": "0x515093df72fa1f40000" - }, - "0x786D3fed1D8A5f99A83cA3925d0dcCB8db48900f": { - "balance": "0x3f514193abb840000" - }, - "0x78765c3c302b07109c58a29be3cf698d1F3f74C8": { - "balance": "0xa688906bd8b0000" - }, - "0x787cEc4D55CC07cD32Fb11Db1a2819E36A14c197": { - "balance": "0x4563918244f40000" - }, - "0x787d5e2b51F30071Eb15CEdd5CD76566ce2C2cf6": { - "balance": "0x3f514193abb840000" - }, - "0x7883B847E50d9255D8f9916b0E79e11287f999d8": { - "balance": "0x5701bc96b37b2730000" - }, - "0x7893F55DD2c954986AE820f071a7443d84600425": { - "balance": "0x3f514193abb840000" - }, - "0x7898524cc9c3995E6AbA4F074F1dffc97C1C82A4": { - "balance": "0x967c8fb296e740000" - }, - "0x789d67A52D3d44985B790Db012FaEA158481f08d": { - "balance": "0x9e67b061b4d0db6db" - }, - "0x78A4C508e7763a2dD3821bd9E2B3eD28DCa56522": { - "balance": "0x3f514193abb840000" - }, - "0x78Bd266A9F1C6cCe1734CEe4f8B6F711C8054CcF": { - "balance": "0x6b49026a3a3c82400000" - }, - "0x78a415D58f3c2376743E8a2fAa1B3456A2Fb5304": { - "balance": "0x15af1d78b58c40000" - }, - "0x78a65F1e79eB32aaAbAC64D3555d3650Cb5a7838": { - "balance": "0xe49aa195605e440000" - }, - "0x78e461e48a5d51883995Ca5812ee6389f6261021": { - "balance": "0x70ef55cb2d89c0200000" - }, - "0x78e5fED861Cb476D05dD90a09250683ae7996fAC": { - "balance": "0x4563918244f40000" - }, - "0x78f67f2E9fa84144Eab0e3685838fD5e05b60bF9": { - "balance": "0xad78ebc5ac6200000" - }, - "0x7907D85d352AC4C6E6BE2D408270CDA686c0c4fd": { - "balance": "0x1158e460913d00000" - }, - "0x790A792f85Fe5d4151e597BFCF91a5c477ddB45C": { - "balance": "0x967c8fb296e740000" - }, - "0x791DAd64F50C20Edc2DEA63d00143269CebD54f7": { - "balance": "0x4563918244f40000" - }, - "0x791FF7E8773Cc0f585eF3dC3C3D8f638f86e8CDD": { - "balance": "0x8ac7230489e80000" - }, - "0x791f897A9d7C972B7b1F1E9110f00f536b3aB21A": { - "balance": "0x4563918244f40000" - }, - "0x792c973579AA0923193734FaA67eC2215d0B7589": { - "balance": "0x3f514193abb840000" - }, - "0x793E2A268d7Fc8AbB47825822416E7b2750A7c6d": { - "balance": "0xad78ebc5ac6200000" - }, - "0x7947FAfee18DE81D179108777e8eb7825AfEcB87": { - "balance": "0x1a055690d9db80000" - }, - "0x79549dAefc36D9fBaF7376B61F7DFe53Af39e0e1": { - "balance": "0x1158e460913d00000" - }, - "0x79587eeA13E11F86137206479B96D77386d2e001": { - "balance": "0x3f514193abb840000" - }, - "0x798e3700737988E47EA01Cf37cC377E2B76bdE4E": { - "balance": "0x3f514193abb840000" - }, - "0x799Acd62D82f7220EAFd7A68cCEcdF67FfE51089": { - "balance": "0xa9537cafd7ab3b900000" - }, - "0x79BA404F7010369260ff2D4EdACe1472AE7a23E8": { - "balance": "0x8ac7230489e80000" - }, - "0x79BfddCce72320478B62BF83E8628829a387bD80": { - "balance": "0x5ae0fcf7ef62000" - }, - "0x79DC6378695635920DAF5c2F6c450D5e1B299f42": { - "balance": "0x4563918244f40000" - }, - "0x79F1faf61D0d5c5Ff3D7dcFF106d073EEd739056": { - "balance": "0x1158e460913d00000" - }, - "0x79aC2120028c4ae39d531DC822d9A636cA6Ba5B2": { - "balance": "0x3f514193abb840000" - }, - "0x79b3066A3e6CeE78E5D55a040cc63c71c10a8803": { - "balance": "0x4563918244f40000" - }, - "0x79dCd80Bf65A004cf202460071262cD1a5479178": { - "balance": "0x15af1d78b58c40000" - }, - "0x7A2aeb4d050A0Aef815e12844B4C49a6F97809ef": { - "balance": "0xad78ebc5ac6200000" - }, - "0x7A3592d8E7dFe3153c5d2f04db8fb2D964CF4738": { - "balance": "0x1453a42eade96c30000" - }, - "0x7Ac5Ae6CB21659696E45717514b75E92AF3a7653": { - "balance": "0x4563918244f40000" - }, - "0x7AcC0B51C1C07458369a508178AC0f38B1Ba54F2": { - "balance": "0x55ef523dac9a570000" - }, - "0x7Ad593173924edF3a89875868CC306a7A60e709b": { - "balance": "0xad78ebc5ac6200000" - }, - "0x7B4BB674390EB8E52b15f6560285F3e52f98630f": { - "balance": "0x2c0b9937faf11140000" - }, - "0x7B561bB86b6aCE103071141bD4EBfd7277f0e022": { - "balance": "0x15af1d78b58c400000" - }, - "0x7B6b059499c64c12C5EbFaD319d8f55B30fbf4b6": { - "balance": "0x15af1d78b58c400000" - }, - "0x7B8b37f21bD01188A41dF34FD60a32231a8AD34a": { - "balance": "0x5150ae84a8cdf000000" - }, - "0x7B934056e90fE978A219194a9F5469Cb4360782B": { - "balance": "0x4563918244f40000" - }, - "0x7BB0D3b246c84719cd347ECecD0316c6fa3267E0": { - "balance": "0x4563918244f40000" - }, - "0x7BCe435C64f0bc53371c48234E8FFdf116C3D2A7": { - "balance": "0x8ac7230489e80000" - }, - "0x7BEA7F35a6CF4dB6d062aaD4A316FA2Be83904eC": { - "balance": "0x3f514193abb840000" - }, - "0x7Be65abd90fa1B402F433c3a749863c7cD57a91b": { - "balance": "0x28a77936e92c81c0000" - }, - "0x7C13114d0db709ef9b2eaAa3Ae6C50a0723943b8": { - "balance": "0x21e19e0c9bab24000000" - }, - "0x7C28B7f312A0c95be3809624e6311BCe82896bf8": { - "balance": "0x3f514193abb840000" - }, - "0x7CFb299BFFEe4aA9Dd6D5fCa3451B5213A45b6Ba": { - "balance": "0xad78ebc5ac6200000" - }, - "0x7Caa5BabaE9396Cddf674dcCBC4188c1AA3B8ed5": { - "balance": "0x3f514193abb840000" - }, - "0x7Cac90f0F3caBF33101938B0B3F9daEA8Fcc918d": { - "balance": "0x4563918244f40000" - }, - "0x7Cb1DB2195Da6bC7F38CafEFA5b232fd6544CDC6": { - "balance": "0x4563918244f40000" - }, - "0x7Cf33Fa7a5A03C2BaD0Ec7443D5eA9ecA5cA549d": { - "balance": "0x3f514193abb840000" - }, - "0x7D56E253d5D706C74365EbD2577DE82A48F7d1ff": { - "balance": "0x4563918244f40000" - }, - "0x7D7873766e9ed9FCD47151a1c26Ab99f47625a43": { - "balance": "0x8ac7230489e80000" - }, - "0x7D9d76ca223a5c85d99D2Cb2bf2318e9913E92CD": { - "balance": "0xad78ebc5ac6200000" - }, - "0x7DC2B3B2Ea5443b9B122a9d62a92913Ccd74C25B": { - "balance": "0x4563918244f40000" - }, - "0x7E03A5d775A3e3F07c5a87Cb0bFc036a3702B7B7": { - "balance": "0x4563918244f40000" - }, - "0x7E1ead37c067E55b6e01398Ab754EAF67D28d9a5": { - "balance": "0x3f514193abb840000" - }, - "0x7E559C30B70AD0BbED736a0de8A146bc580c95C7": { - "balance": "0x9935f581f050000" - }, - "0x7E96374f9d86772f7705943731edb2f0E3133D33": { - "balance": "0x6c6b935b8bbd400000" - }, - "0x7Ec3baB7C8bE43F5eFAe5E51033a1F01b6cBFF3C": { - "balance": "0x4563918244f40000" - }, - "0x7F0886a2356caF07e06E25E23Ae5e06e1278Bf89": { - "balance": "0xecca2d59581a40000" - }, - "0x7F3668c32b266128f2f7a11e9af526fF173b1f90": { - "balance": "0x3f514193abb840000" - }, - "0x7F50397078Ad4dA62c4e2eB6A5e4503D36E50bB2": { - "balance": "0x1b0526faa81ae1e5c0000" - }, - "0x7F7383E9FDcD2BaeeBab5714509581ab751ea161": { - "balance": "0x4563918244f40000" - }, - "0x7F95C2e01e9889b5A40cc99b6329FaB23b8589a2": { - "balance": "0x5a5986fad3c1260f0000" - }, - "0x7Fe659f8EA034B7bbDae383C2902F2F3b93a1d5e": { - "balance": "0x4563918244f40000" - }, - "0x7a031Bb36Bac52812EaDB315b4A2382b3fD0271d": { - "balance": "0x8886575aff0ad3c0000" - }, - "0x7a0Acd1F511e569602743e6e2A5b103f3AFeF5c5": { - "balance": "0x3f514193abb840000" - }, - "0x7a1b55db53744A1b32Dd8467AF65Bd3f49c117b0": { - "balance": "0x3070f5d38330000" - }, - "0x7a2E6B36a0e477d91c0Da37eaed6597c15bd162b": { - "balance": "0x1158e460913d00000" - }, - "0x7a3B722B2FBfB66d94607d55437712Dbe29Db5F2": { - "balance": "0xb48fb5eb63d8d8f0000" - }, - "0x7a80E85B22d9A950d906d646fC6a731B3CD621dc": { - "balance": "0x4563918244f40000" - }, - "0x7a8bCE8AC1959FD07D8642946Dc11C94574251ec": { - "balance": "0x3635c9adc5dea00000" - }, - "0x7a9EDD448dAA60816E07d29f836033364600c9b2": { - "balance": "0x8ac7230489e80000" - }, - "0x7aADc4870FC699aD53Cb8138Be92E41327163104": { - "balance": "0x3f514193abb840000" - }, - "0x7b14A43a55E54DdAC6FcEa1159873888A9526358": { - "balance": "0x1158e460913d00000" - }, - "0x7b37fCE85453992180E20e0fc4c99840F99Cd60F": { - "balance": "0xad78ebc5ac6200000" - }, - "0x7b56aD40f2BC6Fc774A5aBCd146E8e162f7CF9E3": { - "balance": "0x3f514193abb840000" - }, - "0x7bA3b68b917D540183E3dB15030D15Add63cC4E2": { - "balance": "0xa2a15d09519be000000" - }, - "0x7bA5C7caBF9a0f45BE2424fb44d83225B7c57986": { - "balance": "0x3f514193abb840000" - }, - "0x7bD0b8117764E1789988a5d2a133f318A5752118": { - "balance": "0xd02ab486cedc0000" - }, - "0x7ba5a0C65290C67079A2Ff9fde169327EAeC25dE": { - "balance": "0x4563918244f40000" - }, - "0x7be8b8Ee1FC3313e206f56F1A0E4F2CE4Ce4394B": { - "balance": "0x4563918244f40000" - }, - "0x7c058E0421D61E65c8aF0915432F8292df9c575B": { - "balance": "0x3790bb8551376400000" - }, - "0x7c06F83249EC4b2Ef2f3858487968933798777EA": { - "balance": "0x8ac7230489e80000" - }, - "0x7c433d81aD35cCB159D3338B9a7ac12B881cd11c": { - "balance": "0x4563918244f40000" - }, - "0x7c45d52e6a84AAA317770aaC204eC68ee3327deE": { - "balance": "0x514fd0793d9379c0000" - }, - "0x7c8A5290A6E2275Fe1761f54CC30e75b46E56e8C": { - "balance": "0x2393406ab4688e2a0000" - }, - "0x7cE4c19A5450BCA8217dA6699B662A9eb4b46e04": { - "balance": "0xad78ebc5ac6200000" - }, - "0x7cd7Ba15d62BD20a149471e29cE852b4Ea4a5DBf": { - "balance": "0x9694eed4ce10000" - }, - "0x7d15ebf17DD35c5f04CdB11eFe212170DAC8917A": { - "balance": "0x4563918244f40000" - }, - "0x7d5Bc7504c3c1B2eefcA2521BA40e40a8D12dF77": { - "balance": "0x1d44454c1ea20380000" - }, - "0x7dc03ce6dA14a3C1fEf491ad4C46c62891d09A31": { - "balance": "0x72f1f784e3fc2870000" - }, - "0x7e102e3384BA4af479Dd87293D9001d5AC8A3A2B": { - "balance": "0x4563918244f40000" - }, - "0x7e1134BbB0074f0B1346b3Ac5803d75F1A2f9163": { - "balance": "0xf3f1b965e9c761b0000" - }, - "0x7e186A5a32A6046E47e77c5300288f81Eb7C6661": { - "balance": "0xad78ebc5ac6200000" - }, - "0x7e30260bcF843ff13Ac932804876a58886366beB": { - "balance": "0x5561840b4ad83c00000" - }, - "0x7e31B668E6e71c56e3C3cA79E36Da67B763d9542": { - "balance": "0x3f514193abb840000" - }, - "0x7e34C63eBb4C01945724fA604DB0d2C73413A686": { - "balance": "0x55ef523dac9a570000" - }, - "0x7e392c03d5F99ea50f2e003Bf01E58128e34a58A": { - "balance": "0x3f514193abb840000" - }, - "0x7e48555451c7E46AfE4ee81e95069440Bea6D0c8": { - "balance": "0x4563918244f40000" - }, - "0x7e6E2573e21CcF27C8797F9432769fA62Bc172cA": { - "balance": "0x967c8fb296e740000" - }, - "0x7e6F42c61857bba04BaB8CD2279160EfF287E056": { - "balance": "0x3f514193abb840000" - }, - "0x7e7A0f2CD99EDF8D28bEd3f6F71184C509fBB83D": { - "balance": "0x4563918244f40000" - }, - "0x7e9C34C6C8C040E5e216F30c210Ade0cc600b656": { - "balance": "0x4563918244f40000" - }, - "0x7ea16034b5831E297C6E117d1595A38f5F21F38A": { - "balance": "0x2dbd622a9ef3d7000000" - }, - "0x7ec4CFBE769CCCaDe43a77BE0f9DBbA65ff17D0d": { - "balance": "0x3f514193abb840000" - }, - "0x7ed03aa8a1d122A590115c773fCa0a2e2A7a53F8": { - "balance": "0x3f514193abb840000" - }, - "0x7efA73eC1BfF67766E2306FB0Cb7494382CB4EDf": { - "balance": "0x4563918244f40000" - }, - "0x7f32B91a792d6218a2f207F3ccD0Fe5D42ee584F": { - "balance": "0x967c8fb296e740000" - }, - "0x7f762c128E89e9656708824D39Ea5cb474f2241A": { - "balance": "0xf3f1b965e9c761b0000" - }, - "0x7f76e311B0424b9F8d2AfCA35a356b1D6345BE4a": { - "balance": "0x3f514193abb840000" - }, - "0x7f90630cfCb0996fE80034811E9cC10F42101887": { - "balance": "0x8ac7230489e80000" - }, - "0x7fFB7F6Ca94f2Fb188A4D0F5783763b9b156b93e": { - "balance": "0xc12dc63fa970000" - }, - "0x7fb922EFA1578C8eDA7cc1D6B440a083bf88CA0C": { - "balance": "0x8ac7230489e80000" - }, - "0x7fe3E86d0e2e826A30839A1471328041EA8a60A2": { - "balance": "0xad78ebc5ac6200000" - }, - "0x800d9dCb9c073907ED59E74F27882f9275E1DEA1": { - "balance": "0x967c8fb296e740000" - }, - "0x8024Dd93f0F06775067d301Ef477e2d61a2CD96F": { - "balance": "0x4563918244f40000" - }, - "0x8028D91C0F2498A03Be985912De4D55E622c612B": { - "balance": "0xa2a15d09519be000000" - }, - "0x8055FE5A92FE744B1D829942F0c92bfDED78F0D9": { - "balance": "0x4563918244f40000" - }, - "0x805EF1c4F69fCc087a1576B42207919b6293369d": { - "balance": "0x7ea28327577080000" - }, - "0x807091CE8d9869e6df43235c5Fa52275Dd159875": { - "balance": "0x2544faa778090e00000" - }, - "0x80797518EE67Ca0D5E5672a8AAd135B199E061c8": { - "balance": "0x967c8fb296e740000" - }, - "0x807Ab0Dc0dA63de6021d71fc5871eC9b4F543835": { - "balance": "0x8ac7230489e80000" - }, - "0x809aBd47aB4aFC728f5E8AD67De3a2F8d5F8b9Eb": { - "balance": "0xad78ebc5ac6200000" - }, - "0x80C8cac19441766AF9384A8155bd42A926E3FF45": { - "balance": "0x4563918244f40000" - }, - "0x80E7EBC5670c7c1aAFb10B19729404b207427a2c": { - "balance": "0xad78ebc5ac6200000" - }, - "0x80edeC415C337b4FD43B56263f923E816600a721": { - "balance": "0x3f514193abb840000" - }, - "0x80f564F022D22730eF980753f97be31b9Fe28aAE": { - "balance": "0x1b3d0bd8810d40180000" - }, - "0x81175Eb87529130d993170cc62a1c36E44FA55bf": { - "balance": "0x326a0e725212c9f0000" - }, - "0x811ef8364c877381d93abc88583984aE385d9575": { - "balance": "0xb84c09a3b930000" - }, - "0x812959c9ea7Cf58681D458a44F5f9c0b827446B8": { - "balance": "0x4695959efc76181400000" - }, - "0x812c72B8F04C9aC35B45E71fBbe26c23b5c0aBaE": { - "balance": "0xbd6e108dfeb4d890000" - }, - "0x812d50561a02BeDA88290cB921048360E18C34DF": { - "balance": "0x8ac7230489e80000" - }, - "0x8132CaF30077f83aC035EF0ee2C653D66add45c8": { - "balance": "0xad78ebc5ac6200000" - }, - "0x813Db16D1360D28eBC22d6E1a50f2D2d37Ac4864": { - "balance": "0x3f514193abb840000" - }, - "0x813cE58a9beA9cb6fd11b3ddE5d870F70F53aDFe": { - "balance": "0x6c6b935b8bbd4000000" - }, - "0x813fc2D051443e50fdBCd739B8a18d08E3B62C30": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8140af40B1f3224Ec449E3751298c12C9c12C83f": { - "balance": "0x3f514193abb840000" - }, - "0x817675BeFfbfE32432e4275409fF47f8Fc10bA2F": { - "balance": "0x3f514193abb840000" - }, - "0x81871DC2Abc99288cF3F4aB5dD3bb420E94C6123": { - "balance": "0x4563918244f40000" - }, - "0x81A881F6DdAa4C0B8F4be89403CCe9F4F1B7a35E": { - "balance": "0x967c8fb296e740000" - }, - "0x81F8217091FB49796F59f3c9809d1A7A9FF0CebD": { - "balance": "0x15af1d78b58c400000" - }, - "0x81a162c4cFc76BC202F1B6719a9db79Bb1cC56a7": { - "balance": "0x2086ac351052600000" - }, - "0x81b14cD0019343bF15b3e4F78a5dA57f91fdf517": { - "balance": "0x3f514193abb840000" - }, - "0x81bd09A88Fa4d41434564A6F7DE5209C92EfcB8f": { - "balance": "0x4563918244f40000" - }, - "0x822D373ACee3e1965164A3dCA1b8bd63CBd2A046": { - "balance": "0x58f03ee118a13e800000" - }, - "0x82465dfA321B7C539cfc03e5d110fA7DD3777EE6": { - "balance": "0x4563918244f40000" - }, - "0x8295AA9d3F0C0f5a9C38E04408395A0329ed0789": { - "balance": "0x3f514193abb840000" - }, - "0x829D0463d5c3B4478006deE28bbF095039B24C9B": { - "balance": "0x65bb9ed191c00c10000" - }, - "0x82Ee740E456D445184F9CE44c00025E67fDF5067": { - "balance": "0x5150ae84a8cdf000000" - }, - "0x82d50F2179c94B0C4aF549a721478c63282df8f5": { - "balance": "0x3877aae596c4e0100000" - }, - "0x82eC3d91F69c23B3C83B089A47B01a10F617ee98": { - "balance": "0x1969368974c05b000000" - }, - "0x8307147C4f48C25C5AC376624f88F60F3938d31F": { - "balance": "0x3f514193abb840000" - }, - "0x83108B1d3E5dBBAa8130B02443808a0f23EdB2A9": { - "balance": "0x15af1d78b58c400000" - }, - "0x832f883F1a8d291332fe5671829ddF0887fE9988": { - "balance": "0x1158e460913d00000" - }, - "0x833e980d00E72618936D29aac2F32a4FCFFf4f52": { - "balance": "0x4563918244f40000" - }, - "0x836cbc1259000987369deb73a175f4D0152Be1bb": { - "balance": "0x4563918244f40000" - }, - "0x83704e77F1BdFfD5015016731ae684C492aB7952": { - "balance": "0x4563918244f40000" - }, - "0x837583db4a289EB5b1531174Ba214AF8ADa42711": { - "balance": "0x91268afc1ac4000" - }, - "0x837780edf5226e368aF38920eB0b83af4837F132": { - "balance": "0xad78ebc5ac6200000" - }, - "0x838010720B6666dBddB772FFC32B187F5BD759D1": { - "balance": "0x5150ae84a8cdf000000" - }, - "0x8399188bf79CcE65570AC73d09DA32e278F577Ee": { - "balance": "0x8c251beb7278f70000" - }, - "0x839d11e26C3dfd4C4AC5AC215d8c0685ac90458B": { - "balance": "0xc3663566a580000" - }, - "0x83b7253259AC4C692403da1e180c576B3490c399": { - "balance": "0x4563918244f40000" - }, - "0x83cF7Efd68312b31d7A2F5e4e095e040d84055a6": { - "balance": "0x3f514193abb840000" - }, - "0x83e664c2c600D50f91853b018EA111cE06472884": { - "balance": "0x8ac7230489e80000" - }, - "0x83ed8e854Ef990c49C51092E522c2374D7107a9c": { - "balance": "0x967c8fb296e740000" - }, - "0x8403F157E036772F94371486450E062539e0B009": { - "balance": "0xde0b6b3a7640000" - }, - "0x8410d885416BB6F00D7713E917840f35fC4b1786": { - "balance": "0x5150bc655f8197640000" - }, - "0x8434303241dDB6A0261429d524272f92Af3e661b": { - "balance": "0x15e9d5e353de16f54000" - }, - "0x843b14C997Ea8811495A4Ef67B58FCBa48a4Eb02": { - "balance": "0xad78ebc5ac6200000" - }, - "0x844eF968331705aC250be93213528536789dE233": { - "balance": "0x3f514193abb840000" - }, - "0x8457E2C48f131ab3a532209F55CD4C85E80DCDb9": { - "balance": "0x4563918244f40000" - }, - "0x8459a34170029eCF5A5C881A998D64A44844964B": { - "balance": "0xad78ebc5ac6200000" - }, - "0x845FF1442aB4f9c14F3E5b8f32799A0BB4fc9CDe": { - "balance": "0x4563918244f40000" - }, - "0x84732F2159D82913dE7D69e9637e336D3eAaA999": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8486D0e2c2EdD415cF951A87649e5FDF830CA5F4": { - "balance": "0x4563918244f40000" - }, - "0x84886427df9464E1195d4dC1Bd79CB74184663B8": { - "balance": "0xad78ebc5ac6200000" - }, - "0x848ef0fAF92f016060D4Bb5ef58be04865bF3862": { - "balance": "0x514fd0793d9379c0000" - }, - "0x849Ff6caD2A2C39e977E887DdC32529E0b902a0B": { - "balance": "0x4563918244f40000" - }, - "0x84A4179d6d6d0dC54B589B39495b2765e54f38A2": { - "balance": "0x4a01e9587a34000" - }, - "0x84ABe288F9fFcA37091De1EccFe192A966490388": { - "balance": "0x8ac7230489e80000" - }, - "0x84a4aAd0521956eDeA82d60C64a95656fF8c4663": { - "balance": "0xad78ebc5ac6200000" - }, - "0x84cb4a4B77830704d9B845F633b541C869a1e7F0": { - "balance": "0x59723a7bd8c0bf20000" - }, - "0x84e70e4b72c4a07B848Cb56F4804A5616AB33C4D": { - "balance": "0x515093df72fa1f40000" - }, - "0x84ec28854cD1854b7741B068800CE319A4ae73c6": { - "balance": "0x4563918244f40000" - }, - "0x84fcA512d4d1800f5D439c04Ef2B7375341f0994": { - "balance": "0xad78ebc5ac6200000" - }, - "0x85027961223A5Acc6b43Bb335510d84ddEA1877F": { - "balance": "0x55ef523dac9a570000" - }, - "0x850C3Bb0BD06880b3d90a54383c526D0019C5552": { - "balance": "0x1823f3cf621d23400000" - }, - "0x8521D5Ac12E8Ecc596bF3cC7D724C4D2f2Ac8337": { - "balance": "0xad78ebc5ac6200000" - }, - "0x852849064C4fFBfF46f94c49fDa058C2d6fEf946": { - "balance": "0xa22724bb2ac79b50000" - }, - "0x8533A0bd9310Eb63E7CC8E1116c18a3D67B1976A": { - "balance": "0x6b6e03a2c1d2e775c000" - }, - "0x853b95046a6a76f148fC73366546B040330cb0Af": { - "balance": "0x56bc75e2d63100000" - }, - "0x8551C26356B3AfD0FF7Bf9b40ef0e10d19c60808": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8561C6bAEA361150FD96521dBB5Fb72F9839404c": { - "balance": "0x4563918244f40000" - }, - "0x856B5fb0608752b85c725eC55a720f334Eb05379": { - "balance": "0xad78ebc5ac6200000" - }, - "0x858BCA305B97Aa421356e25f8a519baa67F43B48": { - "balance": "0x8ac7230489e80000" - }, - "0x8591789d72Cbd4B837c0D8559dDAFF791FFA7761": { - "balance": "0x4563918244f40000" - }, - "0x85Aa0C5e44530e26CF6b651A1938f913f13Fb2Db": { - "balance": "0x4563918244f40000" - }, - "0x85C0C17eA670E196E84C03C567Eb1c86c2109817": { - "balance": "0x8ac7230489e80000" - }, - "0x85D908A2a3D6323089B9bA6F095Cd5ff0DeF734D": { - "balance": "0x3f514193abb840000" - }, - "0x85a6F4d2E3F954Bf2C1BBa1Dd142DfEEc01bD97C": { - "balance": "0x1158e460913d00000" - }, - "0x85c5ed758C4160B86e21dB1ED4B0E1EdAE5f0D4C": { - "balance": "0x4563918244f40000" - }, - "0x85ccBF18f9e1abE27683C4b1f763A085758D68D3": { - "balance": "0x4563918244f40000" - }, - "0x85dc50e518A12568CDE7B95931687702f56cCB8c": { - "balance": "0xad78ebc5ac6200000" - }, - "0x85eE8D33d2A9d739B3F961BbC5A190923E7579A0": { - "balance": "0x1a055690d9db80000" - }, - "0x8608E6b3090e7F072bb64C1bF982B0BbCAf7f90b": { - "balance": "0x4563918244f40000" - }, - "0x860cBd77c2F08b149cbaAB887006068eA675dF4E": { - "balance": "0x3f514193abb840000" - }, - "0x86113E746e8b54b13039882fD126597802B20E69": { - "balance": "0x3f514193abb840000" - }, - "0x862C30454AF194e741679e37C6e5f9A30d3C4432": { - "balance": "0x3f514193abb840000" - }, - "0x862Ce64A3Dd9e5aF525A09038bd83e98575F0f80": { - "balance": "0x3f514193abb840000" - }, - "0x86474Dc9E2E727aBc8378C4B22e9368B196e3A1A": { - "balance": "0x4563918244f40000" - }, - "0x864F876c24EE8fA830bfeE84edee4ea758a7480E": { - "balance": "0x4563918244f40000" - }, - "0x864d21923308d1Da9a7D6F12311A076AA9318Ed9": { - "balance": "0x4563918244f40000" - }, - "0x8663AD74012467AF5552741804b8Aaa5900fD2cd": { - "balance": "0x4563918244f40000" - }, - "0x86856408Bc14C9CFAf3eDcb4cB00ff76172e5e4a": { - "balance": "0x3f514193abb840000" - }, - "0x868FF0F18D74fD482fD5C88731959Fbc3d2Bc972": { - "balance": "0x44ed560dbc62e90c0000" - }, - "0x868c34634557983293D7eD2B80998F94C8935d26": { - "balance": "0xad78ebc5ac6200000" - }, - "0x868d9D30c50F99E23f72C0F089f6E9302b5A5336": { - "balance": "0xad78ebc5ac6200000" - }, - "0x86Dcc30BB0a713aA47566db7409F2db04783D842": { - "balance": "0x3f514193abb840000" - }, - "0x86eB9d6A41523917C99620C5660b72428db0d37b": { - "balance": "0xf3f3c7a4d0debc80000" - }, - "0x86eBb1c45f9A5c03517174cf7779e1f5Fea0569d": { - "balance": "0xecca2d59581a40000" - }, - "0x86ec1a26fe4EBFf03d968603A3212bb3115071AC": { - "balance": "0x4e9ba8e0fd56de400000" - }, - "0x86fdA86d83deb5FD8f5c400ADE3D68E242ed5da4": { - "balance": "0x4563918244f40000" - }, - "0x86ffB4F768555ce5aA50848eFbABd9cAaC2d667B": { - "balance": "0x5560a5ffdf9dc5c0000" - }, - "0x8706114754f94Aa67C9c9064fa347246E30674e4": { - "balance": "0x4563918244f40000" - }, - "0x87092463493d9187Cfc09b03bD94420073a9058e": { - "balance": "0xde0b6b3a7640000" - }, - "0x87192B8fEEa85798fECA2Ea7769bCdbB1FbA8C10": { - "balance": "0x4563918244f40000" - }, - "0x873106B00ed25BD11D408966f6Ef3b0180283025": { - "balance": "0x3f514193abb840000" - }, - "0x8743Ea544b68b2DE87db323471Ea3E28711fAb57": { - "balance": "0x4563918244f40000" - }, - "0x875471B6f1eBDB19B6c00a44236CE22edb581a54": { - "balance": "0x4563918244f40000" - }, - "0x8759B5a7D8af9E45BA4dBFD3C3Ca54353c1d6aa7": { - "balance": "0xb4b30e3cb5672ba0000" - }, - "0x8765716762C6740463c63C0b04433DB207F700E6": { - "balance": "0x3f514193abb840000" - }, - "0x876d7d49f9835c267F2871Ae3df339F7023Cfa3F": { - "balance": "0x1158e460913d00000" - }, - "0x876dC448Fa4Ed790836017FE830e29F40fAae401": { - "balance": "0x3f514193abb840000" - }, - "0x87C75A04d38D9452710335331f1359752A54d6CD": { - "balance": "0x1158e460913d00000" - }, - "0x87D572928760886833eE9b6e7Da740360788f344": { - "balance": "0xa2a127bee5f43e80000" - }, - "0x87F96365560A76C61F1e20643E4052539fBadbCb": { - "balance": "0x3f514193abb840000" - }, - "0x87FF78Ac8Cd16482C6F8Ae0f5dF1e5609345230e": { - "balance": "0xde0b6b3a7640000" - }, - "0x87b422D166ADCCdf614fDAD15175FdCdAf98fcB9": { - "balance": "0x515093df72fa1f40000" - }, - "0x87d8ce625a784Cd592c22C6c8D8ACb45b554A2cd": { - "balance": "0x5d8310027acb0b20000" - }, - "0x87dc84E5c7d743531cDB4b8b27d7aD53FF6c43e9": { - "balance": "0x42119bac7fdafa640000" - }, - "0x87e8d2C1F2C4d82c6Df6aF604A23dBB587959ceD": { - "balance": "0xc3663566a580000" - }, - "0x87eeB3Cca6dc4caDb848F6795225F4ED976a8176": { - "balance": "0x4563918244f40000" - }, - "0x87f4713FC4D96d28b1D8be2115868c5B9c59EE36": { - "balance": "0xad78ebc5ac6200000" - }, - "0x87f738c2Ce83a39067FAf533930a9c4ED17d41aB": { - "balance": "0x3f514193abb840000" - }, - "0x8814608Eb240B8d7dFE875aB820e3A6e1574f284": { - "balance": "0x4563918244f40000" - }, - "0x881e0426986D38CA11092F164FeB604b7D7739ba": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8824d4F44Ef876885A2F9d5Ff1c03C930E8eB0D7": { - "balance": "0x3f514193abb840000" - }, - "0x8835679e409a59FB7c6383EE24Ef689428fcB128": { - "balance": "0x11a56567bf1d860500000" - }, - "0x88393b0E8AfA883065eeBB5Fd98A7c137F38CcdA": { - "balance": "0x3f514193abb840000" - }, - "0x885386d3a037fca04F87CC6f263b1282E34CBC64": { - "balance": "0xad78ebc5ac6200000" - }, - "0x885F311F0bE6374c7CB1F86f456d509D4F47F6c5": { - "balance": "0x4563918244f40000" - }, - "0x885cA55f34afb92cbA06F58A7f7A2Ef054D64770": { - "balance": "0xe5c570cfb4ba83e739c80" - }, - "0x8866f4c5204Ca53678E1CF018e9c56e69c5e0016": { - "balance": "0x4563918244f40000" - }, - "0x8873244D1E13C744af9629F486857BF841765e5a": { - "balance": "0x4563918244f40000" - }, - "0x8873AfA5c34AB80dd23020223f1bb8e756F001Be": { - "balance": "0x4563918244f40000" - }, - "0x88746D41Fa92E6024678D7a7C9f28f2038774A50": { - "balance": "0x967c8fb296e740000" - }, - "0x88B7c2E3a42EEd7aab6638b380F60ae54b7d4Dc0": { - "balance": "0xad78ebc5ac6200000" - }, - "0x88BE127De6DFb33aD7B51261cE650329Cc6cd502": { - "balance": "0xad78ebc5ac6200000" - }, - "0x88C070d77635d5FA54Ec0e88DD50232c0B6d3043": { - "balance": "0x1a055690d9db80000" - }, - "0x88C8ba2fCd4f3B0f9871183c41777ec3697D3BBc": { - "balance": "0xad78ebc5ac6200000" - }, - "0x88FC00C35bA9bB026Ab8EBF4BF6c6B2862bF75cc": { - "balance": "0x3f514193abb840000" - }, - "0x88f64710e0DE3fA22a0D9876d3658dB941049344": { - "balance": "0xad78ebc5ac6200000" - }, - "0x891391C5EcCfF6301cc3c3aAdE1b18Ced5e7aC7e": { - "balance": "0x967c8fb296e740000" - }, - "0x891C943727C1fef4c87E3Fb5329B8CBDfF42fF8D": { - "balance": "0xad78ebc5ac6200000" - }, - "0x892A575f14499d2C76966EBA0B5158602A2f271A": { - "balance": "0xb84c09a3b930000" - }, - "0x8935bB55AAeB7Ecdcf31F1740C15E88824419970": { - "balance": "0x8ac7230489e80000" - }, - "0x8948DF8771630528fBd7795b884F025a0c766997": { - "balance": "0x3f514193abb840000" - }, - "0x894D2188549e82cdDF14Fec61844882B19fe957c": { - "balance": "0x3f514193abb840000" - }, - "0x894cdb462BbC8f809c603ff8Ee394f6CBEA2eC08": { - "balance": "0x3f514193abb840000" - }, - "0x89508E6C617A726d2DEAA468ad8dbb61B5CA25DC": { - "balance": "0xc3663566a580000" - }, - "0x895f80b9cdffa7af1d68de4aEE1C34C4238F7Adb": { - "balance": "0xecca2d59581a40000" - }, - "0x8990E265B4E699721d58CCe651508D4191a3dC7e": { - "balance": "0x4563918244f40000" - }, - "0x899B5d52671830f567BF43A14684Eb14e1f945fe": { - "balance": "0x52724fe8088f8b4cd40000" - }, - "0x899c7a0Bf9C4e529a9f2f4ECF542e938A3827264": { - "balance": "0x4563918244f40000" - }, - "0x89Aae47098e3c2362623b8F24f00Db67e2269fa0": { - "balance": "0x4563918244f40000" - }, - "0x89B5Eae36983A28283fa4e230FaAaEd39c504776": { - "balance": "0xad78ebc5ac6200000" - }, - "0x89a5049B20Fa3AC4e1f45D89b59D6a6E96853071": { - "balance": "0xa2a15d09519be000000" - }, - "0x89cA3F4AC63Ad0a5EA8b2e61978fc0a247C1E3Dd": { - "balance": "0x3f514193abb840000" - }, - "0x89d9d9bE3049A694B4c19B3607cBA04cC7B846Ef": { - "balance": "0x55ef523dac9a570000" - }, - "0x89f55F683525b2b62C0A7cfc19Ab4BABffF406c4": { - "balance": "0x3f514193abb840000" - }, - "0x89f91BFBaE97eB6Fa0a3B33567ecB0AEFbed2e0b": { - "balance": "0x4563918244f40000" - }, - "0x8A2d6D9155F0A0049813953061BaF58e923644c3": { - "balance": "0x967c8fb296e740000" - }, - "0x8A56733973743363C0082a058DC62eFD12F9ac84": { - "balance": "0x58a22edd6613ac00000" - }, - "0x8A6537Ff17497Ba179b1F4663D1f0B6320EE1c18": { - "balance": "0x2644f59175cea0880000" - }, - "0x8A852756e592700F12A7210ADc176DB811ce56E0": { - "balance": "0x34504f3a515000" - }, - "0x8A99bcC517dC6c9d8AB142BC43E7284eb3A3b9d7": { - "balance": "0x50dcac0d6302a8100000" - }, - "0x8AaFC0C0eF827b21eDdb7F63A15437C32657F52e": { - "balance": "0x4563918244f40000" - }, - "0x8B0297b3dD0BA674868aEDb8F1ff1e66FECdA1Ed": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8B038Da89c7057A840a9D93DBB010780E9469aec": { - "balance": "0x4563918244f40000" - }, - "0x8B13fAA2B20d67Db7b9C97104521236731317733": { - "balance": "0x3635c9adc5dea00000" - }, - "0x8B1EA47e37A70E7FeEFc6A6945a4A7272a7934db": { - "balance": "0x151a94553ab0a5b00000" - }, - "0x8B425EDe1d771f336e4DB1C92529071471160e40": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8B7389443191a8dEA2DDb6c0E99D3d8dFf19B169": { - "balance": "0x3f514193abb840000" - }, - "0x8B8d85d8EbeFCB181eC909Bc065BeF698f198583": { - "balance": "0xecca2d59581a40000" - }, - "0x8BA01Bb37b01a972A4f338a6D3bdf299503BE6eF": { - "balance": "0x4563918244f40000" - }, - "0x8BBAEA19A0A59f65864E5a7519A055D15aDAf722": { - "balance": "0x8ac7230489e80000" - }, - "0x8BF41ff8f2D48e33E66F1A48Ca4fD518Eb57dfF1": { - "balance": "0xa2a07efde66169c0000" - }, - "0x8Be4f269BDF094D7dde455474024F7428FF10201": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8C1aD01bB1d95D3DFD4220962F14a6f910153472": { - "balance": "0x8ac7230489e80000" - }, - "0x8C4d30E6D625A18892a76C8485B134111181ddCC": { - "balance": "0x3f514193abb840000" - }, - "0x8C9C281a420648492c6F6dcB3C08bCeA7BaD436f": { - "balance": "0x1aef7d96adf5d77f0000" - }, - "0x8CE6c50Cb2C00e28f9b6ef3cE62B1a474b05Ebb9": { - "balance": "0x3f514193abb840000" - }, - "0x8CcB98Ac1C451dF5b41a8e5455E94B4aC79D7411": { - "balance": "0x4563918244f40000" - }, - "0x8D3e95c45f6d285f8339A485a873E329De5D7D07": { - "balance": "0x3636df5be0fa450000" - }, - "0x8D4aBB509fbB046B796c144b0be7362dD25F6b96": { - "balance": "0x61932693c5bca9c0000" - }, - "0x8D8B42307CE364F43546e71aD103c5f2E587fDd1": { - "balance": "0x4563918244f40000" - }, - "0x8DA8f50faAaB6392DD3aA771f006109B7c22c7b9": { - "balance": "0x51729022b5699b2400000" - }, - "0x8Dc22C74F357dEB5787041EF0B0775319edcED96": { - "balance": "0x1158e460913d00000" - }, - "0x8Dcb7726227C3798439c9D0E9FcFd2784F63a894": { - "balance": "0x4563918244f40000" - }, - "0x8DdE8e03d98F9A6Caf29eD6d67A160E41E9a411e": { - "balance": "0x967c8fb296e740000" - }, - "0x8E06250e0b5D710105E2011F73B82A8A9a1a21c5": { - "balance": "0x3f514193abb840000" - }, - "0x8E2Ee405E9fF86327578ee0c2FAd584c4A821C1F": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8E4E5AF6A09fBd27Af06c7C33870876771bEdbDD": { - "balance": "0x708bc2571c00567c000" - }, - "0x8E5288F655b544ce58d457d4B9eaF66664EFed58": { - "balance": "0x3f514193abb840000" - }, - "0x8E584473272DDf2733ab1d68c3A404703BD296e6": { - "balance": "0x515093df72fa1f40000" - }, - "0x8E59bDf00D049056b4c3d89372f5B43fBB167351": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8E611A7C047DcCCe380fEB8fAc806BFa361c6ddf": { - "balance": "0x1b123864b2a6b180000" - }, - "0x8Ec11EfAe45C4baAB232f2A5Ec77d4928B710758": { - "balance": "0x4563918244f40000" - }, - "0x8Ed7EF1DfF89B3cC2191a9b3365402b47f85615C": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8Ede3fB7fDd40761449FCB82A1bCBF4840c61392": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8F1631696f5Fc0fdBD98cF0a1e0934Acd47D032c": { - "balance": "0xbdba978cd74e240000" - }, - "0x8F3478F63864F2ba4a7F296Ec35D7d79F6A59D1d": { - "balance": "0x8ac7230489e80000" - }, - "0x8F4E9D43583B7D4B8cff5A027220e36401C12b8E": { - "balance": "0x1911741055f1faa0000" - }, - "0x8F7D9F7908e23FA7885523bAaE70f92E57A33164": { - "balance": "0xa922b2ad8812c0000" - }, - "0x8F81e6500f1cEe6d246a7dafB1Fb038F6B8bE7E2": { - "balance": "0x15af1d78b58c400000" - }, - "0x8Ff272f798e3033775c08625f57D112Dfe39eB51": { - "balance": "0x4563918244f40000" - }, - "0x8a0DfEF66dAE84760a2EB557d46A52591149d9Be": { - "balance": "0x4563918244f40000" - }, - "0x8a0e49bBA28d707EAd5517b5B84923B132Ab3D5e": { - "balance": "0x1158e460913d00000" - }, - "0x8a483538ceC225DED8c607FcC943F2B36B6c359A": { - "balance": "0x3635c9adc5dea00000" - }, - "0x8a5126893492564AAF78eBfF5EFA68bcC228904d": { - "balance": "0x1158e460913d00000" - }, - "0x8a863979A4e39183F2f0268b1bDb50Fb9e498a00": { - "balance": "0x4563918244f40000" - }, - "0x8af0373ccC658aaE3E2351aEfE78C778C3e0Fe3C": { - "balance": "0x55ef523dac9a570000" - }, - "0x8b358DEAe804DdBbe5F28CAC705c203a125A3F2c": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8b4424E27F9D0707BDdCfBaFB5eD2F94dC9DD682": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8b44c266b6346b9E76D4F9ac1dEd488A35812FEB": { - "balance": "0x10cd398184a4bbd70000" - }, - "0x8b4A55927a6349B43260228f67e7517830fE6481": { - "balance": "0x15af1d78b58c400000" - }, - "0x8b8B8C800Da3000B1A3f56eA6eab6e8C201845DC": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8b99D3432E54C38eEA5B2cEf892d04558274922c": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8bA98277cf3C1eD8b55e095F3374000D56beD631": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8bC427033346BE192A24eAFFf24E5c55D1d86C7A": { - "balance": "0x8fedeee68f49836e00000" - }, - "0x8c181575Ad02F0B6dF136311761a5782711A7b19": { - "balance": "0x4563918244f40000" - }, - "0x8c1Edd588f9FCaff3D2d82407f90e2A3725EE4d2": { - "balance": "0xa796504b1cb5a7c0000" - }, - "0x8c37682B085BE364a1D1961BD4672eDDD7b625c5": { - "balance": "0x4563918244f40000" - }, - "0x8c3E990b6A5e82e38fd49cd3a6EB4495A913809A": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8c67213EcB0c93cADD85B317B94D6BEbDB85f4c4": { - "balance": "0x3f514193abb840000" - }, - "0x8cD5dA5e56a1Ed34f8483164E310353Fae26e68B": { - "balance": "0x967c8fb296e740000" - }, - "0x8cadec491304366d22de2Bcd43d14853098a30ed": { - "balance": "0x1158e460913d00000" - }, - "0x8ce768Fbc1C244B7A17db091dcA4B24f936C7556": { - "balance": "0x2b5e3af16b1880000" - }, - "0x8ce8C68B890A556BaF9b785E9D66ffF70D0F24C5": { - "balance": "0x85f5bf96eb2b2880000" - }, - "0x8d3B7363ee9746aA71A28d5fD199A0c7eCE6B974": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8d448866f6090889F747Bb507Eb5eDa02Ee5E12f": { - "balance": "0x8ac7230489e80000" - }, - "0x8d6fe0196759134852309ee9b66c401D52f2F906": { - "balance": "0x8ac7230489e80000" - }, - "0x8d79403307E551Cb641a2ebF5D43741604668aBe": { - "balance": "0x4563918244f40000" - }, - "0x8d7a08cC5d435A6d6fC9d18135ED6188c1B62AA3": { - "balance": "0xa2a127bee5f43e80000" - }, - "0x8d8142b8340E2D8D14b3cd1895DdFE910C7D1bAD": { - "balance": "0x2b5e3af16b1880000" - }, - "0x8d8401D705324E82f95aFD9b46d88380BF9e2a7d": { - "balance": "0x8ac7230489e80000" - }, - "0x8d85D4CcE711c74d195c4FE92e02FAa6865B98A0": { - "balance": "0x3f514193abb840000" - }, - "0x8d9E133FFBAdff13a921b1305B9ce433ede9a6f8": { - "balance": "0x4563918244f40000" - }, - "0x8dCEc09a4e87d44858509B4e1c5B93eF7D339274": { - "balance": "0x967c8fb296e740000" - }, - "0x8df1627785281aecCa8b5aFFa04b0f92a810b091": { - "balance": "0x4563918244f40000" - }, - "0x8e1Acd3c719030BD7BF07954dCbDeb596BDDDE4D": { - "balance": "0x3635c9adc5dea00000" - }, - "0x8e1D1E1a1Bc95ceE50667BCcd84e5114Ff8c827c": { - "balance": "0x4563918244f40000" - }, - "0x8e35dF02213A58b7f62CEe4673b75A979b9f3D3f": { - "balance": "0x2b5e3af16b1880000" - }, - "0x8e756A406fF5eae03F4E66eb150eeC600D0D63Dd": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8eAD872e8cc745A39a46d41Dc9F6205ea0EBD237": { - "balance": "0x4563918244f40000" - }, - "0x8eD2aEbA208eC15c0A3ddee475eA405C853cB33b": { - "balance": "0x1e7e4171bf4d3a000000" - }, - "0x8eF589AC70db4F0a338727be3A5d7790e497B91D": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8edA9718D2045F2931f27d39eD82bbdA45715402": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8f3E6c3330FE741e233F097B190FAB95DD071FA4": { - "balance": "0x4563918244f40000" - }, - "0x8f5acC92c5B55cf48eA80bdCe7255D7d08fA5035": { - "balance": "0x11e1d056ab3032a0000" - }, - "0x8f85C3D45D698492F941D6dfDFB27438B00Ef8D3": { - "balance": "0x4563918244f40000" - }, - "0x8f95d678E18cace420fa52265236604b995A77ea": { - "balance": "0xad78ebc5ac6200000" - }, - "0x8fAe8DF3a5c61d6e9A799A37453741ccE97440A3": { - "balance": "0x3f514193abb840000" - }, - "0x900B725224142c1Dc2c837F111d67EB715F29f07": { - "balance": "0x1a055690d9db80000" - }, - "0x90121b5ad185bbCE5a62f7755d0061eC9312e3d2": { - "balance": "0x4563918244f40000" - }, - "0x9017c30FeEeA2f2d1077133d17f7c93e12228DE3": { - "balance": "0x4563918244f40000" - }, - "0x901ba7395EE76Dc111C276B68A4B11359875C28C": { - "balance": "0x4563918244f40000" - }, - "0x901cb2826c264d7e64D5A1fB30F56E3f39a313AE": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9021de3c60976982f89AAA713Ef16ec5f5a2c678": { - "balance": "0x2116545850052128000000" - }, - "0x902E928E7C484b63B40beFBe449E2499FeA5ABA2": { - "balance": "0xc3663566a580000" - }, - "0x905741f15Ec270D5305DEa5a7e1DA1aAcCfA83e4": { - "balance": "0x4563918244f40000" - }, - "0x907F546bf44dD4F6F2d61e707e7C81FB76965c74": { - "balance": "0x737693eb3340000" - }, - "0x9082a7753be4De163E52E4a815074bf736abF85e": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9093b54087555c4E18f21f9b4Fdc92D4BF4AbEe2": { - "balance": "0x1a055690d9db80000" - }, - "0x90B0015c145bEBc5A88ff8a23457311D8Df311E1": { - "balance": "0x967c8fb296e740000" - }, - "0x90F4E7b1E23e893B388a7B1931CFa34a86BF527a": { - "balance": "0xad78ebc5ac6200000" - }, - "0x90bE57FA93Bcafb999FAa5d0fcD6f29223abE613": { - "balance": "0x8ac7230489e80000" - }, - "0x90c1CFdad347c2cA0A41f4A4B711e2E1358DE610": { - "balance": "0xa217b21de090000" - }, - "0x90d576fe72C53E3Dd83e08236b692579bc8d2da6": { - "balance": "0x270801d946c940000" - }, - "0x90f91351F4027A2463C65708af309aEde3Fc9b9D": { - "balance": "0xad78ebc5ac6200000" - }, - "0x90fa437062226BB78cBF82821c595DfE3d5eB557": { - "balance": "0x4563918244f40000" - }, - "0x910247983Eee4457cb48c15125283A9A28c407e1": { - "balance": "0x967c8fb296e740000" - }, - "0x910947afF8c7c2D3803955E72e4a4eF5fC162a2c": { - "balance": "0x967c8fb296e740000" - }, - "0x9112B4d6feb03D112ba40Ba12a6f193864d6a8Bd": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9114bB59ec6151F09Cd4479459bCd918C21bE7c1": { - "balance": "0x1794d673456eec0000" - }, - "0x911B287C36DDe0CbF0611929a05cb17752fD44d8": { - "balance": "0x967c8fb296e740000" - }, - "0x9122b8C2bF621D72edF442c5Ba173570Df78e950": { - "balance": "0x8ac7230489e80000" - }, - "0x912CDd34C17F3a56255f2e83134513BeF4918371": { - "balance": "0x55ef523dac9a570000" - }, - "0x913391cfF1e7C3842482B5b5f6fd59dCDe1Ec40e": { - "balance": "0x55ef523dac9a570000" - }, - "0x915FcB4eF6Ea444A7D1B91565E8fa90687dBA021": { - "balance": "0x7ea28327577080000" - }, - "0x915b79eF143cDc1333B734BA2A18b535f4360b6B": { - "balance": "0x8ac7230489e80000" - }, - "0x9165FA74ecC78e20335816242A7f3E06fdC96CD3": { - "balance": "0x4563918244f40000" - }, - "0x917026cc35A882BD1F02f3671b85c95C362A9c9f": { - "balance": "0x4563918244f40000" - }, - "0x9199E33Cd30325F9C16982697Bdb28Db22975f98": { - "balance": "0xcca90be75390cfb0000" - }, - "0x91B445eb133CD73fdE4CA62956149fFDEE722EE6": { - "balance": "0x19692e124cfbba030000" - }, - "0x91C0A8294e24e2b4D1d79FbDC4eae99ED1701c87": { - "balance": "0x3f514193abb840000" - }, - "0x91CE6fF2F618fe67734C4D8BA363D2E858DDc68D": { - "balance": "0x4563918244f40000" - }, - "0x91Ccd88d182071745281EE586584683e2a60006D": { - "balance": "0x55ef523dac9a570000" - }, - "0x91F10cffdeB9701f2A03D72fF309fB08857A9b49": { - "balance": "0xc3663566a580000" - }, - "0x91b2414e5e45E01651539DEb02bCfFCc58495d56": { - "balance": "0x3070f5d38330000" - }, - "0x91bADb37025544AD9b47CE68178552E63c58C0Ce": { - "balance": "0x8ac7230489e80000" - }, - "0x92142b81BF1c91E2D2c9f56e775cef1210bAEf8d": { - "balance": "0x3f514193abb840000" - }, - "0x924f4Bcd8696dcD927724b32466148D4aEfF7002": { - "balance": "0x4563918244f40000" - }, - "0x925A54e81827b33e5648B3b4Aa0df3913063cb34": { - "balance": "0x4563918244f40000" - }, - "0x925A9b36dB2C2a0a56f3842E3852C0AE6d13B2A6": { - "balance": "0xad78ebc5ac6200000" - }, - "0x92690e610c55E830839DDd1db04160c980360Eba": { - "balance": "0xad78ebc5ac6200000" - }, - "0x92711960ea265632C56399eD8411E6F85071B53A": { - "balance": "0x3f514193abb840000" - }, - "0x927e68F1B481840Ff221223b3f8Bed445C9C93f3": { - "balance": "0x4563918244f40000" - }, - "0x928204eBE863623F7E101B2AF15ce9412862565f": { - "balance": "0x8ac7230489e80000" - }, - "0x92928216c30bf25a1a449D3f9B505c32Ed3f7d8c": { - "balance": "0xad78ebc5ac6200000" - }, - "0x92CA80c8035dBF01A4fdEcDaA570885e69334046": { - "balance": "0x4563918244f40000" - }, - "0x92D4331D1C89600DA2F1241D3d3CbC550247dFe2": { - "balance": "0x4563918244f40000" - }, - "0x930167701ab3E1a9cEbBEf221B76Ff1b13c9b664": { - "balance": "0x4563918244f40000" - }, - "0x930444fda8D1d132aCdd626Bf360B1FDbA066235": { - "balance": "0xad78ebc5ac6200000" - }, - "0x930a3E89D189efdBD3e26e1C536FdeBF6CB5211C": { - "balance": "0x4563918244f40000" - }, - "0x930d05d8E253A96c5351DFbD3BD6e88e29960c85": { - "balance": "0x1a055690d9db80000" - }, - "0x9311134A610F8597D53D80b1d0443c27C8fe9a28": { - "balance": "0x4563918244f40000" - }, - "0x93153e10e0685432995bA2305010F94E925e9bB1": { - "balance": "0xc915c9fee049d490000" - }, - "0x933BD26dD9Eef5888108aAD05425d1E827247825": { - "balance": "0x514fd0793d9379c0000" - }, - "0x933a196033D7a06234B0Be014661f37fb91fca91": { - "balance": "0x4563918244f40000" - }, - "0x93492172CB92ad8B33c42E95F5461732C4a23212": { - "balance": "0x32d27af3a0345d640000" - }, - "0x935005ac21aBb9BBE21552480f596F3713634cD4": { - "balance": "0x3f514193abb840000" - }, - "0x93583643dA0D521Dff5DD5c85612265a92aD59bc": { - "balance": "0xa31062beeed700000" - }, - "0x93598138a9b2F79316667C9F1535EFe81083560b": { - "balance": "0x270801d946c940000" - }, - "0x937551981B219CB5Dc38e8dAEc49C16708001B3e": { - "balance": "0x4563918244f40000" - }, - "0x9385E3D5a9ACddf04efea273FdB73bE8da0D7A25": { - "balance": "0x9e67b061b4d0db6db" - }, - "0x938fE8070864c84c41053711334fc19b92A99249": { - "balance": "0x3f514193abb840000" - }, - "0x93Aced0a7775E3cD0262668b3675F0a0e39e20c8": { - "balance": "0xad78ebc5ac6200000" - }, - "0x93B08D9466F06C811011FFAe4ee8FCC2802037ec": { - "balance": "0x1eb5edea705589267e000" - }, - "0x93CF56B13BB39bfB43D5eC18097A7da4e6d73018": { - "balance": "0x36c408fe7752610000" - }, - "0x93D5c212F04B3212a85267f2Eaad454B3d5F08B9": { - "balance": "0x4563918244f40000" - }, - "0x93F8D75cB5154ec3581a9834aE1aACC17827478A": { - "balance": "0x4563918244f40000" - }, - "0x93e6a02b43470629fD11BA7D688Ff9E261110e67": { - "balance": "0x4563918244f40000" - }, - "0x93f8b601B03A585E4bb040dE594f02e9D2B28435": { - "balance": "0x4563918244f40000" - }, - "0x940C240dF236fa2a31Dae11a8b7BF5d75A5Dd238": { - "balance": "0x1158e460913d00000" - }, - "0x940bCD7E8D386463F2F315898408Db65E88a3d40": { - "balance": "0x4563918244f40000" - }, - "0x942995d5c0cD6dD168B0c5d46803c02CB018e5ea": { - "balance": "0xd9812775303d0900000" - }, - "0x943c68bdAC8A778A94EEbCE3Be31Cf3b8432D5F0": { - "balance": "0x3f514193abb840000" - }, - "0x944372420cD81a53E63867F8B00c39a04dF11C05": { - "balance": "0x3f514193abb840000" - }, - "0x944952562d5672BBcA7d804346A69f4F70e107F6": { - "balance": "0x4563918244f40000" - }, - "0x9462b12065D033Fd8D6d4852dF758E4a4B3D5CCf": { - "balance": "0xad78ebc5ac6200000" - }, - "0x946F4dFCc5BA1Ae13af69f5753468dAe70A2a781": { - "balance": "0x7d74881aa188000" - }, - "0x946acCC2d5DaFCaD68bE4170CF62457eE7275a85": { - "balance": "0x60c6e0fa0760770000" - }, - "0x946ceeA252CC101E9EA094aCf615b8122B0bbD42": { - "balance": "0x3f514193abb840000" - }, - "0x94A4A7691cAF0f03cBf8739De1a32711471F84eb": { - "balance": "0x967c8fb296e740000" - }, - "0x94Aab4F907A61a77d7e6aE10842D443f71a365F6": { - "balance": "0x4563918244f40000" - }, - "0x94B3DF056653d265041e3f4039DDC96DF6C4ceB7": { - "balance": "0xad78ebc5ac6200000" - }, - "0x94D35E27D69f7E5bA1ED09e9EE8daE4674A17945": { - "balance": "0x4563918244f40000" - }, - "0x94D99F50F08fe740506266B7C9c9efE399194DA2": { - "balance": "0x1158e460913d00000" - }, - "0x94c09b1AC49Dcd8bea426CEA8766f6df1c513aa1": { - "balance": "0x1158e460913d00000" - }, - "0x9507420a6882ff024eA2d2Feaf0B4CA0A5301bBE": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9512B8c1b63C9893258920b5998134a1261DB85d": { - "balance": "0x3635c9adc5dea00000" - }, - "0x9571c76ea581083574C1E98c3b90cd5fb5D443e1": { - "balance": "0x4563918244f40000" - }, - "0x957cD4Ff9b3894FC78b5134A8DC72b032fFbC464": { - "balance": "0x3f514193abb840000" - }, - "0x958583D7E454bF8Ef5f90a0F8fdC9423A748d6B7": { - "balance": "0x3f514193abb840000" - }, - "0x959FD7Ef9089B7142B6B908Dc3A8af7Aa8ff0FA1": { - "balance": "0x7ea28327577080000" - }, - "0x95A1e81a88fAa4ef8E61F66EA6c9Cc8049acDecD": { - "balance": "0x3f514193abb840000" - }, - "0x95B5eb36CB89C85b15c5Bb313bc887a539d3CAE8": { - "balance": "0x3f514193abb840000" - }, - "0x95E30833F525E51AaEaEfa72D8Db8130C979abEb": { - "balance": "0xad78ebc5ac6200000" - }, - "0x95ED91E587F17A311CD216C704A2CBd06CFf085a": { - "balance": "0x55ef523dac9a570000" - }, - "0x95Ec860f97E2A6bE4b2E5908d0d846E89b4Bc1Fb": { - "balance": "0x4563918244f40000" - }, - "0x95F8930010f5d6cb3e615c134f6AC0472377C443": { - "balance": "0xad78ebc5ac6200000" - }, - "0x95c7b5Ae2AFB4508CBD7B5779fE9D674bE56c4d8": { - "balance": "0x3f514193abb840000" - }, - "0x95cC5B4A32A9815B74A51418B5b9F1f62AB5E1aD": { - "balance": "0xad78ebc5ac6200000" - }, - "0x95d65D3A60d815a6E8f233BeB890c409838cCabe": { - "balance": "0x4563918244f40000" - }, - "0x95f30938040fAFDeaE6343618bb822E961ea118e": { - "balance": "0x2108bbcbb8d0bd300000" - }, - "0x95f4cd2270D99A3deebE67E0d1252A6CCFEB0d35": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9616E91eA84EE69c35cB161BC4c4335e1Dc6590d": { - "balance": "0x4563918244f40000" - }, - "0x96203A314504Fb1a14d40c6Bf9D08d3eBad3425F": { - "balance": "0x2b5e3af16b1880000" - }, - "0x963405A7883ab6B82Fe284A8A87B0046dc6aC86c": { - "balance": "0x4563918244f40000" - }, - "0x963724f9ce2b90fe19780329FD170975ee58eF0E": { - "balance": "0xa688906bd8b0000" - }, - "0x964b125d984069592fE597ae139c614B1CB7430B": { - "balance": "0x8ac7230489e80000" - }, - "0x965EBa1586122fD79B2886bd221a30455F8359e4": { - "balance": "0x8ac7230489e80000" - }, - "0x9660C130E6b0e48E39c35062B345C2D7ef217E5e": { - "balance": "0xc12dc63fa970000" - }, - "0x9667b155f65dDd02b856BF495163cF53F105d971": { - "balance": "0xad78ebc5ac6200000" - }, - "0x967648788DAba09eba211cF1818eb7ACeBfc02E7": { - "balance": "0xad78ebc5ac6200000" - }, - "0x96802ce93e0Ae13545Dd0656D1bC769aDD0E0327": { - "balance": "0xad78ebc5ac6200000" - }, - "0x969AAc215a636233de5e6dE32C2dABDf1Cb264D2": { - "balance": "0x1a055690d9db80000" - }, - "0x96B48E06a9326ffA6FA278Dd38777e791e7A0ff5": { - "balance": "0x4563918244f40000" - }, - "0x96BC6015ff529eC3a3d0B5e1B7164935Df2bF2fd": { - "balance": "0x1c3bd572cb6270080000" - }, - "0x96D086C56E4353ddae191342c76C0b43023679a9": { - "balance": "0x2b5e3af16b1880000" - }, - "0x96DF33725894617C1a12f5134ac8A0c566046D4B": { - "balance": "0x4563918244f40000" - }, - "0x96aA709d2e63529b2445bca85543f4b85BDc908A": { - "balance": "0x3877aae596c4e0100000" - }, - "0x96b3c97ef1656C01ac361f3704459cAE3E3898FD": { - "balance": "0x5150ae84a8cdf000000" - }, - "0x96ff102fB441908d24C2A68a1aB07a5D9f506A5F": { - "balance": "0xad78ebc5ac6200000" - }, - "0x975D8311219f51273217048Dd04DE07822008bB6": { - "balance": "0x3635c9adc5dea00000" - }, - "0x977e03C85E45Fa04d7a1846Bc93CfD6d0Ab8d6d1": { - "balance": "0x4563918244f40000" - }, - "0x9780c0A84c19cef9d0A255E967cB6245Cc7Aa342": { - "balance": "0x3635c9adc5dea00000" - }, - "0x9780d0a21399fC34065460671208eE694c980491": { - "balance": "0xf3f1b965e9c761b0000" - }, - "0x9799Bd7415B2C592aEB2E9Ec4Bdb02Ba2DafE211": { - "balance": "0x3410fc30cc307af89f6000" - }, - "0x979ac75fE4b71229bf700135297992D56e9407eB": { - "balance": "0x8ac7230489e80000" - }, - "0x979dE1924e025e07d43583D77Ae08653F3FF2487": { - "balance": "0x15af1d78b58c400000" - }, - "0x97B26FFFda46Fde30d0a4Ba71283f4Ab356a685d": { - "balance": "0xad78ebc5ac6200000" - }, - "0x97B5c02A68C7e870E02Ab096C6AaDF39938e71F9": { - "balance": "0x35a481351d1e41200000" - }, - "0x97D0dBc073f3a69CdCE6Bb2809C24d1923512936": { - "balance": "0x4563918244f40000" - }, - "0x97D4c49867Ad16BaD0Cf6799597d5d7BdDa5A6b9": { - "balance": "0x204f295a41b4d00000" - }, - "0x97D8d56da01E59765727FC212Fcf0C3D02F3BFf8": { - "balance": "0xad78ebc5ac6200000" - }, - "0x97FFe3B55760A0EFd91Dd0193796e345e55cF1d3": { - "balance": "0xad78ebc5ac6200000" - }, - "0x97a551D13a6824472222085FE55fe5339bB8A6a1": { - "balance": "0x3f514193abb840000" - }, - "0x97b379f22750176592209DFdb233F20d7a179138": { - "balance": "0x515093df72fa1f40000" - }, - "0x97dF0dbAA3137E99b4C1E1FCbB9ed29d10E0ad5F": { - "balance": "0x8ac7230489e80000" - }, - "0x98118D9162F852c79dD775897cf2c1e9ed9910eA": { - "balance": "0xad78ebc5ac6200000" - }, - "0x981a5E4C482B69BeDceE7026dc4F60582FeaC142": { - "balance": "0x22b1c8c1227a00000" - }, - "0x9827AA5Bd56EAfCdC4D987AB55c256A54aC01D7b": { - "balance": "0x3f514193abb840000" - }, - "0x9834A885bd3Ba78C964f2319D5616419Cfa1696b": { - "balance": "0xa217b21de090000" - }, - "0x984F369327482a1Ac54b5d18b8731872322F3666": { - "balance": "0xad78ebc5ac6200000" - }, - "0x984a1b1D201eD40Ab414d306aC78c3FF46375E27": { - "balance": "0xad78ebc5ac6200000" - }, - "0x98519C5abB8565E78A62CE5462fDA7C5252e1E15": { - "balance": "0x226c652fa0350c0000" - }, - "0x9854E2cB0E71c3bB783Be136634c450Da5509bF5": { - "balance": "0x3f514193abb840000" - }, - "0x98747800852c2f808bb0561596a30168e434d271": { - "balance": "0x3f514193abb840000" - }, - "0x988a1486FD1e2faDdb25B45497DaBE02DA4C24A8": { - "balance": "0x3f514193abb840000" - }, - "0x98E33F1F8BA1C9892dd4c156482CD5cF7dF61232": { - "balance": "0xad78ebc5ac6200000" - }, - "0x98EE55E4945E20455B66C1E82E0cc88EA5A34C14": { - "balance": "0x515093df72fa1f40000" - }, - "0x98F8a59E5Ca41Bcc3d0cDDA5fbFC6926E4D24F5B": { - "balance": "0x3635c9adc5dea00000" - }, - "0x98a0B2AE8e47d243EBfa8D3dDbA23B21F321940E": { - "balance": "0x967c8fb296e740000" - }, - "0x98ac31827201a60F3a78603B2115f9D69965c99e": { - "balance": "0x4563918244f40000" - }, - "0x98bEEA20D410036021B4040C3D1C50069A7c9358": { - "balance": "0x4563918244f40000" - }, - "0x98c99685Ac385F36264D67468Ac75E9B6e7A50CB": { - "balance": "0x3f514193abb840000" - }, - "0x9906391FC0Db81Ab51d4ce1C8b75135817Cc8916": { - "balance": "0x3f514193abb840000" - }, - "0x990D1F775201185929DDc813267a5FcdDbd9015E": { - "balance": "0xad78ebc5ac6200000" - }, - "0x99306BD250c8c89F643751DCe48e377531dFeDd5": { - "balance": "0x3f514193abb840000" - }, - "0x9945daD0f2637fc268f407c9de9d3C0Ff6164654": { - "balance": "0x8ac7230489e80000" - }, - "0x995e075A3D21fa229262152A5e90B1Cc5AB0eff1": { - "balance": "0x1158e460913d00000" - }, - "0x99678b1e0549127335DC5a6308F278A8F764CACf": { - "balance": "0xfa182ccc1b1744a0000" - }, - "0x9978ae52f6695983230725C9D1E30007cf42f1b1": { - "balance": "0x1fee59edb" - }, - "0x997904C98E9A5a5b8DBB59F00E111b7B4E42dfa0": { - "balance": "0x8ac7230489e80000" - }, - "0x99859f377694d040c35A5a96D7E5ba8d631125a3": { - "balance": "0x9e67b061b4d0db6db" - }, - "0x999752dd110Cd1600756f1696d284CdB9900D4F5": { - "balance": "0x4563918244f40000" - }, - "0x99B1e91a69498eBc31b9281367d2f8654ce4dfdA": { - "balance": "0x8ac7230489e80000" - }, - "0x99B317aCd148fD3B47881f0A55522Bfd0bD91679": { - "balance": "0xf3f20b8dfa69d000000" - }, - "0x99B83676418224D9bd1DD11F73307A4586655100": { - "balance": "0x3f514193abb840000" - }, - "0x99F19A9A780Bf9018A9DAF42b5676a5Ceee83221": { - "balance": "0x7e90bfae1f90000" - }, - "0x99a853E83A7868AE963a796B01b2C7EE046011A3": { - "balance": "0x1cf05c5e83915c44000" - }, - "0x99d6360F8A027E081D69e593aa1da612Fea92538": { - "balance": "0x9e67b06194e281800" - }, - "0x99edCe7020e983F72EdC60BB0c1018706cAbDaA1": { - "balance": "0x10f0cf064dd592000000" - }, - "0x99fDeBa0E5bC2566059F9eA6Ed8A09C34483EEcF": { - "balance": "0x4563918244f40000" - }, - "0x9A3bf7e7ae91FdBfeC14762F96A7d80862eac06D": { - "balance": "0x8ac7230489e80000" - }, - "0x9A4531473f3B6A8fBa2A56162Df1931ae7c36633": { - "balance": "0x377da8f6c2eaacc2c000" - }, - "0x9A712A721346253EcF929414913CF42844dA66ed": { - "balance": "0x4563918244f40000" - }, - "0x9A7Ec57E3B09bB706b0fA8cEE5E7C8aB9BAa0759": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9A8d72D7Ad434962641a7Fd72e764f902b696D52": { - "balance": "0x55ef523dac9a570000" - }, - "0x9A9754DaA02157161A2Aae38aDe03cDc935D59e6": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9Aa4977575604ACb1Eb8C12a7BA05d0d194a4b2f": { - "balance": "0x4563918244f40000" - }, - "0x9Aad8Fe30ABFdD58808752D89F83538db9e3b86e": { - "balance": "0x3f514193abb840000" - }, - "0x9B230C99cD5Db07906ea802195459b633ff9C19D": { - "balance": "0x8ac7230489e80000" - }, - "0x9B3d66192B9fE924014c38E627F084786a7333c6": { - "balance": "0xa2681e17ac896380000" - }, - "0x9B43F04191BAeb2648b96A7a0088bB894FDC3b14": { - "balance": "0x4563918244f40000" - }, - "0x9B45C6B8b5B99DA46AB6Ae47D0aB247EB9Bb3C4b": { - "balance": "0x3f514193abb840000" - }, - "0x9B4e193EAa8c35faC121D3BcEaF39199BbE3958B": { - "balance": "0x4563918244f40000" - }, - "0x9B536b6a6442B1AD6fbDeE029B3E0b78E35cfA96": { - "balance": "0x610d6529593c04d90800" - }, - "0x9B5AF578E153980ABD758F2Be08809B89DA85c90": { - "balance": "0x4563918244f40000" - }, - "0x9B77601e54360C8F78b369Ca761C649BCE52c63e": { - "balance": "0x15af1d78b58c400000" - }, - "0x9BB4DE4353f37Bd83a7d9928bCf82b298d1E05c0": { - "balance": "0x8ac7230489e80000" - }, - "0x9BCC85C74b3893522fa7eb2cAD12AcBE037D7726": { - "balance": "0x4563918244f40000" - }, - "0x9BF4Bf45F15f5e2d1820C3eF09BA1E5c31D7181a": { - "balance": "0x8ac7230489e80000" - }, - "0x9BF5D32445C833B3497424971cAc8eB7bEc86253": { - "balance": "0x64bbf513421bfb0000" - }, - "0x9C01732Fd678Aff29501b40eD63C441e19418E68": { - "balance": "0x27b46536c66c8e3000000" - }, - "0x9C0629eecC2F6Be50A3451C0ad1324d5B70509dD": { - "balance": "0x515093df72fa1f40000" - }, - "0x9C1cb39cbD078D62a2439C047365FFc938c67D82": { - "balance": "0xf3f20b8dfa69d000000" - }, - "0x9C635c2d073D393c9EeeC8c1e36b269541454aC3": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9C695D6140971c5C9e0f5f0b7D3CE9765EF99d79": { - "balance": "0x3f514193abb840000" - }, - "0x9C7c587A102ce571C5ea4483b744B840393B624D": { - "balance": "0x9e594b01543a000" - }, - "0x9C878C4242EC58CCC9ad7a76646445B90775e890": { - "balance": "0x4563918244f40000" - }, - "0x9Ca0C59dE42510c3ff7F0faC4bC5f399a0B3573f": { - "balance": "0x4563918244f40000" - }, - "0x9D02233d3E093FF5CFa6a30330D4801B486aBaba": { - "balance": "0xc12dc63fa970000" - }, - "0x9D12B0eFC9ea00882819Ccd0eF218B62E0c23028": { - "balance": "0xa604b9a42df9ca00000" - }, - "0x9D16Dd9EF723D5d7cD01E780E8cC0d0eEbdbe651": { - "balance": "0x3f514193abb840000" - }, - "0x9D2B90953D1bF9DbE61e3952895a2F4EE6a22929": { - "balance": "0x4563918244f40000" - }, - "0x9D2ED5E49028a0179754704606F31DD62ECCd6ae": { - "balance": "0x9d3595ab2438d00000" - }, - "0x9D308E7171D5298B2bCad5DECbF7f07B45393f1b": { - "balance": "0x3f514193abb840000" - }, - "0x9D3c593DAD921EbA64E5A8dD03Bc360250920ab9": { - "balance": "0x3f514193abb840000" - }, - "0x9D851728A94293c8518c6840e566C9f24B8c3BB4": { - "balance": "0x4563918244f40000" - }, - "0x9D9012FB6027eE28B2EabAd996b384B59b224E3f": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9DC3Ba3db665015AF79F76b453bc13884e3E21cA": { - "balance": "0x4563918244f40000" - }, - "0x9DD75c58Ab25ae4Db09F3Bc7b6DBDB0d9147c44B": { - "balance": "0xa9259cbf6b3d950000" - }, - "0x9Dc6eC100ce49dEda36992f6B1Dc60F4651bE520": { - "balance": "0x4563918244f40000" - }, - "0x9Dd8Eebc09F53a7F3762b4d0a9718c9868f98a30": { - "balance": "0x8ac7230489e80000" - }, - "0x9DeC1b16c7c0F0a2E8ac098e585000E015f670e5": { - "balance": "0x515093df72fa1f40000" - }, - "0x9E2C9D0525acb5eE0D37482e08Bd2947658854bB": { - "balance": "0x3f514193abb840000" - }, - "0x9E71Eb7FCC007823fF5A91C06BE9eDC4A0347FeE": { - "balance": "0x2b5e3af16b1880000" - }, - "0x9E8Bb167364D04c05476356bd6e74d359ba0A547": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9EBA310Fc37d9ff8FEfd5FeA1cEC926e9B9f661C": { - "balance": "0x4563918244f40000" - }, - "0x9Eb5615DaF56b4a5D0D22BBB12871DD2f072C05E": { - "balance": "0x1158e460913d00000" - }, - "0x9Ee7F0568434929991c3da4bB1DcB5a8CeEc2a8e": { - "balance": "0x3877aae596c4e0100000" - }, - "0x9F1bEdfC8dEa9d22266bC4E2600e6E792b4AF380": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9F6453Aa893f214b5c9F32F4CCc9B98174720F9e": { - "balance": "0x1569b9e733474c0000" - }, - "0x9F7686c04aF982Abd0ca476a7606323Da9391a8B": { - "balance": "0x8ac7230489e80000" - }, - "0x9F776cCBC53B99AAE36b8F77D8Ec350424708b98": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9FAcFb4b1D89e53E02ABB7797353544047502658": { - "balance": "0x55ef523dac9a570000" - }, - "0x9Fca22cCF5c0a3897Bf6e58f90EF10Da8c1f249C": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9a592864806620EA8189fEc2b9c7C011060bD232": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9a675D451143e3134c614B7b14F87f3b3F8675CC": { - "balance": "0x967c8fb296e740000" - }, - "0x9a984f3e455f44fb79D19Ffc432c64c4Fc72DA45": { - "balance": "0x134ff63f81b0e900000" - }, - "0x9aB1AD2A16148449df94D3B7A31971346107d04c": { - "balance": "0x4563918244f40000" - }, - "0x9aC1e6FBa59de32F53E94228A3E8B9Bf197e57a0": { - "balance": "0x4563918244f40000" - }, - "0x9aEad68c872f8451AD3c0b5EAdbb3ec1398E19f7": { - "balance": "0x515093df72fa1f40000" - }, - "0x9ad34882Fa5482BaB8B56e8D077A133eEeFF7aC5": { - "balance": "0x79f8ddcf2c772ee0000" - }, - "0x9ae930E587837f4D970443DDE1A0D39B531dE0BE": { - "balance": "0xf3f20b8dfa69d000000" - }, - "0x9b2ed35d36E54915929C21c777A27AA648c89E06": { - "balance": "0x4563918244f40000" - }, - "0x9b8097f7b01C240462912EB9989F59E9f288a181": { - "balance": "0x4563918244f40000" - }, - "0x9bB8839aC0C7f186dB112355e3835b85BFC03dcF": { - "balance": "0x3f514193abb840000" - }, - "0x9bE15a370B98D0153cD2Eacd4cADCD59c46bD035": { - "balance": "0x2116545850052128000000" - }, - "0x9ba4cc5B43cC7bF6Abe56409f0d1461aB3bA34e5": { - "balance": "0x4563918244f40000" - }, - "0x9bb49ace464e11f06a3C25bDA9E33F3aCeBA30eE": { - "balance": "0x4563918244f40000" - }, - "0x9bb8eDF7F8371FBC8e0d6845D9bD3580589C2814": { - "balance": "0x3f514193abb840000" - }, - "0x9bcc2E2f832c92bDb6B3d86bcfc7D57e0a860ac6": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9be5008c5F81F3f869a66AFb767DD9E8Cd7cfF3F": { - "balance": "0xc12dc63fa970000" - }, - "0x9be579B42E904161b5216a67de76693C7Ff48d46": { - "balance": "0x10bab75592b22000e0000" - }, - "0x9c03E8b9717e7C60f3CCF016345497E6248551f0": { - "balance": "0x3d113ff9a3b6ad70000" - }, - "0x9c145a6C7AC655dD5dEA6c5A679f9f4c494494FD": { - "balance": "0xc3663566a580000" - }, - "0x9c19CA5e9b1951BB1EA59b470aEb95386eac3eaE": { - "balance": "0x2b5e3af16b1880000" - }, - "0x9c298313f7839f7c5beA0Dc1926Cf31Ae7e51C81": { - "balance": "0x9e67b061b4d0db6db" - }, - "0x9c3C67EAF3C22Ff92d6AE45eB782188B2A3fED32": { - "balance": "0x3f514193abb840000" - }, - "0x9c49AD755a71BCcd2412183753031439Bd043d39": { - "balance": "0x8ac7230489e80000" - }, - "0x9c66e377972673534b59035E08d70D85c7DB3641": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9cA3118ff3bD8726f622F8B1baD36898168F6c86": { - "balance": "0x1158e460913d00000" - }, - "0x9cDD687d220D80E84e115706bB6AAC579Aa1A31b": { - "balance": "0x1e5b8fa8fe2ac0000" - }, - "0x9cE1ba82743F1DAF79491A0c0a89E7aD2382af76": { - "balance": "0x1b1ef63a855b19500000" - }, - "0x9d0ae83d9Fa02909855c6ADa2b14673286BB23d7": { - "balance": "0x967c8fb296e740000" - }, - "0x9d747739Df61eeBbf9d442F7d568abB05aaFd6b1": { - "balance": "0x55ef523dac9a570000" - }, - "0x9d84F399E50962075Dc9316A0DAEF1882a61c7bf": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9d8a5f5655A07f27F9c96e90a6da714400a70f54": { - "balance": "0x3f514193abb840000" - }, - "0x9dC2832BE2aA98713b164eeEa1B5579D1Fd65f0f": { - "balance": "0x3f514193abb840000" - }, - "0x9dF01b6D9077e5f8cCb447e171912DcA7f6c34Ae": { - "balance": "0x4563918244f40000" - }, - "0x9daa1CD8DD72cE0A0f4e54817B2080995a078655": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9dcbA3A1Eafd3F1b47da2Ab8A68c348e85DEE0be": { - "balance": "0x4563918244f40000" - }, - "0x9de3C1C05A5D8B6005Ce8218b2B8A81F6d09E4F8": { - "balance": "0x967c8fb296e740000" - }, - "0x9df6716a16BBC68Fd5AEA1A106fA6Be202579a0B": { - "balance": "0x4563918244f40000" - }, - "0x9dfc193Ab5BA4Eb5DaDc89B2713E8cD72a464baf": { - "balance": "0x4563918244f40000" - }, - "0x9e0454674942155c02EEe89FF96B067Ff5aB6709": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9e1e80dd69C009de404fe49c7842bc702215344e": { - "balance": "0x4563918244f40000" - }, - "0x9e46076bd325000e22787127e65aD4ffAF084Cf9": { - "balance": "0x8ac7230489e80000" - }, - "0x9e569E7f6306fD065dcc6Dcd46Cec64f6225A5A1": { - "balance": "0x4563918244f40000" - }, - "0x9e61161094652Fe55EFAc0472E62507c5cBC85bc": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9e9153C596f10682aB6fd8C9E97c3af37BB2849D": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9eA60d448E997FB6a51d9655cEb7F4D5b8FcF7c6": { - "balance": "0x515093df72fa1f40000" - }, - "0x9eeA4936F8cD74d83718EAb283EA8762259ac261": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9f7344e2a224051f3584BF1Bb9137f14d0d1b8f0": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9f76925b815cb230646d3E5542097716156B9887": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9f799141b4B58d2E025F534086625615e8b020f1": { - "balance": "0x4563918244f40000" - }, - "0x9f94C17BB8Fc0c1E1DcB7966C5eF46f1a0d1013E": { - "balance": "0xad78ebc5ac6200000" - }, - "0x9fD11ed60123Bcd96c396F6FB35D1984160593ed": { - "balance": "0x4563918244f40000" - }, - "0x9fb465df844bbEE88631beBFC8b51a4cE4B41607": { - "balance": "0x1158e460913d00000" - }, - "0x9fc4fD4F37FFCa0a5cb226E0e96e4466F43909d7": { - "balance": "0x340aad21b3b700000" - }, - "0x9fd83ebd9ca3363a62Ac5f09F28D308956184bf3": { - "balance": "0xad78ebc5ac6200000" - }, - "0xA0082544798040Fa980A51dEfFCeAB76Ffa434c2": { - "balance": "0x3f514193abb840000" - }, - "0xA02F4252E90c39596C4a47A4bfB0282638c73F49": { - "balance": "0xad78ebc5ac6200000" - }, - "0xA02fbeB9861da959D5a5637f2B9406d91DA7186F": { - "balance": "0xad78ebc5ac6200000" - }, - "0xA04E187d8e323127B7FD5117F27a35CF46adbAc7": { - "balance": "0xad78ebc5ac6200000" - }, - "0xA07BE0326DC186edee270B41CCaD6A66CEeb682f": { - "balance": "0x32a964fa7f40000" - }, - "0xA07cc29725E6Cbc95c7152b29d64591d4c38E033": { - "balance": "0x55ef523dac9a570000" - }, - "0xA0B5Eea00032352c0F8c0bf1889D75831B89f10e": { - "balance": "0x3f514193abb840000" - }, - "0xA0CAB1dCf0497AE04E011A3C003ae85598A92FD3": { - "balance": "0xad78ebc5ac6200000" - }, - "0xA0FcBf7EFE5310b72FA958e68b7b381ED896e590": { - "balance": "0xad78ebc5ac6200000" - }, - "0xA0d0ef7ded1B1Ed5b0Ca9c3f8Cb2D4ae8d83E360": { - "balance": "0xad78ebc5ac6200000" - }, - "0xA0d51D2ab4A60c44d69B8C540BdD3715242FBcD2": { - "balance": "0x3635c9adc5dea00000" - }, - "0xA11027B5a556dCc95F798A40eBC060ee216c482F": { - "balance": "0x5150ae84a8cdf000000" - }, - "0xA14F6Fc32CB22C74F4279E08f06b29A0BEb11B5f": { - "balance": "0x3f514193abb840000" - }, - "0xA155A828519d9B2c9B271C3220b53dBad498882d": { - "balance": "0x1158e460913d00000" - }, - "0xA16137f67DD53461a5D6EE93Fa4b78b5b535a90c": { - "balance": "0x3f514193abb840000" - }, - "0xA17673D92d935E9BacdF7B6162d8a9367c1ff7Dd": { - "balance": "0x3635c9adc5dea00000" - }, - "0xA1a98b3BA396EBeDF61726409cF007A9c5e25054": { - "balance": "0x3f514193abb840000" - }, - "0xA1eD02B5DA992C66DCf44AD1c21286fA0759084f": { - "balance": "0x4563918244f40000" - }, - "0xA21Fbfa9C69f8062D4Daf65fc5338a60c0879086": { - "balance": "0xad78ebc5ac6200000" - }, - "0xA23C1D05723dcf04a88C4Debd6dADe6d84D71bAd": { - "balance": "0x4563918244f40000" - }, - "0xA246D9aFAA322aa274DD3E931D655D11feB77118": { - "balance": "0x55ef523dac9a570000" - }, - "0xA25CFe540Ea3c3C506504769B7BaD3685aaC975f": { - "balance": "0x967c8fb296e740000" - }, - "0xA28501398D14733Ad9c3F61a760251C9885567Be": { - "balance": "0x6c57e9e2a65b0e4c4000" - }, - "0xA290Dd03f3E654caFeF1223FAa4b6402d7b7e40A": { - "balance": "0x3f514193abb840000" - }, - "0xA29b62b3D3A5e7C0b8A80f950664cC59aF744f96": { - "balance": "0x8ac7230489e80000" - }, - "0xA2B9a7aA727F69FCD819F6EEA6D996db787b41dA": { - "balance": "0x8ac7230489e80000" - }, - "0xA2C728CA7273C290774e68aF653d100eF1c4126e": { - "balance": "0x3f514193abb840000" - }, - "0xA2DA8A130FF22F2F7A93ffFb89B9C0F3739F77da": { - "balance": "0xad78ebc5ac6200000" - }, - "0xA31aC7A381AC38696E42eEe1e723e4a262fAF696": { - "balance": "0x85771d13c3d3b80000" - }, - "0xA328fC14D3c0DA1b453D8A57E6EBFB6097DcaFD3": { - "balance": "0x4563918244f40000" - }, - "0xA3325E98ad60424bc4433e2cd0a3Bf171F338F5D": { - "balance": "0x3f514193abb840000" - }, - "0xA33C8E042A83b24Eb22f52B01143844701966fcB": { - "balance": "0x2b5e3af16b1880000" - }, - "0xA34EC04e9D50b216F7fc4bF636C6f77F875D5a86": { - "balance": "0x5150ae84a8cdf000000" - }, - "0xA3DC9C50e01388c7D26D9bf685e216B255696Bca": { - "balance": "0x4563918244f40000" - }, - "0xA3d8f94024C2C2bF08BD9E0B9B57994E07598Ece": { - "balance": "0x1158e460913d00000" - }, - "0xA40DA9873b18cC6b81b31B4f3D98727A5b7205d1": { - "balance": "0x967c8fb296e740000" - }, - "0xA42a59456891c3eFdb10F9175CD43e2F9b997d3B": { - "balance": "0x52f0e7101170db30000" - }, - "0xA448fDe20ED363ff71e398A8855cF9b040541E38": { - "balance": "0x5220be93f9c8fb40000" - }, - "0xA4505c99d526ee0289526aCB8DB032ECa49f0e00": { - "balance": "0x3f514193abb840000" - }, - "0xA482B444D6CA78C13Db6Ae9b08d07F03041c1AD1": { - "balance": "0x967c8fb296e740000" - }, - "0xA48A577594BC2fce4e742D826931a2f20DabA271": { - "balance": "0xad78ebc5ac6200000" - }, - "0xA4FFC82827639766cE640301b7b99dd341CCA0Cf": { - "balance": "0xa2a15d09519be000000" - }, - "0xA4FaEEC1a887074F9786273f841a5926d28C4909": { - "balance": "0x1a055690d9db80000" - }, - "0xA4c6e709A868D1f05365e441148A08709e2aA5e1": { - "balance": "0x4563918244f40000" - }, - "0xA4d1b3998DEa98aA8376004C2FEBaf7cC4674639": { - "balance": "0x3635c9adc5dea00000" - }, - "0xA50a57B0823471780A18d75b89dc961D3fFCfaeB": { - "balance": "0x5be2ba996d2d5320000" - }, - "0xA52a0306281d239AfC52D1C5253B8a66DCda6427": { - "balance": "0x3f514193abb840000" - }, - "0xA539E5eA36937dDda20Fa0791b5685b389Acbe4A": { - "balance": "0xad78ebc5ac6200000" - }, - "0xA53a2e318894F557b6118965f51968d0A83571bE": { - "balance": "0x4563918244f40000" - }, - "0xA554C822186E46EAd65DfBF277FE58004b713bAB": { - "balance": "0x4563918244f40000" - }, - "0xA567Da45b22460d9d4A18444266248263385DA8a": { - "balance": "0xde0b6b3a7640000" - }, - "0xA5Af6FB70CdD70c485C8AC888405F86b53E8fd95": { - "balance": "0x6a94d74f430000" - }, - "0xA5Fc8447e061e18687200BAd2A44711260D68000": { - "balance": "0x3f514193abb840000" - }, - "0xA5dd2D43855Da6e3F55b255e8BCFc3A352cc7D67": { - "balance": "0xc3663566a580000" - }, - "0xA620161A58450419bDdec4EA98ac5e8CABD363Cc": { - "balance": "0x4563918244f40000" - }, - "0xA634F2D92811Be4A7079DBA502401FE6E5dcB8Cd": { - "balance": "0x60c6e0fa0760770000" - }, - "0xA668B8cCf0008fba90649856A2953b06bd726E4c": { - "balance": "0x1531c806af0c80e00000" - }, - "0xA67E26333C9e34A1014E70A7d727361cF1d764B4": { - "balance": "0x3f514193abb840000" - }, - "0xA69F17CE74dc5f846aa8f1B449Ac3116E9a17B00": { - "balance": "0x514fd0793d9379c0000" - }, - "0xA6fD6615Ff67AF9d97F956598bf660E130C3F481": { - "balance": "0x4563918244f40000" - }, - "0xA7225e4CbCbD610c49ACB9Ac279Bb12346d40b12": { - "balance": "0x3f514193abb840000" - }, - "0xA724d1010650aE0a4A2De3EEe11f3E1BF4888817": { - "balance": "0x4563918244f40000" - }, - "0xA772f93Eb92319F00EdA3C12a0609C2648225753": { - "balance": "0xad78ebc5ac6200000" - }, - "0xA7968e25EB69c2a7a13608827FcAF7064a09a463": { - "balance": "0xad78ebc5ac6200000" - }, - "0xA7D9848A8f49fE3BB4A5f0B35aE2AE25F3b18d97": { - "balance": "0x2fb474098f67c0000" - }, - "0xA80C30B3e99BA69aBf3b0D403c38dD5e9FB72fa5": { - "balance": "0x4563918244f40000" - }, - "0xA80aA136C288C4eA8b8A1513b04F59D4BC1DAd09": { - "balance": "0x3f514193abb840000" - }, - "0xA86d436ca76DE15A6629e07aD455D0A3439A573c": { - "balance": "0xad78ebc5ac6200000" - }, - "0xA8717e17eF29986eae02913783Cb1067aC3f096F": { - "balance": "0x967c8fb296e740000" - }, - "0xA8E0469B9cA3349a2764386FCFd2A79D7321dE04": { - "balance": "0x1158e460913d00000" - }, - "0xA8eAdd20A3eE95741f591EaeD25d3b5124F23265": { - "balance": "0x4563918244f40000" - }, - "0xA8fc0893Aa4A051d0b2Cfe96B8BcaC22589D4341": { - "balance": "0x4563918244f40000" - }, - "0xA96d49Fb2F1CF5d892c3D3DCeF6168aa837CE177": { - "balance": "0x3f514193abb840000" - }, - "0xA9AEe8FF5F613b71C9489E7dc9a06CEDF2c9c79F": { - "balance": "0xfe1bcc28e60b851a0000" - }, - "0xA9F1e08e6F730B61Eae43baE61b12618A99f48C1": { - "balance": "0x4563918244f40000" - }, - "0xA9F232850e8Ff5049bDD3022b90A46889901466B": { - "balance": "0xc12dc63fa970000" - }, - "0xA9F7E6E2172D1517eAAcbFE67F63FC2eBDae7534": { - "balance": "0x967c8fb296e740000" - }, - "0xA9FdCFC0c95f1c76718F21b75583800567e57C3F": { - "balance": "0x4563918244f40000" - }, - "0xA9c137174A7918223F36cDF893129EDcdaC9505E": { - "balance": "0x3f514193abb840000" - }, - "0xA9f284C0133cF73FF682402e94093fa6d016A51c": { - "balance": "0x3f514193abb840000" - }, - "0xAA7F64162C451d5631425EeFD604DbBDE47665B5": { - "balance": "0x967c8fb296e740000" - }, - "0xAAa6dD300Eb1aCEAC74757822fc46E0e5e691091": { - "balance": "0xa8c0ff92d4c0000" - }, - "0xAAe8bD017eA941955f7c514d8a41d417C6762237": { - "balance": "0x967c8fb296e740000" - }, - "0xAAece9614C40b8FB7E0954f69298EB2c14c4fd8a": { - "balance": "0x4563918244f40000" - }, - "0xAB130912eBa98738fb2FD0718bd3d48d86b34241": { - "balance": "0x4563918244f40000" - }, - "0xAB4E23Ba3a1D2169Bc4Cee440F303C2b6B30cf95": { - "balance": "0x3f514193abb840000" - }, - "0xAB5B6D4af253876475D4663A8a59f15d49C19723": { - "balance": "0x4563918244f40000" - }, - "0xABC5c962Bfc8DEB495C8a97EeD3Fa859c9166036": { - "balance": "0x967c8fb296e740000" - }, - "0xABa4F42EEA55cd91B5b4A592a9F7989C90d4A2EF": { - "balance": "0x4563918244f40000" - }, - "0xAC0BAAa59184F982223985A1b289084e95B1B372": { - "balance": "0x3f514193abb840000" - }, - "0xAC28a08E4173493e448B5da2852C69112E25943c": { - "balance": "0x4563918244f40000" - }, - "0xAD0AbCe8E6eb8d19a5e22f5fdD19B4aDc2f725c7": { - "balance": "0x4563918244f40000" - }, - "0xAD674FB75A012e5Ea93990D58424cB5D04B09ca6": { - "balance": "0x3691d6afc000" - }, - "0xADaf0F3D4dc0175e91932ABDA2588D0F84F8EFA4": { - "balance": "0xad78ebc5ac6200000" - }, - "0xADc3edaa8A393b9a41819a35727cb0FD6EA0c8Ea": { - "balance": "0x967c8fb296e740000" - }, - "0xAE32011B91326500fe2faeFdbFf8EE22B46FA566": { - "balance": "0x3f514193abb840000" - }, - "0xAE58f002510f2d4D9c08650B39218C0d52BE47be": { - "balance": "0x196928a8be0cb39c0000" - }, - "0xAEe03F9E7648d0c45c15365E4cb6685805a81Cf9": { - "balance": "0x3f514193abb840000" - }, - "0xAF2D1fB3C05b08547ece66C6776F68c205567615": { - "balance": "0xad78ebc5ac6200000" - }, - "0xAF7FE07E95893C89d3637f6619C6c46F54942dF1": { - "balance": "0xad78ebc5ac6200000" - }, - "0xAFeE213F12aE02d35193DC221f2fd4468963ceC1": { - "balance": "0xad78ebc5ac6200000" - }, - "0xAa943064326aD587d6BB41884844E5d16EDFdD20": { - "balance": "0x3f514193abb840000" - }, - "0xAb630368fb79A33136416112b15f6e77856eB494": { - "balance": "0x4563918244f40000" - }, - "0xAb706c6E0d67928cf48a650730770c8b1B1F3835": { - "balance": "0xad78ebc5ac6200000" - }, - "0xAb892A71686e94311eedc66cd74d2079371d1508": { - "balance": "0x4563918244f40000" - }, - "0xAbA86575801dBe174ceE4106A20e2ffFfA2CEe77": { - "balance": "0x4563918244f40000" - }, - "0xAbC9aB2F82c0B5253Da89E94203ee55d1F8A01ee": { - "balance": "0x3f514193abb840000" - }, - "0xAbb48aFDD13F8Fca99698deD1a075E5307C8fc11": { - "balance": "0x4563918244f40000" - }, - "0xAbdf3cc2F5428F0A373c2e8AF74B322582a2A90b": { - "balance": "0x4563918244f40000" - }, - "0xAcB221b00dd00cf584DBBdb39b6DB4ED8D30FA93": { - "balance": "0x3f514193abb840000" - }, - "0xAcC4FA1747836FDb8b625c64db60bbc23Dc3B3d1": { - "balance": "0x3635c9adc5dea00000" - }, - "0xAcDefda6A62Ed3580f3e3d246Af85228F10611F6": { - "balance": "0x3f514193abb840000" - }, - "0xAcEA69bd82284481eA869874e32D7D9212ab7e46": { - "balance": "0xad78ebc5ac6200000" - }, - "0xAd0737f9C2FC2A067Abe6aaA2d1E268495b7fec3": { - "balance": "0x4563918244f40000" - }, - "0xAd7896F048418432321f118b4b621692Eb1D6Ed5": { - "balance": "0x4563918244f40000" - }, - "0xAd99A43e82cC412c7Cce8262534b3b278cb57440": { - "balance": "0xc3663566a580000" - }, - "0xAdA2dbF02Ac05AA19CB31bc00181ffd36656D098": { - "balance": "0x2b5e3af16b1880000" - }, - "0xAdEe93DdeEE890EB33EDC3224D69CeA8F4D596D8": { - "balance": "0x3f514193abb840000" - }, - "0xAdF6ca08aA489040c5e6063F6DF21F9F41546035": { - "balance": "0x8ac7230489e80000" - }, - "0xAe64bfB1c73070c295F254bab4006E3BcB5Fe78B": { - "balance": "0x3f514193abb840000" - }, - "0xAe74d08f9729765b7eA0192B3dD70a491981eAaB": { - "balance": "0x4563918244f40000" - }, - "0xAe7d8e31a2BE7582899F6174b64698D054e22B34": { - "balance": "0x967c8fb296e740000" - }, - "0xAe893447effD362CB5E58Bd28E375389ED46144F": { - "balance": "0x967c8fb296e740000" - }, - "0xAeBb6fDdc38185E5098C5Fe4c9A4e22fE26E2f8F": { - "balance": "0x4563918244f40000" - }, - "0xAf7115C6Ca156A6D4cf106dbF95FBC5397378B1a": { - "balance": "0xad78ebc5ac6200000" - }, - "0xAf7838a7F0DFb6249d6e36D44E24D610Cc664eFe": { - "balance": "0x681536bc74fe3f00000" - }, - "0xAf9BD853D690289576ee4405E2100f2165466Db3": { - "balance": "0x2116545850052128000000" - }, - "0xAfcd335d99A1407413722dC231d281360604B486": { - "balance": "0x3f514193abb840000" - }, - "0xAfeBFEdCFE6C5950e18B1905A91ca95cbcB09c27": { - "balance": "0x515093df72fa1f40000" - }, - "0xAfeC4321db022D166078907738b91fc967f42533": { - "balance": "0x8ac7230489e80000" - }, - "0xB0037F4a00A966bde8ebfc50a14a62854FAe4C83": { - "balance": "0xaaf96eb9d0d0000" - }, - "0xB0502B25F0500b1b3159Cae14ecC331B69f6CeDB": { - "balance": "0x515093df72fa1f40000" - }, - "0xB050cB13cDF94a875B1140f47Fe1124d20cFd75D": { - "balance": "0x96fd865af440000" - }, - "0xB0660B443A00805b7BDca4931f012D56F6De681f": { - "balance": "0x3f514193abb840000" - }, - "0xB0D0E8f6E92fE7e13B336e7D87a4D81607251860": { - "balance": "0x4563918244f40000" - }, - "0xB0a52726911ba4A803BdF14F64916ff811eFDc69": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB0d81B8074CB04DB82Ed8Ae165f1A017c8F31342": { - "balance": "0x1158e460913d00000" - }, - "0xB0e0B7D7E1c10C5177b90135D6f986DBAB2baD5e": { - "balance": "0x3f514193abb840000" - }, - "0xB0edA9cdF9A5B547b5892aCeD643d94BA089a03A": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB0fE5C3D56C58819Ec7B0a0C4C39Fc761a34043F": { - "balance": "0x4563918244f40000" - }, - "0xB11B0219636Aa80e2c2AB85A6a451e17B070beAb": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB12Bb08F6c5568E5AAA682f719155a2F2dB4ada0": { - "balance": "0x3f514193abb840000" - }, - "0xB134FFFBd5116EdD55c07d8B3984fe4e6c442277": { - "balance": "0x1a055690d9db80000" - }, - "0xB16a65c8fDab16D0389aC98eC58f1224867B847f": { - "balance": "0x3635c9adc5dea00000" - }, - "0xB171F1cd1E8D42ccE6940b0D09509A266B98Ab9A": { - "balance": "0x967c8fb296e740000" - }, - "0xB17299174EBD00D57EBe29bbe1B2D71122169e7A": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB1F5d5a60cad612C54AA3FCC48175C7915f546ec": { - "balance": "0x4563918244f40000" - }, - "0xB1f00CEAe1F82F4e16d8D4882DBAfF00916f7167": { - "balance": "0xa2a15d09519be000000" - }, - "0xB1f1FE48A0B6634d21Ed23D8bc6d5DFD67Bc4871": { - "balance": "0x3f514193abb840000" - }, - "0xB2603bd327E0c5c3104E07D788726bc8552EeFb2": { - "balance": "0x967c8fb296e740000" - }, - "0xB26c83CA2d596671589992F08155C2BA3CBF89c1": { - "balance": "0x515093df72fa1f40000" - }, - "0xB2DaE1A4A2D3fA9a6abD2C5Bc86ffE0Eec8a8B3B": { - "balance": "0x4563918244f40000" - }, - "0xB2F300153d727a2C9f34F12d3dB7e9d31a4df382": { - "balance": "0x1a055690d9db80000" - }, - "0xB32c98f77Ef8D898A01dF771a72843b6A4762080": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB33Da502E29cEa243Cb0b6504FAE2F6f1027cdce": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB3693c13Df96344cFeaE5FdfF75207EcF4238F6D": { - "balance": "0x4563918244f40000" - }, - "0xB3A160f73231BE278ac769352d463B96a6DcA48B": { - "balance": "0x4563918244f40000" - }, - "0xB3Ba790c64941D498Ba2E3F94FBaC431ff05c1A3": { - "balance": "0x841c94ed3962a6f400" - }, - "0xB3E201E82E2fc191F84D404f0185f12B150f1998": { - "balance": "0x9184e72a0000" - }, - "0xB3FF2AE46548A1Db57d3133B99c9014Fc2891BBa": { - "balance": "0x4563918244f40000" - }, - "0xB40596BdF8e368d977D950c781707aE6cDF60eD3": { - "balance": "0x1158e460913d00000" - }, - "0xB41E2F97EB4B80f52fB0472f552a1dd0983B7C2a": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB4202573e2D7aa3410859f8F67DB9f8375D7BfeA": { - "balance": "0x4563918244f40000" - }, - "0xB423a944dabf93e5EF987729460496fd2cfd3ae1": { - "balance": "0x4563918244f40000" - }, - "0xB42C464652683B3e8C725e9AEAE096c3179a4A5c": { - "balance": "0x3ba126d20f02e74000" - }, - "0xB43240827ae5609dC73C105D6887A3dBdd1EE3F8": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB45861a5FDF9388C6E627B9595dD84DCFa60D210": { - "balance": "0x4563918244f40000" - }, - "0xB45cC6E30BfE333C13E8BAdA1F29aA1fB6eaC2F7": { - "balance": "0x3f514193abb840000" - }, - "0xB4607E165d7a3a2FBD46B7207fa0df883d0DA8b8": { - "balance": "0x967c8fb296e740000" - }, - "0xB49C68aEEb58Ea6a0E5FA6A11a62C26a5BcF0DC6": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB4Df7D7cD5C683D7B030DCD765b9414A1676787F": { - "balance": "0x3f514193abb840000" - }, - "0xB4F3C5d47816257912E24D561b9A074fe7262038": { - "balance": "0x55ef523dac9a570000" - }, - "0xB4aB74492Ef0Ff06833dec6111f4e675dac71807": { - "balance": "0x4563918244f40000" - }, - "0xB4c999e574cE1Df40581AfB7E3D640e082d6fa4E": { - "balance": "0x3f514193abb840000" - }, - "0xB50643a2C533931c596CbdbFaf719f771dCFA836": { - "balance": "0x3f514193abb840000" - }, - "0xB509E05F1287E1AeFd06845872EE7960892561C6": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB51DE8f1E6537Df63eeb3AC3f37A323a7438ADb9": { - "balance": "0x3f514193abb840000" - }, - "0xB53FBA762bFC0060CCAD74a8De7ABD98d1d9CdEB": { - "balance": "0x3f514193abb840000" - }, - "0xB54ffCb57720E4Ce15F4E18942065289d072A848": { - "balance": "0x521ffb2dc46255c0000" - }, - "0xB55F155E6D5899a9c30D54b982a29A206F6E216C": { - "balance": "0xc3663566a580000" - }, - "0xB5602F71C9D0b23FF9C30FC15aB83de5254FC42F": { - "balance": "0x967c8fb296e740000" - }, - "0xB5611FC48e25bF883138717093392896402176DF": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB56D5C5f3bc91E18414652D7C0553aeABEd4eD05": { - "balance": "0x4563918244f40000" - }, - "0xB58990193DC9865AF24C2504C81Bb973339b7EA1": { - "balance": "0xc3663566a580000" - }, - "0xB5BC2552467dac88630988b722A82D0C999F602a": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB5F79C004d3d82d4E907C0547509eC6eFAB650Eb": { - "balance": "0x79f8ddcf2c772ee0000" - }, - "0xB5ed2C3e75a5dFb786829bB81666346F304398cd": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB6042AC5d8D8a66663c7a9BaEea562D7AbB2a4b7": { - "balance": "0x8ac7230489e80000" - }, - "0xB60c3B0D8564712D90332092a16E0972227D30a3": { - "balance": "0x4563918244f40000" - }, - "0xB63a8E4b75A8Ed24887E28EA9Ce7eFAaa2AB8b19": { - "balance": "0x3635c9adc5dea00000" - }, - "0xB668cc5333a3A4717BF2E3Fb11c7949964e7917F": { - "balance": "0x3f514193abb840000" - }, - "0xB6Cb7f3AF7D50630FbF69A1A71052a1BAF924E5e": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB6b372838f4db1a5c825699379282AcB8441A02C": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB726C42d723A6E776Bb101f08Ca4601DE4ad27e7": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB73Ccc7e46c3ef8ba8c56ECB653796d53230E51d": { - "balance": "0xf3f20b8dfa69d000000" - }, - "0xB76FAdC3e372c33433900BF5BB7c6E950E0E8403": { - "balance": "0xcb49b44ba602d800000" - }, - "0xB780B0bb8A29cA2c144544235892D42698a1Af0c": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB785c95F3C711456D72fD32FD0571Fa8481dC5Ca": { - "balance": "0x514fd0793d9379c0000" - }, - "0xB79Bfd992379994dE4cBb62732df012C68572a13": { - "balance": "0x967c8fb296e740000" - }, - "0xB7aA32CE557495e6901840FC3CEd18eed2945230": { - "balance": "0x1158e460913d00000" - }, - "0xB8168143141e49F9F2033cBEf9f6f7dEe52f4333": { - "balance": "0x59723a7bd8c0bf20000" - }, - "0xB819eBbe995B6c95D95Cd537BBa47Fc0c0aaa7BD": { - "balance": "0x4563918244f40000" - }, - "0xB8553D5233126A777d7331E115D9fF571BFB8C87": { - "balance": "0x3f514193abb840000" - }, - "0xB85a92E1f5F98a38238c3FF1A6A0ED19ba798E22": { - "balance": "0x4563918244f40000" - }, - "0xB85b15197F0D827FE7350c45400DBAfe850e54F9": { - "balance": "0x3f514193abb840000" - }, - "0xB86eDA5c52e6f2951Bb10B40a3C397eE4E16FD4E": { - "balance": "0x4563918244f40000" - }, - "0xB8823E03Fd71449DBb00369CebF713DF6c26b45a": { - "balance": "0xb1e07dc231427d000000" - }, - "0xB8DEa0AdDDEDcAc73136f35Cd161e7FE48a34b95": { - "balance": "0x3f514193abb840000" - }, - "0xB8E2042164cAe8cA7126DED919cD9f0b56f75954": { - "balance": "0x55ef523dac9a570000" - }, - "0xB8F7Cc93318824CBE4bd2348c376241300d1d035": { - "balance": "0x35a4e25a1c07d4dc0000" - }, - "0xB8Fb14c56b245A037a8dd524eF6408aCF7d74D97": { - "balance": "0x4563918244f40000" - }, - "0xB9165eA172EAB45D1F3c4e62A2890e6a9E0B1f19": { - "balance": "0xa2a15d09519be000000" - }, - "0xB92a4853C4B2Db21982583ec0B895Fc814665dED": { - "balance": "0x4563918244f40000" - }, - "0xB942Cca5728D04640cBc4578c3084b66f24E741e": { - "balance": "0x14542ba12a337c000000" - }, - "0xB94c8f7AA90286221c1dB24D6D7713d49A9bb90a": { - "balance": "0x4563918244f40000" - }, - "0xB959859EA1Ae4501e287234E87bf793b3898B36e": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB97611D9Ec1888Fe703c6A2dD19574C10830c763": { - "balance": "0x4563918244f40000" - }, - "0xB97e88cd68af74D26B7faE1d2114d7842389e017": { - "balance": "0x3f514193abb840000" - }, - "0xB9Ba01906C59Be6b6255DD713bc142d3b8F125De": { - "balance": "0xad78ebc5ac6200000" - }, - "0xB9b32B12D7712c2611AB55cCd134B50d40E52984": { - "balance": "0x8ac7230489e80000" - }, - "0xBAE7ACd9CADD69da7F3dbC21d5dD1e12Dab8ec85": { - "balance": "0x967c8fb296e740000" - }, - "0xBAa229f5Dc5cB63F40Dabda0D1ddC570c3794fA5": { - "balance": "0x5ede20f01a459800000" - }, - "0xBB0cD99B91C2Eb976EEAff47d4017e1B1Af563Bc": { - "balance": "0x4563918244f40000" - }, - "0xBB73DE654a5e678F5b58617b172E506703C323d3": { - "balance": "0x3f514193abb840000" - }, - "0xBC45c35AaCdF2E90CC1e8e7f8672b9c1008689d5": { - "balance": "0xad78ebc5ac6200000" - }, - "0xBC58418cF0c3759c43B5aE4A884b365bE6d46B40": { - "balance": "0x4563918244f40000" - }, - "0xBC7CCc3AA9a062cd646cA4947335ef68b87D23Fd": { - "balance": "0x3f514193abb840000" - }, - "0xBC7E50Bc72fa24a9e7832F0399f81e6580fD5D6f": { - "balance": "0x32d26d12e980b6000000" - }, - "0xBCC3FEB7d6aebFa37AdC15a370c1707f28506eE3": { - "balance": "0x3f514193abb840000" - }, - "0xBDd86c724140b99DdB2345e130f46E30369A3893": { - "balance": "0x4563918244f40000" - }, - "0xBE1C881e489Ea5ebF60082f3826AdD9835cdcDd0": { - "balance": "0x55ef523dac9a570000" - }, - "0xBE7c3963139C836836428F3B5DE6F453Bc615B29": { - "balance": "0x4563918244f40000" - }, - "0xBEbDA8E2C7128b5C9A8ec7Da162704255e1C958D": { - "balance": "0x3635c9adc5dea00000" - }, - "0xBEf9515Fa4CB2434eA1C0CD04c575A79b04a6d68": { - "balance": "0x4563918244f40000" - }, - "0xBF30AF6DA1c247edCee3A775F9B6db714E30D0Ec": { - "balance": "0x3f514193abb840000" - }, - "0xBF56A534670a30181651528B30F1DF2AF784C95c": { - "balance": "0x3f514193abb840000" - }, - "0xBFa72402AD34Cff8ed5804CfbCE5b8647151d9C7": { - "balance": "0xad78ebc5ac6200000" - }, - "0xBFaaa94F0976121eA65De080410cfAbAB7B34a61": { - "balance": "0x1f161421c8e0000" - }, - "0xBa72fc0f60f159A86a85D2aC615E16dCFca49f52": { - "balance": "0x4563918244f40000" - }, - "0xBa78ed958e486dD498f897E1F70728a07583bfC2": { - "balance": "0xad78ebc5ac6200000" - }, - "0xBaA9425dCA11360d07bBb619217e600F6CaFb8A1": { - "balance": "0x3f514193abb840000" - }, - "0xBaa285dBfe3F0f8cb95D8F33716513063FF35229": { - "balance": "0x552232c9b72c83c0000" - }, - "0xBb1BA684Fa08973802A9e2Ee35566238c1E6b3B5": { - "balance": "0x1158e460913d00000" - }, - "0xBb3368E56966efC6f71e20c8cC8b62E0381D90c1": { - "balance": "0xad78ebc5ac6200000" - }, - "0xBb6F3E982dA30c95Abf305337d8feCD30A3ad5A9": { - "balance": "0x1a055690d9db80000" - }, - "0xBb83C7775484fc51272b43fa73d0Be48E782eb62": { - "balance": "0xfe3edc090d41f840000" - }, - "0xBbADBCf57bCF03586990A70dabedbb10b53936c1": { - "balance": "0xad78ebc5ac6200000" - }, - "0xBc098029e6af300837a78EAeB6DEd48566897B63": { - "balance": "0x515093df72fa1f40000" - }, - "0xBc11F0A18fC4c60Eb78b8Bd13E95411124bbbF02": { - "balance": "0xad78ebc5ac6200000" - }, - "0xBc70AE59F5BFf95D5AFd77b988A2559A8349B668": { - "balance": "0x10564785eb02fc8fc0000" - }, - "0xBd44Bb547Ae90fBABdfD882539AC38039877339f": { - "balance": "0xa2a15d09519be000000" - }, - "0xBd6932053a2b71AE18EE801d1C4a7990846F727E": { - "balance": "0x515093df72fa1f40000" - }, - "0xBd814b2f7Fd859da6cc333CA0C10E99C178C59f5": { - "balance": "0x2bfb9023d037e6acc000" - }, - "0xBdd8F3566d1CE4f8052c3084D5d7f1b75a60D5Eb": { - "balance": "0xad78ebc5ac6200000" - }, - "0xBe40A2c7dF532D40e24BF722F43223a745724A83": { - "balance": "0x3f514193abb840000" - }, - "0xBe45b08D23D9bAf4c5E04f8fee8F81249b3Ff861": { - "balance": "0xad78ebc5ac6200000" - }, - "0xBe5Beb49103787aa30Ae7b141507F9254a20FD0f": { - "balance": "0x4563918244f40000" - }, - "0xBe76Ba180bFE30F47187E82CF8Fc91fF1F34f24c": { - "balance": "0x3f514193abb840000" - }, - "0xBe99b7442cdAB5A25802Cab4d365BA77F64Dcaea": { - "balance": "0x3f514193abb840000" - }, - "0xBeA1b6b94F68c13579560C4a32fA47057cd774E1": { - "balance": "0x967c8fb296e740000" - }, - "0xBed39520c6a369274F33E0A74c69DC98F6F12AD6": { - "balance": "0x2551b7ef2ef3b6cc0000" - }, - "0xBf15Be76539a2148Ee3DF3C898e3BBc075c9677B": { - "balance": "0x3f514193abb840000" - }, - "0xBf9a38c66c31EeE04CC511EBF5C74B78F33E8ff3": { - "balance": "0x15af1d78b58c400000" - }, - "0xBfcce5EbE8B408eE92c00D60d6Ad8f27c6DC6d25": { - "balance": "0x2786f7a0b6569cd80000" - }, - "0xC0009889a75609020c7fafE24280cc40CbF3f13E": { - "balance": "0x50f9d7699023ee40000" - }, - "0xC033d59A0DDA74163F975a405b17Ee89Cc14CD9e": { - "balance": "0x2b5e3af16b1880000" - }, - "0xC039b40D89C2F7581449Bac37c7437968ace62a3": { - "balance": "0x1158e460913d00000" - }, - "0xC04c7D276FccC11e714D247daD12C399bE857585": { - "balance": "0x967c8fb296e740000" - }, - "0xC06173f0eD819241Dab5debc0a4866eA6492325c": { - "balance": "0x4563918244f40000" - }, - "0xC0765aAbcacC34bB26ac89a68F2dFE61D4Db7D18": { - "balance": "0x3635c9adc5dea00000" - }, - "0xC08B0Fd09aD772c127cE616E2bE39D4FE676B214": { - "balance": "0x8d2b2b3df8ec30280000" - }, - "0xC0998c780E0e3c13791c5A32721380D4B8e4C105": { - "balance": "0xc3663566a580000" - }, - "0xC099eeF71ce8c3600BF884a1f7ea9B5f149baa55": { - "balance": "0x1a055690d9db80000" - }, - "0xC105E6Dd79fdAfcaE094217bb0Ec8522B6a53357": { - "balance": "0x4563918244f40000" - }, - "0xC138210568985aa82F319FEa639Cc596DC96B50a": { - "balance": "0x8ac7230489e80000" - }, - "0xC152992Be6e06F30E9DE20381EA29727e4c6186A": { - "balance": "0xa2a07efde66169c0000" - }, - "0xC16F0Cc30D27C2c8645001f3CD2eE95477c343d7": { - "balance": "0x4563918244f40000" - }, - "0xC18406ca0A0923E05EB5954510f6B6047013fC2A": { - "balance": "0x3f514193abb840000" - }, - "0xC1929751524D37c08b606DA7027d4B016Fc28485": { - "balance": "0x8ac7230489e80000" - }, - "0xC1984ba4117C959ed61F23181b3560500a1f39C7": { - "balance": "0xde0b6b3a7640000" - }, - "0xC1ECFf966Dd8a0e71e74C57B9CFcc12B6747B962": { - "balance": "0x4563918244f40000" - }, - "0xC21Fde3A9ce08aC9e517DBf7cdDF088f154C285E": { - "balance": "0x967c8fb296e740000" - }, - "0xC24042b2645819cFF343A6E270724c13478B2C48": { - "balance": "0x7969fb3f32f0000" - }, - "0xC2DA4E7F15834bb682978DFA6a8AB60c84A13C9b": { - "balance": "0x520ed0ea8203c610000" - }, - "0xC2b03a053D151FCFf57427c89B2c469EAE4eBA45": { - "balance": "0xad78ebc5ac6200000" - }, - "0xC304B42ac6f84e3D15F29Ba410b18eb4210D776f": { - "balance": "0x4563918244f40000" - }, - "0xC31D120AC31A6A2A6d9dB6332896Ff8CEF2C2466": { - "balance": "0x3f514193abb840000" - }, - "0xC359edd0413E6E30b30595BB6693Db383a536fc6": { - "balance": "0xad78ebc5ac6200000" - }, - "0xC380b949D76d5e984DB70b5B9A3F0B3dBa671e44": { - "balance": "0xabc73d783e330b00000" - }, - "0xC383A9411FA1e199Ba36EC743F37f2dc4CC0419C": { - "balance": "0x4563918244f40000" - }, - "0xC3D07130c32C11Fb0389eD1d514b302CFa9Df08c": { - "balance": "0x4563918244f40000" - }, - "0xC3E4144f25397bf87204318d66c0e963c9a973c8": { - "balance": "0xf3f20b8dfa69d000000" - }, - "0xC3b43D454089C9DaF53c2DBE8Bc480518D20Fde0": { - "balance": "0x296aa140278e700000" - }, - "0xC3c70E41eEC49C4705CE43000259F1f1634Eb98E": { - "balance": "0xa2a15d09519be000000" - }, - "0xC3eF13b6A255752c5b82EBFBD50C956e2A59C778": { - "balance": "0x1a055690d9db80000" - }, - "0xC45952F4Fd8D9449120807B074D0baEB36605e74": { - "balance": "0xad78ebc5ac6200000" - }, - "0xC4746440281496cdaa419eAA4d1c18053280E6DB": { - "balance": "0x22b1c8c1227a00000" - }, - "0xC482b22f706F67c4d0C27F244e1d9dc2e3965c97": { - "balance": "0x4563918244f40000" - }, - "0xC4Aaea39E43C4f6C2CD44Bc3CCBB7365Aa680626": { - "balance": "0x3f514193abb840000" - }, - "0xC4DDB0EC596e0e701a0DA96a801651Ee153B4d27": { - "balance": "0xa2a1258676cd4270000" - }, - "0xC4e0621E30097c3b568559ffd13de615599878c7": { - "balance": "0x3f514193abb840000" - }, - "0xC4f689D4CAAc442ae76dA8d296e53BdD36800AB0": { - "balance": "0x152d02c7e14af6800000" - }, - "0xC50732fa1CCCB17576a51EE6A40f0525306fBC65": { - "balance": "0xcb496f76304a5210000" - }, - "0xC5140e9B1F771d21a159F5b66DFDBc0b697BD6D1": { - "balance": "0xad78ebc5ac6200000" - }, - "0xC5173Cc45A6806A242a14e039A5C06eEc30a32bd": { - "balance": "0x4563918244f40000" - }, - "0xC564CA26f76524Da0152c5af5DB1f580B15F2852": { - "balance": "0x22b1c8c1227a00000" - }, - "0xC56A47ffeBB8269D77a403659AD1F22A237d7b2C": { - "balance": "0x3b0166820f885ee1800" - }, - "0xC56EE534c1288cFD3BB8C017cFe87a258E7Ddaa4": { - "balance": "0x3f514193abb840000" - }, - "0xC59f0098bb2Dde944FA7E443B7687000Dda87F03": { - "balance": "0x3f514193abb840000" - }, - "0xC5A3953a776144b944F27F921Cc3c81408621e7E": { - "balance": "0x8be35a9807f0000" - }, - "0xC5bDFb091f98B3b8013096461c1B9BDF0E43fD24": { - "balance": "0xad78ebc5ac6200000" - }, - "0xC5d6d9E78E679Fb6B8df1169B15cE2eeef90fE54": { - "balance": "0x4563918244f40000" - }, - "0xC5fdA9b6258b392f120dB67202C605BF22c29853": { - "balance": "0x967c8fb296e740000" - }, - "0xC665B54bC69dEA45112Fb310E6d951a95E07cE21": { - "balance": "0x821ab0d4414980000" - }, - "0xC666e0aE3DFC56AE6d29283EA80A7cA51219679d": { - "balance": "0x55ef523dac9a570000" - }, - "0xC668115cF76d72Aab320fE6ede48DA8cb9fE3E2c": { - "balance": "0x4563918244f40000" - }, - "0xC70F346cFC2E1cEEE5887c89FeC676F1A2b1bE31": { - "balance": "0x4563918244f40000" - }, - "0xC752c3443Df5569f9F76571E4062d5527742eEf9": { - "balance": "0x4563918244f40000" - }, - "0xC752d8c4A1d5B04Ce6a40b0bbc68F3A58AAB512e": { - "balance": "0x3877aae596c4e0100000" - }, - "0xC7699888B71B7eD4A6E4bd066771d434B7B7a569": { - "balance": "0xa688906bd8b000000" - }, - "0xC78D7fcbcd82C341f9dC92bF9C764Ae48505eE7e": { - "balance": "0x53c111c4983fb730000" - }, - "0xC7CAE1dc3ea63a8A94242F63A432E292BFae71eC": { - "balance": "0x4563918244f40000" - }, - "0xC7d645c7a2250Ad97EF34B6c697feF04D6C02aa8": { - "balance": "0x4211779771a17a600000" - }, - "0xC862567d9b5A343db9228EA33d041C574179E3f6": { - "balance": "0x4563918244f40000" - }, - "0xC8647F87eC426Bd15301982e56C0AFe85b1E21F3": { - "balance": "0x4563918244f40000" - }, - "0xC881574A2e917b2D477861dE6dc6E94e886a2ab7": { - "balance": "0x33a41114d783e8eec0000" - }, - "0xC894B811927b837e3C86BDa87896E3F19a238489": { - "balance": "0x4563918244f40000" - }, - "0xC8A6dc105ACF9c40dbe1E2AebcAA639F24D27428": { - "balance": "0x14bd4e3612d1cc940000" - }, - "0xC8AaDFd5f7e78188B00E2b12E559B90A0CEFbDe8": { - "balance": "0x4563918244f40000" - }, - "0xC8c90780449980C439F2aF43Cd5d14dAbd4983B8": { - "balance": "0x4a01523cc1249328c000" - }, - "0xC8f09e8029766F99E9E59f3E33B862EfD1701273": { - "balance": "0x1158e460913d00000" - }, - "0xC92d9cA5245325a48612245e82A112cbD85bE700": { - "balance": "0x3f514193abb840000" - }, - "0xC9494F248302BcF7a631dDBF5974510f812B3a5C": { - "balance": "0x967c8fb296e740000" - }, - "0xC9C8A63151F1Ed88B7832260ea8a329759D2Ea9d": { - "balance": "0x55ef523dac9a570000" - }, - "0xC9b404F41b97852540Bc63a22F23E57bDdcdE768": { - "balance": "0x4563918244f40000" - }, - "0xC9d47DA20Be40f0a8E00912e818a798DA868984c": { - "balance": "0x4563918244f40000" - }, - "0xC9e29bacE9f74baFff77919A803852C553BC89E5": { - "balance": "0x63eb89da4ed0000" - }, - "0xCA15d6345704c189e8e44D84fE9578255A218e36": { - "balance": "0x3f514193abb840000" - }, - "0xCA5D24E7DD9efdF1c89452cBA7A0f8dE92883bbB": { - "balance": "0x8ac7230489e80000" - }, - "0xCA743221b893c1A66f1B2dcB3BADdB604d3a9C45": { - "balance": "0xa2a15d09519be000000" - }, - "0xCA887f1AffeC4670Da37BDf2A8BdB32d706634f4": { - "balance": "0x8e4d316827686400000" - }, - "0xCA88aB1fEA3e1440D4F1B1dBCED6AC1Ed58E85F4": { - "balance": "0x4563918244f40000" - }, - "0xCAAA7C4684BC149842ccC8e5B0eBAEAC7ae671EF": { - "balance": "0x8ac7230489e80000" - }, - "0xCAc3DB6b43f6B343346E592b6bF716A21829189a": { - "balance": "0x8ac7230489e80000" - }, - "0xCAfdc692a94069C66b213511934C2332ae3217E8": { - "balance": "0x8a3c2d40672b6ab0000" - }, - "0xCB8df586333Ec854E32Ef8E80B3A89d114aC5448": { - "balance": "0x3f514193abb840000" - }, - "0xCC076070Dc2A82C3c62A60642E68aCd28FaDD956": { - "balance": "0x967c8fb296e740000" - }, - "0xCC0F1920f677D4a02B7B53b286243b8319eE260b": { - "balance": "0x3635c9adc5dea00000" - }, - "0xCC3F0C6329faCE4A85e7e35D74974D8EEC36D570": { - "balance": "0x5beccc8984fa77b0000" - }, - "0xCC8356660c19522434B049070c9c7ba41f25F4CA": { - "balance": "0x4563918244f40000" - }, - "0xCCEb0D7D3eC593Bde0658AeFE80424376db528E6": { - "balance": "0x4563918244f40000" - }, - "0xCD4131315531dF3DFd2F84e5DFE32AEc13E80e61": { - "balance": "0xf3f20b8dfa69d000000" - }, - "0xCDB15c485ad3242D43E55dEa315DEe1aa9169dA0": { - "balance": "0xc3663566a580000" - }, - "0xCDEd97b1Bb891921856e6Afa17847Df8a201D724": { - "balance": "0x55ef523dac9a570000" - }, - "0xCE2CB32F4Fd63b0CdBc745eAFFCE7909ED8B6603": { - "balance": "0x967c8fb296e740000" - }, - "0xCE647b1E0eCf5ea114aCE464F31eC879e90cb902": { - "balance": "0x185075795044f6f40000" - }, - "0xCE651d05B105582100ee41352D232b050a093e06": { - "balance": "0x1a055690d9db80000" - }, - "0xCE6793364b36b3f6C93eFA770055A399688E7009": { - "balance": "0x9a7fb1fc0d87480000" - }, - "0xCE70C54618f34D9169DA18B8dc8BB09BbFD46dD3": { - "balance": "0x3f514193abb840000" - }, - "0xCE7FcA4308F85C46c2b18fB96620E7A9975331D4": { - "balance": "0x1158e460913d00000" - }, - "0xCF4Eb4Ca0731D5C47e59681dc8d7263598fFe8b4": { - "balance": "0x4563918244f40000" - }, - "0xCF57d1B9adb07797C5adCcf87a7126134dD44F70": { - "balance": "0xad78ebc5ac6200000" - }, - "0xCFCa0bFdBFE2a11E405515F99205Fc69BD5DA1d4": { - "balance": "0xbef55718ad60000" - }, - "0xCa97E3B04431B95bD00badD937D1aBE757590AC6": { - "balance": "0xbef55718ad60000" - }, - "0xCa9B20D70B8E5CC10A94F663b0365c7077488D6F": { - "balance": "0x52ecadb49e4758c0000" - }, - "0xCaB7932b59A4Fe0170FB79De07Bc2929464b5759": { - "balance": "0x3f514193abb840000" - }, - "0xCb3C8D76Fad4B5Afe3c01B8525004f26dFD8EA74": { - "balance": "0x967c8fb296e740000" - }, - "0xCc078e64E28EB887e09fFf12BF01fBb786BE0efD": { - "balance": "0x3f514193abb840000" - }, - "0xCc1AF2E14E1BD887C3c7753411eD1D600E70Adf4": { - "balance": "0x15af1d78b58c400000" - }, - "0xCc59FE3C1EE592fC3f4480bfd82CfA542c154283": { - "balance": "0x8ac7230489e80000" - }, - "0xCc7891e4984bB7F18091Bf32d43074E37C4dd93D": { - "balance": "0x4563918244f40000" - }, - "0xCc95a5C984bc8B05aCeb88F21DFf68022ea4E586": { - "balance": "0x49b9ca9a694340000" - }, - "0xCcFaC68835bF83Cd506B59087BE6FBCD27dEDD8d": { - "balance": "0x36048d03f0d7e480d40000" - }, - "0xCd2dF2fbF49De57d8B7C00e84Bf65F6B1E1561cD": { - "balance": "0x4563918244f40000" - }, - "0xCd8856106dF835b5Ea484e3aCdfFF1595A820161": { - "balance": "0x3f514193abb840000" - }, - "0xCe27fAb76D5EF6813CF102aEa33852d0D90F94bC": { - "balance": "0xad78ebc5ac6200000" - }, - "0xCe5e0BefbF7e1F869d38a2Ac2cF19C400b78edE1": { - "balance": "0x59723a7bd8c0bf20000" - }, - "0xCeC3a01728309f569A015618dF7934931E684263": { - "balance": "0x967c8fb296e740000" - }, - "0xCeE62b9aB38E9cECF562f502DD7E68432AF466bE": { - "balance": "0x967c8fb296e740000" - }, - "0xCf1dEFeaA739ee89747f42e38748D915dbc8254E": { - "balance": "0xecca2d59581a40000" - }, - "0xD0BdFCb40EabA98Cb8094e8DEF6bEA2cB3A3BaC5": { - "balance": "0x4563918244f40000" - }, - "0xD0C6E4C8619BF1187DF229f35A78f7Ba04198B4e": { - "balance": "0xad78ebc5ac6200000" - }, - "0xD0DBf1eBd476fc31499d641E8D442b37F9dBba41": { - "balance": "0x3f514193abb840000" - }, - "0xD0aA0F034D3b2cb674D1319F9D1D6962EceE65Ab": { - "balance": "0x3f514193abb840000" - }, - "0xD13725A6c7b857c566C0931BA8203340f725715a": { - "balance": "0x4563918244f40000" - }, - "0xD140Ff04aE54E1803c14fAB5f54C25237Fcba9F4": { - "balance": "0xad78ebc5ac6200000" - }, - "0xD1AF104B67150832D459DCe0f516B6a828F0f8BB": { - "balance": "0x55ef523dac9a570000" - }, - "0xD1c619D42a7e749f5119c62C0BCD7F4fCd110C2a": { - "balance": "0x15af1d78b58c400000" - }, - "0xD22579C4993845662567966Bae4a93FDe9176C73": { - "balance": "0xa2a1258676cd4270000" - }, - "0xD279694f98560c82113e26D7eE6bF573e3F6B8f7": { - "balance": "0xad78ebc5ac6200000" - }, - "0xD2A25CFadd0C8c7A60659615c2673AF9a7E628E3": { - "balance": "0xc3663566a580000" - }, - "0xD2E30E6Acd08e6152434429CC1C6C3a78b9F845c": { - "balance": "0x3f514193abb840000" - }, - "0xD2F494eE0203D1cC19d706a73560Be919A5Ad327": { - "balance": "0x4563918244f40000" - }, - "0xD2db7224e26657eFa5275f473F21f453b179a463": { - "balance": "0x4563918244f40000" - }, - "0xD331dD738eB46Cd1877d44b5568891dA14E95666": { - "balance": "0x5150ae84a8cdf000000" - }, - "0xD34A16E4D33706F081E803CAbF61A3B83E059411": { - "balance": "0xad78ebc5ac6200000" - }, - "0xD369bE3B6e310D109b01FA0a8FCd610626ac57C3": { - "balance": "0x3f514193abb840000" - }, - "0xD3b83cde3EEB58080de205a7C42ef1E512176F4d": { - "balance": "0x3f514193abb840000" - }, - "0xD3cef89026C69294E5a7393D26D3b3984705EFff": { - "balance": "0x3f514193abb840000" - }, - "0xD412943172e67F877C2D215be6BEde1D99b30644": { - "balance": "0x1969368974c05b000000" - }, - "0xD42587f3FADa01e0aa5743c8Ea635B684BEdAcbB": { - "balance": "0x3f514193abb840000" - }, - "0xD44A9Cd73957183f1e586a60412BB5a1eA5Bd37E": { - "balance": "0x4563918244f40000" - }, - "0xD450b0D396604A525f122241a1054689e72a5268": { - "balance": "0x1158e460913d00000" - }, - "0xD47e824790b564E5eB8d2AD037E5B450eE65dE72": { - "balance": "0x967c8fb296e740000" - }, - "0xD483073e51ef9C13aEAb5EaF33008aa7a37ed7D7": { - "balance": "0x4563918244f40000" - }, - "0xD49429e49F7A61F909C78798D73baD9c16cb7931": { - "balance": "0x4563918244f40000" - }, - "0xD4D576B6A46105a7bfe3f9EA5a06Af1ada1D0286": { - "balance": "0x8ac7230489e80000" - }, - "0xD4b02417A9860A358d078A893c491A48e1c22DC4": { - "balance": "0x3f514193abb840000" - }, - "0xD4b9018E605638dA51acB7477c2fc7B273DD084c": { - "balance": "0x4563918244f40000" - }, - "0xD4c6e6F7ea0531821Ebf53B2d305aeBeE978FD2E": { - "balance": "0x59723a7bd8c0bf20000" - }, - "0xD510EfF8Cd530F058723799bb64D52B92Ab4B67C": { - "balance": "0x8ac7230489e80000" - }, - "0xD544374AC198574F0c07044ee7533FDb3656e8d0": { - "balance": "0xad78ebc5ac6200000" - }, - "0xD57833fa73755552f603856f1216306cfE7489a5": { - "balance": "0x4563918244f40000" - }, - "0xD5B7dE757b0950DA81E88e1420227EE413E90592": { - "balance": "0x55ef523dac9a570000" - }, - "0xD5E5Cd78505CBFA4c8076408d38E802ec47f697c": { - "balance": "0x3f514193abb840000" - }, - "0xD608E86Fc1c5cd1Aa13450C305cc1C6D0100939c": { - "balance": "0xad78ebc5ac6200000" - }, - "0xD62b063b5F26f6b7912b28958d3c2CDA1B4463f8": { - "balance": "0x68cf327a13b0c680b0000" - }, - "0xD663a26865dd87997274A25Dc51000352a3508B7": { - "balance": "0x4563918244f40000" - }, - "0xD68fbD0DA07Ff71fCf364AA190aE0E4E25B94FD8": { - "balance": "0x3f514193abb840000" - }, - "0xD6Fe6a4315876b1bB0D444Bd14d2bCa10829Ee29": { - "balance": "0x4563918244f40000" - }, - "0xD6b7B49729Ac6D6D05F427eA78AaEdE77d947403": { - "balance": "0xde0b6b3a7640000" - }, - "0xD6dd7237D6Ae1e8A576b0C294FE57Aa67669460F": { - "balance": "0x4563918244f40000" - }, - "0xD6fdD80bCC12b9a19033907251543829D03e258f": { - "balance": "0x3f514193abb840000" - }, - "0xD747D0F7d0676C31CAF55A7C29E047667d0c8187": { - "balance": "0x4563918244f40000" - }, - "0xD7488D91930EF952535EA525CA4d3f147A0cA038": { - "balance": "0x1158e460913d00000" - }, - "0xD785705Cf884Df8E34E3C8fE7d2Ba939a60Fd8ff": { - "balance": "0x4563918244f40000" - }, - "0xD7A60a5B5208C87881Bc08F5Eed276dd9F38b14A": { - "balance": "0x4563918244f40000" - }, - "0xD7B36118C43AD57d32cdEB32b359c1f4Fad030a7": { - "balance": "0x3635c9adc5dea00000" - }, - "0xD7DF43277eea5d0532567E811385C63E3b7e857F": { - "balance": "0x967c8fb296e740000" - }, - "0xD7Ebc5280548Cb99E460c59A040Ad236fb642ebc": { - "balance": "0xad78ebc5ac6200000" - }, - "0xD7a48e59EFb08f034e70fD73252Eb4E18E584f98": { - "balance": "0x4563918244f40000" - }, - "0xD7f8bA3DF885fBdF06dCA5D1c862993b7dce64aD": { - "balance": "0x1e7e4171bf4d3a000000" - }, - "0xD83e2D4ed9c9cCfe824258Ca45be4F9cA9F19611": { - "balance": "0x10e50337ceba7d0000" - }, - "0xD86fC39fC488aF71932730C5185958b0A6Fd48F1": { - "balance": "0x9e67b061b4d0db6db" - }, - "0xD894D0Bef4D4aE8F4F7283d202ad031b28894D88": { - "balance": "0x60c6e0fa0760770000" - }, - "0xD89A60D38cD166855B1b71E755eAF9509764E757": { - "balance": "0x3f514193abb840000" - }, - "0xD8ABa0Ca545034BEbf4FB1E110D24fc831FAE2a5": { - "balance": "0x3f514193abb840000" - }, - "0xD8CB9C5abc98E1B44c0C0e47Bdd55A4B1E34E1b7": { - "balance": "0x4563918244f40000" - }, - "0xD8b4ca05291F23C7Cde376df1cb38EfeB9708794": { - "balance": "0x15af1d78b58c40000" - }, - "0xD8bA43dDb19Cb7022B0c019b72E5BFA1798c5C22": { - "balance": "0x4563918244f40000" - }, - "0xD8c3F324Ce8FaA794F72bb2b233bf87851de6c1B": { - "balance": "0xad78ebc5ac6200000" - }, - "0xD8eD640de8F38539BC37F5A824B08a5Dc47BE8Cd": { - "balance": "0xad78ebc5ac6200000" - }, - "0xD9032d7D8cBEC094b6Ac629cdA5aAb429771044C": { - "balance": "0xad78ebc5ac6200000" - }, - "0xD9082554362Daa10f4D39e952A1d8DdBF38A08B5": { - "balance": "0x15af1d78b58c400000" - }, - "0xD9160ff6C6ed7B7CCe97E47fA2d6cC57BAd05CF2": { - "balance": "0x3635c9adc5dea00000" - }, - "0xD918890ec974bdf7ED739C11084c9124d12724A8": { - "balance": "0x4563918244f40000" - }, - "0xD93e2c710B4c9EBf2A91Bc0F8Ba34b677873EcF5": { - "balance": "0x4563918244f40000" - }, - "0xD9A3b1E370B535E430Cd4f1D892c73Ffc8377CEf": { - "balance": "0x3f514193abb840000" - }, - "0xDA851e0e0638e8D0712A75a33171B940B1B81a96": { - "balance": "0xad78ebc5ac6200000" - }, - "0xDA8D549155361FAdaF68530Bb773182Ea67B15c4": { - "balance": "0x515093df72fa1f40000" - }, - "0xDAdc6a28a05AA4920A3645B03689AF1E5929e435": { - "balance": "0x4563918244f40000" - }, - "0xDBDaFF3F6B1FA9d3589EB130F478774E29667e1b": { - "balance": "0x3f514193abb840000" - }, - "0xDC7669E36b5a2BbD322F724a8431C380F7Feb2C3": { - "balance": "0x3f514193abb840000" - }, - "0xDC8bAaB851091503B076c35a5F6Bf970282268c5": { - "balance": "0xad78ebc5ac6200000" - }, - "0xDD0eacE873a8813CED8f4B516112bb0e513e8565": { - "balance": "0x3f514193abb840000" - }, - "0xDDC29E07f53d7fD17c73bf81c8073daA41aB2838": { - "balance": "0x55ef523dac9a570000" - }, - "0xDDC67294dc05e615E584898e31927D3DC47Fb66F": { - "balance": "0x967c8fb296e740000" - }, - "0xDDCaD0c7876Ab80CC6bF00338285B1d6e7777c22": { - "balance": "0x9e67b061b4d0db6db" - }, - "0xDDe9b4a2f7D3A4745044Dd522FeacEF20cD5B743": { - "balance": "0x1158e460913d00000" - }, - "0xDE0b0DdBCe212Bb8AF1C1976f0092fa5d1299dD2": { - "balance": "0x4563918244f40000" - }, - "0xDE3DBdbE465d3D363d951Abb9C0a34C6C926a728": { - "balance": "0x4563918244f40000" - }, - "0xDE656AE52544c3Eeb135994f4fD44F4866eb21bF": { - "balance": "0x3f514193abb840000" - }, - "0xDEcF25aA19825C4C70755eBA55B8B178CfA058aF": { - "balance": "0x3f514193abb840000" - }, - "0xDF230754Fb09CFbeC313E7Fd3D64986dBe26a07A": { - "balance": "0x56bc75e2d63100000" - }, - "0xDF2e4d726369906e301177D424f65585Fb3a83C1": { - "balance": "0x1158e460913d00000" - }, - "0xDF329A8BA92D7DC6B7f61FDA952B92aa7a7E864b": { - "balance": "0x3f514193abb840000" - }, - "0xDa0A16c48BB016964c105CCb56De674ef56AF50F": { - "balance": "0x4563918244f40000" - }, - "0xDa482F8e7f3B49C1E5Ce74F15d0D222a2185270E": { - "balance": "0xad78ebc5ac6200000" - }, - "0xDa4be18A88de48B1BbceE77e79f89615dA955d59": { - "balance": "0xad78ebc5ac6200000" - }, - "0xDaAD0C980633EFBb2fcb588730F9965e92D074dF": { - "balance": "0x3588b1e6ff1bd1bc0000" - }, - "0xDacA678E479c0c62C4CF7a14CC669C241c2B1D99": { - "balance": "0x4563918244f40000" - }, - "0xDc1c439C554dC811b16EB85ad893Ef373179327b": { - "balance": "0x3f514193abb840000" - }, - "0xDc31283A3e04124eA734c273B47C8e99Aa0d12B8": { - "balance": "0xb2e3d5186e8a99c0000" - }, - "0xDc43B7489d6C983978AaE88000255E7290EBa76C": { - "balance": "0x4563918244f40000" - }, - "0xDc79250126e9D0883416413A19722B90C0439B16": { - "balance": "0x3635c9adc5dea00000" - }, - "0xDcC36794887396573ECb58061A93AF6C5fd9Cf03": { - "balance": "0xb1a2bc2ec500000" - }, - "0xDcEB85c946E586241b8491FC08b301a0B638048E": { - "balance": "0x4563918244f40000" - }, - "0xDd3C2227265959c1DA0524ea58D9a5ff2C023C05": { - "balance": "0x1158e460913d00000" - }, - "0xDd413ea41FCd1307069bcb6Eb1b7B7c62442F6AE": { - "balance": "0xde0b6b3a7640000" - }, - "0xDd452FE2bb4Eb3430F59bCa631D11f72B33e8830": { - "balance": "0x8ac7230489e80000" - }, - "0xDd74ba29FFAA324A10065B58a8f89d98D25D4749": { - "balance": "0x4563918244f40000" - }, - "0xDdAd5EC4C69B474293A6B09eEac55Be33041A4A5": { - "balance": "0xad78ebc5ac6200000" - }, - "0xDe1C28707a2a69Fb63b65ed138da1cA6C4EC1628": { - "balance": "0x4563918244f40000" - }, - "0xDe6902417073a468DAFF06E98aEEeCEa0860a437": { - "balance": "0x4563918244f40000" - }, - "0xDe75a2e9dB6b39340afD7B5b055A57A524F48DA6": { - "balance": "0x4563918244f40000" - }, - "0xDe9E746b728b8B4B81d6163d617d4A0c7B917C2d": { - "balance": "0xad78ebc5ac6200000" - }, - "0xDea884710910d22D601595be90D4D05e9DbCd4Fc": { - "balance": "0x4563918244f40000" - }, - "0xDec6c374365fbFF68929aeB624B96E787Ae0026B": { - "balance": "0x4563918244f40000" - }, - "0xDf8eFB8a522561EA9bD8C55874Dca4536EE5c618": { - "balance": "0x4e7e2608819c000" - }, - "0xDf941d4947AB3560C7641D8283f718DF28c5c3B4": { - "balance": "0x40846c7d1f0000" - }, - "0xDf95A7dfE3dD1f06e5168bD6A0D60CA533A3a82C": { - "balance": "0x3f514193abb840000" - }, - "0xDfBADC10b56Ad60E759a7BF9d6384C32fff17a20": { - "balance": "0x3f514193abb840000" - }, - "0xDfa7bAAD5F058Fe77406a0A9640f7ff3E0E91aAc": { - "balance": "0xad78ebc5ac6200000" - }, - "0xE014F7B0BaEc96D94D8Fd93012ab711e35a3A62C": { - "balance": "0xad78ebc5ac6200000" - }, - "0xE019b48E08a238EbE9f7107f8327B60803a4bA67": { - "balance": "0xfb88ef7839f480000" - }, - "0xE0268DE3EE8da75dc6817969dDaDB42b09460F53": { - "balance": "0x4563918244f40000" - }, - "0xE0281922241bf255c80B8Bd3354496a26da5171C": { - "balance": "0xaa2f948160ddf180000" - }, - "0xE0580DfFd046Ec5C18F248E0FA6B590497352741": { - "balance": "0x3f514193abb840000" - }, - "0xE0F500D0402Da51b21DD6b8B87514781786D0EA1": { - "balance": "0x8ac7230489e80000" - }, - "0xE0cfecB53AA7C305bf852403c5547df6e6f2F3d9": { - "balance": "0x4563918244f40000" - }, - "0xE0d386A1Db7a09A791DB456AA5bB7a0572D71A36": { - "balance": "0x3f514193abb840000" - }, - "0xE128ddF8e2A712502556b5F633746e7A04ff951B": { - "balance": "0x4563918244f40000" - }, - "0xE145b5eC763A9c837a46Db2C1F09e180917B71d3": { - "balance": "0x8ac7230489e80000" - }, - "0xE17170E4f8f7196bc737Df335A6f0Ff776cC3df4": { - "balance": "0x967c8fb296e740000" - }, - "0xE1823Bb1e42025FF1C4E95E15b18d9735734EA35": { - "balance": "0x4563918244f40000" - }, - "0xE1c0B6796b22b458f338c13c11FF58f96133BaD4": { - "balance": "0x4563918244f40000" - }, - "0xE203591792B3104A9bB518042a7D2F721D592d21": { - "balance": "0x4563918244f40000" - }, - "0xE24d997577E2781f5D8D74241674eF65d095a6dC": { - "balance": "0x8ac7230489e80000" - }, - "0xE29Da41261c5c4776DE5D6d926F2b9f4914185aB": { - "balance": "0xad78ebc5ac6200000" - }, - "0xE2aa00c7F914508DcFE8c24b570A8885b38A19C2": { - "balance": "0x7518058bd45bc0000" - }, - "0xE2d97088A9170e837d91C166E8323308701499b9": { - "balance": "0x4563918244f40000" - }, - "0xE2fFA42F39EB83d7F4B33e8Ed421D62b2095969e": { - "balance": "0xad78ebc5ac6200000" - }, - "0xE31E5f6A30b7f61F26B959a3d5217c151c955481": { - "balance": "0xf3f2e99965a44640000" - }, - "0xE31a563465Df9F0D9b86e330ac5ac3a9Cb8b67d0": { - "balance": "0x4563918244f40000" - }, - "0xE3262a004b7C3885ce2FCe260C4181a0399a7A3E": { - "balance": "0x515093df72fa1f40000" - }, - "0xE327Be41069f8b5A97AC4C3dd56f7f2981A72ED5": { - "balance": "0x3f514193abb840000" - }, - "0xE32C17795dfeBf4E2A3Bd7CD2B3DAb26f5500e95": { - "balance": "0x515093df72fa1f40000" - }, - "0xE32D2b2D174A7235280Dc418fBDb420cA633F3d2": { - "balance": "0x4563918244f40000" - }, - "0xE34Bc30f114f294A6000F310515B4fB421E991dD": { - "balance": "0xad78ebc5ac6200000" - }, - "0xE350acAeba7bF32Fb97651Cff73fbcAbD3556645": { - "balance": "0x1158e460913d00000" - }, - "0xE36C7237992D409Bdb1811187FDD04bfADCB5aF9": { - "balance": "0x967c8fb296e740000" - }, - "0xE36f34e355Fd32a60a37f30EA0979b45C145dA42": { - "balance": "0x515093df72fa1f40000" - }, - "0xE37bc1cC965cbaE4724fdF6a34Fe3EC032DE7140": { - "balance": "0x2116545850052128000000" - }, - "0xE39091607B0204a5562733b5fdc9579DAa545B52": { - "balance": "0xad78ebc5ac6200000" - }, - "0xE391245ed07FEC863b83fb10B149b0Fd64Bcb786": { - "balance": "0x11c37937e080000" - }, - "0xE3Bc858C486e782b5910dbf0C88FBE752d15c867": { - "balance": "0xde0b6b3a7640000" - }, - "0xE3D10fAf4CF90250f76BE9afE9a3f169fd2F4271": { - "balance": "0x2b5e3af16b1880000" - }, - "0xE3D20e65E200462A00e076Cd4fdb7D975ee6F244": { - "balance": "0x4563918244f40000" - }, - "0xE3bBEB56e15A005894606f1df09E31129102Ef69": { - "balance": "0x4563918244f40000" - }, - "0xE4567f511aFE25AF253842a6c330d92108Df92F3": { - "balance": "0x55ef523dac9a570000" - }, - "0xE464e9c6605ccd06Fb041cF53B7Dc26F2399E8d9": { - "balance": "0x3635c9adc5dea00000" - }, - "0xE4834Ac452FdF4425e4E45191f254a2F91b1768f": { - "balance": "0x4563918244f40000" - }, - "0xE49e7f7eE60203214FDF8b5bd79dE44ccBac7e10": { - "balance": "0xad78ebc5ac6200000" - }, - "0xE4C4c29473697300f3396a7ec7f5D96bd30b04B5": { - "balance": "0xad78ebc5ac6200000" - }, - "0xE51BcC666F1911e2e1EaF1122cFEc828d4d9dF3f": { - "balance": "0x3f514193abb840000" - }, - "0xE5385dBC0F497c83c677F0a50a7a9fF0f2CfE5ee": { - "balance": "0x967c8fb296e740000" - }, - "0xE54Dc6BF92e052c3f755cEEe7582797da9e4F08D": { - "balance": "0x15af1d78b58c400000" - }, - "0xE57F065243BC76BA56929Df93a3aa43CcD2F40Da": { - "balance": "0x5cb226589ce381c0000" - }, - "0xE5E18ff1F881607857f408Eb0009eb63491a6d39": { - "balance": "0x4563918244f40000" - }, - "0xE5e5a91b6b0189Cf094d48e4735E29F0b8C4418a": { - "balance": "0x1bc16d674ec80000" - }, - "0xE620A7d730569F788CFcdeeD3bd3E4E5E8f488e3": { - "balance": "0xad78ebc5ac6200000" - }, - "0xE62D6F4DeEd17FE255FEfB31be4537F320A84AA2": { - "balance": "0xad78ebc5ac6200000" - }, - "0xE633a20ee75327052ccD4C95cB2C84957Fe3CDA7": { - "balance": "0xad78ebc5ac6200000" - }, - "0xE651D065735b32EaA3A3541867B3BD43D45218e7": { - "balance": "0x108020eeb49f828e0000" - }, - "0xE679933d8791a13199D320906b449e7d7244C24e": { - "balance": "0x4563918244f40000" - }, - "0xE67B64C6CA44C5a49b103B99b8ad474d2CE6229a": { - "balance": "0x3f514193abb840000" - }, - "0xE699e00853b8f7fE6766B4B55023C56Deabe20B8": { - "balance": "0xad78ebc5ac6200000" - }, - "0xE69b9100badb1AC372c6A5507b350fA2459E629D": { - "balance": "0x4563918244f40000" - }, - "0xE6CCd0F4ebabC4bA3901b708C23E4151b1c4D92c": { - "balance": "0x4563918244f40000" - }, - "0xE6b6472a518C2E5926b0971D5785BeBc0D88653A": { - "balance": "0x4563918244f40000" - }, - "0xE72aD7DDa06D94854F3e8B1557abEA249e5371d9": { - "balance": "0xad78ebc5ac6200000" - }, - "0xE7589a9435e27bF1443EbB279083f044C054E9fe": { - "balance": "0x79f8ddcf2c772ee0000" - }, - "0xE7706A6a2C8fe00aa1565917A8E1168beC79ce96": { - "balance": "0x1e5b8fa8fe2ac0000" - }, - "0xE7771C63AF787c834366585fB2cAa7F413cf64A3": { - "balance": "0x3877aae596c4e0100000" - }, - "0xE7FEEbd66748608348148de67e2dAEA37281d90E": { - "balance": "0xcfa6cda270cc81c58000" - }, - "0xE7bbb9A71d0725eA15720bEdafb4a0469949A00b": { - "balance": "0x15af1d78b58c400000" - }, - "0xE7c8C3eF64819834390067F3F0c1984081b58373": { - "balance": "0x55ef523dac9a570000" - }, - "0xE819d9e631F8020625B13FBC62B6bdd80a91BF06": { - "balance": "0x1a055690d9db80000" - }, - "0xE88E2f21cbe1B3b59578f8715bDd3287F9764cb4": { - "balance": "0x19692e124cfbba030000" - }, - "0xE89c9cD6F72BFDE7bD34b733d1f9D25504A7530D": { - "balance": "0x1aae7061cac7a2800000" - }, - "0xE8C88Ad5207A33aC3481d179f0B581abb8ADec96": { - "balance": "0x53af26538fa17e10000" - }, - "0xE8cAF3CBd3c9f5037d41B8B0a33581eaBfE79819": { - "balance": "0x3f514193abb840000" - }, - "0xE8e61287AF80eb3392b5E0d9241f6a8947FF1bE1": { - "balance": "0x3070f5d38330000" - }, - "0xE928676042E5D61107847574336edF6C60d5e071": { - "balance": "0x52663ccab1e1c0000" - }, - "0xE968284ec573Ddb68e632DE0262e78E6736656DC": { - "balance": "0x3f514193abb840000" - }, - "0xE9F0Ab1b33D3b33312bA359613A66cD48C6a8175": { - "balance": "0x1158e460913d00000" - }, - "0xE9b8A70697f4D53d2661A6de4b27020957c05237": { - "balance": "0x513f55a0483cb300000" - }, - "0xE9d9c92d96F0E04869f357D04B2E5AbAC939Db16": { - "balance": "0x3f514193abb840000" - }, - "0xE9dD6CEEA5472A076F4B07c5C4973FD77628512D": { - "balance": "0x4563918244f40000" - }, - "0xEA14ca3460DB95fB2b6c09E693E55F016CC9c040": { - "balance": "0xad78ebc5ac6200000" - }, - "0xEA2ec5688a85f97f656076755912ee1011Ff7A62": { - "balance": "0xa968163f0a57b400000" - }, - "0xEA4d02B36461e62750B9A76bdAE11Ce3933e5E40": { - "balance": "0x4563918244f40000" - }, - "0xEAF3319111F365Df945Cd0F1b586549E25b624b2": { - "balance": "0xad78ebc5ac6200000" - }, - "0xEAa00f688823642D511d7C56622E2ed54baC56e2": { - "balance": "0x8ac7230489e80000" - }, - "0xEB61b70693a6d688C8957Bc9671c46234Bd2E369": { - "balance": "0xa688906bd8b0000" - }, - "0xEB8c23D5fB59D7C16Cdc66D52ACA12659634d38b": { - "balance": "0x4563918244f40000" - }, - "0xEC028AAC2c0dC104ca7e61ab082288d776608ED5": { - "balance": "0x3f514193abb840000" - }, - "0xEC041a2774171673Df2e27F8ad6b2337dD62958c": { - "balance": "0xad78ebc5ac6200000" - }, - "0xEC8D077E53a9A24301D54880D3C462c79B48FfB7": { - "balance": "0x3f514193abb840000" - }, - "0xECDa496c64b194BB0c2EA23Bb622355BcD142e4b": { - "balance": "0x4563918244f40000" - }, - "0xED19dc967e252E42612C9021b76DfC57E45e6dDe": { - "balance": "0x905438e60010000" - }, - "0xED5f767B3F9E38447e5faF9CF2Bad18c7218a471": { - "balance": "0x32d26d12e980b6000000" - }, - "0xED845EEc3b0F8aeaBBC92F0Df276FB2fb465354c": { - "balance": "0x2b5e3af16b1880000" - }, - "0xEDC55F3f10E542d3d47E1D7AFEd04497e252C7aA": { - "balance": "0xad78ebc5ac6200000" - }, - "0xEE7EcA3bCF3CDf2cC3131Fd1E0DECA9199152807": { - "balance": "0x3f514193abb840000" - }, - "0xEEa3B1383B8d5394ee32fD96540eBb4862a89673": { - "balance": "0x4563918244f40000" - }, - "0xEF082eFCfFAae54e4220c0bF1E2E1b7f940E87e7": { - "balance": "0x36048ce82f6a7d320c0000" - }, - "0xEF0e4D10814279Fc64df445FE07Ea0CDd060c846": { - "balance": "0x1158e460913d00000" - }, - "0xEF2d12C8ca5CCc1fE89A737Ea61D055885c7c116": { - "balance": "0x3f514193abb840000" - }, - "0xEF67ec0659cE8736878E72E26Ed53625E113Da75": { - "balance": "0xad78ebc5ac6200000" - }, - "0xEFD5bFf7698C3Ccf73741F97D34E468d8949972a": { - "balance": "0x3f514193abb840000" - }, - "0xEFbd0FE79B7fE3B73A811F7E59A6BDfBF3400ecC": { - "balance": "0x4563918244f40000" - }, - "0xEa72EE920F003E2198c99EE118C91C96Ee3935C7": { - "balance": "0x4563918244f40000" - }, - "0xEa8e31566ccB5ae89Cb14A9ea62AE3E90FFD054A": { - "balance": "0x3f514193abb840000" - }, - "0xEa9d20D56c3AF7c91d14F549b4Fcf91Fee63AB21": { - "balance": "0xad78ebc5ac6200000" - }, - "0xEad07D18b4ad47774EEbd2Ae0b2FE325C1EcB9b0": { - "balance": "0xad78ebc5ac6200000" - }, - "0xEb63F6A02DB2138eC54716F3B817e0353E22f047": { - "balance": "0xad78ebc5ac6200000" - }, - "0xEbAd6Bf755b957b6E4C8c9BcA12f03884b284047": { - "balance": "0x8ac7230489e80000" - }, - "0xEbEAf3857cd04353CaE87d2Cd4aEA6F5cfeed3Ec": { - "balance": "0x3f514193abb840000" - }, - "0xEbedf944387C3aDAe2666aB16d52DD4794b65Dfd": { - "balance": "0xad78ebc5ac6200000" - }, - "0xEc5d50B235b24939E157Ed273CF9348D98620C53": { - "balance": "0xad78ebc5ac6200000" - }, - "0xEc7676d1Fc5F12C452cc740Ec31f42D035A5AEB6": { - "balance": "0x3c48fcfc084c000" - }, - "0xEc83717DDbA1945004906a09EF8359d63db8dEc0": { - "balance": "0xad78ebc5ac6200000" - }, - "0xEcb9687e35a042fbf393e168747425bdcC9e2dc5": { - "balance": "0xad78ebc5ac6200000" - }, - "0xEcc03538d9Af264725dABd36417441F7971c91F6": { - "balance": "0x55ef523dac9a570000" - }, - "0xEcc292384B1d64171cF699eca494e5c340e399A2": { - "balance": "0x3f514193abb840000" - }, - "0xEd22cEd880F0a904cfFf77E15782f6764CAf91ca": { - "balance": "0xad78ebc5ac6200000" - }, - "0xEd7856023eFE6bE37F1c47C327d75230BC35c238": { - "balance": "0x3635c9adc5dea00000" - }, - "0xEd95Af775Ae2D463Cb9E0a2b2d016c4eB9d4610b": { - "balance": "0x4563918244f40000" - }, - "0xEe1A9c69605Fb39D018EC02b461ED95Ea05AFBa6": { - "balance": "0xad78ebc5ac6200000" - }, - "0xEe21f2A0E08C145D34aDb5E2a988f92117F7362B": { - "balance": "0x22b1c8c1227a00000" - }, - "0xEe606735129aF13E309f9EB6Bf21672aCe1DAe95": { - "balance": "0x713e24c43730000" - }, - "0xEe65aCEF171682D306d912678A3F63Aac2261dc8": { - "balance": "0x8ac7230489e80000" - }, - "0xEe935672eDD794a636E7D9F3220DA2FFD6Ea9d67": { - "balance": "0x6342fd08f00f637800000" - }, - "0xEe94E1fA27B37d5ac66D4FafCBE79FD79C529313": { - "balance": "0x4563918244f40000" - }, - "0xEedE23CD826726DF1a1fc873Cd93C9026d45F320": { - "balance": "0x4563918244f40000" - }, - "0xEef04BfAf08a5B8b4Aaf8D2e01f1519E507c9DE6": { - "balance": "0x1b0d04202f47ec0000" - }, - "0xEf1b116dd3Fc1bB567f2B1890430c10431B684Eb": { - "balance": "0x59723a7bd8c0bf20000" - }, - "0xEf6DD0Bc8A776c7873Ce9404e4764f94D004b5Ea": { - "balance": "0x8ac7230489e80000" - }, - "0xEfD2690A07ecAeef29D754bf7f11DF49563A2fDF": { - "balance": "0x3f514193abb840000" - }, - "0xEfd36c9286357D0B3973fa5dEc528e8d9B0a7c1F": { - "balance": "0x3f514193abb840000" - }, - "0xF0635547560E9C4682CED62e6EF2E818D9bf68bc": { - "balance": "0x3f514193abb840000" - }, - "0xF0673828337d8519De610b553779A6Ca6b2159a7": { - "balance": "0x1a055690d9db80000" - }, - "0xF0B9a6ed58c30c6811438B895011DB5bb55e21eB": { - "balance": "0x4563918244f40000" - }, - "0xF0Ba2DE6986e2C53226E7ABa1D099603CB0aD0E4": { - "balance": "0xad78ebc5ac6200000" - }, - "0xF0DeF7Cfb2d6490DF6698848f8bE406c6d9Aa8a7": { - "balance": "0x51b8a939b6618d40000" - }, - "0xF0c0bf1500f31b34C6b42751653504B06bbCEc41": { - "balance": "0x4563918244f40000" - }, - "0xF0dD7a91C2d22373bE323ccC29c362BEa8313EDD": { - "balance": "0x8ac7230489e80000" - }, - "0xF115E174E6794A844a50f1392ee0CE44c2A31913": { - "balance": "0x8ac7230489e80000" - }, - "0xF134cb84c0CB0e3280cf79B44EDBE1ac0CFe8291": { - "balance": "0x7f0e1e8ffe756e640000" - }, - "0xF157ff504D3bbA489Fd61CddCE29c128c1208226": { - "balance": "0xbd676fb09688000" - }, - "0xF15Cc35A2c94173e5De74E9D7cc73dcB3BCA2208": { - "balance": "0x3f514193abb840000" - }, - "0xF1eDe8810C96f5e73F4f9a51F99e6F8Ea5a760FE": { - "balance": "0x6c6b935b8bbd400000" - }, - "0xF2114C3B244E4A7BeB40F7f316eE21B5BB218710": { - "balance": "0x3f514193abb840000" - }, - "0xF211aCA7d8413b03321B1b48AC9e81a0999aEFd7": { - "balance": "0x4563918244f40000" - }, - "0xF218bd3a309BA2c38063be068c3dE259a688E045": { - "balance": "0xad78ebc5ac6200000" - }, - "0xF21ee179bD721807c4CB4a2844A4b1BB4a833f18": { - "balance": "0x713e24c43730000" - }, - "0xF248FD79569Fea7dE520765CD21167c2C7ca98D8": { - "balance": "0x3f514193abb840000" - }, - "0xF2563B7434CD4942297a36F14f3550AB6Fa06857": { - "balance": "0x4563918244f40000" - }, - "0xF26E6469792ed74318B64EAeA8Cd32ab3edD9ae2": { - "balance": "0x3635c9adc5dea00000" - }, - "0xF2751A3afD3c2e955307CDd442c5deb3bb654CcA": { - "balance": "0x3f514193abb840000" - }, - "0xF2Ac05426981Aaa783E6E62847761770c2e49d7f": { - "balance": "0xa8c0ff92d4c0000" - }, - "0xF2B18Cf0d4352E8d9839f196D2267237B0537049": { - "balance": "0x53a5fb509faac0000" - }, - "0xF2Ff6bE73E11720E3283e910A1A6D7b43f83448B": { - "balance": "0x4563918244f40000" - }, - "0xF2d9191d0A182d95F37923DE2c5B60a7B131DbCb": { - "balance": "0x967c8fb296e740000" - }, - "0xF2e3AD5fDC18133F1f588E674A835c2Af18d8DA2": { - "balance": "0x36048ce82f6a7d320c0000" - }, - "0xF3430c8d6A34d74Ec2a29dcC169C6331bD7B9Cd5": { - "balance": "0x3f514193abb840000" - }, - "0xF3792D8A2690977cc8696fEbE8f655527595649F": { - "balance": "0xad78ebc5ac6200000" - }, - "0xF3DA46d1535cC80dacF6c096796652A59F873894": { - "balance": "0x3f514193abb840000" - }, - "0xF3b37f02f92Db110c754D6d83c4691B3bDd31A92": { - "balance": "0x3f514193abb840000" - }, - "0xF3c82bf69ECB01A886D948fAB56537BF0Cdf9c9e": { - "balance": "0xad78ebc5ac6200000" - }, - "0xF3ea646C2bF378E344306CdD377Bc1D2c6d02440": { - "balance": "0xdf4515380648c830000" - }, - "0xF41451F2ea7952F16C79ee25016d926389dc6641": { - "balance": "0x3f514193abb840000" - }, - "0xF41DB0C21079aBa09926F3dc088225e65684530C": { - "balance": "0x3f514193abb840000" - }, - "0xF4208a081307d44411102C8F6a7E5c1db139d99d": { - "balance": "0x4563918244f40000" - }, - "0xF434FDe093d9054836B653878951f341180097f6": { - "balance": "0xa688906bd8b0000" - }, - "0xF446EAcD5Ad27a9cb51Cb00601019C9970ca49f3": { - "balance": "0x3635c9adc5dea00000" - }, - "0xF4567612fBfD8a07384ffb972C330C28bc61a433": { - "balance": "0xad78ebc5ac6200000" - }, - "0xF46151B2e15F02C0F10E8780D2cC2DbF881D505A": { - "balance": "0xbcbce7f1b150000" - }, - "0xF474E3FA71EAe9dDA8067f62Bc183887208B009d": { - "balance": "0x967c8fb296e740000" - }, - "0xF494Be31A19ed71D55c4cE12e5f0aEC76fE1A9c2": { - "balance": "0x3635c9adc5dea00000" - }, - "0xF4D4993aa5c9F79B24c4378b50EA0c82f9b5DD8a": { - "balance": "0x1158e460913d00000" - }, - "0xF4d3139836ccf66Cb985D1517E844923CD499302": { - "balance": "0xad78ebc5ac6200000" - }, - "0xF4f6e5E11aC093b0aD476EfD3Ada4e2ae93B5bA4": { - "balance": "0xad78ebc5ac6200000" - }, - "0xF4f8144a4252abEF2079cC9Bd6A77D5bd74C730f": { - "balance": "0x4563918244f40000" - }, - "0xF515E02652e0817DF01D3b9E90523c8CDDB804ee": { - "balance": "0x4563918244f40000" - }, - "0xF527c0d2752C2DF59B02a19E136051f1cFb14e66": { - "balance": "0xecca2d59581a40000" - }, - "0xF52EFbe426A1aE6d3BD539C5dB867C732412B9d7": { - "balance": "0x514fd0793d9379c0000" - }, - "0xF569600b75C4ddA5e80EaAc61E38C374CE7688af": { - "balance": "0x3f514193abb840000" - }, - "0xF5B56e6A6dC88AC96D0D5Df828803D2250c921Fa": { - "balance": "0x4563918244f40000" - }, - "0xF5c085D8472E36F0E19e4EB121876A49C42C3CE5": { - "balance": "0xad78ebc5ac6200000" - }, - "0xF614c7026b09B6a36e4951353344Dc06e2152B8A": { - "balance": "0x4563918244f40000" - }, - "0xF6192e5FB85AfbC7770Ac803B3C31c498cF1873F": { - "balance": "0x4563918244f40000" - }, - "0xF6283c94C6fB94Da6D4b7701Aee1e2eb79185881": { - "balance": "0x3f514193abb840000" - }, - "0xF639fd91a0132e6f7e81fCeaae8d3B5A0E01786e": { - "balance": "0x4563918244f40000" - }, - "0xF640FC54c1EBE4a17Afdc4680746326FC34565b3": { - "balance": "0x4563918244f40000" - }, - "0xF65330d04F5000823D0BC6A4F7048457b4eCd1DD": { - "balance": "0x6983fe1dd440000" - }, - "0xF69726C9E98f68FCd2D708C07331a468290966C1": { - "balance": "0x1158e460913d00000" - }, - "0xF6E198C4DdB31d442884BA7F2cA8506DdE793eb0": { - "balance": "0x52f0e7101170db30000" - }, - "0xF6dE9358b768A7891Bd6E6EDd46bEC9110070590": { - "balance": "0x3f514193abb840000" - }, - "0xF6e81A87b06182f8716aD3a8F01ddd7d436Ad76B": { - "balance": "0x3635c9adc5dea00000" - }, - "0xF705747E57b3F53daA8746b67065327127C2C816": { - "balance": "0x3f514193abb840000" - }, - "0xF7183A0F5b75e53c560ddC990aB675FA38D54Fa5": { - "balance": "0xad78ebc5ac6200000" - }, - "0xF7223b52E642E52c703CEe40afd198f9BE7d087E": { - "balance": "0x4563918244f40000" - }, - "0xF744a68c42143e45f8e05F933AE22114CBF394dE": { - "balance": "0x8ac7230489e80000" - }, - "0xF78f26fEA4b348987Bb01727c11EFD85e936a71b": { - "balance": "0xa2a15d09519be000000" - }, - "0xF7BBdfB0646183603C0D7038Ae97F2559faf45d1": { - "balance": "0xf3f20b8dfa69d000000" - }, - "0xF7D377EBe63fB92B64083Ed1b1E8ddd25e9084a8": { - "balance": "0x3f514193abb840000" - }, - "0xF7bD9603132E2831Eed78cc57Bd86a37718cCd5f": { - "balance": "0x4563918244f40000" - }, - "0xF827c482Dd1165Affde08a9917C0272DD0340714": { - "balance": "0xad78ebc5ac6200000" - }, - "0xF874389c20794D25997DE54aC95340898C10CB1B": { - "balance": "0x15af1d78b58c40000" - }, - "0xF8BDBc4D27AD5Ce5e3E28C29EDFB684D9A236ec1": { - "balance": "0xad78ebc5ac6200000" - }, - "0xF8D04A720520d0bCbc722B1d21CA194AA22699f2": { - "balance": "0x186cc5f290f8c00" - }, - "0xF8F6CE202F166B9ab613942eedEeF2723a0D45CC": { - "balance": "0x55ef523dac9a570000" - }, - "0xF90ffec6ecE1C0E5C6deB1ff17B782DfaF87B07f": { - "balance": "0x3f514193abb840000" - }, - "0xF91C64C9F2dB839723938C06d36F14FbA659F7c3": { - "balance": "0xecca2d59581a40000" - }, - "0xF9577c020c66e552983b03c21B2CCAEda151562c": { - "balance": "0x15af1d78b58c400000" - }, - "0xF973155058cA3cB37DA07e1a05A62e7A35D6c3a5": { - "balance": "0xad78ebc5ac6200000" - }, - "0xF99dD16450B98b7bF8c9F4f42aCE9C91a31B05cA": { - "balance": "0x8ac7230489e80000" - }, - "0xF9B3d9E672a05D0C94e8bb5e44499665577a2054": { - "balance": "0x4563918244f40000" - }, - "0xF9C7eB5f15981cD064dbA128B9E3085805Ae1341": { - "balance": "0x4563918244f40000" - }, - "0xF9Cd279131D901626D4dc9293aE888B83e508dA0": { - "balance": "0x3f514193abb840000" - }, - "0xF9bF680eF305c79f682b48d9C956425538f4Db54": { - "balance": "0x967c8fb296e740000" - }, - "0xFA77FB345Ae62c6C05BF3865FA14234b0347BF41": { - "balance": "0x4563918244f40000" - }, - "0xFA9BceaF639AcA1A58f44a896a0F2DE6f7622625": { - "balance": "0x3f514193abb840000" - }, - "0xFAbDe97C5Edf8267779457df263C1694d4eaBB04": { - "balance": "0x4563918244f40000" - }, - "0xFAe4a88a1BF1C31c314f6A45C21b3Afc9Fe522b6": { - "balance": "0x3f514193abb840000" - }, - "0xFB1855970d2ee6cd1B631BE006aF6CE741D5e09C": { - "balance": "0x153a8be413a449d8c0000" - }, - "0xFB232fEbf5FB0D41a8B2dC3daE23D2703462f573": { - "balance": "0xa63eaaee755c000" - }, - "0xFB28c5c80Fa8323CB8E026e392A2E9bBc273f02F": { - "balance": "0x4563918244f40000" - }, - "0xFB66e939337D72Ba2Eb6d686fE09cd9B070D388c": { - "balance": "0xad78ebc5ac6200000" - }, - "0xFBb1b73C4f0BDa4f67dcA266ce6Ef42f520fBB98": { - "balance": "0xe8aded20a9302230bc5400" - }, - "0xFC1AB1Ee5B163879A850477fBfEB35EaeC52aBc8": { - "balance": "0x967c8fb296e740000" - }, - "0xFCAC1f81f4aDEdCd922cA138DfCf4BEeb8151998": { - "balance": "0x55ef523dac9a570000" - }, - "0xFCE7e6Ed395eD52C2B1d2ff81a008E9773d13143": { - "balance": "0x3f514193abb840000" - }, - "0xFD461C667c0E4916dE138f43Db97E732F97E23AF": { - "balance": "0x4563918244f40000" - }, - "0xFD7ecC9Ed17f8Ca28d09745D9511a8031B34615A": { - "balance": "0x8ac7230489e80000" - }, - "0xFDa8DeC8A774f337f237134309e3f13E5d5FE09a": { - "balance": "0xad78ebc5ac6200000" - }, - "0xFDbFeED6cBb5B20f88Cd1DdDb2468FCBD0470E37": { - "balance": "0x1158e460913d00000" - }, - "0xFE234A30e2EF001657FFD01249c6b59ac209cD14": { - "balance": "0x8ac7230489e80000" - }, - "0xFEBb5c94d89573CC33392386F151fcC62295b038": { - "balance": "0x32d27af3a0345d640000" - }, - "0xFEe5Ed14E11276EAB4070EBA25D4dAea49f4168b": { - "balance": "0xad78ebc5ac6200000" - }, - "0xFF73c2953ad86d47EA826D7D806A695EEdEF8e34": { - "balance": "0xad78ebc5ac6200000" - }, - "0xFFC75F46219B486621bFfa8eE7e2979c4C6f7245": { - "balance": "0x43c33c1937564800000" - }, - "0xFFe38bA0210772CE0e37Bbcf4EF4e98721360135": { - "balance": "0x1e4b1d83b81cb19958000" - }, - "0xFFe5afFcF874D051937A9bA9914Aa6009859C4A7": { - "balance": "0x967c8fb296e740000" - }, - "0xFa1e1777cda3E02E5c83Bf80b4aFb079a3fA3f69": { - "balance": "0xad78ebc5ac6200000" - }, - "0xFa756326A39dFfd9aD076851970F812B284BD959": { - "balance": "0xb5e620f48000" - }, - "0xFb3CA114E93A80D93bE65Be8db4Dbae597Cd9354": { - "balance": "0x3f514193abb840000" - }, - "0xFb6E3625161c92D17634C95Aa169187f352A4D54": { - "balance": "0x8ac7230489e80000" - }, - "0xFb9264E5EDd7154860f6650527fE9eE54743d0f8": { - "balance": "0x967c8fb296e740000" - }, - "0xFbdd38Cf4D9e2294aCDe44b3f98F69B6D63d2589": { - "balance": "0x9e67b061b4d0db6db" - }, - "0xFbfB0C72F89Cbb80AE12a38223cc63082e3b476e": { - "balance": "0x55ef523dac9a570000" - }, - "0xFc224a90c1766bf58968F7B794a8744FE9c704f1": { - "balance": "0x3f514193abb840000" - }, - "0xFc71a1408b8A736bb752B30e661D1Fe541740673": { - "balance": "0x1e8b1a7ae39f31940000" - }, - "0xFc86dDF04099271E63B0AD60a0084723c081EF90": { - "balance": "0x521ffb2dc46255c0000" - }, - "0xFcF18385D368011b3044a619da70C15b28359Cd1": { - "balance": "0x4563918244f40000" - }, - "0xFcefCb16BF0E6923feF38F90fb80c705626eCBBF": { - "balance": "0x967c8fb296e740000" - }, - "0xFdCEa5aC589af6A2997f5B2F7dadFE61F505b744": { - "balance": "0x967c8fb296e740000" - }, - "0xFe06e7212068650987a7F5B520B182ea177d0AE0": { - "balance": "0xde0b6b3a7640000" - }, - "0xFe4B2C0EC709352C5956F18EE72E8286cA7DA53C": { - "balance": "0x3635c9adc5dea00000" - }, - "0xFeC9D7AF5B06360E567E9b6174C1fb6591492aba": { - "balance": "0x79f6c8e6f7eadfe0000" - }, - "0xFec02A121Dff561588B2737ad01Cea535626b589": { - "balance": "0x55ef523dac9a570000" - }, - "0xFec12816f0a34c63199C38E8B651fA2BE8dE9e94": { - "balance": "0x3f514193abb840000" - }, - "0xFf204e574dE0D2Cb8B22B9599b580f62e265bdb0": { - "balance": "0xa2a1258676cd4270000" - }, - "0xFf33517c9C5Cd3F6050372671d62e2ca0d4319fc": { - "balance": "0x1158e460913d00000" - }, - "0xFfF4BFbbD697b6CaB314173E6a0Aebaa52dBc614": { - "balance": "0x4563918244f40000" - }, - "0xFfaf5CF49F12963F993AE63e7dfB7C7dA42851Bf": { - "balance": "0x1158e460913d00000" - }, - "0xa005e152b6417E32E6128425C079332b269eb0eb": { - "balance": "0xad78ebc5ac6200000" - }, - "0xa02c48f811AfCd8754537c3d10fAa0d77d22d413": { - "balance": "0x8ac7230489e80000" - }, - "0xa05AecB7b81400d5f27BB4997CBb57E568130107": { - "balance": "0x4563918244f40000" - }, - "0xa08a67B51BeF146a415654ed4A405c765b961ff0": { - "balance": "0x4563918244f40000" - }, - "0xa094A8D01790AA813BEeaee49fDEBa23900f2b72": { - "balance": "0x1158e460913d00000" - }, - "0xa0F515275C5487Eaee77f0e7f7aff350B8B4FDa4": { - "balance": "0x4563918244f40000" - }, - "0xa0f795Bb855Cb34562B94BafBbb54bc98Af47134": { - "balance": "0x270801d946c940000" - }, - "0xa0fb19373B259951a94e11f1ecB8Ca08201e1256": { - "balance": "0x4563918244f40000" - }, - "0xa10B7F10a9a5DD8B7F55aeCfFFE7c7C77EFa3E18": { - "balance": "0x966688d4994bc0000" - }, - "0xa16975da831ddbFA745aC38468750fC8529C73F0": { - "balance": "0x3f514193abb840000" - }, - "0xa17115B6Fbf7764ef57F28990cF0e14f6c9990b7": { - "balance": "0x3f514193abb840000" - }, - "0xa1794e76042BC69EA9B573cC02C55a9B83E650B1": { - "balance": "0x4563918244f40000" - }, - "0xa1994b2DE45c0823100EE33dC7D244AB4852C7a4": { - "balance": "0x8be35a9807f0000" - }, - "0xa1E0Ef543B35DD70f71173506636D0e76A075626": { - "balance": "0xad78ebc5ac6200000" - }, - "0xa1b7BB1463500C1c16435E8fbB74Ba44D21ea29f": { - "balance": "0x878678326eac9000000" - }, - "0xa21b06f78cbCbc7fdc31D5738bDa1F4ad8f6B109": { - "balance": "0xb554f51545ee1240000" - }, - "0xa24BF74c35CAeE726E1797A9c368faCD3602C34a": { - "balance": "0xc3663566a580000" - }, - "0xa264a0E823d0b63BaD1469FaE4A92d7468B9caD3": { - "balance": "0x4563918244f40000" - }, - "0xa2650f7Fc2a5f324538154A9F3d857A658F75792": { - "balance": "0xa688906bd8b0000" - }, - "0xa2BA78144d2d02A968CcD773bdfF09225F68035D": { - "balance": "0x5150ae84a8cdf000000" - }, - "0xa2fF7c567051b62E53DCFE7d9E94C99cFe48aF92": { - "balance": "0x15af1d78b58c400000" - }, - "0xa316eC441634b01AC046625dC9b7E8eE2A89D1AF": { - "balance": "0x5237091fd72773e0000" - }, - "0xa3195B70430791c946E3fE96cA6c87a0B4B7421E": { - "balance": "0x3635c9adc5dea00000" - }, - "0xa3289ecE92AB667444B16e2fb891B62E42B81792": { - "balance": "0x3f514193abb840000" - }, - "0xa330bf4fD21F93Fb06BEB240973119e4B7Bf3283": { - "balance": "0x3f514193abb840000" - }, - "0xa35dDAc80Ff37a4Fb99B99918538B517cc4ECdD9": { - "balance": "0x967c8fb296e740000" - }, - "0xa3612B3f2f4586b8AB9B3F6B8233bC6EE75d37d8": { - "balance": "0x4563918244f40000" - }, - "0xa394Ff6101023fc36EA8E0eBAf7e3b2c1F045a63": { - "balance": "0x4563918244f40000" - }, - "0xa39622917b287fe5Fdb1e77AE1F6012F2293aA0E": { - "balance": "0x4563918244f40000" - }, - "0xa3C3e5A2C565F13A1913AC61F9E0f57610f4A37C": { - "balance": "0xad78ebc5ac6200000" - }, - "0xa3EE44e66A923c756E32a48dF4166D5DCC2b3472": { - "balance": "0x3f514193abb840000" - }, - "0xa3dAdEa933a4442679246f6414FFCb62dd6831bc": { - "balance": "0xad78ebc5ac6200000" - }, - "0xa3edc0eBF0F1fd38A93432aB18a8CfF1C469BC67": { - "balance": "0x3f514193abb840000" - }, - "0xa3ff15d2535945e5F66f703A3F2D535D0471c335": { - "balance": "0xd2f13f7789f0000" - }, - "0xa4278FdF9C77205bcE48428f183A1f285c1e54fe": { - "balance": "0x4563918244f40000" - }, - "0xa42B71200CeF75ece1BBc970f619dc03A598f2Eb": { - "balance": "0x4563918244f40000" - }, - "0xa4371D8151Eda04da0E700151E83243a5092554c": { - "balance": "0x4695959efc76181400000" - }, - "0xa448525E1fF4b3A3A2eedC0A1c86A8a67903fe50": { - "balance": "0xad78ebc5ac6200000" - }, - "0xa44d876D83E69f6c9F7dff4a62296bfbb3756C18": { - "balance": "0x4563918244f40000" - }, - "0xa4507A1a98Ae580F62501D6c884228F5D2215132": { - "balance": "0x4563918244f40000" - }, - "0xa4796209A6B29064407bC54f99Bc69ED85419fc4": { - "balance": "0x51ac5a69994a6090000" - }, - "0xa47b515F07930B851D1Baa5aAA67606274eC5D3a": { - "balance": "0xad78ebc5ac6200000" - }, - "0xa4a1149761724C3ac0D8401cdAe6aAE765A2d5fa": { - "balance": "0x4563918244f40000" - }, - "0xa52FF7F433c8d023060752cD0AaaBcb296A00D35": { - "balance": "0x3f514193abb840000" - }, - "0xa55e087aF1ff59A81E75F62cD9C473718bd7887c": { - "balance": "0x4563918244f40000" - }, - "0xa5751d246672c35f252e2D1A99041779c511d46A": { - "balance": "0x4563918244f40000" - }, - "0xa5BEbC7D36884d9e2fABf59EACA9580AD9A99005": { - "balance": "0xd3c229af83a148640000" - }, - "0xa5EAda2666953828A56c5CA6aa9008017441EC00": { - "balance": "0x4563918244f40000" - }, - "0xa5c4e1Ae8D343900EEDB72FBc86970311BDa0049": { - "balance": "0xad78ebc5ac6200000" - }, - "0xa5f7f88635F10523C39C6a9C81bC8E6016a44BA1": { - "balance": "0x46705b7772dc1bd40000" - }, - "0xa652a54896450b29C0235fF09e62530E66e19Ad4": { - "balance": "0xad78ebc5ac6200000" - }, - "0xa68d83A4AA4726f3E5961d87EdeeAD2A93c89987": { - "balance": "0x3635c9adc5dea00000" - }, - "0xa6C5A2f6E36F61032f1f865a13ED53C62050C656": { - "balance": "0x4563918244f40000" - }, - "0xa79C13aa3034a97287103B821932129cbEDB0608": { - "balance": "0x3f514193abb840000" - }, - "0xa7D83814c8A3de45Bedfc560Af7C3bA81f5aB6B1": { - "balance": "0x55ef523dac9a570000" - }, - "0xa7FaFbC82f5724080C66711691d2B98b009C2201": { - "balance": "0x4563918244f40000" - }, - "0xa7Fb5252BCFd186FA962d24F6Cda90BBBd911997": { - "balance": "0x4563918244f40000" - }, - "0xa81de19907C577e1E1304673233f459eAF7c7311": { - "balance": "0x80bfbefcb5f0bc00000" - }, - "0xa83Ddd190fdc78EDf81344a700810910F34D5eDA": { - "balance": "0x4563918244f40000" - }, - "0xa844B5DcD19fA1aB4f0F7e65021feb0C2dC007Bb": { - "balance": "0x11c9984c4e39651c0000" - }, - "0xa8B6967781D524B7710E3f3AC0D126AD5C97Dc80": { - "balance": "0x3f514193abb840000" - }, - "0xa8F1D2993AB308c204d99Ca2005B1d0bd0EeAE0E": { - "balance": "0xad78ebc5ac6200000" - }, - "0xa8ac9c7Cf298EF5D00B6cA3C6e3623Dde1Fb3253": { - "balance": "0x3f514193abb840000" - }, - "0xa8af79abD335BF855528b7904a807928a70a7C26": { - "balance": "0x3f514193abb840000" - }, - "0xa8b30e5bBAb6976e95C53A94e1b2747496fC5d7a": { - "balance": "0x3f514193abb840000" - }, - "0xa8ec0b0DD0d5cE4eF9aD7f258cEEbb4c9E9AFA8E": { - "balance": "0x4563918244f40000" - }, - "0xa8f278ADf79B06c2fc59e4baD23a5b92B4Ad6E32": { - "balance": "0xad78ebc5ac6200000" - }, - "0xa90bDDf32d09C77EC012eD66229802FfC681f2eE": { - "balance": "0x4563918244f40000" - }, - "0xa925Ec4463865AEde04fa7DFFec7e45Db09653ab": { - "balance": "0x4563918244f40000" - }, - "0xa92A96fe994f7F0E73593f4d88877636aA7790Ba": { - "balance": "0x20b660a919e1c7c0000" - }, - "0xa937Aee24089e84D5a0C788c8196Bc199413f105": { - "balance": "0x8ac7230489e80000" - }, - "0xa95902d5E4d96FFA124f4b77309A6D4Aaf025716": { - "balance": "0x4563918244f40000" - }, - "0xa9808977BD6Fa7E4405b2e9d0C93b0D5FdfB1E60": { - "balance": "0xc685fa11e01ec6f000000" - }, - "0xa9aB1Fe3c71d98fcfB6A4CEA819069aC65681AfB": { - "balance": "0xad78ebc5ac6200000" - }, - "0xa9cc21e685d117aC08C901d92158af9aa9c5AD12": { - "balance": "0x4563918244f40000" - }, - "0xa9ef14bD3b28a199F9cf8Afe2B6CaB49F8C17aC9": { - "balance": "0xad78ebc5ac6200000" - }, - "0xaA7080958Bb8EfD9e2EB953c99340dc0C7dE7d7B": { - "balance": "0xad78ebc5ac6200000" - }, - "0xaA81174E58422F9C5148355146283f4017496111": { - "balance": "0x4563918244f40000" - }, - "0xaA9D8853C23e82bD4ef9F7D71479D7599CDF27Ac": { - "balance": "0xad78ebc5ac6200000" - }, - "0xaAD38CC52e56aEEE3912D08caBf52A73a89Dd05e": { - "balance": "0x4563918244f40000" - }, - "0xaAad30E2B49D23D3eda6342de7BC9d12c7796313": { - "balance": "0x4563918244f40000" - }, - "0xaAc401E776771798225B2C0A744416cE55e70df5": { - "balance": "0x51535edb42032b60000" - }, - "0xaB47ba09fDE8dbA58D4D1FCc6195B299529239e9": { - "balance": "0x8ac7230489e80000" - }, - "0xaB50EF884F8e172A0F5B8d2a241e8dC0Ab76B27C": { - "balance": "0xa2a15d09519be000000" - }, - "0xaB958B3D30c83f2506C7f23CA94b7056ED63E56E": { - "balance": "0x4563918244f40000" - }, - "0xaBAd3e81c6faA1747c3A4380A25062742082c176": { - "balance": "0x4563918244f40000" - }, - "0xaC115FB2D872f81b5bb2d9800afe7e31C12b3D2b": { - "balance": "0x3f514193abb840000" - }, - "0xaC5E8FEc1513CaAF4dE88176d7c22D72f8eD7a6b": { - "balance": "0x3f514193abb840000" - }, - "0xaC77d55cab9F412c1A4Cd45Be724317315CEf4Ff": { - "balance": "0x8ac7230489e80000" - }, - "0xaC93Ddd3B4C2c391D73dC7F7e21C0CdDeC80689C": { - "balance": "0x19692e124cfbba030000" - }, - "0xaD32230b7c2b1598dD46c2Dd61CFEa6ABEBC7592": { - "balance": "0x3f514193abb840000" - }, - "0xaD78b0A55AFd56685Ab2d8E6bab96BbC23966d8a": { - "balance": "0xad78ebc5ac6200000" - }, - "0xaDcdFE134D8577e4117A3999075A5797a077552C": { - "balance": "0xf3f20b8dfa69d000000" - }, - "0xaE051417f93Bc66e3E6439547FD33dBcf1DC9f14": { - "balance": "0x1b73528da6c3dce0000" - }, - "0xaE27Ac0d61BC55Fe58DB2EAc3e5bb5a9F9232C07": { - "balance": "0x3f514193abb840000" - }, - "0xaE280650e6bcb3202769FF302d0E557473AA2047": { - "balance": "0x55ef523dac9a570000" - }, - "0xaE34D7D382C47b1207B98D8d9e646D7840bf6310": { - "balance": "0x4563918244f40000" - }, - "0xaE44f22641E2d567d7eA467e619CC9301667de10": { - "balance": "0x4563918244f40000" - }, - "0xaEdFC6ee6C5522ACaEEb8701BBFE42e7b4DBf29A": { - "balance": "0x37e777fb340d95000000" - }, - "0xaEdb0257eCc0097FdBc7052003D17fCc5595b7e5": { - "balance": "0x4563918244f40000" - }, - "0xaF2Ab3a132eC5289788d9a397374780de0D16638": { - "balance": "0x1ad46bb71aa148300000" - }, - "0xaF70A0030FE9A3493CD709Af27CFCe5922789fA8": { - "balance": "0x28a865230b1a9f640000" - }, - "0xaF7A377b3b6dc6F4f518280F051b9BAcCE8e3DC8": { - "balance": "0xa754e8825f8272bc000" - }, - "0xaF87e99206a022471F6E15DD0c67788192f16cD5": { - "balance": "0x3f514193abb840000" - }, - "0xaF9DbC3d242d061E50349362a439008d2A29274f": { - "balance": "0x5561672da5dd6f30000" - }, - "0xaFb661fA0043c9dB9BA70482dA3710e146400190": { - "balance": "0x4563918244f40000" - }, - "0xaa6Ffa422d01715756397D0A3D4785f0eE7550Ce": { - "balance": "0x515093df72fa1f40000" - }, - "0xaa90b4aaE74CEE41e004BC45e45A427406C4dcAe": { - "balance": "0x79126a5000" - }, - "0xaa9fa285B10d2062EA32368B37b59a83C9A9b200": { - "balance": "0x7928b31aa5a852e0000" - }, - "0xaae07d02C7944f65DE7E6122fdBb71aba0bFf2d2": { - "balance": "0x2ca7d3e495e00700000" - }, - "0xaaf8612Ec4437350619c04C7254DF45B0B9B62B9": { - "balance": "0xad78ebc5ac6200000" - }, - "0xab182aE1848FDa0ED9d0891229B30d00c8a9c2A4": { - "balance": "0x1158e460913d00000" - }, - "0xab18501BA40Bc01A561514AE28Ca6D09966FDccC": { - "balance": "0x3f514193abb840000" - }, - "0xabF2D6286af54D9DAafBb4332fa0A008EE2238db": { - "balance": "0x37e75c39c6a646380000" - }, - "0xabd0ac7A3D6c6b25cD5525d60AdAF20FC41B85ec": { - "balance": "0xa1d0fd0a5f256280000" - }, - "0xac03dAD36c3E5E9F90024c3C72668D5520d23c6C": { - "balance": "0x515093df72fa1f40000" - }, - "0xac2F8Fd6D10fC55E600625563d612F7cbaaf6925": { - "balance": "0x4563918244f40000" - }, - "0xacd07D6b8F4b55fC3B96C42B986d9e60ff498d4a": { - "balance": "0x3635c9adc5dea00000" - }, - "0xad803045B8c41491C2a3288A8A30Af224C076A06": { - "balance": "0x65a3c4978cf85830000" - }, - "0xad8Fb4EeA3a59B21BE25c02062e58db5A10483A0": { - "balance": "0xad78ebc5ac6200000" - }, - "0xada29477e223B12f8515bbF8bfF13f984E856BdC": { - "balance": "0x3f514193abb840000" - }, - "0xadaD5b847d04A49daAb145c7c839241a29150224": { - "balance": "0xad78ebc5ac6200000" - }, - "0xae16394b4b66751FcE2D8A56094e114F2Eb7D378": { - "balance": "0x967c8fb296e740000" - }, - "0xaeF3ACE8998d1A56f78A2c74d33aAeb0011fcf2c": { - "balance": "0x4563918244f40000" - }, - "0xaee2260598Df13089aC015B4c89624A2685b5d91": { - "balance": "0x55ef523dac9a570000" - }, - "0xaf18B7b2853ff4eb2EDD25cdabEC5765dbff6447": { - "balance": "0x9e67b061b4d0db6db" - }, - "0xaf4B3C66dF0f73DB5De1e20926d365f074F9BBbc": { - "balance": "0x4563918244f40000" - }, - "0xaf6de4999152768AB81666a3a9E22b6Bf6fa5874": { - "balance": "0xad78ebc5ac6200000" - }, - "0xafc436dacD283650DaA70CeA1208df8329524A85": { - "balance": "0x3070f5d38330000" - }, - "0xb013f72E51FB184d8B7b672Bef6B1a4E2B5c179D": { - "balance": "0xcc2e6b3cc4944410000" - }, - "0xb015e8cbC5F6993FB9264F2FD18A8a2F76b90b5A": { - "balance": "0x4563918244f40000" - }, - "0xb032A528B68BF7Cfcea50a412a50750128104225": { - "balance": "0x4563918244f40000" - }, - "0xb0508a7a73a0cFEe9629Df93A02AC32288F99b95": { - "balance": "0x2856ab8a027fcb80000" - }, - "0xb07E901bb79e6dc1E30229181E2EFA834D306A16": { - "balance": "0x2b5e3af16b1880000" - }, - "0xb0FbEc4Ce35c55a7963463a4C9d514C6c47d6768": { - "balance": "0x5a59116f57a16680000" - }, - "0xb0a881A227954baF0dad857B2d2f8406726181CD": { - "balance": "0xad78ebc5ac6200000" - }, - "0xb0a8846C83f569a6032c7c1193A29C8299d1e424": { - "balance": "0xad78ebc5ac6200000" - }, - "0xb1201169D228b6DA59b0D76653c01F7EB03Ba9Ff": { - "balance": "0xad78ebc5ac6200000" - }, - "0xb1287051b6Fd2A9Ab9DaEd90b539758b7Ea31Cba": { - "balance": "0x55ef523dac9a570000" - }, - "0xb13B19BF4937eE802E611144d8a6a547374B4B1f": { - "balance": "0x9e67b061b4d0db6db" - }, - "0xb13a864FC2fE3900dB8CA3536840BAd377D0864d": { - "balance": "0x4563918244f40000" - }, - "0xb13b1D250bEE5925027283fe17733dd204bF4aCc": { - "balance": "0x8ac7230489e80000" - }, - "0xb1FF3CaDCae211f45829553dB537FF0d5c824cf4": { - "balance": "0x8ac7230489e80000" - }, - "0xb1b04Bde81773cEb6C55339147171468a757DCFe": { - "balance": "0x3f514193abb840000" - }, - "0xb1b4Bca2F275345074899Ab868c86F95030B3e89": { - "balance": "0x4563918244f40000" - }, - "0xb1d5e813a9a31918734C2ed967A62b2791563044": { - "balance": "0x3635c9adc5dea00000" - }, - "0xb1e06450eF0C90586AF6Ccd219fEb773EC495c09": { - "balance": "0x3f514193abb840000" - }, - "0xb22158949F1FC20E446d296882c8Bf560f6a7c51": { - "balance": "0xad78ebc5ac6200000" - }, - "0xb222018516594ca86E04323a4433118025C7Bcd6": { - "balance": "0x7cd862f7eec428d27900" - }, - "0xb251ff9c95cB25A9e1d8b96C10507c6Ad742544e": { - "balance": "0x2a8b871cd74f1df8000" - }, - "0xb26BdE43F771601fF6bc00858299F1144a009048": { - "balance": "0x515093df72fa1f40000" - }, - "0xb272b2BD985b2f12F56679cAF7537d6D3700eF26": { - "balance": "0x4563918244f40000" - }, - "0xb285F7Ec37A730aDfc72924CD6f85E3E5F66cC7b": { - "balance": "0x55ef523dac9a570000" - }, - "0xb2875506F90620aB93e86A93bb69342F3E264629": { - "balance": "0x4563918244f40000" - }, - "0xb291cCD84475394C81944ED81134cC280d2e8820": { - "balance": "0x515093df72fa1f40000" - }, - "0xb2B744E33B85426cCC67aB5212027245B9e1962a": { - "balance": "0x3f514193abb840000" - }, - "0xb2d0eC52e4b6C2356a2fCACCb20f2647b203cf70": { - "balance": "0x4563918244f40000" - }, - "0xb31A18190B2e4c6B38Cb5bb116614C4Bc935A125": { - "balance": "0x16b6cb080af8ac0000" - }, - "0xb36eD4f4fe177E7727b1355581e1e851DC14d55d": { - "balance": "0x1a055690d9db80000" - }, - "0xb383f88F0E40982c0fb3Fa6b87bcdF81cA1099E7": { - "balance": "0x295a26673237a94000000" - }, - "0xb38d67E2bC55140a8cd6c3D199Fe20D2bd7760F4": { - "balance": "0xc3663566a580000" - }, - "0xb3adb4dC8144B24b5A620f8234D22b63534e56E5": { - "balance": "0xf3f20b8dfa69d000000" - }, - "0xb3f989F7A573b5777Df794d599aDC187077aD28d": { - "balance": "0x65a4b4f48d346df40000" - }, - "0xb40B71Ec785D814a2E4Abb6858e7B13E1FDa269a": { - "balance": "0x4563918244f40000" - }, - "0xb41679718380bb0A14e0533B74F2732baf0C039a": { - "balance": "0x4563918244f40000" - }, - "0xb42815342E4fe7C198D90779F055509F8ce464A5": { - "balance": "0x967c8fb296e740000" - }, - "0xb448fF66fD39B4c951eFb0fEFAa31DeAd4cE68F2": { - "balance": "0x3f514193abb840000" - }, - "0xb49C599733Cbe1Bd36dAFb7cB2f276786eB9BDa7": { - "balance": "0x3f514193abb840000" - }, - "0xb4C5aF77a79D3fFfB02b64b7eC9cbc089afd4BB2": { - "balance": "0xad78ebc5ac6200000" - }, - "0xb4dC6142EDcf206AFD335E1c3CE785a5dD2b464e": { - "balance": "0x7270029371519c0000" - }, - "0xb4f99c4a8E12Db5706ca4CA428D87D46547990a0": { - "balance": "0x967c8fb296e740000" - }, - "0xb50fd10b6fC5542C60A217F55fa94E392585C7F2": { - "balance": "0x4563918244f40000" - }, - "0xb5108C4ACD398Ce68239484c44E6a121247B1AbB": { - "balance": "0x515093df72fa1f40000" - }, - "0xb51d9c477184D619c98c1C8828aA2612056EBf96": { - "balance": "0xecca2d59581a40000" - }, - "0xb546012B54dfA2F0aEAC14631120727835a0c42b": { - "balance": "0x3f514193abb840000" - }, - "0xb575Ecb118741dEF177e9fcD459b8354b74d2c01": { - "balance": "0xad78ebc5ac6200000" - }, - "0xb598724885f3d057E9396e3a1A1c381A6dDe49F7": { - "balance": "0x3f514193abb840000" - }, - "0xb5CbE2f86681b5a35Cc95020E20565400A83bc6B": { - "balance": "0x967c8fb296e740000" - }, - "0xb5DBC909b8e527850Ef851dfD97D489b2042b11E": { - "balance": "0x4563918244f40000" - }, - "0xb6002c96137dfBA9fB1e6731324EBcfFea5674A9": { - "balance": "0x4563918244f40000" - }, - "0xb6180039937a59039EAD8F69E4DF19Cf85d3c03d": { - "balance": "0xad78ebc5ac6200000" - }, - "0xb61Ee107Bf5E61f824Aa3B5DfB46E0ad99bc9b3c": { - "balance": "0x967c8fb296e740000" - }, - "0xb65C1aAD455142d35Bff1CF0c74C39Be2199FF8f": { - "balance": "0xad78ebc5ac6200000" - }, - "0xb65fDab0999b90E5d82b615c30FA9054a389e8Cc": { - "balance": "0x3f514193abb840000" - }, - "0xb67664cDdbA9186d9d5a727ebc1aBF3bd72F6571": { - "balance": "0x1158e460913d00000" - }, - "0xb6CE6C2E1078909bc27CD3c6c3B15c16E18C5935": { - "balance": "0x4563918244f40000" - }, - "0xb6D18aE705345D15b305cD3F8547FDB8D6abe5B1": { - "balance": "0x3f514193abb840000" - }, - "0xb6Da42B4f16D85DEb462c72015bA7bAcA1dA0044": { - "balance": "0xad78ebc5ac6200000" - }, - "0xb6a303eAf121335D5cf95699A7d229a7970fF5F3": { - "balance": "0x3f514193abb840000" - }, - "0xb6f012c97747A626CF40204D94F8a37Ca1b6843B": { - "balance": "0x3877aae596c4e0100000" - }, - "0xb7014D9823038Aaf673675eEAF8fB58D77B8942D": { - "balance": "0x3635c9adc5dea00000" - }, - "0xb7674923751865Dd93DbF6C6551A651Bd90Af30d": { - "balance": "0x3f514193abb840000" - }, - "0xb7678ab17169097E758a5E7d246e9Ae8cBFaf8Ff": { - "balance": "0x5150ae84a8cdf000000" - }, - "0xb767D2c383dfb81Ff9aFFe5dE01E80f2AC976c2f": { - "balance": "0x1696445bd5e859a00000" - }, - "0xb770649de740089c4e359CB325b04ce36EFB844a": { - "balance": "0x967c8fb296e740000" - }, - "0xb77b32e7aff27920aaC46B07c5d8731Ae81C147d": { - "balance": "0x4563918244f40000" - }, - "0xb7B86BB8819bC0eE5f2B7884cAFc9f6B7A0d43ef": { - "balance": "0x967c8fb296e740000" - }, - "0xb7Bb69f6F87e72AE494cf7B571F5Dd2e9CEb0641": { - "balance": "0x7f0e1e8ffe756e640000" - }, - "0xb7Fd8796556c12fb5E1b9aFa899D0303a08E7321": { - "balance": "0x3f514193abb840000" - }, - "0xb7e5a4EFAdB771C25dA598Bc43238AA9B8d40AC8": { - "balance": "0x1158e460913d00000" - }, - "0xb7e8AF89318AAbDD162560A1DaebD8859C87A89A": { - "balance": "0x79f8ddcf2c772ee0000" - }, - "0xb8021189Fe267bc63597a9D570b5E2227674D26e": { - "balance": "0x4563918244f40000" - }, - "0xb80FeA119193310fA749AFf8B9881058fE0eAdEF": { - "balance": "0x3f514193abb840000" - }, - "0xb83525975c2CB809D3CC3fA195Bb68Cf49Bf8C9a": { - "balance": "0x3f514193abb840000" - }, - "0xb84aeFCcACBBE8405cf72E523882f97E897EE25D": { - "balance": "0xad78ebc5ac6200000" - }, - "0xb87481D9357a91C0D8CB402DbEc71997e7Bc189c": { - "balance": "0xa2a15d09519be000000" - }, - "0xb87677Fd6634C215eb3aa2E74a2CF917532FE6D4": { - "balance": "0x3f514193abb840000" - }, - "0xb87984Aa68B5b7eCcDA3B5EB6B323667966B1655": { - "balance": "0x24c922b12a64000" - }, - "0xb885979FfBd8cf4919C50f59bc0fB3405997315A": { - "balance": "0x1dc74be914d16aa400000" - }, - "0xb8D5E74Dcb557E7bd789F61b6a2cF628F64Df3D8": { - "balance": "0x3f514193abb840000" - }, - "0xb8E7416f12565454eEf5DD003fA475Baa39bd21f": { - "balance": "0x515093df72fa1f40000" - }, - "0xb8d38Cb32b7971Ed61350a2AF653278850CA1d67": { - "balance": "0x55ef523dac9a570000" - }, - "0xb91A2B07D4240108C09143cC7a96181C00FcBdcB": { - "balance": "0xad78ebc5ac6200000" - }, - "0xb98F697EFA250f9f42453db84e5e57a371d18ca6": { - "balance": "0x3f514193abb840000" - }, - "0xb9C17B7C11a9a5AaF63f6341079E9E5dED7856b8": { - "balance": "0x8ac7230489e80000" - }, - "0xb9C9A7A42e3B07aF3a93204D7C6287E9e5EAF612": { - "balance": "0xad78ebc5ac6200000" - }, - "0xb9E5Ac1d910827B3bb1898F57Cccb922c98465E4": { - "balance": "0x527b10152e83d210000" - }, - "0xb9E8768e068376D78eC951ed61A528eB6986DAE9": { - "balance": "0xad78ebc5ac6200000" - }, - "0xb9addA0B19DaaD909E58f83C4f9a5029230AC717": { - "balance": "0xad78ebc5ac6200000" - }, - "0xb9bF29567E5501C1351588FEFEcFDF5A107CdA8E": { - "balance": "0x55ef523dac9a570000" - }, - "0xbA27940D238cdeef4481E7612eaC5e8CCAadD1C1": { - "balance": "0x3f514193abb840000" - }, - "0xbA2889D46548eec3CC2E93b451A878e84e0a678F": { - "balance": "0x4563918244f40000" - }, - "0xbA342F36690c5Cc714933F7a223f48D97120f26d": { - "balance": "0x8ac7230489e80000" - }, - "0xbA41Ca47541A612F4C60c9fDECf3484FF4Ff7B00": { - "balance": "0x4563918244f40000" - }, - "0xbA894a69d51401FF128D3231FE5e9484Eed84bC7": { - "balance": "0x9e67b061b4d0db6db" - }, - "0xbAAc685e59bA94F8D3E72bEb063daC0cf55DA226": { - "balance": "0x3f514193abb840000" - }, - "0xbAf80408919e4304D6adCB6Fa12c420A655BB9e9": { - "balance": "0x3f514193abb840000" - }, - "0xbB05396C8e31061AE7940Ef03f9458C0f511EE07": { - "balance": "0x713e24c43730000" - }, - "0xbBd8F28814567414C2db39A6b11cF1D852389275": { - "balance": "0xf66fac2e98ab6ec000" - }, - "0xbC495fEe100EFc2D201dc04d20998B952C786769": { - "balance": "0xad78ebc5ac6200000" - }, - "0xbC7fb88CBb19AD544A0fF461f39E931fa9A634f8": { - "balance": "0x1e30316e0cbfa780000" - }, - "0xbC9496E2D7779Dd863Fd41B63e30e077e5baE03d": { - "balance": "0x4563918244f40000" - }, - "0xbD90f0224bEaE60cd338c0363abEd9F425Ce8a5c": { - "balance": "0x8ac7230489e80000" - }, - "0xbDd5Fe80cEef94C99334c5174B68293e4849d835": { - "balance": "0xad78ebc5ac6200000" - }, - "0xbE048055a1d6fCB1bd5030b42AfE9a468Eb3A750": { - "balance": "0x3f514193abb840000" - }, - "0xbE2715824c37C16Bc11eEA1497c037134A5C27A6": { - "balance": "0x4563918244f40000" - }, - "0xbE82d60Eac1B9DF52466886D974dd227b739315B": { - "balance": "0x967c8fb296e740000" - }, - "0xbEAE8DE92034CDA8b0C8A36A74b6A1FB42a3cD9F": { - "balance": "0x4563918244f40000" - }, - "0xbEDEf5248449560A54E846326839c2Ae6b35227B": { - "balance": "0xad78ebc5ac6200000" - }, - "0xbEa6507fE9057e39443635750d795183FCDFB4b4": { - "balance": "0x1158e460913d00000" - }, - "0xbF1b06df50427eF66DCcAf8f5727C5660576A43e": { - "balance": "0xad78ebc5ac6200000" - }, - "0xbF1e23b51E7c1008Fa3115748978b1698d8a810a": { - "balance": "0x4563918244f40000" - }, - "0xbF552Bfe1091b077A2dd7603CA40F46D6d1d6408": { - "balance": "0xad78ebc5ac6200000" - }, - "0xbF7bA111B7504892683Bd892E1972741b8f9cfA8": { - "balance": "0x3f514193abb840000" - }, - "0xbF7f1692Ae54ec0860c598EbbDCe68090C12117a": { - "balance": "0x4563918244f40000" - }, - "0xbFD6749561B6317917D1cb711B9fDFB9304A494a": { - "balance": "0x1158e460913d00000" - }, - "0xba0105FADCe31D090AB2460E6f3739f93E42CdBE": { - "balance": "0x3f514193abb840000" - }, - "0xba0e2dEAc5bD606D0f5D33834010c94E5CC394Dd": { - "balance": "0x1e7e4171bf4d3a000000" - }, - "0xba1bE460F21dEF18f0df03f191f9b9C1E1e21928": { - "balance": "0x5150ae84a8cdf000000" - }, - "0xba22522B57b517e619B3A4Af87C2f1fC5C7d660a": { - "balance": "0x1158e460913d00000" - }, - "0xbb252475e227CA966D1b43981Bc8882aC1d545f3": { - "balance": "0x55ef523dac9a570000" - }, - "0xbb72800Ce3fFB72B34F2ED46574A2DE17B409b1C": { - "balance": "0x56bc75e2d63100000" - }, - "0xbc55CAf43F06e8D9dfE1B9433cAF56F158a349Bf": { - "balance": "0x8ac7230489e80000" - }, - "0xbc7022877255dfC026574686816931A794fa8E5F": { - "balance": "0x967c8fb296e740000" - }, - "0xbc9458c481c0B532b5a7dB71689434Fe3C22c4A2": { - "balance": "0xa217b21de090000" - }, - "0xbcF2268edF70891df07bEf547E1e9db58C62c105": { - "balance": "0xad78ebc5ac6200000" - }, - "0xbce0FE66aCE4368292B0D628A489817dAb008FE6": { - "balance": "0xc3663566a580000" - }, - "0xbd08b14053a60d9f2a4d1Be625c8476C9b914E8B": { - "balance": "0x4563918244f40000" - }, - "0xbd4FF376b7DB919613890f19AE1DBC44d86E8f1e": { - "balance": "0x4563918244f40000" - }, - "0xbd8b2c5e8c8DE6701FFEC7A640D7b06A6e65eFc2": { - "balance": "0xad78ebc5ac6200000" - }, - "0xbdF12cdD39af00f22821346AaD0f1667F5e9e639": { - "balance": "0x967c8fb296e740000" - }, - "0xbe060feC25745dd3f6bE66df92dc9D54d74b66eF": { - "balance": "0xde0b6b3a7640000" - }, - "0xbe3578eb89Dfd244b243090a46c288FAe3b0F31c": { - "balance": "0x3635c9adc5dea00000" - }, - "0xbeA53F063ACCf0F7399fe9a42120a8484aF41782": { - "balance": "0xecca2d59581a40000" - }, - "0xbefB53Af85388587428297D427561d868a2817A0": { - "balance": "0x55ef523dac9a570000" - }, - "0xbf128F013F40ec7Fdfe95d0A298E85764f628e7F": { - "balance": "0x967c8fb296e740000" - }, - "0xbf34335eF5FF12Cb4515637a5A1Bb3e8f23C400C": { - "balance": "0x4563918244f40000" - }, - "0xbfe1D37c25703486fcF629BF7bf949161057548D": { - "balance": "0x3f514193abb840000" - }, - "0xbfe96F543dA8689f2f7140D23954fA05FA2126E6": { - "balance": "0x4563918244f40000" - }, - "0xc0148A5fe90599a5C5231eD8345be0d9dF2d0878": { - "balance": "0x3635c9adc5dea00000" - }, - "0xc02B88eC523A338eC4faE3e68A7AC4f9f45eaE63": { - "balance": "0x4563918244f40000" - }, - "0xc04B7D580Ddea31A952928AcD62Fe52df460b438": { - "balance": "0x2116545850052128000000" - }, - "0xc050932d02e8662385536982cB57f87112732653": { - "balance": "0x4563918244f40000" - }, - "0xc0528554399367F6DB401C5f464AA2DAA1217Cd9": { - "balance": "0x515093df72fa1f40000" - }, - "0xc0A2eEc10F2EE353E29ccf585621eF1FD9e39985": { - "balance": "0x4377e78649c0dd30000" - }, - "0xc0C11094b2C745F988c3391111e5aa45B68Fe468": { - "balance": "0x3f514193abb840000" - }, - "0xc0D3a8d939d8653F0Fd8fE7a0646DD3884293466": { - "balance": "0x2a5a058fc295ed000000" - }, - "0xc0E109ADB09EAc3e4EA86A5c119fB65C4a2b1ff2": { - "balance": "0x4563918244f40000" - }, - "0xc0d9531c915B64A601583Cd15CD5e70052a2fE1D": { - "balance": "0x3f514193abb840000" - }, - "0xc0e3d0aB095634A6EB8423D698A928e213f41d18": { - "balance": "0x145424d455cc180f0000" - }, - "0xc0f35482F68aA12633CE646024FeF24bFeDBD67F": { - "balance": "0x4563918244f40000" - }, - "0xc171a7B3b9d874844260314EB94777f8A20FB6F7": { - "balance": "0x514fd0793d9379c0000" - }, - "0xc1925c45531e2b5f8854bB17B84c15171f31F846": { - "balance": "0x4563918244f40000" - }, - "0xc195Ea2B01bEcCAC40522Cd4b741588E8Ab52622": { - "balance": "0x3070f5d38330000" - }, - "0xc1F269c92B0945078ab00CaDb2019CbaaEbC3800": { - "balance": "0xad78ebc5ac6200000" - }, - "0xc1bFceeC023275766fDF566D803CF8f5fe4aD823": { - "balance": "0xad78ebc5ac6200000" - }, - "0xc1c6ceac7E5108861964E0c725D7173e6019FFB8": { - "balance": "0xb3db2b55c110000" - }, - "0xc1ed5D8AF303e5dFC9d871a3deb275d5fcfd9438": { - "balance": "0x3f514193abb840000" - }, - "0xc1ed9808006cdE95F74DC27b5a162bd8B28e848B": { - "balance": "0xad78ebc5ac6200000" - }, - "0xc2049616B74236A7405F3b01175815cB4279E14C": { - "balance": "0xad78ebc5ac6200000" - }, - "0xc20714362E8A1c1619E60976c482C36902dE3C3B": { - "balance": "0xad78ebc5ac6200000" - }, - "0xc24Ef04a7CdA3c74ED528F721B6b94FA93c98C81": { - "balance": "0x3f514193abb840000" - }, - "0xc25e595118a579dF73B9FBBEa8d96aB95938aFCb": { - "balance": "0x3f514193abb840000" - }, - "0xc26500975eaC3CEAbD5Db501a442341c008E6160": { - "balance": "0xad78ebc5ac6200000" - }, - "0xc293834C0cAa59D10cF71371222D20cA7Cd4De15": { - "balance": "0x4563918244f40000" - }, - "0xc297A3975B85dd3E757097D800B429D565963322": { - "balance": "0x8ac7230489e80000" - }, - "0xc29B445A8dF52682f94A0c54e068EfACEFFB6084": { - "balance": "0x3f514193abb840000" - }, - "0xc2a1910F3882Ec7812ad82909332163b6031E007": { - "balance": "0xad78ebc5ac6200000" - }, - "0xc2a56bc910150192968B5b3de3B81264b608f238": { - "balance": "0x4563918244f40000" - }, - "0xc2cE6B1828c3Ce830bB1737a24e74Bf64B000f73": { - "balance": "0x515093df72fa1f40000" - }, - "0xc3001eB3f3a0269f27F0f256De7A674352611f27": { - "balance": "0xad78ebc5ac6200000" - }, - "0xc322Dc37EEB660ea2A58B4738Fc09E386779Df12": { - "balance": "0x27321303175ca7200000" - }, - "0xc322e56a02Fb54f007d289b653d9FF58a5E9C233": { - "balance": "0x4563918244f40000" - }, - "0xc340716226c01489177fb053AB19C88d57909008": { - "balance": "0x2b5e3af16b1880000" - }, - "0xc36F844a056337B6C4F70653CAE3f9FeB118Ec64": { - "balance": "0x55ef523dac9a570000" - }, - "0xc37B6A7CdF4B83A975f8129F4aFEb8f218F46A3d": { - "balance": "0x967c8fb296e740000" - }, - "0xc3883dF80750C0e79da0eb55A3b9136a20E51D32": { - "balance": "0x3f514193abb840000" - }, - "0xc3A34e2eD42a0D154cd1565b43553D8bF397d128": { - "balance": "0x7ea28327577080000" - }, - "0xc40B36865763F039bAFf126f044Fa4A464f71441": { - "balance": "0xaac2ce5b4bbade60000" - }, - "0xc44F1AB8600F833221DF13D1f1FdF3dB1d94965B": { - "balance": "0x3f514193abb840000" - }, - "0xc48f7aE72fF1EDB5bcf4273EeA308c3A4674dDcE": { - "balance": "0x7e08fd423404bdc0000" - }, - "0xc4A3Ba24193037051C9E37a5e34013371e7eD629": { - "balance": "0x5440a1de34e28260000" - }, - "0xc4C91fBcC3bE93f77db0469eAbD9F97446872D2e": { - "balance": "0x4563918244f40000" - }, - "0xc4Cc603F779e12c68b68da4f3e177af3832A10CA": { - "balance": "0xad78ebc5ac6200000" - }, - "0xc4DdEd6143bA6fe7540242B526C48D977831500d": { - "balance": "0x4563918244f40000" - }, - "0xc4Ea35f414D9F89a368a3311ad6CDf3AD728fF08": { - "balance": "0x967c8fb296e740000" - }, - "0xc526675141b245CC683DE776530bac22Ed1853cC": { - "balance": "0x4563918244f40000" - }, - "0xc58b2d621E1FCE156158FbA008a6803095B6c090": { - "balance": "0x5e910e0de71444a0000" - }, - "0xc60520e557980Fe939b318846f1FC9e9Bd90A1F8": { - "balance": "0x3877aae596c4e0100000" - }, - "0xc635d4555C4cf8cb0f53A25e8c0E83398E508Aa6": { - "balance": "0x3f514193abb840000" - }, - "0xc63df80fa61365C4aD2164b5fD31Bc51558A7343": { - "balance": "0x4563918244f40000" - }, - "0xc67a4B3D8985F9739A5188bB9A47eB9bcBb8E007": { - "balance": "0x69b58c25829bf700000" - }, - "0xc6A591d54A248ACcdd97139544b5127420A24B86": { - "balance": "0x1a055690d9db80000" - }, - "0xc6Fc7ED15043fE1c67B37C078C9C332Afb4F7e82": { - "balance": "0x4563918244f40000" - }, - "0xc7129C10F8056986716EffFfBBe0F1e9C80622D8": { - "balance": "0xc7a99a2c6080000" - }, - "0xc712E10AF2e4033244a03080BA3303556c7dD747": { - "balance": "0x4563918244f40000" - }, - "0xc721D5f2aD4C9B8290BBf5d50407ba87d37DCFe9": { - "balance": "0x967c8fb296e740000" - }, - "0xc74E30DD99Ae01bB7d5Fee41AD3216b9C1db76dd": { - "balance": "0x3f514193abb840000" - }, - "0xc77B5a61F8a7B7d6c6B1f125a51D00cCE25d564c": { - "balance": "0x6b9e6fb66226970000" - }, - "0xc7B8e8fBEFEF2de025Ba4a1322693971c26342C4": { - "balance": "0x3f514193abb840000" - }, - "0xc7BA7FA006f95e17b5c94B0E8c6D375b08166d00": { - "balance": "0x1158e460913d00000" - }, - "0xc7E2FB31DcF0743EF99F7D92613E2A3295B477F8": { - "balance": "0xd02ab486cedc0000" - }, - "0xc7Ff7d027DB82bfe3F3B867aDA5E0BD74eC82c7f": { - "balance": "0x58e61b2d879c3970000" - }, - "0xc7a5d9002baaEd7A93b1F79A5028F2cC4C650cC9": { - "balance": "0x15af1d78b58c400000" - }, - "0xc7c6Ec2E2E685601a1F6cf57D7e42cA516738176": { - "balance": "0x3f514193abb840000" - }, - "0xc8081d0e0f9306A24DbD7564C8921Acf35bd825e": { - "balance": "0x4563918244f40000" - }, - "0xc81a410770306C6B7fD2f580B5eF8F7c670cB1dD": { - "balance": "0x3f514193abb840000" - }, - "0xc82B73bE5F99670675f073c128b7b46a23fe9E70": { - "balance": "0xad78ebc5ac6200000" - }, - "0xc876A87ccC25fB1510260CCA2A3518f5bFaa2Ce4": { - "balance": "0x2116545850052128000000" - }, - "0xc87Dd3d3434346E0c785f6015785823834637802": { - "balance": "0xad78ebc5ac6200000" - }, - "0xc87b8C0F708DcdFDD9e9fc5531A32EF4D1e7A0f7": { - "balance": "0x4563918244f40000" - }, - "0xc8943A4546BC35a8ea77a9639AE39958dcB7920b": { - "balance": "0xad78ebc5ac6200000" - }, - "0xc89970Afa3971B43b9A22E35F3d08f0a5c50dcea": { - "balance": "0x4563918244f40000" - }, - "0xc8E49347BAe7f423da9Db3AF1A9Bc882A7f5B336": { - "balance": "0x15af1d78b58c40000" - }, - "0xc8d3bC94f1DACeffeC741E7ffDf7F64ED3d63a18": { - "balance": "0x19174e6bb9e8000" - }, - "0xc91A70e1F1664c3f776708862A74570AA3610608": { - "balance": "0x4563918244f40000" - }, - "0xc91c5FD26598C603b383F63567cC2209F4D77C09": { - "balance": "0x1158e460913d00000" - }, - "0xc938178fEAF8CaA0F119a141c7b92A399d400c60": { - "balance": "0x3f514193abb840000" - }, - "0xc967404193cdC4342E2A570cDecBB53DE98FC48a": { - "balance": "0x4563918244f40000" - }, - "0xc98462E5CE74d85A384741B5a1d8c45dD8081f12": { - "balance": "0x3f514193abb840000" - }, - "0xc9aa0c129628ee1365A1aDe93ecA37A76f094382": { - "balance": "0x3691d6afc000" - }, - "0xc9b8e31376efa30D525B1A7e72B0770c8258abbd": { - "balance": "0xb3db2b55c110000" - }, - "0xc9f955AD4B15A411F48a81d74461637FF9026Ac7": { - "balance": "0x4563918244f40000" - }, - "0xcA66c6Ba468A39c17dBf4B40D787f41a924d634f": { - "balance": "0x1f27aee5e4ff0b6fac0000" - }, - "0xcA83fc0097866994881EE5B2266CC6954EB03557": { - "balance": "0xad78ebc5ac6200000" - }, - "0xcA8F37D5b1361afF37F2324994924aC2ac287784": { - "balance": "0x4563918244f40000" - }, - "0xcAF28Da35fC39995dC642c5311265DD3320E9576": { - "balance": "0x4563918244f40000" - }, - "0xcBa8485345A1Ed3682409Bc04eBbeeB2A9Dc5960": { - "balance": "0x4563918244f40000" - }, - "0xcC4617781180e14eeB00b731bCdF483E599Ae2aF": { - "balance": "0xad78ebc5ac6200000" - }, - "0xcC81cAd7BCe7F3E2460f0dcF60273a287f7B6d8D": { - "balance": "0xad78ebc5ac6200000" - }, - "0xcCC379aE301e4aD4409c5117e214Aa7B1Cd80193": { - "balance": "0xad78ebc5ac6200000" - }, - "0xcCF7F1a37a756F82E2453Ce62ab16e5fE815278C": { - "balance": "0x3f514193abb840000" - }, - "0xcD6a5305a69CE1fBD9daFcaD4D8Ec51966D68F16": { - "balance": "0xad78ebc5ac6200000" - }, - "0xcE5C961ccf6E0381aC2f2ea905A81751Cc881841": { - "balance": "0x4563918244f40000" - }, - "0xcE62697DC32030483c1f2Eadb572Ca4670eB654f": { - "balance": "0xad78ebc5ac6200000" - }, - "0xcEE568Ea7613C2Ae806f087e6195Dd77070077Cb": { - "balance": "0x3f514193abb840000" - }, - "0xcEa4214B426aE0161A240f791305e6bA0b9D6A47": { - "balance": "0x8ac7230489e80000" - }, - "0xcEb28C20D62aC8259F4F0C556D8004ebE269fEe7": { - "balance": "0x1a055690d9db80000" - }, - "0xcEf07180b29699Fe31887F6682E55BF74b9eadC3": { - "balance": "0x4563918244f40000" - }, - "0xcF1d6F20dd96744757e1d5F4Ba0D687A23308757": { - "balance": "0x3f514193abb840000" - }, - "0xcF20985f4cA31FA78c6297728A4669DE5e3c1A2C": { - "balance": "0xad78ebc5ac6200000" - }, - "0xcF374063c929106b5D751aBa44C2def6BBd5F1EA": { - "balance": "0x4563918244f40000" - }, - "0xcF40Bbed21C52D5d1f2Efbffc06A5b1bF01DC29C": { - "balance": "0x4563918244f40000" - }, - "0xcF9939029B6AB9A53E49Dafd4e30D3295F764f08": { - "balance": "0x35e094044dd5ba0000" - }, - "0xcFA573845Aa96184B2BDd4e65Cc768BC350490E3": { - "balance": "0x4563918244f40000" - }, - "0xcFBC646Bc8c8F4312B53Bf7F32e9AB2a8BA2D51B": { - "balance": "0x1158e460913d00000" - }, - "0xcFea3f8aC205832F61f188d635bFcB292f6319aD": { - "balance": "0x8ac7230489e80000" - }, - "0xca14d90F2489c701EB713f2faD1D5F611b506652": { - "balance": "0x4563918244f40000" - }, - "0xca9c58881f7893Ee38965A431f4BB7B76CAd6b5C": { - "balance": "0xad78ebc5ac6200000" - }, - "0xcb0AcdcF97232A2f1bc1068030eE02B854791E59": { - "balance": "0xad78ebc5ac6200000" - }, - "0xcb7278Aa906cCC21A3c25a23911961BD0C83a56D": { - "balance": "0x4563918244f40000" - }, - "0xcb7b0233fb67d036787f3E1b73a305dEafDf5d8A": { - "balance": "0x627abc7c9bb5fe80000" - }, - "0xcb82C5F377eFDc8cAbfA3fa5AB12a5D056189199": { - "balance": "0xad78ebc5ac6200000" - }, - "0xcb96165E0f5f89e0e69EC2c5008C6ABF4a4255D3": { - "balance": "0x3635c9adc5dea00000" - }, - "0xcbE5394AbA0FfD3663Aa259E4eFB4967424366d6": { - "balance": "0x55ef523dac9a570000" - }, - "0xcbc0600Ca2093e1e2e5356501E104e4FE02d6c50": { - "balance": "0x4563918244f40000" - }, - "0xcc512e452c485f600cb293681240362F54aD6E8D": { - "balance": "0x4563918244f40000" - }, - "0xcc7F36006526E43C0BD9576244B24C68c022C326": { - "balance": "0xecca2d59581a40000" - }, - "0xccAE532e84EEe0068080d54dc9dA2AbA6A84916E": { - "balance": "0x3f514193abb840000" - }, - "0xccad86D901765190B3499580EC7B9a8058daf949": { - "balance": "0x2ac437bb46848bf90000" - }, - "0xccc5B4ef70BC4e8E2486E5EE8c79A47aDFBFe6Ba": { - "balance": "0x3f514193abb840000" - }, - "0xccf8ccdEf13B9294B792D42E329E6DD2B253EF96": { - "balance": "0xad78ebc5ac6200000" - }, - "0xcd20a14531BD4BC1Cb39257876507C483305b557": { - "balance": "0x967c8fb296e740000" - }, - "0xcd78b3D4AD0b9F15f12c239197B04C8CB8196fBE": { - "balance": "0x8ac7230489e80000" - }, - "0xcd8Deb85CEF96c41fD52a058EF0c9A957B73D1a3": { - "balance": "0x3f514193abb840000" - }, - "0xce14F66177429926126e50f4BCc288B44b245d91": { - "balance": "0x15af1d78b58c400000" - }, - "0xceB5E5afc3B77Cb33B1F51cb9814b3c1cdB03ac7": { - "balance": "0xca0f82db99b0000" - }, - "0xceC764fDd3c13f4f8d62E6255B5f0D14dAA47B33": { - "balance": "0x4563918244f40000" - }, - "0xceF88C909763edC74617C7af649fAEb871D7FA9e": { - "balance": "0x22b1c8c1227a00000" - }, - "0xcf0bA397C2011ef129a3aEAC8Cd6836a29046af5": { - "balance": "0x3f514193abb840000" - }, - "0xcf293dE7c77dC0723d00367Ad6a084471ca881D4": { - "balance": "0x5150ae84a8cdf000000" - }, - "0xcf38d93cF46eF7B1cB6903234d71f13c2c041595": { - "balance": "0x410d586a20a4c0000" - }, - "0xcf629c48913BFcf6FA9E43297a8348Fa0f1D4EaA": { - "balance": "0x8ac7230489e80000" - }, - "0xd02838B1b36f954B8e3FB4e2DDc76EfE315eAB40": { - "balance": "0x3635c9adc5dea00000" - }, - "0xd03AA90E7D64228B180ff1a60cBCC1A19C6d7435": { - "balance": "0x4563918244f40000" - }, - "0xd077Fa9C72D933253610c5B4E63C14c39fAB30Fc": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd0881251F04a79db45dBD48f0539db4fae649e91": { - "balance": "0x5150ae84a8cdf000000" - }, - "0xd0987169f2135302B5Eb5A1dA8E8B1Fb533aDb62": { - "balance": "0x967c8fb296e740000" - }, - "0xd0a928488f467Dd1B474FF4ae70CD1e90301efEe": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd0e9Cdef0061936dcA8A1B4a529EA00A3db19ABb": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd11f555c41b5e94f4b3952235B94a1b7bc753a43": { - "balance": "0x4563918244f40000" - }, - "0xd154a4942C63A1aB9dA293c53003F11dD0F441aa": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd15A9C16FEBac7FCB9ECf7Ba2b31DaDa4a576288": { - "balance": "0x1a055690d9db80000" - }, - "0xd166A3827c7C93526ffbfE92D8CBE5b9c4A72fc1": { - "balance": "0x4563918244f40000" - }, - "0xd1f8e0f178F6D074446E31F97C54c574D371FcBf": { - "balance": "0x2a5a1370794994640000" - }, - "0xd201Ca669A3AD713E3544528A8A86ad5dC845De6": { - "balance": "0x967c8fb296e740000" - }, - "0xd274a4b404ddA62087792C9c92c97F2b60Cc0C33": { - "balance": "0x55ef523dac9a570000" - }, - "0xd27D301C73Cb936E1EC6DcFbDA326803e84C79aC": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd2D293f5E79E16F0fbb029E82dE083D6568b039e": { - "balance": "0xf3f20b8dfa69d000000" - }, - "0xd2E71D836E9E97c14696e4dCE440cdFDb8aC083D": { - "balance": "0x3f514193abb840000" - }, - "0xd2b6C3Fb2E3e16b9134168d8e2C77A40559826C2": { - "balance": "0x967c8fb296e740000" - }, - "0xd344fB20819a560fb3A2CC60B499f746dBC8FaCC": { - "balance": "0x4563918244f40000" - }, - "0xd35C960F4aab91D49Ab1E322A79E5b1070DdfE28": { - "balance": "0x4563918244f40000" - }, - "0xd37e02e628Ff1b929fA6D27b0e93aD4578D27bAA": { - "balance": "0x3070f5d38330000" - }, - "0xd3Ee6A7a5288FC0D33a491A1a96fb2964CB08D2A": { - "balance": "0x4563918244f40000" - }, - "0xd4104530a5cc5c740934A3439FEf050cbE798AE7": { - "balance": "0xc915c9fee049d490000" - }, - "0xd4122A91e8Ecc9F6283344C37b8eB463bE983bb5": { - "balance": "0xa217b21de090000" - }, - "0xd433d4601f1228C2C57E40443237fFc6127F5d6f": { - "balance": "0x4563918244f40000" - }, - "0xd45B64CD5A7e7172E3cc9a01744deF12234f09DB": { - "balance": "0x4563918244f40000" - }, - "0xd4679914A3244A821291D1fb6bBA7Da2A09838D9": { - "balance": "0x3f514193abb840000" - }, - "0xd484E98435EAc30c82C32f46ACb8Eb3d34dc1a50": { - "balance": "0x4563918244f40000" - }, - "0xd48d99A22eC370Dd7e465c62c79A9913086e68b4": { - "balance": "0x55ef523dac9a570000" - }, - "0xd4B01ECc202Eadf1ffA515937680533bd0B0E020": { - "balance": "0x3f514193abb840000" - }, - "0xd4Bd3c6b97e07b3406A76b6538AEe472E9cA1819": { - "balance": "0x15b5135caeff47c000" - }, - "0xd4b00CD726889a18338389B6AC71795E7196a64A": { - "balance": "0x967c8fb296e740000" - }, - "0xd4b4BCb5811f1254044d912f5C5eDF49eD659A37": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd4d1CaFf67B58A9b0e72e8cF743c7eA1730cAaB6": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd4e2E00d7c9b158b28fb8604d4E774d1eFE8dA39": { - "balance": "0x54607fc96a60000" - }, - "0xd538E441212b79e85CA1afd3127e515768DbfeC8": { - "balance": "0x3f514193abb840000" - }, - "0xd56486bfC9ba1655F373f0dB45EfEB86554F2D17": { - "balance": "0xa2a15d09519be000000" - }, - "0xd5D09ac5ABf6f7C2C93be4a1Cc5A4038d811f00A": { - "balance": "0x4563918244f40000" - }, - "0xd5b3b9e65b50df955558EE6c7c4F6840eE07e077": { - "balance": "0x3f514193abb840000" - }, - "0xd5d3913E9CF3C8341aD0e059dc5E2690C3631E4E": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd603d8664e8b88aae3b69133d50a99941b4726f4": { - "balance": "0x515093df72fa1f40000" - }, - "0xd60EB709ca6038cf0BF989F314D402a355f4ab18": { - "balance": "0x55ef523dac9a570000" - }, - "0xd618115721995707B752Bd9dD87aCCd5576f15e4": { - "balance": "0x515093df72fa1f40000" - }, - "0xd618931D8a1DFe05e4e57b7bd0eC5328153B5744": { - "balance": "0x4563918244f40000" - }, - "0xd630622BCdb699E39c6ac88F812286e1f0496aAE": { - "balance": "0x3f514193abb840000" - }, - "0xd6370325595A5D67180a5870bf057c993d6D11E1": { - "balance": "0xa2a07efde66169c0000" - }, - "0xd63ce00DDa37fA8892C891c19d1eB3A46053e482": { - "balance": "0x4563918244f40000" - }, - "0xd643370D6B99ccB4DA2770683f30BE104f7d3c63": { - "balance": "0x8ac7230489e80000" - }, - "0xd6615787c1Bd964E5DBDF573a0779b04C044d468": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd6630a08737c09c4544F76Ce9cEA17310552cf32": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd6890b00EFDe16b18956915D69bB75eC7acCbd28": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd69b05fA71B97F044065e1a92ed5D4d10C209203": { - "balance": "0x3f514193abb840000" - }, - "0xd6D9De9EDF8cb07795266434BDCf44C85776ab11": { - "balance": "0x4563918244f40000" - }, - "0xd707460D30a4Be7D10ebeEFC7b525a5561861362": { - "balance": "0x19d2de586a81bf540000" - }, - "0xd71d5ca79D55675f79190b9E85577CE3fe55fE32": { - "balance": "0x13dd95f7fe12a50200000" - }, - "0xd739AC28c31aF393b21B322cCA8d02560845eF0C": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd75252eE995F250CAf545Ec2425532e21017ed2c": { - "balance": "0x3f514193abb840000" - }, - "0xd75Bef63f0064DdE6B06058c2f1fB01c634D3397": { - "balance": "0x3f514193abb840000" - }, - "0xd761FaB82D996724E9Cad876c8616c0d4c92CaAd": { - "balance": "0x28a857425466f800000" - }, - "0xd79aDf05ee509c3363E94476958065CBC4809E2d": { - "balance": "0x6c6b935b8bbd400000" - }, - "0xd7C3563520FD6099AbEde4B99a177E26021Bc8B1": { - "balance": "0x1158e460913d00000" - }, - "0xd7bE5AD963666BCdBfC7b9ec7f1A3C2143D43c85": { - "balance": "0x3f514193abb840000" - }, - "0xd7d766446105f0d7C9c3ACA129F68B7926331b41": { - "balance": "0x3f514193abb840000" - }, - "0xd7e0dc071Ef38544a072cE6f333A8697Bc11c1B5": { - "balance": "0x234a856becb8c71600000" - }, - "0xd7fc74DfE04CD5bE30953e14eA5AC03614461DB8": { - "balance": "0x4563918244f40000" - }, - "0xd8009eF731F31B10B65c7D9cC0495dC8Bab94e80": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd80929aBA17917532bF6610d33D418b1343e92c5": { - "balance": "0x21e24faf57d9e900000" - }, - "0xd81C8edfd99664cF7a8b0d06Bd273b3b6C4Fa6E6": { - "balance": "0x3f514193abb840000" - }, - "0xd835b2Bc75a07a7039419786AE241DcE301672d7": { - "balance": "0x4563918244f40000" - }, - "0xd85A6D5030159f06933E92548D423b08f6d0Dc6C": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd870C259144BAd079F6b00724339cDbfdCe5EEDd": { - "balance": "0x515093df72fa1f40000" - }, - "0xd876Cf2E25FBe1569c67899251a17bd1CDF99b23": { - "balance": "0x8ac7230489e80000" - }, - "0xd8904E2D4301bB93a838dEc57fc4D26dDc42423c": { - "balance": "0x17aecb2294a465080000" - }, - "0xd8BF077dFf011Cd60591E3AA78eCF5C11a7CE9cB": { - "balance": "0x4563918244f40000" - }, - "0xd8C581f892253DF1371693CA35252389888cE3E9": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd8CCe7F2012338a31cE0e60D6eeeCC512489EA23": { - "balance": "0x55ef523dac9a570000" - }, - "0xd8F108574Eb253018c7E1221198DaebB8F54c72c": { - "balance": "0x87727c4a0fd0000" - }, - "0xd8b4e96b33Af4458e70FadE5e735B915393bC70e": { - "balance": "0x8ac7230489e80000" - }, - "0xd9101C2E2C8184A1981280939593FB9A2fe3Ab5c": { - "balance": "0xecca2d59581a40000" - }, - "0xd93dB237e654f255a82E14361C321A048916A499": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd962f27aE9FB9067A2158158f6e269aa48F85349": { - "balance": "0x4563918244f40000" - }, - "0xd974132b2738bF446B6C81d8f5Fa5BD78Be756A6": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd99DFEA88ea1a6995aCE4845c1f64AC2c6CC0DC9": { - "balance": "0xad78ebc5ac6200000" - }, - "0xd9Ee4Db818Ed219CFDb9DcFAf58aBC71eE685617": { - "balance": "0x3f514193abb840000" - }, - "0xd9dBFF53A827B1Ba6086b21C04b50823C51D2AF8": { - "balance": "0x1158e460913d00000" - }, - "0xdA0103A12BcB7a7B888f606745Fb4265E374DDAf": { - "balance": "0x15af1d78b58c400000" - }, - "0xdA4821f582E18C97526d4e2cf2164272c58a3A62": { - "balance": "0x270801d946c940000" - }, - "0xdAfd1bE5fDD1C35b6DA0D21D85D7CA55242a8d65": { - "balance": "0xad78ebc5ac6200000" - }, - "0xdB26aB156B6c1D9e4F641252dA2adeEE087352e5": { - "balance": "0xad78ebc5ac6200000" - }, - "0xdB5F771Ee846501264ea025B1c5cfba9093B69fC": { - "balance": "0x3f514193abb840000" - }, - "0xdB7771931329DD502C70D780C8B2210be9f13B65": { - "balance": "0x4563918244f40000" - }, - "0xdBEFc1c8De9e1aaF99903cD3D87EB79BB4441Bfa": { - "balance": "0x11ddf97a9aac0585c0000" - }, - "0xdBF8537010CB7C686c7d30411a6724210C900C4F": { - "balance": "0x3070f5d38330000" - }, - "0xdC526B9916Fe753ed6e197405A40201815364D2A": { - "balance": "0x3f514193abb840000" - }, - "0xdC6c35A8c732509FCc62848039dE5Be5e887FCB5": { - "balance": "0xa2a15d09519be000000" - }, - "0xdCaf996A2c85C50dE9feEb7b9e5bc78Ee0e98625": { - "balance": "0xb8507a820728200000" - }, - "0xdCb7A32A6a354adEFdD69a361Cc5fD1053DfB5cF": { - "balance": "0x15af1d78b58c400000" - }, - "0xdD37c12c9b94eaf62835497D498F7dEF102C3749": { - "balance": "0x9e67b061b4d0db6db" - }, - "0xdDAE399731bAE9111C51881C90A942e074D7A978": { - "balance": "0x4563918244f40000" - }, - "0xdDF8D6c80ccB70be4836e635DFf6ee64F31cE471": { - "balance": "0x4563918244f40000" - }, - "0xdDb54A6678008D961df1D914cD0b1c04669fAd0F": { - "balance": "0x3877aae596c4e0100000" - }, - "0xdE1Aef3F3d7eC3eda1Bf10cA665DeB733cCFCe5A": { - "balance": "0x3f514193abb840000" - }, - "0xdE70043eDf21A081BbDB9BaFd1a4b0F340936B1c": { - "balance": "0xad78ebc5ac6200000" - }, - "0xdE7353B9933d245E905A92a37D08e80F00631316": { - "balance": "0x4563918244f40000" - }, - "0xdE7CFaA88bd424B43209228F48769754594DC286": { - "balance": "0x4563918244f40000" - }, - "0xdEC60482b8Ee60Cfc181bC2140E4802319C83793": { - "balance": "0x4563918244f40000" - }, - "0xdED00fcFEaf04f92b5a7c9821d74485e0e19EaDf": { - "balance": "0x4563918244f40000" - }, - "0xdEc3804E2E818F50Ad002a39f17a6f4130541eBf": { - "balance": "0xad78ebc5ac6200000" - }, - "0xdF1d8878A0Ca4560038db36e77CC623A4FC40E29": { - "balance": "0x4563918244f40000" - }, - "0xdF2839697FB4b6B5fCe0cafa5fCA417A1b8da11F": { - "balance": "0x15af1d78b58c400000" - }, - "0xdF7d1B82cacaD566aA57790E92B83a2FDfA73293": { - "balance": "0x713e24c43730000" - }, - "0xdF9414C6c02A77C4EdD5Be9Dc951D5c7adF0CDdC": { - "balance": "0x8ac7230489e80000" - }, - "0xdFD58e43c6f2f6714a976FAeCd1380aFcb75c60F": { - "balance": "0xad78ebc5ac6200000" - }, - "0xdFbeEa7a57B1281f2B394a781d5c88eFC5798F44": { - "balance": "0xad78ebc5ac6200000" - }, - "0xda054C9919c54FCCDbfca20f73FAE791A22C1b0E": { - "balance": "0x60c6e0fa0760770000" - }, - "0xda3754E5984A0dBFf04fa4a9796A54606242e135": { - "balance": "0x6031b366962d6ee0000" - }, - "0xda5970653E0BbE6Eab089e080ba8784d2DeD810E": { - "balance": "0x4563918244f400000" - }, - "0xda98296a61Fd2d01a2bDA39AF6Be12c8D43E8eb7": { - "balance": "0xfe1c215e8f838e00000" - }, - "0xda996484A79073D7ec084Ecb82bF2063263177EA": { - "balance": "0x4563918244f40000" - }, - "0xdae9C177783e1dF84252d011C918658496304A16": { - "balance": "0x967c8fb296e740000" - }, - "0xdbd63118EEA744eD7c1bcC77280A6F0512721F89": { - "balance": "0xf385a08930e3cd962000" - }, - "0xdc1b27E0Ec08765D42DF3D57bBe42b74a86fbF32": { - "balance": "0x967c8fb296e740000" - }, - "0xdc50DA092Ab787ab6Ed4F436a667c0CADa1Bb946": { - "balance": "0xad78ebc5ac6200000" - }, - "0xdc5D26D98B80294EC21D9Eb3cAE03e0d8B469a8E": { - "balance": "0x8ac7230489e80000" - }, - "0xdd4B7c62CC44C12F0F901940235945e97491b7A9": { - "balance": "0x3f514193abb840000" - }, - "0xdd9Feb7c643c3ff4dF842d04dE46434E9eE76ba0": { - "balance": "0x4563918244f40000" - }, - "0xddCdb30D514b17906199e84Cc9f41322D2007AFe": { - "balance": "0xde0b6b3a7640000" - }, - "0xddDE4d56d17e407a01e5b8a6E4C26ADA8E045E1e": { - "balance": "0xad78ebc5ac6200000" - }, - "0xddcfaAD38BCe42Bf0F9d0b04CeC917d05146101c": { - "balance": "0x3f514193abb840000" - }, - "0xde3b3DE93D4e7Ef99b31e5dBBfF17ab4580d8F61": { - "balance": "0x3f514193abb840000" - }, - "0xdec1a5EC2F46B01b871Ec0e17e96E49505c1076D": { - "balance": "0xad78ebc5ac6200000" - }, - "0xdedD3Fb709cCF3EcC73979432300b0Be883EE2Ce": { - "balance": "0x4563918244f40000" - }, - "0xdf2C7cF3AC8ecF6a5dcF68e02c6365D5602fB4C0": { - "balance": "0xad78ebc5ac6200000" - }, - "0xdfA5897Ca28926BC5f27eBC5B9496FAAbDa5D645": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe01B9095bf153d63Aa8c268b282C6a9e23A4c386": { - "balance": "0x4563918244f40000" - }, - "0xe01cb76f4bf0C6934751D9C12C20c246DF8Ee461": { - "balance": "0x3f514193abb840000" - }, - "0xe02Cd974e1e4Ef8542bb33b80576eBAaa6a29CF8": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe04A0cB196373CFE08b12b133aa8ede677B8Ac65": { - "balance": "0x3f514193abb840000" - }, - "0xe056E6E6C9732212c7d44138dea7F8f4Edd7a555": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe057bC1aEC2062ea816c9b6B4AF5aD10Bc4550E4": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe06c8BFdD85cC8c3602e62d2a29F35D350BD7d3d": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe07dd1067e07C985c7bECB89ECA1Ed8fcEeaa8C6": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe0Eb6B59847213e0f2F84Ef61C9Ab36a04E7971C": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe0c95626075bb6D64614D1E583d3bFbA29D29DB0": { - "balance": "0xd02ab486cedc0000" - }, - "0xe0e86ec78bF89598eAa97d8C430BcC1109477878": { - "balance": "0xc3663566a580000" - }, - "0xe10a1F9707b55031BD7dF4B4DEf30C5C06526803": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe12EfEB304175447f27395c0AcbEE82701584014": { - "balance": "0x967c8fb296e740000" - }, - "0xe189750B6C7A566797F27D6BD8242705d3EF58D7": { - "balance": "0x967c8fb296e740000" - }, - "0xe196c2d3fBCcD8066EDF1cEc78EFe6897eD9FB68": { - "balance": "0x4563918244f40000" - }, - "0xe19765cA36D390C25c12567d9287d425446e25c6": { - "balance": "0x4563918244f40000" - }, - "0xe1Ae7493401A284B30b4fFB4f9A9F85eb08AA983": { - "balance": "0x1158e460913d00000" - }, - "0xe1F2f8D7Ce86881FE475694E2024662eeaD37a28": { - "balance": "0x3f514193abb840000" - }, - "0xe1d97fa14cBEf1Df48e2Ca175e98f12dDb485f35": { - "balance": "0x4563918244f40000" - }, - "0xe1d9B686678425eEF7B8623DD38B50ED9c8419aC": { - "balance": "0x3f514193abb840000" - }, - "0xe1f580CEc5a0dFB1F4A0157Fe5B5A6D273512D80": { - "balance": "0x4563918244f40000" - }, - "0xe220254e61b9c694d7Db31F8d2A963FDB9363f94": { - "balance": "0x7ea28327577080000" - }, - "0xe26686f5f296B67dd82D55AE7e33785Ffa42d519": { - "balance": "0x4563918244f40000" - }, - "0xe26D8eA58A132285dd6066eC8A2BBD7d71eE09e2": { - "balance": "0x4563918244f40000" - }, - "0xe27F638b37397c0669F9201973312418aefbC0b0": { - "balance": "0x3f514193abb840000" - }, - "0xe286D16718104d15B107f0cf5f120e42D1A785a8": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe2Dc5F9bEf0204A6FA6C6EAaa1b3b46a2cA84604": { - "balance": "0x2b5e3af16b1880000" - }, - "0xe338c3c19F96b78FbC2f9a783c0400442Bea17fb": { - "balance": "0x3f514193abb840000" - }, - "0xe3468894E64Ac0a96cefF5D6f2D868844321b036": { - "balance": "0x55ef523dac9a570000" - }, - "0xe381071d74D4d724b80CD6bcc1a4a384301c43D7": { - "balance": "0x4563918244f40000" - }, - "0xe3C46bfC4D94DCfb014b44b3C59217743FB4A652": { - "balance": "0x1a055690d9db80000" - }, - "0xe3d0Db982b92Aa6dE6Ac49b877BB68bC7cD150F0": { - "balance": "0x967c8fb296e740000" - }, - "0xe3dDCa2327e44AeBB8dBbfd0226CabA1AB64F47E": { - "balance": "0x3f514193abb840000" - }, - "0xe3eA28E1aB936D31f9522EC1cDf6b354677fac8E": { - "balance": "0x55ef523dac9a570000" - }, - "0xe3f5862918242915D6A3c1523D1C5553426591E1": { - "balance": "0x1158e460913d00000" - }, - "0xe42dD16cc8480Bc0f055130238dd2ecdEf7Dd236": { - "balance": "0x3635c9adc5dea00000" - }, - "0xe44e0552F27455F51DB1DF1ce4AA5181ef32ED0B": { - "balance": "0x1bc16d674ec80000" - }, - "0xe4597E5c4755f4E6a755886ffc81AF83967dCCA4": { - "balance": "0x4563918244f40000" - }, - "0xe4A9181A04e1724Fa6F501218E9ba52678C57eC7": { - "balance": "0x67450c07ee2f6300000" - }, - "0xe4FB6eef7abFbf90a8d8C0850A2C3d16597f60d8": { - "balance": "0x3877aae596c4e0100000" - }, - "0xe4e27F61d7f5b7a22A5e7cDFf794B8cCC3b51b47": { - "balance": "0x55ef523dac9a570000" - }, - "0xe502e14a4ddD0352067E24e217DD72245D9D3d83": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe51130d5432c7d400C08a023DC53523E6E226a55": { - "balance": "0xb6255df5f500800000" - }, - "0xe57F83C7DBbb29c1a4889a8b2272eBEf249EAa83": { - "balance": "0x6193e350adae5b10000" - }, - "0xe5B11cCa07429df39CfaFF239D18a1bcb15c40E9": { - "balance": "0x4563918244f40000" - }, - "0xe5F69b9C6B6a5F04Bf5A626c4a92C5c1AFe5D0fe": { - "balance": "0x4563918244f40000" - }, - "0xe5bA6b7631ACcb25938e01349700fFfAb08fb258": { - "balance": "0x4563918244f40000" - }, - "0xe5c7F2bb9E6DceF23C4580270d316b977462828B": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe6260C550DFD758050BaFfc9D4f09A80791bf23a": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe6385a3fe118BD37cEf39f6cA49F18A9eCe1e87a": { - "balance": "0x4563918244f40000" - }, - "0xe66DE97B0Fd6732550B1EEE5164be201a808c850": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe68ccFB89FaF878702697Bc59dAd2F536bAc18Bc": { - "balance": "0x3f514193abb840000" - }, - "0xe6B0155F69B1808971706Ae4Fb61da79020f8AE3": { - "balance": "0x967c8fb296e740000" - }, - "0xe6C3cB78b47ff1E1f9333EcEaDE27D757F837658": { - "balance": "0x15af1d78b58c400000" - }, - "0xe6c3F40CF9FbC7ADc8195a0cF893644574bcf4cb": { - "balance": "0x4563918244f40000" - }, - "0xe6e0BFdC956CE3c15C8C32062C453A6a7e05406d": { - "balance": "0x5150ae84a8cdf000000" - }, - "0xe703712500C487cd64076F673372155900509Be4": { - "balance": "0x4563918244f40000" - }, - "0xe71C4f96A4fbf6Cd4B321DeBaceEB119310273f3": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe72861f9Ef9D1b336347b8f5B2e239D15d0c4b2C": { - "balance": "0x6b9e6fb66226970000" - }, - "0xe75CA0Bb840EbB021B61Abb4108575B965936AF1": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe75F2EC993d09151FCe71594f6ebab944bcF7F8d": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe76854b4c5F140E0eb2EEFd51dCF457C68b0A40F": { - "balance": "0xecca2d59581a40000" - }, - "0xe799E3DEB8A31fCDe4E47876751FA8CA6201F504": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe7f2eD220510e1753eECc6F2054feDFCd427ec8F": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe806E9e7F8933096bbc05C5AC6E3965bf403dB1B": { - "balance": "0x3f514193abb840000" - }, - "0xe80Bd7361d0B2885d3Fe12Eb5bd6312cE77220dF": { - "balance": "0x4563918244f40000" - }, - "0xe81a55165f2e30B2Df457016bf8E3C0105d9f5A1": { - "balance": "0x1f2e80e875b4b0000" - }, - "0xe8343041F65E91E17a2b6C7F3F75dFfe5216463e": { - "balance": "0x55ef523dac9a570000" - }, - "0xe851C0633EFEE77e5BbDAD3f5F7De41831448CED": { - "balance": "0x3635c9adc5dea00000" - }, - "0xe85e79bB28F2E17D0918eF744fAf78F20ff2F10c": { - "balance": "0x3f514193abb840000" - }, - "0xe86844DCBc4D9020c71F31306CbE7112D74FF330": { - "balance": "0x8ac7230489e80000" - }, - "0xe86D0397Cc095FAD3D0c0f30f491c65F6eCB7754": { - "balance": "0x3f514193abb840000" - }, - "0xe885b4D4392b2979D96A055201F110C2503eae54": { - "balance": "0x1c375af17c4b5c0000" - }, - "0xe8FdEF3407325DA2EbB04BD76bbc226776b61001": { - "balance": "0x4563918244f40000" - }, - "0xe8a17811A0c54eEe0A13F13bD71E868A1fb2558F": { - "balance": "0x3f514193abb840000" - }, - "0xe8c38ad66319314d406c4275eE4b362Dc599D6DB": { - "balance": "0x59723a7bd8c0bf20000" - }, - "0xe90488dcFD0bC00704585F9D4634Bb7E988dD359": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe90629ed4731a498FcDf801161497Fa64BE50bf4": { - "balance": "0x967c8fb296e740000" - }, - "0xe9150D6EecD7f26BEc818B8A4530433dE122a8D0": { - "balance": "0x25cfc1ca7c92f600000" - }, - "0xe9298D5AE39264257a08d815B608DcF4AcA173e1": { - "balance": "0xc915c9fee049d490000" - }, - "0xe9351998D9b0a78bE8Af5910b956BeaFB3Dac46D": { - "balance": "0x3f514193abb840000" - }, - "0xe95AdF63D5348B826466E105249392CECe807c73": { - "balance": "0x167f179d5a49acb000" - }, - "0xe9693609e983F4B82a7971cDFd21A9a505b4d8f5": { - "balance": "0x4563918244f40000" - }, - "0xe9A6837CA59b8316Bd6a679710e24Ae010dc0E27": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe9C1369D2de6212A594986AE9a545E4A09E2D9af": { - "balance": "0x1c1a1a642c60000" - }, - "0xe9E3180CD61cb831bC378fe08b1f4EB57B4b4dA4": { - "balance": "0x64f7613a0d550a00000" - }, - "0xe9EcCA37715818971eC479c80087102e406c2B4F": { - "balance": "0xad78ebc5ac6200000" - }, - "0xe9F18085152e7A4D3Df1219AD258D77770e8efB4": { - "balance": "0x42118dcbc92753000000" - }, - "0xe9a4290B2D9815531ceff03d15d07563f4834396": { - "balance": "0xc3663566a580000" - }, - "0xe9aF0282bc9656dec205272C3716a1eeE5a5C203": { - "balance": "0x4563918244f40000" - }, - "0xe9bF870aac02503ee9b04E536c106236f696C68C": { - "balance": "0x3f514193abb840000" - }, - "0xe9cD55C9d479f6B1a92b28B0b16027a6883f977d": { - "balance": "0x4563918244f40000" - }, - "0xe9f0eAd3Ec5597da05E5e338466b3665E7D6E235": { - "balance": "0xad78ebc5ac6200000" - }, - "0xeA291c4d133200aBaF87E1243a83bFFFE75EeEea": { - "balance": "0x967c8fb296e740000" - }, - "0xeB19E0AD4a13F120c3a2346a5A3a3d2Fd6Dbac88": { - "balance": "0x3fa78f03d8f135e00000" - }, - "0xeB6749338Bf7D2fa246c44cc2684596bB971d6eF": { - "balance": "0x967c8fb296e740000" - }, - "0xeBB1c5D2Ff7f26C9f0693E5880bf6Bce47A15a10": { - "balance": "0x4563918244f40000" - }, - "0xeBb2B2FcACd4f158333Ad21E24cA6c821e1056E5": { - "balance": "0xad78ebc5ac6200000" - }, - "0xeBd5DD1b808C5414b59527C5daa046d4C8eE311d": { - "balance": "0x3f514193abb840000" - }, - "0xeC0CcAa4f78657049800EF1E52331874e579a682": { - "balance": "0xad78ebc5ac6200000" - }, - "0xeC54EbD95e87D12b35c9872B59021bC9FD40038C": { - "balance": "0xe5815b947d8000" - }, - "0xeC82AF54AEf546b79c820Dd270680DD2EE9Bdd34": { - "balance": "0xad78ebc5ac6200000" - }, - "0xeD4Ce41e51805072D52562Df80dC8B75151681e4": { - "balance": "0xad78ebc5ac6200000" - }, - "0xeD657489d17CAD877D378329B3d382b6e0d2b93D": { - "balance": "0x4563918244f40000" - }, - "0xeDA45C057EA9fa3c09cF35845B2E28F6DA647A3A": { - "balance": "0x3f514193abb840000" - }, - "0xeDa316FC9A5cc5a1D1B3b48cdf89F3DB6cb6d2e6": { - "balance": "0x12350c969193fea10000" - }, - "0xeE159e89C4CeE7832d58FCE8FD64c2a262Bf11fB": { - "balance": "0x60c6e0fa0760770000" - }, - "0xeE7a944f1BF2fa018b0eAD224dD3F354E8008FD5": { - "balance": "0x3f514193abb840000" - }, - "0xeECdE3B84AE260FA8EbFA37cD9784E6E98be11EF": { - "balance": "0xad78ebc5ac6200000" - }, - "0xeF98c29119B05E1681d97143eebE18e30aCA1285": { - "balance": "0xde0b6b3a7640000" - }, - "0xeF9d710a8B3a4C99C3974a52C0377dA6389ec270": { - "balance": "0x15af1d78b58c400000" - }, - "0xeFAA9E5A331ad704AE0a372F440e9F9c1344d394": { - "balance": "0x470de4df8200000" - }, - "0xea38Fc4e5882B2C889324Bba1Be085E73010370b": { - "balance": "0x3f514193abb840000" - }, - "0xea4227d496A34d3D2991e2A1d44F8DbAcC8e68D0": { - "balance": "0xad78ebc5ac6200000" - }, - "0xea4B3089989572900640578Cc8850C58432383f8": { - "balance": "0x3f514193abb840000" - }, - "0xea547F0f41a67D10CF02d5459A197764b67a454e": { - "balance": "0x4563918244f40000" - }, - "0xea8331Da1c3de2b72f185BAB7438484Afa2a7526": { - "balance": "0x515093df72fa1f40000" - }, - "0xeabafBDE22b4ECD57D903D1902a6955Af8D98c13": { - "balance": "0x4563918244f40000" - }, - "0xeac11A98AC20562C92256e604992717139D58e49": { - "balance": "0x3635c9adc5dea00000" - }, - "0xeac13011b19417E012978ee32A9CD3CAd6Da16f4": { - "balance": "0x3f514193abb840000" - }, - "0xeb5E3707e2C3F406603fA303f6eEDF05371c9621": { - "balance": "0x3f514193abb840000" - }, - "0xeb8E85857e277d79e0650ADe138E80b3cA516139": { - "balance": "0x4563918244f40000" - }, - "0xebD7fA6630718DD6154C06ca13D3E8Fe4b54a98B": { - "balance": "0x8ac7230489e80000" - }, - "0xebF35A07F38797f1820A1890384C669C1987E2aC": { - "balance": "0x4563918244f40000" - }, - "0xec97EFB3EB960A10d3dDCb8973a9387c8472f1D4": { - "balance": "0xad78ebc5ac6200000" - }, - "0xecae980D560C5ED3Fbd7cd30E478E6e35dbBCb2E": { - "balance": "0x4563918244f40000" - }, - "0xece31b9c927f21CCBca34818b29af52AD6820a59": { - "balance": "0x514fd0793d9379c0000" - }, - "0xed4Aa8154Bc56997dBBa1cDB09222A5d9c52dA09": { - "balance": "0x11a56567bf1d860500000" - }, - "0xed53036721B299A5D8d766A75FB9e4ecf90D4038": { - "balance": "0x10c3bfceb1b87950000" - }, - "0xedAA36F809e25d83cDf76cf8009864bf4a705F62": { - "balance": "0x5b40d3c0dca66c80000" - }, - "0xedD0BF79043b5A13d7E5caE8Bc2CC84b0ceDD833": { - "balance": "0x8ac7230489e80000" - }, - "0xee0A75b49966E650D8731aa88fF0536E2D1206C2": { - "balance": "0xfde5eb94e1bdaf600000" - }, - "0xee34056D8a9cA8C9B67F38dE39399eE3Ba9C20e0": { - "balance": "0x4563918244f40000" - }, - "0xee53c08F73Dc2068e4A3Be818C4Be004f48ef9fA": { - "balance": "0x967c8fb296e740000" - }, - "0xeeCffdA0E00bE7F47E1ed42459531A656557ea05": { - "balance": "0x3f514193abb840000" - }, - "0xeeD4553f2839B6Cea10d4030D728d1A56cA4084a": { - "balance": "0x55f85642fae10b4000" - }, - "0xef17ec299AED97b580806234eFeE5CE4e5304A97": { - "balance": "0xa2a07efde66169c0000" - }, - "0xef299F4Fca56f52d6CE5D2a1c8182614560460c9": { - "balance": "0x4563918244f40000" - }, - "0xef3e1EAA9E375B56E9C4B9e557ba386DBeD034F4": { - "balance": "0x4563918244f40000" - }, - "0xef54C6Ccf13092Bb39CAf3829EE5667fD60D813c": { - "balance": "0x4563918244f40000" - }, - "0xef7B2d846c5699C2b914671C0990e09e3eFC63D6": { - "balance": "0x8ac7230489e80000" - }, - "0xef845e3A5Da60e87283Bae86FD9bDAA107052bFa": { - "balance": "0x54b40b1f852bda00000" - }, - "0xf000E00C125d7Eac0a7310cf7a1830Bc71C37aa3": { - "balance": "0x4563918244f40000" - }, - "0xf010Bf672Eefa41dAB519725e2A5f293B697C7fe": { - "balance": "0x3635c9adc5dea00000" - }, - "0xf0188459657EE30Ea49650e38a93b9150Cd0EA7d": { - "balance": "0x4563918244f40000" - }, - "0xf01E90D755514dAc3D217cEA046412d961a51992": { - "balance": "0x4563918244f40000" - }, - "0xf0280aA09232e1C409F9029852213e33BaADc20c": { - "balance": "0x4563918244f40000" - }, - "0xf02D458Eb58F7bfc05065faB3a20a1b7B2d48B8C": { - "balance": "0x3f514193abb840000" - }, - "0xf02cd579E8Fc7184D855C82D59826B1c224d6B4e": { - "balance": "0x4563918244f40000" - }, - "0xf033480e86e4b02F032e5387Df44d985b15e6065": { - "balance": "0x1158e460913d00000" - }, - "0xf05CF0B63783E3B2bE27E48Ae8195E2edd718857": { - "balance": "0x4563918244f40000" - }, - "0xf062B43aC2c03066194C2f4bDAF340d98CD1cfd2": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf070f4126090579f4e86346852441202618Ef8C0": { - "balance": "0x4563918244f40000" - }, - "0xf0Af4456662feA3e0d8004182830FA74a6AE7dB1": { - "balance": "0x967c8fb296e740000" - }, - "0xf0FEEE1997fFc6BB2b13F560c5653Aa55B010780": { - "balance": "0x4563918244f40000" - }, - "0xf0cD3287963A0266e4547587a05C05c360E31B90": { - "balance": "0x4563918244f40000" - }, - "0xf0e843801a6f25FEb1feDaDE4aB1c36459435b86": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf147B5026ad1A886D6185D11081caB369C4daDE6": { - "balance": "0x1158e460913d00000" - }, - "0xf1581663FC43b02E6125519cF643378F8077168C": { - "balance": "0x4563918244f40000" - }, - "0xf16CCf54721306B0F23C4D89f208AE71A5cfD8B4": { - "balance": "0x4563918244f40000" - }, - "0xf16D21904Cc8392B96791Eb6F879C79063eA98AD": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf16c60404709791d131e69f40Bc7a6B924e3239C": { - "balance": "0x4563918244f40000" - }, - "0xf1A6C4A97C80Ada51882FE8CF0Bc72214b321FaD": { - "balance": "0x4563918244f40000" - }, - "0xf1B1360B9AaAb0039744a68269EaC852F0042b73": { - "balance": "0x3f514193abb840000" - }, - "0xf1E772E14586228F4ED155438060834e86e6E8EB": { - "balance": "0x3f514193abb840000" - }, - "0xf1e67F5Bf7E112A05525F564E78837B0760F5f24": { - "balance": "0x55ef523dac9a570000" - }, - "0xf1f9914B7D2b04280Ef247d4bB13A51d89798F7A": { - "balance": "0x3f514193abb840000" - }, - "0xf20144362E4c4CCc55aB5046222fBa04A44ef190": { - "balance": "0x4563918244f40000" - }, - "0xf23EA396D1Ee6eCB82677CDF820e4e3C23350a67": { - "balance": "0x79f8ddcf2c772ee0000" - }, - "0xf2897A5E53C1bef0D309412B129AD14157fCe42a": { - "balance": "0x4563918244f40000" - }, - "0xf2AEEde281d64941fc96D65c2C194F0a98d7e34b": { - "balance": "0x8ac7230489e80000" - }, - "0xf2B09F39f03d046b51Ec44A8b342Ea7Ea27B54Df": { - "balance": "0x55ef523dac9a570000" - }, - "0xf2aA3b6C8c37C9224Cb11C0b03AAe0fcDc5Fc461": { - "balance": "0x4563918244f40000" - }, - "0xf2f042ed1fAA366EcCe8CE3b1C481497785e9CAA": { - "balance": "0x1a055690d9db80000" - }, - "0xf3483930D15d130bd870B9b5DA0f7e26f2103E9a": { - "balance": "0x3f514193abb840000" - }, - "0xf354b571E098CAe0A1bc5f800DC231CE23C8A17D": { - "balance": "0x4563918244f40000" - }, - "0xf35c0ce971A4a80D363C640758eB1BE40f30e3c1": { - "balance": "0x4563918244f40000" - }, - "0xf36698Ba31571d596014bAf3309207DD096eB8E9": { - "balance": "0x89081ec78b1630e80000" - }, - "0xf378aE8639d7E6101230a094154AC14DA301A193": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf390c2500a44Ed5f859B724c08c9046e79baF0D2": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf3a06216fC91065D54c14238Bf335621c2bB7FB6": { - "balance": "0x4563918244f40000" - }, - "0xf3a15825704D351f4E118774B45B5F238616C154": { - "balance": "0x1b855c65f86033ed0000" - }, - "0xf3efe116EabCf6Eb394D83eAc76959Ad19b8eC01": { - "balance": "0x967c8fb296e740000" - }, - "0xf40feF636739C519B6dfdFaB73c0C6C477909669": { - "balance": "0x3f514193abb840000" - }, - "0xf411C307cC8736627ae6718c4F5f999BE70713D7": { - "balance": "0x4563918244f40000" - }, - "0xf41d7fAA981fAb250ff34BeaB1663a0B7A01190e": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf48453A50bAaab75B8d0EDC0Fb15E9EB78eaf9ff": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf4C924f185626A7C4253cE42108C15886db26F72": { - "balance": "0x3635c9adc5dea00000" - }, - "0xf4DEFdE5deF9426551a13CdE13C41db86ae200D2": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf54B5908D3848dbA2855ae394e9AFB24d34e4c96": { - "balance": "0x1158e460913d00000" - }, - "0xf56b53d15114DFdD74145e1Dc4a84539680490FB": { - "balance": "0x79f8ddcf2c772ee0000" - }, - "0xf592715F6E65c38B207D6cc6414eB061e0F097a2": { - "balance": "0x4563918244f40000" - }, - "0xf5e45B0266D2CfdC50B951665152F0f4f92CfC2c": { - "balance": "0x4563918244f40000" - }, - "0xf5f521AB6D90AC4DDCC15b09c1A0Cb9fc45B8eB5": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf6062f716886eD3Dd8A36508C7bdb937B1f7Ca15": { - "balance": "0x8ac7230489e80000" - }, - "0xf6428B1da7637130e3b67de0eeA2EF6F74BCe74b": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf65bd56D081F2973758955836E6c3C5fdcBeF4b2": { - "balance": "0xd69204d4747904800000" - }, - "0xf6B919e021d706E1cadb2dce79699e74dBF018F0": { - "balance": "0x8ac7230489e80000" - }, - "0xf6C5D4Ff26955937c667eB6b3B2afFda7E769b90": { - "balance": "0x3f514193abb840000" - }, - "0xf6Da55EFE4CEBF901a0c523482428C0c8Fd0aAC4": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf6Da6E6d30275F407f98Ebf6Fbd323C8836820C8": { - "balance": "0x3f514193abb840000" - }, - "0xf6beb0983416228d0db9E748FE6507349Ff785A5": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf71e6006a4fb3cB34a1bDAc6865c233a6ae6E203": { - "balance": "0xecca2d59581a40000" - }, - "0xf768067AeF62B92125B8C611BF2067fcd6299973": { - "balance": "0x513f55a0483cb300000" - }, - "0xf7793d27A1b76CDF14Db7C83e82C772cF7C92910": { - "balance": "0x10c2d057087f5fc6c00" - }, - "0xf78B0c4314b3BF39458A4E2c3e11a68EfCDAa853": { - "balance": "0x4563918244f40000" - }, - "0xf7a4942E8463A075Be3Bd2F2a0421D1a2AC224cd": { - "balance": "0xc3663566a580000" - }, - "0xf829Bb96D62e0027D0be11C543C60c4c894D7c3A": { - "balance": "0x4563918244f40000" - }, - "0xf843ca594C91581950df94217fe0124b85A74D61": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf862A7e2E4fdaaD42959bAD4d291b361d568a958": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf8754a0705D7a1C7308Ce88a52340335D0C3b63B": { - "balance": "0x1b123864b2a6b180000" - }, - "0xf880185f69D8FFF78AebDB5CA594d8740dBB4a81": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf88eB5Bd3c2A24c8746Afc3a89Ab0fa114a71549": { - "balance": "0xc9a2557fee92fe44cc000" - }, - "0xf895Cf0A2cA8f53946A6242A2F532134407a22B6": { - "balance": "0x4563918244f40000" - }, - "0xf8Bf993E41d3b8C8aA543c18A99dFc874031D7cD": { - "balance": "0x4563918244f40000" - }, - "0xf8c7b0DE219dBcE614c1bb5524c130bca8E25062": { - "balance": "0x4563918244f40000" - }, - "0xf9090Fd7D6045D7C686bfB026a1d4D6beC4bE69c": { - "balance": "0x62417d8af6a38200000" - }, - "0xf9099c872105FAC030ef02BcDA9F677390c7678a": { - "balance": "0x3f514193abb840000" - }, - "0xf90A29CE7a9322361CC6Dd260022D38E7597eA2c": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf90adAacCF067793AE66924F5F73d009a31d0a09": { - "balance": "0x9184e72a0000" - }, - "0xf91D297110867Ebf8E27021EA4e060eAc9D36491": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf963C817d713df2b4b30924AE823EaA4d6c63170": { - "balance": "0xad78ebc5ac6200000" - }, - "0xf9C216586344728D45f58e27Cc2D2E2fF38d63a0": { - "balance": "0x1158e460913d00000" - }, - "0xf9FFBa4A175368B51b27F31E8B68cdAF956a60a3": { - "balance": "0x4563918244f40000" - }, - "0xfA10596ceDAf024eE9d93587D700cA9d36AdD360": { - "balance": "0x51516498434aad20000" - }, - "0xfA45C6991a2C3d74ada3A279E21135133CE3Da8A": { - "balance": "0x18b45ac471f6220700000" - }, - "0xfA5829d1b7a88f588eF99022f65E4Ee5cD29aAF4": { - "balance": "0x4563918244f40000" - }, - "0xfA620BAd0789AE9D6F12B89663cC058B49BD2e7b": { - "balance": "0xad78ebc5ac6200000" - }, - "0xfB06Da68E326210b9548a679316657e105ee947d": { - "balance": "0x3f514193abb840000" - }, - "0xfBD13d59D1a0beCFECd9c6a382276fFb4cBf6E6D": { - "balance": "0x960b96f18bc71f1800" - }, - "0xfC2024cf0FA95456DE3342bC245c684bd1546393": { - "balance": "0xa2a07efde66169c0000" - }, - "0xfD6C024e05d4A4b1b65Dd7676392D4D3Ce2Be527": { - "balance": "0x3f514193abb840000" - }, - "0xfD94A3604a96061eFdf74C3fAE9c03faD2eD330C": { - "balance": "0x1158e460913d00000" - }, - "0xfE1F43f05af5E8c9b3FE70Fe59D9c9B112584eFc": { - "balance": "0xad78ebc5ac6200000" - }, - "0xfE43fB0BfA84F659b5Bd695b1A6B5d8828aec047": { - "balance": "0x4563918244f40000" - }, - "0xfEDE72b810C64a9110bd760bbB3C2E148e703d1f": { - "balance": "0x4563918244f40000" - }, - "0xfF16e23dabC16C933e46c49a669d33F62f2377c6": { - "balance": "0x1e5b8fa8fe2ac0000" - }, - "0xfF4f310b4e5D340A715Af5e50F62BB05f85f507A": { - "balance": "0x8ac7230489e80000" - }, - "0xfa0A5f9527126037AEDbFeb726E4333Baee441B9": { - "balance": "0x1158e460913d00000" - }, - "0xfa3fC640518C0299Cc9FB4407947D32CC6288E1B": { - "balance": "0xa688906bd8b0000" - }, - "0xfa8F2cbdA067BcF4e0dcEfD38f9259d07Fe29E03": { - "balance": "0x9935f581f050000" - }, - "0xfaaba0EEE22ab16Bc40AAfE5ce64dd37b42f87E8": { - "balance": "0x3f514193abb840000" - }, - "0xfac61B21fAa08471B33ecFF0e6D963a8c3ad893a": { - "balance": "0x55b840812dae6d00000" - }, - "0xfb5eF7FDf0f5f631645EE95Ce47953a629Dfd046": { - "balance": "0xad78ebc5ac6200000" - }, - "0xfb7B8654424F71562edE5C3eBe779749D7613eb5": { - "balance": "0x878678326eac9000000" - }, - "0xfbA8763d939f30AF181657c8722B57E9B5a58c50": { - "balance": "0x1a055690d9db80000" - }, - "0xfbAfC2fb87fa852C2E976367709C38b4e4FaeDdF": { - "balance": "0x4563918244f40000" - }, - "0xfc3EFB9f6124D68b33dE4eccE3f3057b564638f8": { - "balance": "0x9ed194db19b238c00000" - }, - "0xfc41877fF307bA4f9D499C7847081dbF2698fc89": { - "balance": "0x60c6e0fa0760770000" - }, - "0xfcd571EB4A320Ed0b823eEb9fd4ec3e0bEa37C93": { - "balance": "0x8ac7230489e80000" - }, - "0xfcf8ceeefdbd3929af23F96434b81755b449c69F": { - "balance": "0x3f514193abb840000" - }, - "0xfd13f98812BB3eB2FAe88e822264755413Ba791f": { - "balance": "0x4563918244f40000" - }, - "0xfd1b54e5924BEa9BE43d11492a2559E3B6a152B6": { - "balance": "0x4563918244f40000" - }, - "0xfd5507F3973f2Ecf2c9b57675d1ed001d57e0ADa": { - "balance": "0xad78ebc5ac6200000" - }, - "0xfd582F45a4698d5b8fe919da8166EaA088C6A04d": { - "balance": "0x4563918244f40000" - }, - "0xfd814CfFc7D7C7648Ba6fBE7485891b199E79EB2": { - "balance": "0x4563918244f40000" - }, - "0xfded74A8B2e2050d4a4b1C51F9D9555049ddc0BA": { - "balance": "0x4563918244f40000" - }, - "0xfdfCd965baF5d80B38EE35F8ccF6E80D7593296A": { - "balance": "0x3f514193abb840000" - }, - "0xfeDf7A1c8358C7FD6209e2E177E54cb413d6F5A1": { - "balance": "0xad78ebc5ac6200000" - }, - "0xfeE8000669860437cA433e062946188Ab0099AF5": { - "balance": "0x7517dd94039e06e0000" - }, - "0xfedf7772A8F1A17C5714FC15aCbdA5e47DF9EaDE": { - "balance": "0x4563918244f40000" - }, - "0xff26CCF9058B9Bd8fAcFB6a8876864Fec193285d": { - "balance": "0x11ddfa58a6173ffc00000" - }, - "0xff3a37698a095B3705bb9A528929C0194834Bd6B": { - "balance": "0x4563918244f40000" - }, - "0xff7C9dD973894ca3724714e96B3Fe1B2Eec72E17": { - "balance": "0xecca2d59581a40000" - }, - "0xffB58D45bD998A2fD3c1383D9dE80cC2A95eE552": { - "balance": "0x3f514193abb840000" - } - }, - "coinbase": "0x880a74d68b09418136c4442D1eA0f5cC72E5325A", - "config": { - "byzantiumBlock": 0, - "chainId": 11, - "eip155Block": 0, - "eip158Block": 0, - "homesteadBlock": 0 - }, - "difficulty": "0x1", - "extraData": "0x4f757220766973696f6e20697320746f206372656174652061206672656520776f726c64207468726f7567682073656c662d736f7665726569676e206964656e746974792e202f205768656e204920646973636f7665722077686f204920616d2c2049276c6c20626520667265652e202d2d2052616c706820456c6c69736f6e2c20496e76697369626c65204d616e0a30783165633236316462636533636530303232366237393765333030626135363836336666363563313338323633623938313435646364393762346561336134633761386432303431346537613031383566333263633730386430633163393935613837376536633738373666353061626331336637373430623961633330376266", - "gasLimit": "0x10000000", - "minerNodeId": "0x0", - "minerNodeSig": "0x0", - "mixhash": "0x0000000000000000000000000000000000000000000000000000000000000000", - "nonce": "0x0000000000000042", - "parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000", - "rewards": "0x", - "timestamp": "0x00" -} \ No newline at end of file diff --git a/wemix/scripts/testnet-config.json b/wemix/scripts/testnet-config.json deleted file mode 100644 index b82bc36d4655..000000000000 --- a/wemix/scripts/testnet-config.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "extraData": "Our vision is to create a free world through self-sovereign identity. / When I discover who I am, I'll be free. -- Ralph Ellison, Invisible Man", - "pool": "0xa07ec413ab0a6b15fdae71ec5f73eeb0a0fd94d6", - "maintenance": "0x4346166711a64edba169005f2ccee4cc18b73b2f", - "members": [ - { - "addr": "0x378360d4f25E6377f3da53F8cF09e9a258118528", - "stake": 500000000000000000000000000, - "name": "metatest1", - "id": "a6d0067ef52e41e30e6417ba3fa15fdfcc820c47f0932eac6a659cdf9306443bbcd900e74710fbedd3c1cb50b4ef940fc944130345e7786816c1a8a14cda5aba", - "ip": "54.250.11.170", - "port": 8589, - "bootnode": true - }, - { - "addr": "0x57C88A783406FcA315257Ea7bEE021bc96225394", - "stake": 500000000000000000000000000, - "name": "metatest2", - "id": "dc9c30053d98e55fe61bb2ef37d2f1be340bd295aa413749d0d6c76618050a358e2c737a904b2a472e6988322cffaebc8598fa59a9e19db99f1944ce1ebbbf89", - "ip": "52.68.113.68", - "port": 8589 - }, - { - "addr": "0x0A181237Dc34Dd0806E37381F4Cf211148b63E07", - "stake": 500000000000000000000000000, - "name": "metatest3", - "id": "ce46b336757daf253ed7a89efa0f83af06cc37e01c14bc156e46557087a184567a67d20ef40b00f06c28953611b9b271c303039341f700dba5d3f5fd63f66d27", - "ip": "52.68.113.68", - "port": 8589 - } - ], - "accounts": [ - { - "addr": "0x378360d4f25E6377f3da53F8cF09e9a258118528", - "balance": 500000000000000000000000000 - }, - { - "addr": "0x57C88A783406FcA315257Ea7bEE021bc96225394", - "balance": 500000000000000000000000000 - }, - { - "addr": "0x0A181237Dc34Dd0806E37381F4Cf211148b63E07", - "balance": 500000000000000000000000000 - }, - { - "addr": "0xa07eC413aB0A6B15FDAE71eC5F73Eeb0A0Fd94D6", - "balance": 250000000000000000000000000 - }, - { - "addr": "0x4346166711a64edba169005f2ccee4cc18b73b2f", - "balance": 250000000000000000000000000 - } - ] -} diff --git a/wemix/scripts/testnet-genesis.json b/wemix/scripts/testnet-genesis.json deleted file mode 100644 index ad3e857a396a..000000000000 --- a/wemix/scripts/testnet-genesis.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "alloc": { - "0x0A181237Dc34Dd0806E37381F4Cf211148b63E07": { - "balance": "0x19d971e4fe8401e74000000" - }, - "0x378360d4f25E6377f3da53F8cF09e9a258118528": { - "balance": "0x19d971e4fe8401e74000000" - }, - "0x4346166711A64eDBa169005f2cCee4Cc18b73B2F": { - "balance": "0xcecb8f27f4200f3a000000" - }, - "0x57C88A783406FcA315257Ea7bEE021bc96225394": { - "balance": "0x19d971e4fe8401e74000000" - }, - "0xa07eC413aB0A6B15FDAE71eC5F73Eeb0A0Fd94D6": { - "balance": "0xcecb8f27f4200f3a000000" - } - }, - "coinbase": "0x378360d4f25E6377f3da53F8cF09e9a258118528", - "config": { - "byzantiumBlock": 0, - "chainId": 11, - "eip155Block": 0, - "eip158Block": 0, - "homesteadBlock": 0 - }, - "difficulty": "0x1", - "extraData": "0x4f757220766973696f6e20697320746f206372656174652061206672656520776f726c64207468726f7567682073656c662d736f7665726569676e206964656e746974792e202f205768656e204920646973636f7665722077686f204920616d2c2049276c6c20626520667265652e202d2d2052616c706820456c6c69736f6e2c20496e76697369626c65204d616e0a30786136643030363765663532653431653330653634313762613366613135666466636338323063343766303933326561633661363539636466393330363434336262636439303065373437313066626564643363316362353062346566393430666339343431333033343565373738363831366331613861313463646135616261", - "gasLimit": "0x10000000", - "minerNodeId": "0x0", - "minerNodeSig": "0x0", - "mixhash": "0x0000000000000000000000000000000000000000000000000000000000000000", - "nonce": "0x0000000000000042", - "parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000", - "rewards": "0x", - "timestamp": "0x00" -} \ No newline at end of file From feb792674f9904d6cc6400810cdc3580a616aa44 Mon Sep 17 00:00:00 2001 From: Uh Sado Date: Tue, 9 May 2023 06:19:03 +0000 Subject: [PATCH 24/25] params: Gwemix v0.10.3 --- params/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/params/version.go b/params/version.go index 62d61e20b10d..a05c2eb11405 100644 --- a/params/version.go +++ b/params/version.go @@ -23,7 +23,7 @@ import ( const ( VersionMajor = 0 // Major version component of the current release VersionMinor = 10 // Minor version component of the current release - VersionPatch = 2 // Patch version component of the current release + VersionPatch = 3 // Patch version component of the current release VersionMeta = "stable" // Version metadata to append to the version string ) From 2ad1184c407f15bbe5bd7815d75f52f60daa8a8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=92=E1=85=A1=E1=86=AB=E1=84=8B=E1=85=AF=E1=86=AB?= =?UTF-8?q?=E1=84=8C=E1=85=AE=E1=86=AB?= Date: Tue, 9 May 2023 16:14:06 +0900 Subject: [PATCH 25/25] .github/workflows,FEEDELEGATION.md: Deleted ci.yml and fixed typos --- .github/workflows/ci.yml | 58 ---------------------------------------- FEEDELEGATION.md | 2 +- 2 files changed, 1 insertion(+), 59 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 9c7375cc86e5..000000000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,58 +0,0 @@ -name: feat-vrf-ci - -on: - workflow_dispatch: - -jobs: - build_test: - runs-on: ubuntu-20.04 - steps: - - uses: actions/checkout@v3 - with: - ref: ${{ github.ref }} - - - name: Set up Go - uses: actions/setup-go@v3 - with: - go-version: 1.19 - - - name: Build Go-WEMIX - run: make gwemix.tar.gz - - name: Check Build - run: ls -al build/gwemix.tar.gz - - lint_test: - strategy: - fail-fast: false - matrix: - version: [1.17, 1.18, 1.19] - runs-on: ubuntu-20.04 - steps: - - uses: actions/checkout@v3 - with: - ref: ${{ github.ref }} - - - name: Set up Go - uses: actions/setup-go@v3 - with: - go-version: ${{ matrix.version }} - - - name: Check Lint - run: make lint - - unit_test: - runs-on: ubuntu-20.04 - steps: - - uses: actions/checkout@v3 - with: - ref: ${{ github.ref }} - - - name: Set up Go - uses: actions/setup-go@v3 - with: - go-version: 1.19 - - - name: Check golang Test Cases - run: | - unset ANDROID_HOME - make test-short diff --git a/FEEDELEGATION.md b/FEEDELEGATION.md index 88a61ec0f262..012c7a787b2f 100644 --- a/FEEDELEGATION.md +++ b/FEEDELEGATION.md @@ -194,7 +194,7 @@ func (tx *FeeDelegateDynamicFeeTx) setSignatureValues(chainID, v, r, s *big.Int) } ``` -### 7.Add Fee Delegation Signier +### 7.Add Fee Delegation Signer * Include core/types/transaction_signing.go