Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multi Chain
Multichain Addresses
N/ALatest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
0x60806040 | 7701137 | 359 days 15 hrs ago | IN | Create: ERC5679Ext20RefImpl | 0 ETH | 0.00017232 |
Loading...
Loading
Contract Name:
ERC5679Ext20RefImpl
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Apache-2.0 // Author: Zainan Victor Zhou <[email protected]> // Open source repo: http://zzn.li/ercref pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./ERC5679.sol"; contract ERC5679Ext20RefImpl is ERC5679Ext20, ERC20 { event ErcRefImplDeploy(uint256 version, string name, string url); constructor(uint256 _version) ERC20("ERC5679Ext20RefImpl", "ERC5679Ext20RefImpl") { emit ErcRefImplDeploy(_version, "ERC5679Ext20RefImpl", "http://zzn.li/ercref"); } function mint( address _to, uint256 _amount, bytes calldata // _data (unused) ) external override { // EVERYONE can mint tokens in this simple reference implementation. // Please DO NOT USE this in production. _mint(_to, _amount); // ignoring _data in this simple reference implementation. } function burn( address _from, uint256 _amount, bytes calldata // _data (unused) ) external override { // EVERYONE can burn tokens in this simple reference implementation. // Please DO NOT USE this in production. _burn(_from, _amount); // ignoring _data in this simple reference implementation. } }
// SPDX-License-Identifier: Apache-2.0 // Author: Zainan Victor Zhou <[email protected]> pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import "./IERC5679.sol"; abstract contract ERC5679Ext20 is IERC5679Ext20, ERC165 { function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC5679Ext20).interfaceId || super.supportsInterface(interfaceId); } } abstract contract ERC5679Ext721 is IERC5679Ext721, ERC165 { function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC5679Ext721).interfaceId || super.supportsInterface(interfaceId); } } abstract contract ERC5679Ext1155 is IERC5679Ext1155, ERC165 { function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC5679Ext1155).interfaceId || super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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.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 { 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; } _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; _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 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: Apache-2.0 // Author: Zainan Victor Zhou <[email protected]> import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; pragma solidity ^0.8.9; interface IERC5679Ext20 { function mint(address _to, uint256 _amount, bytes calldata _data) external; function burn(address _from, uint256 _amount, bytes calldata _data) external; } interface IERC5679Ext721 { function safeMint(address _to, uint256 _id, bytes calldata _data) external; function burn(address _from, uint256 _id, bytes calldata _data) external; } interface IERC5679Ext1155 { function safeMint(address _to, uint256 _id, uint256 _amount, bytes calldata _data) external; function safeMintBatch(address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data) external; function burn(address _from, uint256 _id, uint256 _amount, bytes[] calldata _data) external; function burnBatch(address _from, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata _data) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
[{"inputs":[{"internalType":"uint256","name":"_version","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":false,"internalType":"uint256","name":"version","type":"uint256"},{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"url","type":"string"}],"name":"ErcRefImplDeploy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"burn","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200202c3803806200202c833981810160405281019062000037919062000149565b6040518060400160405280601381526020017f455243353637394578743230526566496d706c000000000000000000000000008152506040518060400160405280601381526020017f455243353637394578743230526566496d706c000000000000000000000000008152508160039081620000b49190620003eb565b508060049081620000c69190620003eb565b5050507ffb5c37dd7c9ac630435f7dd4758617b3ee83e25aaf927852f52543bc84b612e281604051620000fa919062000594565b60405180910390a150620005db565b600080fd5b6000819050919050565b62000123816200010e565b81146200012f57600080fd5b50565b600081519050620001438162000118565b92915050565b60006020828403121562000162576200016162000109565b5b6000620001728482850162000132565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620001fd57607f821691505b602082108103620002135762000212620001b5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200027d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200023e565b6200028986836200023e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620002cc620002c6620002c0846200010e565b620002a1565b6200010e565b9050919050565b6000819050919050565b620002e883620002ab565b62000300620002f782620002d3565b8484546200024b565b825550505050565b600090565b6200031762000308565b62000324818484620002dd565b505050565b5b818110156200034c57620003406000826200030d565b6001810190506200032a565b5050565b601f8211156200039b57620003658162000219565b62000370846200022e565b8101602085101562000380578190505b620003986200038f856200022e565b83018262000329565b50505b505050565b600082821c905092915050565b6000620003c060001984600802620003a0565b1980831691505092915050565b6000620003db8383620003ad565b9150826002028217905092915050565b620003f6826200017b565b67ffffffffffffffff81111562000412576200041162000186565b5b6200041e8254620001e4565b6200042b82828562000350565b600060209050601f8311600181146200046357600084156200044e578287015190505b6200045a8582620003cd565b865550620004ca565b601f198416620004738662000219565b60005b828110156200049d5784890151825560018201915060208501945060208101905062000476565b86831015620004bd5784890151620004b9601f891682620003ad565b8355505b6001600288020188555050505b505050505050565b620004dd816200010e565b82525050565b600082825260208201905092915050565b7f455243353637394578743230526566496d706c00000000000000000000000000600082015250565b60006200052c601383620004e3565b91506200053982620004f4565b602082019050919050565b7f687474703a2f2f7a7a6e2e6c692f657263726566000000000000000000000000600082015250565b60006200057c601483620004e3565b9150620005898262000544565b602082019050919050565b6000606082019050620005ab6000830184620004d2565b8181036020830152620005be816200051d565b90508181036040830152620005d3816200056d565b905092915050565b611a4180620005eb6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806344d171871161008c57806395d89b411161006657806395d89b4114610271578063a457c2d71461028f578063a9059cbb146102bf578063dd62ed3e146102ef576100ea565b806344d171871461020957806370a082311461022557806394d008ef14610255576100ea565b806318160ddd116100c857806318160ddd1461016d57806323b872dd1461018b578063313ce567146101bb57806339509351146101d9576100ea565b806301ffc9a7146100ef57806306fdde031461011f578063095ea7b31461013d575b600080fd5b61010960048036038101906101049190610fc9565b61031f565b6040516101169190611011565b60405180910390f35b610127610399565b60405161013491906110bc565b60405180910390f35b61015760048036038101906101529190611172565b61042b565b6040516101649190611011565b60405180910390f35b61017561044e565b60405161018291906111c1565b60405180910390f35b6101a560048036038101906101a091906111dc565b610458565b6040516101b29190611011565b60405180910390f35b6101c3610487565b6040516101d0919061124b565b60405180910390f35b6101f360048036038101906101ee9190611172565b610490565b6040516102009190611011565b60405180910390f35b610223600480360381019061021e91906112cb565b6104c7565b005b61023f600480360381019061023a919061133f565b6104d7565b60405161024c91906111c1565b60405180910390f35b61026f600480360381019061026a91906112cb565b61051f565b005b61027961052f565b60405161028691906110bc565b60405180910390f35b6102a960048036038101906102a49190611172565b6105c1565b6040516102b69190611011565b60405180910390f35b6102d960048036038101906102d49190611172565b610638565b6040516102e69190611011565b60405180910390f35b6103096004803603810190610304919061136c565b61065b565b60405161031691906111c1565b60405180910390f35b60007fd0017968000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103925750610391826106e2565b5b9050919050565b6060600380546103a8906113db565b80601f01602080910402602001604051908101604052809291908181526020018280546103d4906113db565b80156104215780601f106103f657610100808354040283529160200191610421565b820191906000526020600020905b81548152906001019060200180831161040457829003601f168201915b5050505050905090565b60008061043661074c565b9050610443818585610754565b600191505092915050565b6000600254905090565b60008061046361074c565b905061047085828561091d565b61047b8585856109a9565b60019150509392505050565b60006012905090565b60008061049b61074c565b90506104bc8185856104ad858961065b565b6104b7919061143b565b610754565b600191505092915050565b6104d18484610c28565b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105298484610dfe565b50505050565b60606004805461053e906113db565b80601f016020809104026020016040519081016040528092919081815260200182805461056a906113db565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b6000806105cc61074c565b905060006105da828661065b565b90508381101561061f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610616906114e1565b60405180910390fd5b61062c8286868403610754565b60019250505092915050565b60008061064361074c565b90506106508185856109a9565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ba90611573565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611605565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161091091906111c1565b60405180910390a3505050565b6000610929848461065b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109a35781811015610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c90611671565b60405180910390fd5b6109a28484848403610754565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f90611703565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90611795565b60405180910390fd5b610a92838383610f5d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90611827565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610bab919061143b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c0f91906111c1565b60405180910390a3610c22848484610f62565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e906118b9565b60405180910390fd5b610ca382600083610f5d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d209061194b565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d80919061196b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610de591906111c1565b60405180910390a3610df983600084610f62565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e64906119eb565b60405180910390fd5b610e7960008383610f5d565b8060026000828254610e8b919061143b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee0919061143b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f4591906111c1565b60405180910390a3610f5960008383610f62565b5050565b505050565b505050565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b610fa681610f71565b8114610fb157600080fd5b50565b600081359050610fc381610f9d565b92915050565b600060208284031215610fdf57610fde610f67565b5b6000610fed84828501610fb4565b91505092915050565b60008115159050919050565b61100b81610ff6565b82525050565b60006020820190506110266000830184611002565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561106657808201518184015260208101905061104b565b60008484015250505050565b6000601f19601f8301169050919050565b600061108e8261102c565b6110988185611037565b93506110a8818560208601611048565b6110b181611072565b840191505092915050565b600060208201905081810360008301526110d68184611083565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611109826110de565b9050919050565b611119816110fe565b811461112457600080fd5b50565b60008135905061113681611110565b92915050565b6000819050919050565b61114f8161113c565b811461115a57600080fd5b50565b60008135905061116c81611146565b92915050565b6000806040838503121561118957611188610f67565b5b600061119785828601611127565b92505060206111a88582860161115d565b9150509250929050565b6111bb8161113c565b82525050565b60006020820190506111d660008301846111b2565b92915050565b6000806000606084860312156111f5576111f4610f67565b5b600061120386828701611127565b935050602061121486828701611127565b92505060406112258682870161115d565b9150509250925092565b600060ff82169050919050565b6112458161122f565b82525050565b6000602082019050611260600083018461123c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261128b5761128a611266565b5b8235905067ffffffffffffffff8111156112a8576112a761126b565b5b6020830191508360018202830111156112c4576112c3611270565b5b9250929050565b600080600080606085870312156112e5576112e4610f67565b5b60006112f387828801611127565b94505060206113048782880161115d565b935050604085013567ffffffffffffffff81111561132557611324610f6c565b5b61133187828801611275565b925092505092959194509250565b60006020828403121561135557611354610f67565b5b600061136384828501611127565b91505092915050565b6000806040838503121561138357611382610f67565b5b600061139185828601611127565b92505060206113a285828601611127565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113f357607f821691505b602082108103611406576114056113ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114468261113c565b91506114518361113c565b92508282019050808211156114695761146861140c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006114cb602583611037565b91506114d68261146f565b604082019050919050565b600060208201905081810360008301526114fa816114be565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061155d602483611037565b915061156882611501565b604082019050919050565b6000602082019050818103600083015261158c81611550565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115ef602283611037565b91506115fa82611593565b604082019050919050565b6000602082019050818103600083015261161e816115e2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061165b601d83611037565b915061166682611625565b602082019050919050565b6000602082019050818103600083015261168a8161164e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116ed602583611037565b91506116f882611691565b604082019050919050565b6000602082019050818103600083015261171c816116e0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061177f602383611037565b915061178a82611723565b604082019050919050565b600060208201905081810360008301526117ae81611772565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611811602683611037565b915061181c826117b5565b604082019050919050565b6000602082019050818103600083015261184081611804565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006118a3602183611037565b91506118ae82611847565b604082019050919050565b600060208201905081810360008301526118d281611896565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611935602283611037565b9150611940826118d9565b604082019050919050565b6000602082019050818103600083015261196481611928565b9050919050565b60006119768261113c565b91506119818361113c565b92508282039050818111156119995761199861140c565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006119d5601f83611037565b91506119e08261199f565b602082019050919050565b60006020820190508181036000830152611a04816119c8565b905091905056fea264697066735822122041845cd382a1eddcf914e5e97a33829bb46dac6a794b8bf5f82179819bfccd5664736f6c634300081100330000000000000000000000000000000000000000000000000000000000001002
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806344d171871161008c57806395d89b411161006657806395d89b4114610271578063a457c2d71461028f578063a9059cbb146102bf578063dd62ed3e146102ef576100ea565b806344d171871461020957806370a082311461022557806394d008ef14610255576100ea565b806318160ddd116100c857806318160ddd1461016d57806323b872dd1461018b578063313ce567146101bb57806339509351146101d9576100ea565b806301ffc9a7146100ef57806306fdde031461011f578063095ea7b31461013d575b600080fd5b61010960048036038101906101049190610fc9565b61031f565b6040516101169190611011565b60405180910390f35b610127610399565b60405161013491906110bc565b60405180910390f35b61015760048036038101906101529190611172565b61042b565b6040516101649190611011565b60405180910390f35b61017561044e565b60405161018291906111c1565b60405180910390f35b6101a560048036038101906101a091906111dc565b610458565b6040516101b29190611011565b60405180910390f35b6101c3610487565b6040516101d0919061124b565b60405180910390f35b6101f360048036038101906101ee9190611172565b610490565b6040516102009190611011565b60405180910390f35b610223600480360381019061021e91906112cb565b6104c7565b005b61023f600480360381019061023a919061133f565b6104d7565b60405161024c91906111c1565b60405180910390f35b61026f600480360381019061026a91906112cb565b61051f565b005b61027961052f565b60405161028691906110bc565b60405180910390f35b6102a960048036038101906102a49190611172565b6105c1565b6040516102b69190611011565b60405180910390f35b6102d960048036038101906102d49190611172565b610638565b6040516102e69190611011565b60405180910390f35b6103096004803603810190610304919061136c565b61065b565b60405161031691906111c1565b60405180910390f35b60007fd0017968000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103925750610391826106e2565b5b9050919050565b6060600380546103a8906113db565b80601f01602080910402602001604051908101604052809291908181526020018280546103d4906113db565b80156104215780601f106103f657610100808354040283529160200191610421565b820191906000526020600020905b81548152906001019060200180831161040457829003601f168201915b5050505050905090565b60008061043661074c565b9050610443818585610754565b600191505092915050565b6000600254905090565b60008061046361074c565b905061047085828561091d565b61047b8585856109a9565b60019150509392505050565b60006012905090565b60008061049b61074c565b90506104bc8185856104ad858961065b565b6104b7919061143b565b610754565b600191505092915050565b6104d18484610c28565b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105298484610dfe565b50505050565b60606004805461053e906113db565b80601f016020809104026020016040519081016040528092919081815260200182805461056a906113db565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b6000806105cc61074c565b905060006105da828661065b565b90508381101561061f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610616906114e1565b60405180910390fd5b61062c8286868403610754565b60019250505092915050565b60008061064361074c565b90506106508185856109a9565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ba90611573565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990611605565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161091091906111c1565b60405180910390a3505050565b6000610929848461065b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109a35781811015610995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098c90611671565b60405180910390fd5b6109a28484848403610754565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0f90611703565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90611795565b60405180910390fd5b610a92838383610f5d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90611827565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610bab919061143b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c0f91906111c1565b60405180910390a3610c22848484610f62565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e906118b9565b60405180910390fd5b610ca382600083610f5d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d209061194b565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d80919061196b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610de591906111c1565b60405180910390a3610df983600084610f62565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e64906119eb565b60405180910390fd5b610e7960008383610f5d565b8060026000828254610e8b919061143b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee0919061143b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f4591906111c1565b60405180910390a3610f5960008383610f62565b5050565b505050565b505050565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b610fa681610f71565b8114610fb157600080fd5b50565b600081359050610fc381610f9d565b92915050565b600060208284031215610fdf57610fde610f67565b5b6000610fed84828501610fb4565b91505092915050565b60008115159050919050565b61100b81610ff6565b82525050565b60006020820190506110266000830184611002565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561106657808201518184015260208101905061104b565b60008484015250505050565b6000601f19601f8301169050919050565b600061108e8261102c565b6110988185611037565b93506110a8818560208601611048565b6110b181611072565b840191505092915050565b600060208201905081810360008301526110d68184611083565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611109826110de565b9050919050565b611119816110fe565b811461112457600080fd5b50565b60008135905061113681611110565b92915050565b6000819050919050565b61114f8161113c565b811461115a57600080fd5b50565b60008135905061116c81611146565b92915050565b6000806040838503121561118957611188610f67565b5b600061119785828601611127565b92505060206111a88582860161115d565b9150509250929050565b6111bb8161113c565b82525050565b60006020820190506111d660008301846111b2565b92915050565b6000806000606084860312156111f5576111f4610f67565b5b600061120386828701611127565b935050602061121486828701611127565b92505060406112258682870161115d565b9150509250925092565b600060ff82169050919050565b6112458161122f565b82525050565b6000602082019050611260600083018461123c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261128b5761128a611266565b5b8235905067ffffffffffffffff8111156112a8576112a761126b565b5b6020830191508360018202830111156112c4576112c3611270565b5b9250929050565b600080600080606085870312156112e5576112e4610f67565b5b60006112f387828801611127565b94505060206113048782880161115d565b935050604085013567ffffffffffffffff81111561132557611324610f6c565b5b61133187828801611275565b925092505092959194509250565b60006020828403121561135557611354610f67565b5b600061136384828501611127565b91505092915050565b6000806040838503121561138357611382610f67565b5b600061139185828601611127565b92505060206113a285828601611127565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113f357607f821691505b602082108103611406576114056113ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114468261113c565b91506114518361113c565b92508282019050808211156114695761146861140c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006114cb602583611037565b91506114d68261146f565b604082019050919050565b600060208201905081810360008301526114fa816114be565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061155d602483611037565b915061156882611501565b604082019050919050565b6000602082019050818103600083015261158c81611550565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115ef602283611037565b91506115fa82611593565b604082019050919050565b6000602082019050818103600083015261161e816115e2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061165b601d83611037565b915061166682611625565b602082019050919050565b6000602082019050818103600083015261168a8161164e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116ed602583611037565b91506116f882611691565b604082019050919050565b6000602082019050818103600083015261171c816116e0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061177f602383611037565b915061178a82611723565b604082019050919050565b600060208201905081810360008301526117ae81611772565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611811602683611037565b915061181c826117b5565b604082019050919050565b6000602082019050818103600083015261184081611804565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006118a3602183611037565b91506118ae82611847565b604082019050919050565b600060208201905081810360008301526118d281611896565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611935602283611037565b9150611940826118d9565b604082019050919050565b6000602082019050818103600083015261196481611928565b9050919050565b60006119768261113c565b91506119818361113c565b92508282039050818111156119995761199861140c565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006119d5601f83611037565b91506119e08261199f565b602082019050919050565b60006020820190508181036000830152611a04816119c8565b905091905056fea264697066735822122041845cd382a1eddcf914e5e97a33829bb46dac6a794b8bf5f82179819bfccd5664736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000001002
-----Decoded View---------------
Arg [0] : _version (uint256): 4098
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000001002
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.