Overview
Max Total Supply
500,000,000,000,000 GumBoy
Holders
168 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
50,000,000,000 GumBoyValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GumBoy
Compiler Version
v0.8.19+commit.7dd6d404
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.19; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract GumBoy is ERC20, Ownable { bool _claimIsActive = false; uint16 _claimCount = 0; uint16 _claimCountMax = 500; uint256 _claimAmount = 50_000_000_000 * 10 ** decimals(); mapping (address => bool) _claimedWallets; bool _preSaleIsActive = true; uint256 _etherAmountMin = 0.04 ether; uint256 _etherAmountMax = 1 ether; uint256 _tokenPrice = 1_250_000_000_000; uint256 public _sellAmount = 0; uint256 _sellAmountMax = 100_000_000_000_000 * 10 ** decimals(); constructor() ERC20("GumBoy", "GumBoy") { _mint(address(this), 500_000_000_000_000 * 10 ** decimals()); _transfer(address(this), msg.sender, 350_000_000_000_000 * 10 ** decimals()); } function claim() external { require(_claimIsActive, "Claim is not active"); require(_claimCount + 1 <= _claimCountMax, "Max amount of claims reached"); require(!_claimedWallets[msg.sender], "Tokens were already sent to this wallet"); _transfer(address(this), msg.sender, _claimAmount); _claimCount += 1; _claimedWallets[msg.sender] = true; } function buy() external payable { require(_preSaleIsActive, "Pre-sale is not active"); require(msg.value >= _etherAmountMin && msg.value <= _etherAmountMax, "Ether value sent is not correct (must be between 0.04 and 1)"); uint256 amount = msg.value * _tokenPrice; require(_sellAmount + amount <= _sellAmountMax, "Purchase would exeed available amount of tokens for pre-sale"); _transfer(address(this), msg.sender, amount); _sellAmount += amount; } function enableClaim() external onlyOwner { _claimIsActive = true; } function withdrowEther() external onlyOwner { payable(owner()).transfer(address(this).balance); } function withdrowTokens() external onlyOwner { _claimIsActive = false; _preSaleIsActive = false; _transfer(address(this), owner(), balanceOf(address(this))); } }
// 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; } }
// 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 (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.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); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "paris", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
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":[],"name":"_sellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claim","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":"enableClaim","outputs":[],"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"},{"inputs":[],"name":"withdrowEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrowTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600560146101000a81548160ff0219169083151502179055506000600560156101000a81548161ffff021916908361ffff1602179055506101f4600560176101000a81548161ffff021916908361ffff1602179055506200006c6200025160201b60201c565b600a6200007a9190620008ca565b640ba43b74006200008c91906200091b565b6006556001600860006101000a81548160ff021916908315150217905550668e1bc9bf040000600955670de0b6b3a7640000600a5565012309ce5400600b556000600c55620000e06200025160201b60201c565b600a620000ee9190620008ca565b655af3107a40006200010191906200091b565b600d553480156200011157600080fd5b506040518060400160405280600681526020017f47756d426f7900000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f47756d426f79000000000000000000000000000000000000000000000000000081525081600390816200018f919062000bd6565b508060049081620001a1919062000bd6565b505050620001c4620001b86200025a60201b60201c565b6200026260201b60201c565b6200020730620001d96200025160201b60201c565b600a620001e79190620008ca565b6601c6bf52634000620001fb91906200091b565b6200032860201b60201c565b6200024b30336200021d6200025160201b60201c565b600a6200022b9190620008ca565b66013e52b9abe0006200023f91906200091b565b6200049560201b60201c565b62000f71565b60006012905090565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200039a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003919062000d1e565b60405180910390fd5b620003ae600083836200072660201b60201c565b8060026000828254620003c2919062000d40565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000475919062000d8c565b60405180910390a362000491600083836200072b60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000507576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004fe9062000e1f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000579576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005709062000eb7565b60405180910390fd5b6200058c8383836200072660201b60201c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000615576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200060c9062000f4f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162000705919062000d8c565b60405180910390a3620007208484846200072b60201b60201c565b50505050565b505050565b505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620007be5780860481111562000796576200079562000730565b5b6001851615620007a65780820291505b8081029050620007b6856200075f565b945062000776565b94509492505050565b600082620007d95760019050620008ac565b81620007e95760009050620008ac565b81600181146200080257600281146200080d5762000843565b6001915050620008ac565b60ff84111562000822576200082162000730565b5b8360020a9150848211156200083c576200083b62000730565b5b50620008ac565b5060208310610133831016604e8410600b84101617156200087d5782820a90508381111562000877576200087662000730565b5b620008ac565b6200088c84848460016200076c565b92509050818404811115620008a657620008a562000730565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620008d782620008b3565b9150620008e483620008bd565b9250620009137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007c7565b905092915050565b60006200092882620008b3565b91506200093583620008b3565b92508282026200094581620008b3565b915082820484148315176200095f576200095e62000730565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009e857607f821691505b602082108103620009fe57620009fd620009a0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a687fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a29565b62000a74868362000a29565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000ab762000ab162000aab84620008b3565b62000a8c565b620008b3565b9050919050565b6000819050919050565b62000ad38362000a96565b62000aeb62000ae28262000abe565b84845462000a36565b825550505050565b600090565b62000b0262000af3565b62000b0f81848462000ac8565b505050565b5b8181101562000b375762000b2b60008262000af8565b60018101905062000b15565b5050565b601f82111562000b865762000b508162000a04565b62000b5b8462000a19565b8101602085101562000b6b578190505b62000b8362000b7a8562000a19565b83018262000b14565b50505b505050565b600082821c905092915050565b600062000bab6000198460080262000b8b565b1980831691505092915050565b600062000bc6838362000b98565b9150826002028217905092915050565b62000be18262000966565b67ffffffffffffffff81111562000bfd5762000bfc62000971565b5b62000c098254620009cf565b62000c1682828562000b3b565b600060209050601f83116001811462000c4e576000841562000c39578287015190505b62000c45858262000bb8565b86555062000cb5565b601f19841662000c5e8662000a04565b60005b8281101562000c885784890151825560018201915060208501945060208101905062000c61565b8683101562000ca8578489015162000ca4601f89168262000b98565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d06601f8362000cbd565b915062000d138262000cce565b602082019050919050565b6000602082019050818103600083015262000d398162000cf7565b9050919050565b600062000d4d82620008b3565b915062000d5a83620008b3565b925082820190508082111562000d755762000d7462000730565b5b92915050565b62000d8681620008b3565b82525050565b600060208201905062000da3600083018462000d7b565b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600062000e0760258362000cbd565b915062000e148262000da9565b604082019050919050565b6000602082019050818103600083015262000e3a8162000df8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600062000e9f60238362000cbd565b915062000eac8262000e41565b604082019050919050565b6000602082019050818103600083015262000ed28162000e90565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600062000f3760268362000cbd565b915062000f448262000ed9565b604082019050919050565b6000602082019050818103600083015262000f6a8162000f28565b9050919050565b611edb8062000f816000396000f3fe60806040526004361061011f5760003560e01c80636cb1630f116100a0578063a457c2d711610064578063a457c2d71461038d578063a6f2ae3a146103ca578063a9059cbb146103d4578063dd62ed3e14610411578063f2fde38b1461044e5761011f565b80636cb1630f146102cc57806370a08231146102e3578063715018a6146103205780638da5cb5b1461033757806395d89b41146103625761011f565b806323b872dd116100e757806323b872dd146101f957806328dae6e314610236578063313ce5671461024d57806339509351146102785780634e71d92d146102b55761011f565b806306fdde0314610124578063095ea7b31461014f57806314e4e8791461018c57806318160ddd146101a35780631c594233146101ce575b600080fd5b34801561013057600080fd5b50610139610477565b6040516101469190611310565b60405180910390f35b34801561015b57600080fd5b50610176600480360381019061017191906113cb565b610509565b6040516101839190611426565b60405180910390f35b34801561019857600080fd5b506101a161052c565b005b3480156101af57600080fd5b506101b8610584565b6040516101c59190611450565b60405180910390f35b3480156101da57600080fd5b506101e361058e565b6040516101f09190611450565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b919061146b565b610594565b60405161022d9190611426565b60405180910390f35b34801561024257600080fd5b5061024b6105c3565b005b34801561025957600080fd5b506102626105e8565b60405161026f91906114da565b60405180910390f35b34801561028457600080fd5b5061029f600480360381019061029a91906113cb565b6105f1565b6040516102ac9190611426565b60405180910390f35b3480156102c157600080fd5b506102ca610628565b005b3480156102d857600080fd5b506102e161081c565b005b3480156102ef57600080fd5b5061030a600480360381019061030591906114f5565b610876565b6040516103179190611450565b60405180910390f35b34801561032c57600080fd5b506103356108be565b005b34801561034357600080fd5b5061034c6108d2565b6040516103599190611531565b60405180910390f35b34801561036e57600080fd5b506103776108fc565b6040516103849190611310565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af91906113cb565b61098e565b6040516103c19190611426565b60405180910390f35b6103d2610a05565b005b3480156103e057600080fd5b506103fb60048036038101906103f691906113cb565b610b32565b6040516104089190611426565b60405180910390f35b34801561041d57600080fd5b506104386004803603810190610433919061154c565b610b55565b6040516104459190611450565b60405180910390f35b34801561045a57600080fd5b50610475600480360381019061047091906114f5565b610bdc565b005b606060038054610486906115bb565b80601f01602080910402602001604051908101604052809291908181526020018280546104b2906115bb565b80156104ff5780601f106104d4576101008083540402835291602001916104ff565b820191906000526020600020905b8154815290600101906020018083116104e257829003601f168201915b5050505050905090565b600080610514610c5f565b9050610521818585610c67565b600191505092915050565b610534610e30565b61053c6108d2565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610581573d6000803e3d6000fd5b50565b6000600254905090565b600c5481565b60008061059f610c5f565b90506105ac858285610eae565b6105b7858585610f3a565b60019150509392505050565b6105cb610e30565b6001600560146101000a81548160ff021916908315150217905550565b60006012905090565b6000806105fc610c5f565b905061061d81858561060e8589610b55565b610618919061161b565b610c67565b600191505092915050565b600560149054906101000a900460ff16610677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066e9061169b565b60405180910390fd5b600560179054906101000a900461ffff1661ffff166001600560159054906101000a900461ffff166106a991906116c9565b61ffff1611156106ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e59061174b565b60405180910390fd5b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561077b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610772906117dd565b60405180910390fd5b6107883033600654610f3a565b6001600560158282829054906101000a900461ffff166107a891906116c9565b92506101000a81548161ffff021916908361ffff1602179055506001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b610824610e30565b6000600560146101000a81548160ff0219169083151502179055506000600860006101000a81548160ff021916908315150217905550610874306108666108d2565b61086f30610876565b610f3a565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c6610e30565b6108d060006111b0565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461090b906115bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610937906115bb565b80156109845780601f1061095957610100808354040283529160200191610984565b820191906000526020600020905b81548152906001019060200180831161096757829003601f168201915b5050505050905090565b600080610999610c5f565b905060006109a78286610b55565b9050838110156109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e39061186f565b60405180910390fd5b6109f98286868403610c67565b60019250505092915050565b600860009054906101000a900460ff16610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b906118db565b60405180910390fd5b6009543410158015610a685750600a543411155b610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e9061196d565b60405180910390fd5b6000600b5434610ab7919061198d565b9050600d5481600c54610aca919061161b565b1115610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290611a41565b60405180910390fd5b610b16303383610f3a565b80600c6000828254610b28919061161b565b9250508190555050565b600080610b3d610c5f565b9050610b4a818585610f3a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610be4610e30565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90611ad3565b60405180910390fd5b610c5c816111b0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd90611b65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90611bf7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e239190611450565b60405180910390a3505050565b610e38610c5f565b73ffffffffffffffffffffffffffffffffffffffff16610e566108d2565b73ffffffffffffffffffffffffffffffffffffffff1614610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea390611c63565b60405180910390fd5b565b6000610eba8484610b55565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f345781811015610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90611ccf565b60405180910390fd5b610f338484848403610c67565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090611d61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90611df3565b60405180910390fd5b611023838383611276565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090611e85565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111979190611450565b60405180910390a36111aa84848461127b565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112ba57808201518184015260208101905061129f565b60008484015250505050565b6000601f19601f8301169050919050565b60006112e282611280565b6112ec818561128b565b93506112fc81856020860161129c565b611305816112c6565b840191505092915050565b6000602082019050818103600083015261132a81846112d7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061136282611337565b9050919050565b61137281611357565b811461137d57600080fd5b50565b60008135905061138f81611369565b92915050565b6000819050919050565b6113a881611395565b81146113b357600080fd5b50565b6000813590506113c58161139f565b92915050565b600080604083850312156113e2576113e1611332565b5b60006113f085828601611380565b9250506020611401858286016113b6565b9150509250929050565b60008115159050919050565b6114208161140b565b82525050565b600060208201905061143b6000830184611417565b92915050565b61144a81611395565b82525050565b60006020820190506114656000830184611441565b92915050565b60008060006060848603121561148457611483611332565b5b600061149286828701611380565b93505060206114a386828701611380565b92505060406114b4868287016113b6565b9150509250925092565b600060ff82169050919050565b6114d4816114be565b82525050565b60006020820190506114ef60008301846114cb565b92915050565b60006020828403121561150b5761150a611332565b5b600061151984828501611380565b91505092915050565b61152b81611357565b82525050565b60006020820190506115466000830184611522565b92915050565b6000806040838503121561156357611562611332565b5b600061157185828601611380565b925050602061158285828601611380565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115d357607f821691505b6020821081036115e6576115e561158c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061162682611395565b915061163183611395565b9250828201905080821115611649576116486115ec565b5b92915050565b7f436c61696d206973206e6f742061637469766500000000000000000000000000600082015250565b600061168560138361128b565b91506116908261164f565b602082019050919050565b600060208201905081810360008301526116b481611678565b9050919050565b600061ffff82169050919050565b60006116d4826116bb565b91506116df836116bb565b9250828201905061ffff8111156116f9576116f86115ec565b5b92915050565b7f4d617820616d6f756e74206f6620636c61696d73207265616368656400000000600082015250565b6000611735601c8361128b565b9150611740826116ff565b602082019050919050565b6000602082019050818103600083015261176481611728565b9050919050565b7f546f6b656e73207765726520616c72656164792073656e7420746f207468697360008201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b60006117c760278361128b565b91506117d28261176b565b604082019050919050565b600060208201905081810360008301526117f6816117ba565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061185960258361128b565b9150611864826117fd565b604082019050919050565b600060208201905081810360008301526118888161184c565b9050919050565b7f5072652d73616c65206973206e6f742061637469766500000000000000000000600082015250565b60006118c560168361128b565b91506118d08261188f565b602082019050919050565b600060208201905081810360008301526118f4816118b8565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f72726563742060008201527f286d757374206265206265747765656e20302e303420616e6420312900000000602082015250565b6000611957603c8361128b565b9150611962826118fb565b604082019050919050565b600060208201905081810360008301526119868161194a565b9050919050565b600061199882611395565b91506119a383611395565b92508282026119b181611395565b915082820484148315176119c8576119c76115ec565b5b5092915050565b7f507572636861736520776f756c6420657865656420617661696c61626c65206160008201527f6d6f756e74206f6620746f6b656e7320666f72207072652d73616c6500000000602082015250565b6000611a2b603c8361128b565b9150611a36826119cf565b604082019050919050565b60006020820190508181036000830152611a5a81611a1e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611abd60268361128b565b9150611ac882611a61565b604082019050919050565b60006020820190508181036000830152611aec81611ab0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b4f60248361128b565b9150611b5a82611af3565b604082019050919050565b60006020820190508181036000830152611b7e81611b42565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611be160228361128b565b9150611bec82611b85565b604082019050919050565b60006020820190508181036000830152611c1081611bd4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611c4d60208361128b565b9150611c5882611c17565b602082019050919050565b60006020820190508181036000830152611c7c81611c40565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611cb9601d8361128b565b9150611cc482611c83565b602082019050919050565b60006020820190508181036000830152611ce881611cac565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d4b60258361128b565b9150611d5682611cef565b604082019050919050565b60006020820190508181036000830152611d7a81611d3e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ddd60238361128b565b9150611de882611d81565b604082019050919050565b60006020820190508181036000830152611e0c81611dd0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e6f60268361128b565b9150611e7a82611e13565b604082019050919050565b60006020820190508181036000830152611e9e81611e62565b905091905056fea26469706673582212207a1467b140598b1007a35bedc66ac2a9fc3c04f5655c94067da5053ab193b14964736f6c63430008130033
Deployed Bytecode
0x60806040526004361061011f5760003560e01c80636cb1630f116100a0578063a457c2d711610064578063a457c2d71461038d578063a6f2ae3a146103ca578063a9059cbb146103d4578063dd62ed3e14610411578063f2fde38b1461044e5761011f565b80636cb1630f146102cc57806370a08231146102e3578063715018a6146103205780638da5cb5b1461033757806395d89b41146103625761011f565b806323b872dd116100e757806323b872dd146101f957806328dae6e314610236578063313ce5671461024d57806339509351146102785780634e71d92d146102b55761011f565b806306fdde0314610124578063095ea7b31461014f57806314e4e8791461018c57806318160ddd146101a35780631c594233146101ce575b600080fd5b34801561013057600080fd5b50610139610477565b6040516101469190611310565b60405180910390f35b34801561015b57600080fd5b50610176600480360381019061017191906113cb565b610509565b6040516101839190611426565b60405180910390f35b34801561019857600080fd5b506101a161052c565b005b3480156101af57600080fd5b506101b8610584565b6040516101c59190611450565b60405180910390f35b3480156101da57600080fd5b506101e361058e565b6040516101f09190611450565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b919061146b565b610594565b60405161022d9190611426565b60405180910390f35b34801561024257600080fd5b5061024b6105c3565b005b34801561025957600080fd5b506102626105e8565b60405161026f91906114da565b60405180910390f35b34801561028457600080fd5b5061029f600480360381019061029a91906113cb565b6105f1565b6040516102ac9190611426565b60405180910390f35b3480156102c157600080fd5b506102ca610628565b005b3480156102d857600080fd5b506102e161081c565b005b3480156102ef57600080fd5b5061030a600480360381019061030591906114f5565b610876565b6040516103179190611450565b60405180910390f35b34801561032c57600080fd5b506103356108be565b005b34801561034357600080fd5b5061034c6108d2565b6040516103599190611531565b60405180910390f35b34801561036e57600080fd5b506103776108fc565b6040516103849190611310565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af91906113cb565b61098e565b6040516103c19190611426565b60405180910390f35b6103d2610a05565b005b3480156103e057600080fd5b506103fb60048036038101906103f691906113cb565b610b32565b6040516104089190611426565b60405180910390f35b34801561041d57600080fd5b506104386004803603810190610433919061154c565b610b55565b6040516104459190611450565b60405180910390f35b34801561045a57600080fd5b50610475600480360381019061047091906114f5565b610bdc565b005b606060038054610486906115bb565b80601f01602080910402602001604051908101604052809291908181526020018280546104b2906115bb565b80156104ff5780601f106104d4576101008083540402835291602001916104ff565b820191906000526020600020905b8154815290600101906020018083116104e257829003601f168201915b5050505050905090565b600080610514610c5f565b9050610521818585610c67565b600191505092915050565b610534610e30565b61053c6108d2565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610581573d6000803e3d6000fd5b50565b6000600254905090565b600c5481565b60008061059f610c5f565b90506105ac858285610eae565b6105b7858585610f3a565b60019150509392505050565b6105cb610e30565b6001600560146101000a81548160ff021916908315150217905550565b60006012905090565b6000806105fc610c5f565b905061061d81858561060e8589610b55565b610618919061161b565b610c67565b600191505092915050565b600560149054906101000a900460ff16610677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066e9061169b565b60405180910390fd5b600560179054906101000a900461ffff1661ffff166001600560159054906101000a900461ffff166106a991906116c9565b61ffff1611156106ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e59061174b565b60405180910390fd5b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561077b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610772906117dd565b60405180910390fd5b6107883033600654610f3a565b6001600560158282829054906101000a900461ffff166107a891906116c9565b92506101000a81548161ffff021916908361ffff1602179055506001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b610824610e30565b6000600560146101000a81548160ff0219169083151502179055506000600860006101000a81548160ff021916908315150217905550610874306108666108d2565b61086f30610876565b610f3a565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c6610e30565b6108d060006111b0565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461090b906115bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610937906115bb565b80156109845780601f1061095957610100808354040283529160200191610984565b820191906000526020600020905b81548152906001019060200180831161096757829003601f168201915b5050505050905090565b600080610999610c5f565b905060006109a78286610b55565b9050838110156109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e39061186f565b60405180910390fd5b6109f98286868403610c67565b60019250505092915050565b600860009054906101000a900460ff16610a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4b906118db565b60405180910390fd5b6009543410158015610a685750600a543411155b610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e9061196d565b60405180910390fd5b6000600b5434610ab7919061198d565b9050600d5481600c54610aca919061161b565b1115610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290611a41565b60405180910390fd5b610b16303383610f3a565b80600c6000828254610b28919061161b565b9250508190555050565b600080610b3d610c5f565b9050610b4a818585610f3a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610be4610e30565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90611ad3565b60405180910390fd5b610c5c816111b0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd90611b65565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90611bf7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e239190611450565b60405180910390a3505050565b610e38610c5f565b73ffffffffffffffffffffffffffffffffffffffff16610e566108d2565b73ffffffffffffffffffffffffffffffffffffffff1614610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea390611c63565b60405180910390fd5b565b6000610eba8484610b55565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f345781811015610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90611ccf565b60405180910390fd5b610f338484848403610c67565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090611d61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90611df3565b60405180910390fd5b611023838383611276565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090611e85565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111979190611450565b60405180910390a36111aa84848461127b565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112ba57808201518184015260208101905061129f565b60008484015250505050565b6000601f19601f8301169050919050565b60006112e282611280565b6112ec818561128b565b93506112fc81856020860161129c565b611305816112c6565b840191505092915050565b6000602082019050818103600083015261132a81846112d7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061136282611337565b9050919050565b61137281611357565b811461137d57600080fd5b50565b60008135905061138f81611369565b92915050565b6000819050919050565b6113a881611395565b81146113b357600080fd5b50565b6000813590506113c58161139f565b92915050565b600080604083850312156113e2576113e1611332565b5b60006113f085828601611380565b9250506020611401858286016113b6565b9150509250929050565b60008115159050919050565b6114208161140b565b82525050565b600060208201905061143b6000830184611417565b92915050565b61144a81611395565b82525050565b60006020820190506114656000830184611441565b92915050565b60008060006060848603121561148457611483611332565b5b600061149286828701611380565b93505060206114a386828701611380565b92505060406114b4868287016113b6565b9150509250925092565b600060ff82169050919050565b6114d4816114be565b82525050565b60006020820190506114ef60008301846114cb565b92915050565b60006020828403121561150b5761150a611332565b5b600061151984828501611380565b91505092915050565b61152b81611357565b82525050565b60006020820190506115466000830184611522565b92915050565b6000806040838503121561156357611562611332565b5b600061157185828601611380565b925050602061158285828601611380565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115d357607f821691505b6020821081036115e6576115e561158c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061162682611395565b915061163183611395565b9250828201905080821115611649576116486115ec565b5b92915050565b7f436c61696d206973206e6f742061637469766500000000000000000000000000600082015250565b600061168560138361128b565b91506116908261164f565b602082019050919050565b600060208201905081810360008301526116b481611678565b9050919050565b600061ffff82169050919050565b60006116d4826116bb565b91506116df836116bb565b9250828201905061ffff8111156116f9576116f86115ec565b5b92915050565b7f4d617820616d6f756e74206f6620636c61696d73207265616368656400000000600082015250565b6000611735601c8361128b565b9150611740826116ff565b602082019050919050565b6000602082019050818103600083015261176481611728565b9050919050565b7f546f6b656e73207765726520616c72656164792073656e7420746f207468697360008201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b60006117c760278361128b565b91506117d28261176b565b604082019050919050565b600060208201905081810360008301526117f6816117ba565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061185960258361128b565b9150611864826117fd565b604082019050919050565b600060208201905081810360008301526118888161184c565b9050919050565b7f5072652d73616c65206973206e6f742061637469766500000000000000000000600082015250565b60006118c560168361128b565b91506118d08261188f565b602082019050919050565b600060208201905081810360008301526118f4816118b8565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f72726563742060008201527f286d757374206265206265747765656e20302e303420616e6420312900000000602082015250565b6000611957603c8361128b565b9150611962826118fb565b604082019050919050565b600060208201905081810360008301526119868161194a565b9050919050565b600061199882611395565b91506119a383611395565b92508282026119b181611395565b915082820484148315176119c8576119c76115ec565b5b5092915050565b7f507572636861736520776f756c6420657865656420617661696c61626c65206160008201527f6d6f756e74206f6620746f6b656e7320666f72207072652d73616c6500000000602082015250565b6000611a2b603c8361128b565b9150611a36826119cf565b604082019050919050565b60006020820190508181036000830152611a5a81611a1e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611abd60268361128b565b9150611ac882611a61565b604082019050919050565b60006020820190508181036000830152611aec81611ab0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b4f60248361128b565b9150611b5a82611af3565b604082019050919050565b60006020820190508181036000830152611b7e81611b42565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611be160228361128b565b9150611bec82611b85565b604082019050919050565b60006020820190508181036000830152611c1081611bd4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611c4d60208361128b565b9150611c5882611c17565b602082019050919050565b60006020820190508181036000830152611c7c81611c40565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611cb9601d8361128b565b9150611cc482611c83565b602082019050919050565b60006020820190508181036000830152611ce881611cac565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d4b60258361128b565b9150611d5682611cef565b604082019050919050565b60006020820190508181036000830152611d7a81611d3e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ddd60238361128b565b9150611de882611d81565b604082019050919050565b60006020820190508181036000830152611e0c81611dd0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e6f60268361128b565b9150611e7a82611e13565b604082019050919050565b60006020820190508181036000830152611e9e81611e62565b905091905056fea26469706673582212207a1467b140598b1007a35bedc66ac2a9fc3c04f5655c94067da5053ab193b14964736f6c63430008130033
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.