More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 43 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Decimals | 16981848 | 636 days ago | IN | 0 ETH | 0.00055942 | ||||
Transfer | 15984474 | 776 days ago | IN | 0 ETH | 0.00100766 | ||||
Transfer | 15140523 | 901 days ago | IN | 0 ETH | 0.00127972 | ||||
Claim | 14064812 | 1073 days ago | IN | 0 ETH | 0.01452145 | ||||
Claim | 14056658 | 1074 days ago | IN | 0 ETH | 0.01174811 | ||||
Transfer | 14002134 | 1083 days ago | IN | 0 ETH | 0.00465305 | ||||
Claim | 13991689 | 1084 days ago | IN | 0 ETH | 0.01198278 | ||||
Claim | 13986444 | 1085 days ago | IN | 0 ETH | 0.01223058 | ||||
Claim | 13983564 | 1085 days ago | IN | 0 ETH | 0.01218931 | ||||
Claim | 13979419 | 1086 days ago | IN | 0 ETH | 0.02276308 | ||||
Claim | 13978565 | 1086 days ago | IN | 0 ETH | 0.02153691 | ||||
Claim | 13976037 | 1087 days ago | IN | 0 ETH | 0.01137497 | ||||
Claim | 13975082 | 1087 days ago | IN | 0 ETH | 0.0095125 | ||||
Claim | 13974082 | 1087 days ago | IN | 0 ETH | 0.01219026 | ||||
Claim | 13972291 | 1087 days ago | IN | 0 ETH | 0.01073632 | ||||
Claim | 13971019 | 1087 days ago | IN | 0 ETH | 0.01126195 | ||||
Claim | 13968926 | 1088 days ago | IN | 0 ETH | 0.0078373 | ||||
Claim | 13968278 | 1088 days ago | IN | 0 ETH | 0.00715673 | ||||
Transfer | 13967473 | 1088 days ago | IN | 0 ETH | 0.00676566 | ||||
Claim | 13967449 | 1088 days ago | IN | 0 ETH | 0.01521128 | ||||
Claim | 13967219 | 1088 days ago | IN | 0 ETH | 0.01111975 | ||||
Claim | 13967197 | 1088 days ago | IN | 0 ETH | 0.01135244 | ||||
Claim | 13967138 | 1088 days ago | IN | 0 ETH | 0.00961765 | ||||
Claim | 13966287 | 1088 days ago | IN | 0 ETH | 0.01479975 | ||||
Claim | 13966019 | 1088 days ago | IN | 0 ETH | 0.01012068 |
Loading...
Loading
Contract Name:
Dev3
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; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Dev3 is ERC20, EIP712, Ownable { mapping(address=>bool) public claimed; uint256 public constant MAX_SUPPLY = 10000000000000000; uint256 public constant claimPeriodEnds = 1654041600; address public immutable cSigner; bytes32 constant public MINT_CALL_HASH_TYPE = keccak256("mint(address receiver,uint256 amount)"); constructor(address _signer) ERC20("DEV3", "DEV3") EIP712("Dev3Dao", "1") { cSigner = _signer; _mint(address(this), MAX_SUPPLY); } function claim(uint256 amount, bytes32 r, bytes32 s, uint8 v) external { require(block.timestamp <= claimPeriodEnds, "Claim period ended"); require(!claimed[msg.sender], "Tokens already claimed."); require(balanceOf(address(this)) >= amount, "Max supply reached"); bytes32 digest = ECDSA.toTypedDataHash(_domainSeparatorV4(),keccak256(abi.encode(MINT_CALL_HASH_TYPE, msg.sender, amount))); require(ecrecover(digest, v, r, s) == cSigner, "Invalid signer"); claimed[msg.sender] = true; _transfer(address(this), msg.sender, amount); } function sweep(address dest) public onlyOwner { require(block.timestamp > claimPeriodEnds, "Claim period not yet ended"); _transfer(address(this), dest, balanceOf(address(this))); } function decimals() public pure override returns (uint8) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ 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 transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts 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 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_CALL_HASH_TYPE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"cSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimPeriodEnds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"dest","type":"address"}],"name":"sweep","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
6101606040523480156200001257600080fd5b5060405162002c0238038062002c028339818101604052810190620000389190620005c5565b6040518060400160405280600781526020017f4465763344616f000000000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f44455633000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4445563300000000000000000000000000000000000000000000000000000000815250816003908051906020019062000128929190620004fe565b50806004908051906020019062000141929190620004fe565b50505060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001ad8184846200027160201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508061012081815250505050505050620002196200020d620002ad60201b60201c565b620002b560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff166101408173ffffffffffffffffffffffffffffffffffffffff1660601b815250506200026a30662386f26fc100006200037b60201b60201c565b506200087f565b600083838346306040516020016200028e95949392919062000651565b6040516020818303038152906040528051906020012090509392505050565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003ee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e590620006ae565b60405180910390fd5b6200040260008383620004f460201b60201c565b8060026000828254620004169190620006fe565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200046d9190620006fe565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004d49190620006d0565b60405180910390a3620004f060008383620004f960201b60201c565b5050565b505050565b505050565b8280546200050c90620007a3565b90600052602060002090601f0160209004810192826200053057600085556200057c565b82601f106200054b57805160ff19168380011785556200057c565b828001600101855582156200057c579182015b828111156200057b5782518255916020019190600101906200055e565b5b5090506200058b91906200058f565b5090565b5b80821115620005aa57600081600090555060010162000590565b5090565b600081519050620005bf8162000865565b92915050565b600060208284031215620005de57620005dd62000837565b5b6000620005ee84828501620005ae565b91505092915050565b62000602816200075b565b82525050565b62000613816200076f565b82525050565b600062000628601f83620006ed565b915062000635826200083c565b602082019050919050565b6200064b8162000799565b82525050565b600060a08201905062000668600083018862000608565b62000677602083018762000608565b62000686604083018662000608565b62000695606083018562000640565b620006a46080830184620005f7565b9695505050505050565b60006020820190508181036000830152620006c98162000619565b9050919050565b6000602082019050620006e7600083018462000640565b92915050565b600082825260208201905092915050565b60006200070b8262000799565b9150620007188362000799565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000750576200074f620007d9565b5b828201905092915050565b6000620007688262000779565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006002820490506001821680620007bc57607f821691505b60208210811415620007d357620007d262000808565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000870816200075b565b81146200087c57600080fd5b50565b60805160a05160c05160601c60e05161010051610120516101405160601c61231b620008e7600039600081816107700152610c7a0152600061147e015260006114c00152600061149f015260006113d40152600061142a01526000611453015261231b6000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb14610342578063c688387f14610372578063c884ef8314610390578063dd62ed3e146103c0578063e40309f7146103f0578063f2fde38b1461040c57610137565b806370a082311461029c578063715018a6146102cc5780638da5cb5b146102d657806395d89b41146102f4578063a457c2d71461031257610137565b8063313ce567116100ff578063313ce567146101f457806332cb6b0c1461021257806339509351146102305780635760cc5d1461026057806366deac471461027e57610137565b806301681a621461013c57806306fdde0314610158578063095ea7b31461017657806318160ddd146101a657806323b872dd146101c4575b600080fd5b610156600480360381019061015191906115b5565b610428565b005b610160610500565b60405161016d9190611b1b565b60405180910390f35b610190600480360381019061018b9190611675565b610592565b60405161019d9190611a16565b60405180910390f35b6101ae6105b0565b6040516101bb9190611cfd565b60405180910390f35b6101de60048036038101906101d99190611622565b6105ba565b6040516101eb9190611a16565b60405180910390f35b6101fc6106b2565b6040516102099190611d18565b60405180910390f35b61021a6106b7565b6040516102279190611cfd565b60405180910390f35b61024a60048036038101906102459190611675565b6106c2565b6040516102579190611a16565b60405180910390f35b61026861076e565b60405161027591906119fb565b60405180910390f35b610286610792565b6040516102939190611cfd565b60405180910390f35b6102b660048036038101906102b191906115b5565b61079a565b6040516102c39190611cfd565b60405180910390f35b6102d46107e2565b005b6102de61086a565b6040516102eb91906119fb565b60405180910390f35b6102fc610894565b6040516103099190611b1b565b60405180910390f35b61032c60048036038101906103279190611675565b610926565b6040516103399190611a16565b60405180910390f35b61035c60048036038101906103579190611675565b610a11565b6040516103699190611a16565b60405180910390f35b61037a610a2f565b6040516103879190611a31565b60405180910390f35b6103aa60048036038101906103a591906115b5565b610a53565b6040516103b79190611a16565b60405180910390f35b6103da60048036038101906103d591906115e2565b610a73565b6040516103e79190611cfd565b60405180910390f35b61040a600480360381019061040591906116b5565b610afa565b005b610426600480360381019061042191906115b5565b610dbe565b005b610430610eb6565b73ffffffffffffffffffffffffffffffffffffffff1661044e61086a565b73ffffffffffffffffffffffffffffffffffffffff16146104a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049b90611c1d565b60405180910390fd5b636296ac0042116104ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e190611bbd565b60405180910390fd5b6104fd30826104f83061079a565b610ebe565b50565b60606003805461050f90611e42565b80601f016020809104026020016040519081016040528092919081815260200182805461053b90611e42565b80156105885780601f1061055d57610100808354040283529160200191610588565b820191906000526020600020905b81548152906001019060200180831161056b57829003601f168201915b5050505050905090565b60006105a661059f610eb6565b848461113f565b6001905092915050565b6000600254905090565b60006105c7848484610ebe565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610612610eb6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068990611bfd565b60405180910390fd5b6106a68561069e610eb6565b85840361113f565b60019150509392505050565b600090565b662386f26fc1000081565b60006107646106cf610eb6565b8484600160006106dd610eb6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461075f9190611d5a565b61113f565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b636296ac0081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107ea610eb6565b73ffffffffffffffffffffffffffffffffffffffff1661080861086a565b73ffffffffffffffffffffffffffffffffffffffff161461085e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085590611c1d565b60405180910390fd5b610868600061130a565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108a390611e42565b80601f01602080910402602001604051908101604052809291908181526020018280546108cf90611e42565b801561091c5780601f106108f15761010080835404028352916020019161091c565b820191906000526020600020905b8154815290600101906020018083116108ff57829003601f168201915b5050505050905090565b60008060016000610935610eb6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e990611cdd565b60405180910390fd5b610a066109fd610eb6565b8585840361113f565b600191505092915050565b6000610a25610a1e610eb6565b8484610ebe565b6001905092915050565b7f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea81565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b636296ac00421115610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3890611c7d565b60405180910390fd5b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc590611c3d565b60405180910390fd5b83610bd83061079a565b1015610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090611cbd565b60405180910390fd5b6000610c76610c266113d0565b7f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea3388604051602001610c5b93929190611a4c565b604051602081830303815290604052805190602001206114ea565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1660018284878760405160008152602001604052604051610cd29493929190611ad6565b6020604051602081039080840390855afa158015610cf4573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff1614610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90611bdd565b60405180910390fd5b6001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610db7303387610ebe565b5050505050565b610dc6610eb6565b73ffffffffffffffffffffffffffffffffffffffff16610de461086a565b73ffffffffffffffffffffffffffffffffffffffff1614610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190611c1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190611b5d565b60405180910390fd5b610eb38161130a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590611c5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590611b3d565b60405180910390fd5b610fa983838361151d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690611b9d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110c29190611d5a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111269190611cfd565b60405180910390a3611139848484611522565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690611c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121690611b7d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112fd9190611cfd565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561144c57507f000000000000000000000000000000000000000000000000000000000000000046145b15611479577f000000000000000000000000000000000000000000000000000000000000000090506114e7565b6114e47f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611527565b90505b90565b600082826040516020016114ff9291906119c4565b60405160208183030381529060405280519060200120905092915050565b505050565b505050565b60008383834630604051602001611542959493929190611a83565b6040516020818303038152906040528051906020012090509392505050565b60008135905061157081612289565b92915050565b600081359050611585816122a0565b92915050565b60008135905061159a816122b7565b92915050565b6000813590506115af816122ce565b92915050565b6000602082840312156115cb576115ca611edc565b5b60006115d984828501611561565b91505092915050565b600080604083850312156115f9576115f8611edc565b5b600061160785828601611561565b925050602061161885828601611561565b9150509250929050565b60008060006060848603121561163b5761163a611edc565b5b600061164986828701611561565b935050602061165a86828701611561565b925050604061166b8682870161158b565b9150509250925092565b6000806040838503121561168c5761168b611edc565b5b600061169a85828601611561565b92505060206116ab8582860161158b565b9150509250929050565b600080600080608085870312156116cf576116ce611edc565b5b60006116dd8782880161158b565b94505060206116ee87828801611576565b93505060406116ff87828801611576565b9250506060611710878288016115a0565b91505092959194509250565b61172581611db0565b82525050565b61173481611dc2565b82525050565b61174381611dce565b82525050565b61175a61175582611dce565b611e74565b82525050565b600061176b82611d33565b6117758185611d3e565b9350611785818560208601611e0f565b61178e81611ee1565b840191505092915050565b60006117a6602383611d3e565b91506117b182611ef2565b604082019050919050565b60006117c9602683611d3e565b91506117d482611f41565b604082019050919050565b60006117ec602283611d3e565b91506117f782611f90565b604082019050919050565b600061180f600283611d4f565b915061181a82611fdf565b600282019050919050565b6000611832602683611d3e565b915061183d82612008565b604082019050919050565b6000611855601a83611d3e565b915061186082612057565b602082019050919050565b6000611878600e83611d3e565b915061188382612080565b602082019050919050565b600061189b602883611d3e565b91506118a6826120a9565b604082019050919050565b60006118be602083611d3e565b91506118c9826120f8565b602082019050919050565b60006118e1601783611d3e565b91506118ec82612121565b602082019050919050565b6000611904602583611d3e565b915061190f8261214a565b604082019050919050565b6000611927601283611d3e565b915061193282612199565b602082019050919050565b600061194a602483611d3e565b9150611955826121c2565b604082019050919050565b600061196d601283611d3e565b915061197882612211565b602082019050919050565b6000611990602583611d3e565b915061199b8261223a565b604082019050919050565b6119af81611df8565b82525050565b6119be81611e02565b82525050565b60006119cf82611802565b91506119db8285611749565b6020820191506119eb8284611749565b6020820191508190509392505050565b6000602082019050611a10600083018461171c565b92915050565b6000602082019050611a2b600083018461172b565b92915050565b6000602082019050611a46600083018461173a565b92915050565b6000606082019050611a61600083018661173a565b611a6e602083018561171c565b611a7b60408301846119a6565b949350505050565b600060a082019050611a98600083018861173a565b611aa5602083018761173a565b611ab2604083018661173a565b611abf60608301856119a6565b611acc608083018461171c565b9695505050505050565b6000608082019050611aeb600083018761173a565b611af860208301866119b5565b611b05604083018561173a565b611b12606083018461173a565b95945050505050565b60006020820190508181036000830152611b358184611760565b905092915050565b60006020820190508181036000830152611b5681611799565b9050919050565b60006020820190508181036000830152611b76816117bc565b9050919050565b60006020820190508181036000830152611b96816117df565b9050919050565b60006020820190508181036000830152611bb681611825565b9050919050565b60006020820190508181036000830152611bd681611848565b9050919050565b60006020820190508181036000830152611bf68161186b565b9050919050565b60006020820190508181036000830152611c168161188e565b9050919050565b60006020820190508181036000830152611c36816118b1565b9050919050565b60006020820190508181036000830152611c56816118d4565b9050919050565b60006020820190508181036000830152611c76816118f7565b9050919050565b60006020820190508181036000830152611c968161191a565b9050919050565b60006020820190508181036000830152611cb68161193d565b9050919050565b60006020820190508181036000830152611cd681611960565b9050919050565b60006020820190508181036000830152611cf681611983565b9050919050565b6000602082019050611d1260008301846119a6565b92915050565b6000602082019050611d2d60008301846119b5565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000611d6582611df8565b9150611d7083611df8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611da557611da4611e7e565b5b828201905092915050565b6000611dbb82611dd8565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611e2d578082015181840152602081019050611e12565b83811115611e3c576000848401525b50505050565b60006002820490506001821680611e5a57607f821691505b60208210811415611e6e57611e6d611ead565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f436c61696d20706572696f64206e6f742079657420656e646564000000000000600082015250565b7f496e76616c6964207369676e6572000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e7320616c726561647920636c61696d65642e000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f436c61696d20706572696f6420656e6465640000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61229281611db0565b811461229d57600080fd5b50565b6122a981611dce565b81146122b457600080fd5b50565b6122c081611df8565b81146122cb57600080fd5b50565b6122d781611e02565b81146122e257600080fd5b5056fea2646970667358221220383f884c3a1d9867559e54c493021e47d549d50f348612aa0863ff4429d5bab064736f6c634300080700330000000000000000000000000aeefc3490fee05b4d14640a2a5452441fafdd1a
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb14610342578063c688387f14610372578063c884ef8314610390578063dd62ed3e146103c0578063e40309f7146103f0578063f2fde38b1461040c57610137565b806370a082311461029c578063715018a6146102cc5780638da5cb5b146102d657806395d89b41146102f4578063a457c2d71461031257610137565b8063313ce567116100ff578063313ce567146101f457806332cb6b0c1461021257806339509351146102305780635760cc5d1461026057806366deac471461027e57610137565b806301681a621461013c57806306fdde0314610158578063095ea7b31461017657806318160ddd146101a657806323b872dd146101c4575b600080fd5b610156600480360381019061015191906115b5565b610428565b005b610160610500565b60405161016d9190611b1b565b60405180910390f35b610190600480360381019061018b9190611675565b610592565b60405161019d9190611a16565b60405180910390f35b6101ae6105b0565b6040516101bb9190611cfd565b60405180910390f35b6101de60048036038101906101d99190611622565b6105ba565b6040516101eb9190611a16565b60405180910390f35b6101fc6106b2565b6040516102099190611d18565b60405180910390f35b61021a6106b7565b6040516102279190611cfd565b60405180910390f35b61024a60048036038101906102459190611675565b6106c2565b6040516102579190611a16565b60405180910390f35b61026861076e565b60405161027591906119fb565b60405180910390f35b610286610792565b6040516102939190611cfd565b60405180910390f35b6102b660048036038101906102b191906115b5565b61079a565b6040516102c39190611cfd565b60405180910390f35b6102d46107e2565b005b6102de61086a565b6040516102eb91906119fb565b60405180910390f35b6102fc610894565b6040516103099190611b1b565b60405180910390f35b61032c60048036038101906103279190611675565b610926565b6040516103399190611a16565b60405180910390f35b61035c60048036038101906103579190611675565b610a11565b6040516103699190611a16565b60405180910390f35b61037a610a2f565b6040516103879190611a31565b60405180910390f35b6103aa60048036038101906103a591906115b5565b610a53565b6040516103b79190611a16565b60405180910390f35b6103da60048036038101906103d591906115e2565b610a73565b6040516103e79190611cfd565b60405180910390f35b61040a600480360381019061040591906116b5565b610afa565b005b610426600480360381019061042191906115b5565b610dbe565b005b610430610eb6565b73ffffffffffffffffffffffffffffffffffffffff1661044e61086a565b73ffffffffffffffffffffffffffffffffffffffff16146104a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049b90611c1d565b60405180910390fd5b636296ac0042116104ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e190611bbd565b60405180910390fd5b6104fd30826104f83061079a565b610ebe565b50565b60606003805461050f90611e42565b80601f016020809104026020016040519081016040528092919081815260200182805461053b90611e42565b80156105885780601f1061055d57610100808354040283529160200191610588565b820191906000526020600020905b81548152906001019060200180831161056b57829003601f168201915b5050505050905090565b60006105a661059f610eb6565b848461113f565b6001905092915050565b6000600254905090565b60006105c7848484610ebe565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610612610eb6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068990611bfd565b60405180910390fd5b6106a68561069e610eb6565b85840361113f565b60019150509392505050565b600090565b662386f26fc1000081565b60006107646106cf610eb6565b8484600160006106dd610eb6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461075f9190611d5a565b61113f565b6001905092915050565b7f0000000000000000000000000aeefc3490fee05b4d14640a2a5452441fafdd1a81565b636296ac0081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107ea610eb6565b73ffffffffffffffffffffffffffffffffffffffff1661080861086a565b73ffffffffffffffffffffffffffffffffffffffff161461085e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085590611c1d565b60405180910390fd5b610868600061130a565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108a390611e42565b80601f01602080910402602001604051908101604052809291908181526020018280546108cf90611e42565b801561091c5780601f106108f15761010080835404028352916020019161091c565b820191906000526020600020905b8154815290600101906020018083116108ff57829003601f168201915b5050505050905090565b60008060016000610935610eb6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e990611cdd565b60405180910390fd5b610a066109fd610eb6565b8585840361113f565b600191505092915050565b6000610a25610a1e610eb6565b8484610ebe565b6001905092915050565b7f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea81565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b636296ac00421115610b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3890611c7d565b60405180910390fd5b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc590611c3d565b60405180910390fd5b83610bd83061079a565b1015610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090611cbd565b60405180910390fd5b6000610c76610c266113d0565b7f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea3388604051602001610c5b93929190611a4c565b604051602081830303815290604052805190602001206114ea565b90507f0000000000000000000000000aeefc3490fee05b4d14640a2a5452441fafdd1a73ffffffffffffffffffffffffffffffffffffffff1660018284878760405160008152602001604052604051610cd29493929190611ad6565b6020604051602081039080840390855afa158015610cf4573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff1614610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90611bdd565b60405180910390fd5b6001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610db7303387610ebe565b5050505050565b610dc6610eb6565b73ffffffffffffffffffffffffffffffffffffffff16610de461086a565b73ffffffffffffffffffffffffffffffffffffffff1614610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190611c1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190611b5d565b60405180910390fd5b610eb38161130a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590611c5d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590611b3d565b60405180910390fd5b610fa983838361151d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690611b9d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110c29190611d5a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111269190611cfd565b60405180910390a3611139848484611522565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690611c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121690611b7d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112fd9190611cfd565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f00000000000000000000000061441c4eb8146d6808373df235c7eee08267f47073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561144c57507f000000000000000000000000000000000000000000000000000000000000000146145b15611479577f0074718cff169c0a9daca6525bbc72407c41501ac5c8e4cf2799f6530ea151b290506114e7565b6114e47f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7fa8fc255e0ff792e44558e6ca345d489f897c992a2ca006cf794015f2a2f805917fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6611527565b90505b90565b600082826040516020016114ff9291906119c4565b60405160208183030381529060405280519060200120905092915050565b505050565b505050565b60008383834630604051602001611542959493929190611a83565b6040516020818303038152906040528051906020012090509392505050565b60008135905061157081612289565b92915050565b600081359050611585816122a0565b92915050565b60008135905061159a816122b7565b92915050565b6000813590506115af816122ce565b92915050565b6000602082840312156115cb576115ca611edc565b5b60006115d984828501611561565b91505092915050565b600080604083850312156115f9576115f8611edc565b5b600061160785828601611561565b925050602061161885828601611561565b9150509250929050565b60008060006060848603121561163b5761163a611edc565b5b600061164986828701611561565b935050602061165a86828701611561565b925050604061166b8682870161158b565b9150509250925092565b6000806040838503121561168c5761168b611edc565b5b600061169a85828601611561565b92505060206116ab8582860161158b565b9150509250929050565b600080600080608085870312156116cf576116ce611edc565b5b60006116dd8782880161158b565b94505060206116ee87828801611576565b93505060406116ff87828801611576565b9250506060611710878288016115a0565b91505092959194509250565b61172581611db0565b82525050565b61173481611dc2565b82525050565b61174381611dce565b82525050565b61175a61175582611dce565b611e74565b82525050565b600061176b82611d33565b6117758185611d3e565b9350611785818560208601611e0f565b61178e81611ee1565b840191505092915050565b60006117a6602383611d3e565b91506117b182611ef2565b604082019050919050565b60006117c9602683611d3e565b91506117d482611f41565b604082019050919050565b60006117ec602283611d3e565b91506117f782611f90565b604082019050919050565b600061180f600283611d4f565b915061181a82611fdf565b600282019050919050565b6000611832602683611d3e565b915061183d82612008565b604082019050919050565b6000611855601a83611d3e565b915061186082612057565b602082019050919050565b6000611878600e83611d3e565b915061188382612080565b602082019050919050565b600061189b602883611d3e565b91506118a6826120a9565b604082019050919050565b60006118be602083611d3e565b91506118c9826120f8565b602082019050919050565b60006118e1601783611d3e565b91506118ec82612121565b602082019050919050565b6000611904602583611d3e565b915061190f8261214a565b604082019050919050565b6000611927601283611d3e565b915061193282612199565b602082019050919050565b600061194a602483611d3e565b9150611955826121c2565b604082019050919050565b600061196d601283611d3e565b915061197882612211565b602082019050919050565b6000611990602583611d3e565b915061199b8261223a565b604082019050919050565b6119af81611df8565b82525050565b6119be81611e02565b82525050565b60006119cf82611802565b91506119db8285611749565b6020820191506119eb8284611749565b6020820191508190509392505050565b6000602082019050611a10600083018461171c565b92915050565b6000602082019050611a2b600083018461172b565b92915050565b6000602082019050611a46600083018461173a565b92915050565b6000606082019050611a61600083018661173a565b611a6e602083018561171c565b611a7b60408301846119a6565b949350505050565b600060a082019050611a98600083018861173a565b611aa5602083018761173a565b611ab2604083018661173a565b611abf60608301856119a6565b611acc608083018461171c565b9695505050505050565b6000608082019050611aeb600083018761173a565b611af860208301866119b5565b611b05604083018561173a565b611b12606083018461173a565b95945050505050565b60006020820190508181036000830152611b358184611760565b905092915050565b60006020820190508181036000830152611b5681611799565b9050919050565b60006020820190508181036000830152611b76816117bc565b9050919050565b60006020820190508181036000830152611b96816117df565b9050919050565b60006020820190508181036000830152611bb681611825565b9050919050565b60006020820190508181036000830152611bd681611848565b9050919050565b60006020820190508181036000830152611bf68161186b565b9050919050565b60006020820190508181036000830152611c168161188e565b9050919050565b60006020820190508181036000830152611c36816118b1565b9050919050565b60006020820190508181036000830152611c56816118d4565b9050919050565b60006020820190508181036000830152611c76816118f7565b9050919050565b60006020820190508181036000830152611c968161191a565b9050919050565b60006020820190508181036000830152611cb68161193d565b9050919050565b60006020820190508181036000830152611cd681611960565b9050919050565b60006020820190508181036000830152611cf681611983565b9050919050565b6000602082019050611d1260008301846119a6565b92915050565b6000602082019050611d2d60008301846119b5565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000611d6582611df8565b9150611d7083611df8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611da557611da4611e7e565b5b828201905092915050565b6000611dbb82611dd8565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611e2d578082015181840152602081019050611e12565b83811115611e3c576000848401525b50505050565b60006002820490506001821680611e5a57607f821691505b60208210811415611e6e57611e6d611ead565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f436c61696d20706572696f64206e6f742079657420656e646564000000000000600082015250565b7f496e76616c6964207369676e6572000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e7320616c726561647920636c61696d65642e000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f436c61696d20706572696f6420656e6465640000000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61229281611db0565b811461229d57600080fd5b50565b6122a981611dce565b81146122b457600080fd5b50565b6122c081611df8565b81146122cb57600080fd5b50565b6122d781611e02565b81146122e257600080fd5b5056fea2646970667358221220383f884c3a1d9867559e54c493021e47d549d50f348612aa0863ff4429d5bab064736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000aeefc3490fee05b4d14640a2a5452441fafdd1a
-----Decoded View---------------
Arg [0] : _signer (address): 0x0AEEFC3490FeE05B4D14640A2a5452441FAfdD1a
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000aeefc3490fee05b4d14640a2a5452441fafdd1a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.