More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 423 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Confirm Transact... | 21844015 | 2 days ago | IN | 0 ETH | 0.00085951 | ||||
Submit Transacti... | 21844012 | 2 days ago | IN | 0 ETH | 0.00114126 | ||||
Confirm Transact... | 21844009 | 2 days ago | IN | 0 ETH | 0.00071117 | ||||
Submit Transacti... | 21844006 | 2 days ago | IN | 0 ETH | 0.00114141 | ||||
Transfer | 21843427 | 3 days ago | IN | 11 ETH | 0.00011257 | ||||
Confirm Transact... | 21836578 | 3 days ago | IN | 0 ETH | 0.00090879 | ||||
Submit Transacti... | 21836573 | 3 days ago | IN | 0 ETH | 0.00152188 | ||||
Confirm Transact... | 21829878 | 4 days ago | IN | 0 ETH | 0.00094823 | ||||
Submit Transacti... | 21829868 | 4 days ago | IN | 0 ETH | 0.00152188 | ||||
Confirm Transact... | 21815337 | 6 days ago | IN | 0 ETH | 0.00094823 | ||||
Submit Transacti... | 21815334 | 6 days ago | IN | 0 ETH | 0.00152188 | ||||
Transfer | 21797532 | 9 days ago | IN | 1.38362348 ETH | 0.00011257 | ||||
Confirm Transact... | 21786729 | 10 days ago | IN | 0 ETH | 0.00094823 | ||||
Submit Transacti... | 21786727 | 10 days ago | IN | 0 ETH | 0.00152188 | ||||
Confirm Transact... | 21786725 | 10 days ago | IN | 0 ETH | 0.00095282 | ||||
Submit Transacti... | 21786723 | 10 days ago | IN | 0 ETH | 0.00152178 | ||||
Confirm Transact... | 21743415 | 17 days ago | IN | 0 ETH | 0.00106695 | ||||
Submit Transacti... | 21743413 | 17 days ago | IN | 0 ETH | 0.00171222 | ||||
Transfer | 21743232 | 17 days ago | IN | 10 ETH | 0.00013508 | ||||
Transfer | 21728904 | 19 days ago | IN | 19 ETH | 0.00011257 | ||||
Confirm Transact... | 21715247 | 20 days ago | IN | 0 ETH | 0.00118035 | ||||
Submit Transacti... | 21715242 | 20 days ago | IN | 0 ETH | 0.00190235 | ||||
Transfer | 21685810 | 25 days ago | IN | 10 ETH | 0.00015759 | ||||
Transfer | 21664772 | 27 days ago | IN | 40 ETH | 0.00076547 | ||||
Transfer | 21654272 | 29 days ago | IN | 1.9484499 ETH | 0.00036022 |
Latest 15 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21643285 | 30 days ago | 20 ETH | ||||
21562624 | 42 days ago | 280 ETH | ||||
21486984 | 52 days ago | 0.0333 ETH | ||||
21393051 | 65 days ago | 20 ETH | ||||
21342937 | 72 days ago | 50 ETH | ||||
21278545 | 81 days ago | 60 ETH | ||||
21192408 | 93 days ago | 60 ETH | ||||
21177923 | 95 days ago | 50 ETH | ||||
21170538 | 96 days ago | 120 ETH | ||||
20461736 | 195 days ago | 120 ETH | ||||
20265986 | 223 days ago | 0.01 ETH | ||||
20259516 | 224 days ago | 0.01 ETH | ||||
19917823 | 271 days ago | 0.011 ETH | ||||
18140198 | 521 days ago | 0.012 ETH | ||||
18131509 | 522 days ago | 0.017 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xcb9225bB...07C97Af2c The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
MultiSigWallet
Compiler Version
v0.5.8+commit.23d335f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-06 */ pragma solidity ^0.5.0; /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution. /// @author Stefan George - <[email protected]> contract MultiSigWallet { /* * Events */ event Confirmation(address indexed sender, uint indexed transactionId); event Revocation(address indexed sender, uint indexed transactionId); event Submission(uint indexed transactionId); event Execution(uint indexed transactionId); event ExecutionFailure(uint indexed transactionId); event Deposit(address indexed sender, uint value); event OwnerAddition(address indexed owner); event OwnerRemoval(address indexed owner); event RequirementChange(uint required); /* * Constants */ uint constant public MAX_OWNER_COUNT = 50; /* * Storage */ mapping (uint => Transaction) public transactions; mapping (uint => mapping (address => bool)) public confirmations; mapping (address => bool) public isOwner; address[] public owners; uint public required; uint public transactionCount; struct Transaction { address destination; uint value; bytes data; bool executed; } /* * Modifiers */ modifier onlyWallet() { require(msg.sender == address(this)); _; } modifier ownerDoesNotExist(address owner) { require(!isOwner[owner]); _; } modifier ownerExists(address owner) { require(isOwner[owner]); _; } modifier transactionExists(uint transactionId) { require(transactions[transactionId].destination != address(0)); _; } modifier confirmed(uint transactionId, address owner) { require(confirmations[transactionId][owner]); _; } modifier notConfirmed(uint transactionId, address owner) { require(!confirmations[transactionId][owner]); _; } modifier notExecuted(uint transactionId) { require(!transactions[transactionId].executed); _; } modifier notNull(address _address) { require(_address != address(0)); _; } modifier validRequirement(uint ownerCount, uint _required) { require(ownerCount <= MAX_OWNER_COUNT && _required <= ownerCount && _required != 0 && ownerCount != 0); _; } /// @dev Fallback function allows to deposit ether. function() external payable { if (msg.value > 0) emit Deposit(msg.sender, msg.value); } /* * Public functions */ /// @dev Contract constructor sets initial owners and required number of confirmations. /// @param _owners List of initial owners. /// @param _required Number of required confirmations. constructor (address[] memory _owners, uint _required) public validRequirement(_owners.length, _required) { for (uint i = 0; i < _owners.length; i++) { require(!isOwner[_owners[i]] && _owners[i] != address(0)); isOwner[_owners[i]] = true; } owners = _owners; required = _required; } /// @dev Allows to add a new owner. Transaction has to be sent by wallet. /// @param owner Address of new owner. function addOwner(address owner) public onlyWallet ownerDoesNotExist(owner) notNull(owner) validRequirement(owners.length + 1, required) { isOwner[owner] = true; owners.push(owner); emit OwnerAddition(owner); } /// @dev Allows to remove an owner. Transaction has to be sent by wallet. /// @param owner Address of owner. function removeOwner(address owner) public onlyWallet ownerExists(owner) { isOwner[owner] = false; for (uint i = 0; i < owners.length - 1; i++) if (owners[i] == owner) { owners[i] = owners[owners.length - 1]; break; } owners.length -= 1; if (required > owners.length) changeRequirement(owners.length); emit OwnerRemoval(owner); } /// @dev Allows to replace an owner with a new owner. Transaction has to be sent by wallet. /// @param owner Address of owner to be replaced. /// @param newOwner Address of new owner. function replaceOwner(address owner, address newOwner) public onlyWallet ownerExists(owner) ownerDoesNotExist(newOwner) { for (uint i = 0; i < owners.length; i++) if (owners[i] == owner) { owners[i] = newOwner; break; } isOwner[owner] = false; isOwner[newOwner] = true; emit OwnerRemoval(owner); emit OwnerAddition(newOwner); } /// @dev Allows to change the number of required confirmations. Transaction has to be sent by wallet. /// @param _required Number of required confirmations. function changeRequirement(uint _required) public onlyWallet validRequirement(owners.length, _required) { required = _required; emit RequirementChange(_required); } /// @dev Allows an owner to submit and confirm a transaction. /// @param destination Transaction target address. /// @param value Transaction ether value. /// @param data Transaction data payload. /// @return Returns transaction ID. function submitTransaction(address destination, uint value, bytes memory data) public returns (uint transactionId) { transactionId = addTransaction(destination, value, data); confirmTransaction(transactionId); } /// @dev Allows an owner to confirm a transaction. /// @param transactionId Transaction ID. function confirmTransaction(uint transactionId) public ownerExists(msg.sender) transactionExists(transactionId) notConfirmed(transactionId, msg.sender) { confirmations[transactionId][msg.sender] = true; emit Confirmation(msg.sender, transactionId); executeTransaction(transactionId); } /// @dev Allows an owner to revoke a confirmation for a transaction. /// @param transactionId Transaction ID. function revokeConfirmation(uint transactionId) public ownerExists(msg.sender) confirmed(transactionId, msg.sender) notExecuted(transactionId) { confirmations[transactionId][msg.sender] = false; emit Revocation(msg.sender, transactionId); } /// @dev Allows anyone to execute a confirmed transaction. /// @param transactionId Transaction ID. function executeTransaction(uint transactionId) public ownerExists(msg.sender) confirmed(transactionId, msg.sender) notExecuted(transactionId) { if (isConfirmed(transactionId)) { Transaction storage txn = transactions[transactionId]; txn.executed = true; if (external_call(txn.destination, txn.value, txn.data.length, txn.data)) emit Execution(transactionId); else { emit ExecutionFailure(transactionId); txn.executed = false; } } } // call has been separated into its own function in order to take advantage // of the Solidity's code generator to produce a loop that copies tx.data into memory. function external_call(address destination, uint value, uint dataLength, bytes memory data) internal returns (bool) { bool result; assembly { let x := mload(0x40) // "Allocate" memory for output (0x40 is where "free memory" pointer is stored by convention) let d := add(data, 32) // First 32 bytes are the padded length of data, so exclude that result := call( sub(gas, 34710), // 34710 is the value that solidity is currently emitting // It includes callGas (700) + callVeryLow (3, to pay for SUB) + callValueTransferGas (9000) + // callNewAccountGas (25000, in case the destination address does not exist and needs creating) destination, value, d, dataLength, // Size of the input (in bytes) - this is what fixes the padding problem x, 0 // Output is ignored, therefore the output size is zero ) } return result; } /// @dev Returns the confirmation status of a transaction. /// @param transactionId Transaction ID. /// @return Confirmation status. function isConfirmed(uint transactionId) public view returns (bool) { uint count = 0; for (uint i = 0; i < owners.length; i++) { if (confirmations[transactionId][owners[i]]) count += 1; if (count == required) return true; } } /* * Internal functions */ /// @dev Adds a new transaction to the transaction mapping, if transaction does not exist yet. /// @param destination Transaction target address. /// @param value Transaction ether value. /// @param data Transaction data payload. /// @return Returns transaction ID. function addTransaction(address destination, uint value, bytes memory data) internal notNull(destination) returns (uint transactionId) { transactionId = transactionCount; transactions[transactionId] = Transaction({ destination: destination, value: value, data: data, executed: false }); transactionCount += 1; emit Submission(transactionId); } /* * Web3 call functions */ /// @dev Returns number of confirmations of a transaction. /// @param transactionId Transaction ID. /// @return Number of confirmations. function getConfirmationCount(uint transactionId) public view returns (uint count) { for (uint i = 0; i < owners.length; i++) if (confirmations[transactionId][owners[i]]) count += 1; } /// @dev Returns total number of transactions after filers are applied. /// @param pending Include pending transactions. /// @param executed Include executed transactions. /// @return Total number of transactions after filters are applied. function getTransactionCount(bool pending, bool executed) public view returns (uint count) { for (uint i = 0; i < transactionCount; i++) if ( pending && !transactions[i].executed || executed && transactions[i].executed) count += 1; } /// @dev Returns list of owners. /// @return List of owner addresses. function getOwners() public view returns (address[] memory) { return owners; } /// @dev Returns array with owner addresses, which confirmed transaction. /// @param transactionId Transaction ID. /// @return Returns array of owner addresses. function getConfirmations(uint transactionId) public view returns (address[] memory _confirmations) { address[] memory confirmationsTemp = new address[](owners.length); uint count = 0; uint i; for (i = 0; i < owners.length; i++) if (confirmations[transactionId][owners[i]]) { confirmationsTemp[count] = owners[i]; count += 1; } _confirmations = new address[](count); for (i = 0; i < count; i++) _confirmations[i] = confirmationsTemp[i]; } /// @dev Returns list of transaction IDs in defined range. /// @param from Index start position of transaction array. /// @param to Index end position of transaction array. /// @param pending Include pending transactions. /// @param executed Include executed transactions. /// @return Returns array of transaction IDs. function getTransactionIds(uint from, uint to, bool pending, bool executed) public view returns (uint[] memory _transactionIds) { uint[] memory transactionIdsTemp = new uint[](transactionCount); uint count = 0; uint i; for (i = 0; i < transactionCount; i++) if ( pending && !transactions[i].executed || executed && transactions[i].executed) { transactionIdsTemp[count] = i; count += 1; } _transactionIds = new uint[](to - from); for (i = from; i < to; i++) _transactionIds[i - from] = transactionIdsTemp[i]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"owners","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"removeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"revokeConfirmation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"address"}],"name":"confirmations","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"pending","type":"bool"},{"name":"executed","type":"bool"}],"name":"getTransactionCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"addOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"isConfirmed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"getConfirmationCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"transactions","outputs":[{"name":"destination","type":"address"},{"name":"value","type":"uint256"},{"name":"data","type":"bytes"},{"name":"executed","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getOwners","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"from","type":"uint256"},{"name":"to","type":"uint256"},{"name":"pending","type":"bool"},{"name":"executed","type":"bool"}],"name":"getTransactionIds","outputs":[{"name":"_transactionIds","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"getConfirmations","outputs":[{"name":"_confirmations","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transactionCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_required","type":"uint256"}],"name":"changeRequirement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"confirmTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"destination","type":"address"},{"name":"value","type":"uint256"},{"name":"data","type":"bytes"}],"name":"submitTransaction","outputs":[{"name":"transactionId","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MAX_OWNER_COUNT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"required","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"},{"name":"newOwner","type":"address"}],"name":"replaceOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"executeTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_owners","type":"address[]"},{"name":"_required","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"Confirmation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"Revocation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"Submission","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"Execution","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"transactionId","type":"uint256"}],"name":"ExecutionFailure","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"sender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"OwnerAddition","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"OwnerRemoval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"required","type":"uint256"}],"name":"RequirementChange","type":"event"}]
Deployed Bytecode
0x60806040526004361061012a5760003560e01c8063a0e67e2b116100ab578063c01a8c841161006f578063c01a8c84146107c4578063c6427474146107ff578063d74f8edd14610905578063dc8452cd14610930578063e20056e61461095b578063ee22610b146109cc5761012a565b8063a0e67e2b146105b0578063a8abe69a1461061c578063b5dc40c3146106ce578063b77bf6001461075e578063ba51a6df146107895761012a565b806354741525116100f257806354741525146103675780637065cb48146103c4578063784547a7146104155780638b51d13f146104685780639ace38c2146104b75761012a565b8063025e7c2714610184578063173825d9146101ff57806320ea8d86146102505780632f54bf6e1461028b5780633411c81c146102f4575b6000341115610182573373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c346040518082815260200191505060405180910390a25b005b34801561019057600080fd5b506101bd600480360360208110156101a757600080fd5b8101908080359060200190929190505050610a07565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561020b57600080fd5b5061024e6004803603602081101561022257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a43565b005b34801561025c57600080fd5b506102896004803603602081101561027357600080fd5b8101908080359060200190929190505050610cd1565b005b34801561029757600080fd5b506102da600480360360208110156102ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e73565b604051808215151515815260200191505060405180910390f35b34801561030057600080fd5b5061034d6004803603604081101561031757600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e93565b604051808215151515815260200191505060405180910390f35b34801561037357600080fd5b506103ae6004803603604081101561038a57600080fd5b81019080803515159060200190929190803515159060200190929190505050610ec2565b6040518082815260200191505060405180910390f35b3480156103d057600080fd5b50610413600480360360208110156103e757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f54565b005b34801561042157600080fd5b5061044e6004803603602081101561043857600080fd5b8101908080359060200190929190505050611167565b604051808215151515815260200191505060405180910390f35b34801561047457600080fd5b506104a16004803603602081101561048b57600080fd5b810190808035906020019092919050505061124c565b6040518082815260200191505060405180910390f35b3480156104c357600080fd5b506104f0600480360360208110156104da57600080fd5b8101908080359060200190929190505050611315565b604051808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018060200183151515158152602001828103825284818151815260200191508051906020019080838360005b83811015610572578082015181840152602081019050610557565b50505050905090810190601f16801561059f5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390f35b3480156105bc57600080fd5b506105c561140a565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156106085780820151818401526020810190506105ed565b505050509050019250505060405180910390f35b34801561062857600080fd5b506106776004803603608081101561063f57600080fd5b810190808035906020019092919080359060200190929190803515159060200190929190803515159060200190929190505050611498565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156106ba57808201518184015260208101905061069f565b505050509050019250505060405180910390f35b3480156106da57600080fd5b50610707600480360360208110156106f157600080fd5b81019080803590602001909291905050506115fc565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561074a57808201518184015260208101905061072f565b505050509050019250505060405180910390f35b34801561076a57600080fd5b50610773611828565b6040518082815260200191505060405180910390f35b34801561079557600080fd5b506107c2600480360360208110156107ac57600080fd5b810190808035906020019092919050505061182e565b005b3480156107d057600080fd5b506107fd600480360360208110156107e757600080fd5b81019080803590602001909291905050506118e4565b005b34801561080b57600080fd5b506108ef6004803603606081101561082257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561086957600080fd5b82018360208201111561087b57600080fd5b8035906020019184600183028401116401000000008311171561089d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611ad1565b6040518082815260200191505060405180910390f35b34801561091157600080fd5b5061091a611af0565b6040518082815260200191505060405180910390f35b34801561093c57600080fd5b50610945611af5565b6040518082815260200191505060405180910390f35b34801561096757600080fd5b506109ca6004803603604081101561097e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611afb565b005b3480156109d857600080fd5b50610a05600480360360208110156109ef57600080fd5b8101908080359060200190929190505050611e05565b005b60038181548110610a1457fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a7b57600080fd5b80600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ad257600080fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060008090505b600160038054905003811015610c52578273ffffffffffffffffffffffffffffffffffffffff1660038281548110610b6457fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610c4557600360016003805490500381548110610bc057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660038281548110610bf857fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610c52565b8080600101915050610b30565b506001600381818054905003915081610c6b9190612233565b506003805490506004541115610c8a57610c8960038054905061182e565b5b8173ffffffffffffffffffffffffffffffffffffffff167f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b9060405160405180910390a25050565b33600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d2857600080fd5b81336001600083815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d9157600080fd5b8360008082815260200190815260200160002060030160009054906101000a900460ff1615610dbf57600080fd5b60006001600087815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550843373ffffffffffffffffffffffffffffffffffffffff167ff6a317157440607f36269043eb55f1287a5a19ba2216afeab88cd46cbcfb88e960405160405180910390a35050505050565b60026020528060005260406000206000915054906101000a900460ff1681565b60016020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b600080600090505b600554811015610f4d57838015610f01575060008082815260200190815260200160002060030160009054906101000a900460ff16155b80610f345750828015610f33575060008082815260200190815260200160002060030160009054906101000a900460ff165b5b15610f40576001820191505b8080600101915050610eca565b5092915050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f8c57600080fd5b80600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610fe457600080fd5b81600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561101f57600080fd5b6001600380549050016004546032821115801561103c5750818111155b8015611049575060008114155b8015611056575060008214155b61105f57600080fd5b6001600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060038590806001815401808255809150509060018203906000526020600020016000909192909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550508473ffffffffffffffffffffffffffffffffffffffff167ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d60405160405180910390a25050505050565b6000806000905060008090505b60038054905081101561124457600160008581526020019081526020016000206000600383815481106111a357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611222576001820191505b60045482141561123757600192505050611247565b8080600101915050611174565b50505b919050565b600080600090505b60038054905081101561130f576001600084815260200190815260200160002060006003838154811061128357fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611302576001820191505b8080600101915050611254565b50919050565b60006020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806001015490806002018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113ed5780601f106113c2576101008083540402835291602001916113ed565b820191906000526020600020905b8154815290600101906020018083116113d057829003601f168201915b5050505050908060030160009054906101000a900460ff16905084565b6060600380548060200260200160405190810160405280929190818152602001828054801561148e57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611444575b5050505050905090565b6060806005546040519080825280602002602001820160405280156114cc5781602001602082028038833980820191505090505b509050600080905060008090505b60055481101561157657858015611511575060008082815260200190815260200160002060030160009054906101000a900460ff16155b806115445750848015611543575060008082815260200190815260200160002060030160009054906101000a900460ff165b5b15611569578083838151811061155657fe5b6020026020010181815250506001820191505b80806001019150506114da565b8787036040519080825280602002602001820160405280156115a75781602001602082028038833980820191505090505b5093508790505b868110156115f1578281815181106115c257fe5b602002602001015184898303815181106115d857fe5b60200260200101818152505080806001019150506115ae565b505050949350505050565b6060806003805490506040519080825280602002602001820160405280156116335781602001602082028038833980820191505090505b509050600080905060008090505b60038054905081101561177a576001600086815260200190815260200160002060006003838154811061167057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561176d57600381815481106116f557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683838151811061172c57fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506001820191505b8080600101915050611641565b816040519080825280602002602001820160405280156117a95781602001602082028038833980820191505090505b509350600090505b81811015611820578281815181106117c557fe5b60200260200101518482815181106117d957fe5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505080806001019150506117b1565b505050919050565b60055481565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461186657600080fd5b600380549050816032821115801561187e5750818111155b801561188b575060008114155b8015611898575060008214155b6118a157600080fd5b826004819055507fa3f1ee9126a074d9326c682f561767f710e927faa811f7a99829d49dc421797a836040518082815260200191505060405180910390a1505050565b33600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661193b57600080fd5b81600073ffffffffffffffffffffffffffffffffffffffff1660008083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156119ab57600080fd5b82336001600083815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a1557600080fd5b600180600087815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550843373ffffffffffffffffffffffffffffffffffffffff167f4a504a94899432a9846e1aa406dceb1bcfd538bb839071d49d1e5e23f5be30ef60405160405180910390a3611aca85611e05565b5050505050565b6000611ade8484846120a7565b9050611ae9816118e4565b9392505050565b603281565b60045481565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b3357600080fd5b81600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611b8a57600080fd5b81600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611be257600080fd5b60008090505b600380549050811015611cc8578473ffffffffffffffffffffffffffffffffffffffff1660038281548110611c1957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611cbb578360038281548110611c6e57fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611cc8565b8080600101915050611be8565b506000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508373ffffffffffffffffffffffffffffffffffffffff167f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b9060405160405180910390a28273ffffffffffffffffffffffffffffffffffffffff167ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d60405160405180910390a250505050565b33600260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611e5c57600080fd5b81336001600083815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ec557600080fd5b8360008082815260200190815260200160002060030160009054906101000a900460ff1615611ef357600080fd5b611efc85611167565b156120a0576000806000878152602001908152602001600020905060018160030160006101000a81548160ff02191690831515021790555061201c8160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826001015483600201805460018160011615610100020316600290049050846002018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120125780601f10611fe757610100808354040283529160200191612012565b820191906000526020600020905b815481529060010190602001808311611ff557829003601f168201915b505050505061220c565b1561205357857f33e13ecb54c3076d8e8bb8c2881800a4d972b792045ffae98fdf46df365fed7560405160405180910390a261209e565b857f526441bb6c1aba3c9a4a6ca1d6545da9c2333c8c48343ef398eb858d72b7923660405160405180910390a260008160030160006101000a81548160ff0219169083151502179055505b505b5050505050565b600083600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120e457600080fd5b600554915060405180608001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018481526020016000151581525060008084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015560408201518160020190805190602001906121a292919061225f565b5060608201518160030160006101000a81548160ff0219169083151502179055509050506001600560008282540192505081905550817fc0ba8fe4b176c1714197d43b9cc6bcf797a4a7461c5fe8d0ef6e184ae7601e5160405160405180910390a2509392505050565b6000806040516020840160008287838a8c6187965a03f19250505080915050949350505050565b81548183558181111561225a5781836000526020600020918201910161225991906122df565b5b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106122a057805160ff19168380011785556122ce565b828001600101855582156122ce579182015b828111156122cd5782518255916020019190600101906122b2565b5b5090506122db91906122df565b5090565b61230191905b808211156122fd5760008160009055506001016122e5565b5090565b9056fea165627a7a723058201b7abe5879714ed61f8aab67776af70c4618130e1500476c0e94dde685001f9b0029
Deployed Bytecode Sourcemap
191:13164:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2653:1;2641:9;:13;2637:67;;;2682:10;2674:30;;;2694:9;2674:30;;;;;;;;;;;;;;;;;;2637:67;191:13164;1061:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1061:23:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1061:23:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3881:484;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3881:484:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3881:484:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;6563:304;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6563:304:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6563:304:0;;;;;;;;;;;;;;;;;:::i;:::-;;1014:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1014:40:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1014:40:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;943:64;;8:9:-1;5:2;;;30:1;27;20:12;5:2;943:64:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;943:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10964:328;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10964:328:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10964:328:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3462:292;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3462:292:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3462:292:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;9062:349;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9062:349:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9062:349:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10436:260;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10436:260:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10436:260:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;887:49;;8:9:-1;5:2;;;30:1;27;20:12;5:2;887:49:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;887:49:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;887:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11380:124;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11380:124:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11380:124:0;;;;;;;;;;;;;;;;;12647:705;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12647:705:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;12647:705:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;12647:705:0;;;;;;;;;;;;;;;;;11688:602;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11688:602:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11688:602:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11688:602:0;;;;;;;;;;;;;;;;;1118:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1118:28:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5225:219;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5225:219:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5225:219:0;;;;;;;;;;;;;;;;;:::i;:::-;;6077:358;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6077:358:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6077:358:0;;;;;;;;;;;;;;;;;:::i;:::-;;5710:257;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5710:257:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5710:257:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;5710:257:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;5710:257:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;5710:257:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;5710:257:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;803:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;803:41:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1091:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1091:20:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4572:478;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4572:478:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4572:478:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6985:612;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6985:612:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6985:612:0;;;;;;;;;;;;;;;;;:::i;:::-;;1061:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3881:484::-;1385:4;1363:27;;:10;:27;;;1355:36;;;;;;3974:5;1579:7;:14;1587:5;1579:14;;;;;;;;;;;;;;;;;;;;;;;;;1571:23;;;;;;4014:5;3997:7;:14;4005:5;3997:14;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;4035:6;4044:1;4035:10;;4030:178;4067:1;4051:6;:13;;;;:17;4047:1;:21;4030:178;;;4105:5;4092:18;;:6;4099:1;4092:9;;;;;;;;;;;;;;;;;;;;;;;;;:18;;;4088:120;;;4143:6;4166:1;4150:6;:13;;;;:17;4143:25;;;;;;;;;;;;;;;;;;;;;;;;;4131:6;4138:1;4131:9;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;4187:5;;4088:120;4070:3;;;;;;;4030:178;;;;4235:1;4218:6;:18;;;;;;;;;;;;;;:::i;:::-;;4262:6;:13;;;;4251:8;;:24;4247:75;;;4290:32;4308:6;:13;;;;4290:17;:32::i;:::-;4247:75;4351:5;4338:19;;;;;;;;;;;;1402:1;3881:484;:::o;6563:304::-;6648:10;1579:7;:14;1587:5;1579:14;;;;;;;;;;;;;;;;;;;;;;;;;1571:23;;;;;;6679:13;6694:10;1843:13;:28;1857:13;1843:28;;;;;;;;;;;:35;1872:5;1843:35;;;;;;;;;;;;;;;;;;;;;;;;;1835:44;;;;;;6727:13;2109:12;:27;2122:13;2109:27;;;;;;;;;;;:36;;;;;;;;;;;;2108:37;2100:46;;;;;;6801:5;6758:13;:28;6772:13;6758:28;;;;;;;;;;;:40;6787:10;6758:40;;;;;;;;;;;;;;;;:48;;;;;;;;;;;;;;;;;;6845:13;6833:10;6822:37;;;;;;;;;;;;1890:1;1605;;6563:304;;:::o;1014:40::-;;;;;;;;;;;;;;;;;;;;;;:::o;943:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10964:328::-;11070:10;11103:6;11112:1;11103:10;;11098:186;11119:16;;11115:1;:20;11098:186;;;11162:7;:36;;;;;11174:12;:15;11187:1;11174:15;;;;;;;;;;;:24;;;;;;;;;;;;11173:25;11162:36;:93;;;;11219:8;:36;;;;;11231:12;:15;11244:1;11231:15;;;;;;;;;;;:24;;;;;;;;;;;;11219:36;11162:93;11155:129;;;11283:1;11274:10;;;;11155:129;11137:3;;;;;;;11098:186;;;;10964:328;;;;:::o;3462:292::-;1385:4;1363:27;;:10;:27;;;1355:36;;;;;;3558:5;1481:7;:14;1489:5;1481:14;;;;;;;;;;;;;;;;;;;;;;;;;1480:15;1472:24;;;;;;3582:5;2248:1;2228:22;;:8;:22;;;;2220:31;;;;;;3631:1;3615:6;:13;;;;:17;3634:8;;842:2;2357:10;:29;;:69;;;;;2416:10;2403:9;:23;;2357:69;:100;;;;;2456:1;2443:9;:14;;2357:100;:132;;;;;2488:1;2474:10;:15;;2357:132;2349:141;;;;;;3677:4;3660:7;:14;3668:5;3660:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;3692:6;3704:5;3692:18;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;3692:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3740:5;3726:20;;;;;;;;;;;;2262:1;;1507;1402;3462:292;:::o;9062:349::-;9151:4;9173:10;9186:1;9173:14;;9203:6;9212:1;9203:10;;9198:206;9219:6;:13;;;;9215:1;:17;9198:206;;;9258:13;:28;9272:13;9258:28;;;;;;;;;;;:39;9287:6;9294:1;9287:9;;;;;;;;;;;;;;;;;;;;;;;;;9258:39;;;;;;;;;;;;;;;;;;;;;;;;;9254:72;;;9325:1;9316:10;;;;9254:72;9354:8;;9345:5;:17;9341:51;;;9388:4;9381:11;;;;;;9341:51;9234:3;;;;;;;9198:206;;;;9062:349;;;;;:::o;10436:260::-;10534:10;10567:6;10576:1;10567:10;;10562:126;10583:6;:13;;;;10579:1;:17;10562:126;;;10620:13;:28;10634:13;10620:28;;;;;;;;;;;:39;10649:6;10656:1;10649:9;;;;;;;;;;;;;;;;;;;;;;;;;10620:39;;;;;;;;;;;;;;;;;;;;;;;;;10616:72;;;10687:1;10678:10;;;;10616:72;10598:3;;;;;;;10562:126;;;;10436:260;;;:::o;887:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11380:124::-;11449:16;11490:6;11483:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11380:124;:::o;12647:705::-;12771:29;12818:32;12864:16;;12853:28;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;12853:28:0;;;;12818:63;;12892:10;12905:1;12892:14;;12917:6;12943:1;12939:5;;12934:260;12950:16;;12946:1;:20;12934:260;;;12993:7;:36;;;;;13005:12;:15;13018:1;13005:15;;;;;;;;;;;:24;;;;;;;;;;;;13004:25;12993:36;:93;;;;13050:8;:36;;;;;13062:12;:15;13075:1;13062:15;;;;;;;;;;;:24;;;;;;;;;;;;13050:36;12993:93;12986:208;;;13148:1;13120:18;13139:5;13120:25;;;;;;;;;;;;;:29;;;;;13177:1;13168:10;;;;12986:208;12968:3;;;;;;;12934:260;;;13238:4;13233:2;:9;13222:21;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;13222:21:0;;;;13204:39;;13263:4;13259:8;;13254:90;13273:2;13269:1;:6;13254:90;;;13323:18;13342:1;13323:21;;;;;;;;;;;;;;13295:15;13315:4;13311:1;:8;13295:25;;;;;;;;;;;;;:49;;;;;13277:3;;;;;;;13254:90;;;12647:705;;;;;;;;;:::o;11688:602::-;11782:31;11831:34;11882:6;:13;;;;11868:28;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;11868:28:0;;;;11831:65;;11907:10;11920:1;11907:14;;11932:6;11958:1;11954:5;;11949:194;11965:6;:13;;;;11961:1;:17;11949:194;;;12002:13;:28;12016:13;12002:28;;;;;;;;;;;:39;12031:6;12038:1;12031:9;;;;;;;;;;;;;;;;;;;;;;;;;12002:39;;;;;;;;;;;;;;;;;;;;;;;;;11998:145;;;12089:6;12096:1;12089:9;;;;;;;;;;;;;;;;;;;;;;;;;12062:17;12080:5;12062:24;;;;;;;;;;;;;:36;;;;;;;;;;;12126:1;12117:10;;;;11998:145;11980:3;;;;;;;11949:194;;;12184:5;12170:20;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;12170:20:0;;;;12153:37;;12210:1;12206:5;;12201:81;12217:5;12213:1;:9;12201:81;;;12262:17;12280:1;12262:20;;;;;;;;;;;;;;12242:14;12257:1;12242:17;;;;;;;;;;;;;:40;;;;;;;;;;;12224:3;;;;;;;12201:81;;;11688:602;;;;;;:::o;1118:28::-;;;;:::o;5225:219::-;1385:4;1363:27;;:10;:27;;;1355:36;;;;;;5330:6;:13;;;;5345:9;842:2;2357:10;:29;;:69;;;;;2416:10;2403:9;:23;;2357:69;:100;;;;;2456:1;2443:9;:14;;2357:100;:132;;;;;2488:1;2474:10;:15;;2357:132;2349:141;;;;;;5383:9;5372:8;:20;;;;5408:28;5426:9;5408:28;;;;;;;;;;;;;;;;;;1402:1;;5225:219;:::o;6077:358::-;6162:10;1579:7;:14;1587:5;1579:14;;;;;;;;;;;;;;;;;;;;;;;;;1571:23;;;;;;6201:13;1739:1;1688:53;;:12;:27;1701:13;1688:27;;;;;;;;;;;:39;;;;;;;;;;;;:53;;;;1680:62;;;;;;6238:13;6253:10;1984:13;:28;1998:13;1984:28;;;;;;;;;;;:35;2013:5;1984:35;;;;;;;;;;;;;;;;;;;;;;;;;1983:36;1975:45;;;;;;6324:4;6281:13;:28;6295:13;6281:28;;;;;;;;;;;:40;6310:10;6281:40;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;6369:13;6357:10;6344:39;;;;;;;;;;;;6394:33;6413:13;6394:18;:33::i;:::-;1753:1;;1605;6077:358;;:::o;5710:257::-;5823:18;5875:40;5890:11;5903:5;5910:4;5875:14;:40::i;:::-;5859:56;;5926:33;5945:13;5926:18;:33::i;:::-;5710:257;;;;;:::o;803:41::-;842:2;803:41;:::o;1091:20::-;;;;:::o;4572:478::-;1385:4;1363:27;;:10;:27;;;1355:36;;;;;;4684:5;1579:7;:14;1587:5;1579:14;;;;;;;;;;;;;;;;;;;;;;;;;1571:23;;;;;;4718:8;1481:7;:14;1489:5;1481:14;;;;;;;;;;;;;;;;;;;;;;;;;1480:15;1472:24;;;;;;4749:6;4758:1;4749:10;;4744:157;4765:6;:13;;;;4761:1;:17;4744:157;;;4815:5;4802:18;;:6;4809:1;4802:9;;;;;;;;;;;;;;;;;;;;;;;;;:18;;;4798:103;;;4853:8;4841:6;4848:1;4841:9;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;4880:5;;4798:103;4780:3;;;;;;;4744:157;;;;4928:5;4911:7;:14;4919:5;4911:14;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;4964:4;4944:7;:17;4952:8;4944:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;4997:5;4984:19;;;;;;;;;;;;5033:8;5019:23;;;;;;;;;;;;1605:1;1402;4572:478;;:::o;6985:612::-;7070:10;1579:7;:14;1587:5;1579:14;;;;;;;;;;;;;;;;;;;;;;;;;1571:23;;;;;;7101:13;7116:10;1843:13;:28;1857:13;1843:28;;;;;;;;;;;:35;1872:5;1843:35;;;;;;;;;;;;;;;;;;;;;;;;;1835:44;;;;;;7149:13;2109:12;:27;2122:13;2109:27;;;;;;;;;;;:36;;;;;;;;;;;;2108:37;2100:46;;;;;;7184:26;7196:13;7184:11;:26::i;:::-;7180:410;;;7227:23;7253:12;:27;7266:13;7253:27;;;;;;;;;;;7227:53;;7310:4;7295:3;:12;;;:19;;;;;;;;;;;;;;;;;;7333:68;7347:3;:15;;;;;;;;;;;;7364:3;:9;;;7375:3;:8;;:15;;;;;;;;;;;;;;;;7392:3;:8;;7333:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:13;:68::i;:::-;7329:250;;;7435:13;7425:24;;;;;;;;;;7329:250;;;7510:13;7493:31;;;;;;;;;;7558:5;7543:3;:12;;;:20;;;;;;;;;;;;;;;;;;7329:250;7180:410;;1890:1;1605;;6985:612;;:::o;9754:477::-;9896:18;9865:11;2248:1;2228:22;;:8;:22;;;;2220:31;;;;;;9948:16;;9932:32;;10005:145;;;;;;;;10045:11;10005:145;;;;;;10078:5;10005:145;;;;10104:4;10005:145;;;;10133:5;10005:145;;;;;9975:12;:27;9988:13;9975:27;;;;;;;;;;;:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10181:1;10161:16;;:21;;;;;;;;;;;10209:13;10198:25;;;;;;;;;;9754:477;;;;;;:::o;7778:1128::-;7888:4;7905:11;7966:4;7960:11;8100:2;8094:4;8090:13;8775:1;8755;8646:10;8626:1;8602:5;8572:11;8224:5;8219:3;8215:15;8192:672;8182:682;;7936:939;;8892:6;8885:13;;;7778:1128;;;;;;:::o;191:13164::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://1b7abe5879714ed61f8aab67776af70c4618130e1500476c0e94dde685001f9b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 56.72% | $2,708.05 | 2,187.0754 | $5,922,704.7 | |
ETH | 23.36% | $0.021889 | 111,438,640.4633 | $2,439,293.84 | |
ETH | 8.86% | $0.000016 | 58,475,029,278 | $925,074.96 | |
ETH | 5.02% | $0.999767 | 524,581.8142 | $524,459.59 | |
ETH | 3.06% | $0.007371 | 43,376,689.9259 | $319,716.13 | |
ETH | 1.37% | $0.001485 | 96,621,120.7881 | $143,513.28 | |
ETH | 0.43% | $0.39194 | 114,444.8259 | $44,855.51 | |
ETH | 0.39% | $0.186235 | 216,034.9133 | $40,233.26 | |
ETH | 0.31% | $0.155163 | 207,119.0628 | $32,137.22 | |
ETH | 0.22% | $981.66 | 23.272 | $22,845.14 | |
ETH | 0.14% | $4.35 | 3,325.1476 | $14,464.39 | |
ETH | 0.12% | $0.022068 | 553,123.5031 | $12,206.25 | |
ETH | <0.01% | $0.999983 | 700 | $699.99 | |
ETH | <0.01% | $0.999982 | 10 | $10 | |
ETH | <0.01% | <$0.000001 | 908,534,985.6457 | $1.11 | |
ETH | <0.01% | $0.000994 | 1,000 | $0.994 | |
BASE | <0.01% | $0.006126 | 310 | $1.9 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.