ERC-721
Overview
Max Total Supply
820 NOBY
Holders
421
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 NOBYLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Noby
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "erc721a/contracts/ERC721A.sol"; contract Noby is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; enum ContractMintState { PAUSED, PUBLIC, ALLOWLIST, WHITELIST } uint256 public maxSupply = 780; uint256 public publicSupply = 780; string public uriPrefix = ""; // // string public hiddenMetadataUri = "ipfs://QmTQdPZ6p9vc7firTN44kX9psndz5EZPoupWVjT3sPCtWw"; uint256 public publicCost = 0.01 ether; uint256 public allowlistCost = 0.1 ether; uint256 public whitelistCost = 0 ether; constructor( bytes32 wlRoot, ContractMintState mintState, string memory _uri ) ERC721A("Noby's Nft", "NOBY") { setWhitelistMerkleRoot(wlRoot); setAllowlistMerkleRoot(wlRoot); setState(mintState); setUriPrefix(_uri); } function setPublicCost(uint256 _cost) public onlyOwner { publicCost = _cost; } function setAllowlistCost(uint256 _cost) public onlyOwner { allowlistCost = _cost; } function setWhitelistCost(uint256 _cost) public onlyOwner { whitelistCost = _cost; } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, _tokenId.toString(), ".json" ) ) : hiddenMetadataUri; } modifier mintCompliance(uint256 _mintAmount, uint256 _limit) { require( _mintAmount > 0 && _mintAmount <= _limit, "Invalid mint amount" ); require( totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded" ); _; } uint256 public publicMintLimit = 3; function setPublicMintLimit(uint256 _limit) public onlyOwner { publicMintLimit = _limit; } mapping(address => uint256) public publicMinted; function publicMint(uint256 amount) public payable mintCompliance(amount, publicMintLimit) { require( publicMinted[msg.sender] + amount <= publicMintLimit, "Can't mint that many" ); require(state == ContractMintState.PUBLIC, "Public mint is disabled"); require(totalSupply() + amount <= publicSupply, "Can't mint that many"); require(msg.value >= publicCost * amount, "Insufficient funds"); publicMinted[msg.sender] += amount; _safeMint(msg.sender, amount); } // allowlistMintLimit - section uint256 public allowlistMintLimit = 3; function setAllowlistMintLimit(uint256 _limit) public onlyOwner { allowlistMintLimit = _limit; } bytes32 public _allowlistMerkleRoot; function allowlistMerkleRoot() public view returns (bytes32) { return _allowlistMerkleRoot; } function setAllowlistMerkleRoot(bytes32 _root) public onlyOwner { _allowlistMerkleRoot = _root; } mapping(address => uint256) public allowlistMinted; uint256 public whitelistMintLimit = 3; function setWhitelistMintLimit(uint256 _limit) public onlyOwner { whitelistMintLimit = _limit; } bytes32 public _whitelistMerkleRoot; function whitelistMerkleRoot() public view returns (bytes32) { return _whitelistMerkleRoot; } function setWhitelistMerkleRoot(bytes32 _root) public onlyOwner { _whitelistMerkleRoot = _root; } mapping(address => uint256) public whitelistMinted; function mintForAddress(uint256 amount, address _reciver) public onlyOwner { require(totalSupply() + amount <= maxSupply, "Max supply exceeded"); _safeMint(_reciver, amount); } function numberMinted(address _mint) public view returns (uint256) { return _numberMinted(_mint); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownerTokens = new uint256[](ownerTokenCount); uint256 ownerTokenIdx = 0; for ( uint256 tokenIdx = _startTokenId(); tokenIdx <= totalSupply(); tokenIdx++ ) { if (ownerOf(tokenIdx) == _owner) { ownerTokens[ownerTokenIdx] = tokenIdx; ownerTokenIdx++; } } return ownerTokens; } ContractMintState public state = ContractMintState.PAUSED; function setState(ContractMintState _state) public onlyOwner { state = _state; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed"); } function _leaf(address account, uint256 allowance) internal pure returns (bytes32) { return keccak256(abi.encodePacked(account, allowance)); } function _verify( bytes32 leaf, bytes32[] memory proof, bytes32 root ) internal pure returns (bool) { return MerkleProof.verify(proof, root, leaf); } function whitelistMerkleMint( uint256 amount, uint256 numToken, bytes32[] memory proof ) public payable { require( whitelistMinted[msg.sender] + amount <= whitelistMintLimit, "can't mint that many" ); require(msg.sender != address(0), "address error"); bytes32 leaf = _leaf(msg.sender, numToken); bytes32 _root = whitelistMerkleRoot(); require(_verify(leaf, proof, _root), "Verification failed"); whitelistMinted[msg.sender] += amount; _safeMint(msg.sender, amount); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"bytes32","name":"wlRoot","type":"bytes32"},{"internalType":"enum Noby.ContractMintState","name":"mintState","type":"uint8"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_allowlistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_reciver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_mint","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setAllowlistCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setAllowlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setAllowlistMintLimit","outputs":[],"stateMutability":"nonpayable","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":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setPublicMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Noby.ContractMintState","name":"_state","type":"uint8"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWhitelistCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWhitelistMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"state","outputs":[{"internalType":"enum Noby.ContractMintState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"numToken","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMerkleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405261030c600a5561030c600b5560405180602001604052806000815250600c9081620000309190620006aa565b5060405180606001604052806035815260200162004e2f60359139600d90816200005b9190620006aa565b50662386f26fc10000600e5567016345785d8a0000600f5560006010556003601155600360135560036016556000601960006101000a81548160ff02191690836003811115620000b057620000af62000791565b5b0217905550348015620000c257600080fd5b5060405162004e6438038062004e648339818101604052810190620000e8919062000987565b6040518060400160405280600a81526020017f4e6f62792773204e6674000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e4f4259000000000000000000000000000000000000000000000000000000008152508160029081620001659190620006aa565b508060039081620001779190620006aa565b50620001886200020560201b60201c565b6000819055505050620001b0620001a46200020e60201b60201c565b6200021660201b60201c565b6001600981905550620001c983620002dc60201b60201c565b620001da83620002f660201b60201c565b620001eb826200031060201b60201c565b620001fc816200035060201b60201c565b50505062000a85565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ec6200037560201b60201c565b8060178190555050565b620003066200037560201b60201c565b8060148190555050565b620003206200037560201b60201c565b80601960006101000a81548160ff0219169083600381111562000348576200034762000791565b5b021790555050565b620003606200037560201b60201c565b80600c9081620003719190620006aa565b5050565b620003856200020e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003ab6200040660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000404576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003fb9062000a63565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004b257607f821691505b602082108103620004c857620004c76200046a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005327fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004f3565b6200053e8683620004f3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200058b620005856200057f8462000556565b62000560565b62000556565b9050919050565b6000819050919050565b620005a7836200056a565b620005bf620005b68262000592565b84845462000500565b825550505050565b600090565b620005d6620005c7565b620005e38184846200059c565b505050565b5b818110156200060b57620005ff600082620005cc565b600181019050620005e9565b5050565b601f8211156200065a576200062481620004ce565b6200062f84620004e3565b810160208510156200063f578190505b620006576200064e85620004e3565b830182620005e8565b50505b505050565b600082821c905092915050565b60006200067f600019846008026200065f565b1980831691505092915050565b60006200069a83836200066c565b9150826002028217905092915050565b620006b58262000430565b67ffffffffffffffff811115620006d157620006d06200043b565b5b620006dd825462000499565b620006ea8282856200060f565b600060209050601f8311600181146200072257600084156200070d578287015190505b6200071985826200068c565b86555062000789565b601f1984166200073286620004ce565b60005b828110156200075c5784890151825560018201915060208501945060208101905062000735565b868310156200077c578489015162000778601f8916826200066c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000604051905090565b600080fd5b600080fd5b6000819050919050565b620007e981620007d4565b8114620007f557600080fd5b50565b6000815190506200080981620007de565b92915050565b600481106200081d57600080fd5b50565b60008151905062000831816200080f565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200085d8262000841565b810181811067ffffffffffffffff821117156200087f576200087e6200043b565b5b80604052505050565b600062000894620007c0565b9050620008a2828262000852565b919050565b600067ffffffffffffffff821115620008c557620008c46200043b565b5b620008d08262000841565b9050602081019050919050565b60005b83811015620008fd578082015181840152602081019050620008e0565b60008484015250505050565b6000620009206200091a84620008a7565b62000888565b9050828152602081018484840111156200093f576200093e6200083c565b5b6200094c848285620008dd565b509392505050565b600082601f8301126200096c576200096b62000837565b5b81516200097e84826020860162000909565b91505092915050565b600080600060608486031215620009a357620009a2620007ca565b5b6000620009b386828701620007f8565b9350506020620009c68682870162000820565b925050604084015167ffffffffffffffff811115620009ea57620009e9620007cf565b5b620009f88682870162000954565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000a4b60208362000a02565b915062000a588262000a13565b602082019050919050565b6000602082019050818103600083015262000a7e8162000a3c565b9050919050565b61439a8062000a956000396000f3fe6080604052600436106102ff5760003560e01c8063921a2a0311610190578063c87b56dd116100dc578063e7b99ec711610095578063ef3e067c1161006f578063ef3e067c14610b44578063efbd73f414610b6d578063f2fde38b14610b96578063f95df41414610bbf576102ff565b8063e7b99ec714610a9f578063e81ed04414610aca578063e985e9c514610b07576102ff565b8063c87b56dd1461098a578063d49479eb146109c7578063d5abeb01146109f0578063dc33e68114610a1b578063ddd1783a14610a58578063e678021514610a83576102ff565b8063a45ba8e711610149578063b88d4fde11610123578063b88d4fde146108ef578063bb485b881461090b578063bd32fb6614610936578063c19d93fb1461095f576102ff565b8063a45ba8e714610870578063a8658c971461089b578063aa98e0c6146108c4576102ff565b8063921a2a031461076057806395d89b411461078b57806398a8cffe146107b6578063a0b30390146107f3578063a22cb4651461081e578063a254c26414610847576102ff565b8063438b63001161024f5780636352211e116102085780637ec4a659116101e25780637ec4a659146106b8578063811d2437146106e15780638693da201461070a5780638da5cb5b14610735576102ff565b80636352211e1461062757806370a0823114610664578063715018a6146106a1576102ff565b8063438b6300146105175780634fdd43cb1461055457806356de96db1461057d5780635e84d723146105a6578063612abd44146105d157806362b99ad4146105fc576102ff565b806323b872dd116102bc57806335871c0e1161029657806335871c0e14610490578063381b965c146104bb5780633ccfd60b146104e457806342842e0e146104fb576102ff565b806323b872dd1461042d578063293108e0146104495780632db1154414610474576102ff565b806301ffc9a71461030457806306fdde0314610341578063081812fc1461036c578063095ea7b3146103a95780631015805b146103c557806318160ddd14610402575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190612cfe565b610be8565b6040516103389190612d46565b60405180910390f35b34801561034d57600080fd5b50610356610c7a565b6040516103639190612df1565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190612e49565b610d0c565b6040516103a09190612eb7565b60405180910390f35b6103c360048036038101906103be9190612efe565b610d8b565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612f3e565b610ecf565b6040516103f99190612f7a565b60405180910390f35b34801561040e57600080fd5b50610417610ee7565b6040516104249190612f7a565b60405180910390f35b61044760048036038101906104429190612f95565b610efe565b005b34801561045557600080fd5b5061045e611220565b60405161046b9190613001565b60405180910390f35b61048e60048036038101906104899190612e49565b61122a565b005b34801561049c57600080fd5b506104a56114e5565b6040516104b29190612f7a565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd9190612e49565b6114eb565b005b3480156104f057600080fd5b506104f96114fd565b005b61051560048036038101906105109190612f95565b6115c4565b005b34801561052357600080fd5b5061053e60048036038101906105399190612f3e565b6115e4565b60405161054b91906130da565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190613231565b6116e5565b005b34801561058957600080fd5b506105a4600480360381019061059f919061329f565b611700565b005b3480156105b257600080fd5b506105bb611735565b6040516105c89190612f7a565b60405180910390f35b3480156105dd57600080fd5b506105e661173b565b6040516105f39190612f7a565b60405180910390f35b34801561060857600080fd5b50610611611741565b60405161061e9190612df1565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190612e49565b6117cf565b60405161065b9190612eb7565b60405180910390f35b34801561067057600080fd5b5061068b60048036038101906106869190612f3e565b6117e1565b6040516106989190612f7a565b60405180910390f35b3480156106ad57600080fd5b506106b6611899565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613231565b6118ad565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612e49565b6118c8565b005b34801561071657600080fd5b5061071f6118da565b60405161072c9190612f7a565b60405180910390f35b34801561074157600080fd5b5061074a6118e0565b6040516107579190612eb7565b60405180910390f35b34801561076c57600080fd5b5061077561190a565b6040516107829190613001565b60405180910390f35b34801561079757600080fd5b506107a0611910565b6040516107ad9190612df1565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190612f3e565b6119a2565b6040516107ea9190612f7a565b60405180910390f35b3480156107ff57600080fd5b506108086119ba565b6040516108159190613001565b60405180910390f35b34801561082a57600080fd5b50610845600480360381019061084091906132f8565b6119c0565b005b34801561085357600080fd5b5061086e60048036038101906108699190612e49565b611acb565b005b34801561087c57600080fd5b50610885611add565b6040516108929190612df1565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190612e49565b611b6b565b005b3480156108d057600080fd5b506108d9611b7d565b6040516108e69190613001565b60405180910390f35b610909600480360381019061090491906133d9565b611b87565b005b34801561091757600080fd5b50610920611bfa565b60405161092d9190612f7a565b60405180910390f35b34801561094257600080fd5b5061095d60048036038101906109589190613488565b611c00565b005b34801561096b57600080fd5b50610974611c12565b604051610981919061352c565b60405180910390f35b34801561099657600080fd5b506109b160048036038101906109ac9190612e49565b611c25565b6040516109be9190612df1565b60405180910390f35b3480156109d357600080fd5b506109ee60048036038101906109e99190612e49565b611d47565b005b3480156109fc57600080fd5b50610a05611d59565b604051610a129190612f7a565b60405180910390f35b348015610a2757600080fd5b50610a426004803603810190610a3d9190612f3e565b611d5f565b604051610a4f9190612f7a565b60405180910390f35b348015610a6457600080fd5b50610a6d611d71565b604051610a7a9190612f7a565b60405180910390f35b610a9d6004803603810190610a98919061360f565b611d77565b005b348015610aab57600080fd5b50610ab4611f40565b604051610ac19190612f7a565b60405180910390f35b348015610ad657600080fd5b50610af16004803603810190610aec9190612f3e565b611f46565b604051610afe9190612f7a565b60405180910390f35b348015610b1357600080fd5b50610b2e6004803603810190610b29919061367e565b611f5e565b604051610b3b9190612d46565b60405180910390f35b348015610b5057600080fd5b50610b6b6004803603810190610b669190612e49565b611ff2565b005b348015610b7957600080fd5b50610b946004803603810190610b8f91906136be565b612004565b005b348015610ba257600080fd5b50610bbd6004803603810190610bb89190612f3e565b612071565b005b348015610bcb57600080fd5b50610be66004803603810190610be19190613488565b6120f4565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c4357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c735750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610c899061372d565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb59061372d565b8015610d025780601f10610cd757610100808354040283529160200191610d02565b820191906000526020600020905b815481529060010190602001808311610ce557829003601f168201915b5050505050905090565b6000610d1782612106565b610d4d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d96826117cf565b90508073ffffffffffffffffffffffffffffffffffffffff16610db7612165565b73ffffffffffffffffffffffffffffffffffffffff1614610e1a57610de381610dde612165565b611f5e565b610e19576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60126020528060005260406000206000915090505481565b6000610ef161216d565b6001546000540303905090565b6000610f0982612176565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f70576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f7c84612242565b91509150610f928187610f8d612165565b612269565b610fde57610fa786610fa2612165565b611f5e565b610fdd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611044576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61105186868660016122ad565b801561105c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061112a856111068888876122b3565b7c0200000000000000000000000000000000000000000000000000000000176122db565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111b057600060018501905060006004600083815260200190815260200160002054036111ae5760005481146111ad578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112188686866001612306565b505050505050565b6000601454905090565b8060115460008211801561123e5750808211155b61127d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611274906137aa565b60405180910390fd5b600a5482611289610ee7565b61129391906137f9565b11156112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb90613879565b60405180910390fd5b60115483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461132291906137f9565b1115611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a906138e5565b60405180910390fd5b60016003811115611377576113766134b5565b5b601960009054906101000a900460ff166003811115611399576113986134b5565b5b146113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d090613951565b60405180910390fd5b600b54836113e5610ee7565b6113ef91906137f9565b1115611430576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611427906138e5565b60405180910390fd5b82600e5461143e9190613971565b341015611480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611477906139ff565b60405180910390fd5b82601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114cf91906137f9565b925050819055506114e0338461230c565b505050565b60135481565b6114f361232a565b8060168190555050565b61150561232a565b61150d6123a8565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161153390613a50565b60006040518083038185875af1925050503d8060008114611570576040519150601f19603f3d011682016040523d82523d6000602084013e611575565b606091505b50509050806115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090613ab1565b60405180910390fd5b506115c26123f7565b565b6115df83838360405180602001604052806000815250611b87565b505050565b606060006115f1836117e1565b905060008167ffffffffffffffff81111561160f5761160e613106565b5b60405190808252806020026020018201604052801561163d5781602001602082028036833780820191505090505b50905060008061164b61216d565b90505b611656610ee7565b81116116d9578573ffffffffffffffffffffffffffffffffffffffff1661167c826117cf565b73ffffffffffffffffffffffffffffffffffffffff16036116c657808383815181106116ab576116aa613ad1565b5b60200260200101818152505081806116c290613b00565b9250505b80806116d190613b00565b91505061164e565b50819350505050919050565b6116ed61232a565b80600d90816116fc9190613cf4565b5050565b61170861232a565b80601960006101000a81548160ff0219169083600381111561172d5761172c6134b5565b5b021790555050565b600b5481565b600f5481565b600c805461174e9061372d565b80601f016020809104026020016040519081016040528092919081815260200182805461177a9061372d565b80156117c75780601f1061179c576101008083540402835291602001916117c7565b820191906000526020600020905b8154815290600101906020018083116117aa57829003601f168201915b505050505081565b60006117da82612176565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611848576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6118a161232a565b6118ab6000612401565b565b6118b561232a565b80600c90816118c49190613cf4565b5050565b6118d061232a565b80600e8190555050565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60145481565b60606003805461191f9061372d565b80601f016020809104026020016040519081016040528092919081815260200182805461194b9061372d565b80156119985780601f1061196d57610100808354040283529160200191611998565b820191906000526020600020905b81548152906001019060200180831161197b57829003601f168201915b5050505050905090565b60186020528060005260406000206000915090505481565b60175481565b80600760006119cd612165565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a7a612165565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611abf9190612d46565b60405180910390a35050565b611ad361232a565b80600f8190555050565b600d8054611aea9061372d565b80601f0160208091040260200160405190810160405280929190818152602001828054611b169061372d565b8015611b635780601f10611b3857610100808354040283529160200191611b63565b820191906000526020600020905b815481529060010190602001808311611b4657829003601f168201915b505050505081565b611b7361232a565b8060138190555050565b6000601754905090565b611b92848484610efe565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bf457611bbd848484846124c7565b611bf3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60115481565b611c0861232a565b8060178190555050565b601960009054906101000a900460ff1681565b6060611c3082612106565b611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6690613e38565b60405180910390fd5b6000611c79612617565b90506000815111611d1457600d8054611c919061372d565b80601f0160208091040260200160405190810160405280929190818152602001828054611cbd9061372d565b8015611d0a5780601f10611cdf57610100808354040283529160200191611d0a565b820191906000526020600020905b815481529060010190602001808311611ced57829003601f168201915b5050505050611d3f565b80611d1e846126a9565b604051602001611d2f929190613ee0565b6040516020818303038152906040525b915050919050565b611d4f61232a565b8060108190555050565b600a5481565b6000611d6a82612777565b9050919050565b60165481565b60165483601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dc591906137f9565b1115611e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfd90613f5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c90613fc7565b60405180910390fd5b6000611e8133846127ce565b90506000611e8d611b7d565b9050611e9a828483612801565b611ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed090614033565b60405180910390fd5b84601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2891906137f9565b92505081905550611f39338661230c565b5050505050565b60105481565b60156020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ffa61232a565b8060118190555050565b61200c61232a565b600a5482612018610ee7565b61202291906137f9565b1115612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90613879565b60405180910390fd5b61206d818361230c565b5050565b61207961232a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120df906140c5565b60405180910390fd5b6120f181612401565b50565b6120fc61232a565b8060148190555050565b60008161211161216d565b11158015612120575060005482105b801561215e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061218561216d565b1161220b5760005481101561220a5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612208575b600081036121fe5760046000836001900393508381526020019081526020016000205490506121d4565b809250505061223d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86122ca868684612817565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612326828260405180602001604052806000815250612820565b5050565b6123326128bd565b73ffffffffffffffffffffffffffffffffffffffff166123506118e0565b73ffffffffffffffffffffffffffffffffffffffff16146123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239d90614131565b60405180910390fd5b565b6002600954036123ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e49061419d565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ed612165565b8786866040518563ffffffff1660e01b815260040161250f9493929190614212565b6020604051808303816000875af192505050801561254b57506040513d601f19601f820116820180604052508101906125489190614273565b60015b6125c4573d806000811461257b576040519150601f19603f3d011682016040523d82523d6000602084013e612580565b606091505b5060008151036125bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546126269061372d565b80601f01602080910402602001604051908101604052809291908181526020018280546126529061372d565b801561269f5780601f106126745761010080835404028352916020019161269f565b820191906000526020600020905b81548152906001019060200180831161268257829003601f168201915b5050505050905090565b6060600060016126b8846128c5565b01905060008167ffffffffffffffff8111156126d7576126d6613106565b5b6040519080825280601f01601f1916602001820160405280156127095781602001600182028036833780820191505090505b509050600082602001820190505b60011561276c578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816127605761275f6142a0565b5b04945060008503612717575b819350505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600082826040516020016127e3929190614338565b60405160208183030381529060405280519060200120905092915050565b600061280e838386612a18565b90509392505050565b60009392505050565b61282a8383612a2f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146128b857600080549050600083820390505b61286a60008683806001019450866124c7565b6128a0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106128575781600054146128b557600080fd5b50505b505050565b600033905090565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612923577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612919576129186142a0565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612960576d04ee2d6d415b85acef81000000008381612956576129556142a0565b5b0492506020810190505b662386f26fc10000831061298f57662386f26fc100008381612985576129846142a0565b5b0492506010810190505b6305f5e10083106129b8576305f5e10083816129ae576129ad6142a0565b5b0492506008810190505b61271083106129dd5761271083816129d3576129d26142a0565b5b0492506004810190505b60648310612a0057606483816129f6576129f56142a0565b5b0492506002810190505b600a8310612a0f576001810190505b80915050919050565b600082612a258584612bea565b1490509392505050565b60008054905060008203612a6f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a7c60008483856122ad565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612af383612ae460008660006122b3565b612aed85612c40565b176122db565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612b9457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b59565b5060008203612bcf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612be56000848385612306565b505050565b60008082905060005b8451811015612c3557612c2082868381518110612c1357612c12613ad1565b5b6020026020010151612c50565b91508080612c2d90613b00565b915050612bf3565b508091505092915050565b60006001821460e11b9050919050565b6000818310612c6857612c638284612c7b565b612c73565b612c728383612c7b565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cdb81612ca6565b8114612ce657600080fd5b50565b600081359050612cf881612cd2565b92915050565b600060208284031215612d1457612d13612c9c565b5b6000612d2284828501612ce9565b91505092915050565b60008115159050919050565b612d4081612d2b565b82525050565b6000602082019050612d5b6000830184612d37565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d9b578082015181840152602081019050612d80565b60008484015250505050565b6000601f19601f8301169050919050565b6000612dc382612d61565b612dcd8185612d6c565b9350612ddd818560208601612d7d565b612de681612da7565b840191505092915050565b60006020820190508181036000830152612e0b8184612db8565b905092915050565b6000819050919050565b612e2681612e13565b8114612e3157600080fd5b50565b600081359050612e4381612e1d565b92915050565b600060208284031215612e5f57612e5e612c9c565b5b6000612e6d84828501612e34565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ea182612e76565b9050919050565b612eb181612e96565b82525050565b6000602082019050612ecc6000830184612ea8565b92915050565b612edb81612e96565b8114612ee657600080fd5b50565b600081359050612ef881612ed2565b92915050565b60008060408385031215612f1557612f14612c9c565b5b6000612f2385828601612ee9565b9250506020612f3485828601612e34565b9150509250929050565b600060208284031215612f5457612f53612c9c565b5b6000612f6284828501612ee9565b91505092915050565b612f7481612e13565b82525050565b6000602082019050612f8f6000830184612f6b565b92915050565b600080600060608486031215612fae57612fad612c9c565b5b6000612fbc86828701612ee9565b9350506020612fcd86828701612ee9565b9250506040612fde86828701612e34565b9150509250925092565b6000819050919050565b612ffb81612fe8565b82525050565b60006020820190506130166000830184612ff2565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61305181612e13565b82525050565b60006130638383613048565b60208301905092915050565b6000602082019050919050565b60006130878261301c565b6130918185613027565b935061309c83613038565b8060005b838110156130cd5781516130b48882613057565b97506130bf8361306f565b9250506001810190506130a0565b5085935050505092915050565b600060208201905081810360008301526130f4818461307c565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61313e82612da7565b810181811067ffffffffffffffff8211171561315d5761315c613106565b5b80604052505050565b6000613170612c92565b905061317c8282613135565b919050565b600067ffffffffffffffff82111561319c5761319b613106565b5b6131a582612da7565b9050602081019050919050565b82818337600083830152505050565b60006131d46131cf84613181565b613166565b9050828152602081018484840111156131f0576131ef613101565b5b6131fb8482856131b2565b509392505050565b600082601f830112613218576132176130fc565b5b81356132288482602086016131c1565b91505092915050565b60006020828403121561324757613246612c9c565b5b600082013567ffffffffffffffff81111561326557613264612ca1565b5b61327184828501613203565b91505092915050565b6004811061328757600080fd5b50565b6000813590506132998161327a565b92915050565b6000602082840312156132b5576132b4612c9c565b5b60006132c38482850161328a565b91505092915050565b6132d581612d2b565b81146132e057600080fd5b50565b6000813590506132f2816132cc565b92915050565b6000806040838503121561330f5761330e612c9c565b5b600061331d85828601612ee9565b925050602061332e858286016132e3565b9150509250929050565b600067ffffffffffffffff82111561335357613352613106565b5b61335c82612da7565b9050602081019050919050565b600061337c61337784613338565b613166565b90508281526020810184848401111561339857613397613101565b5b6133a38482856131b2565b509392505050565b600082601f8301126133c0576133bf6130fc565b5b81356133d0848260208601613369565b91505092915050565b600080600080608085870312156133f3576133f2612c9c565b5b600061340187828801612ee9565b945050602061341287828801612ee9565b935050604061342387828801612e34565b925050606085013567ffffffffffffffff81111561344457613443612ca1565b5b613450878288016133ab565b91505092959194509250565b61346581612fe8565b811461347057600080fd5b50565b6000813590506134828161345c565b92915050565b60006020828403121561349e5761349d612c9c565b5b60006134ac84828501613473565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600481106134f5576134f46134b5565b5b50565b6000819050613506826134e4565b919050565b6000613516826134f8565b9050919050565b6135268161350b565b82525050565b6000602082019050613541600083018461351d565b92915050565b600067ffffffffffffffff82111561356257613561613106565b5b602082029050602081019050919050565b600080fd5b600061358b61358684613547565b613166565b905080838252602082019050602084028301858111156135ae576135ad613573565b5b835b818110156135d757806135c38882613473565b8452602084019350506020810190506135b0565b5050509392505050565b600082601f8301126135f6576135f56130fc565b5b8135613606848260208601613578565b91505092915050565b60008060006060848603121561362857613627612c9c565b5b600061363686828701612e34565b935050602061364786828701612e34565b925050604084013567ffffffffffffffff81111561366857613667612ca1565b5b613674868287016135e1565b9150509250925092565b6000806040838503121561369557613694612c9c565b5b60006136a385828601612ee9565b92505060206136b485828601612ee9565b9150509250929050565b600080604083850312156136d5576136d4612c9c565b5b60006136e385828601612e34565b92505060206136f485828601612ee9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061374557607f821691505b602082108103613758576137576136fe565b5b50919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613794601383612d6c565b915061379f8261375e565b602082019050919050565b600060208201905081810360008301526137c381613787565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061380482612e13565b915061380f83612e13565b9250828201905080821115613827576138266137ca565b5b92915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000613863601383612d6c565b915061386e8261382d565b602082019050919050565b6000602082019050818103600083015261389281613856565b9050919050565b7f43616e2774206d696e742074686174206d616e79000000000000000000000000600082015250565b60006138cf601483612d6c565b91506138da82613899565b602082019050919050565b600060208201905081810360008301526138fe816138c2565b9050919050565b7f5075626c6963206d696e742069732064697361626c6564000000000000000000600082015250565b600061393b601783612d6c565b915061394682613905565b602082019050919050565b6000602082019050818103600083015261396a8161392e565b9050919050565b600061397c82612e13565b915061398783612e13565b925082820261399581612e13565b915082820484148315176139ac576139ab6137ca565b5b5092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006139e9601283612d6c565b91506139f4826139b3565b602082019050919050565b60006020820190508181036000830152613a18816139dc565b9050919050565b600081905092915050565b50565b6000613a3a600083613a1f565b9150613a4582613a2a565b600082019050919050565b6000613a5b82613a2d565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000613a9b600f83612d6c565b9150613aa682613a65565b602082019050919050565b60006020820190508181036000830152613aca81613a8e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613b0b82612e13565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613b3d57613b3c6137ca565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613baa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613b6d565b613bb48683613b6d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613bf1613bec613be784612e13565b613bcc565b612e13565b9050919050565b6000819050919050565b613c0b83613bd6565b613c1f613c1782613bf8565b848454613b7a565b825550505050565b600090565b613c34613c27565b613c3f818484613c02565b505050565b5b81811015613c6357613c58600082613c2c565b600181019050613c45565b5050565b601f821115613ca857613c7981613b48565b613c8284613b5d565b81016020851015613c91578190505b613ca5613c9d85613b5d565b830182613c44565b50505b505050565b600082821c905092915050565b6000613ccb60001984600802613cad565b1980831691505092915050565b6000613ce48383613cba565b9150826002028217905092915050565b613cfd82612d61565b67ffffffffffffffff811115613d1657613d15613106565b5b613d20825461372d565b613d2b828285613c67565b600060209050601f831160018114613d5e5760008415613d4c578287015190505b613d568582613cd8565b865550613dbe565b601f198416613d6c86613b48565b60005b82811015613d9457848901518255600182019150602085019450602081019050613d6f565b86831015613db15784890151613dad601f891682613cba565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613e22602f83612d6c565b9150613e2d82613dc6565b604082019050919050565b60006020820190508181036000830152613e5181613e15565b9050919050565b600081905092915050565b6000613e6e82612d61565b613e788185613e58565b9350613e88818560208601612d7d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613eca600583613e58565b9150613ed582613e94565b600582019050919050565b6000613eec8285613e63565b9150613ef88284613e63565b9150613f0382613ebd565b91508190509392505050565b7f63616e2774206d696e742074686174206d616e79000000000000000000000000600082015250565b6000613f45601483612d6c565b9150613f5082613f0f565b602082019050919050565b60006020820190508181036000830152613f7481613f38565b9050919050565b7f61646472657373206572726f7200000000000000000000000000000000000000600082015250565b6000613fb1600d83612d6c565b9150613fbc82613f7b565b602082019050919050565b60006020820190508181036000830152613fe081613fa4565b9050919050565b7f566572696669636174696f6e206661696c656400000000000000000000000000600082015250565b600061401d601383612d6c565b915061402882613fe7565b602082019050919050565b6000602082019050818103600083015261404c81614010565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140af602683612d6c565b91506140ba82614053565b604082019050919050565b600060208201905081810360008301526140de816140a2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061411b602083612d6c565b9150614126826140e5565b602082019050919050565b6000602082019050818103600083015261414a8161410e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614187601f83612d6c565b915061419282614151565b602082019050919050565b600060208201905081810360008301526141b68161417a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006141e4826141bd565b6141ee81856141c8565b93506141fe818560208601612d7d565b61420781612da7565b840191505092915050565b60006080820190506142276000830187612ea8565b6142346020830186612ea8565b6142416040830185612f6b565b818103606083015261425381846141d9565b905095945050505050565b60008151905061426d81612cd2565b92915050565b60006020828403121561428957614288612c9c565b5b60006142978482850161425e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008160601b9050919050565b60006142e7826142cf565b9050919050565b60006142f9826142dc565b9050919050565b61431161430c82612e96565b6142ee565b82525050565b6000819050919050565b61433261432d82612e13565b614317565b82525050565b60006143448285614300565b6014820191506143548284614321565b602082019150819050939250505056fea2646970667358221220951a5ac991ead46eead9bf3f8114c5e0e02712aaa2ab3aa4cdffb81574abd00b64736f6c63430008120033697066733a2f2f516d545164505a367039766337666972544e34346b583970736e647a35455a506f757057566a54337350437457777583a8dc5bef1111a0666fd29bdc112281fefe8d81119b5d7d12f3d4304795e9000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d62427264436e4e544e3377594e55446d45396874596f3151556d7a7553537a723847565a6d416864715a58632f00000000000000000000
Deployed Bytecode
0x6080604052600436106102ff5760003560e01c8063921a2a0311610190578063c87b56dd116100dc578063e7b99ec711610095578063ef3e067c1161006f578063ef3e067c14610b44578063efbd73f414610b6d578063f2fde38b14610b96578063f95df41414610bbf576102ff565b8063e7b99ec714610a9f578063e81ed04414610aca578063e985e9c514610b07576102ff565b8063c87b56dd1461098a578063d49479eb146109c7578063d5abeb01146109f0578063dc33e68114610a1b578063ddd1783a14610a58578063e678021514610a83576102ff565b8063a45ba8e711610149578063b88d4fde11610123578063b88d4fde146108ef578063bb485b881461090b578063bd32fb6614610936578063c19d93fb1461095f576102ff565b8063a45ba8e714610870578063a8658c971461089b578063aa98e0c6146108c4576102ff565b8063921a2a031461076057806395d89b411461078b57806398a8cffe146107b6578063a0b30390146107f3578063a22cb4651461081e578063a254c26414610847576102ff565b8063438b63001161024f5780636352211e116102085780637ec4a659116101e25780637ec4a659146106b8578063811d2437146106e15780638693da201461070a5780638da5cb5b14610735576102ff565b80636352211e1461062757806370a0823114610664578063715018a6146106a1576102ff565b8063438b6300146105175780634fdd43cb1461055457806356de96db1461057d5780635e84d723146105a6578063612abd44146105d157806362b99ad4146105fc576102ff565b806323b872dd116102bc57806335871c0e1161029657806335871c0e14610490578063381b965c146104bb5780633ccfd60b146104e457806342842e0e146104fb576102ff565b806323b872dd1461042d578063293108e0146104495780632db1154414610474576102ff565b806301ffc9a71461030457806306fdde0314610341578063081812fc1461036c578063095ea7b3146103a95780631015805b146103c557806318160ddd14610402575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190612cfe565b610be8565b6040516103389190612d46565b60405180910390f35b34801561034d57600080fd5b50610356610c7a565b6040516103639190612df1565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e9190612e49565b610d0c565b6040516103a09190612eb7565b60405180910390f35b6103c360048036038101906103be9190612efe565b610d8b565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612f3e565b610ecf565b6040516103f99190612f7a565b60405180910390f35b34801561040e57600080fd5b50610417610ee7565b6040516104249190612f7a565b60405180910390f35b61044760048036038101906104429190612f95565b610efe565b005b34801561045557600080fd5b5061045e611220565b60405161046b9190613001565b60405180910390f35b61048e60048036038101906104899190612e49565b61122a565b005b34801561049c57600080fd5b506104a56114e5565b6040516104b29190612f7a565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd9190612e49565b6114eb565b005b3480156104f057600080fd5b506104f96114fd565b005b61051560048036038101906105109190612f95565b6115c4565b005b34801561052357600080fd5b5061053e60048036038101906105399190612f3e565b6115e4565b60405161054b91906130da565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190613231565b6116e5565b005b34801561058957600080fd5b506105a4600480360381019061059f919061329f565b611700565b005b3480156105b257600080fd5b506105bb611735565b6040516105c89190612f7a565b60405180910390f35b3480156105dd57600080fd5b506105e661173b565b6040516105f39190612f7a565b60405180910390f35b34801561060857600080fd5b50610611611741565b60405161061e9190612df1565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190612e49565b6117cf565b60405161065b9190612eb7565b60405180910390f35b34801561067057600080fd5b5061068b60048036038101906106869190612f3e565b6117e1565b6040516106989190612f7a565b60405180910390f35b3480156106ad57600080fd5b506106b6611899565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613231565b6118ad565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612e49565b6118c8565b005b34801561071657600080fd5b5061071f6118da565b60405161072c9190612f7a565b60405180910390f35b34801561074157600080fd5b5061074a6118e0565b6040516107579190612eb7565b60405180910390f35b34801561076c57600080fd5b5061077561190a565b6040516107829190613001565b60405180910390f35b34801561079757600080fd5b506107a0611910565b6040516107ad9190612df1565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190612f3e565b6119a2565b6040516107ea9190612f7a565b60405180910390f35b3480156107ff57600080fd5b506108086119ba565b6040516108159190613001565b60405180910390f35b34801561082a57600080fd5b50610845600480360381019061084091906132f8565b6119c0565b005b34801561085357600080fd5b5061086e60048036038101906108699190612e49565b611acb565b005b34801561087c57600080fd5b50610885611add565b6040516108929190612df1565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190612e49565b611b6b565b005b3480156108d057600080fd5b506108d9611b7d565b6040516108e69190613001565b60405180910390f35b610909600480360381019061090491906133d9565b611b87565b005b34801561091757600080fd5b50610920611bfa565b60405161092d9190612f7a565b60405180910390f35b34801561094257600080fd5b5061095d60048036038101906109589190613488565b611c00565b005b34801561096b57600080fd5b50610974611c12565b604051610981919061352c565b60405180910390f35b34801561099657600080fd5b506109b160048036038101906109ac9190612e49565b611c25565b6040516109be9190612df1565b60405180910390f35b3480156109d357600080fd5b506109ee60048036038101906109e99190612e49565b611d47565b005b3480156109fc57600080fd5b50610a05611d59565b604051610a129190612f7a565b60405180910390f35b348015610a2757600080fd5b50610a426004803603810190610a3d9190612f3e565b611d5f565b604051610a4f9190612f7a565b60405180910390f35b348015610a6457600080fd5b50610a6d611d71565b604051610a7a9190612f7a565b60405180910390f35b610a9d6004803603810190610a98919061360f565b611d77565b005b348015610aab57600080fd5b50610ab4611f40565b604051610ac19190612f7a565b60405180910390f35b348015610ad657600080fd5b50610af16004803603810190610aec9190612f3e565b611f46565b604051610afe9190612f7a565b60405180910390f35b348015610b1357600080fd5b50610b2e6004803603810190610b29919061367e565b611f5e565b604051610b3b9190612d46565b60405180910390f35b348015610b5057600080fd5b50610b6b6004803603810190610b669190612e49565b611ff2565b005b348015610b7957600080fd5b50610b946004803603810190610b8f91906136be565b612004565b005b348015610ba257600080fd5b50610bbd6004803603810190610bb89190612f3e565b612071565b005b348015610bcb57600080fd5b50610be66004803603810190610be19190613488565b6120f4565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c4357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c735750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610c899061372d565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb59061372d565b8015610d025780601f10610cd757610100808354040283529160200191610d02565b820191906000526020600020905b815481529060010190602001808311610ce557829003601f168201915b5050505050905090565b6000610d1782612106565b610d4d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d96826117cf565b90508073ffffffffffffffffffffffffffffffffffffffff16610db7612165565b73ffffffffffffffffffffffffffffffffffffffff1614610e1a57610de381610dde612165565b611f5e565b610e19576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60126020528060005260406000206000915090505481565b6000610ef161216d565b6001546000540303905090565b6000610f0982612176565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f70576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f7c84612242565b91509150610f928187610f8d612165565b612269565b610fde57610fa786610fa2612165565b611f5e565b610fdd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611044576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61105186868660016122ad565b801561105c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061112a856111068888876122b3565b7c0200000000000000000000000000000000000000000000000000000000176122db565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111b057600060018501905060006004600083815260200190815260200160002054036111ae5760005481146111ad578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112188686866001612306565b505050505050565b6000601454905090565b8060115460008211801561123e5750808211155b61127d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611274906137aa565b60405180910390fd5b600a5482611289610ee7565b61129391906137f9565b11156112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb90613879565b60405180910390fd5b60115483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461132291906137f9565b1115611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a906138e5565b60405180910390fd5b60016003811115611377576113766134b5565b5b601960009054906101000a900460ff166003811115611399576113986134b5565b5b146113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d090613951565b60405180910390fd5b600b54836113e5610ee7565b6113ef91906137f9565b1115611430576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611427906138e5565b60405180910390fd5b82600e5461143e9190613971565b341015611480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611477906139ff565b60405180910390fd5b82601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114cf91906137f9565b925050819055506114e0338461230c565b505050565b60135481565b6114f361232a565b8060168190555050565b61150561232a565b61150d6123a8565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161153390613a50565b60006040518083038185875af1925050503d8060008114611570576040519150601f19603f3d011682016040523d82523d6000602084013e611575565b606091505b50509050806115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090613ab1565b60405180910390fd5b506115c26123f7565b565b6115df83838360405180602001604052806000815250611b87565b505050565b606060006115f1836117e1565b905060008167ffffffffffffffff81111561160f5761160e613106565b5b60405190808252806020026020018201604052801561163d5781602001602082028036833780820191505090505b50905060008061164b61216d565b90505b611656610ee7565b81116116d9578573ffffffffffffffffffffffffffffffffffffffff1661167c826117cf565b73ffffffffffffffffffffffffffffffffffffffff16036116c657808383815181106116ab576116aa613ad1565b5b60200260200101818152505081806116c290613b00565b9250505b80806116d190613b00565b91505061164e565b50819350505050919050565b6116ed61232a565b80600d90816116fc9190613cf4565b5050565b61170861232a565b80601960006101000a81548160ff0219169083600381111561172d5761172c6134b5565b5b021790555050565b600b5481565b600f5481565b600c805461174e9061372d565b80601f016020809104026020016040519081016040528092919081815260200182805461177a9061372d565b80156117c75780601f1061179c576101008083540402835291602001916117c7565b820191906000526020600020905b8154815290600101906020018083116117aa57829003601f168201915b505050505081565b60006117da82612176565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611848576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6118a161232a565b6118ab6000612401565b565b6118b561232a565b80600c90816118c49190613cf4565b5050565b6118d061232a565b80600e8190555050565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60145481565b60606003805461191f9061372d565b80601f016020809104026020016040519081016040528092919081815260200182805461194b9061372d565b80156119985780601f1061196d57610100808354040283529160200191611998565b820191906000526020600020905b81548152906001019060200180831161197b57829003601f168201915b5050505050905090565b60186020528060005260406000206000915090505481565b60175481565b80600760006119cd612165565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a7a612165565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611abf9190612d46565b60405180910390a35050565b611ad361232a565b80600f8190555050565b600d8054611aea9061372d565b80601f0160208091040260200160405190810160405280929190818152602001828054611b169061372d565b8015611b635780601f10611b3857610100808354040283529160200191611b63565b820191906000526020600020905b815481529060010190602001808311611b4657829003601f168201915b505050505081565b611b7361232a565b8060138190555050565b6000601754905090565b611b92848484610efe565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bf457611bbd848484846124c7565b611bf3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60115481565b611c0861232a565b8060178190555050565b601960009054906101000a900460ff1681565b6060611c3082612106565b611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6690613e38565b60405180910390fd5b6000611c79612617565b90506000815111611d1457600d8054611c919061372d565b80601f0160208091040260200160405190810160405280929190818152602001828054611cbd9061372d565b8015611d0a5780601f10611cdf57610100808354040283529160200191611d0a565b820191906000526020600020905b815481529060010190602001808311611ced57829003601f168201915b5050505050611d3f565b80611d1e846126a9565b604051602001611d2f929190613ee0565b6040516020818303038152906040525b915050919050565b611d4f61232a565b8060108190555050565b600a5481565b6000611d6a82612777565b9050919050565b60165481565b60165483601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dc591906137f9565b1115611e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfd90613f5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c90613fc7565b60405180910390fd5b6000611e8133846127ce565b90506000611e8d611b7d565b9050611e9a828483612801565b611ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed090614033565b60405180910390fd5b84601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2891906137f9565b92505081905550611f39338661230c565b5050505050565b60105481565b60156020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ffa61232a565b8060118190555050565b61200c61232a565b600a5482612018610ee7565b61202291906137f9565b1115612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90613879565b60405180910390fd5b61206d818361230c565b5050565b61207961232a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120df906140c5565b60405180910390fd5b6120f181612401565b50565b6120fc61232a565b8060148190555050565b60008161211161216d565b11158015612120575060005482105b801561215e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061218561216d565b1161220b5760005481101561220a5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612208575b600081036121fe5760046000836001900393508381526020019081526020016000205490506121d4565b809250505061223d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86122ca868684612817565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612326828260405180602001604052806000815250612820565b5050565b6123326128bd565b73ffffffffffffffffffffffffffffffffffffffff166123506118e0565b73ffffffffffffffffffffffffffffffffffffffff16146123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239d90614131565b60405180910390fd5b565b6002600954036123ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e49061419d565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124ed612165565b8786866040518563ffffffff1660e01b815260040161250f9493929190614212565b6020604051808303816000875af192505050801561254b57506040513d601f19601f820116820180604052508101906125489190614273565b60015b6125c4573d806000811461257b576040519150601f19603f3d011682016040523d82523d6000602084013e612580565b606091505b5060008151036125bc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546126269061372d565b80601f01602080910402602001604051908101604052809291908181526020018280546126529061372d565b801561269f5780601f106126745761010080835404028352916020019161269f565b820191906000526020600020905b81548152906001019060200180831161268257829003601f168201915b5050505050905090565b6060600060016126b8846128c5565b01905060008167ffffffffffffffff8111156126d7576126d6613106565b5b6040519080825280601f01601f1916602001820160405280156127095781602001600182028036833780820191505090505b509050600082602001820190505b60011561276c578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816127605761275f6142a0565b5b04945060008503612717575b819350505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600082826040516020016127e3929190614338565b60405160208183030381529060405280519060200120905092915050565b600061280e838386612a18565b90509392505050565b60009392505050565b61282a8383612a2f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146128b857600080549050600083820390505b61286a60008683806001019450866124c7565b6128a0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106128575781600054146128b557600080fd5b50505b505050565b600033905090565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612923577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612919576129186142a0565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612960576d04ee2d6d415b85acef81000000008381612956576129556142a0565b5b0492506020810190505b662386f26fc10000831061298f57662386f26fc100008381612985576129846142a0565b5b0492506010810190505b6305f5e10083106129b8576305f5e10083816129ae576129ad6142a0565b5b0492506008810190505b61271083106129dd5761271083816129d3576129d26142a0565b5b0492506004810190505b60648310612a0057606483816129f6576129f56142a0565b5b0492506002810190505b600a8310612a0f576001810190505b80915050919050565b600082612a258584612bea565b1490509392505050565b60008054905060008203612a6f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a7c60008483856122ad565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612af383612ae460008660006122b3565b612aed85612c40565b176122db565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612b9457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612b59565b5060008203612bcf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612be56000848385612306565b505050565b60008082905060005b8451811015612c3557612c2082868381518110612c1357612c12613ad1565b5b6020026020010151612c50565b91508080612c2d90613b00565b915050612bf3565b508091505092915050565b60006001821460e11b9050919050565b6000818310612c6857612c638284612c7b565b612c73565b612c728383612c7b565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612cdb81612ca6565b8114612ce657600080fd5b50565b600081359050612cf881612cd2565b92915050565b600060208284031215612d1457612d13612c9c565b5b6000612d2284828501612ce9565b91505092915050565b60008115159050919050565b612d4081612d2b565b82525050565b6000602082019050612d5b6000830184612d37565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d9b578082015181840152602081019050612d80565b60008484015250505050565b6000601f19601f8301169050919050565b6000612dc382612d61565b612dcd8185612d6c565b9350612ddd818560208601612d7d565b612de681612da7565b840191505092915050565b60006020820190508181036000830152612e0b8184612db8565b905092915050565b6000819050919050565b612e2681612e13565b8114612e3157600080fd5b50565b600081359050612e4381612e1d565b92915050565b600060208284031215612e5f57612e5e612c9c565b5b6000612e6d84828501612e34565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ea182612e76565b9050919050565b612eb181612e96565b82525050565b6000602082019050612ecc6000830184612ea8565b92915050565b612edb81612e96565b8114612ee657600080fd5b50565b600081359050612ef881612ed2565b92915050565b60008060408385031215612f1557612f14612c9c565b5b6000612f2385828601612ee9565b9250506020612f3485828601612e34565b9150509250929050565b600060208284031215612f5457612f53612c9c565b5b6000612f6284828501612ee9565b91505092915050565b612f7481612e13565b82525050565b6000602082019050612f8f6000830184612f6b565b92915050565b600080600060608486031215612fae57612fad612c9c565b5b6000612fbc86828701612ee9565b9350506020612fcd86828701612ee9565b9250506040612fde86828701612e34565b9150509250925092565b6000819050919050565b612ffb81612fe8565b82525050565b60006020820190506130166000830184612ff2565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61305181612e13565b82525050565b60006130638383613048565b60208301905092915050565b6000602082019050919050565b60006130878261301c565b6130918185613027565b935061309c83613038565b8060005b838110156130cd5781516130b48882613057565b97506130bf8361306f565b9250506001810190506130a0565b5085935050505092915050565b600060208201905081810360008301526130f4818461307c565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61313e82612da7565b810181811067ffffffffffffffff8211171561315d5761315c613106565b5b80604052505050565b6000613170612c92565b905061317c8282613135565b919050565b600067ffffffffffffffff82111561319c5761319b613106565b5b6131a582612da7565b9050602081019050919050565b82818337600083830152505050565b60006131d46131cf84613181565b613166565b9050828152602081018484840111156131f0576131ef613101565b5b6131fb8482856131b2565b509392505050565b600082601f830112613218576132176130fc565b5b81356132288482602086016131c1565b91505092915050565b60006020828403121561324757613246612c9c565b5b600082013567ffffffffffffffff81111561326557613264612ca1565b5b61327184828501613203565b91505092915050565b6004811061328757600080fd5b50565b6000813590506132998161327a565b92915050565b6000602082840312156132b5576132b4612c9c565b5b60006132c38482850161328a565b91505092915050565b6132d581612d2b565b81146132e057600080fd5b50565b6000813590506132f2816132cc565b92915050565b6000806040838503121561330f5761330e612c9c565b5b600061331d85828601612ee9565b925050602061332e858286016132e3565b9150509250929050565b600067ffffffffffffffff82111561335357613352613106565b5b61335c82612da7565b9050602081019050919050565b600061337c61337784613338565b613166565b90508281526020810184848401111561339857613397613101565b5b6133a38482856131b2565b509392505050565b600082601f8301126133c0576133bf6130fc565b5b81356133d0848260208601613369565b91505092915050565b600080600080608085870312156133f3576133f2612c9c565b5b600061340187828801612ee9565b945050602061341287828801612ee9565b935050604061342387828801612e34565b925050606085013567ffffffffffffffff81111561344457613443612ca1565b5b613450878288016133ab565b91505092959194509250565b61346581612fe8565b811461347057600080fd5b50565b6000813590506134828161345c565b92915050565b60006020828403121561349e5761349d612c9c565b5b60006134ac84828501613473565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600481106134f5576134f46134b5565b5b50565b6000819050613506826134e4565b919050565b6000613516826134f8565b9050919050565b6135268161350b565b82525050565b6000602082019050613541600083018461351d565b92915050565b600067ffffffffffffffff82111561356257613561613106565b5b602082029050602081019050919050565b600080fd5b600061358b61358684613547565b613166565b905080838252602082019050602084028301858111156135ae576135ad613573565b5b835b818110156135d757806135c38882613473565b8452602084019350506020810190506135b0565b5050509392505050565b600082601f8301126135f6576135f56130fc565b5b8135613606848260208601613578565b91505092915050565b60008060006060848603121561362857613627612c9c565b5b600061363686828701612e34565b935050602061364786828701612e34565b925050604084013567ffffffffffffffff81111561366857613667612ca1565b5b613674868287016135e1565b9150509250925092565b6000806040838503121561369557613694612c9c565b5b60006136a385828601612ee9565b92505060206136b485828601612ee9565b9150509250929050565b600080604083850312156136d5576136d4612c9c565b5b60006136e385828601612e34565b92505060206136f485828601612ee9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061374557607f821691505b602082108103613758576137576136fe565b5b50919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613794601383612d6c565b915061379f8261375e565b602082019050919050565b600060208201905081810360008301526137c381613787565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061380482612e13565b915061380f83612e13565b9250828201905080821115613827576138266137ca565b5b92915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000613863601383612d6c565b915061386e8261382d565b602082019050919050565b6000602082019050818103600083015261389281613856565b9050919050565b7f43616e2774206d696e742074686174206d616e79000000000000000000000000600082015250565b60006138cf601483612d6c565b91506138da82613899565b602082019050919050565b600060208201905081810360008301526138fe816138c2565b9050919050565b7f5075626c6963206d696e742069732064697361626c6564000000000000000000600082015250565b600061393b601783612d6c565b915061394682613905565b602082019050919050565b6000602082019050818103600083015261396a8161392e565b9050919050565b600061397c82612e13565b915061398783612e13565b925082820261399581612e13565b915082820484148315176139ac576139ab6137ca565b5b5092915050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006139e9601283612d6c565b91506139f4826139b3565b602082019050919050565b60006020820190508181036000830152613a18816139dc565b9050919050565b600081905092915050565b50565b6000613a3a600083613a1f565b9150613a4582613a2a565b600082019050919050565b6000613a5b82613a2d565b9150819050919050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000613a9b600f83612d6c565b9150613aa682613a65565b602082019050919050565b60006020820190508181036000830152613aca81613a8e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613b0b82612e13565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613b3d57613b3c6137ca565b5b600182019050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613baa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613b6d565b613bb48683613b6d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613bf1613bec613be784612e13565b613bcc565b612e13565b9050919050565b6000819050919050565b613c0b83613bd6565b613c1f613c1782613bf8565b848454613b7a565b825550505050565b600090565b613c34613c27565b613c3f818484613c02565b505050565b5b81811015613c6357613c58600082613c2c565b600181019050613c45565b5050565b601f821115613ca857613c7981613b48565b613c8284613b5d565b81016020851015613c91578190505b613ca5613c9d85613b5d565b830182613c44565b50505b505050565b600082821c905092915050565b6000613ccb60001984600802613cad565b1980831691505092915050565b6000613ce48383613cba565b9150826002028217905092915050565b613cfd82612d61565b67ffffffffffffffff811115613d1657613d15613106565b5b613d20825461372d565b613d2b828285613c67565b600060209050601f831160018114613d5e5760008415613d4c578287015190505b613d568582613cd8565b865550613dbe565b601f198416613d6c86613b48565b60005b82811015613d9457848901518255600182019150602085019450602081019050613d6f565b86831015613db15784890151613dad601f891682613cba565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613e22602f83612d6c565b9150613e2d82613dc6565b604082019050919050565b60006020820190508181036000830152613e5181613e15565b9050919050565b600081905092915050565b6000613e6e82612d61565b613e788185613e58565b9350613e88818560208601612d7d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613eca600583613e58565b9150613ed582613e94565b600582019050919050565b6000613eec8285613e63565b9150613ef88284613e63565b9150613f0382613ebd565b91508190509392505050565b7f63616e2774206d696e742074686174206d616e79000000000000000000000000600082015250565b6000613f45601483612d6c565b9150613f5082613f0f565b602082019050919050565b60006020820190508181036000830152613f7481613f38565b9050919050565b7f61646472657373206572726f7200000000000000000000000000000000000000600082015250565b6000613fb1600d83612d6c565b9150613fbc82613f7b565b602082019050919050565b60006020820190508181036000830152613fe081613fa4565b9050919050565b7f566572696669636174696f6e206661696c656400000000000000000000000000600082015250565b600061401d601383612d6c565b915061402882613fe7565b602082019050919050565b6000602082019050818103600083015261404c81614010565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140af602683612d6c565b91506140ba82614053565b604082019050919050565b600060208201905081810360008301526140de816140a2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061411b602083612d6c565b9150614126826140e5565b602082019050919050565b6000602082019050818103600083015261414a8161410e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614187601f83612d6c565b915061419282614151565b602082019050919050565b600060208201905081810360008301526141b68161417a565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006141e4826141bd565b6141ee81856141c8565b93506141fe818560208601612d7d565b61420781612da7565b840191505092915050565b60006080820190506142276000830187612ea8565b6142346020830186612ea8565b6142416040830185612f6b565b818103606083015261425381846141d9565b905095945050505050565b60008151905061426d81612cd2565b92915050565b60006020828403121561428957614288612c9c565b5b60006142978482850161425e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008160601b9050919050565b60006142e7826142cf565b9050919050565b60006142f9826142dc565b9050919050565b61431161430c82612e96565b6142ee565b82525050565b6000819050919050565b61433261432d82612e13565b614317565b82525050565b60006143448285614300565b6014820191506143548284614321565b602082019150819050939250505056fea2646970667358221220951a5ac991ead46eead9bf3f8114c5e0e02712aaa2ab3aa4cdffb81574abd00b64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
7583a8dc5bef1111a0666fd29bdc112281fefe8d81119b5d7d12f3d4304795e9000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d62427264436e4e544e3377594e55446d45396874596f3151556d7a7553537a723847565a6d416864715a58632f00000000000000000000
-----Decoded View---------------
Arg [0] : wlRoot (bytes32): 0x7583a8dc5bef1111a0666fd29bdc112281fefe8d81119b5d7d12f3d4304795e9
Arg [1] : mintState (uint8): 1
Arg [2] : _uri (string): ipfs://QmbBrdCnNTN3wYNUDmE9htYo1QUmzuSSzr8GVZmAhdqZXc/
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 7583a8dc5bef1111a0666fd29bdc112281fefe8d81119b5d7d12f3d4304795e9
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d62427264436e4e544e3377594e55446d45396874596f31
Arg [5] : 51556d7a7553537a723847565a6d416864715a58632f00000000000000000000
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.