ETH Price: $3,475.02 (+0.74%)
Gas: 6 Gwei

Token

Future NFT Mints - Genesis NFT (FNFTM0)
 

Overview

Max Total Supply

133 FNFTM0

Holders

78

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
herm3s.eth
Balance
1 FNFTM0
0xb8b0cc3793bbbfdb997fec45828f172e5423d3e2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FutureNFTMints

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : FutureNFTMints.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/extensions/ERC721AOwnersExplicit.sol";

contract FutureNFTMints is Ownable, Pausable, ReentrancyGuard, ERC721AOwnersExplicit {
  uint256 public immutable collectionSize;
  uint256 public immutable numberOfTeamTokens;
  uint8   public immutable maxPerAddressDuringPresaleMint;
  uint8   public immutable maxPerAddressDuringPublicMint;
  uint256 public mintPrice = 250000000000000000;

  mapping(address => uint8) public allowList;
  mapping(address => uint8) public presaleList;
  bool allowListMintEnabled;
  bool presaleMintEnabled;
  bool publicMintEnabled;

  constructor(
    uint256 _collectionSize,
    uint256 _numberOfTeamTokens,
    uint8 _maxPerAddressDuringPresaleMint,
    uint8 _maxPerAddressDuringPublicMint
  ) ERC721A("Future NFT Mints - Genesis NFT", "FNFTM0") {
    collectionSize = _collectionSize;
    numberOfTeamTokens = _numberOfTeamTokens;
    maxPerAddressDuringPresaleMint = _maxPerAddressDuringPresaleMint;
    maxPerAddressDuringPublicMint = _maxPerAddressDuringPublicMint;
    require(
      _numberOfTeamTokens <= _collectionSize,
      "Team token reserve is smaller than collection size."
    );
  }

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
      if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

      return 'ipfs://QmcLrew6MJ8F2LpsE5vQffxTFTG9B2fHPjrAShufhGeEqR';
  }

  function _startTokenId() internal pure override returns (uint256) {
    return 1;
  }

  function setMintPrice(uint256 _mintPrice) external onlyOwner {
    mintPrice = _mintPrice;
  }

  function setAllowList(address[] calldata addresses) external onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      allowList[addresses[i]] = maxPerAddressDuringPresaleMint;
    }
  }

  function setPresaleList(address[] calldata addresses) external onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      presaleList[addresses[i]] = maxPerAddressDuringPresaleMint;
    }
  }

  function ownerMint(uint256 quantity) external onlyOwner {
    require(totalSupply() + quantity <= numberOfTeamTokens, "too many already minted before owner mint");
    _safeMint(msg.sender, quantity);
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

  function allowListMint(uint256 quantity) external payable callerIsUser {
    require(isAllowListMintEnabled(), "allow list mint has not begun");
    require(allowList[msg.sender] >= 0, "Address not in allow list");
    require(allowList[msg.sender] > 0, "Address has no remaining allow list mints.");
    require(numberMinted(msg.sender) + quantity <= maxPerAddressDuringPresaleMint, "user mint total exceeds maxPerAddressDuringPresaleMint");
    require(totalSupply() + quantity <= collectionSize, "mint total exceeds collectionSize");
    requireSufficientPayment(quantity * mintPrice);
    allowList[msg.sender]--;
    _safeMint(msg.sender, quantity);
  }

  function presaleMint(uint256 quantity) external payable callerIsUser {
    require(isPresaleMintEnabled(), "presale has not begun");
    require(presaleList[msg.sender] >= 0, "Address not in presale list");
    require(presaleList[msg.sender] > 0, "Address has no remaining presale mints.");
    require(numberMinted(msg.sender) + quantity <= maxPerAddressDuringPresaleMint, "user mint total exceeds maxPerAddressDuringPresaleMint");
    require(totalSupply() + quantity <= collectionSize, "mint total exceeds collectionSize");
    requireSufficientPayment(quantity * mintPrice);
    presaleList[msg.sender]--;
    _safeMint(msg.sender, quantity);
  }

  function publicMint(uint256 quantity) external payable callerIsUser {
    require(isPublicMintEnabled(), "public mint has not begun");
    require(numberMinted(msg.sender) + quantity <= maxPerAddressDuringPublicMint, "user mint total exceeds maxPerAddressDuringPublicMint");
    require(totalSupply() + quantity <= collectionSize, "mint total exceeds collectionSize");
    requireSufficientPayment(quantity * mintPrice);
    _safeMint(msg.sender, quantity);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function requireSufficientPayment(uint256 totalCost) private {
    require(msg.value >= totalCost, "insufficient ETH payment");
  }

  function isAllowListMintEnabled() public view returns(bool) {
    return allowListMintEnabled;
  }

  function isPresaleMintEnabled() public view returns(bool) {
    return presaleMintEnabled;
  }

  function isPublicMintEnabled() public view returns(bool) {
    return publicMintEnabled;
  }

  function enableAllowListMint() external onlyOwner {
    allowListMintEnabled = true;
  }

  function enablePresaleMint() external onlyOwner {
    presaleMintEnabled = true;
  }

  function enablePublicMint() external onlyOwner {
    publicMintEnabled = true;
  }

  function pause() public onlyOwner {
    _pause();
  }

  function unpause() public onlyOwner {
    _unpause();
  }

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

  function getOwnershipAt(uint256 index) public view returns (TokenOwnership memory) {
    return _ownerships[index];
  }

  function withdrawFunds() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }
}

File 2 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 15 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 5 of 15 : ERC721AOwnersExplicit.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../ERC721A.sol';

error AllOwnershipsHaveBeenSet();
error QuantityMustBeNonZero();
error NoTokensMintedYet();

abstract contract ERC721AOwnersExplicit is ERC721A {
    uint256 public nextOwnerToExplicitlySet;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        if (quantity == 0) revert QuantityMustBeNonZero();
        if (_currentIndex == _startTokenId()) revert NoTokensMintedYet();
        uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet;
        if (_nextOwnerToExplicitlySet == 0) {
            _nextOwnerToExplicitlySet = _startTokenId();
        }
        if (_nextOwnerToExplicitlySet >= _currentIndex) revert AllOwnershipsHaveBeenSet();

        // Index underflow is impossible.
        // Counter or index overflow is incredibly unrealistic.
        unchecked {
            uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1;

            // Set the end index to be the last token index
            if (endIndex + 1 > _currentIndex) {
                endIndex = _currentIndex - 1;
            }

            for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) {
                if (_ownerships[i].addr == address(0) && !_ownerships[i].burned) {
                    TokenOwnership memory ownership = ownershipOf(i);
                    _ownerships[i].addr = ownership.addr;
                    _ownerships[i].startTimestamp = ownership.startTimestamp;
                }
            }

            nextOwnerToExplicitlySet = endIndex + 1;
        }
    }
}

File 6 of 15 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 7 of 15 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _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 ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary 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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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, tokenId.toString())) : '';
    }

    /**
     * @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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // 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 {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @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 {}
}

File 8 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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 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);

    /**
     * @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 calldata data
    ) external;
}

File 9 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

File 11 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 12 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 13 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 14 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 15 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_collectionSize","type":"uint256"},{"internalType":"uint256","name":"_numberOfTeamTokens","type":"uint256"},{"internalType":"uint8","name":"_maxPerAddressDuringPresaleMint","type":"uint8"},{"internalType":"uint8","name":"_maxPerAddressDuringPublicMint","type":"uint8"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AllOwnershipsHaveBeenSet","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"NoTokensMintedYet","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"QuantityMustBeNonZero","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowList","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableAllowListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePresaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePublicMint","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":"index","type":"uint256"}],"name":"getOwnershipAt","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringPresaleMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringPublicMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfTeamTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleList","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setPresaleList","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040526703782dace9d90000600b553480156200001e57600080fd5b5060405162002b2438038062002b248339810160408190526200004191620002c6565b6040518060400160405280601e81526020017f467574757265204e4654204d696e7473202d2047656e65736973204e46540000815250604051806040016040528060068152602001650464e46544d360d41b815250620000b0620000aa620001b560201b60201c565b620001b9565b6000805460ff60a01b19169055600180558151620000d690600490602085019062000209565b508051620000ec90600590602084019062000209565b5060016002555050608084905260a08390527fff0000000000000000000000000000000000000000000000000000000000000060f883811b821660c05282901b1660e05283831115620001ab5760405162461bcd60e51b815260206004820152603360248201527f5465616d20746f6b656e207265736572766520697320736d616c6c657220746860448201527f616e20636f6c6c656374696f6e2073697a652e00000000000000000000000000606482015260840160405180910390fd5b505050506200034d565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002179062000310565b90600052602060002090601f0160209004810192826200023b576000855562000286565b82601f106200025657805160ff191683800117855562000286565b8280016001018555821562000286579182015b828111156200028657825182559160200191906001019062000269565b506200029492915062000298565b5090565b5b8082111562000294576000815560010162000299565b805160ff81168114620002c157600080fd5b919050565b60008060008060808587031215620002dc578384fd5b8451935060208501519250620002f560408601620002af565b91506200030560608601620002af565b905092959194509250565b600181811c908216806200032557607f821691505b602082108114156200034757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160f81c60e05160f81c612758620003cc6000396000818161060a0152610cd90152600081816106a601528181610ec3015281816110f90152818161125a015261150b01526000818161058e01526116540152600081816104d001528181610d7d0152818161114f015261156101526127586000f3fe6080604052600436106102725760003560e01c80636ad9b2791161014f578063a22cb465116100c1578063dc33e6811161007a578063dc33e68114610766578063e985e9c514610786578063f19e75d4146107cf578063f2523633146107ef578063f2fde38b146108a9578063f4a0a528146108c957600080fd5b8063a22cb465146106c8578063b88d4fde146106e8578063c87b56dd14610708578063c9b298f114610728578063d62f3b1c1461073b578063d7224ba01461075057600080fd5b8063828b038011610113578063828b0380146105f85780638456cb591461062c5780638da5cb5b14610641578063938c740c1461065f57806395d89b411461067f5780639c5d63761461069457600080fd5b80636ad9b279146105675780636c9887d61461057c57806370a08231146105b0578063715018a6146105d057806379995c11146105e557600080fd5b80632d20fb60116101e857806342842e0e116101ac57806342842e0e1461049e57806345c0f533146104be5780635c975abb146104f25780636352211e146105115780636447c35d146105315780636817c76c1461055157600080fd5b80632d20fb60146104245780632db11544146104445780633b6ea4af146104575780633f4ba83a1461047457806341603eba1461048957600080fd5b80630f1ec42a1161023a5780630f1ec42a1461034257806312fb92e01461035a57806318160ddd1461039c57806323b872dd146103bf57806324600fc3146103df5780632848aeaf146103f457600080fd5b80630116bc2d1461027757806301ffc9a7146102a657806306fdde03146102c6578063081812fc146102e8578063095ea7b314610320575b600080fd5b34801561028357600080fd5b50600e5462010000900460ff165b60405190151581526020015b60405180910390f35b3480156102b257600080fd5b506102916102c1366004612413565b6108e9565b3480156102d257600080fd5b506102db61093b565b60405161029d91906124eb565b3480156102f457600080fd5b5061030861030336600461244b565b6109cd565b6040516001600160a01b03909116815260200161029d565b34801561032c57600080fd5b5061034061033b36600461237a565b610a11565b005b34801561034e57600080fd5b50600e5460ff16610291565b34801561036657600080fd5b5061038a6103753660046121dd565b600d6020526000908152604090205460ff1681565b60405160ff909116815260200161029d565b3480156103a857600080fd5b506103b1610a9f565b60405190815260200161029d565b3480156103cb57600080fd5b506103406103da366004612230565b610aad565b3480156103eb57600080fd5b50610340610ab8565b34801561040057600080fd5b5061038a61040f3660046121dd565b600c6020526000908152604090205460ff1681565b34801561043057600080fd5b5061034061043f36600461244b565b610bd5565b61034061045236600461244b565b610c60565b34801561046357600080fd5b50600e54610100900460ff16610291565b34801561048057600080fd5b50610340610df0565b34801561049557600080fd5b50610340610e24565b3480156104aa57600080fd5b506103406104b9366004612230565b610e5f565b3480156104ca57600080fd5b506103b17f000000000000000000000000000000000000000000000000000000000000000081565b3480156104fe57600080fd5b50600054600160a01b900460ff16610291565b34801561051d57600080fd5b5061030861052c36600461244b565b610e7a565b34801561053d57600080fd5b5061034061054c3660046123a3565b610e8c565b34801561055d57600080fd5b506103b1600b5481565b34801561057357600080fd5b50610340610f58565b34801561058857600080fd5b506103b17f000000000000000000000000000000000000000000000000000000000000000081565b3480156105bc57600080fd5b506103b16105cb3660046121dd565b610f91565b3480156105dc57600080fd5b50610340610fe0565b6103406105f336600461244b565b611014565b34801561060457600080fd5b5061038a7f000000000000000000000000000000000000000000000000000000000000000081565b34801561063857600080fd5b506103406111f1565b34801561064d57600080fd5b506000546001600160a01b0316610308565b34801561066b57600080fd5b5061034061067a3660046123a3565b611223565b34801561068b57600080fd5b506102db6112ef565b3480156106a057600080fd5b5061038a7f000000000000000000000000000000000000000000000000000000000000000081565b3480156106d457600080fd5b506103406106e3366004612340565b6112fe565b3480156106f457600080fd5b5061034061070336600461226b565b611394565b34801561071457600080fd5b506102db61072336600461244b565b6113e5565b61034061073636600461244b565b61142c565b34801561074757600080fd5b506103406115e0565b34801561075c57600080fd5b506103b1600a5481565b34801561077257600080fd5b506103b16107813660046121dd565b61161d565b34801561079257600080fd5b506102916107a13660046121fe565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b3480156107db57600080fd5b506103406107ea36600461244b565b611628565b3480156107fb57600080fd5b5061087261080a36600461244b565b604080516060808201835260008083526020808401829052928401819052938452600682529282902082519384018352546001600160a01b0381168452600160a01b810467ffffffffffffffff1691840191909152600160e01b900460ff1615159082015290565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff16908201529181015115159082015260600161029d565b3480156108b557600080fd5b506103406108c43660046121dd565b6116e6565b3480156108d557600080fd5b506103406108e436600461244b565b61177e565b60006001600160e01b031982166380ac58cd60e01b148061091a57506001600160e01b03198216635b5e139f60e01b145b8061093557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606004805461094a90612655565b80601f016020809104026020016040519081016040528092919081815260200182805461097690612655565b80156109c35780601f10610998576101008083540402835291602001916109c3565b820191906000526020600020905b8154815290600101906020018083116109a657829003601f168201915b5050505050905090565b60006109d8826117ad565b6109f5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000610a1c82610e7a565b9050806001600160a01b0316836001600160a01b03161415610a515760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a715750610a6f81336107a1565b155b15610a8f576040516367d9dca160e11b815260040160405180910390fd5b610a9a8383836117e6565b505050565b600354600254036000190190565b610a9a838383611842565b6000546001600160a01b03163314610aeb5760405162461bcd60e51b8152600401610ae29061258b565b60405180910390fd5b60026001541415610b3e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ae2565b6002600155604051600090339047908381818185875af1925050503d8060008114610b85576040519150601f19603f3d011682016040523d82523d6000602084013e610b8a565b606091505b5050905080610bce5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610ae2565b5060018055565b6000546001600160a01b03163314610bff5760405162461bcd60e51b8152600401610ae29061258b565b60026001541415610c525760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ae2565b6002600155610bce81611a58565b323314610c7f5760405162461bcd60e51b8152600401610ae290612554565b600e5462010000900460ff16610cd75760405162461bcd60e51b815260206004820152601960248201527f7075626c6963206d696e7420686173206e6f7420626567756e000000000000006044820152606401610ae2565b7f000000000000000000000000000000000000000000000000000000000000000060ff1681610d053361161d565b610d0f9190612601565b1115610d7b5760405162461bcd60e51b815260206004820152603560248201527f75736572206d696e7420746f74616c2065786365656473206d61785065724164604482015274191c995cdcd11d5c9a5b99d41d589b1a58d35a5b9d605a1b6064820152608401610ae2565b7f000000000000000000000000000000000000000000000000000000000000000081610da5610a9f565b610daf9190612601565b1115610dcd5760405162461bcd60e51b8152600401610ae2906125c0565b610de3600b5482610dde9190612619565b611b94565b610ded3382611be4565b50565b6000546001600160a01b03163314610e1a5760405162461bcd60e51b8152600401610ae29061258b565b610e22611c02565b565b6000546001600160a01b03163314610e4e5760405162461bcd60e51b8152600401610ae29061258b565b600e805461ff001916610100179055565b610a9a83838360405180602001604052806000815250611394565b6000610e8582611c9f565b5192915050565b6000546001600160a01b03163314610eb65760405162461bcd60e51b8152600401610ae29061258b565b60005b81811015610a9a577f0000000000000000000000000000000000000000000000000000000000000000600c6000858585818110610f0657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610f1b91906121dd565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580610f5081612690565b915050610eb9565b6000546001600160a01b03163314610f825760405162461bcd60e51b8152600401610ae29061258b565b600e805460ff19166001179055565b60006001600160a01b038216610fba576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461100a5760405162461bcd60e51b8152600401610ae29061258b565b610e226000611dc8565b3233146110335760405162461bcd60e51b8152600401610ae290612554565b600e5460ff166110855760405162461bcd60e51b815260206004820152601d60248201527f616c6c6f77206c697374206d696e7420686173206e6f7420626567756e0000006044820152606401610ae2565b336000908152600c602052604090205460ff166110f75760405162461bcd60e51b815260206004820152602a60248201527f4164647265737320686173206e6f2072656d61696e696e6720616c6c6f77206c60448201526934b9ba1036b4b73a399760b11b6064820152608401610ae2565b7f000000000000000000000000000000000000000000000000000000000000000060ff16816111253361161d565b61112f9190612601565b111561114d5760405162461bcd60e51b8152600401610ae2906124fe565b7f000000000000000000000000000000000000000000000000000000000000000081611177610a9f565b6111819190612601565b111561119f5760405162461bcd60e51b8152600401610ae2906125c0565b6111b0600b5482610dde9190612619565b336000908152600c60205260408120805460ff16916111ce83612638565b91906101000a81548160ff021916908360ff16021790555050610ded3382611be4565b6000546001600160a01b0316331461121b5760405162461bcd60e51b8152600401610ae29061258b565b610e22611e18565b6000546001600160a01b0316331461124d5760405162461bcd60e51b8152600401610ae29061258b565b60005b81811015610a9a577f0000000000000000000000000000000000000000000000000000000000000000600d600085858581811061129d57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906112b291906121dd565b6001600160a01b031681526020810191909152604001600020805460ff191660ff92909216919091179055806112e781612690565b915050611250565b60606005805461094a90612655565b6001600160a01b0382163314156113285760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61139f848484611842565b6001600160a01b0383163b151580156113c157506113bf84848484611ea0565b155b156113df576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606113f0826117ad565b61140d57604051630a14c4b560e41b815260040160405180910390fd5b6040518060600160405280603581526020016126ee6035913992915050565b32331461144b5760405162461bcd60e51b8152600401610ae290612554565b600e54610100900460ff1661149a5760405162461bcd60e51b8152602060048201526015602482015274383932b9b0b632903430b9903737ba103132b3bab760591b6044820152606401610ae2565b336000908152600d602052604090205460ff166115095760405162461bcd60e51b815260206004820152602760248201527f4164647265737320686173206e6f2072656d61696e696e672070726573616c656044820152661036b4b73a399760c91b6064820152608401610ae2565b7f000000000000000000000000000000000000000000000000000000000000000060ff16816115373361161d565b6115419190612601565b111561155f5760405162461bcd60e51b8152600401610ae2906124fe565b7f000000000000000000000000000000000000000000000000000000000000000081611589610a9f565b6115939190612601565b11156115b15760405162461bcd60e51b8152600401610ae2906125c0565b6115c2600b5482610dde9190612619565b336000908152600d60205260408120805460ff16916111ce83612638565b6000546001600160a01b0316331461160a5760405162461bcd60e51b8152600401610ae29061258b565b600e805462ff0000191662010000179055565b600061093582611f97565b6000546001600160a01b031633146116525760405162461bcd60e51b8152600401610ae29061258b565b7f00000000000000000000000000000000000000000000000000000000000000008161167c610a9f565b6116869190612601565b1115610de35760405162461bcd60e51b815260206004820152602960248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206f6044820152681ddb995c881b5a5b9d60ba1b6064820152608401610ae2565b6000546001600160a01b031633146117105760405162461bcd60e51b8152600401610ae29061258b565b6001600160a01b0381166117755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae2565b610ded81611dc8565b6000546001600160a01b031633146117a85760405162461bcd60e51b8152600401610ae29061258b565b600b55565b6000816001111580156117c1575060025482105b8015610935575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061184d82611c9f565b80519091506000906001600160a01b0316336001600160a01b0316148061187b5750815161187b90336107a1565b8061189657503361188b846109cd565b6001600160a01b0316145b9050806118b657604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146118eb5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661191257604051633a954ecd60e21b815260040160405180910390fd5b61192260008484600001516117e6565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611a0e57600254811015611a0e578251600082815260066020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80611a76576040516356be441560e01b815260040160405180910390fd5b60016002541415611a9a5760405163c0367cab60e01b815260040160405180910390fd5b600a5480611aa6575060015b6002548110611ac8576040516370e89b1b60e01b815260040160405180910390fd5b6002548282016000198101911015611ae35750600254600019015b815b818111611b89576000818152600660205260409020546001600160a01b0316158015611b275750600081815260066020526040902054600160e01b900460ff16155b15611b81576000611b3782611c9f565b805160008481526006602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611ae5565b50600101600a555050565b80341015610ded5760405162461bcd60e51b815260206004820152601860248201527f696e73756666696369656e7420455448207061796d656e7400000000000000006044820152606401610ae2565b611bfe828260405180602001604052806000815250611fed565b5050565b600054600160a01b900460ff16611c525760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610ae2565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60408051606081018252600080825260208201819052918101919091528180600111158015611ccf575060025481105b15611daf57600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611dad5780516001600160a01b031615611d43579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611da8579392505050565b611d43565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600054600160a01b900460ff1615611e655760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610ae2565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c823390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611ed59033908990889088906004016124ae565b602060405180830381600087803b158015611eef57600080fd5b505af1925050508015611f1f575060408051601f3d908101601f19168201909252611f1c9181019061242f565b60015b611f7a573d808015611f4d576040519150601f19603f3d011682016040523d82523d6000602084013e611f52565b606091505b508051611f72576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60006001600160a01b038216611fc0576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260076020526040902054600160401b900467ffffffffffffffff1690565b610a9a83838360016002546001600160a01b03851661201e57604051622e076360e81b815260040160405180910390fd5b8361203c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156120e957506001600160a01b0387163b15155b15612172575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461213a6000888480600101955088611ea0565b612157576040516368d2bf6b60e11b815260040160405180910390fd5b808214156120ef57826002541461216d57600080fd5b6121b8565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612173575b50600255611a51565b80356001600160a01b03811681146121d857600080fd5b919050565b6000602082840312156121ee578081fd5b6121f7826121c1565b9392505050565b60008060408385031215612210578081fd5b612219836121c1565b9150612227602084016121c1565b90509250929050565b600080600060608486031215612244578081fd5b61224d846121c1565b925061225b602085016121c1565b9150604084013590509250925092565b60008060008060808587031215612280578081fd5b612289856121c1565b9350612297602086016121c1565b925060408501359150606085013567ffffffffffffffff808211156122ba578283fd5b818701915087601f8301126122cd578283fd5b8135818111156122df576122df6126c1565b604051601f8201601f19908116603f01168101908382118183101715612307576123076126c1565b816040528281528a602084870101111561231f578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612352578182fd5b61235b836121c1565b91506020830135801515811461236f578182fd5b809150509250929050565b6000806040838503121561238c578182fd5b612395836121c1565b946020939093013593505050565b600080602083850312156123b5578182fd5b823567ffffffffffffffff808211156123cc578384fd5b818501915085601f8301126123df578384fd5b8135818111156123ed578485fd5b8660208260051b8501011115612401578485fd5b60209290920196919550909350505050565b600060208284031215612424578081fd5b81356121f7816126d7565b600060208284031215612440578081fd5b81516121f7816126d7565b60006020828403121561245c578081fd5b5035919050565b60008151808452815b818110156124885760208185018101518683018201520161246c565b818111156124995782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124e190830184612463565b9695505050505050565b6020815260006121f76020830184612463565b60208082526036908201527f75736572206d696e7420746f74616c2065786365656473206d61785065724164604082015275191c995cdcd11d5c9a5b99d41c995cd85b19535a5b9d60521b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f6d696e7420746f74616c206578636565647320636f6c6c656374696f6e53697a6040820152606560f81b606082015260800190565b60008219821115612614576126146126ab565b500190565b6000816000190483118215151615612633576126336126ab565b500290565b600060ff82168061264b5761264b6126ab565b6000190192915050565b600181811c9082168061266957607f821691505b6020821081141561268a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126a4576126a46126ab565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ded57600080fdfe697066733a2f2f516d634c726577364d4a3846324c707345357651666678544654473942326648506a724153687566684765457152a26469706673582212204b1ecfc097ca9725d9a99ce04924209bad65fd646e7fde9b330798481481158864736f6c6343000804003300000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636ad9b2791161014f578063a22cb465116100c1578063dc33e6811161007a578063dc33e68114610766578063e985e9c514610786578063f19e75d4146107cf578063f2523633146107ef578063f2fde38b146108a9578063f4a0a528146108c957600080fd5b8063a22cb465146106c8578063b88d4fde146106e8578063c87b56dd14610708578063c9b298f114610728578063d62f3b1c1461073b578063d7224ba01461075057600080fd5b8063828b038011610113578063828b0380146105f85780638456cb591461062c5780638da5cb5b14610641578063938c740c1461065f57806395d89b411461067f5780639c5d63761461069457600080fd5b80636ad9b279146105675780636c9887d61461057c57806370a08231146105b0578063715018a6146105d057806379995c11146105e557600080fd5b80632d20fb60116101e857806342842e0e116101ac57806342842e0e1461049e57806345c0f533146104be5780635c975abb146104f25780636352211e146105115780636447c35d146105315780636817c76c1461055157600080fd5b80632d20fb60146104245780632db11544146104445780633b6ea4af146104575780633f4ba83a1461047457806341603eba1461048957600080fd5b80630f1ec42a1161023a5780630f1ec42a1461034257806312fb92e01461035a57806318160ddd1461039c57806323b872dd146103bf57806324600fc3146103df5780632848aeaf146103f457600080fd5b80630116bc2d1461027757806301ffc9a7146102a657806306fdde03146102c6578063081812fc146102e8578063095ea7b314610320575b600080fd5b34801561028357600080fd5b50600e5462010000900460ff165b60405190151581526020015b60405180910390f35b3480156102b257600080fd5b506102916102c1366004612413565b6108e9565b3480156102d257600080fd5b506102db61093b565b60405161029d91906124eb565b3480156102f457600080fd5b5061030861030336600461244b565b6109cd565b6040516001600160a01b03909116815260200161029d565b34801561032c57600080fd5b5061034061033b36600461237a565b610a11565b005b34801561034e57600080fd5b50600e5460ff16610291565b34801561036657600080fd5b5061038a6103753660046121dd565b600d6020526000908152604090205460ff1681565b60405160ff909116815260200161029d565b3480156103a857600080fd5b506103b1610a9f565b60405190815260200161029d565b3480156103cb57600080fd5b506103406103da366004612230565b610aad565b3480156103eb57600080fd5b50610340610ab8565b34801561040057600080fd5b5061038a61040f3660046121dd565b600c6020526000908152604090205460ff1681565b34801561043057600080fd5b5061034061043f36600461244b565b610bd5565b61034061045236600461244b565b610c60565b34801561046357600080fd5b50600e54610100900460ff16610291565b34801561048057600080fd5b50610340610df0565b34801561049557600080fd5b50610340610e24565b3480156104aa57600080fd5b506103406104b9366004612230565b610e5f565b3480156104ca57600080fd5b506103b17f00000000000000000000000000000000000000000000000000000000000001f481565b3480156104fe57600080fd5b50600054600160a01b900460ff16610291565b34801561051d57600080fd5b5061030861052c36600461244b565b610e7a565b34801561053d57600080fd5b5061034061054c3660046123a3565b610e8c565b34801561055d57600080fd5b506103b1600b5481565b34801561057357600080fd5b50610340610f58565b34801561058857600080fd5b506103b17f000000000000000000000000000000000000000000000000000000000000003281565b3480156105bc57600080fd5b506103b16105cb3660046121dd565b610f91565b3480156105dc57600080fd5b50610340610fe0565b6103406105f336600461244b565b611014565b34801561060457600080fd5b5061038a7f000000000000000000000000000000000000000000000000000000000000000581565b34801561063857600080fd5b506103406111f1565b34801561064d57600080fd5b506000546001600160a01b0316610308565b34801561066b57600080fd5b5061034061067a3660046123a3565b611223565b34801561068b57600080fd5b506102db6112ef565b3480156106a057600080fd5b5061038a7f000000000000000000000000000000000000000000000000000000000000000281565b3480156106d457600080fd5b506103406106e3366004612340565b6112fe565b3480156106f457600080fd5b5061034061070336600461226b565b611394565b34801561071457600080fd5b506102db61072336600461244b565b6113e5565b61034061073636600461244b565b61142c565b34801561074757600080fd5b506103406115e0565b34801561075c57600080fd5b506103b1600a5481565b34801561077257600080fd5b506103b16107813660046121dd565b61161d565b34801561079257600080fd5b506102916107a13660046121fe565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b3480156107db57600080fd5b506103406107ea36600461244b565b611628565b3480156107fb57600080fd5b5061087261080a36600461244b565b604080516060808201835260008083526020808401829052928401819052938452600682529282902082519384018352546001600160a01b0381168452600160a01b810467ffffffffffffffff1691840191909152600160e01b900460ff1615159082015290565b6040805182516001600160a01b0316815260208084015167ffffffffffffffff16908201529181015115159082015260600161029d565b3480156108b557600080fd5b506103406108c43660046121dd565b6116e6565b3480156108d557600080fd5b506103406108e436600461244b565b61177e565b60006001600160e01b031982166380ac58cd60e01b148061091a57506001600160e01b03198216635b5e139f60e01b145b8061093557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606004805461094a90612655565b80601f016020809104026020016040519081016040528092919081815260200182805461097690612655565b80156109c35780601f10610998576101008083540402835291602001916109c3565b820191906000526020600020905b8154815290600101906020018083116109a657829003601f168201915b5050505050905090565b60006109d8826117ad565b6109f5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000610a1c82610e7a565b9050806001600160a01b0316836001600160a01b03161415610a515760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a715750610a6f81336107a1565b155b15610a8f576040516367d9dca160e11b815260040160405180910390fd5b610a9a8383836117e6565b505050565b600354600254036000190190565b610a9a838383611842565b6000546001600160a01b03163314610aeb5760405162461bcd60e51b8152600401610ae29061258b565b60405180910390fd5b60026001541415610b3e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ae2565b6002600155604051600090339047908381818185875af1925050503d8060008114610b85576040519150601f19603f3d011682016040523d82523d6000602084013e610b8a565b606091505b5050905080610bce5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610ae2565b5060018055565b6000546001600160a01b03163314610bff5760405162461bcd60e51b8152600401610ae29061258b565b60026001541415610c525760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ae2565b6002600155610bce81611a58565b323314610c7f5760405162461bcd60e51b8152600401610ae290612554565b600e5462010000900460ff16610cd75760405162461bcd60e51b815260206004820152601960248201527f7075626c6963206d696e7420686173206e6f7420626567756e000000000000006044820152606401610ae2565b7f000000000000000000000000000000000000000000000000000000000000000560ff1681610d053361161d565b610d0f9190612601565b1115610d7b5760405162461bcd60e51b815260206004820152603560248201527f75736572206d696e7420746f74616c2065786365656473206d61785065724164604482015274191c995cdcd11d5c9a5b99d41d589b1a58d35a5b9d605a1b6064820152608401610ae2565b7f00000000000000000000000000000000000000000000000000000000000001f481610da5610a9f565b610daf9190612601565b1115610dcd5760405162461bcd60e51b8152600401610ae2906125c0565b610de3600b5482610dde9190612619565b611b94565b610ded3382611be4565b50565b6000546001600160a01b03163314610e1a5760405162461bcd60e51b8152600401610ae29061258b565b610e22611c02565b565b6000546001600160a01b03163314610e4e5760405162461bcd60e51b8152600401610ae29061258b565b600e805461ff001916610100179055565b610a9a83838360405180602001604052806000815250611394565b6000610e8582611c9f565b5192915050565b6000546001600160a01b03163314610eb65760405162461bcd60e51b8152600401610ae29061258b565b60005b81811015610a9a577f0000000000000000000000000000000000000000000000000000000000000002600c6000858585818110610f0657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610f1b91906121dd565b6001600160a01b031681526020810191909152604001600020805460ff191660ff9290921691909117905580610f5081612690565b915050610eb9565b6000546001600160a01b03163314610f825760405162461bcd60e51b8152600401610ae29061258b565b600e805460ff19166001179055565b60006001600160a01b038216610fba576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461100a5760405162461bcd60e51b8152600401610ae29061258b565b610e226000611dc8565b3233146110335760405162461bcd60e51b8152600401610ae290612554565b600e5460ff166110855760405162461bcd60e51b815260206004820152601d60248201527f616c6c6f77206c697374206d696e7420686173206e6f7420626567756e0000006044820152606401610ae2565b336000908152600c602052604090205460ff166110f75760405162461bcd60e51b815260206004820152602a60248201527f4164647265737320686173206e6f2072656d61696e696e6720616c6c6f77206c60448201526934b9ba1036b4b73a399760b11b6064820152608401610ae2565b7f000000000000000000000000000000000000000000000000000000000000000260ff16816111253361161d565b61112f9190612601565b111561114d5760405162461bcd60e51b8152600401610ae2906124fe565b7f00000000000000000000000000000000000000000000000000000000000001f481611177610a9f565b6111819190612601565b111561119f5760405162461bcd60e51b8152600401610ae2906125c0565b6111b0600b5482610dde9190612619565b336000908152600c60205260408120805460ff16916111ce83612638565b91906101000a81548160ff021916908360ff16021790555050610ded3382611be4565b6000546001600160a01b0316331461121b5760405162461bcd60e51b8152600401610ae29061258b565b610e22611e18565b6000546001600160a01b0316331461124d5760405162461bcd60e51b8152600401610ae29061258b565b60005b81811015610a9a577f0000000000000000000000000000000000000000000000000000000000000002600d600085858581811061129d57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906112b291906121dd565b6001600160a01b031681526020810191909152604001600020805460ff191660ff92909216919091179055806112e781612690565b915050611250565b60606005805461094a90612655565b6001600160a01b0382163314156113285760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61139f848484611842565b6001600160a01b0383163b151580156113c157506113bf84848484611ea0565b155b156113df576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606113f0826117ad565b61140d57604051630a14c4b560e41b815260040160405180910390fd5b6040518060600160405280603581526020016126ee6035913992915050565b32331461144b5760405162461bcd60e51b8152600401610ae290612554565b600e54610100900460ff1661149a5760405162461bcd60e51b8152602060048201526015602482015274383932b9b0b632903430b9903737ba103132b3bab760591b6044820152606401610ae2565b336000908152600d602052604090205460ff166115095760405162461bcd60e51b815260206004820152602760248201527f4164647265737320686173206e6f2072656d61696e696e672070726573616c656044820152661036b4b73a399760c91b6064820152608401610ae2565b7f000000000000000000000000000000000000000000000000000000000000000260ff16816115373361161d565b6115419190612601565b111561155f5760405162461bcd60e51b8152600401610ae2906124fe565b7f00000000000000000000000000000000000000000000000000000000000001f481611589610a9f565b6115939190612601565b11156115b15760405162461bcd60e51b8152600401610ae2906125c0565b6115c2600b5482610dde9190612619565b336000908152600d60205260408120805460ff16916111ce83612638565b6000546001600160a01b0316331461160a5760405162461bcd60e51b8152600401610ae29061258b565b600e805462ff0000191662010000179055565b600061093582611f97565b6000546001600160a01b031633146116525760405162461bcd60e51b8152600401610ae29061258b565b7f00000000000000000000000000000000000000000000000000000000000000328161167c610a9f565b6116869190612601565b1115610de35760405162461bcd60e51b815260206004820152602960248201527f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206f6044820152681ddb995c881b5a5b9d60ba1b6064820152608401610ae2565b6000546001600160a01b031633146117105760405162461bcd60e51b8152600401610ae29061258b565b6001600160a01b0381166117755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae2565b610ded81611dc8565b6000546001600160a01b031633146117a85760405162461bcd60e51b8152600401610ae29061258b565b600b55565b6000816001111580156117c1575060025482105b8015610935575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061184d82611c9f565b80519091506000906001600160a01b0316336001600160a01b0316148061187b5750815161187b90336107a1565b8061189657503361188b846109cd565b6001600160a01b0316145b9050806118b657604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146118eb5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661191257604051633a954ecd60e21b815260040160405180910390fd5b61192260008484600001516117e6565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611a0e57600254811015611a0e578251600082815260066020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80611a76576040516356be441560e01b815260040160405180910390fd5b60016002541415611a9a5760405163c0367cab60e01b815260040160405180910390fd5b600a5480611aa6575060015b6002548110611ac8576040516370e89b1b60e01b815260040160405180910390fd5b6002548282016000198101911015611ae35750600254600019015b815b818111611b89576000818152600660205260409020546001600160a01b0316158015611b275750600081815260066020526040902054600160e01b900460ff16155b15611b81576000611b3782611c9f565b805160008481526006602090815260409091208054919093015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055505b600101611ae5565b50600101600a555050565b80341015610ded5760405162461bcd60e51b815260206004820152601860248201527f696e73756666696369656e7420455448207061796d656e7400000000000000006044820152606401610ae2565b611bfe828260405180602001604052806000815250611fed565b5050565b600054600160a01b900460ff16611c525760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610ae2565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60408051606081018252600080825260208201819052918101919091528180600111158015611ccf575060025481105b15611daf57600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611dad5780516001600160a01b031615611d43579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611da8579392505050565b611d43565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600054600160a01b900460ff1615611e655760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610ae2565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c823390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611ed59033908990889088906004016124ae565b602060405180830381600087803b158015611eef57600080fd5b505af1925050508015611f1f575060408051601f3d908101601f19168201909252611f1c9181019061242f565b60015b611f7a573d808015611f4d576040519150601f19603f3d011682016040523d82523d6000602084013e611f52565b606091505b508051611f72576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60006001600160a01b038216611fc0576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260076020526040902054600160401b900467ffffffffffffffff1690565b610a9a83838360016002546001600160a01b03851661201e57604051622e076360e81b815260040160405180910390fd5b8361203c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156120e957506001600160a01b0387163b15155b15612172575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461213a6000888480600101955088611ea0565b612157576040516368d2bf6b60e11b815260040160405180910390fd5b808214156120ef57826002541461216d57600080fd5b6121b8565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612173575b50600255611a51565b80356001600160a01b03811681146121d857600080fd5b919050565b6000602082840312156121ee578081fd5b6121f7826121c1565b9392505050565b60008060408385031215612210578081fd5b612219836121c1565b9150612227602084016121c1565b90509250929050565b600080600060608486031215612244578081fd5b61224d846121c1565b925061225b602085016121c1565b9150604084013590509250925092565b60008060008060808587031215612280578081fd5b612289856121c1565b9350612297602086016121c1565b925060408501359150606085013567ffffffffffffffff808211156122ba578283fd5b818701915087601f8301126122cd578283fd5b8135818111156122df576122df6126c1565b604051601f8201601f19908116603f01168101908382118183101715612307576123076126c1565b816040528281528a602084870101111561231f578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612352578182fd5b61235b836121c1565b91506020830135801515811461236f578182fd5b809150509250929050565b6000806040838503121561238c578182fd5b612395836121c1565b946020939093013593505050565b600080602083850312156123b5578182fd5b823567ffffffffffffffff808211156123cc578384fd5b818501915085601f8301126123df578384fd5b8135818111156123ed578485fd5b8660208260051b8501011115612401578485fd5b60209290920196919550909350505050565b600060208284031215612424578081fd5b81356121f7816126d7565b600060208284031215612440578081fd5b81516121f7816126d7565b60006020828403121561245c578081fd5b5035919050565b60008151808452815b818110156124885760208185018101518683018201520161246c565b818111156124995782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124e190830184612463565b9695505050505050565b6020815260006121f76020830184612463565b60208082526036908201527f75736572206d696e7420746f74616c2065786365656473206d61785065724164604082015275191c995cdcd11d5c9a5b99d41c995cd85b19535a5b9d60521b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f6d696e7420746f74616c206578636565647320636f6c6c656374696f6e53697a6040820152606560f81b606082015260800190565b60008219821115612614576126146126ab565b500190565b6000816000190483118215151615612633576126336126ab565b500290565b600060ff82168061264b5761264b6126ab565b6000190192915050565b600181811c9082168061266957607f821691505b6020821081141561268a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126a4576126a46126ab565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ded57600080fdfe697066733a2f2f516d634c726577364d4a3846324c707345357651666678544654473942326648506a724153687566684765457152a26469706673582212204b1ecfc097ca9725d9a99ce04924209bad65fd646e7fde9b330798481481158864736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005

-----Decoded View---------------
Arg [0] : _collectionSize (uint256): 500
Arg [1] : _numberOfTeamTokens (uint256): 50
Arg [2] : _maxPerAddressDuringPresaleMint (uint8): 2
Arg [3] : _maxPerAddressDuringPublicMint (uint8): 5

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005


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.