Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000,000 GMI
Holders
26
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,025,309,288.887116272198248625 GMIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ERC20
Compiler Version
v0.8.7+commit.e28d00a7
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.0; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin 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, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; address public afterHours; address public market; uint256 public opensAt; uint256 public closesAt; bool private _enabled; /** * @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_, uint256 closesAt_, uint256 opensAt_) { _name = name_; _symbol = symbol_; _mint(msg.sender, 100_000_000_000 ether); setOpen(closesAt_, opensAt_); } /** * @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]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function open() public returns (bool) { if(block.timestamp >= opensAt) { closesAt = closesAt + 24 hours; opensAt = opensAt + 24 hours; return true; } return block.timestamp < closesAt; } function getOpen() public view returns (bool) { return block.timestamp < closesAt; } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { if(!_enabled) { require(sender == owner(), "not permitted"); } else { if(open()) { require(recipient != afterHours && sender != afterHours, "market is open"); } else { require(recipient == afterHours || sender == afterHours, "after hours is open"); } } _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `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; _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; } _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 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 {} function enable() external onlyOwner { _enabled = true; } function setAfterHoursPool(address pool) external onlyOwner { afterHours = pool; } function setMarket(address pool) external onlyOwner { market = pool; } function setOpen(uint256 closesAt_, uint256 opensAt_) public onlyOwner { if(_enabled) { if(closesAt_ > opensAt_) { require(closesAt_ - opensAt_ >= 8 hours, "must at least be open for 8 hours"); } else { require(opensAt_ - closesAt_ >= 8 hours, "must at least be open for 8 hours"); } } closesAt = closesAt_; opensAt = opensAt_; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"closesAt_","type":"uint256"},{"internalType":"uint256","name":"opensAt_","type":"uint256"}],"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":"afterHours","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"closesAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"market","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"opensAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"pool","type":"address"}],"name":"setAfterHoursPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"setMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"closesAt_","type":"uint256"},{"internalType":"uint256","name":"opensAt_","type":"uint256"}],"name":"setOpen","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002d0138038062002d018339818101604052810190620000379190620005f4565b620000576200004b620000c460201b60201c565b620000cc60201b60201c565b83600490805190602001906200006f929190620004af565b50826005908051906020019062000088929190620004af565b50620000a8336c01431e0fae6d7217caa00000006200019060201b60201c565b620000ba82826200030a60201b60201c565b5050505062000ace565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000203576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001fa906200076e565b60405180910390fd5b62000217600083836200047c60201b60201c565b80600360008282546200022b91906200081d565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200028391906200081d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002ea919062000790565b60405180910390a362000306600083836200048160201b60201c565b5050565b6200031a620000c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003406200048660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000390906200072a565b60405180910390fd5b600a60009054906101000a900460ff16156200046a578082111562000413576170808183620003c991906200087a565b10156200040d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000404906200074c565b60405180910390fd5b62000469565b61708082826200042491906200087a565b101562000468576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200045f906200074c565b60405180910390fd5b5b5b81600981905550806008819055505050565b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004bd90620008f5565b90600052602060002090601f016020900481019282620004e157600085556200052d565b82601f10620004fc57805160ff19168380011785556200052d565b828001600101855582156200052d579182015b828111156200052c5782518255916020019190600101906200050f565b5b5090506200053c919062000540565b5090565b5b808211156200055b57600081600090555060010162000541565b5090565b6000620005766200057084620007d6565b620007ad565b905082815260208101848484011115620005955762000594620009f3565b5b620005a2848285620008bf565b509392505050565b600082601f830112620005c257620005c1620009ee565b5b8151620005d48482602086016200055f565b91505092915050565b600081519050620005ee8162000ab4565b92915050565b60008060008060808587031215620006115762000610620009fd565b5b600085015167ffffffffffffffff811115620006325762000631620009f8565b5b6200064087828801620005aa565b945050602085015167ffffffffffffffff811115620006645762000663620009f8565b5b6200067287828801620005aa565b93505060406200068587828801620005dd565b92505060606200069887828801620005dd565b91505092959194509250565b6000620006b36020836200080c565b9150620006c08262000a13565b602082019050919050565b6000620006da6021836200080c565b9150620006e78262000a3c565b604082019050919050565b600062000701601f836200080c565b91506200070e8262000a8b565b602082019050919050565b6200072481620008b5565b82525050565b600060208201905081810360008301526200074581620006a4565b9050919050565b600060208201905081810360008301526200076781620006cb565b9050919050565b600060208201905081810360008301526200078981620006f2565b9050919050565b6000602082019050620007a7600083018462000719565b92915050565b6000620007b9620007cc565b9050620007c782826200092b565b919050565b6000604051905090565b600067ffffffffffffffff821115620007f457620007f3620009bf565b5b620007ff8262000a02565b9050602081019050919050565b600082825260208201905092915050565b60006200082a82620008b5565b91506200083783620008b5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200086f576200086e62000961565b5b828201905092915050565b60006200088782620008b5565b91506200089483620008b5565b925082821015620008aa57620008a962000961565b5b828203905092915050565b6000819050919050565b60005b83811015620008df578082015181840152602081019050620008c2565b83811115620008ef576000848401525b50505050565b600060028204905060018216806200090e57607f821691505b6020821081141562000925576200092462000990565b5b50919050565b620009368262000a02565b810181811067ffffffffffffffff82111715620009585762000957620009bf565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6d757374206174206c65617374206265206f70656e20666f72203820686f757260008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000abf81620008b5565b811462000acb57600080fd5b50565b6122238062000ade6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a3907d711161007c578063a3907d71146103a7578063a457c2d7146103b1578063a9059cbb146103e1578063dd62ed3e14610411578063f2fde38b14610441578063fcfff16f1461045d57610158565b806370a08231146102f5578063715018a61461032557806380f556051461032f5780638da5cb5b1461034d57806395d89b411461036b5780639eaf08c11461038957610158565b8063313ce56711610115578063313ce56714610233578063353ddc8e14610251578063395093511461026f57806339a3a99a1461029f57806351ed191a146102bd5780636dcea85f146102d957610158565b8063050090b11461015d57806306fdde0314610179578063095ea7b3146101975780630d218a5b146101c757806318160ddd146101e557806323b872dd14610203575b600080fd5b610177600480360381019061017291906117d6565b61047b565b005b6101816105cd565b60405161018e9190611a88565b60405180910390f35b6101b160048036038101906101ac9190611796565b61065f565b6040516101be9190611a6d565b60405180910390f35b6101cf61067d565b6040516101dc9190611a52565b60405180910390f35b6101ed6106a3565b6040516101fa9190611c4a565b60405180910390f35b61021d60048036038101906102189190611743565b6106ad565b60405161022a9190611a6d565b60405180910390f35b61023b610a1a565b6040516102489190611c65565b60405180910390f35b610259610a23565b6040516102669190611a6d565b60405180910390f35b61028960048036038101906102849190611796565b610a2f565b6040516102969190611a6d565b60405180910390f35b6102a7610adb565b6040516102b49190611c4a565b60405180910390f35b6102d760048036038101906102d291906116d6565b610ae1565b005b6102f360048036038101906102ee91906116d6565b610ba1565b005b61030f600480360381019061030a91906116d6565b610c61565b60405161031c9190611c4a565b60405180910390f35b61032d610caa565b005b610337610d32565b6040516103449190611a52565b60405180910390f35b610355610d58565b6040516103629190611a52565b60405180910390f35b610373610d81565b6040516103809190611a88565b60405180910390f35b610391610e13565b60405161039e9190611c4a565b60405180910390f35b6103af610e19565b005b6103cb60048036038101906103c69190611796565b610eb2565b6040516103d89190611a6d565b60405180910390f35b6103fb60048036038101906103f69190611796565b610f9d565b6040516104089190611a6d565b60405180910390f35b61042b60048036038101906104269190611703565b610fbb565b6040516104389190611c4a565b60405180910390f35b61045b600480360381019061045691906116d6565b611042565b005b61046561113a565b6040516104729190611a6d565b60405180910390f35b610483611187565b73ffffffffffffffffffffffffffffffffffffffff166104a1610d58565b73ffffffffffffffffffffffffffffffffffffffff16146104f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ee90611b4a565b60405180910390fd5b600a60009054906101000a900460ff16156105bb57808211156105695761708081836105239190611cf2565b1015610564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055b90611bca565b60405180910390fd5b6105ba565b61708082826105789190611cf2565b10156105b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b090611bca565b60405180910390fd5b5b5b81600981905550806008819055505050565b6060600480546105dc90611dae565b80601f016020809104026020016040519081016040528092919081815260200182805461060890611dae565b80156106555780601f1061062a57610100808354040283529160200191610655565b820191906000526020600020905b81548152906001019060200180831161063857829003601f168201915b5050505050905090565b600061067361066c611187565b848461118f565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b6000600a60009054906101000a900460ff1661073d576106cb610d58565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614610738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072f90611baa565b60405180910390fd5b610924565b61074561113a565b1561083a57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156107f65750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b610835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082c90611c0a565b60405180910390fd5b610923565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806108e35750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b610922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091990611b6a565b60405180910390fd5b5b5b61092f84848461135a565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061097a611187565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190611b2a565b60405180910390fd5b610a0e85610a06611187565b85840361118f565b60019150509392505050565b60006012905090565b60006009544210905090565b6000610ad1610a3c611187565b848460026000610a4a611187565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610acc9190611c9c565b61118f565b6001905092915050565b60095481565b610ae9611187565b73ffffffffffffffffffffffffffffffffffffffff16610b07610d58565b73ffffffffffffffffffffffffffffffffffffffff1614610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5490611b4a565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ba9611187565b73ffffffffffffffffffffffffffffffffffffffff16610bc7610d58565b73ffffffffffffffffffffffffffffffffffffffff1614610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490611b4a565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cb2611187565b73ffffffffffffffffffffffffffffffffffffffff16610cd0610d58565b73ffffffffffffffffffffffffffffffffffffffff1614610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90611b4a565b60405180910390fd5b610d3060006115de565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610d9090611dae565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbc90611dae565b8015610e095780601f10610dde57610100808354040283529160200191610e09565b820191906000526020600020905b815481529060010190602001808311610dec57829003601f168201915b5050505050905090565b60085481565b610e21611187565b73ffffffffffffffffffffffffffffffffffffffff16610e3f610d58565b73ffffffffffffffffffffffffffffffffffffffff1614610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c90611b4a565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b60008060026000610ec1611187565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590611c2a565b60405180910390fd5b610f92610f89611187565b8585840361118f565b600191505092915050565b6000610fb1610faa611187565b848461135a565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61104a611187565b73ffffffffffffffffffffffffffffffffffffffff16611068610d58565b73ffffffffffffffffffffffffffffffffffffffff16146110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b590611b4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590611aca565b60405180910390fd5b611137816115de565b50565b6000600854421061117c57620151806009546111569190611c9c565b6009819055506201518060085461116d9190611c9c565b60088190555060019050611184565b600954421090505b90565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f690611bea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690611aea565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161134d9190611c4a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190611b8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190611aaa565b60405180910390fd5b6114458383836116a2565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390611b0a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115619190611c9c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115c59190611c4a565b60405180910390a36115d88484846116a7565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506116bb816121bf565b92915050565b6000813590506116d0816121d6565b92915050565b6000602082840312156116ec576116eb611e3e565b5b60006116fa848285016116ac565b91505092915050565b6000806040838503121561171a57611719611e3e565b5b6000611728858286016116ac565b9250506020611739858286016116ac565b9150509250929050565b60008060006060848603121561175c5761175b611e3e565b5b600061176a868287016116ac565b935050602061177b868287016116ac565b925050604061178c868287016116c1565b9150509250925092565b600080604083850312156117ad576117ac611e3e565b5b60006117bb858286016116ac565b92505060206117cc858286016116c1565b9150509250929050565b600080604083850312156117ed576117ec611e3e565b5b60006117fb858286016116c1565b925050602061180c858286016116c1565b9150509250929050565b61181f81611d26565b82525050565b61182e81611d38565b82525050565b600061183f82611c80565b6118498185611c8b565b9350611859818560208601611d7b565b61186281611e43565b840191505092915050565b600061187a602383611c8b565b915061188582611e54565b604082019050919050565b600061189d602683611c8b565b91506118a882611ea3565b604082019050919050565b60006118c0602283611c8b565b91506118cb82611ef2565b604082019050919050565b60006118e3602683611c8b565b91506118ee82611f41565b604082019050919050565b6000611906602883611c8b565b915061191182611f90565b604082019050919050565b6000611929602083611c8b565b915061193482611fdf565b602082019050919050565b600061194c601383611c8b565b915061195782612008565b602082019050919050565b600061196f602583611c8b565b915061197a82612031565b604082019050919050565b6000611992600d83611c8b565b915061199d82612080565b602082019050919050565b60006119b5602183611c8b565b91506119c0826120a9565b604082019050919050565b60006119d8602483611c8b565b91506119e3826120f8565b604082019050919050565b60006119fb600e83611c8b565b9150611a0682612147565b602082019050919050565b6000611a1e602583611c8b565b9150611a2982612170565b604082019050919050565b611a3d81611d64565b82525050565b611a4c81611d6e565b82525050565b6000602082019050611a676000830184611816565b92915050565b6000602082019050611a826000830184611825565b92915050565b60006020820190508181036000830152611aa28184611834565b905092915050565b60006020820190508181036000830152611ac38161186d565b9050919050565b60006020820190508181036000830152611ae381611890565b9050919050565b60006020820190508181036000830152611b03816118b3565b9050919050565b60006020820190508181036000830152611b23816118d6565b9050919050565b60006020820190508181036000830152611b43816118f9565b9050919050565b60006020820190508181036000830152611b638161191c565b9050919050565b60006020820190508181036000830152611b838161193f565b9050919050565b60006020820190508181036000830152611ba381611962565b9050919050565b60006020820190508181036000830152611bc381611985565b9050919050565b60006020820190508181036000830152611be3816119a8565b9050919050565b60006020820190508181036000830152611c03816119cb565b9050919050565b60006020820190508181036000830152611c23816119ee565b9050919050565b60006020820190508181036000830152611c4381611a11565b9050919050565b6000602082019050611c5f6000830184611a34565b92915050565b6000602082019050611c7a6000830184611a43565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611ca782611d64565b9150611cb283611d64565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ce757611ce6611de0565b5b828201905092915050565b6000611cfd82611d64565b9150611d0883611d64565b925082821015611d1b57611d1a611de0565b5b828203905092915050565b6000611d3182611d44565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611d99578082015181840152602081019050611d7e565b83811115611da8576000848401525b50505050565b60006002820490506001821680611dc657607f821691505b60208210811415611dda57611dd9611e0f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f616674657220686f757273206973206f70656e00000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6e6f74207065726d697474656400000000000000000000000000000000000000600082015250565b7f6d757374206174206c65617374206265206f70656e20666f72203820686f757260008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f6d61726b6574206973206f70656e000000000000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6121c881611d26565b81146121d357600080fd5b50565b6121df81611d64565b81146121ea57600080fd5b5056fea26469706673582212204fd9af6362c206aa92d511f0474ed8f1daf58933f44bf08587acb326ca60695f64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f476f6f646d6f726e696e6720496e7500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003474d490000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a3907d711161007c578063a3907d71146103a7578063a457c2d7146103b1578063a9059cbb146103e1578063dd62ed3e14610411578063f2fde38b14610441578063fcfff16f1461045d57610158565b806370a08231146102f5578063715018a61461032557806380f556051461032f5780638da5cb5b1461034d57806395d89b411461036b5780639eaf08c11461038957610158565b8063313ce56711610115578063313ce56714610233578063353ddc8e14610251578063395093511461026f57806339a3a99a1461029f57806351ed191a146102bd5780636dcea85f146102d957610158565b8063050090b11461015d57806306fdde0314610179578063095ea7b3146101975780630d218a5b146101c757806318160ddd146101e557806323b872dd14610203575b600080fd5b610177600480360381019061017291906117d6565b61047b565b005b6101816105cd565b60405161018e9190611a88565b60405180910390f35b6101b160048036038101906101ac9190611796565b61065f565b6040516101be9190611a6d565b60405180910390f35b6101cf61067d565b6040516101dc9190611a52565b60405180910390f35b6101ed6106a3565b6040516101fa9190611c4a565b60405180910390f35b61021d60048036038101906102189190611743565b6106ad565b60405161022a9190611a6d565b60405180910390f35b61023b610a1a565b6040516102489190611c65565b60405180910390f35b610259610a23565b6040516102669190611a6d565b60405180910390f35b61028960048036038101906102849190611796565b610a2f565b6040516102969190611a6d565b60405180910390f35b6102a7610adb565b6040516102b49190611c4a565b60405180910390f35b6102d760048036038101906102d291906116d6565b610ae1565b005b6102f360048036038101906102ee91906116d6565b610ba1565b005b61030f600480360381019061030a91906116d6565b610c61565b60405161031c9190611c4a565b60405180910390f35b61032d610caa565b005b610337610d32565b6040516103449190611a52565b60405180910390f35b610355610d58565b6040516103629190611a52565b60405180910390f35b610373610d81565b6040516103809190611a88565b60405180910390f35b610391610e13565b60405161039e9190611c4a565b60405180910390f35b6103af610e19565b005b6103cb60048036038101906103c69190611796565b610eb2565b6040516103d89190611a6d565b60405180910390f35b6103fb60048036038101906103f69190611796565b610f9d565b6040516104089190611a6d565b60405180910390f35b61042b60048036038101906104269190611703565b610fbb565b6040516104389190611c4a565b60405180910390f35b61045b600480360381019061045691906116d6565b611042565b005b61046561113a565b6040516104729190611a6d565b60405180910390f35b610483611187565b73ffffffffffffffffffffffffffffffffffffffff166104a1610d58565b73ffffffffffffffffffffffffffffffffffffffff16146104f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ee90611b4a565b60405180910390fd5b600a60009054906101000a900460ff16156105bb57808211156105695761708081836105239190611cf2565b1015610564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055b90611bca565b60405180910390fd5b6105ba565b61708082826105789190611cf2565b10156105b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b090611bca565b60405180910390fd5b5b5b81600981905550806008819055505050565b6060600480546105dc90611dae565b80601f016020809104026020016040519081016040528092919081815260200182805461060890611dae565b80156106555780601f1061062a57610100808354040283529160200191610655565b820191906000526020600020905b81548152906001019060200180831161063857829003601f168201915b5050505050905090565b600061067361066c611187565b848461118f565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b6000600a60009054906101000a900460ff1661073d576106cb610d58565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614610738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072f90611baa565b60405180910390fd5b610924565b61074561113a565b1561083a57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156107f65750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b610835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082c90611c0a565b60405180910390fd5b610923565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806108e35750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b610922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091990611b6a565b60405180910390fd5b5b5b61092f84848461135a565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061097a611187565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f190611b2a565b60405180910390fd5b610a0e85610a06611187565b85840361118f565b60019150509392505050565b60006012905090565b60006009544210905090565b6000610ad1610a3c611187565b848460026000610a4a611187565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610acc9190611c9c565b61118f565b6001905092915050565b60095481565b610ae9611187565b73ffffffffffffffffffffffffffffffffffffffff16610b07610d58565b73ffffffffffffffffffffffffffffffffffffffff1614610b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5490611b4a565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ba9611187565b73ffffffffffffffffffffffffffffffffffffffff16610bc7610d58565b73ffffffffffffffffffffffffffffffffffffffff1614610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490611b4a565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cb2611187565b73ffffffffffffffffffffffffffffffffffffffff16610cd0610d58565b73ffffffffffffffffffffffffffffffffffffffff1614610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90611b4a565b60405180910390fd5b610d3060006115de565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610d9090611dae565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbc90611dae565b8015610e095780601f10610dde57610100808354040283529160200191610e09565b820191906000526020600020905b815481529060010190602001808311610dec57829003601f168201915b5050505050905090565b60085481565b610e21611187565b73ffffffffffffffffffffffffffffffffffffffff16610e3f610d58565b73ffffffffffffffffffffffffffffffffffffffff1614610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c90611b4a565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b60008060026000610ec1611187565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590611c2a565b60405180910390fd5b610f92610f89611187565b8585840361118f565b600191505092915050565b6000610fb1610faa611187565b848461135a565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61104a611187565b73ffffffffffffffffffffffffffffffffffffffff16611068610d58565b73ffffffffffffffffffffffffffffffffffffffff16146110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b590611b4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561112e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112590611aca565b60405180910390fd5b611137816115de565b50565b6000600854421061117c57620151806009546111569190611c9c565b6009819055506201518060085461116d9190611c9c565b60088190555060019050611184565b600954421090505b90565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f690611bea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690611aea565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161134d9190611c4a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190611b8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143190611aaa565b60405180910390fd5b6114458383836116a2565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390611b0a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115619190611c9c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115c59190611c4a565b60405180910390a36115d88484846116a7565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506116bb816121bf565b92915050565b6000813590506116d0816121d6565b92915050565b6000602082840312156116ec576116eb611e3e565b5b60006116fa848285016116ac565b91505092915050565b6000806040838503121561171a57611719611e3e565b5b6000611728858286016116ac565b9250506020611739858286016116ac565b9150509250929050565b60008060006060848603121561175c5761175b611e3e565b5b600061176a868287016116ac565b935050602061177b868287016116ac565b925050604061178c868287016116c1565b9150509250925092565b600080604083850312156117ad576117ac611e3e565b5b60006117bb858286016116ac565b92505060206117cc858286016116c1565b9150509250929050565b600080604083850312156117ed576117ec611e3e565b5b60006117fb858286016116c1565b925050602061180c858286016116c1565b9150509250929050565b61181f81611d26565b82525050565b61182e81611d38565b82525050565b600061183f82611c80565b6118498185611c8b565b9350611859818560208601611d7b565b61186281611e43565b840191505092915050565b600061187a602383611c8b565b915061188582611e54565b604082019050919050565b600061189d602683611c8b565b91506118a882611ea3565b604082019050919050565b60006118c0602283611c8b565b91506118cb82611ef2565b604082019050919050565b60006118e3602683611c8b565b91506118ee82611f41565b604082019050919050565b6000611906602883611c8b565b915061191182611f90565b604082019050919050565b6000611929602083611c8b565b915061193482611fdf565b602082019050919050565b600061194c601383611c8b565b915061195782612008565b602082019050919050565b600061196f602583611c8b565b915061197a82612031565b604082019050919050565b6000611992600d83611c8b565b915061199d82612080565b602082019050919050565b60006119b5602183611c8b565b91506119c0826120a9565b604082019050919050565b60006119d8602483611c8b565b91506119e3826120f8565b604082019050919050565b60006119fb600e83611c8b565b9150611a0682612147565b602082019050919050565b6000611a1e602583611c8b565b9150611a2982612170565b604082019050919050565b611a3d81611d64565b82525050565b611a4c81611d6e565b82525050565b6000602082019050611a676000830184611816565b92915050565b6000602082019050611a826000830184611825565b92915050565b60006020820190508181036000830152611aa28184611834565b905092915050565b60006020820190508181036000830152611ac38161186d565b9050919050565b60006020820190508181036000830152611ae381611890565b9050919050565b60006020820190508181036000830152611b03816118b3565b9050919050565b60006020820190508181036000830152611b23816118d6565b9050919050565b60006020820190508181036000830152611b43816118f9565b9050919050565b60006020820190508181036000830152611b638161191c565b9050919050565b60006020820190508181036000830152611b838161193f565b9050919050565b60006020820190508181036000830152611ba381611962565b9050919050565b60006020820190508181036000830152611bc381611985565b9050919050565b60006020820190508181036000830152611be3816119a8565b9050919050565b60006020820190508181036000830152611c03816119cb565b9050919050565b60006020820190508181036000830152611c23816119ee565b9050919050565b60006020820190508181036000830152611c4381611a11565b9050919050565b6000602082019050611c5f6000830184611a34565b92915050565b6000602082019050611c7a6000830184611a43565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611ca782611d64565b9150611cb283611d64565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ce757611ce6611de0565b5b828201905092915050565b6000611cfd82611d64565b9150611d0883611d64565b925082821015611d1b57611d1a611de0565b5b828203905092915050565b6000611d3182611d44565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611d99578082015181840152602081019050611d7e565b83811115611da8576000848401525b50505050565b60006002820490506001821680611dc657607f821691505b60208210811415611dda57611dd9611e0f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f616674657220686f757273206973206f70656e00000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6e6f74207065726d697474656400000000000000000000000000000000000000600082015250565b7f6d757374206174206c65617374206265206f70656e20666f72203820686f757260008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f6d61726b6574206973206f70656e000000000000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6121c881611d26565b81146121d357600080fd5b50565b6121df81611d64565b81146121ea57600080fd5b5056fea26469706673582212204fd9af6362c206aa92d511f0474ed8f1daf58933f44bf08587acb326ca60695f64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f476f6f646d6f726e696e6720496e7500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003474d490000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Goodmorning Inu
Arg [1] : symbol_ (string): GMI
Arg [2] : closesAt_ (uint256): 0
Arg [3] : opensAt_ (uint256): 0
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [5] : 476f6f646d6f726e696e6720496e750000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 474d490000000000000000000000000000000000000000000000000000000000
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.