ERC-20
Education
Overview
Max Total Supply
372,000,000 DHN
Holders
1,776 ( 5.821%)
Market
Price
$2.84 @ 0.001085 ETH (-1.12%)
Onchain Market Cap
$1,056,480,000.00
Circulating Supply Market Cap
$158,176,516.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
10,000 DHNValue
$28,400.00 ( ~10.8513 Eth) [0.0027%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DHN
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-04 */ // File: contracts/SafeMath.sol pragma solidity ^0.8.10; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot 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-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: mult. overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: contracts/IERC20.sol pragma solidity ^0.8.10; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: 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 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: contracts/Context.sol pragma solidity ^0.8.10; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: contracts/ERC20.sol pragma solidity ^0.8.10; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string constant private _name = "Dohrnii"; string constant private _symbol = "DHN"; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor () { _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public pure returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public pure returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: amount exceeds a.")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased a. below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20:t. from zero address"); require(recipient != address(0), "ERC20:t. to zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20:a. from zero address"); require(spender != address(0), "ERC20:a. to zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: contracts/DHN.sol pragma solidity ^0.8.10; contract DHN is ERC20() { /** * @param wallet Address of the wallet, where tokens will be transferred to */ constructor(address wallet) { require(wallet != address(0),'Can not be zero address'); _mint(wallet, 372000000 ether); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620017ca380380620017ca83398181016040528101906200003791906200036c565b6012600360006101000a81548160ff021916908360ff160217905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620000c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000bd90620003ff565b60405180910390fd5b620000e4816b0133b6106881c94df4000000620000eb60201b60201c565b50620005c9565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200015e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001559062000471565b60405180910390fd5b62000172600083836200029a60201b60201c565b6200018e816002546200029f60201b620006af1790919060201c565b600281905550620001ec816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200029f60201b620006af1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200028e9190620004ae565b60405180910390a35050565b505050565b6000808284620002b09190620004fa565b905083811015620002f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ef90620005a7565b60405180910390fd5b8091505092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003348262000307565b9050919050565b620003468162000327565b81146200035257600080fd5b50565b60008151905062000366816200033b565b92915050565b60006020828403121562000385576200038462000302565b5b6000620003958482850162000355565b91505092915050565b600082825260208201905092915050565b7f43616e206e6f74206265207a65726f2061646472657373000000000000000000600082015250565b6000620003e76017836200039e565b9150620003f482620003af565b602082019050919050565b600060208201905081810360008301526200041a81620003d8565b9050919050565b7f45524332303a206d696e7420746f207a65726f20616464726573730000000000600082015250565b600062000459601b836200039e565b9150620004668262000421565b602082019050919050565b600060208201905081810360008301526200048c816200044a565b9050919050565b6000819050919050565b620004a88162000493565b82525050565b6000602082019050620004c560008301846200049d565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620005078262000493565b9150620005148362000493565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200054c576200054b620004cb565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006200058f601b836200039e565b91506200059c8262000557565b602082019050919050565b60006020820190508181036000830152620005c28162000580565b9050919050565b6111f180620005d96000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610c94565b60405180910390f35b6100e660048036038101906100e19190610d4f565b6102b3565b6040516100f39190610daa565b60405180910390f35b6101046102d1565b6040516101119190610dd4565b60405180910390f35b610134600480360381019061012f9190610def565b6102db565b6040516101419190610daa565b60405180910390f35b6101526103d1565b60405161015f9190610e5e565b60405180910390f35b610182600480360381019061017d9190610d4f565b6103e8565b60405161018f9190610daa565b60405180910390f35b6101b260048036038101906101ad9190610e79565b61049b565b6040516101bf9190610dd4565b60405180910390f35b6101d06104e3565b6040516101dd9190610c94565b60405180910390f35b61020060048036038101906101fb9190610d4f565b610520565b60405161020d9190610daa565b60405180910390f35b610230600480360381019061022b9190610d4f565b61060a565b60405161023d9190610daa565b60405180910390f35b610260600480360381019061025b9190610ea6565b610628565b60405161026d9190610dd4565b60405180910390f35b60606040518060400160405280600781526020017f446f68726e696900000000000000000000000000000000000000000000000000815250905090565b60006102c76102c061070d565b8484610715565b6001905092915050565b6000600254905090565b60006102e88484846108e0565b6103c6846102f461070d565b6103c1856040518060400160405280601881526020017f45524332303a20616d6f756e74206578636565647320612e0000000000000000815250600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061037761070d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b929092919063ffffffff16565b610715565b600190509392505050565b6000600360009054906101000a900460ff16905090565b60006104916103f561070d565b8461048c856001600061040661070d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106af90919063ffffffff16565b610715565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606040518060400160405280600381526020017f44484e0000000000000000000000000000000000000000000000000000000000815250905090565b600061060061052d61070d565b846105fb856040518060400160405280601e81526020017f45524332303a2064656372656173656420612e2062656c6f77207a65726f00008152506001600061057461070d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b929092919063ffffffff16565b610715565b6001905092915050565b600061061e61061761070d565b84846108e0565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008082846106be9190610f15565b905083811015610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa90610fb7565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077c90611023565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec9061108f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108d39190610dd4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610950576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610947906110fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790611167565b60405180910390fd5b6109cb838383610bf6565b610a53816040518060400160405280601d81526020017f45524332303a20616d6f756e7420657863656564732062616c616e63650000008152506000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b929092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ae6816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106af90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b859190610dd4565b60405180910390a3505050565b6000838311158290610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd19190610c94565b60405180910390fd5b5060008385610be99190611187565b9050809150509392505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c35578082015181840152602081019050610c1a565b83811115610c44576000848401525b50505050565b6000601f19601f8301169050919050565b6000610c6682610bfb565b610c708185610c06565b9350610c80818560208601610c17565b610c8981610c4a565b840191505092915050565b60006020820190508181036000830152610cae8184610c5b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ce682610cbb565b9050919050565b610cf681610cdb565b8114610d0157600080fd5b50565b600081359050610d1381610ced565b92915050565b6000819050919050565b610d2c81610d19565b8114610d3757600080fd5b50565b600081359050610d4981610d23565b92915050565b60008060408385031215610d6657610d65610cb6565b5b6000610d7485828601610d04565b9250506020610d8585828601610d3a565b9150509250929050565b60008115159050919050565b610da481610d8f565b82525050565b6000602082019050610dbf6000830184610d9b565b92915050565b610dce81610d19565b82525050565b6000602082019050610de96000830184610dc5565b92915050565b600080600060608486031215610e0857610e07610cb6565b5b6000610e1686828701610d04565b9350506020610e2786828701610d04565b9250506040610e3886828701610d3a565b9150509250925092565b600060ff82169050919050565b610e5881610e42565b82525050565b6000602082019050610e736000830184610e4f565b92915050565b600060208284031215610e8f57610e8e610cb6565b5b6000610e9d84828501610d04565b91505092915050565b60008060408385031215610ebd57610ebc610cb6565b5b6000610ecb85828601610d04565b9250506020610edc85828601610d04565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610f2082610d19565b9150610f2b83610d19565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610f6057610f5f610ee6565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000610fa1601b83610c06565b9150610fac82610f6b565b602082019050919050565b60006020820190508181036000830152610fd081610f94565b9050919050565b7f45524332303a612e2066726f6d207a65726f2061646472657373000000000000600082015250565b600061100d601a83610c06565b915061101882610fd7565b602082019050919050565b6000602082019050818103600083015261103c81611000565b9050919050565b7f45524332303a612e20746f207a65726f20616464726573730000000000000000600082015250565b6000611079601883610c06565b915061108482611043565b602082019050919050565b600060208201905081810360008301526110a88161106c565b9050919050565b7f45524332303a742e2066726f6d207a65726f2061646472657373000000000000600082015250565b60006110e5601a83610c06565b91506110f0826110af565b602082019050919050565b60006020820190508181036000830152611114816110d8565b9050919050565b7f45524332303a742e20746f207a65726f20616464726573730000000000000000600082015250565b6000611151601883610c06565b915061115c8261111b565b602082019050919050565b6000602082019050818103600083015261118081611144565b9050919050565b600061119282610d19565b915061119d83610d19565b9250828210156111b0576111af610ee6565b5b82820390509291505056fea264697066735822122016e5f0cfe82ef4a51a167f876dceb08a52b483ad3394b40ff7cbe947dcc6569164736f6c634300080a0033000000000000000000000000c50378568ab1e0563cae0b5b729d3069c1000878
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610c94565b60405180910390f35b6100e660048036038101906100e19190610d4f565b6102b3565b6040516100f39190610daa565b60405180910390f35b6101046102d1565b6040516101119190610dd4565b60405180910390f35b610134600480360381019061012f9190610def565b6102db565b6040516101419190610daa565b60405180910390f35b6101526103d1565b60405161015f9190610e5e565b60405180910390f35b610182600480360381019061017d9190610d4f565b6103e8565b60405161018f9190610daa565b60405180910390f35b6101b260048036038101906101ad9190610e79565b61049b565b6040516101bf9190610dd4565b60405180910390f35b6101d06104e3565b6040516101dd9190610c94565b60405180910390f35b61020060048036038101906101fb9190610d4f565b610520565b60405161020d9190610daa565b60405180910390f35b610230600480360381019061022b9190610d4f565b61060a565b60405161023d9190610daa565b60405180910390f35b610260600480360381019061025b9190610ea6565b610628565b60405161026d9190610dd4565b60405180910390f35b60606040518060400160405280600781526020017f446f68726e696900000000000000000000000000000000000000000000000000815250905090565b60006102c76102c061070d565b8484610715565b6001905092915050565b6000600254905090565b60006102e88484846108e0565b6103c6846102f461070d565b6103c1856040518060400160405280601881526020017f45524332303a20616d6f756e74206578636565647320612e0000000000000000815250600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061037761070d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b929092919063ffffffff16565b610715565b600190509392505050565b6000600360009054906101000a900460ff16905090565b60006104916103f561070d565b8461048c856001600061040661070d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106af90919063ffffffff16565b610715565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606040518060400160405280600381526020017f44484e0000000000000000000000000000000000000000000000000000000000815250905090565b600061060061052d61070d565b846105fb856040518060400160405280601e81526020017f45524332303a2064656372656173656420612e2062656c6f77207a65726f00008152506001600061057461070d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b929092919063ffffffff16565b610715565b6001905092915050565b600061061e61061761070d565b84846108e0565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008082846106be9190610f15565b905083811015610703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fa90610fb7565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077c90611023565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec9061108f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108d39190610dd4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610950576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610947906110fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790611167565b60405180910390fd5b6109cb838383610bf6565b610a53816040518060400160405280601d81526020017f45524332303a20616d6f756e7420657863656564732062616c616e63650000008152506000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b929092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ae6816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106af90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b859190610dd4565b60405180910390a3505050565b6000838311158290610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd19190610c94565b60405180910390fd5b5060008385610be99190611187565b9050809150509392505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c35578082015181840152602081019050610c1a565b83811115610c44576000848401525b50505050565b6000601f19601f8301169050919050565b6000610c6682610bfb565b610c708185610c06565b9350610c80818560208601610c17565b610c8981610c4a565b840191505092915050565b60006020820190508181036000830152610cae8184610c5b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ce682610cbb565b9050919050565b610cf681610cdb565b8114610d0157600080fd5b50565b600081359050610d1381610ced565b92915050565b6000819050919050565b610d2c81610d19565b8114610d3757600080fd5b50565b600081359050610d4981610d23565b92915050565b60008060408385031215610d6657610d65610cb6565b5b6000610d7485828601610d04565b9250506020610d8585828601610d3a565b9150509250929050565b60008115159050919050565b610da481610d8f565b82525050565b6000602082019050610dbf6000830184610d9b565b92915050565b610dce81610d19565b82525050565b6000602082019050610de96000830184610dc5565b92915050565b600080600060608486031215610e0857610e07610cb6565b5b6000610e1686828701610d04565b9350506020610e2786828701610d04565b9250506040610e3886828701610d3a565b9150509250925092565b600060ff82169050919050565b610e5881610e42565b82525050565b6000602082019050610e736000830184610e4f565b92915050565b600060208284031215610e8f57610e8e610cb6565b5b6000610e9d84828501610d04565b91505092915050565b60008060408385031215610ebd57610ebc610cb6565b5b6000610ecb85828601610d04565b9250506020610edc85828601610d04565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610f2082610d19565b9150610f2b83610d19565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610f6057610f5f610ee6565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000610fa1601b83610c06565b9150610fac82610f6b565b602082019050919050565b60006020820190508181036000830152610fd081610f94565b9050919050565b7f45524332303a612e2066726f6d207a65726f2061646472657373000000000000600082015250565b600061100d601a83610c06565b915061101882610fd7565b602082019050919050565b6000602082019050818103600083015261103c81611000565b9050919050565b7f45524332303a612e20746f207a65726f20616464726573730000000000000000600082015250565b6000611079601883610c06565b915061108482611043565b602082019050919050565b600060208201905081810360008301526110a88161106c565b9050919050565b7f45524332303a742e2066726f6d207a65726f2061646472657373000000000000600082015250565b60006110e5601a83610c06565b91506110f0826110af565b602082019050919050565b60006020820190508181036000830152611114816110d8565b9050919050565b7f45524332303a742e20746f207a65726f20616464726573730000000000000000600082015250565b6000611151601883610c06565b915061115c8261111b565b602082019050919050565b6000602082019050818103600083015261118081611144565b9050919050565b600061119282610d19565b915061119d83610d19565b9250828210156111b0576111af610ee6565b5b82820390509291505056fea264697066735822122016e5f0cfe82ef4a51a167f876dceb08a52b483ad3394b40ff7cbe947dcc6569164736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c50378568ab1e0563cae0b5b729d3069c1000878
-----Decoded View---------------
Arg [0] : wallet (address): 0xC50378568aB1E0563cae0B5b729D3069C1000878
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c50378568ab1e0563cae0b5b729d3069c1000878
Deployed Bytecode Sourcemap
19966:257:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11162:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13268:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12237:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13919:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12089:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14633:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12400:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11364:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15354:262;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12732:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12970:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11162:83;11199:13;11232:5;;;;;;;;;;;;;;;;;11225:12;;11162:83;:::o;13268:169::-;13351:4;13368:39;13377:12;:10;:12::i;:::-;13391:7;13400:6;13368:8;:39::i;:::-;13425:4;13418:11;;13268:169;;;;:::o;12237:100::-;12290:7;12317:12;;12310:19;;12237:100;:::o;13919:305::-;14025:4;14042:36;14052:6;14060:9;14071:6;14042:9;:36::i;:::-;14089:105;14098:6;14106:12;:10;:12::i;:::-;14120:73;14158:6;14120:73;;;;;;;;;;;;;;;;;:11;:19;14132:6;14120:19;;;;;;;;;;;;;;;:33;14140:12;:10;:12::i;:::-;14120:33;;;;;;;;;;;;;;;;:37;;:73;;;;;:::i;:::-;14089:8;:105::i;:::-;14212:4;14205:11;;13919:305;;;;;:::o;12089:83::-;12130:5;12155:9;;;;;;;;;;;12148:16;;12089:83;:::o;14633:218::-;14721:4;14738:83;14747:12;:10;:12::i;:::-;14761:7;14770:50;14809:10;14770:11;:25;14782:12;:10;:12::i;:::-;14770:25;;;;;;;;;;;;;;;:34;14796:7;14770:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;14738:8;:83::i;:::-;14839:4;14832:11;;14633:218;;;;:::o;12400:119::-;12466:7;12493:9;:18;12503:7;12493:18;;;;;;;;;;;;;;;;12486:25;;12400:119;;;:::o;11364:87::-;11403:13;11436:7;;;;;;;;;;;;;;;;;11429:14;;11364:87;:::o;15354:262::-;15447:4;15464:122;15473:12;:10;:12::i;:::-;15487:7;15496:89;15535:15;15496:89;;;;;;;;;;;;;;;;;:11;:25;15508:12;:10;:12::i;:::-;15496:25;;;;;;;;;;;;;;;:34;15522:7;15496:34;;;;;;;;;;;;;;;;:38;;:89;;;;;:::i;:::-;15464:8;:122::i;:::-;15604:4;15597:11;;15354:262;;;;:::o;12732:175::-;12818:4;12835:42;12845:12;:10;:12::i;:::-;12859:9;12870:6;12835:9;:42::i;:::-;12895:4;12888:11;;12732:175;;;;:::o;12970:151::-;13059:7;13086:11;:18;13098:5;13086:18;;;;;;;;;;;;;;;:27;13105:7;13086:27;;;;;;;;;;;;;;;;13079:34;;12970:151;;;;:::o;907:181::-;965:7;985:9;1001:1;997;:5;;;;:::i;:::-;985:17;;1026:1;1021;:6;;1013:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;1079:1;1072:8;;;907:181;;;;:::o;8743:98::-;8796:7;8823:10;8816:17;;8743:98;:::o;18450:326::-;18569:1;18552:19;;:5;:19;;;;18544:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;18640:1;18621:21;;:7;:21;;;;18613:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;18714:6;18684:11;:18;18696:5;18684:18;;;;;;;;;;;;;;;:27;18703:7;18684:27;;;;;;;;;;;;;;;:36;;;;18752:7;18736:32;;18745:5;18736:32;;;18761:6;18736:32;;;;;;:::i;:::-;;;;;;;;18450:326;;;:::o;16106:508::-;16230:1;16212:20;;:6;:20;;;;16204:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;16303:1;16282:23;;:9;:23;;;;16274:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;16347:47;16368:6;16376:9;16387:6;16347:20;:47::i;:::-;16427:62;16449:6;16427:62;;;;;;;;;;;;;;;;;:9;:17;16437:6;16427:17;;;;;;;;;;;;;;;;:21;;:62;;;;;:::i;:::-;16407:9;:17;16417:6;16407:17;;;;;;;;;;;;;;;:82;;;;16523:32;16548:6;16523:9;:20;16533:9;16523:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;16500:9;:20;16510:9;16500:20;;;;;;;;;;;;;;;:55;;;;16588:9;16571:35;;16580:6;16571:35;;;16599:6;16571:35;;;;;;:::i;:::-;;;;;;;;16106:508;;;:::o;1810:192::-;1896:7;1929:1;1924;:6;;1932:12;1916:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;1956:9;1972:1;1968;:5;;;;:::i;:::-;1956:17;;1993:1;1986:8;;;1810:192;;;;;:::o;19801:92::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:474::-;5304:6;5312;5361:2;5349:9;5340:7;5336:23;5332:32;5329:119;;;5367:79;;:::i;:::-;5329:119;5487:1;5512:53;5557:7;5548:6;5537:9;5533:22;5512:53;:::i;:::-;5502:63;;5458:117;5614:2;5640:53;5685:7;5676:6;5665:9;5661:22;5640:53;:::i;:::-;5630:63;;5585:118;5236:474;;;;;:::o;5716:180::-;5764:77;5761:1;5754:88;5861:4;5858:1;5851:15;5885:4;5882:1;5875:15;5902:305;5942:3;5961:20;5979:1;5961:20;:::i;:::-;5956:25;;5995:20;6013:1;5995:20;:::i;:::-;5990:25;;6149:1;6081:66;6077:74;6074:1;6071:81;6068:107;;;6155:18;;:::i;:::-;6068:107;6199:1;6196;6192:9;6185:16;;5902:305;;;;:::o;6213:177::-;6353:29;6349:1;6341:6;6337:14;6330:53;6213:177;:::o;6396:366::-;6538:3;6559:67;6623:2;6618:3;6559:67;:::i;:::-;6552:74;;6635:93;6724:3;6635:93;:::i;:::-;6753:2;6748:3;6744:12;6737:19;;6396:366;;;:::o;6768:419::-;6934:4;6972:2;6961:9;6957:18;6949:26;;7021:9;7015:4;7011:20;7007:1;6996:9;6992:17;6985:47;7049:131;7175:4;7049:131;:::i;:::-;7041:139;;6768:419;;;:::o;7193:176::-;7333:28;7329:1;7321:6;7317:14;7310:52;7193:176;:::o;7375:366::-;7517:3;7538:67;7602:2;7597:3;7538:67;:::i;:::-;7531:74;;7614:93;7703:3;7614:93;:::i;:::-;7732:2;7727:3;7723:12;7716:19;;7375:366;;;:::o;7747:419::-;7913:4;7951:2;7940:9;7936:18;7928:26;;8000:9;7994:4;7990:20;7986:1;7975:9;7971:17;7964:47;8028:131;8154:4;8028:131;:::i;:::-;8020:139;;7747:419;;;:::o;8172:174::-;8312:26;8308:1;8300:6;8296:14;8289:50;8172:174;:::o;8352:366::-;8494:3;8515:67;8579:2;8574:3;8515:67;:::i;:::-;8508:74;;8591:93;8680:3;8591:93;:::i;:::-;8709:2;8704:3;8700:12;8693:19;;8352:366;;;:::o;8724:419::-;8890:4;8928:2;8917:9;8913:18;8905:26;;8977:9;8971:4;8967:20;8963:1;8952:9;8948:17;8941:47;9005:131;9131:4;9005:131;:::i;:::-;8997:139;;8724:419;;;:::o;9149:176::-;9289:28;9285:1;9277:6;9273:14;9266:52;9149:176;:::o;9331:366::-;9473:3;9494:67;9558:2;9553:3;9494:67;:::i;:::-;9487:74;;9570:93;9659:3;9570:93;:::i;:::-;9688:2;9683:3;9679:12;9672:19;;9331:366;;;:::o;9703:419::-;9869:4;9907:2;9896:9;9892:18;9884:26;;9956:9;9950:4;9946:20;9942:1;9931:9;9927:17;9920:47;9984:131;10110:4;9984:131;:::i;:::-;9976:139;;9703:419;;;:::o;10128:174::-;10268:26;10264:1;10256:6;10252:14;10245:50;10128:174;:::o;10308:366::-;10450:3;10471:67;10535:2;10530:3;10471:67;:::i;:::-;10464:74;;10547:93;10636:3;10547:93;:::i;:::-;10665:2;10660:3;10656:12;10649:19;;10308:366;;;:::o;10680:419::-;10846:4;10884:2;10873:9;10869:18;10861:26;;10933:9;10927:4;10923:20;10919:1;10908:9;10904:17;10897:47;10961:131;11087:4;10961:131;:::i;:::-;10953:139;;10680:419;;;:::o;11105:191::-;11145:4;11165:20;11183:1;11165:20;:::i;:::-;11160:25;;11199:20;11217:1;11199:20;:::i;:::-;11194:25;;11238:1;11235;11232:8;11229:34;;;11243:18;;:::i;:::-;11229:34;11288:1;11285;11281:9;11273:17;;11105:191;;;;:::o
Swarm Source
ipfs://16e5f0cfe82ef4a51a167f876dceb08a52b483ad3394b40ff7cbe947dcc65691
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.