ERC-721
Overview
Max Total Supply
128 THC
Holders
50
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 THCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TreasureHuntingClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-25 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/THC.sol pragma solidity ^0.8.4; contract TreasureHuntingClub is Ownable, ERC721A, ReentrancyGuard { uint256 public MINT_PRICE = 0.02 ether; uint256 public constant MAX_SUPPLY = 10000; uint256 public constant TOKENS_PER_MINT = 100; address public constant CREATOR_ADDRESS = 0x2Bd273adA8388d35936DCc28d11082a60806993C; constructor() ERC721A("TreasureHuntingClub", "THC") {} function mint(uint256 quantity) external payable { require( _numberMinted(msg.sender) + quantity <= TOKENS_PER_MINT, "can not mint this many" ); require(totalSupply() + quantity <= MAX_SUPPLY, "reached max supply, please mint less"); uint256 totalCost = MINT_PRICE * quantity; _safeMint(msg.sender, quantity); _refundIfOver(totalCost); } // helper function for collecting mint price function _refundIfOver(uint256 price) private { require(msg.value >= price, "Need to send more ETH."); if (msg.value > price) { payable(msg.sender).transfer(msg.value - price); } } // helper function what check how many NFTs an address minted function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } // metadata URI string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawMoney() external onlyOwner nonReentrant { (bool success, ) = CREATOR_ADDRESS.call{ value: address(this).balance }(""); require(success, "Transfer failed."); } // Setters function setMintPriceWei(uint256 price) external onlyOwner { MINT_PRICE = price; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CREATOR_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKENS_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPriceWei","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266470de4df820000600a553480156200001c57600080fd5b506040518060400160405280601381526020017f547265617375726548756e74696e67436c7562000000000000000000000000008152506040518060400160405280600381526020017f5448430000000000000000000000000000000000000000000000000000000000815250620000a96200009d6200010160201b60201c565b6200010960201b60201c565b8160039080519060200190620000c1929190620001d2565b508060049080519060200190620000da929190620001d2565b50620000eb620001cd60201b60201c565b60018190555050506001600981905550620002e7565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b828054620001e09062000282565b90600052602060002090601f01602090048101928262000204576000855562000250565b82601f106200021f57805160ff191683800117855562000250565b8280016001018555821562000250579182015b828111156200024f57825182559160200191906001019062000232565b5b5090506200025f919062000263565b5090565b5b808211156200027e57600081600090555060010162000264565b5090565b600060028204905060018216806200029b57607f821691505b60208210811415620002b257620002b1620002b8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612a0680620002f76000396000f3fe6080604052600436106101815760003560e01c80637de6b6fe116100d1578063b88d4fde1161008a578063dc33e68111610064578063dc33e68114610519578063e985e9c514610556578063ed016a4614610593578063f2fde38b146105be57610181565b8063b88d4fde14610495578063c002d23d146104b1578063c87b56dd146104dc57610181565b80637de6b6fe146103b85780638da5cb5b146103e357806395d89b411461040e578063a0712d6814610439578063a22cb46514610455578063ac4460021461047e57610181565b806323b872dd1161013e57806355f804b31161011857806355f804b3146102fe5780636352211e1461032757806370a0823114610364578063715018a6146103a157610181565b806323b872dd1461029b57806332cb6b0c146102b757806342842e0e146102e257610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806315ebd1231461024757806318160ddd14610270575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612015565b6105e7565b6040516101ba9190612371565b60405180910390f35b3480156101cf57600080fd5b506101d8610679565b6040516101e5919061238c565b60405180910390f35b3480156101fa57600080fd5b50610215600480360381019061021091906120bc565b61070b565b604051610222919061230a565b60405180910390f35b61024560048036038101906102409190611fd5565b61078a565b005b34801561025357600080fd5b5061026e600480360381019061026991906120bc565b6108ce565b005b34801561027c57600080fd5b506102856108e0565b604051610292919061248e565b60405180910390f35b6102b560048036038101906102b09190611ebf565b6108f7565b005b3480156102c357600080fd5b506102cc610c1c565b6040516102d9919061248e565b60405180910390f35b6102fc60048036038101906102f79190611ebf565b610c22565b005b34801561030a57600080fd5b506103256004803603810190610320919061206f565b610c42565b005b34801561033357600080fd5b5061034e600480360381019061034991906120bc565b610c60565b60405161035b919061230a565b60405180910390f35b34801561037057600080fd5b5061038b60048036038101906103869190611e52565b610c72565b604051610398919061248e565b60405180910390f35b3480156103ad57600080fd5b506103b6610d2b565b005b3480156103c457600080fd5b506103cd610d3f565b6040516103da919061230a565b60405180910390f35b3480156103ef57600080fd5b506103f8610d57565b604051610405919061230a565b60405180910390f35b34801561041a57600080fd5b50610423610d80565b604051610430919061238c565b60405180910390f35b610453600480360381019061044e91906120bc565b610e12565b005b34801561046157600080fd5b5061047c60048036038101906104779190611f95565b610ee9565b005b34801561048a57600080fd5b50610493610ff4565b005b6104af60048036038101906104aa9190611f12565b611115565b005b3480156104bd57600080fd5b506104c6611188565b6040516104d3919061248e565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe91906120bc565b61118e565b604051610510919061238c565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b9190611e52565b61122d565b60405161054d919061248e565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190611e7f565b61123f565b60405161058a9190612371565b60405180910390f35b34801561059f57600080fd5b506105a86112d3565b6040516105b5919061248e565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190611e52565b6112d8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106725750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610688906126e7565b80601f01602080910402602001604051908101604052809291908181526020018280546106b4906126e7565b80156107015780601f106106d657610100808354040283529160200191610701565b820191906000526020600020905b8154815290600101906020018083116106e457829003601f168201915b5050505050905090565b60006107168261135c565b61074c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061079582610c60565b90508073ffffffffffffffffffffffffffffffffffffffff166107b66113bb565b73ffffffffffffffffffffffffffffffffffffffff1614610819576107e2816107dd6113bb565b61123f565b610818576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6108d66113c3565b80600a8190555050565b60006108ea611441565b6002546001540303905090565b600061090282611446565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610969576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061097584611514565b9150915061098b81876109866113bb565b61153b565b6109d7576109a08661099b6113bb565b61123f565b6109d6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a3e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a4b868686600161157f565b8015610a5657600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b2485610b00888887611585565b7c0200000000000000000000000000000000000000000000000000000000176115ad565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610bac576000600185019050600060056000838152602001908152602001600020541415610baa576001548114610ba9578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c1486868660016115d8565b505050505050565b61271081565b610c3d83838360405180602001604052806000815250611115565b505050565b610c4a6113c3565b8181600b9190610c5b929190611c80565b505050565b6000610c6b82611446565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cda576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d336113c3565b610d3d60006115de565b565b732bd273ada8388d35936dcc28d11082a60806993c81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d8f906126e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbb906126e7565b8015610e085780601f10610ddd57610100808354040283529160200191610e08565b820191906000526020600020905b815481529060010190602001808311610deb57829003601f168201915b5050505050905090565b606481610e1e336116a2565b610e28919061254d565b1115610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e609061244e565b60405180910390fd5b61271081610e756108e0565b610e7f919061254d565b1115610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb7906123ee565b60405180910390fd5b600081600a54610ed091906125a3565b9050610edc33836116f9565b610ee581611717565b5050565b8060086000610ef66113bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fa36113bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fe89190612371565b60405180910390a35050565b610ffc6113c3565b60026009541415611042576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110399061246e565b60405180910390fd5b60026009819055506000732bd273ada8388d35936dcc28d11082a60806993c73ffffffffffffffffffffffffffffffffffffffff1647604051611084906122f5565b60006040518083038185875af1925050503d80600081146110c1576040519150601f19603f3d011682016040523d82523d6000602084013e6110c6565b606091505b505090508061110a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111019061240e565b60405180910390fd5b506001600981905550565b6111208484846108f7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111825761114b848484846117b8565b611181576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a5481565b60606111998261135c565b6111cf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111d9611918565b90506000815114156111fa5760405180602001604052806000815250611225565b80611204846119aa565b6040516020016112159291906122d1565b6040516020818303038152906040525b915050919050565b6000611238826116a2565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606481565b6112e06113c3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611347906123ae565b60405180910390fd5b611359816115de565b50565b600081611367611441565b11158015611376575060015482105b80156113b4575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b6113cb611a03565b73ffffffffffffffffffffffffffffffffffffffff166113e9610d57565b73ffffffffffffffffffffffffffffffffffffffff161461143f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611436906123ce565b60405180910390fd5b565b600090565b60008082905080611455611441565b116114dd576001548110156114dc5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156114da575b60008114156114d05760056000836001900393508381526020019081526020016000205490506114a5565b809250505061150f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861159c868684611a0b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611713828260405180602001604052806000815250611a14565b5050565b8034101561175a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117519061242e565b60405180910390fd5b803411156117b5573373ffffffffffffffffffffffffffffffffffffffff166108fc823461178891906125fd565b9081150290604051600060405180830381858888f193505050501580156117b3573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117de6113bb565b8786866040518563ffffffff1660e01b81526004016118009493929190612325565b602060405180830381600087803b15801561181a57600080fd5b505af192505050801561184b57506040513d601f19601f820116820180604052508101906118489190612042565b60015b6118c5573d806000811461187b576040519150601f19603f3d011682016040523d82523d6000602084013e611880565b606091505b506000815114156118bd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611927906126e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611953906126e7565b80156119a05780601f10611975576101008083540402835291602001916119a0565b820191906000526020600020905b81548152906001019060200180831161198357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156119ee57600184039350600a81066030018453600a81049050806119e9576119ee565b6119c3565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611a1e8383611ab2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611aad5760006001549050600083820390505b611a5f60008683806001019450866117b8565b611a95576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611a4c578160015414611aaa57600080fd5b50505b505050565b600060015490506000821415611af4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b01600084838561157f565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b7883611b696000866000611585565b611b7285611c70565b176115ad565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611c1957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611bde565b506000821415611c55576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050611c6b60008483856115d8565b505050565b60006001821460e11b9050919050565b828054611c8c906126e7565b90600052602060002090601f016020900481019282611cae5760008555611cf5565b82601f10611cc757803560ff1916838001178555611cf5565b82800160010185558215611cf5579182015b82811115611cf4578235825591602001919060010190611cd9565b5b509050611d029190611d06565b5090565b5b80821115611d1f576000816000905550600101611d07565b5090565b6000611d36611d31846124ce565b6124a9565b905082815260208101848484011115611d5257611d516127e6565b5b611d5d8482856126a5565b509392505050565b600081359050611d7481612974565b92915050565b600081359050611d898161298b565b92915050565b600081359050611d9e816129a2565b92915050565b600081519050611db3816129a2565b92915050565b600082601f830112611dce57611dcd6127dc565b5b8135611dde848260208601611d23565b91505092915050565b60008083601f840112611dfd57611dfc6127dc565b5b8235905067ffffffffffffffff811115611e1a57611e196127d7565b5b602083019150836001820283011115611e3657611e356127e1565b5b9250929050565b600081359050611e4c816129b9565b92915050565b600060208284031215611e6857611e676127f0565b5b6000611e7684828501611d65565b91505092915050565b60008060408385031215611e9657611e956127f0565b5b6000611ea485828601611d65565b9250506020611eb585828601611d65565b9150509250929050565b600080600060608486031215611ed857611ed76127f0565b5b6000611ee686828701611d65565b9350506020611ef786828701611d65565b9250506040611f0886828701611e3d565b9150509250925092565b60008060008060808587031215611f2c57611f2b6127f0565b5b6000611f3a87828801611d65565b9450506020611f4b87828801611d65565b9350506040611f5c87828801611e3d565b925050606085013567ffffffffffffffff811115611f7d57611f7c6127eb565b5b611f8987828801611db9565b91505092959194509250565b60008060408385031215611fac57611fab6127f0565b5b6000611fba85828601611d65565b9250506020611fcb85828601611d7a565b9150509250929050565b60008060408385031215611fec57611feb6127f0565b5b6000611ffa85828601611d65565b925050602061200b85828601611e3d565b9150509250929050565b60006020828403121561202b5761202a6127f0565b5b600061203984828501611d8f565b91505092915050565b600060208284031215612058576120576127f0565b5b600061206684828501611da4565b91505092915050565b60008060208385031215612086576120856127f0565b5b600083013567ffffffffffffffff8111156120a4576120a36127eb565b5b6120b085828601611de7565b92509250509250929050565b6000602082840312156120d2576120d16127f0565b5b60006120e084828501611e3d565b91505092915050565b6120f281612631565b82525050565b61210181612643565b82525050565b6000612112826124ff565b61211c8185612515565b935061212c8185602086016126b4565b612135816127f5565b840191505092915050565b600061214b8261250a565b6121558185612531565b93506121658185602086016126b4565b61216e816127f5565b840191505092915050565b60006121848261250a565b61218e8185612542565b935061219e8185602086016126b4565b80840191505092915050565b60006121b7602683612531565b91506121c282612806565b604082019050919050565b60006121da602083612531565b91506121e582612855565b602082019050919050565b60006121fd602483612531565b91506122088261287e565b604082019050919050565b6000612220600083612526565b915061222b826128cd565b600082019050919050565b6000612243601083612531565b915061224e826128d0565b602082019050919050565b6000612266601683612531565b9150612271826128f9565b602082019050919050565b6000612289601683612531565b915061229482612922565b602082019050919050565b60006122ac601f83612531565b91506122b78261294b565b602082019050919050565b6122cb8161269b565b82525050565b60006122dd8285612179565b91506122e98284612179565b91508190509392505050565b600061230082612213565b9150819050919050565b600060208201905061231f60008301846120e9565b92915050565b600060808201905061233a60008301876120e9565b61234760208301866120e9565b61235460408301856122c2565b81810360608301526123668184612107565b905095945050505050565b600060208201905061238660008301846120f8565b92915050565b600060208201905081810360008301526123a68184612140565b905092915050565b600060208201905081810360008301526123c7816121aa565b9050919050565b600060208201905081810360008301526123e7816121cd565b9050919050565b60006020820190508181036000830152612407816121f0565b9050919050565b6000602082019050818103600083015261242781612236565b9050919050565b6000602082019050818103600083015261244781612259565b9050919050565b600060208201905081810360008301526124678161227c565b9050919050565b600060208201905081810360008301526124878161229f565b9050919050565b60006020820190506124a360008301846122c2565b92915050565b60006124b36124c4565b90506124bf8282612719565b919050565b6000604051905090565b600067ffffffffffffffff8211156124e9576124e86127a8565b5b6124f2826127f5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006125588261269b565b91506125638361269b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156125985761259761274a565b5b828201905092915050565b60006125ae8261269b565b91506125b98361269b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125f2576125f161274a565b5b828202905092915050565b60006126088261269b565b91506126138361269b565b9250828210156126265761262561274a565b5b828203905092915050565b600061263c8261267b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156126d25780820151818401526020810190506126b7565b838111156126e1576000848401525b50505050565b600060028204905060018216806126ff57607f821691505b6020821081141561271357612712612779565b5b50919050565b612722826127f5565b810181811067ffffffffffffffff82111715612741576127406127a8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f72656163686564206d617820737570706c792c20706c65617365206d696e742060008201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61297d81612631565b811461298857600080fd5b50565b61299481612643565b811461299f57600080fd5b50565b6129ab8161264f565b81146129b657600080fd5b50565b6129c28161269b565b81146129cd57600080fd5b5056fea2646970667358221220a4d4eb5f24fbe8929c0ccd07c7aedcd4b4cb6b0ee3feef737bfecd52212b04ba64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101815760003560e01c80637de6b6fe116100d1578063b88d4fde1161008a578063dc33e68111610064578063dc33e68114610519578063e985e9c514610556578063ed016a4614610593578063f2fde38b146105be57610181565b8063b88d4fde14610495578063c002d23d146104b1578063c87b56dd146104dc57610181565b80637de6b6fe146103b85780638da5cb5b146103e357806395d89b411461040e578063a0712d6814610439578063a22cb46514610455578063ac4460021461047e57610181565b806323b872dd1161013e57806355f804b31161011857806355f804b3146102fe5780636352211e1461032757806370a0823114610364578063715018a6146103a157610181565b806323b872dd1461029b57806332cb6b0c146102b757806342842e0e146102e257610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806315ebd1231461024757806318160ddd14610270575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612015565b6105e7565b6040516101ba9190612371565b60405180910390f35b3480156101cf57600080fd5b506101d8610679565b6040516101e5919061238c565b60405180910390f35b3480156101fa57600080fd5b50610215600480360381019061021091906120bc565b61070b565b604051610222919061230a565b60405180910390f35b61024560048036038101906102409190611fd5565b61078a565b005b34801561025357600080fd5b5061026e600480360381019061026991906120bc565b6108ce565b005b34801561027c57600080fd5b506102856108e0565b604051610292919061248e565b60405180910390f35b6102b560048036038101906102b09190611ebf565b6108f7565b005b3480156102c357600080fd5b506102cc610c1c565b6040516102d9919061248e565b60405180910390f35b6102fc60048036038101906102f79190611ebf565b610c22565b005b34801561030a57600080fd5b506103256004803603810190610320919061206f565b610c42565b005b34801561033357600080fd5b5061034e600480360381019061034991906120bc565b610c60565b60405161035b919061230a565b60405180910390f35b34801561037057600080fd5b5061038b60048036038101906103869190611e52565b610c72565b604051610398919061248e565b60405180910390f35b3480156103ad57600080fd5b506103b6610d2b565b005b3480156103c457600080fd5b506103cd610d3f565b6040516103da919061230a565b60405180910390f35b3480156103ef57600080fd5b506103f8610d57565b604051610405919061230a565b60405180910390f35b34801561041a57600080fd5b50610423610d80565b604051610430919061238c565b60405180910390f35b610453600480360381019061044e91906120bc565b610e12565b005b34801561046157600080fd5b5061047c60048036038101906104779190611f95565b610ee9565b005b34801561048a57600080fd5b50610493610ff4565b005b6104af60048036038101906104aa9190611f12565b611115565b005b3480156104bd57600080fd5b506104c6611188565b6040516104d3919061248e565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe91906120bc565b61118e565b604051610510919061238c565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b9190611e52565b61122d565b60405161054d919061248e565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190611e7f565b61123f565b60405161058a9190612371565b60405180910390f35b34801561059f57600080fd5b506105a86112d3565b6040516105b5919061248e565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190611e52565b6112d8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106725750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610688906126e7565b80601f01602080910402602001604051908101604052809291908181526020018280546106b4906126e7565b80156107015780601f106106d657610100808354040283529160200191610701565b820191906000526020600020905b8154815290600101906020018083116106e457829003601f168201915b5050505050905090565b60006107168261135c565b61074c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061079582610c60565b90508073ffffffffffffffffffffffffffffffffffffffff166107b66113bb565b73ffffffffffffffffffffffffffffffffffffffff1614610819576107e2816107dd6113bb565b61123f565b610818576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6108d66113c3565b80600a8190555050565b60006108ea611441565b6002546001540303905090565b600061090282611446565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610969576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061097584611514565b9150915061098b81876109866113bb565b61153b565b6109d7576109a08661099b6113bb565b61123f565b6109d6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a3e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a4b868686600161157f565b8015610a5657600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b2485610b00888887611585565b7c0200000000000000000000000000000000000000000000000000000000176115ad565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610bac576000600185019050600060056000838152602001908152602001600020541415610baa576001548114610ba9578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c1486868660016115d8565b505050505050565b61271081565b610c3d83838360405180602001604052806000815250611115565b505050565b610c4a6113c3565b8181600b9190610c5b929190611c80565b505050565b6000610c6b82611446565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cda576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d336113c3565b610d3d60006115de565b565b732bd273ada8388d35936dcc28d11082a60806993c81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610d8f906126e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbb906126e7565b8015610e085780601f10610ddd57610100808354040283529160200191610e08565b820191906000526020600020905b815481529060010190602001808311610deb57829003601f168201915b5050505050905090565b606481610e1e336116a2565b610e28919061254d565b1115610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e609061244e565b60405180910390fd5b61271081610e756108e0565b610e7f919061254d565b1115610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb7906123ee565b60405180910390fd5b600081600a54610ed091906125a3565b9050610edc33836116f9565b610ee581611717565b5050565b8060086000610ef66113bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fa36113bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fe89190612371565b60405180910390a35050565b610ffc6113c3565b60026009541415611042576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110399061246e565b60405180910390fd5b60026009819055506000732bd273ada8388d35936dcc28d11082a60806993c73ffffffffffffffffffffffffffffffffffffffff1647604051611084906122f5565b60006040518083038185875af1925050503d80600081146110c1576040519150601f19603f3d011682016040523d82523d6000602084013e6110c6565b606091505b505090508061110a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111019061240e565b60405180910390fd5b506001600981905550565b6111208484846108f7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111825761114b848484846117b8565b611181576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a5481565b60606111998261135c565b6111cf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006111d9611918565b90506000815114156111fa5760405180602001604052806000815250611225565b80611204846119aa565b6040516020016112159291906122d1565b6040516020818303038152906040525b915050919050565b6000611238826116a2565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606481565b6112e06113c3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611347906123ae565b60405180910390fd5b611359816115de565b50565b600081611367611441565b11158015611376575060015482105b80156113b4575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b6113cb611a03565b73ffffffffffffffffffffffffffffffffffffffff166113e9610d57565b73ffffffffffffffffffffffffffffffffffffffff161461143f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611436906123ce565b60405180910390fd5b565b600090565b60008082905080611455611441565b116114dd576001548110156114dc5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156114da575b60008114156114d05760056000836001900393508381526020019081526020016000205490506114a5565b809250505061150f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861159c868684611a0b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611713828260405180602001604052806000815250611a14565b5050565b8034101561175a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117519061242e565b60405180910390fd5b803411156117b5573373ffffffffffffffffffffffffffffffffffffffff166108fc823461178891906125fd565b9081150290604051600060405180830381858888f193505050501580156117b3573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117de6113bb565b8786866040518563ffffffff1660e01b81526004016118009493929190612325565b602060405180830381600087803b15801561181a57600080fd5b505af192505050801561184b57506040513d601f19601f820116820180604052508101906118489190612042565b60015b6118c5573d806000811461187b576040519150601f19603f3d011682016040523d82523d6000602084013e611880565b606091505b506000815114156118bd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611927906126e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611953906126e7565b80156119a05780601f10611975576101008083540402835291602001916119a0565b820191906000526020600020905b81548152906001019060200180831161198357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156119ee57600184039350600a81066030018453600a81049050806119e9576119ee565b6119c3565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611a1e8383611ab2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611aad5760006001549050600083820390505b611a5f60008683806001019450866117b8565b611a95576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611a4c578160015414611aaa57600080fd5b50505b505050565b600060015490506000821415611af4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b01600084838561157f565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b7883611b696000866000611585565b611b7285611c70565b176115ad565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611c1957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611bde565b506000821415611c55576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050611c6b60008483856115d8565b505050565b60006001821460e11b9050919050565b828054611c8c906126e7565b90600052602060002090601f016020900481019282611cae5760008555611cf5565b82601f10611cc757803560ff1916838001178555611cf5565b82800160010185558215611cf5579182015b82811115611cf4578235825591602001919060010190611cd9565b5b509050611d029190611d06565b5090565b5b80821115611d1f576000816000905550600101611d07565b5090565b6000611d36611d31846124ce565b6124a9565b905082815260208101848484011115611d5257611d516127e6565b5b611d5d8482856126a5565b509392505050565b600081359050611d7481612974565b92915050565b600081359050611d898161298b565b92915050565b600081359050611d9e816129a2565b92915050565b600081519050611db3816129a2565b92915050565b600082601f830112611dce57611dcd6127dc565b5b8135611dde848260208601611d23565b91505092915050565b60008083601f840112611dfd57611dfc6127dc565b5b8235905067ffffffffffffffff811115611e1a57611e196127d7565b5b602083019150836001820283011115611e3657611e356127e1565b5b9250929050565b600081359050611e4c816129b9565b92915050565b600060208284031215611e6857611e676127f0565b5b6000611e7684828501611d65565b91505092915050565b60008060408385031215611e9657611e956127f0565b5b6000611ea485828601611d65565b9250506020611eb585828601611d65565b9150509250929050565b600080600060608486031215611ed857611ed76127f0565b5b6000611ee686828701611d65565b9350506020611ef786828701611d65565b9250506040611f0886828701611e3d565b9150509250925092565b60008060008060808587031215611f2c57611f2b6127f0565b5b6000611f3a87828801611d65565b9450506020611f4b87828801611d65565b9350506040611f5c87828801611e3d565b925050606085013567ffffffffffffffff811115611f7d57611f7c6127eb565b5b611f8987828801611db9565b91505092959194509250565b60008060408385031215611fac57611fab6127f0565b5b6000611fba85828601611d65565b9250506020611fcb85828601611d7a565b9150509250929050565b60008060408385031215611fec57611feb6127f0565b5b6000611ffa85828601611d65565b925050602061200b85828601611e3d565b9150509250929050565b60006020828403121561202b5761202a6127f0565b5b600061203984828501611d8f565b91505092915050565b600060208284031215612058576120576127f0565b5b600061206684828501611da4565b91505092915050565b60008060208385031215612086576120856127f0565b5b600083013567ffffffffffffffff8111156120a4576120a36127eb565b5b6120b085828601611de7565b92509250509250929050565b6000602082840312156120d2576120d16127f0565b5b60006120e084828501611e3d565b91505092915050565b6120f281612631565b82525050565b61210181612643565b82525050565b6000612112826124ff565b61211c8185612515565b935061212c8185602086016126b4565b612135816127f5565b840191505092915050565b600061214b8261250a565b6121558185612531565b93506121658185602086016126b4565b61216e816127f5565b840191505092915050565b60006121848261250a565b61218e8185612542565b935061219e8185602086016126b4565b80840191505092915050565b60006121b7602683612531565b91506121c282612806565b604082019050919050565b60006121da602083612531565b91506121e582612855565b602082019050919050565b60006121fd602483612531565b91506122088261287e565b604082019050919050565b6000612220600083612526565b915061222b826128cd565b600082019050919050565b6000612243601083612531565b915061224e826128d0565b602082019050919050565b6000612266601683612531565b9150612271826128f9565b602082019050919050565b6000612289601683612531565b915061229482612922565b602082019050919050565b60006122ac601f83612531565b91506122b78261294b565b602082019050919050565b6122cb8161269b565b82525050565b60006122dd8285612179565b91506122e98284612179565b91508190509392505050565b600061230082612213565b9150819050919050565b600060208201905061231f60008301846120e9565b92915050565b600060808201905061233a60008301876120e9565b61234760208301866120e9565b61235460408301856122c2565b81810360608301526123668184612107565b905095945050505050565b600060208201905061238660008301846120f8565b92915050565b600060208201905081810360008301526123a68184612140565b905092915050565b600060208201905081810360008301526123c7816121aa565b9050919050565b600060208201905081810360008301526123e7816121cd565b9050919050565b60006020820190508181036000830152612407816121f0565b9050919050565b6000602082019050818103600083015261242781612236565b9050919050565b6000602082019050818103600083015261244781612259565b9050919050565b600060208201905081810360008301526124678161227c565b9050919050565b600060208201905081810360008301526124878161229f565b9050919050565b60006020820190506124a360008301846122c2565b92915050565b60006124b36124c4565b90506124bf8282612719565b919050565b6000604051905090565b600067ffffffffffffffff8211156124e9576124e86127a8565b5b6124f2826127f5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006125588261269b565b91506125638361269b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156125985761259761274a565b5b828201905092915050565b60006125ae8261269b565b91506125b98361269b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125f2576125f161274a565b5b828202905092915050565b60006126088261269b565b91506126138361269b565b9250828210156126265761262561274a565b5b828203905092915050565b600061263c8261267b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156126d25780820151818401526020810190506126b7565b838111156126e1576000848401525b50505050565b600060028204905060018216806126ff57607f821691505b6020821081141561271357612712612779565b5b50919050565b612722826127f5565b810181811067ffffffffffffffff82111715612741576127406127a8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f72656163686564206d617820737570706c792c20706c65617365206d696e742060008201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61297d81612631565b811461298857600080fd5b50565b61299481612643565b811461299f57600080fd5b50565b6129ab8161264f565b81146129b657600080fd5b50565b6129c28161269b565b81146129cd57600080fd5b5056fea2646970667358221220a4d4eb5f24fbe8929c0ccd07c7aedcd4b4cb6b0ee3feef737bfecd52212b04ba64736f6c63430008070033
Deployed Bytecode Sourcemap
60351:1921:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27253:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28155:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34646:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34079:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62173:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23906:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38285:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60469:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41206:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61815:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29548:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25090:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8032:103;;;;;;;;;;;;;:::i;:::-;;60570:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7384:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28331:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60734:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35204:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61929:220;;;;;;;;;;;;;:::i;:::-;;41997:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60424:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28541:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61514:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35595:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60518:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8290:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27253:639;27338:4;27677:10;27662:25;;:11;:25;;;;:102;;;;27754:10;27739:25;;:11;:25;;;;27662:102;:179;;;;27831:10;27816:25;;:11;:25;;;;27662:179;27642:199;;27253:639;;;:::o;28155:100::-;28209:13;28242:5;28235:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28155:100;:::o;34646:218::-;34722:7;34747:16;34755:7;34747;:16::i;:::-;34742:64;;34772:34;;;;;;;;;;;;;;34742:64;34826:15;:24;34842:7;34826:24;;;;;;;;;;;:30;;;;;;;;;;;;34819:37;;34646:218;;;:::o;34079:408::-;34168:13;34184:16;34192:7;34184;:16::i;:::-;34168:32;;34240:5;34217:28;;:19;:17;:19::i;:::-;:28;;;34213:175;;34265:44;34282:5;34289:19;:17;:19::i;:::-;34265:16;:44::i;:::-;34260:128;;34337:35;;;;;;;;;;;;;;34260:128;34213:175;34433:2;34400:15;:24;34416:7;34400:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34471:7;34467:2;34451:28;;34460:5;34451:28;;;;;;;;;;;;34157:330;34079:408;;:::o;62173:96::-;7270:13;:11;:13::i;:::-;62256:5:::1;62243:10;:18;;;;62173:96:::0;:::o;23906:323::-;23967:7;24195:15;:13;:15::i;:::-;24180:12;;24164:13;;:28;:46;24157:53;;23906:323;:::o;38285:2825::-;38427:27;38457;38476:7;38457:18;:27::i;:::-;38427:57;;38542:4;38501:45;;38517:19;38501:45;;;38497:86;;38555:28;;;;;;;;;;;;;;38497:86;38597:27;38626:23;38653:35;38680:7;38653:26;:35::i;:::-;38596:92;;;;38788:68;38813:15;38830:4;38836:19;:17;:19::i;:::-;38788:24;:68::i;:::-;38783:180;;38876:43;38893:4;38899:19;:17;:19::i;:::-;38876:16;:43::i;:::-;38871:92;;38928:35;;;;;;;;;;;;;;38871:92;38783:180;38994:1;38980:16;;:2;:16;;;38976:52;;;39005:23;;;;;;;;;;;;;;38976:52;39041:43;39063:4;39069:2;39073:7;39082:1;39041:21;:43::i;:::-;39177:15;39174:160;;;39317:1;39296:19;39289:30;39174:160;39714:18;:24;39733:4;39714:24;;;;;;;;;;;;;;;;39712:26;;;;;;;;;;;;39783:18;:22;39802:2;39783:22;;;;;;;;;;;;;;;;39781:24;;;;;;;;;;;40105:146;40142:2;40191:45;40206:4;40212:2;40216:19;40191:14;:45::i;:::-;20305:8;40163:73;40105:18;:146::i;:::-;40076:17;:26;40094:7;40076:26;;;;;;;;;;;:175;;;;40422:1;20305:8;40371:19;:47;:52;40367:627;;;40444:19;40476:1;40466:7;:11;40444:33;;40633:1;40599:17;:30;40617:11;40599:30;;;;;;;;;;;;:35;40595:384;;;40737:13;;40722:11;:28;40718:242;;40917:19;40884:17;:30;40902:11;40884:30;;;;;;;;;;;:52;;;;40718:242;40595:384;40425:569;40367:627;41041:7;41037:2;41022:27;;41031:4;41022:27;;;;;;;;;;;;41060:42;41081:4;41087:2;41091:7;41100:1;41060:20;:42::i;:::-;38416:2694;;;38285:2825;;;:::o;60469:42::-;60506:5;60469:42;:::o;41206:193::-;41352:39;41369:4;41375:2;41379:7;41352:39;;;;;;;;;;;;:16;:39::i;:::-;41206:193;;;:::o;61815:106::-;7270:13;:11;:13::i;:::-;61906:7:::1;;61890:13;:23;;;;;;;:::i;:::-;;61815:106:::0;;:::o;29548:152::-;29620:7;29663:27;29682:7;29663:18;:27::i;:::-;29640:52;;29548:152;;;:::o;25090:233::-;25162:7;25203:1;25186:19;;:5;:19;;;25182:60;;;25214:28;;;;;;;;;;;;;;25182:60;19249:13;25260:18;:25;25279:5;25260:25;;;;;;;;;;;;;;;;:55;25253:62;;25090:233;;;:::o;8032:103::-;7270:13;:11;:13::i;:::-;8097:30:::1;8124:1;8097:18;:30::i;:::-;8032:103::o:0;60570:93::-;60621:42;60570:93;:::o;7384:87::-;7430:7;7457:6;;;;;;;;;;;7450:13;;7384:87;:::o;28331:104::-;28387:13;28420:7;28413:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28331:104;:::o;60734:422::-;60560:3;60844:8;60816:25;60830:10;60816:13;:25::i;:::-;:36;;;;:::i;:::-;:55;;60794:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;60506:5;60956:8;60940:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;60932:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;61030:17;61063:8;61050:10;;:21;;;;:::i;:::-;61030:41;;61082:31;61092:10;61104:8;61082:9;:31::i;:::-;61124:24;61138:9;61124:13;:24::i;:::-;60783:373;60734:422;:::o;35204:234::-;35351:8;35299:18;:39;35318:19;:17;:19::i;:::-;35299:39;;;;;;;;;;;;;;;:49;35339:8;35299:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35411:8;35375:55;;35390:19;:17;:19::i;:::-;35375:55;;;35421:8;35375:55;;;;;;:::i;:::-;;;;;;;;35204:234;;:::o;61929:220::-;7270:13;:11;:13::i;:::-;4309:1:::1;4907:7;;:19;;4899:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4309:1;5040:7;:18;;;;61998:12:::2;60621:42;62016:20;;62058:21;62016:78;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61997:97;;;62113:7;62105:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;61986:163;4265:1:::1;5219:7;:22;;;;61929:220::o:0;41997:407::-;42172:31;42185:4;42191:2;42195:7;42172:12;:31::i;:::-;42236:1;42218:2;:14;;;:19;42214:183;;42257:56;42288:4;42294:2;42298:7;42307:5;42257:30;:56::i;:::-;42252:145;;42341:40;;;;;;;;;;;;;;42252:145;42214:183;41997:407;;;;:::o;60424:38::-;;;;:::o;28541:318::-;28614:13;28645:16;28653:7;28645;:16::i;:::-;28640:59;;28670:29;;;;;;;;;;;;;;28640:59;28712:21;28736:10;:8;:10::i;:::-;28712:34;;28789:1;28770:7;28764:21;:26;;:87;;;;;;;;;;;;;;;;;28817:7;28826:18;28836:7;28826:9;:18::i;:::-;28800:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28764:87;28757:94;;;28541:318;;;:::o;61514:113::-;61572:7;61599:20;61613:5;61599:13;:20::i;:::-;61592:27;;61514:113;;;:::o;35595:164::-;35692:4;35716:18;:25;35735:5;35716:25;;;;;;;;;;;;;;;:35;35742:8;35716:35;;;;;;;;;;;;;;;;;;;;;;;;;35709:42;;35595:164;;;;:::o;60518:45::-;60560:3;60518:45;:::o;8290:201::-;7270:13;:11;:13::i;:::-;8399:1:::1;8379:22;;:8;:22;;;;8371:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8455:28;8474:8;8455:18;:28::i;:::-;8290:201:::0;:::o;36017:282::-;36082:4;36138:7;36119:15;:13;:15::i;:::-;:26;;:66;;;;;36172:13;;36162:7;:23;36119:66;:153;;;;;36271:1;20025:8;36223:17;:26;36241:7;36223:26;;;;;;;;;;;;:44;:49;36119:153;36099:173;;36017:282;;;:::o;58325:105::-;58385:7;58412:10;58405:17;;58325:105;:::o;7549:132::-;7624:12;:10;:12::i;:::-;7613:23;;:7;:5;:7::i;:::-;:23;;;7605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7549:132::o;23422:92::-;23478:7;23422:92;:::o;30703:1275::-;30770:7;30790:12;30805:7;30790:22;;30873:4;30854:15;:13;:15::i;:::-;:23;30850:1061;;30907:13;;30900:4;:20;30896:1015;;;30945:14;30962:17;:23;30980:4;30962:23;;;;;;;;;;;;30945:40;;31079:1;20025:8;31051:6;:24;:29;31047:845;;;31716:113;31733:1;31723:6;:11;31716:113;;;31776:17;:25;31794:6;;;;;;;31776:25;;;;;;;;;;;;31767:34;;31716:113;;;31862:6;31855:13;;;;;;31047:845;30922:989;30896:1015;30850:1061;31939:31;;;;;;;;;;;;;;30703:1275;;;;:::o;37180:485::-;37282:27;37311:23;37352:38;37393:15;:24;37409:7;37393:24;;;;;;;;;;;37352:65;;37570:18;37547:41;;37627:19;37621:26;37602:45;;37532:126;37180:485;;;:::o;36408:659::-;36557:11;36722:16;36715:5;36711:28;36702:37;;36882:16;36871:9;36867:32;36854:45;;37032:15;37021:9;37018:30;37010:5;36999:9;36996:20;36993:56;36983:66;;36408:659;;;;;:::o;43066:159::-;;;;;:::o;57634:311::-;57769:7;57789:16;20429:3;57815:19;:41;;57789:68;;20429:3;57883:31;57894:4;57900:2;57904:9;57883:10;:31::i;:::-;57875:40;;:62;;57868:69;;;57634:311;;;;;:::o;32526:450::-;32606:14;32774:16;32767:5;32763:28;32754:37;;32951:5;32937:11;32912:23;32908:41;32905:52;32898:5;32895:63;32885:73;;32526:450;;;;:::o;43890:158::-;;;;;:::o;8651:191::-;8725:16;8744:6;;;;;;;;;;;8725:25;;8770:8;8761:6;;:17;;;;;;;;;;;;;;;;;;8825:8;8794:40;;8815:8;8794:40;;;;;;;;;;;;8714:128;8651:191;:::o;25405:178::-;25466:7;19249:13;19387:2;25494:18;:25;25513:5;25494:25;;;;;;;;;;;;;;;;:50;;25493:82;25486:89;;25405:178;;;:::o;52157:112::-;52234:27;52244:2;52248:8;52234:27;;;;;;;;;;;;:9;:27::i;:::-;52157:112;;:::o;61214:225::-;61292:5;61279:9;:18;;61271:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;61351:5;61339:9;:17;61335:97;;;61381:10;61373:28;;:47;61414:5;61402:9;:17;;;;:::i;:::-;61373:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61335:97;61214:225;:::o;44488:716::-;44651:4;44697:2;44672:45;;;44718:19;:17;:19::i;:::-;44739:4;44745:7;44754:5;44672:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44668:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44972:1;44955:6;:13;:18;44951:235;;;45001:40;;;;;;;;;;;;;;44951:235;45144:6;45138:13;45129:6;45125:2;45121:15;45114:38;44668:529;44841:54;;;44831:64;;;:6;:64;;;;44824:71;;;44488:716;;;;;;:::o;61693:114::-;61753:13;61786;61779:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61693:114;:::o;58532:1745::-;58597:17;59031:4;59024;59018:11;59014:22;59123:1;59117:4;59110:15;59198:4;59195:1;59191:12;59184:19;;59280:1;59275:3;59268:14;59384:3;59623:5;59605:428;59631:1;59605:428;;;59671:1;59666:3;59662:11;59655:18;;59842:2;59836:4;59832:13;59828:2;59824:22;59819:3;59811:36;59936:2;59930:4;59926:13;59918:21;;60003:4;59993:25;;60011:5;;59993:25;59605:428;;;59609:21;60072:3;60067;60063:13;60187:4;60182:3;60178:14;60171:21;;60252:6;60247:3;60240:19;58636:1634;;;58532:1745;;;:::o;5935:98::-;5988:7;6015:10;6008:17;;5935:98;:::o;57335:147::-;57472:6;57335:147;;;;;:::o;51384:689::-;51515:19;51521:2;51525:8;51515:5;:19::i;:::-;51594:1;51576:2;:14;;;:19;51572:483;;51616:11;51630:13;;51616:27;;51662:13;51684:8;51678:3;:14;51662:30;;51711:233;51742:62;51781:1;51785:2;51789:7;;;;;;51798:5;51742:30;:62::i;:::-;51737:167;;51840:40;;;;;;;;;;;;;;51737:167;51939:3;51931:5;:11;51711:233;;52026:3;52009:13;;:20;52005:34;;52031:8;;;52005:34;51597:458;;51572:483;51384:689;;;:::o;45666:2966::-;45739:20;45762:13;;45739:36;;45802:1;45790:8;:13;45786:44;;;45812:18;;;;;;;;;;;;;;45786:44;45843:61;45873:1;45877:2;45881:12;45895:8;45843:21;:61::i;:::-;46387:1;19387:2;46357:1;:26;;46356:32;46344:8;:45;46318:18;:22;46337:2;46318:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46666:139;46703:2;46757:33;46780:1;46784:2;46788:1;46757:14;:33::i;:::-;46724:30;46745:8;46724:20;:30::i;:::-;:66;46666:18;:139::i;:::-;46632:17;:31;46650:12;46632:31;;;;;;;;;;;:173;;;;46822:16;46853:11;46882:8;46867:12;:23;46853:37;;47403:16;47399:2;47395:25;47383:37;;47775:12;47735:8;47694:1;47632:25;47573:1;47512;47485:335;48146:1;48132:12;48128:20;48086:346;48187:3;48178:7;48175:16;48086:346;;48405:7;48395:8;48392:1;48365:25;48362:1;48359;48354:59;48240:1;48231:7;48227:15;48216:26;;48086:346;;;48090:77;48477:1;48465:8;:13;48461:45;;;48487:19;;;;;;;;;;;;;;48461:45;48539:3;48523:13;:19;;;;46092:2462;;48564:60;48593:1;48597:2;48601:12;48615:8;48564:20;:60::i;:::-;45728:2904;45666:2966;;:::o;33078:324::-;33148:14;33381:1;33371:8;33368:15;33342:24;33338:46;33328:56;;33078:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:398::-;9606:3;9627:83;9708:1;9703:3;9627:83;:::i;:::-;9620:90;;9719:93;9808:3;9719:93;:::i;:::-;9837:1;9832:3;9828:11;9821:18;;9447:398;;;:::o;9851:366::-;9993:3;10014:67;10078:2;10073:3;10014:67;:::i;:::-;10007:74;;10090:93;10179:3;10090:93;:::i;:::-;10208:2;10203:3;10199:12;10192:19;;9851:366;;;:::o;10223:::-;10365:3;10386:67;10450:2;10445:3;10386:67;:::i;:::-;10379:74;;10462:93;10551:3;10462:93;:::i;:::-;10580:2;10575:3;10571:12;10564:19;;10223:366;;;:::o;10595:::-;10737:3;10758:67;10822:2;10817:3;10758:67;:::i;:::-;10751:74;;10834:93;10923:3;10834:93;:::i;:::-;10952:2;10947:3;10943:12;10936:19;;10595:366;;;:::o;10967:::-;11109:3;11130:67;11194:2;11189:3;11130:67;:::i;:::-;11123:74;;11206:93;11295:3;11206:93;:::i;:::-;11324:2;11319:3;11315:12;11308:19;;10967:366;;;:::o;11339:118::-;11426:24;11444:5;11426:24;:::i;:::-;11421:3;11414:37;11339:118;;:::o;11463:435::-;11643:3;11665:95;11756:3;11747:6;11665:95;:::i;:::-;11658:102;;11777:95;11868:3;11859:6;11777:95;:::i;:::-;11770:102;;11889:3;11882:10;;11463:435;;;;;:::o;11904:379::-;12088:3;12110:147;12253:3;12110:147;:::i;:::-;12103:154;;12274:3;12267:10;;11904:379;;;:::o;12289:222::-;12382:4;12420:2;12409:9;12405:18;12397:26;;12433:71;12501:1;12490:9;12486:17;12477:6;12433:71;:::i;:::-;12289:222;;;;:::o;12517:640::-;12712:4;12750:3;12739:9;12735:19;12727:27;;12764:71;12832:1;12821:9;12817:17;12808:6;12764:71;:::i;:::-;12845:72;12913:2;12902:9;12898:18;12889:6;12845:72;:::i;:::-;12927;12995:2;12984:9;12980:18;12971:6;12927:72;:::i;:::-;13046:9;13040:4;13036:20;13031:2;13020:9;13016:18;13009:48;13074:76;13145:4;13136:6;13074:76;:::i;:::-;13066:84;;12517:640;;;;;;;:::o;13163:210::-;13250:4;13288:2;13277:9;13273:18;13265:26;;13301:65;13363:1;13352:9;13348:17;13339:6;13301:65;:::i;:::-;13163:210;;;;:::o;13379:313::-;13492:4;13530:2;13519:9;13515:18;13507:26;;13579:9;13573:4;13569:20;13565:1;13554:9;13550:17;13543:47;13607:78;13680:4;13671:6;13607:78;:::i;:::-;13599:86;;13379:313;;;;:::o;13698:419::-;13864:4;13902:2;13891:9;13887:18;13879:26;;13951:9;13945:4;13941:20;13937:1;13926:9;13922:17;13915:47;13979:131;14105:4;13979:131;:::i;:::-;13971:139;;13698:419;;;:::o;14123:::-;14289:4;14327:2;14316:9;14312:18;14304:26;;14376:9;14370:4;14366:20;14362:1;14351:9;14347:17;14340:47;14404:131;14530:4;14404:131;:::i;:::-;14396:139;;14123:419;;;:::o;14548:::-;14714:4;14752:2;14741:9;14737:18;14729:26;;14801:9;14795:4;14791:20;14787:1;14776:9;14772:17;14765:47;14829:131;14955:4;14829:131;:::i;:::-;14821:139;;14548:419;;;:::o;14973:::-;15139:4;15177:2;15166:9;15162:18;15154:26;;15226:9;15220:4;15216:20;15212:1;15201:9;15197:17;15190:47;15254:131;15380:4;15254:131;:::i;:::-;15246:139;;14973:419;;;:::o;15398:::-;15564:4;15602:2;15591:9;15587:18;15579:26;;15651:9;15645:4;15641:20;15637:1;15626:9;15622:17;15615:47;15679:131;15805:4;15679:131;:::i;:::-;15671:139;;15398:419;;;:::o;15823:::-;15989:4;16027:2;16016:9;16012:18;16004:26;;16076:9;16070:4;16066:20;16062:1;16051:9;16047:17;16040:47;16104:131;16230:4;16104:131;:::i;:::-;16096:139;;15823:419;;;:::o;16248:::-;16414:4;16452:2;16441:9;16437:18;16429:26;;16501:9;16495:4;16491:20;16487:1;16476:9;16472:17;16465:47;16529:131;16655:4;16529:131;:::i;:::-;16521:139;;16248:419;;;:::o;16673:222::-;16766:4;16804:2;16793:9;16789:18;16781:26;;16817:71;16885:1;16874:9;16870:17;16861:6;16817:71;:::i;:::-;16673:222;;;;:::o;16901:129::-;16935:6;16962:20;;:::i;:::-;16952:30;;16991:33;17019:4;17011:6;16991:33;:::i;:::-;16901:129;;;:::o;17036:75::-;17069:6;17102:2;17096:9;17086:19;;17036:75;:::o;17117:307::-;17178:4;17268:18;17260:6;17257:30;17254:56;;;17290:18;;:::i;:::-;17254:56;17328:29;17350:6;17328:29;:::i;:::-;17320:37;;17412:4;17406;17402:15;17394:23;;17117:307;;;:::o;17430:98::-;17481:6;17515:5;17509:12;17499:22;;17430:98;;;:::o;17534:99::-;17586:6;17620:5;17614:12;17604:22;;17534:99;;;:::o;17639:168::-;17722:11;17756:6;17751:3;17744:19;17796:4;17791:3;17787:14;17772:29;;17639:168;;;;:::o;17813:147::-;17914:11;17951:3;17936:18;;17813:147;;;;:::o;17966:169::-;18050:11;18084:6;18079:3;18072:19;18124:4;18119:3;18115:14;18100:29;;17966:169;;;;:::o;18141:148::-;18243:11;18280:3;18265:18;;18141:148;;;;:::o;18295:305::-;18335:3;18354:20;18372:1;18354:20;:::i;:::-;18349:25;;18388:20;18406:1;18388:20;:::i;:::-;18383:25;;18542:1;18474:66;18470:74;18467:1;18464:81;18461:107;;;18548:18;;:::i;:::-;18461:107;18592:1;18589;18585:9;18578:16;;18295:305;;;;:::o;18606:348::-;18646:7;18669:20;18687:1;18669:20;:::i;:::-;18664:25;;18703:20;18721:1;18703:20;:::i;:::-;18698:25;;18891:1;18823:66;18819:74;18816:1;18813:81;18808:1;18801:9;18794:17;18790:105;18787:131;;;18898:18;;:::i;:::-;18787:131;18946:1;18943;18939:9;18928:20;;18606:348;;;;:::o;18960:191::-;19000:4;19020:20;19038:1;19020:20;:::i;:::-;19015:25;;19054:20;19072:1;19054:20;:::i;:::-;19049:25;;19093:1;19090;19087:8;19084:34;;;19098:18;;:::i;:::-;19084:34;19143:1;19140;19136:9;19128:17;;18960:191;;;;:::o;19157:96::-;19194:7;19223:24;19241:5;19223:24;:::i;:::-;19212:35;;19157:96;;;:::o;19259:90::-;19293:7;19336:5;19329:13;19322:21;19311:32;;19259:90;;;:::o;19355:149::-;19391:7;19431:66;19424:5;19420:78;19409:89;;19355:149;;;:::o;19510:126::-;19547:7;19587:42;19580:5;19576:54;19565:65;;19510:126;;;:::o;19642:77::-;19679:7;19708:5;19697:16;;19642:77;;;:::o;19725:154::-;19809:6;19804:3;19799;19786:30;19871:1;19862:6;19857:3;19853:16;19846:27;19725:154;;;:::o;19885:307::-;19953:1;19963:113;19977:6;19974:1;19971:13;19963:113;;;20062:1;20057:3;20053:11;20047:18;20043:1;20038:3;20034:11;20027:39;19999:2;19996:1;19992:10;19987:15;;19963:113;;;20094:6;20091:1;20088:13;20085:101;;;20174:1;20165:6;20160:3;20156:16;20149:27;20085:101;19934:258;19885:307;;;:::o;20198:320::-;20242:6;20279:1;20273:4;20269:12;20259:22;;20326:1;20320:4;20316:12;20347:18;20337:81;;20403:4;20395:6;20391:17;20381:27;;20337:81;20465:2;20457:6;20454:14;20434:18;20431:38;20428:84;;;20484:18;;:::i;:::-;20428:84;20249:269;20198:320;;;:::o;20524:281::-;20607:27;20629:4;20607:27;:::i;:::-;20599:6;20595:40;20737:6;20725:10;20722:22;20701:18;20689:10;20686:34;20683:62;20680:88;;;20748:18;;:::i;:::-;20680:88;20788:10;20784:2;20777:22;20567:238;20524:281;;:::o;20811:180::-;20859:77;20856:1;20849:88;20956:4;20953:1;20946:15;20980:4;20977:1;20970:15;20997:180;21045:77;21042:1;21035:88;21142:4;21139:1;21132:15;21166:4;21163:1;21156:15;21183:180;21231:77;21228:1;21221:88;21328:4;21325:1;21318:15;21352:4;21349:1;21342:15;21369:117;21478:1;21475;21468:12;21492:117;21601:1;21598;21591:12;21615:117;21724:1;21721;21714:12;21738:117;21847:1;21844;21837:12;21861:117;21970:1;21967;21960:12;21984:117;22093:1;22090;22083:12;22107:102;22148:6;22199:2;22195:7;22190:2;22183:5;22179:14;22175:28;22165:38;;22107:102;;;:::o;22215:225::-;22355:34;22351:1;22343:6;22339:14;22332:58;22424:8;22419:2;22411:6;22407:15;22400:33;22215:225;:::o;22446:182::-;22586:34;22582:1;22574:6;22570:14;22563:58;22446:182;:::o;22634:223::-;22774:34;22770:1;22762:6;22758:14;22751:58;22843:6;22838:2;22830:6;22826:15;22819:31;22634:223;:::o;22863:114::-;;:::o;22983:166::-;23123:18;23119:1;23111:6;23107:14;23100:42;22983:166;:::o;23155:172::-;23295:24;23291:1;23283:6;23279:14;23272:48;23155:172;:::o;23333:::-;23473:24;23469:1;23461:6;23457:14;23450:48;23333:172;:::o;23511:181::-;23651:33;23647:1;23639:6;23635:14;23628:57;23511:181;:::o;23698:122::-;23771:24;23789:5;23771:24;:::i;:::-;23764:5;23761:35;23751:63;;23810:1;23807;23800:12;23751:63;23698:122;:::o;23826:116::-;23896:21;23911:5;23896:21;:::i;:::-;23889:5;23886:32;23876:60;;23932:1;23929;23922:12;23876:60;23826:116;:::o;23948:120::-;24020:23;24037:5;24020:23;:::i;:::-;24013:5;24010:34;24000:62;;24058:1;24055;24048:12;24000:62;23948:120;:::o;24074:122::-;24147:24;24165:5;24147:24;:::i;:::-;24140:5;24137:35;24127:63;;24186:1;24183;24176:12;24127:63;24074:122;:::o
Swarm Source
ipfs://a4d4eb5f24fbe8929c0ccd07c7aedcd4b4cb6b0ee3feef737bfecd52212b04ba
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.