ERC-721
Overview
Max Total Supply
5,000 OutSad NFT
Holders
2,826
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 OutSad NFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OutSad
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./ERC721A/contracts/extensions/ERC721AQueryable.sol"; contract OutSad is ERC721AQueryable, Ownable, ReentrancyGuard { enum Status {Pending, PreSale, PublicSale, Finished, PAUSE} Status private status; uint256 private priceWhite = 0.1 ether; uint256 private maxMintWhite = 2; uint256 private maxMintSuperWhite = 10; uint256 private pricePublic = 0.15 ether; uint256 private maxMintPublic = 2; string private _uri; bytes32 private merkleRoot; bytes32 private superMerkleRoot; uint256 private maxTotalSupply = 5000; uint256 private stageTotalSupply = 1500; event PaymentReleased(address to, uint256 amount); constructor(string memory _tokenName, string memory _tokenSymbol) ERC721A(_tokenName, _tokenSymbol) {} function _baseURI() internal view override(ERC721A) returns (string memory) { return _uri; } function setURI(string memory _newUri) public virtual onlyOwner { _uri = _newUri; } function mint(uint256 amount) external payable { require(status == Status.PublicSale, "SUM006"); require(maxMintPublic >= amount, "SUM001"); require(_numberMinted(msg.sender) + amount <= maxMintPublic, "SUM008"); _verifiedPublicFee(amount); _verifiedSupply(amount); _safeMint(msg.sender, amount); } function preSaleMint(uint256 amount, bytes32[] calldata _merkleProof) external payable { require(status == Status.PreSale, "SUM006"); require(verifyMerkle(_merkleProof), 'Invalid proof!'); require(maxMintWhite >= amount, "SUM001"); require(_numberMinted(msg.sender) + amount <= maxMintWhite, "SUM008"); _verifiedWhiteFee(amount); _verifiedSupply(amount); _safeMint(msg.sender, amount); } function superPreSaleMint(uint256 amount, bytes32[] calldata _merkleProof) external payable { require(status == Status.PreSale, "SUM006"); require(verifySuperMerkle(_merkleProof), 'Invalid proof!'); require(maxMintSuperWhite >= amount, "SUM001"); require(_numberMinted(msg.sender) + amount <= maxMintSuperWhite, "SUM008"); _verifiedWhiteFee(amount); _verifiedSupply(amount); _safeMint(msg.sender, amount); } function _verifiedWhiteFee(uint256 num) private { require(num > 0, 'SUM011'); require(msg.value >= priceWhite * num, 'SUM002'); if (msg.value > priceWhite * num) { payable(msg.sender).transfer(msg.value - priceWhite * num); } } function _verifiedPublicFee(uint256 num) private { require(num > 0, 'SUM011'); require(msg.value >= pricePublic * num, 'SUM002'); if (msg.value > pricePublic * num) { payable(msg.sender).transfer(msg.value - pricePublic * num); } } function _verifiedSupply(uint256 num) private view { require(totalSupply() + num <= maxTotalSupply, "SUM003"); require(totalSupply() + num <= stageTotalSupply, "SUM012"); // require(tx.origin == msg.sender, "SUM007"); } function withdraw() public virtual nonReentrant onlyOwner { require(address(this).balance > 0, "SUM005"); Address.sendValue(payable(owner()), address(this).balance); emit PaymentReleased(owner(), address(this).balance); } function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function setSuperMerkleRoot(bytes32 _superMerkleRoot) public onlyOwner { superMerkleRoot = _superMerkleRoot; } function verifyMerkle(bytes32[] calldata _merkleProof) public view returns (bool){ bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); return MerkleProof.verify(_merkleProof, merkleRoot, leaf); } function verifySuperMerkle(bytes32[] calldata _superMerkleProof) public view returns (bool){ bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); return MerkleProof.verify(_superMerkleProof, superMerkleRoot, leaf); } function setStatus(Status _status, uint256 _amount, uint256 _price, uint256 _stageTotalSupply, uint256 _maxMintSuperWhite) public onlyOwner { status = _status; if (status == Status.PreSale) { priceWhite = _price; maxMintWhite = _amount; stageTotalSupply = _stageTotalSupply; maxMintSuperWhite = _maxMintSuperWhite; } else if (status == Status.PublicSale) { pricePublic = _price; maxMintPublic = _amount; stageTotalSupply = _stageTotalSupply; } } function getStatus() public view returns (Status _status, uint256 _price, uint256 _amount, uint256 _stageTotalSupply, uint256 _maxTotalSupply, uint256 _maxMintSuperWhite) { if (status == Status.PreSale) { return (status, priceWhite, maxMintWhite, stageTotalSupply, maxTotalSupply, maxMintSuperWhite); } else { return (status, pricePublic, maxMintPublic, stageTotalSupply, maxTotalSupply, maxMintSuperWhite); } } address private partnerProxyAddress; uint256 private partnerLimit; uint256 private partnerPrice; function setPartner(address partner, uint256 limit, uint256 price) external onlyOwner { partnerProxyAddress = partner; partnerLimit = limit; partnerPrice = price; } function partnerSale(address receiver, uint256 amount) external payable { require(msg.sender == partnerProxyAddress, 'not partner'); require(_numberMinted(msg.sender) + amount <= partnerLimit, 'reach limit'); require(msg.value >= partnerPrice * amount, 'SUM002'); _verifiedSupply(amount); _safeMint(receiver, amount); } function devMint() external onlyOwner { _verifiedSupply(1); _safeMint(msg.sender, 1); } function teamMint(address toAddress, uint256 amount) external onlyOwner { _safeMint(toAddress, amount); } function minted() external view returns (uint256) { return _numberMinted(msg.sender); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; import '../IERC721A.sol'; /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721AQueryable.sol'; import '../ERC721A.sol'; /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.2 // 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(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * 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; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @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; /** * @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; /** * @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 // ERC721A Contracts v4.2.2 // 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 { // Reference type for token approval. 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 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 { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _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]`. 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 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 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 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. 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`. ) 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 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // 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 v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ 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 Returns the rebuilt hash obtained by traversing a Merklee 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++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"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":"getStatus","outputs":[{"internalType":"enum OutSad.Status","name":"_status","type":"uint8"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_stageTotalSupply","type":"uint256"},{"internalType":"uint256","name":"_maxTotalSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintSuperWhite","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"partnerSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","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":"nonpayable","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":"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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"partner","type":"address"},{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPartner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum OutSad.Status","name":"_status","type":"uint8"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_stageTotalSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintSuperWhite","type":"uint256"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_superMerkleRoot","type":"bytes32"}],"name":"setSuperMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"superPreSaleMint","outputs":[],"stateMutability":"payable","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":"address","name":"toAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"verifyMerkle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_superMerkleProof","type":"bytes32[]"}],"name":"verifySuperMerkle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405267016345785d8a0000600b556002600c55600a600d55670214e8348c4f0000600e556002600f556113886013556105dc6014553480156200004457600080fd5b50604051620057143803806200571483398181016040528101906200006a91906200033e565b818181600290816200007d91906200060e565b5080600390816200008f91906200060e565b50620000a0620000d860201b60201c565b6000819055505050620000c8620000bc620000dd60201b60201c565b620000e560201b60201c565b60016009819055505050620006f5565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200021482620001c9565b810181811067ffffffffffffffff82111715620002365762000235620001da565b5b80604052505050565b60006200024b620001ab565b905062000259828262000209565b919050565b600067ffffffffffffffff8211156200027c576200027b620001da565b5b6200028782620001c9565b9050602081019050919050565b60005b83811015620002b457808201518184015260208101905062000297565b60008484015250505050565b6000620002d7620002d1846200025e565b6200023f565b905082815260208101848484011115620002f657620002f5620001c4565b5b6200030384828562000294565b509392505050565b600082601f830112620003235762000322620001bf565b5b815162000335848260208601620002c0565b91505092915050565b60008060408385031215620003585762000357620001b5565b5b600083015167ffffffffffffffff811115620003795762000378620001ba565b5b62000387858286016200030b565b925050602083015167ffffffffffffffff811115620003ab57620003aa620001ba565b5b620003b9858286016200030b565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200041657607f821691505b6020821081036200042c576200042b620003ce565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004967fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000457565b620004a2868362000457565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004ef620004e9620004e384620004ba565b620004c4565b620004ba565b9050919050565b6000819050919050565b6200050b83620004ce565b620005236200051a82620004f6565b84845462000464565b825550505050565b600090565b6200053a6200052b565b6200054781848462000500565b505050565b5b818110156200056f576200056360008262000530565b6001810190506200054d565b5050565b601f821115620005be57620005888162000432565b620005938462000447565b81016020851015620005a3578190505b620005bb620005b28562000447565b8301826200054c565b50505b505050565b600082821c905092915050565b6000620005e360001984600802620005c3565b1980831691505092915050565b6000620005fe8383620005d0565b9150826002028217905092915050565b6200061982620003c3565b67ffffffffffffffff811115620006355762000634620001da565b5b620006418254620003fd565b6200064e82828562000573565b600060209050601f83116001811462000686576000841562000671578287015190505b6200067d8582620005f0565b865550620006ed565b601f198416620006968662000432565b60005b82811015620006c05784890151825560018201915060208501945060208101905062000699565b86831015620006e05784890151620006dc601f891682620005d0565b8355505b6001600288020188555050505b505050505050565b61500f80620007056000396000f3fe60806040526004361061021a5760003560e01c80637c69e20711610123578063add5a4fa116100ab578063e985e9c51161006f578063e985e9c51461079a578063eb824f60146107d7578063f2fde38b14610814578063f446f2991461083d578063f4c24660146108665761021a565b8063add5a4fa146106a5578063b88d4fde146106ce578063c23dc68f146106f7578063c3d1840d14610734578063c87b56dd1461075d5761021a565b806395d89b41116100f257806395d89b41146105dc578063971e52ed1461060757806399a2557a14610623578063a0712d6814610660578063a22cb4651461067c5761021a565b80637c69e207146105345780637cb647591461054b5780638462151c146105745780638da5cb5b146105b15761021a565b80633ccfd60b116101a65780634f02c420116101755780634f02c4201461043b5780635bbb2177146104665780636352211e146104a357806370a08231146104e0578063715018a61461051d5761021a565b80633ccfd60b146103af57806342842e0e146103c65780634c220f6e146103ef5780634e69d5601461040b5761021a565b8063095ea7b3116101ed578063095ea7b3146102ed57806318160ddd14610316578063233826041461034157806323b872dd1461036a57806328993e65146103935761021a565b806301ffc9a71461021f57806302fe53051461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061353a565b6108a3565b6040516102539190613582565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906136e3565b610935565b005b34801561029157600080fd5b5061029a6109c4565b6040516102a791906137ab565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190613803565b610a56565b6040516102e49190613871565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f91906138b8565b610ad5565b005b34801561032257600080fd5b5061032b610c19565b6040516103389190613907565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613958565b610c30565b005b34801561037657600080fd5b50610391600480360381019061038c9190613985565b610cb6565b005b6103ad60048036038101906103a89190613a38565b610fd8565b005b3480156103bb57600080fd5b506103c4611155565b005b3480156103d257600080fd5b506103ed60048036038101906103e89190613985565b6112bc565b005b61040960048036038101906104049190613a38565b6112dc565b005b34801561041757600080fd5b50610420611459565b60405161043296959493929190613b0f565b60405180910390f35b34801561044757600080fd5b50610450611501565b60405161045d9190613907565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190613bc6565b611511565b60405161049a9190613d76565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c59190613803565b6115d4565b6040516104d79190613871565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190613d98565b6115e6565b6040516105149190613907565b60405180910390f35b34801561052957600080fd5b5061053261169e565b005b34801561054057600080fd5b50610549611726565b005b34801561055757600080fd5b50610572600480360381019061056d9190613958565b6117b9565b005b34801561058057600080fd5b5061059b60048036038101906105969190613d98565b61183f565b6040516105a89190613e83565b60405180910390f35b3480156105bd57600080fd5b506105c6611982565b6040516105d39190613871565b60405180910390f35b3480156105e857600080fd5b506105f16119ac565b6040516105fe91906137ab565b60405180910390f35b610621600480360381019061061c91906138b8565b611a3e565b005b34801561062f57600080fd5b5061064a60048036038101906106459190613ea5565b611b8d565b6040516106579190613e83565b60405180910390f35b61067a60048036038101906106759190613803565b611d99565b005b34801561068857600080fd5b506106a3600480360381019061069e9190613f24565b611ecb565b005b3480156106b157600080fd5b506106cc60048036038101906106c791906138b8565b612042565b005b3480156106da57600080fd5b506106f560048036038101906106f09190614005565b6120cc565b005b34801561070357600080fd5b5061071e60048036038101906107199190613803565b61213f565b60405161072b91906140dd565b60405180910390f35b34801561074057600080fd5b5061075b60048036038101906107569190613ea5565b6121a9565b005b34801561076957600080fd5b50610784600480360381019061077f9190613803565b612279565b60405161079191906137ab565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc91906140f8565b612317565b6040516107ce9190613582565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190614138565b6123ab565b60405161080b9190613582565b60405180910390f35b34801561082057600080fd5b5061083b60048036038101906108369190613d98565b612435565b005b34801561084957600080fd5b50610864600480360381019061085f91906141aa565b61252c565b005b34801561087257600080fd5b5061088d60048036038101906108889190614138565b612687565b60405161089a9190613582565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108fe57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61093d612711565b73ffffffffffffffffffffffffffffffffffffffff1661095b611982565b73ffffffffffffffffffffffffffffffffffffffff16146109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a890614271565b60405180910390fd5b80601090816109c0919061449d565b5050565b6060600280546109d3906142c0565b80601f01602080910402602001604051908101604052809291908181526020018280546109ff906142c0565b8015610a4c5780601f10610a2157610100808354040283529160200191610a4c565b820191906000526020600020905b815481529060010190602001808311610a2f57829003601f168201915b5050505050905090565b6000610a6182612719565b610a97576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae0826115d4565b90508073ffffffffffffffffffffffffffffffffffffffff16610b01612778565b73ffffffffffffffffffffffffffffffffffffffff1614610b6457610b2d81610b28612778565b612317565b610b63576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c23612780565b6001546000540303905090565b610c38612711565b73ffffffffffffffffffffffffffffffffffffffff16610c56611982565b73ffffffffffffffffffffffffffffffffffffffff1614610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca390614271565b60405180910390fd5b8060128190555050565b6000610cc182612785565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d28576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d3484612851565b91509150610d4a8187610d45612778565b612878565b610d9657610d5f86610d5a612778565b612317565b610d95576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610dfc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e0986868660016128bc565b8015610e1457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ee285610ebe8888876128c2565b7c0200000000000000000000000000000000000000000000000000000000176128ea565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610f685760006001850190506000600460008381526020019081526020016000205403610f66576000548114610f65578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fd08686866001612915565b505050505050565b60016004811115610fec57610feb613a98565b5b600a60009054906101000a900460ff16600481111561100e5761100d613a98565b5b1461104e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611045906145bb565b60405180910390fd5b6110588282612687565b611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90614627565b60405180910390fd5b82600d5410156110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d390614693565b60405180910390fd5b600d54836110e93361291b565b6110f391906146e2565b1115611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90614762565b60405180910390fd5b61113d83612972565b61114683612a7d565b6111503384612b2e565b505050565b60026009540361119a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611191906147ce565b60405180910390fd5b60026009819055506111aa612711565b73ffffffffffffffffffffffffffffffffffffffff166111c8611982565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590614271565b60405180910390fd5b60004711611261576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112589061483a565b60405180910390fd5b61127261126c611982565b47612b4c565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05661129b611982565b476040516112aa92919061485a565b60405180910390a16001600981905550565b6112d7838383604051806020016040528060008152506120cc565b505050565b600160048111156112f0576112ef613a98565b5b600a60009054906101000a900460ff16600481111561131257611311613a98565b5b14611352576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611349906145bb565b60405180910390fd5b61135c82826123ab565b61139b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139290614627565b60405180910390fd5b82600c5410156113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d790614693565b60405180910390fd5b600c54836113ed3361291b565b6113f791906146e2565b1115611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90614762565b60405180910390fd5b61144183612972565b61144a83612a7d565b6114543384612b2e565b505050565b6000806000806000806001600481111561147657611475613a98565b5b600a60009054906101000a900460ff16600481111561149857611497613a98565b5b036114cd57600a60009054906101000a900460ff16600b54600c54601454601354600d549550955095509550955095506114f9565b600a60009054906101000a900460ff16600e54600f54601454601354600d549550955095509550955095505b909192939495565b600061150c3361291b565b905090565b6060600083839050905060008167ffffffffffffffff811115611537576115366135b8565b5b60405190808252806020026020018201604052801561157057816020015b61155d61347f565b8152602001906001900390816115555790505b50905060005b8281146115c85761159f86868381811061159357611592614883565b5b9050602002013561213f565b8282815181106115b2576115b1614883565b5b6020026020010181905250806001019050611576565b50809250505092915050565b60006115df82612785565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361164d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116a6612711565b73ffffffffffffffffffffffffffffffffffffffff166116c4611982565b73ffffffffffffffffffffffffffffffffffffffff161461171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190614271565b60405180910390fd5b6117246000612c40565b565b61172e612711565b73ffffffffffffffffffffffffffffffffffffffff1661174c611982565b73ffffffffffffffffffffffffffffffffffffffff16146117a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179990614271565b60405180910390fd5b6117ac6001612a7d565b6117b7336001612b2e565b565b6117c1612711565b73ffffffffffffffffffffffffffffffffffffffff166117df611982565b73ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90614271565b60405180910390fd5b8060118190555050565b6060600080600061184f856115e6565b905060008167ffffffffffffffff81111561186d5761186c6135b8565b5b60405190808252806020026020018201604052801561189b5781602001602082028036833780820191505090505b5090506118a661347f565b60006118b0612780565b90505b838614611974576118c381612d06565b9150816040015161196957600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461190e57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611968578083878060010198508151811061195b5761195a614883565b5b6020026020010181815250505b5b8060010190506118b3565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546119bb906142c0565b80601f01602080910402602001604051908101604052809291908181526020018280546119e7906142c0565b8015611a345780601f10611a0957610100808354040283529160200191611a34565b820191906000526020600020905b815481529060010190602001808311611a1757829003601f168201915b5050505050905090565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac5906148fe565b60405180910390fd5b60165481611adb3361291b565b611ae591906146e2565b1115611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d9061496a565b60405180910390fd5b80601754611b34919061498a565b341015611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90614a30565b60405180910390fd5b611b7f81612a7d565b611b898282612b2e565b5050565b6060818310611bc8576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611bd3612d31565b9050611bdd612780565b851015611bef57611bec612780565b94505b80841115611bfb578093505b6000611c06876115e6565b905084861015611c29576000868603905081811015611c23578091505b50611c2e565b600090505b60008167ffffffffffffffff811115611c4a57611c496135b8565b5b604051908082528060200260200182016040528015611c785781602001602082028036833780820191505090505b50905060008203611c8f5780945050505050611d92565b6000611c9a8861213f565b905060008160400151611caf57816000015190505b60008990505b888114158015611cc55750848714155b15611d8457611cd381612d06565b92508260400151611d7957600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611d1e57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d785780848880600101995081518110611d6b57611d6a614883565b5b6020026020010181815250505b5b806001019050611cb5565b508583528296505050505050505b9392505050565b60026004811115611dad57611dac613a98565b5b600a60009054906101000a900460ff166004811115611dcf57611dce613a98565b5b14611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e06906145bb565b60405180910390fd5b80600f541015611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b90614693565b60405180910390fd5b600f5481611e613361291b565b611e6b91906146e2565b1115611eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea390614762565b60405180910390fd5b611eb581612d3a565b611ebe81612a7d565b611ec83382612b2e565b50565b611ed3612778565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f37576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611f44612778565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ff1612778565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120369190613582565b60405180910390a35050565b61204a612711565b73ffffffffffffffffffffffffffffffffffffffff16612068611982565b73ffffffffffffffffffffffffffffffffffffffff16146120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b590614271565b60405180910390fd5b6120c88282612b2e565b5050565b6120d7848484610cb6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121395761210284848484612e45565b612138576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61214761347f565b61214f61347f565b612157612780565b83108061216b5750612167612d31565b8310155b1561217957809150506121a4565b61218283612d06565b905080604001511561219757809150506121a4565b6121a083612f95565b9150505b919050565b6121b1612711565b73ffffffffffffffffffffffffffffffffffffffff166121cf611982565b73ffffffffffffffffffffffffffffffffffffffff1614612225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221c90614271565b60405180910390fd5b82601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160168190555080601781905550505050565b606061228482612719565b6122ba576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006122c4612fb5565b905060008151036122e4576040518060200160405280600081525061230f565b806122ee84613047565b6040516020016122ff929190614a8c565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000806123b6612711565b6040516020016123c69190614af8565b60405160208183030381529060405280519060200120905061242c848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506011548361308e565b91505092915050565b61243d612711565b73ffffffffffffffffffffffffffffffffffffffff1661245b611982565b73ffffffffffffffffffffffffffffffffffffffff16146124b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a890614271565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251790614b85565b60405180910390fd5b61252981612c40565b50565b612534612711565b73ffffffffffffffffffffffffffffffffffffffff16612552611982565b73ffffffffffffffffffffffffffffffffffffffff16146125a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259f90614271565b60405180910390fd5b84600a60006101000a81548160ff021916908360048111156125cd576125cc613a98565b5b0217905550600160048111156125e6576125e5613a98565b5b600a60009054906101000a900460ff16600481111561260857612607613a98565b5b0361262e5782600b8190555083600c819055508160148190555080600d81905550612680565b6002600481111561264257612641613a98565b5b600a60009054906101000a900460ff16600481111561266457612663613a98565b5b0361267f5782600e8190555083600f81905550816014819055505b5b5050505050565b600080612692612711565b6040516020016126a29190614af8565b604051602081830303815290604052805190602001209050612708848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506012548361308e565b91505092915050565b600033905090565b600081612724612780565b11158015612733575060005482105b8015612771575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080612794612780565b1161281a576000548110156128195760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612817575b6000810361280d5760046000836001900393508381526020019081526020016000205490506127e3565b809250505061284c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86128d98686846130a5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600081116129b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ac90614bf1565b60405180910390fd5b80600b546129c3919061498a565b341015612a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fc90614a30565b60405180910390fd5b80600b54612a13919061498a565b341115612a7a573373ffffffffffffffffffffffffffffffffffffffff166108fc82600b54612a42919061498a565b34612a4d9190614c11565b9081150290604051600060405180830381858888f19350505050158015612a78573d6000803e3d6000fd5b505b50565b60135481612a89610c19565b612a9391906146e2565b1115612ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acb90614c91565b60405180910390fd5b60145481612ae0610c19565b612aea91906146e2565b1115612b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2290614cfd565b60405180910390fd5b50565b612b488282604051806020016040528060008152506130ae565b5050565b80471015612b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8690614d69565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612bb590614dba565b60006040518083038185875af1925050503d8060008114612bf2576040519150601f19603f3d011682016040523d82523d6000602084013e612bf7565b606091505b5050905080612c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3290614e41565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d0e61347f565b612d2a600460008481526020019081526020016000205461314b565b9050919050565b60008054905090565b60008111612d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7490614bf1565b60405180910390fd5b80600e54612d8b919061498a565b341015612dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc490614a30565b60405180910390fd5b80600e54612ddb919061498a565b341115612e42573373ffffffffffffffffffffffffffffffffffffffff166108fc82600e54612e0a919061498a565b34612e159190614c11565b9081150290604051600060405180830381858888f19350505050158015612e40573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e6b612778565b8786866040518563ffffffff1660e01b8152600401612e8d9493929190614eb6565b6020604051808303816000875af1925050508015612ec957506040513d601f19601f82011682018060405250810190612ec69190614f17565b60015b612f42573d8060008114612ef9576040519150601f19603f3d011682016040523d82523d6000602084013e612efe565b606091505b506000815103612f3a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612f9d61347f565b612fae612fa983612785565b61314b565b9050919050565b606060108054612fc4906142c0565b80601f0160208091040260200160405190810160405280929190818152602001828054612ff0906142c0565b801561303d5780601f106130125761010080835404028352916020019161303d565b820191906000526020600020905b81548152906001019060200180831161302057829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561307a57600183039250600a81066030018353600a8104905080613058575b508181036020830392508083525050919050565b60008261309b8584613201565b1490509392505050565b60009392505050565b6130b883836132b4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461314657600080549050600083820390505b6130f86000868380600101945086612e45565b61312e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106130e557816000541461314357600080fd5b50505b505050565b61315361347f565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008082905060005b84518110156132a957600085828151811061322857613227614883565b5b6020026020010151905080831161326957828160405160200161324c929190614f65565b604051602081830303815290604052805190602001209250613295565b808360405160200161327c929190614f65565b6040516020818303038152906040528051906020012092505b5080806132a190614f91565b91505061320a565b508091505092915050565b600080549050600082036132f4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61330160008483856128bc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506133788361336960008660006128c2565b6133728561346f565b176128ea565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461341957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506133de565b5060008203613454576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061346a6000848385612915565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613517816134e2565b811461352257600080fd5b50565b6000813590506135348161350e565b92915050565b6000602082840312156135505761354f6134d8565b5b600061355e84828501613525565b91505092915050565b60008115159050919050565b61357c81613567565b82525050565b60006020820190506135976000830184613573565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135f0826135a7565b810181811067ffffffffffffffff8211171561360f5761360e6135b8565b5b80604052505050565b60006136226134ce565b905061362e82826135e7565b919050565b600067ffffffffffffffff82111561364e5761364d6135b8565b5b613657826135a7565b9050602081019050919050565b82818337600083830152505050565b600061368661368184613633565b613618565b9050828152602081018484840111156136a2576136a16135a2565b5b6136ad848285613664565b509392505050565b600082601f8301126136ca576136c961359d565b5b81356136da848260208601613673565b91505092915050565b6000602082840312156136f9576136f86134d8565b5b600082013567ffffffffffffffff811115613717576137166134dd565b5b613723848285016136b5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561376657808201518184015260208101905061374b565b60008484015250505050565b600061377d8261372c565b6137878185613737565b9350613797818560208601613748565b6137a0816135a7565b840191505092915050565b600060208201905081810360008301526137c58184613772565b905092915050565b6000819050919050565b6137e0816137cd565b81146137eb57600080fd5b50565b6000813590506137fd816137d7565b92915050565b600060208284031215613819576138186134d8565b5b6000613827848285016137ee565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061385b82613830565b9050919050565b61386b81613850565b82525050565b60006020820190506138866000830184613862565b92915050565b61389581613850565b81146138a057600080fd5b50565b6000813590506138b28161388c565b92915050565b600080604083850312156138cf576138ce6134d8565b5b60006138dd858286016138a3565b92505060206138ee858286016137ee565b9150509250929050565b613901816137cd565b82525050565b600060208201905061391c60008301846138f8565b92915050565b6000819050919050565b61393581613922565b811461394057600080fd5b50565b6000813590506139528161392c565b92915050565b60006020828403121561396e5761396d6134d8565b5b600061397c84828501613943565b91505092915050565b60008060006060848603121561399e5761399d6134d8565b5b60006139ac868287016138a3565b93505060206139bd868287016138a3565b92505060406139ce868287016137ee565b9150509250925092565b600080fd5b600080fd5b60008083601f8401126139f8576139f761359d565b5b8235905067ffffffffffffffff811115613a1557613a146139d8565b5b602083019150836020820283011115613a3157613a306139dd565b5b9250929050565b600080600060408486031215613a5157613a506134d8565b5b6000613a5f868287016137ee565b935050602084013567ffffffffffffffff811115613a8057613a7f6134dd565b5b613a8c868287016139e2565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60058110613ad857613ad7613a98565b5b50565b6000819050613ae982613ac7565b919050565b6000613af982613adb565b9050919050565b613b0981613aee565b82525050565b600060c082019050613b246000830189613b00565b613b3160208301886138f8565b613b3e60408301876138f8565b613b4b60608301866138f8565b613b5860808301856138f8565b613b6560a08301846138f8565b979650505050505050565b60008083601f840112613b8657613b8561359d565b5b8235905067ffffffffffffffff811115613ba357613ba26139d8565b5b602083019150836020820283011115613bbf57613bbe6139dd565b5b9250929050565b60008060208385031215613bdd57613bdc6134d8565b5b600083013567ffffffffffffffff811115613bfb57613bfa6134dd565b5b613c0785828601613b70565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c4881613850565b82525050565b600067ffffffffffffffff82169050919050565b613c6b81613c4e565b82525050565b613c7a81613567565b82525050565b600062ffffff82169050919050565b613c9881613c80565b82525050565b608082016000820151613cb46000850182613c3f565b506020820151613cc76020850182613c62565b506040820151613cda6040850182613c71565b506060820151613ced6060850182613c8f565b50505050565b6000613cff8383613c9e565b60808301905092915050565b6000602082019050919050565b6000613d2382613c13565b613d2d8185613c1e565b9350613d3883613c2f565b8060005b83811015613d69578151613d508882613cf3565b9750613d5b83613d0b565b925050600181019050613d3c565b5085935050505092915050565b60006020820190508181036000830152613d908184613d18565b905092915050565b600060208284031215613dae57613dad6134d8565b5b6000613dbc848285016138a3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613dfa816137cd565b82525050565b6000613e0c8383613df1565b60208301905092915050565b6000602082019050919050565b6000613e3082613dc5565b613e3a8185613dd0565b9350613e4583613de1565b8060005b83811015613e76578151613e5d8882613e00565b9750613e6883613e18565b925050600181019050613e49565b5085935050505092915050565b60006020820190508181036000830152613e9d8184613e25565b905092915050565b600080600060608486031215613ebe57613ebd6134d8565b5b6000613ecc868287016138a3565b9350506020613edd868287016137ee565b9250506040613eee868287016137ee565b9150509250925092565b613f0181613567565b8114613f0c57600080fd5b50565b600081359050613f1e81613ef8565b92915050565b60008060408385031215613f3b57613f3a6134d8565b5b6000613f49858286016138a3565b9250506020613f5a85828601613f0f565b9150509250929050565b600067ffffffffffffffff821115613f7f57613f7e6135b8565b5b613f88826135a7565b9050602081019050919050565b6000613fa8613fa384613f64565b613618565b905082815260208101848484011115613fc457613fc36135a2565b5b613fcf848285613664565b509392505050565b600082601f830112613fec57613feb61359d565b5b8135613ffc848260208601613f95565b91505092915050565b6000806000806080858703121561401f5761401e6134d8565b5b600061402d878288016138a3565b945050602061403e878288016138a3565b935050604061404f878288016137ee565b925050606085013567ffffffffffffffff8111156140705761406f6134dd565b5b61407c87828801613fd7565b91505092959194509250565b60808201600082015161409e6000850182613c3f565b5060208201516140b16020850182613c62565b5060408201516140c46040850182613c71565b5060608201516140d76060850182613c8f565b50505050565b60006080820190506140f26000830184614088565b92915050565b6000806040838503121561410f5761410e6134d8565b5b600061411d858286016138a3565b925050602061412e858286016138a3565b9150509250929050565b6000806020838503121561414f5761414e6134d8565b5b600083013567ffffffffffffffff81111561416d5761416c6134dd565b5b614179858286016139e2565b92509250509250929050565b6005811061419257600080fd5b50565b6000813590506141a481614185565b92915050565b600080600080600060a086880312156141c6576141c56134d8565b5b60006141d488828901614195565b95505060206141e5888289016137ee565b94505060406141f6888289016137ee565b9350506060614207888289016137ee565b9250506080614218888289016137ee565b9150509295509295909350565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061425b602083613737565b915061426682614225565b602082019050919050565b6000602082019050818103600083015261428a8161424e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142d857607f821691505b6020821081036142eb576142ea614291565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026143537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614316565b61435d8683614316565b95508019841693508086168417925050509392505050565b6000819050919050565b600061439a614395614390846137cd565b614375565b6137cd565b9050919050565b6000819050919050565b6143b48361437f565b6143c86143c0826143a1565b848454614323565b825550505050565b600090565b6143dd6143d0565b6143e88184846143ab565b505050565b5b8181101561440c576144016000826143d5565b6001810190506143ee565b5050565b601f82111561445157614422816142f1565b61442b84614306565b8101602085101561443a578190505b61444e61444685614306565b8301826143ed565b50505b505050565b600082821c905092915050565b600061447460001984600802614456565b1980831691505092915050565b600061448d8383614463565b9150826002028217905092915050565b6144a68261372c565b67ffffffffffffffff8111156144bf576144be6135b8565b5b6144c982546142c0565b6144d4828285614410565b600060209050601f83116001811461450757600084156144f5578287015190505b6144ff8582614481565b865550614567565b601f198416614515866142f1565b60005b8281101561453d57848901518255600182019150602085019450602081019050614518565b8683101561455a5784890151614556601f891682614463565b8355505b6001600288020188555050505b505050505050565b7f53554d3030360000000000000000000000000000000000000000000000000000600082015250565b60006145a5600683613737565b91506145b08261456f565b602082019050919050565b600060208201905081810360008301526145d481614598565b9050919050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000614611600e83613737565b915061461c826145db565b602082019050919050565b6000602082019050818103600083015261464081614604565b9050919050565b7f53554d3030310000000000000000000000000000000000000000000000000000600082015250565b600061467d600683613737565b915061468882614647565b602082019050919050565b600060208201905081810360008301526146ac81614670565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146ed826137cd565b91506146f8836137cd565b92508282019050808211156147105761470f6146b3565b5b92915050565b7f53554d3030380000000000000000000000000000000000000000000000000000600082015250565b600061474c600683613737565b915061475782614716565b602082019050919050565b6000602082019050818103600083015261477b8161473f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006147b8601f83613737565b91506147c382614782565b602082019050919050565b600060208201905081810360008301526147e7816147ab565b9050919050565b7f53554d3030350000000000000000000000000000000000000000000000000000600082015250565b6000614824600683613737565b915061482f826147ee565b602082019050919050565b6000602082019050818103600083015261485381614817565b9050919050565b600060408201905061486f6000830185613862565b61487c60208301846138f8565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6e6f7420706172746e6572000000000000000000000000000000000000000000600082015250565b60006148e8600b83613737565b91506148f3826148b2565b602082019050919050565b60006020820190508181036000830152614917816148db565b9050919050565b7f7265616368206c696d6974000000000000000000000000000000000000000000600082015250565b6000614954600b83613737565b915061495f8261491e565b602082019050919050565b6000602082019050818103600083015261498381614947565b9050919050565b6000614995826137cd565b91506149a0836137cd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149d9576149d86146b3565b5b828202905092915050565b7f53554d3030320000000000000000000000000000000000000000000000000000600082015250565b6000614a1a600683613737565b9150614a25826149e4565b602082019050919050565b60006020820190508181036000830152614a4981614a0d565b9050919050565b600081905092915050565b6000614a668261372c565b614a708185614a50565b9350614a80818560208601613748565b80840191505092915050565b6000614a988285614a5b565b9150614aa48284614a5b565b91508190509392505050565b60008160601b9050919050565b6000614ac882614ab0565b9050919050565b6000614ada82614abd565b9050919050565b614af2614aed82613850565b614acf565b82525050565b6000614b048284614ae1565b60148201915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b6f602683613737565b9150614b7a82614b13565b604082019050919050565b60006020820190508181036000830152614b9e81614b62565b9050919050565b7f53554d3031310000000000000000000000000000000000000000000000000000600082015250565b6000614bdb600683613737565b9150614be682614ba5565b602082019050919050565b60006020820190508181036000830152614c0a81614bce565b9050919050565b6000614c1c826137cd565b9150614c27836137cd565b9250828203905081811115614c3f57614c3e6146b3565b5b92915050565b7f53554d3030330000000000000000000000000000000000000000000000000000600082015250565b6000614c7b600683613737565b9150614c8682614c45565b602082019050919050565b60006020820190508181036000830152614caa81614c6e565b9050919050565b7f53554d3031320000000000000000000000000000000000000000000000000000600082015250565b6000614ce7600683613737565b9150614cf282614cb1565b602082019050919050565b60006020820190508181036000830152614d1681614cda565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614d53601d83613737565b9150614d5e82614d1d565b602082019050919050565b60006020820190508181036000830152614d8281614d46565b9050919050565b600081905092915050565b50565b6000614da4600083614d89565b9150614daf82614d94565b600082019050919050565b6000614dc582614d97565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614e2b603a83613737565b9150614e3682614dcf565b604082019050919050565b60006020820190508181036000830152614e5a81614e1e565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614e8882614e61565b614e928185614e6c565b9350614ea2818560208601613748565b614eab816135a7565b840191505092915050565b6000608082019050614ecb6000830187613862565b614ed86020830186613862565b614ee560408301856138f8565b8181036060830152614ef78184614e7d565b905095945050505050565b600081519050614f118161350e565b92915050565b600060208284031215614f2d57614f2c6134d8565b5b6000614f3b84828501614f02565b91505092915050565b6000819050919050565b614f5f614f5a82613922565b614f44565b82525050565b6000614f718285614f4e565b602082019150614f818284614f4e565b6020820191508190509392505050565b6000614f9c826137cd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614fce57614fcd6146b3565b5b60018201905091905056fea2646970667358221220f6f72ca4ab9e56c77032f96f4051656907a6a128df242570cb1a161134cac78c64736f6c634300081000330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000064f75745361640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4f7574536164204e465400000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c80637c69e20711610123578063add5a4fa116100ab578063e985e9c51161006f578063e985e9c51461079a578063eb824f60146107d7578063f2fde38b14610814578063f446f2991461083d578063f4c24660146108665761021a565b8063add5a4fa146106a5578063b88d4fde146106ce578063c23dc68f146106f7578063c3d1840d14610734578063c87b56dd1461075d5761021a565b806395d89b41116100f257806395d89b41146105dc578063971e52ed1461060757806399a2557a14610623578063a0712d6814610660578063a22cb4651461067c5761021a565b80637c69e207146105345780637cb647591461054b5780638462151c146105745780638da5cb5b146105b15761021a565b80633ccfd60b116101a65780634f02c420116101755780634f02c4201461043b5780635bbb2177146104665780636352211e146104a357806370a08231146104e0578063715018a61461051d5761021a565b80633ccfd60b146103af57806342842e0e146103c65780634c220f6e146103ef5780634e69d5601461040b5761021a565b8063095ea7b3116101ed578063095ea7b3146102ed57806318160ddd14610316578063233826041461034157806323b872dd1461036a57806328993e65146103935761021a565b806301ffc9a71461021f57806302fe53051461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b506102466004803603810190610241919061353a565b6108a3565b6040516102539190613582565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906136e3565b610935565b005b34801561029157600080fd5b5061029a6109c4565b6040516102a791906137ab565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190613803565b610a56565b6040516102e49190613871565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f91906138b8565b610ad5565b005b34801561032257600080fd5b5061032b610c19565b6040516103389190613907565b60405180910390f35b34801561034d57600080fd5b5061036860048036038101906103639190613958565b610c30565b005b34801561037657600080fd5b50610391600480360381019061038c9190613985565b610cb6565b005b6103ad60048036038101906103a89190613a38565b610fd8565b005b3480156103bb57600080fd5b506103c4611155565b005b3480156103d257600080fd5b506103ed60048036038101906103e89190613985565b6112bc565b005b61040960048036038101906104049190613a38565b6112dc565b005b34801561041757600080fd5b50610420611459565b60405161043296959493929190613b0f565b60405180910390f35b34801561044757600080fd5b50610450611501565b60405161045d9190613907565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190613bc6565b611511565b60405161049a9190613d76565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c59190613803565b6115d4565b6040516104d79190613871565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190613d98565b6115e6565b6040516105149190613907565b60405180910390f35b34801561052957600080fd5b5061053261169e565b005b34801561054057600080fd5b50610549611726565b005b34801561055757600080fd5b50610572600480360381019061056d9190613958565b6117b9565b005b34801561058057600080fd5b5061059b60048036038101906105969190613d98565b61183f565b6040516105a89190613e83565b60405180910390f35b3480156105bd57600080fd5b506105c6611982565b6040516105d39190613871565b60405180910390f35b3480156105e857600080fd5b506105f16119ac565b6040516105fe91906137ab565b60405180910390f35b610621600480360381019061061c91906138b8565b611a3e565b005b34801561062f57600080fd5b5061064a60048036038101906106459190613ea5565b611b8d565b6040516106579190613e83565b60405180910390f35b61067a60048036038101906106759190613803565b611d99565b005b34801561068857600080fd5b506106a3600480360381019061069e9190613f24565b611ecb565b005b3480156106b157600080fd5b506106cc60048036038101906106c791906138b8565b612042565b005b3480156106da57600080fd5b506106f560048036038101906106f09190614005565b6120cc565b005b34801561070357600080fd5b5061071e60048036038101906107199190613803565b61213f565b60405161072b91906140dd565b60405180910390f35b34801561074057600080fd5b5061075b60048036038101906107569190613ea5565b6121a9565b005b34801561076957600080fd5b50610784600480360381019061077f9190613803565b612279565b60405161079191906137ab565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc91906140f8565b612317565b6040516107ce9190613582565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f99190614138565b6123ab565b60405161080b9190613582565b60405180910390f35b34801561082057600080fd5b5061083b60048036038101906108369190613d98565b612435565b005b34801561084957600080fd5b50610864600480360381019061085f91906141aa565b61252c565b005b34801561087257600080fd5b5061088d60048036038101906108889190614138565b612687565b60405161089a9190613582565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108fe57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61093d612711565b73ffffffffffffffffffffffffffffffffffffffff1661095b611982565b73ffffffffffffffffffffffffffffffffffffffff16146109b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a890614271565b60405180910390fd5b80601090816109c0919061449d565b5050565b6060600280546109d3906142c0565b80601f01602080910402602001604051908101604052809291908181526020018280546109ff906142c0565b8015610a4c5780601f10610a2157610100808354040283529160200191610a4c565b820191906000526020600020905b815481529060010190602001808311610a2f57829003601f168201915b5050505050905090565b6000610a6182612719565b610a97576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae0826115d4565b90508073ffffffffffffffffffffffffffffffffffffffff16610b01612778565b73ffffffffffffffffffffffffffffffffffffffff1614610b6457610b2d81610b28612778565b612317565b610b63576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c23612780565b6001546000540303905090565b610c38612711565b73ffffffffffffffffffffffffffffffffffffffff16610c56611982565b73ffffffffffffffffffffffffffffffffffffffff1614610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca390614271565b60405180910390fd5b8060128190555050565b6000610cc182612785565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d28576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d3484612851565b91509150610d4a8187610d45612778565b612878565b610d9657610d5f86610d5a612778565b612317565b610d95576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610dfc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e0986868660016128bc565b8015610e1457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ee285610ebe8888876128c2565b7c0200000000000000000000000000000000000000000000000000000000176128ea565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610f685760006001850190506000600460008381526020019081526020016000205403610f66576000548114610f65578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fd08686866001612915565b505050505050565b60016004811115610fec57610feb613a98565b5b600a60009054906101000a900460ff16600481111561100e5761100d613a98565b5b1461104e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611045906145bb565b60405180910390fd5b6110588282612687565b611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e90614627565b60405180910390fd5b82600d5410156110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d390614693565b60405180910390fd5b600d54836110e93361291b565b6110f391906146e2565b1115611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90614762565b60405180910390fd5b61113d83612972565b61114683612a7d565b6111503384612b2e565b505050565b60026009540361119a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611191906147ce565b60405180910390fd5b60026009819055506111aa612711565b73ffffffffffffffffffffffffffffffffffffffff166111c8611982565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590614271565b60405180910390fd5b60004711611261576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112589061483a565b60405180910390fd5b61127261126c611982565b47612b4c565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05661129b611982565b476040516112aa92919061485a565b60405180910390a16001600981905550565b6112d7838383604051806020016040528060008152506120cc565b505050565b600160048111156112f0576112ef613a98565b5b600a60009054906101000a900460ff16600481111561131257611311613a98565b5b14611352576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611349906145bb565b60405180910390fd5b61135c82826123ab565b61139b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139290614627565b60405180910390fd5b82600c5410156113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d790614693565b60405180910390fd5b600c54836113ed3361291b565b6113f791906146e2565b1115611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90614762565b60405180910390fd5b61144183612972565b61144a83612a7d565b6114543384612b2e565b505050565b6000806000806000806001600481111561147657611475613a98565b5b600a60009054906101000a900460ff16600481111561149857611497613a98565b5b036114cd57600a60009054906101000a900460ff16600b54600c54601454601354600d549550955095509550955095506114f9565b600a60009054906101000a900460ff16600e54600f54601454601354600d549550955095509550955095505b909192939495565b600061150c3361291b565b905090565b6060600083839050905060008167ffffffffffffffff811115611537576115366135b8565b5b60405190808252806020026020018201604052801561157057816020015b61155d61347f565b8152602001906001900390816115555790505b50905060005b8281146115c85761159f86868381811061159357611592614883565b5b9050602002013561213f565b8282815181106115b2576115b1614883565b5b6020026020010181905250806001019050611576565b50809250505092915050565b60006115df82612785565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361164d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116a6612711565b73ffffffffffffffffffffffffffffffffffffffff166116c4611982565b73ffffffffffffffffffffffffffffffffffffffff161461171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190614271565b60405180910390fd5b6117246000612c40565b565b61172e612711565b73ffffffffffffffffffffffffffffffffffffffff1661174c611982565b73ffffffffffffffffffffffffffffffffffffffff16146117a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179990614271565b60405180910390fd5b6117ac6001612a7d565b6117b7336001612b2e565b565b6117c1612711565b73ffffffffffffffffffffffffffffffffffffffff166117df611982565b73ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90614271565b60405180910390fd5b8060118190555050565b6060600080600061184f856115e6565b905060008167ffffffffffffffff81111561186d5761186c6135b8565b5b60405190808252806020026020018201604052801561189b5781602001602082028036833780820191505090505b5090506118a661347f565b60006118b0612780565b90505b838614611974576118c381612d06565b9150816040015161196957600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461190e57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611968578083878060010198508151811061195b5761195a614883565b5b6020026020010181815250505b5b8060010190506118b3565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546119bb906142c0565b80601f01602080910402602001604051908101604052809291908181526020018280546119e7906142c0565b8015611a345780601f10611a0957610100808354040283529160200191611a34565b820191906000526020600020905b815481529060010190602001808311611a1757829003601f168201915b5050505050905090565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac5906148fe565b60405180910390fd5b60165481611adb3361291b565b611ae591906146e2565b1115611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d9061496a565b60405180910390fd5b80601754611b34919061498a565b341015611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90614a30565b60405180910390fd5b611b7f81612a7d565b611b898282612b2e565b5050565b6060818310611bc8576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611bd3612d31565b9050611bdd612780565b851015611bef57611bec612780565b94505b80841115611bfb578093505b6000611c06876115e6565b905084861015611c29576000868603905081811015611c23578091505b50611c2e565b600090505b60008167ffffffffffffffff811115611c4a57611c496135b8565b5b604051908082528060200260200182016040528015611c785781602001602082028036833780820191505090505b50905060008203611c8f5780945050505050611d92565b6000611c9a8861213f565b905060008160400151611caf57816000015190505b60008990505b888114158015611cc55750848714155b15611d8457611cd381612d06565b92508260400151611d7957600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611d1e57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d785780848880600101995081518110611d6b57611d6a614883565b5b6020026020010181815250505b5b806001019050611cb5565b508583528296505050505050505b9392505050565b60026004811115611dad57611dac613a98565b5b600a60009054906101000a900460ff166004811115611dcf57611dce613a98565b5b14611e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e06906145bb565b60405180910390fd5b80600f541015611e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4b90614693565b60405180910390fd5b600f5481611e613361291b565b611e6b91906146e2565b1115611eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea390614762565b60405180910390fd5b611eb581612d3a565b611ebe81612a7d565b611ec83382612b2e565b50565b611ed3612778565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f37576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611f44612778565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ff1612778565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120369190613582565b60405180910390a35050565b61204a612711565b73ffffffffffffffffffffffffffffffffffffffff16612068611982565b73ffffffffffffffffffffffffffffffffffffffff16146120be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b590614271565b60405180910390fd5b6120c88282612b2e565b5050565b6120d7848484610cb6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121395761210284848484612e45565b612138576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61214761347f565b61214f61347f565b612157612780565b83108061216b5750612167612d31565b8310155b1561217957809150506121a4565b61218283612d06565b905080604001511561219757809150506121a4565b6121a083612f95565b9150505b919050565b6121b1612711565b73ffffffffffffffffffffffffffffffffffffffff166121cf611982565b73ffffffffffffffffffffffffffffffffffffffff1614612225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221c90614271565b60405180910390fd5b82601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160168190555080601781905550505050565b606061228482612719565b6122ba576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006122c4612fb5565b905060008151036122e4576040518060200160405280600081525061230f565b806122ee84613047565b6040516020016122ff929190614a8c565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000806123b6612711565b6040516020016123c69190614af8565b60405160208183030381529060405280519060200120905061242c848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506011548361308e565b91505092915050565b61243d612711565b73ffffffffffffffffffffffffffffffffffffffff1661245b611982565b73ffffffffffffffffffffffffffffffffffffffff16146124b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a890614271565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251790614b85565b60405180910390fd5b61252981612c40565b50565b612534612711565b73ffffffffffffffffffffffffffffffffffffffff16612552611982565b73ffffffffffffffffffffffffffffffffffffffff16146125a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259f90614271565b60405180910390fd5b84600a60006101000a81548160ff021916908360048111156125cd576125cc613a98565b5b0217905550600160048111156125e6576125e5613a98565b5b600a60009054906101000a900460ff16600481111561260857612607613a98565b5b0361262e5782600b8190555083600c819055508160148190555080600d81905550612680565b6002600481111561264257612641613a98565b5b600a60009054906101000a900460ff16600481111561266457612663613a98565b5b0361267f5782600e8190555083600f81905550816014819055505b5b5050505050565b600080612692612711565b6040516020016126a29190614af8565b604051602081830303815290604052805190602001209050612708848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506012548361308e565b91505092915050565b600033905090565b600081612724612780565b11158015612733575060005482105b8015612771575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080612794612780565b1161281a576000548110156128195760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612817575b6000810361280d5760046000836001900393508381526020019081526020016000205490506127e3565b809250505061284c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86128d98686846130a5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600081116129b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ac90614bf1565b60405180910390fd5b80600b546129c3919061498a565b341015612a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fc90614a30565b60405180910390fd5b80600b54612a13919061498a565b341115612a7a573373ffffffffffffffffffffffffffffffffffffffff166108fc82600b54612a42919061498a565b34612a4d9190614c11565b9081150290604051600060405180830381858888f19350505050158015612a78573d6000803e3d6000fd5b505b50565b60135481612a89610c19565b612a9391906146e2565b1115612ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acb90614c91565b60405180910390fd5b60145481612ae0610c19565b612aea91906146e2565b1115612b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2290614cfd565b60405180910390fd5b50565b612b488282604051806020016040528060008152506130ae565b5050565b80471015612b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8690614d69565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612bb590614dba565b60006040518083038185875af1925050503d8060008114612bf2576040519150601f19603f3d011682016040523d82523d6000602084013e612bf7565b606091505b5050905080612c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3290614e41565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d0e61347f565b612d2a600460008481526020019081526020016000205461314b565b9050919050565b60008054905090565b60008111612d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7490614bf1565b60405180910390fd5b80600e54612d8b919061498a565b341015612dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc490614a30565b60405180910390fd5b80600e54612ddb919061498a565b341115612e42573373ffffffffffffffffffffffffffffffffffffffff166108fc82600e54612e0a919061498a565b34612e159190614c11565b9081150290604051600060405180830381858888f19350505050158015612e40573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e6b612778565b8786866040518563ffffffff1660e01b8152600401612e8d9493929190614eb6565b6020604051808303816000875af1925050508015612ec957506040513d601f19601f82011682018060405250810190612ec69190614f17565b60015b612f42573d8060008114612ef9576040519150601f19603f3d011682016040523d82523d6000602084013e612efe565b606091505b506000815103612f3a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612f9d61347f565b612fae612fa983612785565b61314b565b9050919050565b606060108054612fc4906142c0565b80601f0160208091040260200160405190810160405280929190818152602001828054612ff0906142c0565b801561303d5780601f106130125761010080835404028352916020019161303d565b820191906000526020600020905b81548152906001019060200180831161302057829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561307a57600183039250600a81066030018353600a8104905080613058575b508181036020830392508083525050919050565b60008261309b8584613201565b1490509392505050565b60009392505050565b6130b883836132b4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461314657600080549050600083820390505b6130f86000868380600101945086612e45565b61312e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106130e557816000541461314357600080fd5b50505b505050565b61315361347f565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008082905060005b84518110156132a957600085828151811061322857613227614883565b5b6020026020010151905080831161326957828160405160200161324c929190614f65565b604051602081830303815290604052805190602001209250613295565b808360405160200161327c929190614f65565b6040516020818303038152906040528051906020012092505b5080806132a190614f91565b91505061320a565b508091505092915050565b600080549050600082036132f4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61330160008483856128bc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506133788361336960008660006128c2565b6133728561346f565b176128ea565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461341957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506133de565b5060008203613454576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061346a6000848385612915565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613517816134e2565b811461352257600080fd5b50565b6000813590506135348161350e565b92915050565b6000602082840312156135505761354f6134d8565b5b600061355e84828501613525565b91505092915050565b60008115159050919050565b61357c81613567565b82525050565b60006020820190506135976000830184613573565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135f0826135a7565b810181811067ffffffffffffffff8211171561360f5761360e6135b8565b5b80604052505050565b60006136226134ce565b905061362e82826135e7565b919050565b600067ffffffffffffffff82111561364e5761364d6135b8565b5b613657826135a7565b9050602081019050919050565b82818337600083830152505050565b600061368661368184613633565b613618565b9050828152602081018484840111156136a2576136a16135a2565b5b6136ad848285613664565b509392505050565b600082601f8301126136ca576136c961359d565b5b81356136da848260208601613673565b91505092915050565b6000602082840312156136f9576136f86134d8565b5b600082013567ffffffffffffffff811115613717576137166134dd565b5b613723848285016136b5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561376657808201518184015260208101905061374b565b60008484015250505050565b600061377d8261372c565b6137878185613737565b9350613797818560208601613748565b6137a0816135a7565b840191505092915050565b600060208201905081810360008301526137c58184613772565b905092915050565b6000819050919050565b6137e0816137cd565b81146137eb57600080fd5b50565b6000813590506137fd816137d7565b92915050565b600060208284031215613819576138186134d8565b5b6000613827848285016137ee565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061385b82613830565b9050919050565b61386b81613850565b82525050565b60006020820190506138866000830184613862565b92915050565b61389581613850565b81146138a057600080fd5b50565b6000813590506138b28161388c565b92915050565b600080604083850312156138cf576138ce6134d8565b5b60006138dd858286016138a3565b92505060206138ee858286016137ee565b9150509250929050565b613901816137cd565b82525050565b600060208201905061391c60008301846138f8565b92915050565b6000819050919050565b61393581613922565b811461394057600080fd5b50565b6000813590506139528161392c565b92915050565b60006020828403121561396e5761396d6134d8565b5b600061397c84828501613943565b91505092915050565b60008060006060848603121561399e5761399d6134d8565b5b60006139ac868287016138a3565b93505060206139bd868287016138a3565b92505060406139ce868287016137ee565b9150509250925092565b600080fd5b600080fd5b60008083601f8401126139f8576139f761359d565b5b8235905067ffffffffffffffff811115613a1557613a146139d8565b5b602083019150836020820283011115613a3157613a306139dd565b5b9250929050565b600080600060408486031215613a5157613a506134d8565b5b6000613a5f868287016137ee565b935050602084013567ffffffffffffffff811115613a8057613a7f6134dd565b5b613a8c868287016139e2565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60058110613ad857613ad7613a98565b5b50565b6000819050613ae982613ac7565b919050565b6000613af982613adb565b9050919050565b613b0981613aee565b82525050565b600060c082019050613b246000830189613b00565b613b3160208301886138f8565b613b3e60408301876138f8565b613b4b60608301866138f8565b613b5860808301856138f8565b613b6560a08301846138f8565b979650505050505050565b60008083601f840112613b8657613b8561359d565b5b8235905067ffffffffffffffff811115613ba357613ba26139d8565b5b602083019150836020820283011115613bbf57613bbe6139dd565b5b9250929050565b60008060208385031215613bdd57613bdc6134d8565b5b600083013567ffffffffffffffff811115613bfb57613bfa6134dd565b5b613c0785828601613b70565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c4881613850565b82525050565b600067ffffffffffffffff82169050919050565b613c6b81613c4e565b82525050565b613c7a81613567565b82525050565b600062ffffff82169050919050565b613c9881613c80565b82525050565b608082016000820151613cb46000850182613c3f565b506020820151613cc76020850182613c62565b506040820151613cda6040850182613c71565b506060820151613ced6060850182613c8f565b50505050565b6000613cff8383613c9e565b60808301905092915050565b6000602082019050919050565b6000613d2382613c13565b613d2d8185613c1e565b9350613d3883613c2f565b8060005b83811015613d69578151613d508882613cf3565b9750613d5b83613d0b565b925050600181019050613d3c565b5085935050505092915050565b60006020820190508181036000830152613d908184613d18565b905092915050565b600060208284031215613dae57613dad6134d8565b5b6000613dbc848285016138a3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613dfa816137cd565b82525050565b6000613e0c8383613df1565b60208301905092915050565b6000602082019050919050565b6000613e3082613dc5565b613e3a8185613dd0565b9350613e4583613de1565b8060005b83811015613e76578151613e5d8882613e00565b9750613e6883613e18565b925050600181019050613e49565b5085935050505092915050565b60006020820190508181036000830152613e9d8184613e25565b905092915050565b600080600060608486031215613ebe57613ebd6134d8565b5b6000613ecc868287016138a3565b9350506020613edd868287016137ee565b9250506040613eee868287016137ee565b9150509250925092565b613f0181613567565b8114613f0c57600080fd5b50565b600081359050613f1e81613ef8565b92915050565b60008060408385031215613f3b57613f3a6134d8565b5b6000613f49858286016138a3565b9250506020613f5a85828601613f0f565b9150509250929050565b600067ffffffffffffffff821115613f7f57613f7e6135b8565b5b613f88826135a7565b9050602081019050919050565b6000613fa8613fa384613f64565b613618565b905082815260208101848484011115613fc457613fc36135a2565b5b613fcf848285613664565b509392505050565b600082601f830112613fec57613feb61359d565b5b8135613ffc848260208601613f95565b91505092915050565b6000806000806080858703121561401f5761401e6134d8565b5b600061402d878288016138a3565b945050602061403e878288016138a3565b935050604061404f878288016137ee565b925050606085013567ffffffffffffffff8111156140705761406f6134dd565b5b61407c87828801613fd7565b91505092959194509250565b60808201600082015161409e6000850182613c3f565b5060208201516140b16020850182613c62565b5060408201516140c46040850182613c71565b5060608201516140d76060850182613c8f565b50505050565b60006080820190506140f26000830184614088565b92915050565b6000806040838503121561410f5761410e6134d8565b5b600061411d858286016138a3565b925050602061412e858286016138a3565b9150509250929050565b6000806020838503121561414f5761414e6134d8565b5b600083013567ffffffffffffffff81111561416d5761416c6134dd565b5b614179858286016139e2565b92509250509250929050565b6005811061419257600080fd5b50565b6000813590506141a481614185565b92915050565b600080600080600060a086880312156141c6576141c56134d8565b5b60006141d488828901614195565b95505060206141e5888289016137ee565b94505060406141f6888289016137ee565b9350506060614207888289016137ee565b9250506080614218888289016137ee565b9150509295509295909350565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061425b602083613737565b915061426682614225565b602082019050919050565b6000602082019050818103600083015261428a8161424e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806142d857607f821691505b6020821081036142eb576142ea614291565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026143537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614316565b61435d8683614316565b95508019841693508086168417925050509392505050565b6000819050919050565b600061439a614395614390846137cd565b614375565b6137cd565b9050919050565b6000819050919050565b6143b48361437f565b6143c86143c0826143a1565b848454614323565b825550505050565b600090565b6143dd6143d0565b6143e88184846143ab565b505050565b5b8181101561440c576144016000826143d5565b6001810190506143ee565b5050565b601f82111561445157614422816142f1565b61442b84614306565b8101602085101561443a578190505b61444e61444685614306565b8301826143ed565b50505b505050565b600082821c905092915050565b600061447460001984600802614456565b1980831691505092915050565b600061448d8383614463565b9150826002028217905092915050565b6144a68261372c565b67ffffffffffffffff8111156144bf576144be6135b8565b5b6144c982546142c0565b6144d4828285614410565b600060209050601f83116001811461450757600084156144f5578287015190505b6144ff8582614481565b865550614567565b601f198416614515866142f1565b60005b8281101561453d57848901518255600182019150602085019450602081019050614518565b8683101561455a5784890151614556601f891682614463565b8355505b6001600288020188555050505b505050505050565b7f53554d3030360000000000000000000000000000000000000000000000000000600082015250565b60006145a5600683613737565b91506145b08261456f565b602082019050919050565b600060208201905081810360008301526145d481614598565b9050919050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000614611600e83613737565b915061461c826145db565b602082019050919050565b6000602082019050818103600083015261464081614604565b9050919050565b7f53554d3030310000000000000000000000000000000000000000000000000000600082015250565b600061467d600683613737565b915061468882614647565b602082019050919050565b600060208201905081810360008301526146ac81614670565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146ed826137cd565b91506146f8836137cd565b92508282019050808211156147105761470f6146b3565b5b92915050565b7f53554d3030380000000000000000000000000000000000000000000000000000600082015250565b600061474c600683613737565b915061475782614716565b602082019050919050565b6000602082019050818103600083015261477b8161473f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006147b8601f83613737565b91506147c382614782565b602082019050919050565b600060208201905081810360008301526147e7816147ab565b9050919050565b7f53554d3030350000000000000000000000000000000000000000000000000000600082015250565b6000614824600683613737565b915061482f826147ee565b602082019050919050565b6000602082019050818103600083015261485381614817565b9050919050565b600060408201905061486f6000830185613862565b61487c60208301846138f8565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6e6f7420706172746e6572000000000000000000000000000000000000000000600082015250565b60006148e8600b83613737565b91506148f3826148b2565b602082019050919050565b60006020820190508181036000830152614917816148db565b9050919050565b7f7265616368206c696d6974000000000000000000000000000000000000000000600082015250565b6000614954600b83613737565b915061495f8261491e565b602082019050919050565b6000602082019050818103600083015261498381614947565b9050919050565b6000614995826137cd565b91506149a0836137cd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149d9576149d86146b3565b5b828202905092915050565b7f53554d3030320000000000000000000000000000000000000000000000000000600082015250565b6000614a1a600683613737565b9150614a25826149e4565b602082019050919050565b60006020820190508181036000830152614a4981614a0d565b9050919050565b600081905092915050565b6000614a668261372c565b614a708185614a50565b9350614a80818560208601613748565b80840191505092915050565b6000614a988285614a5b565b9150614aa48284614a5b565b91508190509392505050565b60008160601b9050919050565b6000614ac882614ab0565b9050919050565b6000614ada82614abd565b9050919050565b614af2614aed82613850565b614acf565b82525050565b6000614b048284614ae1565b60148201915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b6f602683613737565b9150614b7a82614b13565b604082019050919050565b60006020820190508181036000830152614b9e81614b62565b9050919050565b7f53554d3031310000000000000000000000000000000000000000000000000000600082015250565b6000614bdb600683613737565b9150614be682614ba5565b602082019050919050565b60006020820190508181036000830152614c0a81614bce565b9050919050565b6000614c1c826137cd565b9150614c27836137cd565b9250828203905081811115614c3f57614c3e6146b3565b5b92915050565b7f53554d3030330000000000000000000000000000000000000000000000000000600082015250565b6000614c7b600683613737565b9150614c8682614c45565b602082019050919050565b60006020820190508181036000830152614caa81614c6e565b9050919050565b7f53554d3031320000000000000000000000000000000000000000000000000000600082015250565b6000614ce7600683613737565b9150614cf282614cb1565b602082019050919050565b60006020820190508181036000830152614d1681614cda565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614d53601d83613737565b9150614d5e82614d1d565b602082019050919050565b60006020820190508181036000830152614d8281614d46565b9050919050565b600081905092915050565b50565b6000614da4600083614d89565b9150614daf82614d94565b600082019050919050565b6000614dc582614d97565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614e2b603a83613737565b9150614e3682614dcf565b604082019050919050565b60006020820190508181036000830152614e5a81614e1e565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614e8882614e61565b614e928185614e6c565b9350614ea2818560208601613748565b614eab816135a7565b840191505092915050565b6000608082019050614ecb6000830187613862565b614ed86020830186613862565b614ee560408301856138f8565b8181036060830152614ef78184614e7d565b905095945050505050565b600081519050614f118161350e565b92915050565b600060208284031215614f2d57614f2c6134d8565b5b6000614f3b84828501614f02565b91505092915050565b6000819050919050565b614f5f614f5a82613922565b614f44565b82525050565b6000614f718285614f4e565b602082019150614f818284614f4e565b6020820191508190509392505050565b6000614f9c826137cd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614fce57614fcd6146b3565b5b60018201905091905056fea2646970667358221220f6f72ca4ab9e56c77032f96f4051656907a6a128df242570cb1a161134cac78c64736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000064f75745361640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4f7574536164204e465400000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): OutSad
Arg [1] : _tokenSymbol (string): OutSad NFT
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 4f75745361640000000000000000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 4f7574536164204e465400000000000000000000000000000000000000000000
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.