Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
222,222,222 TWO
Holders
1,375
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
14,689.134834020664795171 TWOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TwentyTwoDAO
Compiler Version
v0.8.4+commit.c7e474f2
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.4; import "./ERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; contract TwentyTwoDAO is ERC20, EIP712 { uint256 public constant MAX_SUPPLY = uint248(222222222 ether); // for DAO. uint256 public constant AMOUNT_DAO = MAX_SUPPLY / 100 * 22; address public constant ADDR_DAO = 0xA28BD221F2785212D76203C1AA9fcB80dfECdA28; // for team uint256 public constant AMOUNT_TEAM = MAX_SUPPLY / 100 * 22; address public constant ADDR_TEAM = 0x767A2D5C203E4d2201f4Fa0Ff80fAEad0187E02F; // for airdrop uint256 public constant AMOUNT_AIRDROP = MAX_SUPPLY - (AMOUNT_DAO + AMOUNT_TEAM); constructor(string memory _name, string memory _symbol, address _signer) ERC20(_name, _symbol) EIP712("22", "1") { _mint(ADDR_DAO, AMOUNT_DAO); _mint(ADDR_TEAM, AMOUNT_TEAM); _totalSupply = AMOUNT_DAO + AMOUNT_TEAM; cSigner = _signer; } bytes32 constant public MINT_CALL_HASH_TYPE = keccak256("mint(address receiver,uint256 amount)"); address public immutable cSigner; function claim(uint248 amount, uint8 v, bytes32 r, bytes32 s) external { uint256 total = _totalSupply + amount; require(total <= MAX_SUPPLY, "22DAO: Exceed max supply"); require(minted(msg.sender) == 0, "22DAO: Claimed"); bytes32 digest = keccak256( abi.encodePacked( "\x19Ethereum Signed Message:\n32", keccak256( abi.encode( amount,msg.sender ) ) ) ); require(ecrecover(digest, v, r, s) == cSigner, "22DAO: Invalid signer"); _totalSupply = total; _mint(msg.sender, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/interfaces/IERC20Metadata.sol"; import "@openzeppelin/contracts/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 { struct MintBalance { uint8 minted; uint248 balance; } mapping(address => MintBalance) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 internal _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].balance; } function minted(address account) public view returns (uint256) { return _balances[account].minted; } /** * @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].balance; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender].balance = uint248(senderBalance - amount); } _balances[recipient].balance += uint248(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; uint256 b = _balances[account].balance + amount; _balances[account].balance = uint248(b); _balances[account].minted = 1; 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].balance; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account].balance = uint248(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 (interfaces/IERC20.sol) pragma solidity ^0.8.0; import "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../token/ERC20/extensions/IERC20Metadata.sol";
// 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/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/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":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"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":"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":"ADDR_DAO","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDR_TEAM","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_AIRDROP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_DAO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_TEAM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"uint248","name":"amount","type":"uint248"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"account","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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"}]
Contract Creation Code
6101606040523480156200001257600080fd5b5060405162002dff38038062002dff8339818101604052810190620000389190620006c2565b6040518060400160405280600281526020017f32320000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525084848160039080519060200190620000be92919062000589565b508060049080519060200190620000d792919062000589565b50505060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001438184846200035060201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508061012081815250505050505050620001fd73a28bd221f2785212d76203c1aa9fcb80dfecda28601660646ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620001e59190620008b3565b620001f19190620008eb565b6200038c60201b60201c565b6200026b73767a2d5c203e4d2201f4fa0ff80faead0187e02f601660646ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620002539190620008b3565b6200025f9190620008eb565b6200038c60201b60201c565b601660646ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620002a89190620008b3565b620002b49190620008eb565b601660646ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620002f19190620008b3565b620002fd9190620008eb565b62000309919062000856565b6002819055508073ffffffffffffffffffffffffffffffffffffffff166101408173ffffffffffffffffffffffffffffffffffffffff1660601b8152505050505062000b1d565b600083838346306040516020016200036d9594939291906200077d565b6040516020818303038152906040528051906020012090509392505050565b6000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1662000429919062000856565b9050806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555060016000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff021916908360ff1602179055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516200057c9190620007da565b60405180910390a3505050565b8280546200059790620009ca565b90600052602060002090601f016020900481019282620005bb576000855562000607565b82601f10620005d657805160ff191683800117855562000607565b8280016001018555821562000607579182015b8281111562000606578251825591602001919060010190620005e9565b5b5090506200061691906200061a565b5090565b5b80821115620006355760008160009055506001016200061b565b5090565b6000620006506200064a8462000820565b620007f7565b9050828152602081018484840111156200066957600080fd5b6200067684828562000994565b509392505050565b6000815190506200068f8162000b03565b92915050565b600082601f830112620006a757600080fd5b8151620006b984826020860162000639565b91505092915050565b600080600060608486031215620006d857600080fd5b600084015167ffffffffffffffff811115620006f357600080fd5b620007018682870162000695565b935050602084015167ffffffffffffffff8111156200071f57600080fd5b6200072d8682870162000695565b925050604062000740868287016200067e565b9150509250925092565b62000755816200094c565b82525050565b620007668162000960565b82525050565b62000777816200098a565b82525050565b600060a0820190506200079460008301886200075b565b620007a360208301876200075b565b620007b260408301866200075b565b620007c160608301856200076c565b620007d060808301846200074a565b9695505050505050565b6000602082019050620007f160008301846200076c565b92915050565b60006200080362000816565b905062000811828262000a00565b919050565b6000604051905090565b600067ffffffffffffffff8211156200083e576200083d62000ac3565b5b620008498262000af2565b9050602081019050919050565b600062000863826200098a565b915062000870836200098a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008a857620008a762000a36565b5b828201905092915050565b6000620008c0826200098a565b9150620008cd836200098a565b925082620008e057620008df62000a65565b5b828204905092915050565b6000620008f8826200098a565b915062000905836200098a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000941576200094062000a36565b5b828202905092915050565b600062000959826200096a565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620009b457808201518184015260208101905062000997565b83811115620009c4576000848401525b50505050565b60006002820490506001821680620009e357607f821691505b60208210811415620009fa57620009f962000a94565b5b50919050565b62000a0b8262000af2565b810181811067ffffffffffffffff8211171562000a2d5762000a2c62000ac3565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b62000b0e816200094c565b811462000b1a57600080fd5b50565b60805160a05160c05160601c60e05161010051610120516101405160601c61228c62000b736000396000818161065c01526109d2015260005050600050506000505060005050600050506000505061228c6000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80635760cc5d116100b8578063a457c2d71161007c578063a457c2d714610356578063a9059cbb14610386578063b8fcfa5e146103b6578063c688387f146103d4578063da394aec146103f2578063dd62ed3e1461041057610137565b80635760cc5d146102ae57806370a08231146102cc578063720248de146102fc57806380ef01601461031a57806395d89b411461033857610137565b80631e7269c5116100ff5780631e7269c5146101e257806323b872dd14610212578063313ce5671461024257806332cb6b0c14610260578063395093511461027e57610137565b80630389223d1461013c57806306fdde031461015a57806308dee48414610178578063095ea7b31461019457806318160ddd146101c4575b600080fd5b610144610440565b6040516101519190611bb8565b60405180910390f35b610162610488565b60405161016f9190611a2d565b60405180910390f35b610192600480360381019061018d91906116e3565b61051a565b005b6101ae60048036038101906101a991906116a7565b610770565b6040516101bb91906119b2565b60405180910390f35b6101cc61078e565b6040516101d99190611bb8565b60405180910390f35b6101fc60048036038101906101f791906115f3565b610798565b6040516102099190611bb8565b60405180910390f35b61022c60048036038101906102279190611658565b6107f3565b60405161023991906119b2565b60405180910390f35b61024a6108eb565b6040516102579190611bd3565b60405180910390f35b6102686108f4565b6040516102759190611bb8565b60405180910390f35b610298600480360381019061029391906116a7565b610924565b6040516102a591906119b2565b60405180910390f35b6102b66109d0565b6040516102c39190611997565b60405180910390f35b6102e660048036038101906102e191906115f3565b6109f4565b6040516102f39190611bb8565b60405180910390f35b610304610a8b565b6040516103119190611bb8565b60405180910390f35b610322610ad3565b60405161032f9190611bb8565b60405180910390f35b610340610ba1565b60405161034d9190611a2d565b60405180910390f35b610370600480360381019061036b91906116a7565b610c33565b60405161037d91906119b2565b60405180910390f35b6103a0600480360381019061039b91906116a7565b610d1e565b6040516103ad91906119b2565b60405180910390f35b6103be610d3c565b6040516103cb9190611997565b60405180910390f35b6103dc610d54565b6040516103e991906119cd565b60405180910390f35b6103fa610d78565b6040516104079190611997565b60405180910390f35b61042a6004803603810190610425919061161c565b610d90565b6040516104379190611bb8565b60405180910390f35b601660646ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661047b9190611cc0565b6104859190611cf1565b81565b60606003805461049790611e3c565b80601f01602080910402602001604051908101604052809291908181526020018280546104c390611e3c565b80156105105780601f106104e557610100808354040283529160200191610510565b820191906000526020600020905b8154815290600101906020018083116104f357829003601f168201915b5050505050905090565b6000847effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1660025461054b9190611c6a565b90506ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff168111156105bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b390611aaf565b60405180910390fd5b60006105c733610798565b14610607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fe90611b6f565b60405180910390fd5b6000853360405160200161061c929190611b8f565b604051602081830303815290604052805190602001206040516020016106429190611971565b6040516020818303038152906040528051906020012090507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16600182878787604051600081526020016040526040516106b494939291906119e8565b6020604051602081039080840390855afa1580156106d6573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff1614610736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072d90611b2f565b60405180910390fd5b8160028190555061076833877effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610e17565b505050505050565b600061078461077d611010565b8484611018565b6001905092915050565b6000600254905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff1660ff169050919050565b60006108008484846111e3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061084b611010565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c290611acf565b60405180910390fd5b6108df856108d7611010565b858403611018565b60019150509392505050565b60006012905090565b6ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681565b60006109c6610931611010565b84846001600061093f611010565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109c19190611c6a565b611018565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff169050919050565b601660646ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610ac69190611cc0565b610ad09190611cf1565b81565b601660646ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610b0e9190611cc0565b610b189190611cf1565b601660646ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610b539190611cc0565b610b5d9190611cf1565b610b679190611c6a565b6ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610b9e9190611d4b565b81565b606060048054610bb090611e3c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdc90611e3c565b8015610c295780601f10610bfe57610100808354040283529160200191610c29565b820191906000526020600020905b815481529060010190602001808311610c0c57829003601f168201915b5050505050905090565b60008060016000610c42611010565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf690611b4f565b60405180910390fd5b610d13610d0a611010565b85858403611018565b600191505092915050565b6000610d32610d2b611010565b84846111e3565b6001905092915050565b73767a2d5c203e4d2201f4fa0ff80faead0187e02f81565b7f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea81565b73a28bd221f2785212d76203c1aa9fcb80dfecda2881565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610eb29190611c6a565b9050806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555060016000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff021916908360ff1602179055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110039190611bb8565b60405180910390a3505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90611b0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef90611a6f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111d69190611bb8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a90611aef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba90611a4f565b60405180910390fd5b6112ce838383611580565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff169050818110156113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90611a8f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160018282829054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff166114b69190611c15565b92506101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115679190611bb8565b60405180910390a361157a848484611585565b50505050565b505050565b505050565b600081359050611599816121e3565b92915050565b6000813590506115ae816121fa565b92915050565b6000813590506115c381612211565b92915050565b6000813590506115d881612228565b92915050565b6000813590506115ed8161223f565b92915050565b60006020828403121561160557600080fd5b60006116138482850161158a565b91505092915050565b6000806040838503121561162f57600080fd5b600061163d8582860161158a565b925050602061164e8582860161158a565b9150509250929050565b60008060006060848603121561166d57600080fd5b600061167b8682870161158a565b935050602061168c8682870161158a565b925050604061169d868287016115c9565b9150509250925092565b600080604083850312156116ba57600080fd5b60006116c88582860161158a565b92505060206116d9858286016115c9565b9150509250929050565b600080600080608085870312156116f957600080fd5b6000611707878288016115b4565b9450506020611718878288016115de565b93505060406117298782880161159f565b925050606061173a8782880161159f565b91505092959194509250565b61174f81611d7f565b82525050565b61175e81611d91565b82525050565b61176d81611d9d565b82525050565b61178461177f82611d9d565b611e6e565b82525050565b600061179582611bee565b61179f8185611bf9565b93506117af818560208601611e09565b6117b881611f05565b840191505092915050565b60006117d0602383611bf9565b91506117db82611f16565b604082019050919050565b60006117f3601c83611c0a565b91506117fe82611f65565b601c82019050919050565b6000611816602283611bf9565b915061182182611f8e565b604082019050919050565b6000611839602683611bf9565b915061184482611fdd565b604082019050919050565b600061185c601883611bf9565b91506118678261202c565b602082019050919050565b600061187f602883611bf9565b915061188a82612055565b604082019050919050565b60006118a2602583611bf9565b91506118ad826120a4565b604082019050919050565b60006118c5602483611bf9565b91506118d0826120f3565b604082019050919050565b60006118e8601583611bf9565b91506118f382612142565b602082019050919050565b600061190b602583611bf9565b91506119168261216b565b604082019050919050565b600061192e600e83611bf9565b9150611939826121ba565b602082019050919050565b61194d81611dc7565b82525050565b61195c81611df2565b82525050565b61196b81611dfc565b82525050565b600061197c826117e6565b91506119888284611773565b60208201915081905092915050565b60006020820190506119ac6000830184611746565b92915050565b60006020820190506119c76000830184611755565b92915050565b60006020820190506119e26000830184611764565b92915050565b60006080820190506119fd6000830187611764565b611a0a6020830186611962565b611a176040830185611764565b611a246060830184611764565b95945050505050565b60006020820190508181036000830152611a47818461178a565b905092915050565b60006020820190508181036000830152611a68816117c3565b9050919050565b60006020820190508181036000830152611a8881611809565b9050919050565b60006020820190508181036000830152611aa88161182c565b9050919050565b60006020820190508181036000830152611ac88161184f565b9050919050565b60006020820190508181036000830152611ae881611872565b9050919050565b60006020820190508181036000830152611b0881611895565b9050919050565b60006020820190508181036000830152611b28816118b8565b9050919050565b60006020820190508181036000830152611b48816118db565b9050919050565b60006020820190508181036000830152611b68816118fe565b9050919050565b60006020820190508181036000830152611b8881611921565b9050919050565b6000604082019050611ba46000830185611944565b611bb16020830184611746565b9392505050565b6000602082019050611bcd6000830184611953565b92915050565b6000602082019050611be86000830184611962565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000611c2082611dc7565b9150611c2b83611dc7565b9250827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c5f57611c5e611e78565b5b828201905092915050565b6000611c7582611df2565b9150611c8083611df2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611cb557611cb4611e78565b5b828201905092915050565b6000611ccb82611df2565b9150611cd683611df2565b925082611ce657611ce5611ea7565b5b828204905092915050565b6000611cfc82611df2565b9150611d0783611df2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611d4057611d3f611e78565b5b828202905092915050565b6000611d5682611df2565b9150611d6183611df2565b925082821015611d7457611d73611e78565b5b828203905092915050565b6000611d8a82611da7565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611e27578082015181840152602081019050611e0c565b83811115611e36576000848401525b50505050565b60006002820490506001821680611e5457607f821691505b60208210811415611e6857611e67611ed6565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f323244414f3a20457863656564206d617820737570706c790000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f323244414f3a20496e76616c6964207369676e65720000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f323244414f3a20436c61696d6564000000000000000000000000000000000000600082015250565b6121ec81611d7f565b81146121f757600080fd5b50565b61220381611d9d565b811461220e57600080fd5b50565b61221a81611dc7565b811461222557600080fd5b50565b61223181611df2565b811461223c57600080fd5b50565b61224881611dfc565b811461225357600080fd5b5056fea2646970667358221220b82884410bc72c416ae261e1f364f47220dcbcc7d9a6dea50bffa7a64ecf496264736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000dae4a318e5726145bb0c7242e8ce08ca9a589fed00000000000000000000000000000000000000000000000000000000000000095477656e747954776f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354574f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c80635760cc5d116100b8578063a457c2d71161007c578063a457c2d714610356578063a9059cbb14610386578063b8fcfa5e146103b6578063c688387f146103d4578063da394aec146103f2578063dd62ed3e1461041057610137565b80635760cc5d146102ae57806370a08231146102cc578063720248de146102fc57806380ef01601461031a57806395d89b411461033857610137565b80631e7269c5116100ff5780631e7269c5146101e257806323b872dd14610212578063313ce5671461024257806332cb6b0c14610260578063395093511461027e57610137565b80630389223d1461013c57806306fdde031461015a57806308dee48414610178578063095ea7b31461019457806318160ddd146101c4575b600080fd5b610144610440565b6040516101519190611bb8565b60405180910390f35b610162610488565b60405161016f9190611a2d565b60405180910390f35b610192600480360381019061018d91906116e3565b61051a565b005b6101ae60048036038101906101a991906116a7565b610770565b6040516101bb91906119b2565b60405180910390f35b6101cc61078e565b6040516101d99190611bb8565b60405180910390f35b6101fc60048036038101906101f791906115f3565b610798565b6040516102099190611bb8565b60405180910390f35b61022c60048036038101906102279190611658565b6107f3565b60405161023991906119b2565b60405180910390f35b61024a6108eb565b6040516102579190611bd3565b60405180910390f35b6102686108f4565b6040516102759190611bb8565b60405180910390f35b610298600480360381019061029391906116a7565b610924565b6040516102a591906119b2565b60405180910390f35b6102b66109d0565b6040516102c39190611997565b60405180910390f35b6102e660048036038101906102e191906115f3565b6109f4565b6040516102f39190611bb8565b60405180910390f35b610304610a8b565b6040516103119190611bb8565b60405180910390f35b610322610ad3565b60405161032f9190611bb8565b60405180910390f35b610340610ba1565b60405161034d9190611a2d565b60405180910390f35b610370600480360381019061036b91906116a7565b610c33565b60405161037d91906119b2565b60405180910390f35b6103a0600480360381019061039b91906116a7565b610d1e565b6040516103ad91906119b2565b60405180910390f35b6103be610d3c565b6040516103cb9190611997565b60405180910390f35b6103dc610d54565b6040516103e991906119cd565b60405180910390f35b6103fa610d78565b6040516104079190611997565b60405180910390f35b61042a6004803603810190610425919061161c565b610d90565b6040516104379190611bb8565b60405180910390f35b601660646ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661047b9190611cc0565b6104859190611cf1565b81565b60606003805461049790611e3c565b80601f01602080910402602001604051908101604052809291908181526020018280546104c390611e3c565b80156105105780601f106104e557610100808354040283529160200191610510565b820191906000526020600020905b8154815290600101906020018083116104f357829003601f168201915b5050505050905090565b6000847effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1660025461054b9190611c6a565b90506ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff168111156105bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b390611aaf565b60405180910390fd5b60006105c733610798565b14610607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fe90611b6f565b60405180910390fd5b6000853360405160200161061c929190611b8f565b604051602081830303815290604052805190602001206040516020016106429190611971565b6040516020818303038152906040528051906020012090507f000000000000000000000000dae4a318e5726145bb0c7242e8ce08ca9a589fed73ffffffffffffffffffffffffffffffffffffffff16600182878787604051600081526020016040526040516106b494939291906119e8565b6020604051602081039080840390855afa1580156106d6573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff1614610736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072d90611b2f565b60405180910390fd5b8160028190555061076833877effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610e17565b505050505050565b600061078461077d611010565b8484611018565b6001905092915050565b6000600254905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900460ff1660ff169050919050565b60006108008484846111e3565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061084b611010565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c290611acf565b60405180910390fd5b6108df856108d7611010565b858403611018565b60019150509392505050565b60006012905090565b6ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681565b60006109c6610931611010565b84846001600061093f611010565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109c19190611c6a565b611018565b6001905092915050565b7f000000000000000000000000dae4a318e5726145bb0c7242e8ce08ca9a589fed81565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff169050919050565b601660646ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610ac69190611cc0565b610ad09190611cf1565b81565b601660646ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610b0e9190611cc0565b610b189190611cf1565b601660646ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610b539190611cc0565b610b5d9190611cf1565b610b679190611c6a565b6ab7d162cb18d773d57800007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610b9e9190611d4b565b81565b606060048054610bb090611e3c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdc90611e3c565b8015610c295780601f10610bfe57610100808354040283529160200191610c29565b820191906000526020600020905b815481529060010190602001808311610c0c57829003601f168201915b5050505050905090565b60008060016000610c42611010565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf690611b4f565b60405180910390fd5b610d13610d0a611010565b85858403611018565b600191505092915050565b6000610d32610d2b611010565b84846111e3565b6001905092915050565b73767a2d5c203e4d2201f4fa0ff80faead0187e02f81565b7f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea81565b73a28bd221f2785212d76203c1aa9fcb80dfecda2881565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610eb29190611c6a565b9050806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555060016000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff021916908360ff1602179055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110039190611bb8565b60405180910390a3505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90611b0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef90611a6f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111d69190611bb8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a90611aef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba90611a4f565b60405180910390fd5b6112ce838383611580565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160019054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff167effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff169050818110156113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90611a8f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160018282829054906101000a90047effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff166114b69190611c15565b92506101000a8154817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115679190611bb8565b60405180910390a361157a848484611585565b50505050565b505050565b505050565b600081359050611599816121e3565b92915050565b6000813590506115ae816121fa565b92915050565b6000813590506115c381612211565b92915050565b6000813590506115d881612228565b92915050565b6000813590506115ed8161223f565b92915050565b60006020828403121561160557600080fd5b60006116138482850161158a565b91505092915050565b6000806040838503121561162f57600080fd5b600061163d8582860161158a565b925050602061164e8582860161158a565b9150509250929050565b60008060006060848603121561166d57600080fd5b600061167b8682870161158a565b935050602061168c8682870161158a565b925050604061169d868287016115c9565b9150509250925092565b600080604083850312156116ba57600080fd5b60006116c88582860161158a565b92505060206116d9858286016115c9565b9150509250929050565b600080600080608085870312156116f957600080fd5b6000611707878288016115b4565b9450506020611718878288016115de565b93505060406117298782880161159f565b925050606061173a8782880161159f565b91505092959194509250565b61174f81611d7f565b82525050565b61175e81611d91565b82525050565b61176d81611d9d565b82525050565b61178461177f82611d9d565b611e6e565b82525050565b600061179582611bee565b61179f8185611bf9565b93506117af818560208601611e09565b6117b881611f05565b840191505092915050565b60006117d0602383611bf9565b91506117db82611f16565b604082019050919050565b60006117f3601c83611c0a565b91506117fe82611f65565b601c82019050919050565b6000611816602283611bf9565b915061182182611f8e565b604082019050919050565b6000611839602683611bf9565b915061184482611fdd565b604082019050919050565b600061185c601883611bf9565b91506118678261202c565b602082019050919050565b600061187f602883611bf9565b915061188a82612055565b604082019050919050565b60006118a2602583611bf9565b91506118ad826120a4565b604082019050919050565b60006118c5602483611bf9565b91506118d0826120f3565b604082019050919050565b60006118e8601583611bf9565b91506118f382612142565b602082019050919050565b600061190b602583611bf9565b91506119168261216b565b604082019050919050565b600061192e600e83611bf9565b9150611939826121ba565b602082019050919050565b61194d81611dc7565b82525050565b61195c81611df2565b82525050565b61196b81611dfc565b82525050565b600061197c826117e6565b91506119888284611773565b60208201915081905092915050565b60006020820190506119ac6000830184611746565b92915050565b60006020820190506119c76000830184611755565b92915050565b60006020820190506119e26000830184611764565b92915050565b60006080820190506119fd6000830187611764565b611a0a6020830186611962565b611a176040830185611764565b611a246060830184611764565b95945050505050565b60006020820190508181036000830152611a47818461178a565b905092915050565b60006020820190508181036000830152611a68816117c3565b9050919050565b60006020820190508181036000830152611a8881611809565b9050919050565b60006020820190508181036000830152611aa88161182c565b9050919050565b60006020820190508181036000830152611ac88161184f565b9050919050565b60006020820190508181036000830152611ae881611872565b9050919050565b60006020820190508181036000830152611b0881611895565b9050919050565b60006020820190508181036000830152611b28816118b8565b9050919050565b60006020820190508181036000830152611b48816118db565b9050919050565b60006020820190508181036000830152611b68816118fe565b9050919050565b60006020820190508181036000830152611b8881611921565b9050919050565b6000604082019050611ba46000830185611944565b611bb16020830184611746565b9392505050565b6000602082019050611bcd6000830184611953565b92915050565b6000602082019050611be86000830184611962565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000611c2082611dc7565b9150611c2b83611dc7565b9250827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c5f57611c5e611e78565b5b828201905092915050565b6000611c7582611df2565b9150611c8083611df2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611cb557611cb4611e78565b5b828201905092915050565b6000611ccb82611df2565b9150611cd683611df2565b925082611ce657611ce5611ea7565b5b828204905092915050565b6000611cfc82611df2565b9150611d0783611df2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611d4057611d3f611e78565b5b828202905092915050565b6000611d5682611df2565b9150611d6183611df2565b925082821015611d7457611d73611e78565b5b828203905092915050565b6000611d8a82611da7565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611e27578082015181840152602081019050611e0c565b83811115611e36576000848401525b50505050565b60006002820490506001821680611e5457607f821691505b60208210811415611e6857611e67611ed6565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f323244414f3a20457863656564206d617820737570706c790000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f323244414f3a20496e76616c6964207369676e65720000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f323244414f3a20436c61696d6564000000000000000000000000000000000000600082015250565b6121ec81611d7f565b81146121f757600080fd5b50565b61220381611d9d565b811461220e57600080fd5b50565b61221a81611dc7565b811461222557600080fd5b50565b61223181611df2565b811461223c57600080fd5b50565b61224881611dfc565b811461225357600080fd5b5056fea2646970667358221220b82884410bc72c416ae261e1f364f47220dcbcc7d9a6dea50bffa7a64ecf496264736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000dae4a318e5726145bb0c7242e8ce08ca9a589fed00000000000000000000000000000000000000000000000000000000000000095477656e747954776f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000354574f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): TwentyTwo
Arg [1] : _symbol (string): TWO
Arg [2] : _signer (address): 0xDaE4a318e5726145bB0C7242e8CE08CA9A589fED
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000dae4a318e5726145bb0c7242e8ce08ca9a589fed
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 5477656e747954776f0000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 54574f0000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.