Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Gaming
Overview
Max Total Supply
200,000,217.86173 GXE
Holders
2,036 (0.00%)
Market
Price
$0.01 @ 0.000002 ETH (-2.80%)
Onchain Market Cap
$1,315,126.94
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
1 GXEValue
$0.01 ( ~3.75483043752323E-06 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
XGTokenAny
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.8.16; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract XGTokenAny is ERC20, ERC20Burnable, Ownable { event MinterTransferred(address indexed previousMinter, address indexed newMinter); address private _minter; address public immutable underlying; constructor(uint256 initialSupply, address owner, address minter_) ERC20("XENO Governance Token", "GXE") { _minter = minter_; _mint(owner, initialSupply * (10 ** decimals())); _transferOwnership(owner); underlying = address(0); } modifier onlyAuth() { require(_msgSender() == getMinter() || _msgSender() == owner(), "caller is not authorized."); _; } function mint(address to, uint256 amount) external onlyAuth returns (bool) { _mint(to, amount); return true; } function burn(address from, uint256 amount) external onlyAuth returns (bool) { require(from != address(0), "Invalid address: address(0x0)"); _burn(from, amount); return true; } function changeMinter(address newMinter) external onlyAuth { require(newMinter != address(0), "Invalid address: address(0x0)"); address oldMinter = _minter; _minter = newMinter; emit MinterTransferred(oldMinter, newMinter); } function getMinter() public view returns(address) { return _minter; } function getOwner() external view returns (address){ return owner(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract 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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead 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, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @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; } /** * @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 this function is * overridden; * * 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 virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - 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 _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `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; } /** * @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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens 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; } /** * @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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ 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"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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: * * - `account` cannot be the zero address. */ 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); } /** * @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 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); } /** * @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: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ 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); } } } /** * @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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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 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 calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"minter_","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":"previousMinter","type":"address"},{"indexed":true,"internalType":"address","name":"newMinter","type":"address"}],"name":"MinterTransferred","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMinter","type":"address"}],"name":"changeMinter","outputs":[],"stateMutability":"nonpayable","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":[],"name":"getMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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"},{"inputs":[],"name":"underlying","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b5060405162002d4538038062002d458339818101604052810190620000379190620004a8565b6040518060400160405280601581526020017f58454e4f20476f7665726e616e636520546f6b656e00000000000000000000008152506040518060400160405280600381526020017f47584500000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000774565b508060049081620000c6919062000774565b505050620000e9620000dd620001b560201b60201c565b620001bd60201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000166826200013f6200028360201b60201c565b600a6200014d9190620009eb565b856200015a919062000a3c565b6200028c60201b60201c565b6200017782620001bd60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505050505062000b89565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f59062000afe565b60405180910390fd5b6200031260008383620003f960201b60201c565b806002600082825462000326919062000b20565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003d9919062000b6c565b60405180910390a3620003f560008383620003fe60201b60201c565b5050565b505050565b505050565b600080fd5b6000819050919050565b6200041d8162000408565b81146200042957600080fd5b50565b6000815190506200043d8162000412565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004708262000443565b9050919050565b620004828162000463565b81146200048e57600080fd5b50565b600081519050620004a28162000477565b92915050565b600080600060608486031215620004c457620004c362000403565b5b6000620004d4868287016200042c565b9350506020620004e78682870162000491565b9250506040620004fa8682870162000491565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200058657607f821691505b6020821081036200059c576200059b6200053e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005c7565b620006128683620005c7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620006556200064f620006498462000408565b6200062a565b62000408565b9050919050565b6000819050919050565b620006718362000634565b6200068962000680826200065c565b848454620005d4565b825550505050565b600090565b620006a062000691565b620006ad81848462000666565b505050565b5b81811015620006d557620006c960008262000696565b600181019050620006b3565b5050565b601f8211156200072457620006ee81620005a2565b620006f984620005b7565b8101602085101562000709578190505b620007216200071885620005b7565b830182620006b2565b50505b505050565b600082821c905092915050565b6000620007496000198460080262000729565b1980831691505092915050565b600062000764838362000736565b9150826002028217905092915050565b6200077f8262000504565b67ffffffffffffffff8111156200079b576200079a6200050f565b5b620007a782546200056d565b620007b4828285620006d9565b600060209050601f831160018114620007ec5760008415620007d7578287015190505b620007e3858262000756565b86555062000853565b601f198416620007fc86620005a2565b60005b828110156200082657848901518255600182019150602085019450602081019050620007ff565b8683101562000846578489015162000842601f89168262000736565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620008e957808604811115620008c157620008c06200085b565b5b6001851615620008d15780820291505b8081029050620008e1856200088a565b9450620008a1565b94509492505050565b600082620009045760019050620009d7565b81620009145760009050620009d7565b81600181146200092d576002811462000938576200096e565b6001915050620009d7565b60ff8411156200094d576200094c6200085b565b5b8360020a9150848211156200096757620009666200085b565b5b50620009d7565b5060208310610133831016604e8410600b8410161715620009a85782820a905083811115620009a257620009a16200085b565b5b620009d7565b620009b7848484600162000897565b92509050818404811115620009d157620009d06200085b565b5b81810290505b9392505050565b600060ff82169050919050565b6000620009f88262000408565b915062000a0583620009de565b925062000a347fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620008f2565b905092915050565b600062000a498262000408565b915062000a568362000408565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000a925762000a916200085b565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ae6601f8362000a9d565b915062000af38262000aae565b602082019050919050565b6000602082019050818103600083015262000b198162000ad7565b9050919050565b600062000b2d8262000408565b915062000b3a8362000408565b925082820190508082111562000b555762000b546200085b565b5b92915050565b62000b668162000408565b82525050565b600060208201905062000b83600083018462000b5b565b92915050565b6080516121a062000ba5600039600061087001526121a06000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b85780639dc29fac1161007c5780639dc29fac14610367578063a457c2d714610397578063a9059cbb146103c7578063dd62ed3e146103f7578063f2fde38b14610427578063f36675171461044357610142565b8063715018a6146102e757806379cc6790146102f1578063893d20e81461030d5780638da5cb5b1461032b57806395d89b411461034957610142565b8063313ce5671161010a578063313ce567146101ff578063395093511461021d57806340c10f191461024d57806342966c681461027d5780636f307dc31461029957806370a08231146102b757610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b35780632c4d4d18146101e3575b600080fd5b61014f610461565b60405161015c91906116c0565b60405180910390f35b61017f600480360381019061017a919061177b565b6104f3565b60405161018c91906117d6565b60405180910390f35b61019d610516565b6040516101aa9190611800565b60405180910390f35b6101cd60048036038101906101c8919061181b565b610520565b6040516101da91906117d6565b60405180910390f35b6101fd60048036038101906101f8919061186e565b61054f565b005b610207610744565b60405161021491906118b7565b60405180910390f35b6102376004803603810190610232919061177b565b61074d565b60405161024491906117d6565b60405180910390f35b6102676004803603810190610262919061177b565b610784565b60405161027491906117d6565b60405180910390f35b610297600480360381019061029291906118d2565b61085a565b005b6102a161086e565b6040516102ae919061190e565b60405180910390f35b6102d160048036038101906102cc919061186e565b610892565b6040516102de9190611800565b60405180910390f35b6102ef6108da565b005b61030b6004803603810190610306919061177b565b6108ee565b005b61031561090e565b604051610322919061190e565b60405180910390f35b61033361091d565b604051610340919061190e565b60405180910390f35b610351610947565b60405161035e91906116c0565b60405180910390f35b610381600480360381019061037c919061177b565b6109d9565b60405161038e91906117d6565b60405180910390f35b6103b160048036038101906103ac919061177b565b610b1e565b6040516103be91906117d6565b60405180910390f35b6103e160048036038101906103dc919061177b565b610b95565b6040516103ee91906117d6565b60405180910390f35b610411600480360381019061040c9190611929565b610bb8565b60405161041e9190611800565b60405180910390f35b610441600480360381019061043c919061186e565b610c3f565b005b61044b610cc2565b604051610458919061190e565b60405180910390f35b60606003805461047090611998565b80601f016020809104026020016040519081016040528092919081815260200182805461049c90611998565b80156104e95780601f106104be576101008083540402835291602001916104e9565b820191906000526020600020905b8154815290600101906020018083116104cc57829003601f168201915b5050505050905090565b6000806104fe610cec565b905061050b818585610cf4565b600191505092915050565b6000600254905090565b60008061052b610cec565b9050610538858285610ebd565b610543858585610f49565b60019150509392505050565b610557610cc2565b73ffffffffffffffffffffffffffffffffffffffff16610575610cec565b73ffffffffffffffffffffffffffffffffffffffff1614806105d0575061059a61091d565b73ffffffffffffffffffffffffffffffffffffffff166105b8610cec565b73ffffffffffffffffffffffffffffffffffffffff16145b61060f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060690611a15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361067e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067590611a81565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f02ad39e5173f89bdd5497202bd74024b5da045106c3163ddb078d2e89ff6d6de60405160405180910390a35050565b60006012905090565b600080610758610cec565b905061077981858561076a8589610bb8565b6107749190611ad0565b610cf4565b600191505092915050565b600061078e610cc2565b73ffffffffffffffffffffffffffffffffffffffff166107ac610cec565b73ffffffffffffffffffffffffffffffffffffffff16148061080757506107d161091d565b73ffffffffffffffffffffffffffffffffffffffff166107ef610cec565b73ffffffffffffffffffffffffffffffffffffffff16145b610846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083d90611a15565b60405180910390fd5b61085083836111bf565b6001905092915050565b61086b610865610cec565b82611315565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e26114e2565b6108ec6000611560565b565b610900826108fa610cec565b83610ebd565b61090a8282611315565b5050565b600061091861091d565b905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461095690611998565b80601f016020809104026020016040519081016040528092919081815260200182805461098290611998565b80156109cf5780601f106109a4576101008083540402835291602001916109cf565b820191906000526020600020905b8154815290600101906020018083116109b257829003601f168201915b5050505050905090565b60006109e3610cc2565b73ffffffffffffffffffffffffffffffffffffffff16610a01610cec565b73ffffffffffffffffffffffffffffffffffffffff161480610a5c5750610a2661091d565b73ffffffffffffffffffffffffffffffffffffffff16610a44610cec565b73ffffffffffffffffffffffffffffffffffffffff16145b610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9290611a15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0190611a81565b60405180910390fd5b610b148383611315565b6001905092915050565b600080610b29610cec565b90506000610b378286610bb8565b905083811015610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390611b76565b60405180910390fd5b610b898286868403610cf4565b60019250505092915050565b600080610ba0610cec565b9050610bad818585610f49565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c476114e2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90611c08565b60405180910390fd5b610cbf81611560565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90611c9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990611d2c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610eb09190611800565b60405180910390a3505050565b6000610ec98484610bb8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f435781811015610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90611d98565b60405180910390fd5b610f428484848403610cf4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90611e2a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90611ebc565b60405180910390fd5b611032838383611626565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90611f4e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111a69190611800565b60405180910390a36111b984848461162b565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361122e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122590611fba565b60405180910390fd5b61123a60008383611626565b806002600082825461124c9190611ad0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112fd9190611800565b60405180910390a36113116000838361162b565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b9061204c565b60405180910390fd5b61139082600083611626565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d906120de565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114c99190611800565b60405180910390a36114dd8360008461162b565b505050565b6114ea610cec565b73ffffffffffffffffffffffffffffffffffffffff1661150861091d565b73ffffffffffffffffffffffffffffffffffffffff161461155e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115559061214a565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561166a57808201518184015260208101905061164f565b60008484015250505050565b6000601f19601f8301169050919050565b600061169282611630565b61169c818561163b565b93506116ac81856020860161164c565b6116b581611676565b840191505092915050565b600060208201905081810360008301526116da8184611687565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611712826116e7565b9050919050565b61172281611707565b811461172d57600080fd5b50565b60008135905061173f81611719565b92915050565b6000819050919050565b61175881611745565b811461176357600080fd5b50565b6000813590506117758161174f565b92915050565b60008060408385031215611792576117916116e2565b5b60006117a085828601611730565b92505060206117b185828601611766565b9150509250929050565b60008115159050919050565b6117d0816117bb565b82525050565b60006020820190506117eb60008301846117c7565b92915050565b6117fa81611745565b82525050565b600060208201905061181560008301846117f1565b92915050565b600080600060608486031215611834576118336116e2565b5b600061184286828701611730565b935050602061185386828701611730565b925050604061186486828701611766565b9150509250925092565b600060208284031215611884576118836116e2565b5b600061189284828501611730565b91505092915050565b600060ff82169050919050565b6118b18161189b565b82525050565b60006020820190506118cc60008301846118a8565b92915050565b6000602082840312156118e8576118e76116e2565b5b60006118f684828501611766565b91505092915050565b61190881611707565b82525050565b600060208201905061192360008301846118ff565b92915050565b600080604083850312156119405761193f6116e2565b5b600061194e85828601611730565b925050602061195f85828601611730565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806119b057607f821691505b6020821081036119c3576119c2611969565b5b50919050565b7f63616c6c6572206973206e6f7420617574686f72697a65642e00000000000000600082015250565b60006119ff60198361163b565b9150611a0a826119c9565b602082019050919050565b60006020820190508181036000830152611a2e816119f2565b9050919050565b7f496e76616c696420616464726573733a20616464726573732830783029000000600082015250565b6000611a6b601d8361163b565b9150611a7682611a35565b602082019050919050565b60006020820190508181036000830152611a9a81611a5e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611adb82611745565b9150611ae683611745565b9250828201905080821115611afe57611afd611aa1565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b6060258361163b565b9150611b6b82611b04565b604082019050919050565b60006020820190508181036000830152611b8f81611b53565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611bf260268361163b565b9150611bfd82611b96565b604082019050919050565b60006020820190508181036000830152611c2181611be5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c8460248361163b565b9150611c8f82611c28565b604082019050919050565b60006020820190508181036000830152611cb381611c77565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d1660228361163b565b9150611d2182611cba565b604082019050919050565b60006020820190508181036000830152611d4581611d09565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611d82601d8361163b565b9150611d8d82611d4c565b602082019050919050565b60006020820190508181036000830152611db181611d75565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611e1460258361163b565b9150611e1f82611db8565b604082019050919050565b60006020820190508181036000830152611e4381611e07565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ea660238361163b565b9150611eb182611e4a565b604082019050919050565b60006020820190508181036000830152611ed581611e99565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611f3860268361163b565b9150611f4382611edc565b604082019050919050565b60006020820190508181036000830152611f6781611f2b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611fa4601f8361163b565b9150611faf82611f6e565b602082019050919050565b60006020820190508181036000830152611fd381611f97565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061203660218361163b565b915061204182611fda565b604082019050919050565b6000602082019050818103600083015261206581612029565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006120c860228361163b565b91506120d38261206c565b604082019050919050565b600060208201905081810360008301526120f7816120bb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061213460208361163b565b915061213f826120fe565b602082019050919050565b6000602082019050818103600083015261216381612127565b905091905056fea26469706673582212208fc88bbe863331da2a5ddf68b396350ed661f24c9d8fbdb77085f6b83b68dab364736f6c634300081000330000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b96847e8beb5181b6fbc8d3f49c7a72bbab771a40000000000000000000000000a834205e101e612dbba3586ff74b549f1ee9de3
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b85780639dc29fac1161007c5780639dc29fac14610367578063a457c2d714610397578063a9059cbb146103c7578063dd62ed3e146103f7578063f2fde38b14610427578063f36675171461044357610142565b8063715018a6146102e757806379cc6790146102f1578063893d20e81461030d5780638da5cb5b1461032b57806395d89b411461034957610142565b8063313ce5671161010a578063313ce567146101ff578063395093511461021d57806340c10f191461024d57806342966c681461027d5780636f307dc31461029957806370a08231146102b757610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b35780632c4d4d18146101e3575b600080fd5b61014f610461565b60405161015c91906116c0565b60405180910390f35b61017f600480360381019061017a919061177b565b6104f3565b60405161018c91906117d6565b60405180910390f35b61019d610516565b6040516101aa9190611800565b60405180910390f35b6101cd60048036038101906101c8919061181b565b610520565b6040516101da91906117d6565b60405180910390f35b6101fd60048036038101906101f8919061186e565b61054f565b005b610207610744565b60405161021491906118b7565b60405180910390f35b6102376004803603810190610232919061177b565b61074d565b60405161024491906117d6565b60405180910390f35b6102676004803603810190610262919061177b565b610784565b60405161027491906117d6565b60405180910390f35b610297600480360381019061029291906118d2565b61085a565b005b6102a161086e565b6040516102ae919061190e565b60405180910390f35b6102d160048036038101906102cc919061186e565b610892565b6040516102de9190611800565b60405180910390f35b6102ef6108da565b005b61030b6004803603810190610306919061177b565b6108ee565b005b61031561090e565b604051610322919061190e565b60405180910390f35b61033361091d565b604051610340919061190e565b60405180910390f35b610351610947565b60405161035e91906116c0565b60405180910390f35b610381600480360381019061037c919061177b565b6109d9565b60405161038e91906117d6565b60405180910390f35b6103b160048036038101906103ac919061177b565b610b1e565b6040516103be91906117d6565b60405180910390f35b6103e160048036038101906103dc919061177b565b610b95565b6040516103ee91906117d6565b60405180910390f35b610411600480360381019061040c9190611929565b610bb8565b60405161041e9190611800565b60405180910390f35b610441600480360381019061043c919061186e565b610c3f565b005b61044b610cc2565b604051610458919061190e565b60405180910390f35b60606003805461047090611998565b80601f016020809104026020016040519081016040528092919081815260200182805461049c90611998565b80156104e95780601f106104be576101008083540402835291602001916104e9565b820191906000526020600020905b8154815290600101906020018083116104cc57829003601f168201915b5050505050905090565b6000806104fe610cec565b905061050b818585610cf4565b600191505092915050565b6000600254905090565b60008061052b610cec565b9050610538858285610ebd565b610543858585610f49565b60019150509392505050565b610557610cc2565b73ffffffffffffffffffffffffffffffffffffffff16610575610cec565b73ffffffffffffffffffffffffffffffffffffffff1614806105d0575061059a61091d565b73ffffffffffffffffffffffffffffffffffffffff166105b8610cec565b73ffffffffffffffffffffffffffffffffffffffff16145b61060f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060690611a15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361067e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067590611a81565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f02ad39e5173f89bdd5497202bd74024b5da045106c3163ddb078d2e89ff6d6de60405160405180910390a35050565b60006012905090565b600080610758610cec565b905061077981858561076a8589610bb8565b6107749190611ad0565b610cf4565b600191505092915050565b600061078e610cc2565b73ffffffffffffffffffffffffffffffffffffffff166107ac610cec565b73ffffffffffffffffffffffffffffffffffffffff16148061080757506107d161091d565b73ffffffffffffffffffffffffffffffffffffffff166107ef610cec565b73ffffffffffffffffffffffffffffffffffffffff16145b610846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083d90611a15565b60405180910390fd5b61085083836111bf565b6001905092915050565b61086b610865610cec565b82611315565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e26114e2565b6108ec6000611560565b565b610900826108fa610cec565b83610ebd565b61090a8282611315565b5050565b600061091861091d565b905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461095690611998565b80601f016020809104026020016040519081016040528092919081815260200182805461098290611998565b80156109cf5780601f106109a4576101008083540402835291602001916109cf565b820191906000526020600020905b8154815290600101906020018083116109b257829003601f168201915b5050505050905090565b60006109e3610cc2565b73ffffffffffffffffffffffffffffffffffffffff16610a01610cec565b73ffffffffffffffffffffffffffffffffffffffff161480610a5c5750610a2661091d565b73ffffffffffffffffffffffffffffffffffffffff16610a44610cec565b73ffffffffffffffffffffffffffffffffffffffff16145b610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9290611a15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0190611a81565b60405180910390fd5b610b148383611315565b6001905092915050565b600080610b29610cec565b90506000610b378286610bb8565b905083811015610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390611b76565b60405180910390fd5b610b898286868403610cf4565b60019250505092915050565b600080610ba0610cec565b9050610bad818585610f49565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c476114e2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90611c08565b60405180910390fd5b610cbf81611560565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90611c9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990611d2c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610eb09190611800565b60405180910390a3505050565b6000610ec98484610bb8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f435781811015610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90611d98565b60405180910390fd5b610f428484848403610cf4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90611e2a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90611ebc565b60405180910390fd5b611032838383611626565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90611f4e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111a69190611800565b60405180910390a36111b984848461162b565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361122e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122590611fba565b60405180910390fd5b61123a60008383611626565b806002600082825461124c9190611ad0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112fd9190611800565b60405180910390a36113116000838361162b565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b9061204c565b60405180910390fd5b61139082600083611626565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d906120de565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114c99190611800565b60405180910390a36114dd8360008461162b565b505050565b6114ea610cec565b73ffffffffffffffffffffffffffffffffffffffff1661150861091d565b73ffffffffffffffffffffffffffffffffffffffff161461155e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115559061214a565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561166a57808201518184015260208101905061164f565b60008484015250505050565b6000601f19601f8301169050919050565b600061169282611630565b61169c818561163b565b93506116ac81856020860161164c565b6116b581611676565b840191505092915050565b600060208201905081810360008301526116da8184611687565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611712826116e7565b9050919050565b61172281611707565b811461172d57600080fd5b50565b60008135905061173f81611719565b92915050565b6000819050919050565b61175881611745565b811461176357600080fd5b50565b6000813590506117758161174f565b92915050565b60008060408385031215611792576117916116e2565b5b60006117a085828601611730565b92505060206117b185828601611766565b9150509250929050565b60008115159050919050565b6117d0816117bb565b82525050565b60006020820190506117eb60008301846117c7565b92915050565b6117fa81611745565b82525050565b600060208201905061181560008301846117f1565b92915050565b600080600060608486031215611834576118336116e2565b5b600061184286828701611730565b935050602061185386828701611730565b925050604061186486828701611766565b9150509250925092565b600060208284031215611884576118836116e2565b5b600061189284828501611730565b91505092915050565b600060ff82169050919050565b6118b18161189b565b82525050565b60006020820190506118cc60008301846118a8565b92915050565b6000602082840312156118e8576118e76116e2565b5b60006118f684828501611766565b91505092915050565b61190881611707565b82525050565b600060208201905061192360008301846118ff565b92915050565b600080604083850312156119405761193f6116e2565b5b600061194e85828601611730565b925050602061195f85828601611730565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806119b057607f821691505b6020821081036119c3576119c2611969565b5b50919050565b7f63616c6c6572206973206e6f7420617574686f72697a65642e00000000000000600082015250565b60006119ff60198361163b565b9150611a0a826119c9565b602082019050919050565b60006020820190508181036000830152611a2e816119f2565b9050919050565b7f496e76616c696420616464726573733a20616464726573732830783029000000600082015250565b6000611a6b601d8361163b565b9150611a7682611a35565b602082019050919050565b60006020820190508181036000830152611a9a81611a5e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611adb82611745565b9150611ae683611745565b9250828201905080821115611afe57611afd611aa1565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b6060258361163b565b9150611b6b82611b04565b604082019050919050565b60006020820190508181036000830152611b8f81611b53565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611bf260268361163b565b9150611bfd82611b96565b604082019050919050565b60006020820190508181036000830152611c2181611be5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611c8460248361163b565b9150611c8f82611c28565b604082019050919050565b60006020820190508181036000830152611cb381611c77565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d1660228361163b565b9150611d2182611cba565b604082019050919050565b60006020820190508181036000830152611d4581611d09565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611d82601d8361163b565b9150611d8d82611d4c565b602082019050919050565b60006020820190508181036000830152611db181611d75565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611e1460258361163b565b9150611e1f82611db8565b604082019050919050565b60006020820190508181036000830152611e4381611e07565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ea660238361163b565b9150611eb182611e4a565b604082019050919050565b60006020820190508181036000830152611ed581611e99565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611f3860268361163b565b9150611f4382611edc565b604082019050919050565b60006020820190508181036000830152611f6781611f2b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611fa4601f8361163b565b9150611faf82611f6e565b602082019050919050565b60006020820190508181036000830152611fd381611f97565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061203660218361163b565b915061204182611fda565b604082019050919050565b6000602082019050818103600083015261206581612029565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006120c860228361163b565b91506120d38261206c565b604082019050919050565b600060208201905081810360008301526120f7816120bb565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061213460208361163b565b915061213f826120fe565b602082019050919050565b6000602082019050818103600083015261216381612127565b905091905056fea26469706673582212208fc88bbe863331da2a5ddf68b396350ed661f24c9d8fbdb77085f6b83b68dab364736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b96847e8beb5181b6fbc8d3f49c7a72bbab771a40000000000000000000000000a834205e101e612dbba3586ff74b549f1ee9de3
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 0
Arg [1] : owner (address): 0xb96847e8BEB5181B6fBC8D3F49c7a72BBAb771a4
Arg [2] : minter_ (address): 0x0A834205E101E612dBBa3586Ff74b549f1ee9dE3
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 000000000000000000000000b96847e8beb5181b6fbc8d3f49c7a72bbab771a4
Arg [2] : 0000000000000000000000000a834205e101e612dbba3586ff74b549f1ee9de3
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.