ERC-721
Overview
Max Total Supply
5,000 JIKKAI
Holders
342
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 JIKKAILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
JIKKAI
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-25 */ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.13; library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @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); } 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. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @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, ''); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @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: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId, bool approvalCheck) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck && _msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // 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) } } } abstract contract Ownable { address public owner; constructor() { owner = msg.sender; } modifier onlyOwner { require(owner == msg.sender, "Not Owner!"); _; } function transferOwnership(address new_) external onlyOwner { owner = new_; } } interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } } abstract contract MerkleProof { bytes32 internal _merkleRoot; function _setMerkleRoot(bytes32 merkleRoot_) internal virtual { _merkleRoot = merkleRoot_; } function isWhitelisted(address address_, bytes32[] memory proof_) public view returns (bool) { bytes32 _leaf = keccak256(abi.encodePacked(address_)); for (uint256 i = 0; i < proof_.length; i++) { _leaf = _leaf < proof_[i] ? keccak256(abi.encodePacked(_leaf, proof_[i])) : keccak256(abi.encodePacked(proof_[i], _leaf)); } return _leaf == _merkleRoot; } } contract JIKKAI is ERC721A, Ownable, OperatorFilterer, MerkleProof { uint256 public constant maxToken = 5000; uint256 public wl1Time; uint256 public wl2Time; uint256 public pbTime; uint256 public constant wl1mintPrice = 0.0056 ether; uint256 public constant wl2mintPrice = 0.00756 ether; uint256 public constant pbmintPrice = 0.01 ether; bool public revealed; string private revealURI; string private baseTokenURI; string private baseTokenURI_EXT; mapping(address => uint256) private wl1Minted; mapping(address => uint256) private wl2Minted; mapping(address => uint256) private pbMinted; constructor(uint256 _wl1Time, uint256 _wl2Time, uint256 _pbTime) ERC721A("JIKKAI", "JIKKAI") OperatorFilterer(address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6), true) { sethiddenBaseURI("ipfs://QmT52E3HEUtcHCkZL8k3LAkyLAQa9f38MmdEbKbnqTySn2"); wl1Time = _wl1Time; wl2Time = _wl2Time; pbTime = _pbTime; } //mint function function ownerMint(uint256 _amount, address _address) public onlyOwner { require(_amount + totalSupply() <= maxToken, "No more NFTs"); _safeMint(_address, _amount); } function wl1Mint(uint256 _amount, bytes32[] memory proof_) public payable onlySender { require(block.timestamp > wl1Time, "Sale hasn't started"); require(_amount + totalSupply() <= maxToken, "No more NFTs"); require(11 > _amount, "10 max per tx"); require(11 > wl1Minted[msg.sender] + _amount, "10 max per address"); require(isWhitelisted(msg.sender, proof_), "You are not whitelisted!"); require(msg.value == wl1mintPrice * _amount, "Value sent is not correct"); wl1Minted[msg.sender] += _amount; _safeMint(msg.sender, _amount); } function wl2Mint(uint256 _amount, bytes32[] memory proof_) public payable onlySender { require(block.timestamp > wl2Time, "Sale hasn't started"); require(_amount + totalSupply() <= maxToken, "No more NFTs"); require(11 > _amount, "10 max per tx"); require(11 > wl2Minted[msg.sender] + _amount, "10 max per address"); require(isWhitelisted(msg.sender, proof_), "You are not whitelisted!"); require(msg.value == wl2mintPrice * _amount, "Value sent is not correct"); wl2Minted[msg.sender] += _amount; _safeMint(msg.sender, _amount); } function pbMint(uint256 _amount) public payable onlySender { require(block.timestamp > pbTime, "Sale hasn't started"); require(_amount + totalSupply() <= maxToken, "No more NFTs"); require(11 > _amount, "10 max per tx"); require(11 > pbMinted[msg.sender] + _amount, "10 max per address"); require(msg.value == pbmintPrice * _amount, "Value sent is not correct"); pbMinted[msg.sender] += _amount; _safeMint(msg.sender, _amount); } //owner function function setMerkleRoot(bytes32 merkleRoot_) external onlyOwner { _setMerkleRoot(merkleRoot_); } function setReveal() public onlyOwner { revealed = !revealed; } function sethiddenBaseURI(string memory uri_) public onlyOwner { revealURI = uri_; } function setBaseURI(string memory uri_) public onlyOwner { baseTokenURI = uri_; } function setBaseTokenURI_EXT(string memory ext_) public onlyOwner { baseTokenURI_EXT = ext_; } function withdraw() public onlyOwner { uint256 sendAmount = address(this).balance; address aa = payable(0x2C41c13a2baf97894C259e8Efa65F245F6601341); address bb = payable(0x615a9ccB16C5abe3253bd600F382F206C03Dc3ba); bool success; (success, ) = aa.call{value: (sendAmount * 700/1000)}(""); require(success, "Failed to withdraw Ether"); (success, ) = bb.call{value: (sendAmount * 300/1000)}(""); require(success, "Failed to withdraw Ether"); } //view function function _startTokenId() internal view virtual override returns (uint256) { return 1; } function currentBaseURI() private view returns (string memory){ return baseTokenURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(revealed == false) { return revealURI; } return string(abi.encodePacked(currentBaseURI(), Strings.toString(tokenId), baseTokenURI_EXT)); } //modifier modifier onlySender() { require(msg.sender == tx.origin, "No smart contract"); _; } //filterer function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_wl1Time","type":"uint256"},{"internalType":"uint256","name":"_wl2Time","type":"uint256"},{"internalType":"uint256","name":"_pbTime","type":"uint256"}],"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"pbMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"pbTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pbmintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"ext_","type":"string"}],"name":"setBaseTokenURI_EXT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"sethiddenBaseURI","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":"new_","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"wl1Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wl1Time","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wl1mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"wl2Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wl2Time","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wl2mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620029ab380380620029ab833981016040819052620000349162000346565b6040805180820182526006808252654a494b4b414960d01b602080840182815285518087019096529285528401528151733cc6cdda760b79bafa08df41ecfa224f810dceb6936001939290916200008e91600291620002a0565b508051620000a4906003906020840190620002a0565b5060016000555050600880546001600160a01b031916331790556daaeb6d7670e522a718067333cd4e3b15620002035780156200015157604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200013257600080fd5b505af115801562000147573d6000803e3d6000fd5b5050505062000203565b6001600160a01b03821615620001a25760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000117565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001e957600080fd5b505af1158015620001fe573d6000803e3d6000fd5b505050505b50506200022960405180606001604052806035815260200162002976603591396200023b565b600a92909255600b55600c55620003b1565b6008546001600160a01b03163314620002875760405162461bcd60e51b815260206004820152600a6024820152694e6f74204f776e65722160b01b604482015260640160405180910390fd5b80516200029c90600e906020840190620002a0565b5050565b828054620002ae9062000375565b90600052602060002090601f016020900481019282620002d257600085556200031d565b82601f10620002ed57805160ff19168380011785556200031d565b828001600101855582156200031d579182015b828111156200031d57825182559160200191906001019062000300565b506200032b9291506200032f565b5090565b5b808211156200032b576000815560010162000330565b6000806000606084860312156200035c57600080fd5b8351925060208401519150604084015190509250925092565b600181811c908216806200038a57607f821691505b602082108103620003ab57634e487b7160e01b600052602260045260246000fd5b50919050565b6125b580620003c16000396000f3fe6080604052600436106102045760003560e01c80638bac148211610118578063c492b854116100a0578063d52c57e01161006f578063d52c57e014610556578063e985e9c514610576578063f0e4ab7a146105bf578063f2fde38b146105d2578063f6453375146105f257600080fd5b8063c492b854146104f7578063c87b56dd1461050d578063ca69e3231461052d578063d22b78d61461054357600080fd5b8063a22cb465116100e7578063a22cb46514610478578063a31ff62114610498578063a9e0d039146104ae578063b88d4fde146104c9578063be0469a9146104dc57600080fd5b80638bac14821461040d5780638da5cb5b1461042357806395d89b4114610443578063a08c008b1461045857600080fd5b80633ccfd60b1161019b5780635a23dd991161016a5780635a23dd99146103785780636352211e1461039857806370a08231146103b857806376645315146103d85780637cb64759146103ed57600080fd5b80633ccfd60b1461031657806342842e0e1461032b578063518302271461033e57806355f804b31461035857600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806310b778de146102cd57806318160ddd146102e057806323b872dd1461030357600080fd5b806301ffc9a71461020957806302ffaed11461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611dd2565b61060d565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611e8e565b61065f565b005b34801561026c57600080fd5b506102756106a9565b6040516102359190611f2f565b34801561028e57600080fd5b506102a261029d366004611f42565b61073b565b6040516001600160a01b039091168152602001610235565b61025e6102c8366004611f77565b61077f565b61025e6102db366004612021565b61078b565b3480156102ec57600080fd5b506102f5610907565b604051908152602001610235565b61025e610311366004612068565b610915565b34801561032257600080fd5b5061025e610a71565b61025e610339366004612068565b610c23565b34801561034a57600080fd5b50600d546102299060ff1681565b34801561036457600080fd5b5061025e610373366004611e8e565b610d74565b34801561038457600080fd5b506102296103933660046120a4565b610db1565b3480156103a457600080fd5b506102a26103b3366004611f42565b610ed5565b3480156103c457600080fd5b506102f56103d33660046120dc565b610ee0565b3480156103e457600080fd5b5061025e610f2f565b3480156103f957600080fd5b5061025e610408366004611f42565b610f6d565b34801561041957600080fd5b506102f5600c5481565b34801561042f57600080fd5b506008546102a2906001600160a01b031681565b34801561044f57600080fd5b50610275610fa3565b34801561046457600080fd5b5061025e610473366004611e8e565b610fb2565b34801561048457600080fd5b5061025e610493366004612105565b610fef565b3480156104a457600080fd5b506102f5600a5481565b3480156104ba57600080fd5b506102f5662386f26fc1000081565b61025e6104d736600461213c565b61105b565b3480156104e857600080fd5b506102f56613e52b9abe000081565b34801561050357600080fd5b506102f5600b5481565b34801561051957600080fd5b50610275610528366004611f42565b6111ba565b34801561053957600080fd5b506102f561138881565b61025e610551366004611f42565b611305565b34801561056257600080fd5b5061025e6105713660046121b8565b611430565b34801561058257600080fd5b506102296105913660046121e4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61025e6105cd366004612021565b611497565b3480156105de57600080fd5b5061025e6105ed3660046120dc565b611603565b3480156105fe57600080fd5b506102f5661adbc7aa80800081565b60006301ffc9a760e01b6001600160e01b03198316148061063e57506380ac58cd60e01b6001600160e01b03198316145b806106595750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106925760405162461bcd60e51b81526004016106899061220e565b60405180910390fd5b80516106a5906010906020840190611d23565b5050565b6060600280546106b890612232565b80601f01602080910402602001604051908101604052809291908181526020018280546106e490612232565b80156107315780601f1061070657610100808354040283529160200191610731565b820191906000526020600020905b81548152906001019060200180831161071457829003601f168201915b5050505050905090565b60006107468261164f565b610763576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6106a582826001611684565b3332146107aa5760405162461bcd60e51b81526004016106899061226c565b600b5442116107cb5760405162461bcd60e51b815260040161068990612297565b6113886107d6610907565b6107e090846122da565b11156107fe5760405162461bcd60e51b8152600401610689906122f2565b81600b1161081e5760405162461bcd60e51b815260040161068990612318565b336000908152601260205260409020546108399083906122da565b600b116108585760405162461bcd60e51b81526004016106899061233f565b6108623382610db1565b6108a95760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b6044820152606401610689565b6108ba82661adbc7aa80800061236b565b34146108d85760405162461bcd60e51b81526004016106899061238a565b33600090815260126020526040812080548492906108f79084906122da565b909155506106a590503383611730565b600154600054036000190190565b826daaeb6d7670e522a718067333cd4e3b15610a6057336001600160a01b0382160361094b5761094684848461174a565b610a6b565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561099a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109be91906123c1565b8015610a415750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4191906123c1565b610a6057604051633b79c77360e21b8152336004820152602401610689565b610a6b84848461174a565b50505050565b6008546001600160a01b03163314610a9b5760405162461bcd60e51b81526004016106899061220e565b47732c41c13a2baf97894c259e8efa65f245f660134173615a9ccb16c5abe3253bd600f382f206c03dc3ba6000826103e8610ad8866102bc61236b565b610ae291906123f4565b604051600081818185875af1925050503d8060008114610b1e576040519150601f19603f3d011682016040523d82523d6000602084013e610b23565b606091505b50508091505080610b715760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610689565b6001600160a01b0382166103e8610b8a8661012c61236b565b610b9491906123f4565b604051600081818185875af1925050503d8060008114610bd0576040519150601f19603f3d011682016040523d82523d6000602084013e610bd5565b606091505b50508091505080610a6b5760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610689565b826daaeb6d7670e522a718067333cd4e3b15610d6957336001600160a01b03821603610c54576109468484846118e2565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610ca3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc791906123c1565b8015610d4a5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610d26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4a91906123c1565b610d6957604051633b79c77360e21b8152336004820152602401610689565b610a6b8484846118e2565b6008546001600160a01b03163314610d9e5760405162461bcd60e51b81526004016106899061220e565b80516106a590600f906020840190611d23565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b8351811015610ec957838181518110610e0b57610e0b612408565b60200260200101518210610e6957838181518110610e2b57610e2b612408565b602002602001015182604051602001610e4e929190918252602082015260400190565b60405160208183030381529060405280519060200120610eb5565b81848281518110610e7c57610e7c612408565b6020026020010151604051602001610e9e929190918252602082015260400190565b604051602081830303815290604052805190602001205b915080610ec18161241e565b915050610df0565b50600954149392505050565b600061065982611902565b60006001600160a01b038216610f09576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610f595760405162461bcd60e51b81526004016106899061220e565b600d805460ff19811660ff90911615179055565b6008546001600160a01b03163314610f975760405162461bcd60e51b81526004016106899061220e565b610fa081600955565b50565b6060600380546106b890612232565b6008546001600160a01b03163314610fdc5760405162461bcd60e51b81526004016106899061220e565b80516106a590600e906020840190611d23565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b156111a757336001600160a01b038216036110925761108d85858585611978565b6111b3565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110591906123c1565b80156111885750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611164573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118891906123c1565b6111a757604051633b79c77360e21b8152336004820152602401610689565b6111b385858585611978565b5050505050565b60606111c58261164f565b6112295760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610689565b600d5460ff1615156000036112ca57600e805461124590612232565b80601f016020809104026020016040519081016040528092919081815260200182805461127190612232565b80156112be5780601f10611293576101008083540402835291602001916112be565b820191906000526020600020905b8154815290600101906020018083116112a157829003601f168201915b50505050509050919050565b6112d26119bc565b6112db836119cb565b60106040516020016112ef93929190612437565b6040516020818303038152906040529050919050565b3332146113245760405162461bcd60e51b81526004016106899061226c565b600c5442116113455760405162461bcd60e51b815260040161068990612297565b611388611350610907565b61135a90836122da565b11156113785760405162461bcd60e51b8152600401610689906122f2565b80600b116113985760405162461bcd60e51b815260040161068990612318565b336000908152601360205260409020546113b39082906122da565b600b116113d25760405162461bcd60e51b81526004016106899061233f565b6113e381662386f26fc1000061236b565b34146114015760405162461bcd60e51b81526004016106899061238a565b33600090815260136020526040812080548392906114209084906122da565b90915550610fa090503382611730565b6008546001600160a01b0316331461145a5760405162461bcd60e51b81526004016106899061220e565b611388611465610907565b61146f90846122da565b111561148d5760405162461bcd60e51b8152600401610689906122f2565b6106a58183611730565b3332146114b65760405162461bcd60e51b81526004016106899061226c565b600a5442116114d75760405162461bcd60e51b815260040161068990612297565b6113886114e2610907565b6114ec90846122da565b111561150a5760405162461bcd60e51b8152600401610689906122f2565b81600b1161152a5760405162461bcd60e51b815260040161068990612318565b336000908152601160205260409020546115459083906122da565b600b116115645760405162461bcd60e51b81526004016106899061233f565b61156e3382610db1565b6115b55760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b6044820152606401610689565b6115c6826613e52b9abe000061236b565b34146115e45760405162461bcd60e51b81526004016106899061238a565b33600090815260116020526040812080548492906108f79084906122da565b6008546001600160a01b0316331461162d5760405162461bcd60e51b81526004016106899061220e565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b600081600111158015611663575060005482105b8015610659575050600090815260046020526040902054600160e01b161590565b600061168f83610ed5565b90508180156116a75750336001600160a01b03821614155b156116d3576116b68133610591565b6116d3576040516367d9dca160e11b815260040160405180910390fd5b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b6106a5828260405180602001604052806000815250611ad4565b600061175582611902565b9050836001600160a01b0316816001600160a01b0316146117885760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176117d5576117b88633610591565b6117d557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166117fc57604051633a954ecd60e21b815260040160405180910390fd5b801561180757600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611899576001840160008181526004602052604081205490036118975760005481146118975760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6118fd8383836040518060200160405280600081525061105b565b505050565b6000818060011161195f5760005481101561195f5760008181526004602052604081205490600160e01b8216900361195d575b80600003611956575060001901600081815260046020526040902054611935565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b611983848484610915565b6001600160a01b0383163b15610a6b5761199f84848484611b3a565b610a6b576040516368d2bf6b60e11b815260040160405180910390fd5b6060600f80546106b890612232565b6060816000036119f25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a1c5780611a068161241e565b9150611a159050600a836123f4565b91506119f6565b60008167ffffffffffffffff811115611a3757611a37611def565b6040519080825280601f01601f191660200182016040528015611a61576020820181803683370190505b5090505b8415611acc57611a766001836124fa565b9150611a83600a86612511565b611a8e9060306122da565b60f81b818381518110611aa357611aa3612408565b60200101906001600160f81b031916908160001a905350611ac5600a866123f4565b9450611a65565b949350505050565b611ade8383611c25565b6001600160a01b0383163b156118fd576000548281035b611b086000868380600101945086611b3a565b611b25576040516368d2bf6b60e11b815260040160405180910390fd5b818110611af55781600054146111b357600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b6f903390899088908890600401612525565b6020604051808303816000875af1925050508015611baa575060408051601f3d908101601f19168201909252611ba791810190612562565b60015b611c08573d808015611bd8576040519150601f19603f3d011682016040523d82523d6000602084013e611bdd565b606091505b508051600003611c00576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000805490829003611c4a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611cf957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611cc1565b5081600003611d1a57604051622e076360e81b815260040160405180910390fd5b60005550505050565b828054611d2f90612232565b90600052602060002090601f016020900481019282611d515760008555611d97565b82601f10611d6a57805160ff1916838001178555611d97565b82800160010185558215611d97579182015b82811115611d97578251825591602001919060010190611d7c565b50611da3929150611da7565b5090565b5b80821115611da35760008155600101611da8565b6001600160e01b031981168114610fa057600080fd5b600060208284031215611de457600080fd5b813561195681611dbc565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611e2e57611e2e611def565b604052919050565b600067ffffffffffffffff831115611e5057611e50611def565b611e63601f8401601f1916602001611e05565b9050828152838383011115611e7757600080fd5b828260208301376000602084830101529392505050565b600060208284031215611ea057600080fd5b813567ffffffffffffffff811115611eb757600080fd5b8201601f81018413611ec857600080fd5b611acc84823560208401611e36565b60005b83811015611ef2578181015183820152602001611eda565b83811115610a6b5750506000910152565b60008151808452611f1b816020860160208601611ed7565b601f01601f19169290920160200192915050565b6020815260006119566020830184611f03565b600060208284031215611f5457600080fd5b5035919050565b80356001600160a01b0381168114611f7257600080fd5b919050565b60008060408385031215611f8a57600080fd5b611f9383611f5b565b946020939093013593505050565b600082601f830112611fb257600080fd5b8135602067ffffffffffffffff821115611fce57611fce611def565b8160051b611fdd828201611e05565b9283528481018201928281019087851115611ff757600080fd5b83870192505b8483101561201657823582529183019190830190611ffd565b979650505050505050565b6000806040838503121561203457600080fd5b82359150602083013567ffffffffffffffff81111561205257600080fd5b61205e85828601611fa1565b9150509250929050565b60008060006060848603121561207d57600080fd5b61208684611f5b565b925061209460208501611f5b565b9150604084013590509250925092565b600080604083850312156120b757600080fd5b6120c083611f5b565b9150602083013567ffffffffffffffff81111561205257600080fd5b6000602082840312156120ee57600080fd5b61195682611f5b565b8015158114610fa057600080fd5b6000806040838503121561211857600080fd5b61212183611f5b565b91506020830135612131816120f7565b809150509250929050565b6000806000806080858703121561215257600080fd5b61215b85611f5b565b935061216960208601611f5b565b925060408501359150606085013567ffffffffffffffff81111561218c57600080fd5b8501601f8101871361219d57600080fd5b6121ac87823560208401611e36565b91505092959194509250565b600080604083850312156121cb57600080fd5b823591506121db60208401611f5b565b90509250929050565b600080604083850312156121f757600080fd5b61220083611f5b565b91506121db60208401611f5b565b6020808252600a90820152694e6f74204f776e65722160b01b604082015260600190565b600181811c9082168061224657607f821691505b60208210810361226657634e487b7160e01b600052602260045260246000fd5b50919050565b602080825260119082015270139bc81cdb585c9d0818dbdb9d1c9858dd607a1b604082015260600190565b60208082526013908201527214d85b19481a185cdb89dd081cdd185c9d1959606a1b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156122ed576122ed6122c4565b500190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b6020808252600d908201526c0626040dac2f040e0cae440e8f609b1b604082015260600190565b6020808252601290820152713130206d617820706572206164647265737360701b604082015260600190565b6000816000190483118215151615612385576123856122c4565b500290565b60208082526019908201527f56616c75652073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b6000602082840312156123d357600080fd5b8151611956816120f7565b634e487b7160e01b600052601260045260246000fd5b600082612403576124036123de565b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201612430576124306122c4565b5060010190565b60008451602061244a8285838a01611ed7565b85519184019161245d8184848a01611ed7565b8554920191600090600181811c908083168061247a57607f831692505b858310810361249757634e487b7160e01b85526022600452602485fd5b8080156124ab57600181146124bc576124e9565b60ff198516885283880195506124e9565b60008b81526020902060005b858110156124e15781548a8201529084019088016124c8565b505083880195505b50939b9a5050505050505050505050565b60008282101561250c5761250c6122c4565b500390565b600082612520576125206123de565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061255890830184611f03565b9695505050505050565b60006020828403121561257457600080fd5b815161195681611dbc56fea26469706673582212205def161fbebe76cbb4eecabbaff7c9fea71ea9b9e53b6afc41d76a67ea97bdd164736f6c634300080d0033697066733a2f2f516d5435324533484555746348436b5a4c386b334c416b794c415161396633384d6d6445624b626e715479536e32000000000000000000000000000000000000000000000000000000006380bc500000000000000000000000000000000000000000000000000000000063820dd00000000000000000000000000000000000000000000000000000000063835f50
Deployed Bytecode
0x6080604052600436106102045760003560e01c80638bac148211610118578063c492b854116100a0578063d52c57e01161006f578063d52c57e014610556578063e985e9c514610576578063f0e4ab7a146105bf578063f2fde38b146105d2578063f6453375146105f257600080fd5b8063c492b854146104f7578063c87b56dd1461050d578063ca69e3231461052d578063d22b78d61461054357600080fd5b8063a22cb465116100e7578063a22cb46514610478578063a31ff62114610498578063a9e0d039146104ae578063b88d4fde146104c9578063be0469a9146104dc57600080fd5b80638bac14821461040d5780638da5cb5b1461042357806395d89b4114610443578063a08c008b1461045857600080fd5b80633ccfd60b1161019b5780635a23dd991161016a5780635a23dd99146103785780636352211e1461039857806370a08231146103b857806376645315146103d85780637cb64759146103ed57600080fd5b80633ccfd60b1461031657806342842e0e1461032b578063518302271461033e57806355f804b31461035857600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806310b778de146102cd57806318160ddd146102e057806323b872dd1461030357600080fd5b806301ffc9a71461020957806302ffaed11461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611dd2565b61060d565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611e8e565b61065f565b005b34801561026c57600080fd5b506102756106a9565b6040516102359190611f2f565b34801561028e57600080fd5b506102a261029d366004611f42565b61073b565b6040516001600160a01b039091168152602001610235565b61025e6102c8366004611f77565b61077f565b61025e6102db366004612021565b61078b565b3480156102ec57600080fd5b506102f5610907565b604051908152602001610235565b61025e610311366004612068565b610915565b34801561032257600080fd5b5061025e610a71565b61025e610339366004612068565b610c23565b34801561034a57600080fd5b50600d546102299060ff1681565b34801561036457600080fd5b5061025e610373366004611e8e565b610d74565b34801561038457600080fd5b506102296103933660046120a4565b610db1565b3480156103a457600080fd5b506102a26103b3366004611f42565b610ed5565b3480156103c457600080fd5b506102f56103d33660046120dc565b610ee0565b3480156103e457600080fd5b5061025e610f2f565b3480156103f957600080fd5b5061025e610408366004611f42565b610f6d565b34801561041957600080fd5b506102f5600c5481565b34801561042f57600080fd5b506008546102a2906001600160a01b031681565b34801561044f57600080fd5b50610275610fa3565b34801561046457600080fd5b5061025e610473366004611e8e565b610fb2565b34801561048457600080fd5b5061025e610493366004612105565b610fef565b3480156104a457600080fd5b506102f5600a5481565b3480156104ba57600080fd5b506102f5662386f26fc1000081565b61025e6104d736600461213c565b61105b565b3480156104e857600080fd5b506102f56613e52b9abe000081565b34801561050357600080fd5b506102f5600b5481565b34801561051957600080fd5b50610275610528366004611f42565b6111ba565b34801561053957600080fd5b506102f561138881565b61025e610551366004611f42565b611305565b34801561056257600080fd5b5061025e6105713660046121b8565b611430565b34801561058257600080fd5b506102296105913660046121e4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61025e6105cd366004612021565b611497565b3480156105de57600080fd5b5061025e6105ed3660046120dc565b611603565b3480156105fe57600080fd5b506102f5661adbc7aa80800081565b60006301ffc9a760e01b6001600160e01b03198316148061063e57506380ac58cd60e01b6001600160e01b03198316145b806106595750635b5e139f60e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106925760405162461bcd60e51b81526004016106899061220e565b60405180910390fd5b80516106a5906010906020840190611d23565b5050565b6060600280546106b890612232565b80601f01602080910402602001604051908101604052809291908181526020018280546106e490612232565b80156107315780601f1061070657610100808354040283529160200191610731565b820191906000526020600020905b81548152906001019060200180831161071457829003601f168201915b5050505050905090565b60006107468261164f565b610763576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6106a582826001611684565b3332146107aa5760405162461bcd60e51b81526004016106899061226c565b600b5442116107cb5760405162461bcd60e51b815260040161068990612297565b6113886107d6610907565b6107e090846122da565b11156107fe5760405162461bcd60e51b8152600401610689906122f2565b81600b1161081e5760405162461bcd60e51b815260040161068990612318565b336000908152601260205260409020546108399083906122da565b600b116108585760405162461bcd60e51b81526004016106899061233f565b6108623382610db1565b6108a95760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b6044820152606401610689565b6108ba82661adbc7aa80800061236b565b34146108d85760405162461bcd60e51b81526004016106899061238a565b33600090815260126020526040812080548492906108f79084906122da565b909155506106a590503383611730565b600154600054036000190190565b826daaeb6d7670e522a718067333cd4e3b15610a6057336001600160a01b0382160361094b5761094684848461174a565b610a6b565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561099a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109be91906123c1565b8015610a415750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4191906123c1565b610a6057604051633b79c77360e21b8152336004820152602401610689565b610a6b84848461174a565b50505050565b6008546001600160a01b03163314610a9b5760405162461bcd60e51b81526004016106899061220e565b47732c41c13a2baf97894c259e8efa65f245f660134173615a9ccb16c5abe3253bd600f382f206c03dc3ba6000826103e8610ad8866102bc61236b565b610ae291906123f4565b604051600081818185875af1925050503d8060008114610b1e576040519150601f19603f3d011682016040523d82523d6000602084013e610b23565b606091505b50508091505080610b715760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610689565b6001600160a01b0382166103e8610b8a8661012c61236b565b610b9491906123f4565b604051600081818185875af1925050503d8060008114610bd0576040519150601f19603f3d011682016040523d82523d6000602084013e610bd5565b606091505b50508091505080610a6b5760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903bb4ba34323930bb9022ba3432b960411b6044820152606401610689565b826daaeb6d7670e522a718067333cd4e3b15610d6957336001600160a01b03821603610c54576109468484846118e2565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610ca3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc791906123c1565b8015610d4a5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610d26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4a91906123c1565b610d6957604051633b79c77360e21b8152336004820152602401610689565b610a6b8484846118e2565b6008546001600160a01b03163314610d9e5760405162461bcd60e51b81526004016106899061220e565b80516106a590600f906020840190611d23565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905060005b8351811015610ec957838181518110610e0b57610e0b612408565b60200260200101518210610e6957838181518110610e2b57610e2b612408565b602002602001015182604051602001610e4e929190918252602082015260400190565b60405160208183030381529060405280519060200120610eb5565b81848281518110610e7c57610e7c612408565b6020026020010151604051602001610e9e929190918252602082015260400190565b604051602081830303815290604052805190602001205b915080610ec18161241e565b915050610df0565b50600954149392505050565b600061065982611902565b60006001600160a01b038216610f09576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610f595760405162461bcd60e51b81526004016106899061220e565b600d805460ff19811660ff90911615179055565b6008546001600160a01b03163314610f975760405162461bcd60e51b81526004016106899061220e565b610fa081600955565b50565b6060600380546106b890612232565b6008546001600160a01b03163314610fdc5760405162461bcd60e51b81526004016106899061220e565b80516106a590600e906020840190611d23565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b156111a757336001600160a01b038216036110925761108d85858585611978565b6111b3565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156110e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110591906123c1565b80156111885750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611164573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118891906123c1565b6111a757604051633b79c77360e21b8152336004820152602401610689565b6111b385858585611978565b5050505050565b60606111c58261164f565b6112295760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610689565b600d5460ff1615156000036112ca57600e805461124590612232565b80601f016020809104026020016040519081016040528092919081815260200182805461127190612232565b80156112be5780601f10611293576101008083540402835291602001916112be565b820191906000526020600020905b8154815290600101906020018083116112a157829003601f168201915b50505050509050919050565b6112d26119bc565b6112db836119cb565b60106040516020016112ef93929190612437565b6040516020818303038152906040529050919050565b3332146113245760405162461bcd60e51b81526004016106899061226c565b600c5442116113455760405162461bcd60e51b815260040161068990612297565b611388611350610907565b61135a90836122da565b11156113785760405162461bcd60e51b8152600401610689906122f2565b80600b116113985760405162461bcd60e51b815260040161068990612318565b336000908152601360205260409020546113b39082906122da565b600b116113d25760405162461bcd60e51b81526004016106899061233f565b6113e381662386f26fc1000061236b565b34146114015760405162461bcd60e51b81526004016106899061238a565b33600090815260136020526040812080548392906114209084906122da565b90915550610fa090503382611730565b6008546001600160a01b0316331461145a5760405162461bcd60e51b81526004016106899061220e565b611388611465610907565b61146f90846122da565b111561148d5760405162461bcd60e51b8152600401610689906122f2565b6106a58183611730565b3332146114b65760405162461bcd60e51b81526004016106899061226c565b600a5442116114d75760405162461bcd60e51b815260040161068990612297565b6113886114e2610907565b6114ec90846122da565b111561150a5760405162461bcd60e51b8152600401610689906122f2565b81600b1161152a5760405162461bcd60e51b815260040161068990612318565b336000908152601160205260409020546115459083906122da565b600b116115645760405162461bcd60e51b81526004016106899061233f565b61156e3382610db1565b6115b55760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b6044820152606401610689565b6115c6826613e52b9abe000061236b565b34146115e45760405162461bcd60e51b81526004016106899061238a565b33600090815260116020526040812080548492906108f79084906122da565b6008546001600160a01b0316331461162d5760405162461bcd60e51b81526004016106899061220e565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b600081600111158015611663575060005482105b8015610659575050600090815260046020526040902054600160e01b161590565b600061168f83610ed5565b90508180156116a75750336001600160a01b03821614155b156116d3576116b68133610591565b6116d3576040516367d9dca160e11b815260040160405180910390fd5b60008381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b6106a5828260405180602001604052806000815250611ad4565b600061175582611902565b9050836001600160a01b0316816001600160a01b0316146117885760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176117d5576117b88633610591565b6117d557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166117fc57604051633a954ecd60e21b815260040160405180910390fd5b801561180757600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611899576001840160008181526004602052604081205490036118975760005481146118975760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6118fd8383836040518060200160405280600081525061105b565b505050565b6000818060011161195f5760005481101561195f5760008181526004602052604081205490600160e01b8216900361195d575b80600003611956575060001901600081815260046020526040902054611935565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b611983848484610915565b6001600160a01b0383163b15610a6b5761199f84848484611b3a565b610a6b576040516368d2bf6b60e11b815260040160405180910390fd5b6060600f80546106b890612232565b6060816000036119f25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a1c5780611a068161241e565b9150611a159050600a836123f4565b91506119f6565b60008167ffffffffffffffff811115611a3757611a37611def565b6040519080825280601f01601f191660200182016040528015611a61576020820181803683370190505b5090505b8415611acc57611a766001836124fa565b9150611a83600a86612511565b611a8e9060306122da565b60f81b818381518110611aa357611aa3612408565b60200101906001600160f81b031916908160001a905350611ac5600a866123f4565b9450611a65565b949350505050565b611ade8383611c25565b6001600160a01b0383163b156118fd576000548281035b611b086000868380600101945086611b3a565b611b25576040516368d2bf6b60e11b815260040160405180910390fd5b818110611af55781600054146111b357600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b6f903390899088908890600401612525565b6020604051808303816000875af1925050508015611baa575060408051601f3d908101601f19168201909252611ba791810190612562565b60015b611c08573d808015611bd8576040519150601f19603f3d011682016040523d82523d6000602084013e611bdd565b606091505b508051600003611c00576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000805490829003611c4a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611cf957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611cc1565b5081600003611d1a57604051622e076360e81b815260040160405180910390fd5b60005550505050565b828054611d2f90612232565b90600052602060002090601f016020900481019282611d515760008555611d97565b82601f10611d6a57805160ff1916838001178555611d97565b82800160010185558215611d97579182015b82811115611d97578251825591602001919060010190611d7c565b50611da3929150611da7565b5090565b5b80821115611da35760008155600101611da8565b6001600160e01b031981168114610fa057600080fd5b600060208284031215611de457600080fd5b813561195681611dbc565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611e2e57611e2e611def565b604052919050565b600067ffffffffffffffff831115611e5057611e50611def565b611e63601f8401601f1916602001611e05565b9050828152838383011115611e7757600080fd5b828260208301376000602084830101529392505050565b600060208284031215611ea057600080fd5b813567ffffffffffffffff811115611eb757600080fd5b8201601f81018413611ec857600080fd5b611acc84823560208401611e36565b60005b83811015611ef2578181015183820152602001611eda565b83811115610a6b5750506000910152565b60008151808452611f1b816020860160208601611ed7565b601f01601f19169290920160200192915050565b6020815260006119566020830184611f03565b600060208284031215611f5457600080fd5b5035919050565b80356001600160a01b0381168114611f7257600080fd5b919050565b60008060408385031215611f8a57600080fd5b611f9383611f5b565b946020939093013593505050565b600082601f830112611fb257600080fd5b8135602067ffffffffffffffff821115611fce57611fce611def565b8160051b611fdd828201611e05565b9283528481018201928281019087851115611ff757600080fd5b83870192505b8483101561201657823582529183019190830190611ffd565b979650505050505050565b6000806040838503121561203457600080fd5b82359150602083013567ffffffffffffffff81111561205257600080fd5b61205e85828601611fa1565b9150509250929050565b60008060006060848603121561207d57600080fd5b61208684611f5b565b925061209460208501611f5b565b9150604084013590509250925092565b600080604083850312156120b757600080fd5b6120c083611f5b565b9150602083013567ffffffffffffffff81111561205257600080fd5b6000602082840312156120ee57600080fd5b61195682611f5b565b8015158114610fa057600080fd5b6000806040838503121561211857600080fd5b61212183611f5b565b91506020830135612131816120f7565b809150509250929050565b6000806000806080858703121561215257600080fd5b61215b85611f5b565b935061216960208601611f5b565b925060408501359150606085013567ffffffffffffffff81111561218c57600080fd5b8501601f8101871361219d57600080fd5b6121ac87823560208401611e36565b91505092959194509250565b600080604083850312156121cb57600080fd5b823591506121db60208401611f5b565b90509250929050565b600080604083850312156121f757600080fd5b61220083611f5b565b91506121db60208401611f5b565b6020808252600a90820152694e6f74204f776e65722160b01b604082015260600190565b600181811c9082168061224657607f821691505b60208210810361226657634e487b7160e01b600052602260045260246000fd5b50919050565b602080825260119082015270139bc81cdb585c9d0818dbdb9d1c9858dd607a1b604082015260600190565b60208082526013908201527214d85b19481a185cdb89dd081cdd185c9d1959606a1b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156122ed576122ed6122c4565b500190565b6020808252600c908201526b4e6f206d6f7265204e46547360a01b604082015260600190565b6020808252600d908201526c0626040dac2f040e0cae440e8f609b1b604082015260600190565b6020808252601290820152713130206d617820706572206164647265737360701b604082015260600190565b6000816000190483118215151615612385576123856122c4565b500290565b60208082526019908201527f56616c75652073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b6000602082840312156123d357600080fd5b8151611956816120f7565b634e487b7160e01b600052601260045260246000fd5b600082612403576124036123de565b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201612430576124306122c4565b5060010190565b60008451602061244a8285838a01611ed7565b85519184019161245d8184848a01611ed7565b8554920191600090600181811c908083168061247a57607f831692505b858310810361249757634e487b7160e01b85526022600452602485fd5b8080156124ab57600181146124bc576124e9565b60ff198516885283880195506124e9565b60008b81526020902060005b858110156124e15781548a8201529084019088016124c8565b505083880195505b50939b9a5050505050505050505050565b60008282101561250c5761250c6122c4565b500390565b600082612520576125206123de565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061255890830184611f03565b9695505050505050565b60006020828403121561257457600080fd5b815161195681611dbc56fea26469706673582212205def161fbebe76cbb4eecabbaff7c9fea71ea9b9e53b6afc41d76a67ea97bdd164736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000006380bc500000000000000000000000000000000000000000000000000000000063820dd00000000000000000000000000000000000000000000000000000000063835f50
-----Decoded View---------------
Arg [0] : _wl1Time (uint256): 1669381200
Arg [1] : _wl2Time (uint256): 1669467600
Arg [2] : _pbTime (uint256): 1669554000
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000006380bc50
Arg [1] : 0000000000000000000000000000000000000000000000000000000063820dd0
Arg [2] : 0000000000000000000000000000000000000000000000000000000063835f50
Deployed Bytecode Sourcemap
58955:5537:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20193:639;;;;;;;;;;-1:-1:-1;20193:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;20193:639:0;;;;;;;;62390:108;;;;;;;;;;-1:-1:-1;62390:108:0;;;;;:::i;:::-;;:::i;:::-;;21095:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27058:218::-;;;;;;;;;;-1:-1:-1;27058:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2972:32:1;;;2954:51;;2942:2;2927:18;27058:218:0;2808:203:1;26775:124:0;;;;;;:::i;:::-;;:::i;60828:611::-;;;;;;:::i;:::-;;:::i;16846:323::-;;;;;;;;;;;;;:::i;:::-;;;4737:25:1;;;4725:2;4710:18;16846:323:0;4591:177:1;63796:212:0;;;;;;:::i;:::-;;:::i;62506:525::-;;;;;;;;;;;;;:::i;64016:220::-;;;;;;:::i;:::-;;:::i;59341:20::-;;;;;;;;;;-1:-1:-1;59341:20:0;;;;;;;;62287:95;;;;;;;;;;-1:-1:-1;62287:95:0;;;;;:::i;:::-;;:::i;58543:405::-;;;;;;;;;;-1:-1:-1;58543:405:0;;;;;:::i;:::-;;:::i;22488:152::-;;;;;;;;;;-1:-1:-1;22488:152:0;;;;;:::i;:::-;;:::i;18030:233::-;;;;;;;;;;-1:-1:-1;18030:233:0;;;;;:::i;:::-;;:::i;62096:77::-;;;;;;;;;;;;;:::i;61979:109::-;;;;;;;;;;-1:-1:-1;61979:109:0;;;;;:::i;:::-;;:::i;59137:21::-;;;;;;;;;;;;;;;;53968:20;;;;;;;;;;-1:-1:-1;53968:20:0;;;;-1:-1:-1;;;;;53968:20:0;;;21271:104;;;;;;;;;;;;;:::i;62181:98::-;;;;;;;;;;-1:-1:-1;62181:98:0;;;;;:::i;:::-;;:::i;27616:234::-;;;;;;;;;;-1:-1:-1;27616:234:0;;;;;:::i;:::-;;:::i;59079:22::-;;;;;;;;;;;;;;;;59284:48;;;;;;;;;;;;59322:10;59284:48;;64244:245;;;;;;:::i;:::-;;:::i;59167:51::-;;;;;;;;;;;;59206:12;59167:51;;59108:22;;;;;;;;;;;;;;;;63279:359;;;;;;;;;;-1:-1:-1;63279:359:0;;;;;:::i;:::-;;:::i;59031:39::-;;;;;;;;;;;;59066:4;59031:39;;61447:500;;;;;;:::i;:::-;;:::i;60009:192::-;;;;;;;;;;-1:-1:-1;60009:192:0;;;;;:::i;:::-;;:::i;28007:164::-;;;;;;;;;;-1:-1:-1;28007:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28128:25:0;;;28104:4;28128:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28007:164;60209:611;;;;;;:::i;:::-;;:::i;54114:77::-;;;;;;;;;;-1:-1:-1;54114:77:0;;;;;:::i;:::-;;:::i;59225:52::-;;;;;;;;;;;;59264:13;59225:52;;20193:639;20278:4;-1:-1:-1;;;;;;;;;20602:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;20679:25:0;;;20602:102;:179;;;-1:-1:-1;;;;;;;;;;20756:25:0;;;20602:179;20582:199;20193:639;-1:-1:-1;;20193:639:0:o;62390:108::-;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;;;;;;;;;62467:23;;::::1;::::0;:16:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;62390:108:::0;:::o;21095:100::-;21149:13;21182:5;21175:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21095:100;:::o;27058:218::-;27134:7;27159:16;27167:7;27159;:16::i;:::-;27154:64;;27184:34;;-1:-1:-1;;;27184:34:0;;;;;;;;;;;27154:64;-1:-1:-1;27238:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;27238:30:0;;27058:218::o;26775:124::-;26864:27;26873:2;26877:7;26886:4;26864:8;:27::i;60828:611::-;63705:10;63719:9;63705:23;63697:53;;;;-1:-1:-1;;;63697:53:0;;;;;;;:::i;:::-;60951:7:::1;;60933:15;:25;60925:57;;;;-1:-1:-1::0;;;60925:57:0::1;;;;;;;:::i;:::-;59066:4;61011:13;:11;:13::i;:::-;61001:23;::::0;:7;:23:::1;:::i;:::-;:35;;60993:60;;;;-1:-1:-1::0;;;60993:60:0::1;;;;;;;:::i;:::-;61077:7;61072:2;:12;61064:38;;;;-1:-1:-1::0;;;61064:38:0::1;;;;;;;:::i;:::-;61136:10;61126:21;::::0;;;:9:::1;:21;::::0;;;;;:31:::1;::::0;61150:7;;61126:31:::1;:::i;:::-;61121:2;:36;61113:67;;;;-1:-1:-1::0;;;61113:67:0::1;;;;;;;:::i;:::-;61199:33;61213:10;61225:6;61199:13;:33::i;:::-;61191:70;;;::::0;-1:-1:-1;;;61191:70:0;;10463:2:1;61191:70:0::1;::::0;::::1;10445:21:1::0;10502:2;10482:18;;;10475:30;-1:-1:-1;;;10521:18:1;;;10514:54;10585:18;;61191:70:0::1;10261:348:1::0;61191:70:0::1;61293:22;61308:7:::0;59264:13:::1;61293:22;:::i;:::-;61280:9;:35;61272:73;;;;-1:-1:-1::0;;;61272:73:0::1;;;;;;;:::i;:::-;61368:10;61358:21;::::0;;;:9:::1;:21;::::0;;;;:32;;61383:7;;61358:21;:32:::1;::::0;61383:7;;61358:32:::1;:::i;:::-;::::0;;;-1:-1:-1;61401:30:0::1;::::0;-1:-1:-1;61411:10:0::1;61423:7:::0;61401:9:::1;:30::i;16846:323::-:0;63154:1;17120:12;16907:7;17104:13;:28;-1:-1:-1;;17104:46:0;;16846:323::o;63796:212::-;63941:4;56498:42;57638:43;:47;57634:699;;57925:10;-1:-1:-1;;;;;57917:18:0;;;57913:85;;63963:37:::1;63982:4;63988:2;63992:7;63963:18;:37::i;:::-;57976:7:::0;;57913:85;58058:67;;-1:-1:-1;;;58058:67:0;;58107:4;58058:67;;;11353:34:1;58114:10:0;11403:18:1;;;11396:43;56498:42:0;;58058:40;;11288:18:1;;58058:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;58154:61:0;;-1:-1:-1;;;58154:61:0;;58203:4;58154:61;;;11353:34:1;-1:-1:-1;;;;;11423:15:1;;11403:18;;;11396:43;56498:42:0;;58154:40;;11288:18:1;;58154:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58012:310;;58276:30;;-1:-1:-1;;;58276:30:0;;58295:10;58276:30;;;2954:51:1;2927:18;;58276:30:0;2808:203:1;58012:310:0;63963:37:::1;63982:4;63988:2;63992:7;63963:18;:37::i;:::-;63796:212:::0;;;;:::o;62506:525::-;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;62575:21:::1;62630:42;62705;62554:18;62630:42:::0;62833:4:::1;62816:16;62575:21:::0;62829:3:::1;62816:16;:::i;:::-;:21;;;;:::i;:::-;62800:43;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62786:57;;;;;62862:7;62854:44;;;::::0;-1:-1:-1;;;62854:44:0;;12369:2:1;62854:44:0::1;::::0;::::1;12351:21:1::0;12408:2;12388:18;;;12381:30;-1:-1:-1;;;12427:18:1;;;12420:54;12491:18;;62854:44:0::1;12167:348:1::0;62854:44:0::1;-1:-1:-1::0;;;;;62925:7:0;::::1;62958:4;62941:16;:10:::0;62954:3:::1;62941:16;:::i;:::-;:21;;;;:::i;:::-;62925:43;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62911:57;;;;;62987:7;62979:44;;;::::0;-1:-1:-1;;;62979:44:0;;12369:2:1;62979:44:0::1;::::0;::::1;12351:21:1::0;12408:2;12388:18;;;12381:30;-1:-1:-1;;;12427:18:1;;;12420:54;12491:18;;62979:44:0::1;12167:348:1::0;64016:220:0;64165:4;56498:42;57638:43;:47;57634:699;;57925:10;-1:-1:-1;;;;;57917:18:0;;;57913:85;;64187:41:::1;64210:4;64216:2;64220:7;64187:22;:41::i;57913:85::-:0;58058:67;;-1:-1:-1;;;58058:67:0;;58107:4;58058:67;;;11353:34:1;58114:10:0;11403:18:1;;;11396:43;56498:42:0;;58058:40;;11288:18:1;;58058:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;58154:61:0;;-1:-1:-1;;;58154:61:0;;58203:4;58154:61;;;11353:34:1;-1:-1:-1;;;;;11423:15:1;;11403:18;;;11396:43;56498:42:0;;58154:40;;11288:18:1;;58154:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58012:310;;58276:30;;-1:-1:-1;;;58276:30:0;;58295:10;58276:30;;;2954:51:1;2927:18;;58276:30:0;2808:203:1;58012:310:0;64187:41:::1;64210:4;64216:2;64220:7;64187:22;:41::i;62287:95::-:0;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;62355:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;58543:405::-:0;58673:26;;-1:-1:-1;;12669:2:1;12665:15;;;12661:53;58673:26:0;;;12649:66:1;58630:4:0;;;;12731:12:1;;58673:26:0;;;;;;;;;;;;58663:37;;;;;;58647:53;;58716:9;58711:192;58735:6;:13;58731:1;:17;58711:192;;;58786:6;58793:1;58786:9;;;;;;;;:::i;:::-;;;;;;;58778:5;:17;:113;;58873:6;58880:1;58873:9;;;;;;;;:::i;:::-;;;;;;;58884:5;58856:34;;;;;;;;13043:19:1;;;13087:2;13078:12;;13071:28;13124:2;13115:12;;12886:247;58856:34:0;;;;;;;;;;;;;58846:45;;;;;;58778:113;;;58825:5;58832:6;58839:1;58832:9;;;;;;;;:::i;:::-;;;;;;;58808:34;;;;;;;;13043:19:1;;;13087:2;13078:12;;13071:28;13124:2;13115:12;;12886:247;58808:34:0;;;;;;;;;;;;;58798:45;;;;;;58778:113;58770:121;-1:-1:-1;58750:3:0;;;;:::i;:::-;;;;58711:192;;;-1:-1:-1;58929:11:0;;58920:20;;58543:405;-1:-1:-1;;;58543:405:0:o;22488:152::-;22560:7;22603:27;22622:7;22603:18;:27::i;18030:233::-;18102:7;-1:-1:-1;;;;;18126:19:0;;18122:60;;18154:28;;-1:-1:-1;;;18154:28:0;;;;;;;;;;;18122:60;-1:-1:-1;;;;;;18200:25:0;;;;;:18;:25;;;;;;12189:13;18200:55;;18030:233::o;62096:77::-;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;62157:8:::1;::::0;;-1:-1:-1;;62145:20:0;::::1;62157:8;::::0;;::::1;62156:9;62145:20;::::0;;62096:77::o;61979:109::-;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;62053:27:::1;62068:11;58504::::0;:25;58431:106;62053:27:::1;61979:109:::0;:::o;21271:104::-;21327:13;21360:7;21353:14;;;;;:::i;62181:98::-;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;62255:16;;::::1;::::0;:9:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;27616:234::-:0;52063:10;27711:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;27711:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;27711:60:0;;;;;;;;;;27787:55;;540:41:1;;;27711:49:0;;52063:10;27787:55;;513:18:1;27787:55:0;;;;;;;27616:234;;:::o;64244:245::-;64412:4;56498:42;57638:43;:47;57634:699;;57925:10;-1:-1:-1;;;;;57917:18:0;;;57913:85;;64434:47:::1;64457:4;64463:2;64467:7;64476:4;64434:22;:47::i;:::-;57976:7:::0;;57913:85;58058:67;;-1:-1:-1;;;58058:67:0;;58107:4;58058:67;;;11353:34:1;58114:10:0;11403:18:1;;;11396:43;56498:42:0;;58058:40;;11288:18:1;;58058:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;58154:61:0;;-1:-1:-1;;;58154:61:0;;58203:4;58154:61;;;11353:34:1;-1:-1:-1;;;;;11423:15:1;;11403:18;;;11396:43;56498:42:0;;58154:40;;11288:18:1;;58154:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58012:310;;58276:30;;-1:-1:-1;;;58276:30:0;;58295:10;58276:30;;;2954:51:1;2927:18;;58276:30:0;2808:203:1;58012:310:0;64434:47:::1;64457:4;64463:2;64467:7;64476:4;64434:22;:47::i;:::-;64244:245:::0;;;;;:::o;63279:359::-;63352:13;63386:16;63394:7;63386;:16::i;:::-;63378:76;;;;-1:-1:-1;;;63378:76:0;;13480:2:1;63378:76:0;;;13462:21:1;13519:2;13499:18;;;13492:30;13558:34;13538:18;;;13531:62;-1:-1:-1;;;13609:18:1;;;13602:45;13664:19;;63378:76:0;13278:411:1;63378:76:0;63468:8;;;;:17;;:8;:17;63465:61;;63505:9;63498:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63279:359;;;:::o;63465:61::-;63567:16;:14;:16::i;:::-;63585:25;63602:7;63585:16;:25::i;:::-;63612:16;63550:79;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63536:94;;63279:359;;;:::o;61447:500::-;63705:10;63719:9;63705:23;63697:53;;;;-1:-1:-1;;;63697:53:0;;;;;;;:::i;:::-;61544:6:::1;;61526:15;:24;61518:56;;;;-1:-1:-1::0;;;61518:56:0::1;;;;;;;:::i;:::-;59066:4;61603:13;:11;:13::i;:::-;61593:23;::::0;:7;:23:::1;:::i;:::-;:35;;61585:60;;;;-1:-1:-1::0;;;61585:60:0::1;;;;;;;:::i;:::-;61669:7;61664:2;:12;61656:38;;;;-1:-1:-1::0;;;61656:38:0::1;;;;;;;:::i;:::-;61727:10;61718:20;::::0;;;:8:::1;:20;::::0;;;;;:30:::1;::::0;61741:7;;61718:30:::1;:::i;:::-;61713:2;:35;61705:66;;;;-1:-1:-1::0;;;61705:66:0::1;;;;;;;:::i;:::-;61803:21;61817:7:::0;59322:10:::1;61803:21;:::i;:::-;61790:9;:34;61782:72;;;;-1:-1:-1::0;;;61782:72:0::1;;;;;;;:::i;:::-;61876:10;61867:20;::::0;;;:8:::1;:20;::::0;;;;:31;;61891:7;;61867:20;:31:::1;::::0;61891:7;;61867:31:::1;:::i;:::-;::::0;;;-1:-1:-1;61909:30:0::1;::::0;-1:-1:-1;61919:10:0::1;61931:7:::0;61909:9:::1;:30::i;60009:192::-:0;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;59066:4:::1;60110:13;:11;:13::i;:::-;60100:23;::::0;:7;:23:::1;:::i;:::-;:35;;60092:60;;;;-1:-1:-1::0;;;60092:60:0::1;;;;;;;:::i;:::-;60165:28;60175:8;60185:7;60165:9;:28::i;60209:611::-:0;63705:10;63719:9;63705:23;63697:53;;;;-1:-1:-1;;;63697:53:0;;;;;;;:::i;:::-;60332:7:::1;;60314:15;:25;60306:57;;;;-1:-1:-1::0;;;60306:57:0::1;;;;;;;:::i;:::-;59066:4;60392:13;:11;:13::i;:::-;60382:23;::::0;:7;:23:::1;:::i;:::-;:35;;60374:60;;;;-1:-1:-1::0;;;60374:60:0::1;;;;;;;:::i;:::-;60458:7;60453:2;:12;60445:38;;;;-1:-1:-1::0;;;60445:38:0::1;;;;;;;:::i;:::-;60517:10;60507:21;::::0;;;:9:::1;:21;::::0;;;;;:31:::1;::::0;60531:7;;60507:31:::1;:::i;:::-;60502:2;:36;60494:67;;;;-1:-1:-1::0;;;60494:67:0::1;;;;;;;:::i;:::-;60580:33;60594:10;60606:6;60580:13;:33::i;:::-;60572:70;;;::::0;-1:-1:-1;;;60572:70:0;;10463:2:1;60572:70:0::1;::::0;::::1;10445:21:1::0;10502:2;10482:18;;;10475:30;-1:-1:-1;;;10521:18:1;;;10514:54;10585:18;;60572:70:0::1;10261:348:1::0;60572:70:0::1;60674:22;60689:7:::0;59206:12:::1;60674:22;:::i;:::-;60661:9;:35;60653:73;;;;-1:-1:-1::0;;;60653:73:0::1;;;;;;;:::i;:::-;60749:10;60739:21;::::0;;;:9:::1;:21;::::0;;;;:32;;60764:7;;60739:21;:32:::1;::::0;60764:7;;60739:32:::1;:::i;54114:77::-:0;54068:5;;-1:-1:-1;;;;;54068:5:0;54077:10;54068:19;54060:42;;;;-1:-1:-1;;;54060:42:0;;;;;;;:::i;:::-;54176:5:::1;:12:::0;;-1:-1:-1;;;;;;54176:12:0::1;-1:-1:-1::0;;;;;54176:12:0;;;::::1;::::0;;;::::1;::::0;;54114:77::o;28429:282::-;28494:4;28550:7;63154:1;28531:26;;:66;;;;;28584:13;;28574:7;:23;28531:66;:153;;;;-1:-1:-1;;28635:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;28635:44:0;:49;;28429:282::o;45489:431::-;45584:13;45600:16;45608:7;45600;:16::i;:::-;45584:32;;45633:13;:45;;;;-1:-1:-1;52063:10:0;-1:-1:-1;;;;;45650:28:0;;;;45633:45;45629:192;;;45698:44;45715:5;52063:10;28007:164;:::i;45698:44::-;45693:128;;45770:35;;-1:-1:-1;;;45770:35:0;;;;;;;;;;;45693:128;45833:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;45833:35:0;-1:-1:-1;;;;;45833:35:0;;;;;;;;;45884:28;;45833:24;;45884:28;;;;;;;45573:347;45489:431;;;:::o;44569:112::-;44646:27;44656:2;44660:8;44646:27;;;;;;;;;;;;:9;:27::i;30697:2825::-;30839:27;30869;30888:7;30869:18;:27::i;:::-;30839:57;;30954:4;-1:-1:-1;;;;;30913:45:0;30929:19;-1:-1:-1;;;;;30913:45:0;;30909:86;;30967:28;;-1:-1:-1;;;30967:28:0;;;;;;;;;;;30909:86;31009:27;29805:24;;;:15;:24;;;;;30033:26;;52063:10;29430:30;;;-1:-1:-1;;;;;29123:28:0;;29408:20;;;29405:56;31195:180;;31288:43;31305:4;52063:10;28007:164;:::i;31288:43::-;31283:92;;31340:35;;-1:-1:-1;;;31340:35:0;;;;;;;;;;;31283:92;-1:-1:-1;;;;;31392:16:0;;31388:52;;31417:23;;-1:-1:-1;;;31417:23:0;;;;;;;;;;;31388:52;31589:15;31586:160;;;31729:1;31708:19;31701:30;31586:160;-1:-1:-1;;;;;32126:24:0;;;;;;;:18;:24;;;;;;32124:26;;-1:-1:-1;;32124:26:0;;;32195:22;;;;;;;;;32193:24;;-1:-1:-1;32193:24:0;;;25877:11;25852:23;25848:41;25835:63;-1:-1:-1;;;25835:63:0;32488:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;32783:47:0;;:52;;32779:627;;32888:1;32878:11;;32856:19;33011:30;;;:17;:30;;;;;;:35;;33007:384;;33149:13;;33134:11;:28;33130:242;;33296:30;;;;:17;:30;;;;;:52;;;33130:242;32837:569;32779:627;33453:7;33449:2;-1:-1:-1;;;;;33434:27:0;33443:4;-1:-1:-1;;;;;33434:27:0;;;;;;;;;;;30828:2694;;;30697:2825;;;:::o;33618:193::-;33764:39;33781:4;33787:2;33791:7;33764:39;;;;;;;;;;;;:16;:39::i;:::-;33618:193;;;:::o;23643:1275::-;23710:7;23745;;63154:1;23794:23;23790:1061;;23847:13;;23840:4;:20;23836:1015;;;23885:14;23902:23;;;:17;:23;;;;;;;-1:-1:-1;;;23991:24:0;;:29;;23987:845;;24656:113;24663:6;24673:1;24663:11;24656:113;;-1:-1:-1;;;24734:6:0;24716:25;;;;:17;:25;;;;;;24656:113;;;24802:6;23643:1275;-1:-1:-1;;;23643:1275:0:o;23987:845::-;23862:989;23836:1015;24879:31;;-1:-1:-1;;;24879:31:0;;;;;;;;;;;34409:407;34584:31;34597:4;34603:2;34607:7;34584:12;:31::i;:::-;-1:-1:-1;;;;;34630:14:0;;;:19;34626:183;;34669:56;34700:4;34706:2;34710:7;34719:5;34669:30;:56::i;:::-;34664:145;;34753:40;;-1:-1:-1;;;34753:40:0;;;;;;;;;;;63171:100;63219:13;63251:12;63244:19;;;;;:::i;258:723::-;314:13;535:5;544:1;535:10;531:53;;-1:-1:-1;;562:10:0;;;;;;;;;;;;-1:-1:-1;;;562:10:0;;;;;258:723::o;531:53::-;609:5;594:12;650:78;657:9;;650:78;;683:8;;;;:::i;:::-;;-1:-1:-1;706:10:0;;-1:-1:-1;714:2:0;706:10;;:::i;:::-;;;650:78;;;738:19;770:6;760:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;760:17:0;;738:39;;788:154;795:10;;788:154;;822:11;832:1;822:11;;:::i;:::-;;-1:-1:-1;891:10:0;899:2;891:5;:10;:::i;:::-;878:24;;:2;:24;:::i;:::-;865:39;;848:6;855;848:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;848:56:0;;;;;;;;-1:-1:-1;919:11:0;928:2;919:11;;:::i;:::-;;;788:154;;;966:6;258:723;-1:-1:-1;;;;258:723:0:o;43796:689::-;43927:19;43933:2;43937:8;43927:5;:19::i;:::-;-1:-1:-1;;;;;43988:14:0;;;:19;43984:483;;44028:11;44042:13;44090:14;;;44123:233;44154:62;44193:1;44197:2;44201:7;;;;;;44210:5;44154:30;:62::i;:::-;44149:167;;44252:40;;-1:-1:-1;;;44252:40:0;;;;;;;;;;;44149:167;44351:3;44343:5;:11;44123:233;;44438:3;44421:13;;:20;44417:34;;44443:8;;;36900:716;37084:88;;-1:-1:-1;;;37084:88:0;;37063:4;;-1:-1:-1;;;;;37084:45:0;;;;;:88;;52063:10;;37151:4;;37157:7;;37166:5;;37084:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37084:88:0;;;;;;;;-1:-1:-1;;37084:88:0;;;;;;;;;;;;:::i;:::-;;;37080:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37367:6;:13;37384:1;37367:18;37363:235;;37413:40;;-1:-1:-1;;;37413:40:0;;;;;;;;;;;37363:235;37556:6;37550:13;37541:6;37537:2;37533:15;37526:38;37080:529;-1:-1:-1;;;;;;37243:64:0;-1:-1:-1;;;37243:64:0;;-1:-1:-1;36900:716:0;;;;;;:::o;38078:2966::-;38151:20;38174:13;;;38202;;;38198:44;;38224:18;;-1:-1:-1;;;38224:18:0;;;;;;;;;;;38198:44;-1:-1:-1;;;;;38730:22:0;;;;;;:18;:22;;;;12327:2;38730:22;;;:71;;38768:32;38756:45;;38730:71;;;39044:31;;;:17;:31;;;;;-1:-1:-1;26308:15:0;;26282:24;26278:46;25877:11;25852:23;25848:41;25845:52;25835:63;;39044:173;;39279:23;;;;39044:31;;38730:22;;40044:25;38730:22;;39897:335;40558:1;40544:12;40540:20;40498:346;40599:3;40590:7;40587:16;40498:346;;40817:7;40807:8;40804:1;40777:25;40774:1;40771;40766:59;40652:1;40639:15;40498:346;;;40502:77;40877:8;40889:1;40877:13;40873:45;;40899:19;;-1:-1:-1;;;40899:19:0;;;;;;;;;;;40873:45;40935:13;:19;-1:-1:-1;33618:193:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:127::-;653:10;648:3;644:20;641:1;634:31;684:4;681:1;674:15;708:4;705:1;698:15;724:275;795:2;789:9;860:2;841:13;;-1:-1:-1;;837:27:1;825:40;;895:18;880:34;;916:22;;;877:62;874:88;;;942:18;;:::i;:::-;978:2;971:22;724:275;;-1:-1:-1;724:275:1:o;1004:407::-;1069:5;1103:18;1095:6;1092:30;1089:56;;;1125:18;;:::i;:::-;1163:57;1208:2;1187:15;;-1:-1:-1;;1183:29:1;1214:4;1179:40;1163:57;:::i;:::-;1154:66;;1243:6;1236:5;1229:21;1283:3;1274:6;1269:3;1265:16;1262:25;1259:45;;;1300:1;1297;1290:12;1259:45;1349:6;1344:3;1337:4;1330:5;1326:16;1313:43;1403:1;1396:4;1387:6;1380:5;1376:18;1372:29;1365:40;1004:407;;;;;:::o;1416:451::-;1485:6;1538:2;1526:9;1517:7;1513:23;1509:32;1506:52;;;1554:1;1551;1544:12;1506:52;1594:9;1581:23;1627:18;1619:6;1616:30;1613:50;;;1659:1;1656;1649:12;1613:50;1682:22;;1735:4;1727:13;;1723:27;-1:-1:-1;1713:55:1;;1764:1;1761;1754:12;1713:55;1787:74;1853:7;1848:2;1835:16;1830:2;1826;1822:11;1787:74;:::i;1872:258::-;1944:1;1954:113;1968:6;1965:1;1962:13;1954:113;;;2044:11;;;2038:18;2025:11;;;2018:39;1990:2;1983:10;1954:113;;;2085:6;2082:1;2079:13;2076:48;;;-1:-1:-1;;2120:1:1;2102:16;;2095:27;1872:258::o;2135:::-;2177:3;2215:5;2209:12;2242:6;2237:3;2230:19;2258:63;2314:6;2307:4;2302:3;2298:14;2291:4;2284:5;2280:16;2258:63;:::i;:::-;2375:2;2354:15;-1:-1:-1;;2350:29:1;2341:39;;;;2382:4;2337:50;;2135:258;-1:-1:-1;;2135:258:1:o;2398:220::-;2547:2;2536:9;2529:21;2510:4;2567:45;2608:2;2597:9;2593:18;2585:6;2567:45;:::i;2623:180::-;2682:6;2735:2;2723:9;2714:7;2710:23;2706:32;2703:52;;;2751:1;2748;2741:12;2703:52;-1:-1:-1;2774:23:1;;2623:180;-1:-1:-1;2623:180:1:o;3016:173::-;3084:20;;-1:-1:-1;;;;;3133:31:1;;3123:42;;3113:70;;3179:1;3176;3169:12;3113:70;3016:173;;;:::o;3194:254::-;3262:6;3270;3323:2;3311:9;3302:7;3298:23;3294:32;3291:52;;;3339:1;3336;3329:12;3291:52;3362:29;3381:9;3362:29;:::i;:::-;3352:39;3438:2;3423:18;;;;3410:32;;-1:-1:-1;;;3194:254:1:o;3453:712::-;3507:5;3560:3;3553:4;3545:6;3541:17;3537:27;3527:55;;3578:1;3575;3568:12;3527:55;3614:6;3601:20;3640:4;3663:18;3659:2;3656:26;3653:52;;;3685:18;;:::i;:::-;3731:2;3728:1;3724:10;3754:28;3778:2;3774;3770:11;3754:28;:::i;:::-;3816:15;;;3886;;;3882:24;;;3847:12;;;;3918:15;;;3915:35;;;3946:1;3943;3936:12;3915:35;3982:2;3974:6;3970:15;3959:26;;3994:142;4010:6;4005:3;4002:15;3994:142;;;4076:17;;4064:30;;4027:12;;;;4114;;;;3994:142;;;4154:5;3453:712;-1:-1:-1;;;;;;;3453:712:1:o;4170:416::-;4263:6;4271;4324:2;4312:9;4303:7;4299:23;4295:32;4292:52;;;4340:1;4337;4330:12;4292:52;4376:9;4363:23;4353:33;;4437:2;4426:9;4422:18;4409:32;4464:18;4456:6;4453:30;4450:50;;;4496:1;4493;4486:12;4450:50;4519:61;4572:7;4563:6;4552:9;4548:22;4519:61;:::i;:::-;4509:71;;;4170:416;;;;;:::o;4773:328::-;4850:6;4858;4866;4919:2;4907:9;4898:7;4894:23;4890:32;4887:52;;;4935:1;4932;4925:12;4887:52;4958:29;4977:9;4958:29;:::i;:::-;4948:39;;5006:38;5040:2;5029:9;5025:18;5006:38;:::i;:::-;4996:48;;5091:2;5080:9;5076:18;5063:32;5053:42;;4773:328;;;;;:::o;5106:422::-;5199:6;5207;5260:2;5248:9;5239:7;5235:23;5231:32;5228:52;;;5276:1;5273;5266:12;5228:52;5299:29;5318:9;5299:29;:::i;:::-;5289:39;;5379:2;5368:9;5364:18;5351:32;5406:18;5398:6;5395:30;5392:50;;;5438:1;5435;5428:12;5533:186;5592:6;5645:2;5633:9;5624:7;5620:23;5616:32;5613:52;;;5661:1;5658;5651:12;5613:52;5684:29;5703:9;5684:29;:::i;5909:118::-;5995:5;5988:13;5981:21;5974:5;5971:32;5961:60;;6017:1;6014;6007:12;6032:315;6097:6;6105;6158:2;6146:9;6137:7;6133:23;6129:32;6126:52;;;6174:1;6171;6164:12;6126:52;6197:29;6216:9;6197:29;:::i;:::-;6187:39;;6276:2;6265:9;6261:18;6248:32;6289:28;6311:5;6289:28;:::i;:::-;6336:5;6326:15;;;6032:315;;;;;:::o;6352:667::-;6447:6;6455;6463;6471;6524:3;6512:9;6503:7;6499:23;6495:33;6492:53;;;6541:1;6538;6531:12;6492:53;6564:29;6583:9;6564:29;:::i;:::-;6554:39;;6612:38;6646:2;6635:9;6631:18;6612:38;:::i;:::-;6602:48;;6697:2;6686:9;6682:18;6669:32;6659:42;;6752:2;6741:9;6737:18;6724:32;6779:18;6771:6;6768:30;6765:50;;;6811:1;6808;6801:12;6765:50;6834:22;;6887:4;6879:13;;6875:27;-1:-1:-1;6865:55:1;;6916:1;6913;6906:12;6865:55;6939:74;7005:7;7000:2;6987:16;6982:2;6978;6974:11;6939:74;:::i;:::-;6929:84;;;6352:667;;;;;;;:::o;7024:254::-;7092:6;7100;7153:2;7141:9;7132:7;7128:23;7124:32;7121:52;;;7169:1;7166;7159:12;7121:52;7205:9;7192:23;7182:33;;7234:38;7268:2;7257:9;7253:18;7234:38;:::i;:::-;7224:48;;7024:254;;;;;:::o;7283:260::-;7351:6;7359;7412:2;7400:9;7391:7;7387:23;7383:32;7380:52;;;7428:1;7425;7418:12;7380:52;7451:29;7470:9;7451:29;:::i;:::-;7441:39;;7499:38;7533:2;7522:9;7518:18;7499:38;:::i;7548:334::-;7750:2;7732:21;;;7789:2;7769:18;;;7762:30;-1:-1:-1;;;7823:2:1;7808:18;;7801:40;7873:2;7858:18;;7548:334::o;7887:380::-;7966:1;7962:12;;;;8009;;;8030:61;;8084:4;8076:6;8072:17;8062:27;;8030:61;8137:2;8129:6;8126:14;8106:18;8103:38;8100:161;;8183:10;8178:3;8174:20;8171:1;8164:31;8218:4;8215:1;8208:15;8246:4;8243:1;8236:15;8100:161;;7887:380;;;:::o;8272:341::-;8474:2;8456:21;;;8513:2;8493:18;;;8486:30;-1:-1:-1;;;8547:2:1;8532:18;;8525:47;8604:2;8589:18;;8272:341::o;8618:343::-;8820:2;8802:21;;;8859:2;8839:18;;;8832:30;-1:-1:-1;;;8893:2:1;8878:18;;8871:49;8952:2;8937:18;;8618:343::o;8966:127::-;9027:10;9022:3;9018:20;9015:1;9008:31;9058:4;9055:1;9048:15;9082:4;9079:1;9072:15;9098:128;9138:3;9169:1;9165:6;9162:1;9159:13;9156:39;;;9175:18;;:::i;:::-;-1:-1:-1;9211:9:1;;9098:128::o;9231:336::-;9433:2;9415:21;;;9472:2;9452:18;;;9445:30;-1:-1:-1;;;9506:2:1;9491:18;;9484:42;9558:2;9543:18;;9231:336::o;9572:337::-;9774:2;9756:21;;;9813:2;9793:18;;;9786:30;-1:-1:-1;;;9847:2:1;9832:18;;9825:43;9900:2;9885:18;;9572:337::o;9914:342::-;10116:2;10098:21;;;10155:2;10135:18;;;10128:30;-1:-1:-1;;;10189:2:1;10174:18;;10167:48;10247:2;10232:18;;9914:342::o;10614:168::-;10654:7;10720:1;10716;10712:6;10708:14;10705:1;10702:21;10697:1;10690:9;10683:17;10679:45;10676:71;;;10727:18;;:::i;:::-;-1:-1:-1;10767:9:1;;10614:168::o;10787:349::-;10989:2;10971:21;;;11028:2;11008:18;;;11001:30;11067:27;11062:2;11047:18;;11040:55;11127:2;11112:18;;10787:349::o;11450:245::-;11517:6;11570:2;11558:9;11549:7;11545:23;11541:32;11538:52;;;11586:1;11583;11576:12;11538:52;11618:9;11612:16;11637:28;11659:5;11637:28;:::i;11700:127::-;11761:10;11756:3;11752:20;11749:1;11742:31;11792:4;11789:1;11782:15;11816:4;11813:1;11806:15;11832:120;11872:1;11898;11888:35;;11903:18;;:::i;:::-;-1:-1:-1;11937:9:1;;11832:120::o;12754:127::-;12815:10;12810:3;12806:20;12803:1;12796:31;12846:4;12843:1;12836:15;12870:4;12867:1;12860:15;13138:135;13177:3;13198:17;;;13195:43;;13218:18;;:::i;:::-;-1:-1:-1;13265:1:1;13254:13;;13138:135::o;13820:1527::-;14044:3;14082:6;14076:13;14108:4;14121:51;14165:6;14160:3;14155:2;14147:6;14143:15;14121:51;:::i;:::-;14235:13;;14194:16;;;;14257:55;14235:13;14194:16;14279:15;;;14257:55;:::i;:::-;14401:13;;14334:20;;;14374:1;;14461;14483:18;;;;14536;;;;14563:93;;14641:4;14631:8;14627:19;14615:31;;14563:93;14704:2;14694:8;14691:16;14671:18;14668:40;14665:167;;-1:-1:-1;;;14731:33:1;;14787:4;14784:1;14777:15;14817:4;14738:3;14805:17;14665:167;14848:18;14875:110;;;;14999:1;14994:328;;;;14841:481;;14875:110;-1:-1:-1;;14910:24:1;;14896:39;;14955:20;;;;-1:-1:-1;14875:110:1;;14994:328;13767:1;13760:14;;;13804:4;13791:18;;15089:1;15103:169;15117:8;15114:1;15111:15;15103:169;;;15199:14;;15184:13;;;15177:37;15242:16;;;;15134:10;;15103:169;;;15107:3;;15303:8;15296:5;15292:20;15285:27;;14841:481;-1:-1:-1;15338:3:1;;13820:1527;-1:-1:-1;;;;;;;;;;;13820:1527:1:o;15352:125::-;15392:4;15420:1;15417;15414:8;15411:34;;;15425:18;;:::i;:::-;-1:-1:-1;15462:9:1;;15352:125::o;15482:112::-;15514:1;15540;15530:35;;15545:18;;:::i;:::-;-1:-1:-1;15579:9:1;;15482:112::o;15599:489::-;-1:-1:-1;;;;;15868:15:1;;;15850:34;;15920:15;;15915:2;15900:18;;15893:43;15967:2;15952:18;;15945:34;;;16015:3;16010:2;15995:18;;15988:31;;;15793:4;;16036:46;;16062:19;;16054:6;16036:46;:::i;:::-;16028:54;15599:489;-1:-1:-1;;;;;;15599:489:1:o;16093:249::-;16162:6;16215:2;16203:9;16194:7;16190:23;16186:32;16183:52;;;16231:1;16228;16221:12;16183:52;16263:9;16257:16;16282:30;16306:5;16282:30;:::i
Swarm Source
ipfs://5def161fbebe76cbb4eecabbaff7c9fea71ea9b9e53b6afc41d76a67ea97bdd1
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.