Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,815 t00rt
Holders
736
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 t00rtLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Toortles
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-29 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: toort.sol //Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel pragma solidity >=0.7.0 <0.9.0; contract Toortles is ERC721A, Ownable, ReentrancyGuard { string public baseURI; uint256 public cost = 0.003 ether; uint256 public maxSupply = 4500; uint256 public FreeSupply = 1000; uint256 public MaxperWallet = 5; uint256 public MaxperWalletFree = 2; bool public paused = true; mapping(address => uint256) public FreeMinted; mapping(address => uint256) public PulicMinted; constructor() ERC721A("t00rtles", "t00rt") {} // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } // public function mint(uint256 tokens) public payable nonReentrant { require(!paused, "t00rt: oops contract is paused"); uint256 supply = totalSupply(); require(PulicMinted[_msgSenderERC721A()] + tokens <= MaxperWallet, "t00rt: max mint amount per Wallet exceeded"); require(supply + tokens <= maxSupply, "t00rt: We Soldout"); require(msg.value >= cost * tokens, "t00rt: insufficient funds"); PulicMinted[_msgSenderERC721A()] += tokens; _safeMint(_msgSenderERC721A(), tokens); } function freemint(uint256 tokens) public nonReentrant { require(!paused, "t00rt: oops contract is paused"); uint256 supply = totalSupply(); require(FreeMinted[_msgSenderERC721A()] + tokens <= MaxperWalletFree, "t00rt: max mint amount per Wallet exceeded"); require(supply + tokens <= FreeSupply, "t00rt: Whitelist MaxSupply exceeded"); FreeMinted[_msgSenderERC721A()] += tokens; _safeMint(_msgSenderERC721A(), tokens); } /// @dev use it for giveaway and mint for yourself function gift(uint256 _mintAmount, address destination) public onlyOwner nonReentrant { require(_mintAmount > 0, "need to mint at least 1 NFT"); uint256 supply = totalSupply(); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); _safeMint(destination, _mintAmount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721AMetadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _toString(tokenId), ".json")) : ""; } //only owner function setMaxPerWallet(uint256 _limit) public onlyOwner { MaxperWallet = _limit; } function setFreeMaxPerWallet(uint256 _limit) public onlyOwner { MaxperWalletFree = _limit; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setMaxsupply(uint256 _newsupply) public onlyOwner { maxSupply = _newsupply; } function setFreesupply(uint256 _newsupply) public onlyOwner { FreeSupply = _newsupply; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner nonReentrant { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"FreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"PulicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setFreesupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052660aa87bee538000600b55611194600c556103e8600d556005600e556002600f556010805460ff191660011790553480156200003f57600080fd5b50604080518082018252600881526774303072746c657360c01b6020808301918252835180850190945260058452641d0c0c1c9d60da1b9084015281519192916200008d9160029162000113565b508051620000a390600390602084019062000113565b5050600160005550620000b633620000c1565b6001600955620001f6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012190620001b9565b90600052602060002090601f01602090048101928262000145576000855562000190565b82601f106200016057805160ff191683800117855562000190565b8280016001018555821562000190579182015b828111156200019057825182559160200191906001019062000173565b506200019e929150620001a2565b5090565b5b808211156200019e5760008155600101620001a3565b600181811c90821680620001ce57607f821691505b60208210811415620001f057634e487b7160e01b600052602260045260246000fd5b50919050565b611c3180620002066000396000f3fe60806040526004361061021a5760003560e01c8063624208ae11610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146105cc578063e1cf8baa146105e2578063e268e4d314610602578063e985e9c514610622578063f2fde38b1461066b57600080fd5b8063a22cb46514610536578063b88d4fde14610556578063bd7a199814610569578063c87b56dd1461057f578063c93ec7911461059f57600080fd5b8063715018a6116100f2578063715018a6146104bb57806383a076be146104d05780638da5cb5b146104f057806395d89b411461050e578063a0712d681461052357600080fd5b8063624208ae146104505780636352211e146104665780636c0360eb1461048657806370a082311461049b57600080fd5b806323b872dd116101a657806342842e0e1161017557806342842e0e146103cd57806344a0d68a146103e057806350839bef1461040057806355f804b3146104165780635c975abb1461043657600080fd5b806323b872dd146103655780632931cfd914610378578063351de26e146103a55780633ccfd60b146103c557600080fd5b8063095ea7b3116101ed578063095ea7b3146102d05780630fbe4fe2146102e357806313faede614610303578063149835a01461032757806318160ddd1461034757600080fd5b806301ffc9a71461021f57806302329a291461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611920565b61068b565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004611905565b6106dd565b005b34801561028257600080fd5b5061028b6106f8565b60405161024b9190611a87565b3480156102a457600080fd5b506102b86102b33660046119a3565b61078a565b6040516001600160a01b03909116815260200161024b565b6102746102de3660046118db565b6107ce565b3480156102ef57600080fd5b506102746102fe3660046119a3565b61086e565b34801561030f57600080fd5b50610319600b5481565b60405190815260200161024b565b34801561033357600080fd5b506102746103423660046119a3565b610a15565b34801561035357600080fd5b50610319600154600054036000190190565b6102746103733660046117f9565b610a22565b34801561038457600080fd5b506103196103933660046117ab565b60116020526000908152604090205481565b3480156103b157600080fd5b506102746103c03660046119a3565b610bb3565b610274610bc0565b6102746103db3660046117f9565b610c4d565b3480156103ec57600080fd5b506102746103fb3660046119a3565b610c6d565b34801561040c57600080fd5b50610319600d5481565b34801561042257600080fd5b5061027461043136600461195a565b610c7a565b34801561044257600080fd5b5060105461023f9060ff1681565b34801561045c57600080fd5b50610319600f5481565b34801561047257600080fd5b506102b86104813660046119a3565b610c99565b34801561049257600080fd5b5061028b610ca4565b3480156104a757600080fd5b506103196104b63660046117ab565b610d32565b3480156104c757600080fd5b50610274610d81565b3480156104dc57600080fd5b506102746104eb3660046119bc565b610d95565b3480156104fc57600080fd5b506008546001600160a01b03166102b8565b34801561051a57600080fd5b5061028b610e90565b6102746105313660046119a3565b610e9f565b34801561054257600080fd5b506102746105513660046118b1565b61103e565b610274610564366004611835565b6110aa565b34801561057557600080fd5b50610319600e5481565b34801561058b57600080fd5b5061028b61059a3660046119a3565b6110f4565b3480156105ab57600080fd5b506103196105ba3660046117ab565b60126020526000908152604090205481565b3480156105d857600080fd5b50610319600c5481565b3480156105ee57600080fd5b506102746105fd3660046119a3565b6111c0565b34801561060e57600080fd5b5061027461061d3660046119a3565b6111cd565b34801561062e57600080fd5b5061023f61063d3660046117c6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561067757600080fd5b506102746106863660046117ab565b6111da565b60006301ffc9a760e01b6001600160e01b0319831614806106bc57506380ac58cd60e01b6001600160e01b03198316145b806106d75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6106e5611253565b6010805460ff1916911515919091179055565b60606002805461070790611b7e565b80601f016020809104026020016040519081016040528092919081815260200182805461073390611b7e565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b6000610795826112ad565b6107b2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107d982610c99565b9050336001600160a01b03821614610812576107f5813361063d565b610812576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6002600954141561089a5760405162461bcd60e51b815260040161089190611ae4565b60405180910390fd5b600260095560105460ff16156108f25760405162461bcd60e51b815260206004820152601e60248201527f74303072743a206f6f707320636f6e74726163742069732070617573656400006044820152606401610891565b6000610905600154600054036000190190565b9050600f5482601160006109163390565b6001600160a01b03166001600160a01b03168152602001908152602001600020546109419190611b1b565b111561095f5760405162461bcd60e51b815260040161089190611a9a565b600d5461096c8383611b1b565b11156109c65760405162461bcd60e51b815260206004820152602360248201527f74303072743a2057686974656c697374204d6178537570706c7920657863656560448201526219195960ea1b6064820152608401610891565b8160116000335b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546109fc9190611b1b565b90915550610a0c905033836112e2565b50506001600955565b610a1d611253565b600c55565b6000610a2d826112fc565b9050836001600160a01b0316816001600160a01b031614610a605760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610aad57610a90863361063d565b610aad57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610ad457604051633a954ecd60e21b815260040160405180910390fd5b8015610adf57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610b6a5760018401600081815260046020526040902054610b68576000548114610b685760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610bbb611253565b600f55565b610bc8611253565b60026009541415610beb5760405162461bcd60e51b815260040161089190611ae4565b6002600955604051600090339047908381818185875af1925050503d8060008114610c32576040519150601f19603f3d011682016040523d82523d6000602084013e610c37565b606091505b5050905080610c4557600080fd5b506001600955565b610c68838383604051806020016040528060008152506110aa565b505050565b610c75611253565b600b55565b610c82611253565b8051610c9590600a906020840190611670565b5050565b60006106d7826112fc565b600a8054610cb190611b7e565b80601f0160208091040260200160405190810160405280929190818152602001828054610cdd90611b7e565b8015610d2a5780601f10610cff57610100808354040283529160200191610d2a565b820191906000526020600020905b815481529060010190602001808311610d0d57829003601f168201915b505050505081565b60006001600160a01b038216610d5b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610d89611253565b610d936000611365565b565b610d9d611253565b60026009541415610dc05760405162461bcd60e51b815260040161089190611ae4565b600260095581610e125760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610891565b6000610e25600154600054036000190190565b600c54909150610e358483611b1b565b1115610e7c5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610891565b610e8682846112e2565b5050600160095550565b60606003805461070790611b7e565b60026009541415610ec25760405162461bcd60e51b815260040161089190611ae4565b600260095560105460ff1615610f1a5760405162461bcd60e51b815260206004820152601e60248201527f74303072743a206f6f707320636f6e74726163742069732070617573656400006044820152606401610891565b6000610f2d600154600054036000190190565b9050600e548260126000610f3e3390565b6001600160a01b03166001600160a01b0316815260200190815260200160002054610f699190611b1b565b1115610f875760405162461bcd60e51b815260040161089190611a9a565b600c54610f948383611b1b565b1115610fd65760405162461bcd60e51b81526020600482015260116024820152701d0c0c1c9d0e8815d94814dbdb191bdd5d607a1b6044820152606401610891565b81600b54610fe49190611b33565b3410156110335760405162461bcd60e51b815260206004820152601960248201527f74303072743a20696e73756666696369656e742066756e6473000000000000006044820152606401610891565b8160126000336109cd565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110b5848484610a22565b6001600160a01b0383163b156110ee576110d1848484846113b7565b6110ee576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110ff826112ad565b6111645760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610891565b600061116e6114af565b9050600081511161118e57604051806020016040528060008152506111b9565b80611198846114be565b6040516020016111a9929190611a0b565b6040516020818303038152906040525b9392505050565b6111c8611253565b600d55565b6111d5611253565b600e55565b6111e2611253565b6001600160a01b0381166112475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610891565b61125081611365565b50565b6008546001600160a01b03163314610d935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610891565b6000816001111580156112c1575060005482105b80156106d7575050600090815260046020526040902054600160e01b161590565b610c9582826040518060200160405280600081525061150c565b6000818060011161134c5760005481101561134c57600081815260046020526040902054600160e01b811661134a575b806111b957506000190160008181526004602052604090205461132c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113ec903390899088908890600401611a4a565b602060405180830381600087803b15801561140657600080fd5b505af1925050508015611436575060408051601f3d908101601f191682019092526114339181019061193d565b60015b611491573d808015611464576040519150601f19603f3d011682016040523d82523d6000602084013e611469565b606091505b508051611489576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461070790611b7e565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806114f5576114fa565b6114d8565b50819003601f19909101908152919050565b6115168383611579565b6001600160a01b0383163b15610c68576000548281035b61154060008683806001019450866113b7565b61155d576040516368d2bf6b60e11b815260040160405180910390fd5b81811061152d57816000541461157257600080fd5b5050505050565b6000548161159a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461164957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611611565b508161166757604051622e076360e81b815260040160405180910390fd5b60005550505050565b82805461167c90611b7e565b90600052602060002090601f01602090048101928261169e57600085556116e4565b82601f106116b757805160ff19168380011785556116e4565b828001600101855582156116e4579182015b828111156116e45782518255916020019190600101906116c9565b506116f09291506116f4565b5090565b5b808211156116f057600081556001016116f5565b600067ffffffffffffffff8084111561172457611724611bcf565b604051601f8501601f19908116603f0116810190828211818310171561174c5761174c611bcf565b8160405280935085815286868601111561176557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461179657600080fd5b919050565b8035801515811461179657600080fd5b6000602082840312156117bd57600080fd5b6111b98261177f565b600080604083850312156117d957600080fd5b6117e28361177f565b91506117f06020840161177f565b90509250929050565b60008060006060848603121561180e57600080fd5b6118178461177f565b92506118256020850161177f565b9150604084013590509250925092565b6000806000806080858703121561184b57600080fd5b6118548561177f565b93506118626020860161177f565b925060408501359150606085013567ffffffffffffffff81111561188557600080fd5b8501601f8101871361189657600080fd5b6118a587823560208401611709565b91505092959194509250565b600080604083850312156118c457600080fd5b6118cd8361177f565b91506117f06020840161179b565b600080604083850312156118ee57600080fd5b6118f78361177f565b946020939093013593505050565b60006020828403121561191757600080fd5b6111b98261179b565b60006020828403121561193257600080fd5b81356111b981611be5565b60006020828403121561194f57600080fd5b81516111b981611be5565b60006020828403121561196c57600080fd5b813567ffffffffffffffff81111561198357600080fd5b8201601f8101841361199457600080fd5b6114a784823560208401611709565b6000602082840312156119b557600080fd5b5035919050565b600080604083850312156119cf57600080fd5b823591506117f06020840161177f565b600081518084526119f7816020860160208601611b52565b601f01601f19169290920160200192915050565b60008351611a1d818460208801611b52565b835190830190611a31818360208801611b52565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a7d908301846119df565b9695505050505050565b6020815260006111b960208301846119df565b6020808252602a908201527f74303072743a206d6178206d696e7420616d6f756e74207065722057616c6c656040820152691d08195e18d95959195960b21b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008219821115611b2e57611b2e611bb9565b500190565b6000816000190483118215151615611b4d57611b4d611bb9565b500290565b60005b83811015611b6d578181015183820152602001611b55565b838111156110ee5750506000910152565b600181811c90821680611b9257607f821691505b60208210811415611bb357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461125057600080fdfea2646970667358221220f9fcd5fa9dea3a26a867413375b600d2789394491c088d371ff57e30ceca119264736f6c63430008070033
Deployed Bytecode
0x60806040526004361061021a5760003560e01c8063624208ae11610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146105cc578063e1cf8baa146105e2578063e268e4d314610602578063e985e9c514610622578063f2fde38b1461066b57600080fd5b8063a22cb46514610536578063b88d4fde14610556578063bd7a199814610569578063c87b56dd1461057f578063c93ec7911461059f57600080fd5b8063715018a6116100f2578063715018a6146104bb57806383a076be146104d05780638da5cb5b146104f057806395d89b411461050e578063a0712d681461052357600080fd5b8063624208ae146104505780636352211e146104665780636c0360eb1461048657806370a082311461049b57600080fd5b806323b872dd116101a657806342842e0e1161017557806342842e0e146103cd57806344a0d68a146103e057806350839bef1461040057806355f804b3146104165780635c975abb1461043657600080fd5b806323b872dd146103655780632931cfd914610378578063351de26e146103a55780633ccfd60b146103c557600080fd5b8063095ea7b3116101ed578063095ea7b3146102d05780630fbe4fe2146102e357806313faede614610303578063149835a01461032757806318160ddd1461034757600080fd5b806301ffc9a71461021f57806302329a291461025457806306fdde0314610276578063081812fc14610298575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611920565b61068b565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061027461026f366004611905565b6106dd565b005b34801561028257600080fd5b5061028b6106f8565b60405161024b9190611a87565b3480156102a457600080fd5b506102b86102b33660046119a3565b61078a565b6040516001600160a01b03909116815260200161024b565b6102746102de3660046118db565b6107ce565b3480156102ef57600080fd5b506102746102fe3660046119a3565b61086e565b34801561030f57600080fd5b50610319600b5481565b60405190815260200161024b565b34801561033357600080fd5b506102746103423660046119a3565b610a15565b34801561035357600080fd5b50610319600154600054036000190190565b6102746103733660046117f9565b610a22565b34801561038457600080fd5b506103196103933660046117ab565b60116020526000908152604090205481565b3480156103b157600080fd5b506102746103c03660046119a3565b610bb3565b610274610bc0565b6102746103db3660046117f9565b610c4d565b3480156103ec57600080fd5b506102746103fb3660046119a3565b610c6d565b34801561040c57600080fd5b50610319600d5481565b34801561042257600080fd5b5061027461043136600461195a565b610c7a565b34801561044257600080fd5b5060105461023f9060ff1681565b34801561045c57600080fd5b50610319600f5481565b34801561047257600080fd5b506102b86104813660046119a3565b610c99565b34801561049257600080fd5b5061028b610ca4565b3480156104a757600080fd5b506103196104b63660046117ab565b610d32565b3480156104c757600080fd5b50610274610d81565b3480156104dc57600080fd5b506102746104eb3660046119bc565b610d95565b3480156104fc57600080fd5b506008546001600160a01b03166102b8565b34801561051a57600080fd5b5061028b610e90565b6102746105313660046119a3565b610e9f565b34801561054257600080fd5b506102746105513660046118b1565b61103e565b610274610564366004611835565b6110aa565b34801561057557600080fd5b50610319600e5481565b34801561058b57600080fd5b5061028b61059a3660046119a3565b6110f4565b3480156105ab57600080fd5b506103196105ba3660046117ab565b60126020526000908152604090205481565b3480156105d857600080fd5b50610319600c5481565b3480156105ee57600080fd5b506102746105fd3660046119a3565b6111c0565b34801561060e57600080fd5b5061027461061d3660046119a3565b6111cd565b34801561062e57600080fd5b5061023f61063d3660046117c6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561067757600080fd5b506102746106863660046117ab565b6111da565b60006301ffc9a760e01b6001600160e01b0319831614806106bc57506380ac58cd60e01b6001600160e01b03198316145b806106d75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6106e5611253565b6010805460ff1916911515919091179055565b60606002805461070790611b7e565b80601f016020809104026020016040519081016040528092919081815260200182805461073390611b7e565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b6000610795826112ad565b6107b2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107d982610c99565b9050336001600160a01b03821614610812576107f5813361063d565b610812576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6002600954141561089a5760405162461bcd60e51b815260040161089190611ae4565b60405180910390fd5b600260095560105460ff16156108f25760405162461bcd60e51b815260206004820152601e60248201527f74303072743a206f6f707320636f6e74726163742069732070617573656400006044820152606401610891565b6000610905600154600054036000190190565b9050600f5482601160006109163390565b6001600160a01b03166001600160a01b03168152602001908152602001600020546109419190611b1b565b111561095f5760405162461bcd60e51b815260040161089190611a9a565b600d5461096c8383611b1b565b11156109c65760405162461bcd60e51b815260206004820152602360248201527f74303072743a2057686974656c697374204d6178537570706c7920657863656560448201526219195960ea1b6064820152608401610891565b8160116000335b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546109fc9190611b1b565b90915550610a0c905033836112e2565b50506001600955565b610a1d611253565b600c55565b6000610a2d826112fc565b9050836001600160a01b0316816001600160a01b031614610a605760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610aad57610a90863361063d565b610aad57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610ad457604051633a954ecd60e21b815260040160405180910390fd5b8015610adf57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610b6a5760018401600081815260046020526040902054610b68576000548114610b685760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610bbb611253565b600f55565b610bc8611253565b60026009541415610beb5760405162461bcd60e51b815260040161089190611ae4565b6002600955604051600090339047908381818185875af1925050503d8060008114610c32576040519150601f19603f3d011682016040523d82523d6000602084013e610c37565b606091505b5050905080610c4557600080fd5b506001600955565b610c68838383604051806020016040528060008152506110aa565b505050565b610c75611253565b600b55565b610c82611253565b8051610c9590600a906020840190611670565b5050565b60006106d7826112fc565b600a8054610cb190611b7e565b80601f0160208091040260200160405190810160405280929190818152602001828054610cdd90611b7e565b8015610d2a5780601f10610cff57610100808354040283529160200191610d2a565b820191906000526020600020905b815481529060010190602001808311610d0d57829003601f168201915b505050505081565b60006001600160a01b038216610d5b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610d89611253565b610d936000611365565b565b610d9d611253565b60026009541415610dc05760405162461bcd60e51b815260040161089190611ae4565b600260095581610e125760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610891565b6000610e25600154600054036000190190565b600c54909150610e358483611b1b565b1115610e7c5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610891565b610e8682846112e2565b5050600160095550565b60606003805461070790611b7e565b60026009541415610ec25760405162461bcd60e51b815260040161089190611ae4565b600260095560105460ff1615610f1a5760405162461bcd60e51b815260206004820152601e60248201527f74303072743a206f6f707320636f6e74726163742069732070617573656400006044820152606401610891565b6000610f2d600154600054036000190190565b9050600e548260126000610f3e3390565b6001600160a01b03166001600160a01b0316815260200190815260200160002054610f699190611b1b565b1115610f875760405162461bcd60e51b815260040161089190611a9a565b600c54610f948383611b1b565b1115610fd65760405162461bcd60e51b81526020600482015260116024820152701d0c0c1c9d0e8815d94814dbdb191bdd5d607a1b6044820152606401610891565b81600b54610fe49190611b33565b3410156110335760405162461bcd60e51b815260206004820152601960248201527f74303072743a20696e73756666696369656e742066756e6473000000000000006044820152606401610891565b8160126000336109cd565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110b5848484610a22565b6001600160a01b0383163b156110ee576110d1848484846113b7565b6110ee576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110ff826112ad565b6111645760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610891565b600061116e6114af565b9050600081511161118e57604051806020016040528060008152506111b9565b80611198846114be565b6040516020016111a9929190611a0b565b6040516020818303038152906040525b9392505050565b6111c8611253565b600d55565b6111d5611253565b600e55565b6111e2611253565b6001600160a01b0381166112475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610891565b61125081611365565b50565b6008546001600160a01b03163314610d935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610891565b6000816001111580156112c1575060005482105b80156106d7575050600090815260046020526040902054600160e01b161590565b610c9582826040518060200160405280600081525061150c565b6000818060011161134c5760005481101561134c57600081815260046020526040902054600160e01b811661134a575b806111b957506000190160008181526004602052604090205461132c565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113ec903390899088908890600401611a4a565b602060405180830381600087803b15801561140657600080fd5b505af1925050508015611436575060408051601f3d908101601f191682019092526114339181019061193d565b60015b611491573d808015611464576040519150601f19603f3d011682016040523d82523d6000602084013e611469565b606091505b508051611489576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461070790611b7e565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806114f5576114fa565b6114d8565b50819003601f19909101908152919050565b6115168383611579565b6001600160a01b0383163b15610c68576000548281035b61154060008683806001019450866113b7565b61155d576040516368d2bf6b60e11b815260040160405180910390fd5b81811061152d57816000541461157257600080fd5b5050505050565b6000548161159a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461164957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611611565b508161166757604051622e076360e81b815260040160405180910390fd5b60005550505050565b82805461167c90611b7e565b90600052602060002090601f01602090048101928261169e57600085556116e4565b82601f106116b757805160ff19168380011785556116e4565b828001600101855582156116e4579182015b828111156116e45782518255916020019190600101906116c9565b506116f09291506116f4565b5090565b5b808211156116f057600081556001016116f5565b600067ffffffffffffffff8084111561172457611724611bcf565b604051601f8501601f19908116603f0116810190828211818310171561174c5761174c611bcf565b8160405280935085815286868601111561176557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461179657600080fd5b919050565b8035801515811461179657600080fd5b6000602082840312156117bd57600080fd5b6111b98261177f565b600080604083850312156117d957600080fd5b6117e28361177f565b91506117f06020840161177f565b90509250929050565b60008060006060848603121561180e57600080fd5b6118178461177f565b92506118256020850161177f565b9150604084013590509250925092565b6000806000806080858703121561184b57600080fd5b6118548561177f565b93506118626020860161177f565b925060408501359150606085013567ffffffffffffffff81111561188557600080fd5b8501601f8101871361189657600080fd5b6118a587823560208401611709565b91505092959194509250565b600080604083850312156118c457600080fd5b6118cd8361177f565b91506117f06020840161179b565b600080604083850312156118ee57600080fd5b6118f78361177f565b946020939093013593505050565b60006020828403121561191757600080fd5b6111b98261179b565b60006020828403121561193257600080fd5b81356111b981611be5565b60006020828403121561194f57600080fd5b81516111b981611be5565b60006020828403121561196c57600080fd5b813567ffffffffffffffff81111561198357600080fd5b8201601f8101841361199457600080fd5b6114a784823560208401611709565b6000602082840312156119b557600080fd5b5035919050565b600080604083850312156119cf57600080fd5b823591506117f06020840161177f565b600081518084526119f7816020860160208601611b52565b601f01601f19169290920160200192915050565b60008351611a1d818460208801611b52565b835190830190611a31818360208801611b52565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a7d908301846119df565b9695505050505050565b6020815260006111b960208301846119df565b6020808252602a908201527f74303072743a206d6178206d696e7420616d6f756e74207065722057616c6c656040820152691d08195e18d95959195960b21b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60008219821115611b2e57611b2e611bb9565b500190565b6000816000190483118215151615611b4d57611b4d611bb9565b500290565b60005b83811015611b6d578181015183820152602001611b55565b838111156110ee5750506000910152565b600181811c90821680611b9257607f821691505b60208210811415611bb357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461125057600080fdfea2646970667358221220f9fcd5fa9dea3a26a867413375b600d2789394491c088d371ff57e30ceca119264736f6c63430008070033
Deployed Bytecode Sourcemap
57917:3385:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24756:639;;;;;;;;;;-1:-1:-1;24756:639:0;;;;;:::i;:::-;;:::i;:::-;;;6539:14:1;;6532:22;6514:41;;6502:2;6487:18;24756:639:0;;;;;;;;61046:73;;;;;;;;;;-1:-1:-1;61046:73:0;;;;;:::i;:::-;;:::i;:::-;;25658:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32149:218::-;;;;;;;;;;-1:-1:-1;32149:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5837:32:1;;;5819:51;;5807:2;5792:18;32149:218:0;5673:203:1;31582:408:0;;;;;;:::i;:::-;;:::i;59146:461::-;;;;;;;;;;-1:-1:-1;59146:461:0;;;;;:::i;:::-;;:::i;58005:33::-;;;;;;;;;;;;;;;;;;;11062:25:1;;;11050:2;11035:18;58005:33:0;10916:177:1;60738:94:0;;;;;;;;;;-1:-1:-1;60738:94:0;;;;;:::i;:::-;;:::i;21409:323::-;;;;;;;;;;;;58593:1;21683:12;21470:7;21667:13;:28;-1:-1:-1;;21667:46:0;;21409:323;35788:2825;;;;;;:::i;:::-;;:::i;58222:45::-;;;;;;;;;;-1:-1:-1;58222:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;60542:100;;;;;;;;;;-1:-1:-1;60542:100:0;;;;;:::i;:::-;;:::i;61128:171::-;;;:::i;38709:193::-;;;;;;:::i;:::-;;:::i;60650:80::-;;;;;;;;;;-1:-1:-1;60650:80:0;;;;;:::i;:::-;;:::i;58079:32::-;;;;;;;;;;;;;;;;60942:98;;;;;;;;;;-1:-1:-1;60942:98:0;;;;;:::i;:::-;;:::i;58192:25::-;;;;;;;;;;-1:-1:-1;58192:25:0;;;;;;;;58152:35;;;;;;;;;;;;;;;;27051:152;;;;;;;;;;-1:-1:-1;27051:152:0;;;;;:::i;:::-;;:::i;57979:21::-;;;;;;;;;;;;;:::i;22593:233::-;;;;;;;;;;-1:-1:-1;22593:233:0;;;;;:::i;:::-;;:::i;5535:103::-;;;;;;;;;;;;;:::i;59672:318::-;;;;;;;;;;-1:-1:-1;59672:318:0;;;;;:::i;:::-;;:::i;4887:87::-;;;;;;;;;;-1:-1:-1;4960:6:0;;-1:-1:-1;;;;;4960:6:0;4887:87;;25834:104;;;;;;;;;;;;;:::i;58621:517::-;;;;;;:::i;:::-;;:::i;32707:234::-;;;;;;;;;;-1:-1:-1;32707:234:0;;;;;:::i;:::-;;:::i;39500:407::-;;;;;;:::i;:::-;;:::i;58116:31::-;;;;;;;;;;;;;;;;60000:418;;;;;;;;;;-1:-1:-1;60000:418:0;;;;;:::i;:::-;;:::i;58272:46::-;;;;;;;;;;-1:-1:-1;58272:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;58043:31;;;;;;;;;;;;;;;;60840:96;;;;;;;;;;-1:-1:-1;60840:96:0;;;;;:::i;:::-;;:::i;60442:92::-;;;;;;;;;;-1:-1:-1;60442:92:0;;;;;:::i;:::-;;:::i;33098:164::-;;;;;;;;;;-1:-1:-1;33098:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33219:25:0;;;33195:4;33219:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33098:164;5793:201;;;;;;;;;;-1:-1:-1;5793:201:0;;;;;:::i;:::-;;:::i;24756:639::-;24841:4;-1:-1:-1;;;;;;;;;25165:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;25242:25:0;;;25165:102;:179;;;-1:-1:-1;;;;;;;;;;25319:25:0;;;25165:179;25145:199;24756:639;-1:-1:-1;;24756:639:0:o;61046:73::-;4773:13;:11;:13::i;:::-;61098:6:::1;:15:::0;;-1:-1:-1;;61098:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;61046:73::o;25658:100::-;25712:13;25745:5;25738:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25658:100;:::o;32149:218::-;32225:7;32250:16;32258:7;32250;:16::i;:::-;32245:64;;32275:34;;-1:-1:-1;;;32275:34:0;;;;;;;;;;;32245:64;-1:-1:-1;32329:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;32329:30:0;;32149:218::o;31582:408::-;31671:13;31687:16;31695:7;31687;:16::i;:::-;31671:32;-1:-1:-1;55915:10:0;-1:-1:-1;;;;;31720:28:0;;;31716:175;;31768:44;31785:5;55915:10;33098:164;:::i;31768:44::-;31763:128;;31840:35;;-1:-1:-1;;;31840:35:0;;;;;;;;;;;31763:128;31903:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;31903:35:0;-1:-1:-1;;;;;31903:35:0;;;;;;;;;31954:28;;31903:24;;31954:28;;;;;;;31660:330;31582:408;;:::o;59146:461::-;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;59216:6:::1;::::0;::::1;;59215:7;59207:50;;;::::0;-1:-1:-1;;;59207:50:0;;7409:2:1;59207:50:0::1;::::0;::::1;7391:21:1::0;7448:2;7428:18;;;7421:30;7487:32;7467:18;;;7460:60;7537:18;;59207:50:0::1;7207:354:1::0;59207:50:0::1;59264:14;59281:13;58593:1:::0;21683:12;21470:7;21667:13;:28;-1:-1:-1;;21667:46:0;;21409:323;59281:13:::1;59264:30;;59353:16;;59343:6;59309:10;:31;59320:19;55915:10:::0;;55828:105;59320:19:::1;-1:-1:-1::0;;;;;59309:31:0::1;-1:-1:-1::0;;;;;59309:31:0::1;;;;;;;;;;;;;:40;;;;:::i;:::-;:60;;59301:115;;;;-1:-1:-1::0;;;59301:115:0::1;;;;;;;:::i;:::-;59450:10;::::0;59431:15:::1;59440:6:::0;59431;:15:::1;:::i;:::-;:29;;59423:77;;;::::0;-1:-1:-1;;;59423:77:0;;7768:2:1;59423:77:0::1;::::0;::::1;7750:21:1::0;7807:2;7787:18;;;7780:30;7846:34;7826:18;;;7819:62;-1:-1:-1;;;7897:18:1;;;7890:33;7940:19;;59423:77:0::1;7566:399:1::0;59423:77:0::1;59542:6:::0;59507:10:::1;:31;55915:10:::0;59518:19:::1;-1:-1:-1::0;;;;;59507:31:0::1;-1:-1:-1::0;;;;;59507:31:0::1;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;59557:38:0::1;::::0;-1:-1:-1;55915:10:0;59588:6:::1;59557:9;:38::i;:::-;-1:-1:-1::0;;1768:1:0;2722:7;:22;59146:461::o;60738:94::-;4773:13;:11;:13::i;:::-;60804:9:::1;:22:::0;60738:94::o;35788:2825::-;35930:27;35960;35979:7;35960:18;:27::i;:::-;35930:57;;36045:4;-1:-1:-1;;;;;36004:45:0;36020:19;-1:-1:-1;;;;;36004:45:0;;36000:86;;36058:28;;-1:-1:-1;;;36058:28:0;;;;;;;;;;;36000:86;36100:27;34896:24;;;:15;:24;;;;;35124:26;;55915:10;34521:30;;;-1:-1:-1;;;;;34214:28:0;;34499:20;;;34496:56;36286:180;;36379:43;36396:4;55915:10;33098:164;:::i;36379:43::-;36374:92;;36431:35;;-1:-1:-1;;;36431:35:0;;;;;;;;;;;36374:92;-1:-1:-1;;;;;36483:16:0;;36479:52;;36508:23;;-1:-1:-1;;;36508:23:0;;;;;;;;;;;36479:52;36680:15;36677:160;;;36820:1;36799:19;36792:30;36677:160;-1:-1:-1;;;;;37217:24:0;;;;;;;:18;:24;;;;;;37215:26;;-1:-1:-1;;37215:26:0;;;37286:22;;;;;;;;;37284:24;;-1:-1:-1;37284:24:0;;;30440:11;30415:23;30411:41;30398:63;-1:-1:-1;;;30398:63:0;37579:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;37874:47:0;;37870:627;;37979:1;37969:11;;37947:19;38102:30;;;:17;:30;;;;;;38098:384;;38240:13;;38225:11;:28;38221:242;;38387:30;;;;:17;:30;;;;;:52;;;38221:242;37928:569;37870:627;38544:7;38540:2;-1:-1:-1;;;;;38525:27:0;38534:4;-1:-1:-1;;;;;38525:27:0;;;;;;;;;;;35919:2694;;;35788:2825;;;:::o;60542:100::-;4773:13;:11;:13::i;:::-;60611:16:::1;:25:::0;60542:100::o;61128:171::-;4773:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;;-1:-1:-1::0;;;2402:63:0::1;;;;;;;:::i;:::-;1812:1;2543:7;:18:::0;61212:58:::2;::::0;61194:12:::2;::::0;61220:10:::2;::::0;61244:21:::2;::::0;61194:12;61212:58;61194:12;61212:58;61244:21;61220:10;61212:58:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61193:77;;;61285:7;61277:16;;;::::0;::::2;;-1:-1:-1::0;1768:1:0::1;2722:7;:22:::0;61128:171::o;38709:193::-;38855:39;38872:4;38878:2;38882:7;38855:39;;;;;;;;;;;;:16;:39::i;:::-;38709:193;;;:::o;60650:80::-;4773:13;:11;:13::i;:::-;60709:4:::1;:15:::0;60650:80::o;60942:98::-;4773:13;:11;:13::i;:::-;61013:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;60942:98:::0;:::o;27051:152::-;27123:7;27166:27;27185:7;27166:18;:27::i;57979:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22593:233::-;22665:7;-1:-1:-1;;;;;22689:19:0;;22685:60;;22717:28;;-1:-1:-1;;;22717:28:0;;;;;;;;;;;22685:60;-1:-1:-1;;;;;;22763:25:0;;;;;:18;:25;;;;;;16752:13;22763:55;;22593:233::o;5535:103::-;4773:13;:11;:13::i;:::-;5600:30:::1;5627:1;5600:18;:30::i;:::-;5535:103::o:0;59672:318::-;4773:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;;-1:-1:-1::0;;;2402:63:0::1;;;;;;;:::i;:::-;1812:1;2543:7;:18:::0;59773:15;59765:55:::2;;;::::0;-1:-1:-1;;;59765:55:0;;10762:2:1;59765:55:0::2;::::0;::::2;10744:21:1::0;10801:2;10781:18;;;10774:30;10840:29;10820:18;;;10813:57;10887:18;;59765:55:0::2;10560:351:1::0;59765:55:0::2;59827:14;59844:13;58593:1:::0;21683:12;21470:7;21667:13;:28;-1:-1:-1;;21667:46:0;;21409:323;59844:13:::2;59896:9;::::0;59827:30;;-1:-1:-1;59872:20:0::2;59881:11:::0;59827:30;59872:20:::2;:::i;:::-;:33;;59864:68;;;::::0;-1:-1:-1;;;59864:68:0;;9279:2:1;59864:68:0::2;::::0;::::2;9261:21:1::0;9318:2;9298:18;;;9291:30;-1:-1:-1;;;9337:18:1;;;9330:52;9399:18;;59864:68:0::2;9077:346:1::0;59864:68:0::2;59943:35;59953:11;59966;59943:9;:35::i;:::-;-1:-1:-1::0;;1768:1:0::1;2722:7;:22:::0;-1:-1:-1;59672:318:0:o;25834:104::-;25890:13;25923:7;25916:14;;;;;:::i;58621:517::-;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;;;;;;:::i;:::-;1812:1;2543:7;:18;58695:6:::1;::::0;::::1;;58694:7;58686:50;;;::::0;-1:-1:-1;;;58686:50:0;;7409:2:1;58686:50:0::1;::::0;::::1;7391:21:1::0;7448:2;7428:18;;;7421:30;7487:32;7467:18;;;7460:60;7537:18;;58686:50:0::1;7207:354:1::0;58686:50:0::1;58743:14;58760:13;58593:1:::0;21683:12;21470:7;21667:13;:28;-1:-1:-1;;21667:46:0;;21409:323;58760:13:::1;58743:30;;58833:12;;58823:6;58788:11;:32;58800:19;55915:10:::0;;55828:105;58800:19:::1;-1:-1:-1::0;;;;;58788:32:0::1;-1:-1:-1::0;;;;;58788:32:0::1;;;;;;;;;;;;;:41;;;;:::i;:::-;:57;;58780:112;;;;-1:-1:-1::0;;;58780:112:0::1;;;;;;;:::i;:::-;58926:9;::::0;58907:15:::1;58916:6:::0;58907;:15:::1;:::i;:::-;:28;;58899:58;;;::::0;-1:-1:-1;;;58899:58:0;;8579:2:1;58899:58:0::1;::::0;::::1;8561:21:1::0;8618:2;8598:18;;;8591:30;-1:-1:-1;;;8637:18:1;;;8630:47;8694:18;;58899:58:0::1;8377:341:1::0;58899:58:0::1;58992:6;58985:4;;:13;;;;:::i;:::-;58972:9;:26;;58964:64;;;::::0;-1:-1:-1;;;58964:64:0;;8925:2:1;58964:64:0::1;::::0;::::1;8907:21:1::0;8964:2;8944:18;;;8937:30;9003:27;8983:18;;;8976:55;9048:18;;58964:64:0::1;8723:349:1::0;58964:64:0::1;59073:6:::0;59037:11:::1;:32;55915:10:::0;59049:19:::1;55828:105:::0;32707:234;55915:10;32802:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;32802:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;32802:60:0;;;;;;;;;;32878:55;;6514:41:1;;;32802:49:0;;55915:10;32878:55;;6487:18:1;32878:55:0;;;;;;;32707:234;;:::o;39500:407::-;39675:31;39688:4;39694:2;39698:7;39675:12;:31::i;:::-;-1:-1:-1;;;;;39721:14:0;;;:19;39717:183;;39760:56;39791:4;39797:2;39801:7;39810:5;39760:30;:56::i;:::-;39755:145;;39844:40;;-1:-1:-1;;;39844:40:0;;;;;;;;;;;39755:145;39500:407;;;;:::o;60000:418::-;60098:13;60139:16;60147:7;60139;:16::i;:::-;60123:98;;;;-1:-1:-1;;;60123:98:0;;6992:2:1;60123:98:0;;;6974:21:1;7031:2;7011:18;;;7004:30;7070:34;7050:18;;;7043:62;-1:-1:-1;;;7121:18:1;;;7114:46;7177:19;;60123:98:0;6790:412:1;60123:98:0;60230:28;60261:10;:8;:10::i;:::-;60230:41;;60316:1;60291:14;60285:28;:32;:127;;;;;;;;;;;;;;;;;60353:14;60369:18;60379:7;60369:9;:18::i;:::-;60336:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60285:127;60278:134;60000:418;-1:-1:-1;;;60000:418:0:o;60840:96::-;4773:13;:11;:13::i;:::-;60907:10:::1;:23:::0;60840:96::o;60442:92::-;4773:13;:11;:13::i;:::-;60507:12:::1;:21:::0;60442:92::o;5793:201::-;4773:13;:11;:13::i;:::-;-1:-1:-1;;;;;5882:22:0;::::1;5874:73;;;::::0;-1:-1:-1;;;5874:73:0;;8172:2:1;5874:73:0::1;::::0;::::1;8154:21:1::0;8211:2;8191:18;;;8184:30;8250:34;8230:18;;;8223:62;-1:-1:-1;;;8301:18:1;;;8294:36;8347:19;;5874:73:0::1;7970:402:1::0;5874:73:0::1;5958:28;5977:8;5958:18;:28::i;:::-;5793:201:::0;:::o;5052:132::-;4960:6;;-1:-1:-1;;;;;4960:6:0;55915:10;5116:23;5108:68;;;;-1:-1:-1;;;5108:68:0;;9630:2:1;5108:68:0;;;9612:21:1;;;9649:18;;;9642:30;9708:34;9688:18;;;9681:62;9760:18;;5108:68:0;9428:356:1;33520:282:0;33585:4;33641:7;58593:1;33622:26;;:66;;;;;33675:13;;33665:7;:23;33622:66;:153;;;;-1:-1:-1;;33726:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;33726:44:0;:49;;33520:282::o;49660:112::-;49737:27;49747:2;49751:8;49737:27;;;;;;;;;;;;:9;:27::i;28206:1275::-;28273:7;28308;;58593:1;28357:23;28353:1061;;28410:13;;28403:4;:20;28399:1015;;;28448:14;28465:23;;;:17;:23;;;;;;-1:-1:-1;;;28554:24:0;;28550:845;;29219:113;29226:11;29219:113;;-1:-1:-1;;;29297:6:0;29279:25;;;;:17;:25;;;;;;29219:113;;28550:845;28425:989;28399:1015;29442:31;;-1:-1:-1;;;29442:31:0;;;;;;;;;;;6154:191;6247:6;;;-1:-1:-1;;;;;6264:17:0;;;-1:-1:-1;;;;;;6264:17:0;;;;;;;6297:40;;6247:6;;;6264:17;6247:6;;6297:40;;6228:16;;6297:40;6217:128;6154:191;:::o;41991:716::-;42175:88;;-1:-1:-1;;;42175:88:0;;42154:4;;-1:-1:-1;;;;;42175:45:0;;;;;:88;;55915:10;;42242:4;;42248:7;;42257:5;;42175:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42175:88:0;;;;;;;;-1:-1:-1;;42175:88:0;;;;;;;;;;;;:::i;:::-;;;42171:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42458:13:0;;42454:235;;42504:40;;-1:-1:-1;;;42504:40:0;;;;;;;;;;;42454:235;42647:6;42641:13;42632:6;42628:2;42624:15;42617:38;42171:529;-1:-1:-1;;;;;;42334:64:0;-1:-1:-1;;;42334:64:0;;-1:-1:-1;42171:529:0;41991:716;;;;;;:::o;58391:102::-;58451:13;58480:7;58473:14;;;;;:::i;56035:1745::-;56100:17;56534:4;56527;56521:11;56517:22;56626:1;56620:4;56613:15;56701:4;56698:1;56694:12;56687:19;;;56783:1;56778:3;56771:14;56887:3;57126:5;57108:428;57174:1;57169:3;57165:11;57158:18;;57345:2;57339:4;57335:13;57331:2;57327:22;57322:3;57314:36;57439:2;57429:13;;;57496:25;;57514:5;;57496:25;57108:428;;;-1:-1:-1;57566:13:0;;;-1:-1:-1;;57681:14:0;;;57743:19;;;57681:14;56035:1745;-1:-1:-1;56035:1745:0:o;48887:689::-;49018:19;49024:2;49028:8;49018:5;:19::i;:::-;-1:-1:-1;;;;;49079:14:0;;;:19;49075:483;;49119:11;49133:13;49181:14;;;49214:233;49245:62;49284:1;49288:2;49292:7;;;;;;49301:5;49245:30;:62::i;:::-;49240:167;;49343:40;;-1:-1:-1;;;49343:40:0;;;;;;;;;;;49240:167;49442:3;49434:5;:11;49214:233;;49529:3;49512:13;;:20;49508:34;;49534:8;;;49508:34;49100:458;;48887:689;;;:::o;43169:2966::-;43242:20;43265:13;43293;43289:44;;43315:18;;-1:-1:-1;;;43315:18:0;;;;;;;;;;;43289:44;-1:-1:-1;;;;;43821:22:0;;;;;;:18;:22;;;;16890:2;43821:22;;;:71;;43859:32;43847:45;;43821:71;;;44135:31;;;:17;:31;;;;;-1:-1:-1;30871:15:0;;30845:24;30841:46;30440:11;30415:23;30411:41;30408:52;30398:63;;44135:173;;44370:23;;;;44135:31;;43821:22;;45135:25;43821:22;;44988:335;45649:1;45635:12;45631:20;45589:346;45690:3;45681:7;45678:16;45589:346;;45908:7;45898:8;45895:1;45868:25;45865:1;45862;45857:59;45743:1;45730:15;45589:346;;;-1:-1:-1;45968:13:0;45964:45;;45990:19;;-1:-1:-1;;;45990:19:0;;;;;;;;;;;45964:45;46026:13;:19;-1:-1:-1;38709:193:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:254::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4481:9;4468:23;4458:33;;4510:38;4544:2;4533:9;4529:18;4510:38;:::i;4559:257::-;4600:3;4638:5;4632:12;4665:6;4660:3;4653:19;4681:63;4737:6;4730:4;4725:3;4721:14;4714:4;4707:5;4703:16;4681:63;:::i;:::-;4798:2;4777:15;-1:-1:-1;;4773:29:1;4764:39;;;;4805:4;4760:50;;4559:257;-1:-1:-1;;4559:257:1:o;4821:637::-;5101:3;5139:6;5133:13;5155:53;5201:6;5196:3;5189:4;5181:6;5177:17;5155:53;:::i;:::-;5271:13;;5230:16;;;;5293:57;5271:13;5230:16;5327:4;5315:17;;5293:57;:::i;:::-;-1:-1:-1;;;5372:20:1;;5401:22;;;5450:1;5439:13;;4821:637;-1:-1:-1;;;;4821:637:1:o;5881:488::-;-1:-1:-1;;;;;6150:15:1;;;6132:34;;6202:15;;6197:2;6182:18;;6175:43;6249:2;6234:18;;6227:34;;;6297:3;6292:2;6277:18;;6270:31;;;6075:4;;6318:45;;6343:19;;6335:6;6318:45;:::i;:::-;6310:53;5881:488;-1:-1:-1;;;;;;5881:488:1:o;6566:219::-;6715:2;6704:9;6697:21;6678:4;6735:44;6775:2;6764:9;6760:18;6752:6;6735:44;:::i;9789:406::-;9991:2;9973:21;;;10030:2;10010:18;;;10003:30;10069:34;10064:2;10049:18;;10042:62;-1:-1:-1;;;10135:2:1;10120:18;;10113:40;10185:3;10170:19;;9789:406::o;10200:355::-;10402:2;10384:21;;;10441:2;10421:18;;;10414:30;10480:33;10475:2;10460:18;;10453:61;10546:2;10531:18;;10200:355::o;11098:128::-;11138:3;11169:1;11165:6;11162:1;11159:13;11156:39;;;11175:18;;:::i;:::-;-1:-1:-1;11211:9:1;;11098:128::o;11231:168::-;11271:7;11337:1;11333;11329:6;11325:14;11322:1;11319:21;11314:1;11307:9;11300:17;11296:45;11293:71;;;11344:18;;:::i;:::-;-1:-1:-1;11384:9:1;;11231:168::o;11404:258::-;11476:1;11486:113;11500:6;11497:1;11494:13;11486:113;;;11576:11;;;11570:18;11557:11;;;11550:39;11522:2;11515:10;11486:113;;;11617:6;11614:1;11611:13;11608:48;;;-1:-1:-1;;11652:1:1;11634:16;;11627:27;11404:258::o;11667:380::-;11746:1;11742:12;;;;11789;;;11810:61;;11864:4;11856:6;11852:17;11842:27;;11810:61;11917:2;11909:6;11906:14;11886:18;11883:38;11880:161;;;11963:10;11958:3;11954:20;11951:1;11944:31;11998:4;11995:1;11988:15;12026:4;12023:1;12016:15;11880:161;;11667:380;;;:::o;12052:127::-;12113:10;12108:3;12104:20;12101:1;12094:31;12144:4;12141:1;12134:15;12168:4;12165:1;12158:15;12184:127;12245:10;12240:3;12236:20;12233:1;12226:31;12276:4;12273:1;12266:15;12300:4;12297:1;12290:15;12316:131;-1:-1:-1;;;;;;12390:32:1;;12380:43;;12370:71;;12437:1;12434;12427:12
Swarm Source
ipfs://f9fcd5fa9dea3a26a867413375b600d2789394491c088d371ff57e30ceca1192
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.