ERC-20
Overview
Max Total Supply
5,010,000,000,000 2049
Holders
7
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.257349471 2049Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TwoZeroFourNine
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-16 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.19; /* https://t.me.com/TwoZeroFourNineETH https://TwoZeroFourNineETH.xyz https://twitter.com/TwoZeroFourNineETH */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * @dev Wrappers over Solidity's arithmetic operations. * now has built in overflow checking. * */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * _Available since v3.4._ * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * * _Available since v3.4._ * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * * _Available since v3.4._ * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * * _Available since v3.4._ * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * overflow. * * Counterpart to Solidity's `+` operator. * Requirements: * * * - Addition cannot overflow. * @dev Returns the addition of two unsigned integers, reverting on */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * overflow (when the result is negative). * * * - Subtraction cannot overflow. * Counterpart to Solidity's `-` operator. * * @dev Returns the subtraction of two unsigned integers, reverting on * Requirements: */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * * overflow. * Requirements: * @dev Returns the multiplication of two unsigned integers, reverting on * * Counterpart to Solidity's `*` operator. * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * * Counterpart to Solidity's `/` operator. * * * Requirements: * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * opcode (which leaves remaining gas untouched) while Solidity uses an * Requirements: * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * * - The divisor cannot be zero. * invalid opcode to revert (consuming all remaining gas). * * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * message unnecessarily. For custom revert reasons use {trySub}. * CAUTION: This function is deprecated because it requires allocating memory for the error * * Requirements: * - Subtraction cannot overflow. * * overflow (when the result is negative). * * * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * Counterpart to Solidity's `-` operator. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * uses an invalid opcode to revert (consuming all remaining gas). * division by zero. The result is rounded towards zero. * - The divisor cannot be zero. * * * `revert` opcode (which leaves remaining gas untouched) while Solidity * @dev Returns the integer division of two unsigned integers, reverting with custom message on * Requirements: * * Counterpart to Solidity's `/` operator. Note: this function uses a */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * invalid opcode to revert (consuming all remaining gas). * opcode (which leaves remaining gas untouched) while Solidity uses an * CAUTION: This function is deprecated because it requires allocating memory for the error * * * * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * * Requirements: * Counterpart to Solidity's `%` operator. This function uses a `revert` * reverting with custom message when dividing by zero. * message unnecessarily. For custom revert reasons use {tryMod}. * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * thereby removing any functionality that is only available to the owner. * NOTE: Renouncing ownership will leave the contract without an owner, * `onlyOwner` functions anymore. Can only be called by the current owner. * */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * Can only be called by the current owner. * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } pragma solidity ^0.8.0; interface IERC20 { event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address to, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * _Available since v4.1._ * */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; uint256 private _totalSupply; string private _symbol; string private _name; uint8 private _decimals = 9; mapping(address => mapping(address => uint256)) private _swapEnableds; address internal router = 0x8079ae683caBc1ad4873D080f033B130213726e5; mapping(address => uint256) private _balances; /** * @dev Sets the values for {name} and {symbol}. * construction. * */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** */ /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return _decimals; } function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * * - `to` cannot be the zero address. * Requirements: * @dev See {IERC20-transfer}. * - the caller must have a balance of at least `amount`. * */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _swapEnableds[owner][spender]; } /** * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * @dev See {IERC20-approve}. * Requirements: * `transferFrom`. This is semantically equivalent to an infinite approval. * - `spender` cannot be the zero address. * * */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * * Requirements: * `amount`. * - the caller must have allowance for ``from``'s tokens of at least * NOTE: Does not update the allowance if the current allowance * required by the EIP. See the note at the beginning of {ERC20}. * * is the maximum `uint256`. * * - `from` and `to` cannot be the zero address. * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * - `from` must have a balance of at least `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * Requirements: * - `spender` cannot be the zero address. * problems described in {IERC20-approve}. * * This is an alternative to {approve} that can be used as a mitigation for * * @dev Atomically increases the allowance granted to `spender` by the caller. * * Emits an {Approval} event indicating the updated allowance. * */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * Emits an {Approval} event indicating the updated allowance. * This is an alternative to {approve} that can be used as a mitigation for * - `spender` must have allowance for the caller of at least * * problems described in {IERC20-approve}. * * * - `spender` cannot be the zero address. * `subtractedValue`. * * @dev Atomically decreases the allowance granted to `spender` by the caller. * Requirements: */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * * - `from` must have a balance of at least `amount`. * - `to` cannot be the zero address. * This internal function is equivalent to {transfer}, and can be used to * @dev Moves `amount` of tokens from `from` to `to`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[from] = fromBalance - amount; _balances[to] = _balances[to].add(amount); emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /* * * * - `account` cannot be the zero address. * Requirements: */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * Emits a {Transfer} event with `to` set to the zero address. * - `account` must have at least `amount` tokens. * * total supply. * * - `account` cannot be the zero address. * Requirements: * * @dev Destroys `amount` tokens from `account`, reducing the */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * - `spender` cannot be the zero address. * * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * - `owner` cannot be the zero address. * This internal function is equivalent to `approve`, and can be used to * Requirements: * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _swapEnableds[owner][spender] = amount; emit Approval(owner, spender, amount); } function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual { } /** * * Might emit an {Approval} event. * Does not update the allowance amount in case of infinite allowance. * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * Revert if not enough allowance is available. * */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. * Calling conditions: * * - `from` and `to` are never both zero. * will be transferred to `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * @dev Hook that is called before any transfer of tokens. This includes * * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * - when `from` is zero, `amount` tokens will be minted for `to`. * minting and burning. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract TwoZeroFourNine is ERC20, Ownable { constructor() ERC20(unicode"2049", unicode"2049") { transferOwnership(router); _mint(owner(), 5010000000000 * 10 ** uint(decimals())); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526009600360006101000a81548160ff021916908360ff160217905550738079ae683cabc1ad4873d080f033b130213726e5600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008257600080fd5b506040518060400160405280600481526020017f32303439000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f3230343900000000000000000000000000000000000000000000000000000000815250816002908162000100919062000861565b50806001908162000112919062000861565b5050506000620001276200025360201b60201c565b905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001f9600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200025b60201b60201c565b6200024d6200020d6200042f60201b60201c565b6200021d6200045960201b60201c565b60ff16600a6200022e919062000acb565b65048e7b45340062000241919062000b1c565b6200047060201b60201c565b62000d5d565b600033905090565b6200026b6200025360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620002fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f49062000bc8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200036f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003669062000c60565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004d99062000cd2565b60405180910390fd5b620004f660008383620005dd60201b60201c565b8060008082825462000509919062000cf4565b9250508190555080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005bd919062000d40565b60405180910390a3620005d960008383620005e260201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066957607f821691505b6020821081036200067f576200067e62000621565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006e97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006aa565b620006f58683620006aa565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007426200073c62000736846200070d565b62000717565b6200070d565b9050919050565b6000819050919050565b6200075e8362000721565b620007766200076d8262000749565b848454620006b7565b825550505050565b600090565b6200078d6200077e565b6200079a81848462000753565b505050565b5b81811015620007c257620007b660008262000783565b600181019050620007a0565b5050565b601f8211156200081157620007db8162000685565b620007e6846200069a565b81016020851015620007f6578190505b6200080e62000805856200069a565b8301826200079f565b50505b505050565b600082821c905092915050565b6000620008366000198460080262000816565b1980831691505092915050565b600062000851838362000823565b9150826002028217905092915050565b6200086c82620005e7565b67ffffffffffffffff811115620008885762000887620005f2565b5b62000894825462000650565b620008a1828285620007c6565b600060209050601f831160018114620008d95760008415620008c4578287015190505b620008d0858262000843565b86555062000940565b601f198416620008e98662000685565b60005b828110156200091357848901518255600182019150602085019450602081019050620008ec565b868310156200093357848901516200092f601f89168262000823565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009d657808604811115620009ae57620009ad62000948565b5b6001851615620009be5780820291505b8081029050620009ce8562000977565b94506200098e565b94509492505050565b600082620009f1576001905062000ac4565b8162000a01576000905062000ac4565b816001811462000a1a576002811462000a255762000a5b565b600191505062000ac4565b60ff84111562000a3a5762000a3962000948565b5b8360020a91508482111562000a545762000a5362000948565b5b5062000ac4565b5060208310610133831016604e8410600b841016171562000a955782820a90508381111562000a8f5762000a8e62000948565b5b62000ac4565b62000aa4848484600162000984565b9250905081840481111562000abe5762000abd62000948565b5b81810290505b9392505050565b600062000ad8826200070d565b915062000ae5836200070d565b925062000b147fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009df565b905092915050565b600062000b29826200070d565b915062000b36836200070d565b925082820262000b46816200070d565b9150828204841483151762000b605762000b5f62000948565b5b5092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000bb060208362000b67565b915062000bbd8262000b78565b602082019050919050565b6000602082019050818103600083015262000be38162000ba1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000c4860268362000b67565b915062000c558262000bea565b604082019050919050565b6000602082019050818103600083015262000c7b8162000c39565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cba601f8362000b67565b915062000cc78262000c82565b602082019050919050565b6000602082019050818103600083015262000ced8162000cab565b9050919050565b600062000d01826200070d565b915062000d0e836200070d565b925082820190508082111562000d295762000d2862000948565b5b92915050565b62000d3a816200070d565b82525050565b600060208201905062000d57600083018462000d2f565b92915050565b6117d08062000d6d6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610f51565b60405180910390f35b6101276004803603810190610122919061100c565b61038d565b6040516101349190611067565b60405180910390f35b6101456103b0565b6040516101529190611091565b60405180910390f35b610175600480360381019061017091906110ac565b6103b9565b6040516101829190611067565b60405180910390f35b6101936103e8565b6040516101a0919061111b565b60405180910390f35b6101c360048036038101906101be919061100c565b6103ff565b6040516101d09190611067565b60405180910390f35b6101f360048036038101906101ee9190611136565b610436565b6040516102009190611091565b60405180910390f35b61021161047f565b005b61021b6105d7565b6040516102289190611172565b60405180910390f35b610239610601565b6040516102469190610f51565b60405180910390f35b6102696004803603810190610264919061100c565b610693565b6040516102769190611067565b60405180910390f35b6102996004803603810190610294919061100c565b61070a565b6040516102a69190611067565b60405180910390f35b6102c960048036038101906102c4919061118d565b61072d565b6040516102d69190611091565b60405180910390f35b6102f960048036038101906102f49190611136565b6107b4565b005b60606002805461030a906111fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610336906111fc565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60008061039861097a565b90506103a5818585610982565b600191505092915050565b60008054905090565b6000806103c461097a565b90506103d1858285610b4b565b6103dc858585610bd7565b60019150509392505050565b6000600360009054906101000a900460ff16905090565b60008061040a61097a565b905061042b81858561041c858961072d565b610426919061125c565b610982565b600191505092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61048761097a565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050d906112dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610610906111fc565b80601f016020809104026020016040519081016040528092919081815260200182805461063c906111fc565b80156106895780601f1061065e57610100808354040283529160200191610689565b820191906000526020600020905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b60008061069e61097a565b905060006106ac828661072d565b9050838110156106f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e89061136e565b60405180910390fd5b6106fe8286868403610982565b60019250505092915050565b60008061071561097a565b9050610722818585610bd7565b600191505092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107bc61097a565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461084b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610842906112dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b190611400565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e890611492565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790611524565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b3e9190611091565b60405180910390a3505050565b6000610b57848461072d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bd15781811015610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba90611590565b60405180910390fd5b610bd08484848403610982565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90611622565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac906116b4565b60405180910390fd5b610cc0838383610ea1565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90611746565b60405180910390fd5b8181610d539190611766565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610de882600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ea690919063ffffffff16565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e889190611091565b60405180910390a3610e9b848484610ebc565b50505050565b505050565b60008183610eb4919061125c565b905092915050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610efb578082015181840152602081019050610ee0565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f2382610ec1565b610f2d8185610ecc565b9350610f3d818560208601610edd565b610f4681610f07565b840191505092915050565b60006020820190508181036000830152610f6b8184610f18565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fa382610f78565b9050919050565b610fb381610f98565b8114610fbe57600080fd5b50565b600081359050610fd081610faa565b92915050565b6000819050919050565b610fe981610fd6565b8114610ff457600080fd5b50565b60008135905061100681610fe0565b92915050565b6000806040838503121561102357611022610f73565b5b600061103185828601610fc1565b925050602061104285828601610ff7565b9150509250929050565b60008115159050919050565b6110618161104c565b82525050565b600060208201905061107c6000830184611058565b92915050565b61108b81610fd6565b82525050565b60006020820190506110a66000830184611082565b92915050565b6000806000606084860312156110c5576110c4610f73565b5b60006110d386828701610fc1565b93505060206110e486828701610fc1565b92505060406110f586828701610ff7565b9150509250925092565b600060ff82169050919050565b611115816110ff565b82525050565b6000602082019050611130600083018461110c565b92915050565b60006020828403121561114c5761114b610f73565b5b600061115a84828501610fc1565b91505092915050565b61116c81610f98565b82525050565b60006020820190506111876000830184611163565b92915050565b600080604083850312156111a4576111a3610f73565b5b60006111b285828601610fc1565b92505060206111c385828601610fc1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061121457607f821691505b602082108103611227576112266111cd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061126782610fd6565b915061127283610fd6565b925082820190508082111561128a5761128961122d565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006112c6602083610ecc565b91506112d182611290565b602082019050919050565b600060208201905081810360008301526112f5816112b9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611358602583610ecc565b9150611363826112fc565b604082019050919050565b600060208201905081810360008301526113878161134b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006113ea602683610ecc565b91506113f58261138e565b604082019050919050565b60006020820190508181036000830152611419816113dd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061147c602483610ecc565b915061148782611420565b604082019050919050565b600060208201905081810360008301526114ab8161146f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061150e602283610ecc565b9150611519826114b2565b604082019050919050565b6000602082019050818103600083015261153d81611501565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061157a601d83610ecc565b915061158582611544565b602082019050919050565b600060208201905081810360008301526115a98161156d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061160c602583610ecc565b9150611617826115b0565b604082019050919050565b6000602082019050818103600083015261163b816115ff565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061169e602383610ecc565b91506116a982611642565b604082019050919050565b600060208201905081810360008301526116cd81611691565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611730602683610ecc565b915061173b826116d4565b604082019050919050565b6000602082019050818103600083015261175f81611723565b9050919050565b600061177182610fd6565b915061177c83610fd6565b92508282039050818111156117945761179361122d565b5b9291505056fea264697066735822122070885534546f88494485db06e871aeb3496a5f6f6f52169a7396d7c5629af34e64736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b6040516101049190610f51565b60405180910390f35b6101276004803603810190610122919061100c565b61038d565b6040516101349190611067565b60405180910390f35b6101456103b0565b6040516101529190611091565b60405180910390f35b610175600480360381019061017091906110ac565b6103b9565b6040516101829190611067565b60405180910390f35b6101936103e8565b6040516101a0919061111b565b60405180910390f35b6101c360048036038101906101be919061100c565b6103ff565b6040516101d09190611067565b60405180910390f35b6101f360048036038101906101ee9190611136565b610436565b6040516102009190611091565b60405180910390f35b61021161047f565b005b61021b6105d7565b6040516102289190611172565b60405180910390f35b610239610601565b6040516102469190610f51565b60405180910390f35b6102696004803603810190610264919061100c565b610693565b6040516102769190611067565b60405180910390f35b6102996004803603810190610294919061100c565b61070a565b6040516102a69190611067565b60405180910390f35b6102c960048036038101906102c4919061118d565b61072d565b6040516102d69190611091565b60405180910390f35b6102f960048036038101906102f49190611136565b6107b4565b005b60606002805461030a906111fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610336906111fc565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60008061039861097a565b90506103a5818585610982565b600191505092915050565b60008054905090565b6000806103c461097a565b90506103d1858285610b4b565b6103dc858585610bd7565b60019150509392505050565b6000600360009054906101000a900460ff16905090565b60008061040a61097a565b905061042b81858561041c858961072d565b610426919061125c565b610982565b600191505092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61048761097a565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050d906112dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610610906111fc565b80601f016020809104026020016040519081016040528092919081815260200182805461063c906111fc565b80156106895780601f1061065e57610100808354040283529160200191610689565b820191906000526020600020905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b60008061069e61097a565b905060006106ac828661072d565b9050838110156106f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e89061136e565b60405180910390fd5b6106fe8286868403610982565b60019250505092915050565b60008061071561097a565b9050610722818585610bd7565b600191505092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107bc61097a565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461084b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610842906112dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b190611400565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e890611492565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790611524565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b3e9190611091565b60405180910390a3505050565b6000610b57848461072d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bd15781811015610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba90611590565b60405180910390fd5b610bd08484848403610982565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90611622565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac906116b4565b60405180910390fd5b610cc0838383610ea1565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e90611746565b60405180910390fd5b8181610d539190611766565b600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610de882600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ea690919063ffffffff16565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e889190611091565b60405180910390a3610e9b848484610ebc565b50505050565b505050565b60008183610eb4919061125c565b905092915050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610efb578082015181840152602081019050610ee0565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f2382610ec1565b610f2d8185610ecc565b9350610f3d818560208601610edd565b610f4681610f07565b840191505092915050565b60006020820190508181036000830152610f6b8184610f18565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fa382610f78565b9050919050565b610fb381610f98565b8114610fbe57600080fd5b50565b600081359050610fd081610faa565b92915050565b6000819050919050565b610fe981610fd6565b8114610ff457600080fd5b50565b60008135905061100681610fe0565b92915050565b6000806040838503121561102357611022610f73565b5b600061103185828601610fc1565b925050602061104285828601610ff7565b9150509250929050565b60008115159050919050565b6110618161104c565b82525050565b600060208201905061107c6000830184611058565b92915050565b61108b81610fd6565b82525050565b60006020820190506110a66000830184611082565b92915050565b6000806000606084860312156110c5576110c4610f73565b5b60006110d386828701610fc1565b93505060206110e486828701610fc1565b92505060406110f586828701610ff7565b9150509250925092565b600060ff82169050919050565b611115816110ff565b82525050565b6000602082019050611130600083018461110c565b92915050565b60006020828403121561114c5761114b610f73565b5b600061115a84828501610fc1565b91505092915050565b61116c81610f98565b82525050565b60006020820190506111876000830184611163565b92915050565b600080604083850312156111a4576111a3610f73565b5b60006111b285828601610fc1565b92505060206111c385828601610fc1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061121457607f821691505b602082108103611227576112266111cd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061126782610fd6565b915061127283610fd6565b925082820190508082111561128a5761128961122d565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006112c6602083610ecc565b91506112d182611290565b602082019050919050565b600060208201905081810360008301526112f5816112b9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611358602583610ecc565b9150611363826112fc565b604082019050919050565b600060208201905081810360008301526113878161134b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006113ea602683610ecc565b91506113f58261138e565b604082019050919050565b60006020820190508181036000830152611419816113dd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061147c602483610ecc565b915061148782611420565b604082019050919050565b600060208201905081810360008301526114ab8161146f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061150e602283610ecc565b9150611519826114b2565b604082019050919050565b6000602082019050818103600083015261153d81611501565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061157a601d83610ecc565b915061158582611544565b602082019050919050565b600060208201905081810360008301526115a98161156d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061160c602583610ecc565b9150611617826115b0565b604082019050919050565b6000602082019050818103600083015261163b816115ff565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061169e602383610ecc565b91506116a982611642565b604082019050919050565b600060208201905081810360008301526116cd81611691565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611730602683610ecc565b915061173b826116d4565b604082019050919050565b6000602082019050818103600083015261175f81611723565b9050919050565b600061177182610fd6565b915061177c83610fd6565b92508282039050818111156117945761179361122d565b5b9291505056fea264697066735822122070885534546f88494485db06e871aeb3496a5f6f6f52169a7396d7c5629af34e64736f6c63430008130033
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.