Overview
ETH Balance
0.0681992 ETH
Eth Value
$228.00 (@ $3,343.12/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
10477048 | 1624 days ago | 0.1182208 ETH | ||||
10477005 | 1624 days ago | 0.18 ETH | ||||
9992759 | 1699 days ago | 0.00019 ETH | ||||
9924200 | 1710 days ago | 0.0002 ETH | ||||
9924183 | 1710 days ago | 0.0001 ETH | ||||
9924170 | 1710 days ago | 0.0001 ETH | ||||
9924145 | 1710 days ago | 0.0001 ETH | ||||
9922096 | 1710 days ago | 0.0001 ETH | ||||
9916578 | 1711 days ago | 0.0001 ETH | ||||
9916576 | 1711 days ago | 0.0001 ETH | ||||
9913931 | 1712 days ago | 0.0001 ETH | ||||
9913888 | 1712 days ago | 0.0001 ETH | ||||
9912113 | 1712 days ago | 0.0001 ETH | ||||
9912101 | 1712 days ago | 0.0001 ETH | ||||
9912085 | 1712 days ago | 0.0001 ETH | ||||
9909391 | 1712 days ago | 0.0001 ETH | ||||
9909033 | 1712 days ago | 0.0001 ETH | ||||
9897328 | 1714 days ago | 0.0001 ETH | ||||
9894266 | 1715 days ago | 0.0001 ETH | ||||
9890069 | 1715 days ago | 0.0001 ETH | ||||
9889969 | 1715 days ago | 0.0001 ETH | ||||
9889126 | 1716 days ago | 0.0001 ETH | ||||
9889039 | 1716 days ago | 0.0001 ETH | ||||
9884651 | 1716 days ago | 0.0001 ETH | ||||
9884598 | 1716 days ago | 0.0001 ETH |
Loading...
Loading
Contract Name:
Token
Compiler Version
v0.5.12+commit.7709ece9
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-01-28 */ /** *Submitted for verification at Etherscan.io on 2019-04-10 */ pragma solidity >0.4.99 <0.6.0; /** * @title SafeMath * @dev Unsigned math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two unsigned integers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract IERC20 { function transfer(address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); function transferFrom(address from, address to, uint256 value) public returns (bool); function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function allowance(address owner, address spender) public view returns (uint256); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); event Withdraw(address indexed account, uint256 value); } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md * Originally based on code by FirstBlood: * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol * * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for * all accounts just by listening to said events. Note that this isn't required by the specification, and other * compliant implementations may not do it. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; mapping(address => uint256) private dividendBalanceOf; mapping(address => uint256) private dividendCreditedTo; uint256 private _dividendPerToken; uint256 private _totalSupply; uint256 private _totalEthWithdraw; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return _totalSupply; } function totalEthWithdraw() public view returns (uint256) { return _totalEthWithdraw; } /** * @dev Gets the balance of the specified address. * @param owner The address to query the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address owner) public view returns (uint256) { return _balances[owner]; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param owner address The address which owns the funds. * @param spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowed[owner][spender]; } /** * @dev Transfer token for a specified address * @param to The address to transfer to. * @param value The amount to be transferred. */ function transfer(address to, uint256 value) public returns (bool) { _transfer(msg.sender, to, value); update(msg.sender); updateNewOwner(to); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @dev Transfer tokens from one address to another. * Note that while this function emits an Approval event, this is not required as per the specification, * and other compliant implementations may not emit the event. * @param from address The address which you want to send tokens from * @param to address The address which you want to transfer to * @param value uint256 the amount of tokens to be transferred */ function transferFrom(address from, address to, uint256 value) public returns (bool) { _transfer(from, to, value); _approve(from, msg.sender, _allowed[from][msg.sender].sub(value)); update(from); updateNewOwner(to); return true; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue)); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue)); return true; } function viewMyDividend() public view returns (uint256) { return dividendBalanceOf[msg.sender]; } function withdraw() public payable { update(msg.sender); uint256 amount = dividendBalanceOf[msg.sender]; if (amount <= address(this).balance) { dividendBalanceOf[msg.sender] = 0; emit Withdraw(msg.sender, amount); msg.sender.transfer(amount); _totalEthWithdraw = _totalEthWithdraw.add(amount); } } function dividendPerToken() public view returns (uint256) { return _dividendPerToken; } function update(address account) public { uint256 newBalance = address(this).balance.add(_totalEthWithdraw); _dividendPerToken = newBalance.div(_totalSupply); uint256 owed = _dividendPerToken.sub(dividendCreditedTo[account]); dividendBalanceOf[account] = balanceOf(account).mul(owed); dividendCreditedTo[account] = _dividendPerToken; } function updateNewOwner(address account) internal { dividendCreditedTo[account] = _dividendPerToken; } function dividendCreditedOf(address owner) public view returns (uint256) { return dividendCreditedTo[owner]; } /** * @dev Transfer token for a specified addresses * @param from The address to transfer from. * @param to The address to transfer to. * @param value The amount to be transferred. */ function _transfer(address from, address to, uint256 value) internal { require(to != address(0)); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } /** * @dev Internal function that mints an amount of the token and assigns it to * an account. This encapsulates the modification of balances such that the * proper events are emitted. * @param account The account that will receive the created tokens. * @param value The amount that will be created. */ function _mint(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.add(value); _balances[account] = _balances[account].add(value); emit Transfer(address(0), account, value); } /** * @dev Internal function that burns an amount of the token of a given * account. * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burn(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Approve an address to spend another addresses' tokens. * @param owner The address that owns the tokens. * @param spender The address that will spend the tokens. * @param value The number of tokens that can be spent. */ function _approve(address owner, address spender, uint256 value) internal { require(spender != address(0)); require(owner != address(0)); _allowed[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Internal function that burns an amount of the token of a given * account, deducting from the sender's allowance for said account. Uses the * internal burn function. * Emits an Approval event (reflecting the reduced allowance). * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burnFrom(address account, uint256 value) internal { _burn(account, value); _approve(account, msg.sender, _allowed[account][msg.sender].sub(value)); } } /** * @title ERC20Detailed token * @dev The decimals are only for visualization purposes. * All the operations are done using the smallest and indivisible token unit, * just as on Ethereum all the operations are done in wei. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @return the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @return the symbol of the token. */ function symbol() public view returns (string memory) { return _symbol; } /** * @return the number of decimals of the token. */ function decimals() public view returns (uint8) { return _decimals; } } contract Token is ERC20, ERC20Detailed { using SafeMath for uint256; uint8 public constant DECIMALS = 0; uint256 public constant INITIAL_SUPPLY = 100 * (10 ** uint256(DECIMALS)); /** * @dev Constructor that gives msg.sender all of existing tokens. */ constructor (address owner) public ERC20Detailed("8coins", "8coins", DECIMALS) { require(owner != address(0)); //owner = msg.sender; // for test's _mint(owner, INITIAL_SUPPLY); } function() payable external { } function balanceETH() public view returns(uint256) { return address(this).balance; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Withdraw","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"DECIMALS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"balanceETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"dividendCreditedOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"dividendPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalEthWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"update","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"viewMyDividend","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":true,"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200179f3803806200179f833981810160405260208110156200003757600080fd5b81019080805190602001909291905050506040518060400160405280600681526020017f38636f696e7300000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f38636f696e73000000000000000000000000000000000000000000000000000081525060008260079080519060200190620000ce929190620002e5565b508160089080519060200190620000e7929190620002e5565b5080600960006101000a81548160ff021916908360ff160217905550505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156200014157600080fd5b6200015d81600060ff16600a0a6064026200016460201b60201c565b5062000394565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200019f57600080fd5b620001bb81600554620002c560201b620011141790919060201c565b60058190555062000219816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620002c560201b620011141790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080828401905083811015620002db57600080fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200032857805160ff191683800117855562000359565b8280016001018555821562000359579182015b82811115620003585782518255916020019190600101906200033b565b5b5090506200036891906200036c565b5090565b6200039191905b808211156200038d57600081600090555060010162000373565b5090565b90565b6113fb80620003a46000396000f3fe60806040526004361061011f5760003560e01c80633ccfd60b116100a0578063a457c2d711610064578063a457c2d7146105ed578063a9059cbb14610660578063bbd7e9c3146106d3578063dd62ed3e146106fe578063ecbdbb32146107835761011f565b80633ccfd60b146104985780635ce36a87146104a257806370a08231146104cd57806377ec0feb1461053257806395d89b411461055d5761011f565b806323b872dd116100e757806323b872dd146103055780632e0f2625146103985780632ff2e9dc146103c9578063313ce567146103f457806339509351146104255761011f565b806306fdde0314610121578063095ea7b3146101b157806318160ddd146102245780631c1b87721461024f5780631f605e79146102a0575b005b34801561012d57600080fd5b506101366107ae565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561017657808201518184015260208101905061015b565b50505050905090810190601f1680156101a35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101bd57600080fd5b5061020a600480360360408110156101d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610850565b604051808215151515815260200191505060405180910390f35b34801561023057600080fd5b50610239610867565b6040518082815260200191505060405180910390f35b34801561025b57600080fd5b5061029e6004803603602081101561027257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610871565b005b3480156102ac57600080fd5b506102ef600480360360208110156102c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506109bd565b6040518082815260200191505060405180910390f35b34801561031157600080fd5b5061037e6004803603606081101561032857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a06565b604051808215151515815260200191505060405180910390f35b3480156103a457600080fd5b506103ad610ac9565b604051808260ff1660ff16815260200191505060405180910390f35b3480156103d557600080fd5b506103de610ace565b6040518082815260200191505060405180910390f35b34801561040057600080fd5b50610409610adc565b604051808260ff1660ff16815260200191505060405180910390f35b34801561043157600080fd5b5061047e6004803603604081101561044857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610af3565b604051808215151515815260200191505060405180910390f35b6104a0610b98565b005b3480156104ae57600080fd5b506104b7610cfc565b6040518082815260200191505060405180910390f35b3480156104d957600080fd5b5061051c600480360360208110156104f057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d06565b6040518082815260200191505060405180910390f35b34801561053e57600080fd5b50610547610d4e565b6040518082815260200191505060405180910390f35b34801561056957600080fd5b50610572610d58565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105b2578082015181840152602081019050610597565b50505050905090810190601f1680156105df5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156105f957600080fd5b506106466004803603604081101561061057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610dfa565b604051808215151515815260200191505060405180910390f35b34801561066c57600080fd5b506106b96004803603604081101561068357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e9f565b604051808215151515815260200191505060405180910390f35b3480156106df57600080fd5b506106e8610ec8565b6040518082815260200191505060405180910390f35b34801561070a57600080fd5b5061076d6004803603604081101561072157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f0f565b6040518082815260200191505060405180910390f35b34801561078f57600080fd5b50610798610f96565b6040518082815260200191505060405180910390f35b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108465780601f1061081b57610100808354040283529160200191610846565b820191906000526020600020905b81548152906001019060200180831161082957829003601f168201915b5050505050905090565b600061085d338484610fb5565b6001905092915050565b6000600554905090565b600061089f6006543073ffffffffffffffffffffffffffffffffffffffff163161111490919063ffffffff16565b90506108b66005548261113390919063ffffffff16565b6004819055506000610912600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460045461115990919063ffffffff16565b905061092f8161092185610d06565b61117990919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600454600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610a138484846111b3565b610aac8433610aa785600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461115990919063ffffffff16565b610fb5565b610ab584610871565b610abe8361137d565b600190509392505050565b600081565b600060ff16600a0a60640281565b6000600960009054906101000a900460ff16905090565b6000610b8e3384610b8985600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111490919063ffffffff16565b610fb5565b6001905092915050565b610ba133610871565b6000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490503073ffffffffffffffffffffffffffffffffffffffff16318111610cf9576000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364826040518082815260200191505060405180910390a23373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cdc573d6000803e3d6000fd5b50610cf28160065461111490919063ffffffff16565b6006819055505b50565b6000600654905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600454905090565b606060088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610df05780601f10610dc557610100808354040283529160200191610df0565b820191906000526020600020905b815481529060010190602001808311610dd357829003601f168201915b5050505050905090565b6000610e953384610e9085600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461115990919063ffffffff16565b610fb5565b6001905092915050565b6000610eac3384846111b3565b610eb533610871565b610ebe8361137d565b6001905092915050565b6000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fef57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561102957600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008082840190508381101561112957600080fd5b8091505092915050565b600080821161114157600080fd5b600082848161114c57fe5b0490508091505092915050565b60008282111561116857600080fd5b600082840390508091505092915050565b60008083141561118c57600090506111ad565b600082840290508284828161119d57fe5b04146111a857600080fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ed57600080fd5b61123e816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461115990919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112d1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600454600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505056fea265627a7a72315820e8a48c8eafee148d7482b97c1a1ea2f31ef7df4dbc0608c25a0ba7df06c5ad3364736f6c634300050c0032000000000000000000000000a57aeb1145ab9ffceba6dc23bef419570bd38110
Deployed Bytecode
0x60806040526004361061011f5760003560e01c80633ccfd60b116100a0578063a457c2d711610064578063a457c2d7146105ed578063a9059cbb14610660578063bbd7e9c3146106d3578063dd62ed3e146106fe578063ecbdbb32146107835761011f565b80633ccfd60b146104985780635ce36a87146104a257806370a08231146104cd57806377ec0feb1461053257806395d89b411461055d5761011f565b806323b872dd116100e757806323b872dd146103055780632e0f2625146103985780632ff2e9dc146103c9578063313ce567146103f457806339509351146104255761011f565b806306fdde0314610121578063095ea7b3146101b157806318160ddd146102245780631c1b87721461024f5780631f605e79146102a0575b005b34801561012d57600080fd5b506101366107ae565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561017657808201518184015260208101905061015b565b50505050905090810190601f1680156101a35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101bd57600080fd5b5061020a600480360360408110156101d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610850565b604051808215151515815260200191505060405180910390f35b34801561023057600080fd5b50610239610867565b6040518082815260200191505060405180910390f35b34801561025b57600080fd5b5061029e6004803603602081101561027257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610871565b005b3480156102ac57600080fd5b506102ef600480360360208110156102c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506109bd565b6040518082815260200191505060405180910390f35b34801561031157600080fd5b5061037e6004803603606081101561032857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a06565b604051808215151515815260200191505060405180910390f35b3480156103a457600080fd5b506103ad610ac9565b604051808260ff1660ff16815260200191505060405180910390f35b3480156103d557600080fd5b506103de610ace565b6040518082815260200191505060405180910390f35b34801561040057600080fd5b50610409610adc565b604051808260ff1660ff16815260200191505060405180910390f35b34801561043157600080fd5b5061047e6004803603604081101561044857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610af3565b604051808215151515815260200191505060405180910390f35b6104a0610b98565b005b3480156104ae57600080fd5b506104b7610cfc565b6040518082815260200191505060405180910390f35b3480156104d957600080fd5b5061051c600480360360208110156104f057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d06565b6040518082815260200191505060405180910390f35b34801561053e57600080fd5b50610547610d4e565b6040518082815260200191505060405180910390f35b34801561056957600080fd5b50610572610d58565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105b2578082015181840152602081019050610597565b50505050905090810190601f1680156105df5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156105f957600080fd5b506106466004803603604081101561061057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610dfa565b604051808215151515815260200191505060405180910390f35b34801561066c57600080fd5b506106b96004803603604081101561068357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e9f565b604051808215151515815260200191505060405180910390f35b3480156106df57600080fd5b506106e8610ec8565b6040518082815260200191505060405180910390f35b34801561070a57600080fd5b5061076d6004803603604081101561072157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f0f565b6040518082815260200191505060405180910390f35b34801561078f57600080fd5b50610798610f96565b6040518082815260200191505060405180910390f35b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108465780601f1061081b57610100808354040283529160200191610846565b820191906000526020600020905b81548152906001019060200180831161082957829003601f168201915b5050505050905090565b600061085d338484610fb5565b6001905092915050565b6000600554905090565b600061089f6006543073ffffffffffffffffffffffffffffffffffffffff163161111490919063ffffffff16565b90506108b66005548261113390919063ffffffff16565b6004819055506000610912600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460045461115990919063ffffffff16565b905061092f8161092185610d06565b61117990919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600454600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610a138484846111b3565b610aac8433610aa785600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461115990919063ffffffff16565b610fb5565b610ab584610871565b610abe8361137d565b600190509392505050565b600081565b600060ff16600a0a60640281565b6000600960009054906101000a900460ff16905090565b6000610b8e3384610b8985600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111490919063ffffffff16565b610fb5565b6001905092915050565b610ba133610871565b6000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490503073ffffffffffffffffffffffffffffffffffffffff16318111610cf9576000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364826040518082815260200191505060405180910390a23373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cdc573d6000803e3d6000fd5b50610cf28160065461111490919063ffffffff16565b6006819055505b50565b6000600654905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600454905090565b606060088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610df05780601f10610dc557610100808354040283529160200191610df0565b820191906000526020600020905b815481529060010190602001808311610dd357829003601f168201915b5050505050905090565b6000610e953384610e9085600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461115990919063ffffffff16565b610fb5565b6001905092915050565b6000610eac3384846111b3565b610eb533610871565b610ebe8361137d565b6001905092915050565b6000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fef57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561102957600080fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008082840190508381101561112957600080fd5b8091505092915050565b600080821161114157600080fd5b600082848161114c57fe5b0490508091505092915050565b60008282111561116857600080fd5b600082840390508091505092915050565b60008083141561118c57600090506111ad565b600082840290508284828161119d57fe5b04146111a857600080fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ed57600080fd5b61123e816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461115990919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112d1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461111490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600454600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505056fea265627a7a72315820e8a48c8eafee148d7482b97c1a1ea2f31ef7df4dbc0608c25a0ba7df06c5ad3364736f6c634300050c0032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a57aeb1145ab9ffceba6dc23bef419570bd38110
-----Decoded View---------------
Arg [0] : owner (address): 0xa57aeB1145Ab9ffCeBA6DC23bEF419570bD38110
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a57aeb1145ab9ffceba6dc23bef419570bd38110
Deployed Bytecode Sourcemap
13289:659:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12883:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12883:83: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;12883:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5926:148;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5926:148:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5926:148:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3910:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3910:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8913:385;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8913:385:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8913:385:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;9430:124;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9430:124:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9430:124:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6547:280;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6547:280:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6547:280:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13370:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13370:34:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13413:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13413:72:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13199:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13199:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;7342:203;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7342:203:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7342:203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8406:390;;;:::i;:::-;;4009:101;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4009:101:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4330:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4330:106:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4330:106:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8804:101;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8804:101:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13033:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13033:87: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;13033:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8065:213;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8065:213:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;8065:213:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;5081:198;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5081:198:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;5081:198:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8286:112;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8286:112:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4775:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4775:131:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;4775:131:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13845:98;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13845:98:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12883:83;12920:13;12953:5;12946:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12883:83;:::o;5926:148::-;5991:4;6008:36;6017:10;6029:7;6038:5;6008:8;:36::i;:::-;6062:4;6055:11;;5926:148;;;;:::o;3910:91::-;3954:7;3981:12;;3974:19;;3910:91;:::o;8913:385::-;8964:18;8985:44;9011:17;;8993:4;8985:21;;;:25;;:44;;;;:::i;:::-;8964:65;;9060:28;9075:12;;9060:10;:14;;:28;;;;:::i;:::-;9040:17;:48;;;;9099:12;9114:50;9136:18;:27;9155:7;9136:27;;;;;;;;;;;;;;;;9114:17;;:21;;:50;;;;:::i;:::-;9099:65;;9204:28;9227:4;9204:18;9214:7;9204:9;:18::i;:::-;:22;;:28;;;;:::i;:::-;9175:17;:26;9193:7;9175:26;;;;;;;;;;;;;;;:57;;;;9273:17;;9243:18;:27;9262:7;9243:27;;;;;;;;;;;;;;;:47;;;;8913:385;;;:::o;9430:124::-;9494:7;9521:18;:25;9540:5;9521:25;;;;;;;;;;;;;;;;9514:32;;9430:124;;;:::o;6547:280::-;6626:4;6643:26;6653:4;6659:2;6663:5;6643:9;:26::i;:::-;6680:65;6689:4;6695:10;6707:37;6738:5;6707:8;:14;6716:4;6707:14;;;;;;;;;;;;;;;:26;6722:10;6707:26;;;;;;;;;;;;;;;;:30;;:37;;;;:::i;:::-;6680:8;:65::i;:::-;6756:12;6763:4;6756:6;:12::i;:::-;6779:18;6794:2;6779:14;:18::i;:::-;6815:4;6808:11;;6547:280;;;;;:::o;13370:34::-;13403:1;13370:34;:::o;13413:72::-;13403:1;13467:17;;13461:2;:23;13454:3;:31;13413:72;:::o;13199:83::-;13240:5;13265:9;;;;;;;;;;;13258:16;;13199:83;:::o;7342:203::-;7422:4;7439:76;7448:10;7460:7;7469:45;7503:10;7469:8;:20;7478:10;7469:20;;;;;;;;;;;;;;;:29;7490:7;7469:29;;;;;;;;;;;;;;;;:33;;:45;;;;:::i;:::-;7439:8;:76::i;:::-;7533:4;7526:11;;7342:203;;;;:::o;8406:390::-;8452:18;8459:10;8452:6;:18::i;:::-;8481:14;8498:17;:29;8516:10;8498:29;;;;;;;;;;;;;;;;8481:46;;8560:4;8552:21;;;8542:6;:31;8538:251;;8622:1;8590:17;:29;8608:10;8590:29;;;;;;;;;;;;;;;:33;;;;8652:10;8643:28;;;8664:6;8643:28;;;;;;;;;;;;;;;;;;8686:10;:19;;:27;8706:6;8686:27;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;8686:27:0;8748:29;8770:6;8748:17;;:21;;:29;;;;:::i;:::-;8728:17;:49;;;;8538:251;8406:390;:::o;4009:101::-;4058:7;4085:17;;4078:24;;4009:101;:::o;4330:106::-;4385:7;4412:9;:16;4422:5;4412:16;;;;;;;;;;;;;;;;4405:23;;4330:106;;;:::o;8804:101::-;8853:7;8880:17;;8873:24;;8804:101;:::o;13033:87::-;13072:13;13105:7;13098:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13033:87;:::o;8065:213::-;8150:4;8167:81;8176:10;8188:7;8197:50;8231:15;8197:8;:20;8206:10;8197:20;;;;;;;;;;;;;;;:29;8218:7;8197:29;;;;;;;;;;;;;;;;:33;;:50;;;;:::i;:::-;8167:8;:81::i;:::-;8266:4;8259:11;;8065:213;;;;:::o;5081:198::-;5142:4;5159:32;5169:10;5181:2;5185:5;5159:9;:32::i;:::-;5202:18;5209:10;5202:6;:18::i;:::-;5231;5246:2;5231:14;:18::i;:::-;5267:4;5260:11;;5081:198;;;;:::o;8286:112::-;8334:7;8361:17;:29;8379:10;8361:29;;;;;;;;;;;;;;;;8354:36;;8286:112;:::o;4775:131::-;4847:7;4874:8;:15;4883:5;4874:15;;;;;;;;;;;;;;;:24;4890:7;4874:24;;;;;;;;;;;;;;;;4867:31;;4775:131;;;;:::o;13845:98::-;13887:7;13922:4;13914:21;;;13907:28;;13845:98;:::o;11440:254::-;11552:1;11533:21;;:7;:21;;;;11525:30;;;;;;11591:1;11574:19;;:5;:19;;;;11566:28;;;;;;11634:5;11607:8;:15;11616:5;11607:15;;;;;;;;;;;;;;;:24;11623:7;11607:24;;;;;;;;;;;;;;;:32;;;;11671:7;11655:31;;11664:5;11655:31;;;11680:5;11655:31;;;;;;;;;;;;;;;;;;11440:254;;;:::o;1567:150::-;1625:7;1645:9;1661:1;1657;:5;1645:17;;1686:1;1681;:6;;1673:15;;;;;;1708:1;1701:8;;;1567:150;;;;:::o;888:303::-;946:7;1045:1;1041;:5;1033:14;;;;;;1058:9;1074:1;1070;:5;;;;;;1058:17;;1182:1;1175:8;;;888:303;;;;:::o;1329:150::-;1387:7;1420:1;1415;:6;;1407:15;;;;;;1433:9;1449:1;1445;:5;1433:17;;1470:1;1463:8;;;1329:150;;;;:::o;320:433::-;378:7;627:1;622;:6;618:47;;;652:1;645:8;;;;618:47;677:9;693:1;689;:5;677:17;;722:1;717;713;:5;;;;;;:10;705:19;;;;;;744:1;737:8;;;320:433;;;;;:::o;9781:262::-;9883:1;9869:16;;:2;:16;;;;9861:25;;;;;;9917:26;9937:5;9917:9;:15;9927:4;9917:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;9899:9;:15;9909:4;9899:15;;;;;;;;;;;;;;;:44;;;;9970:24;9988:5;9970:9;:13;9980:2;9970:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;9954:9;:13;9964:2;9954:13;;;;;;;;;;;;;;;:40;;;;10025:2;10010:25;;10019:4;10010:25;;;10029:5;10010:25;;;;;;;;;;;;;;;;;;9781:262;;;:::o;9306:116::-;9397:17;;9367:18;:27;9386:7;9367:27;;;;;;;;;;;;;;;:47;;;;9306:116;:::o
Swarm Source
bzzr://e8a48c8eafee148d7482b97c1a1ea2f31ef7df4dbc0608c25a0ba7df06c5ad33
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,343.12 | 0.0682 | $228 |
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.