ETH Price: $3,385.73 (-1.78%)
Gas: 1 Gwei

Token

Dont Buy Poo (POO)
 

Overview

Max Total Supply

4,000 POO

Holders

2,449

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
onchain.eth
Balance
1 POO
0x6c65fb326e7734ba5508b5d043718288b43b9ed9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

4000 Poos have been Programmatically Plopped from a variety of Shitty Traits. From Devil Wings, to Sweet Corn Pieces, as in life, no two Poos are the same.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NFT

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, MIT license
File 1 of 14 : NFT.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "Ownable.sol";
import "ERC721Enumerable.sol";
import "ERC721A.sol";

contract NFT is ERC721A, Ownable {
    bool public saleIsActive = false;
    string private _baseURIextended;

    uint256 public MAX_SUPPLY;
    uint256 public currentPrice;
    uint256 public walletLimit;

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 limit,
        uint256 price,
        uint256 maxSupply
    ) ERC721A(_name, _symbol) {
        currentPrice = price;
        walletLimit = limit;
        MAX_SUPPLY = maxSupply;
    }

    function mint(uint256 amount) external payable {
        uint256 ts = totalSupply();
        uint256 minted = _numberMinted(msg.sender);

        require(saleIsActive, "Sale must be active to mint tokens");
        require(amount + minted <= walletLimit, "Exceed wallet limit");
        require(ts + amount <= MAX_SUPPLY, "Purchase would exceed max tokens");

        uint256 freeTokens = minted >= 2 ? 0 : 2 - minted;
        if (amount < freeTokens) {
            freeTokens = amount;
        }

        require(
            currentPrice * (amount - freeTokens) == msg.value,
            "Value sent is not correct"
        );

        _safeMint(msg.sender, amount);
    }

    function reserve(address to, uint256 amount) public onlyOwner {
        uint256 ts = totalSupply();
        require(ts + amount <= MAX_SUPPLY, "Purchase would exceed max tokens");
        _safeMint(to, amount);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function setSaleIsActive(bool isActive) external onlyOwner {
        saleIsActive = isActive;
    }

    function setCurrentPrice(uint256 price) external onlyOwner {
        currentPrice = price;
    }

    function setWalletLimit(uint256 limit) external onlyOwner {
        walletLimit = limit;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIextended = baseURI_;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIextended;
    }
}

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

pragma solidity ^0.8.0;

import "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 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 4 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "ERC721.sol";
import "IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 5 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "IERC721.sol";
import "IERC721Receiver.sol";
import "IERC721Metadata.sol";
import "Address.sol";
import "Context.sol";
import "Strings.sol";
import "ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "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 7 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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);
}

File 8 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 9 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 12 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 13 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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 tokenId);

    /**
     * @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 14 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "IERC721.sol";
import "IERC721Receiver.sol";
import "IERC721Metadata.sol";
import "Address.sol";
import "Context.sol";
import "Strings.sol";
import "ERC165.sol";

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
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 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) {
        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) {
        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) {
        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 {
        _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
        virtual
        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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, 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 {}
}

Settings
{
  "evmVersion": "istanbul",
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "libraries": {
    "NFT.sol": {}
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"OwnerQueryForNonexistentToken","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setCurrentPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive","type":"bool"}],"name":"setSaleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setWalletLimit","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":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526008805460ff60a01b191690553480156200001e57600080fd5b5060405162001e6e38038062001e6e833981016040819052620000419162000249565b8451859085906200005a906002906020850190620000ec565b50805162000070906003906020840190620000ec565b5050600080555062000082336200009a565b600b91909155600c91909155600a5550620003219050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000fa90620002ce565b90600052602060002090601f0160209004810192826200011e576000855562000169565b82601f106200013957805160ff191683800117855562000169565b8280016001018555821562000169579182015b82811115620001695782518255916020019190600101906200014c565b50620001779291506200017b565b5090565b5b808211156200017757600081556001016200017c565b600082601f830112620001a457600080fd5b81516001600160401b0380821115620001c157620001c16200030b565b604051601f8301601f19908116603f01168101908282118183101715620001ec57620001ec6200030b565b816040528381526020925086838588010111156200020957600080fd5b600091505b838210156200022d57858201830151818301840152908201906200020e565b838211156200023f5760008385830101525b9695505050505050565b600080600080600060a086880312156200026257600080fd5b85516001600160401b03808211156200027a57600080fd5b6200028889838a0162000192565b965060208801519150808211156200029f57600080fd5b50620002ae8882890162000192565b60408801516060890151608090990151979a919950979695509350505050565b600181811c90821680620002e357607f821691505b602082108114156200030557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611b3d80620003316000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063e985e9c511610064578063e985e9c5146104a2578063eb8d2444146104eb578063f1d5f5171461050c578063f2fde38b1461052c57600080fd5b8063b88d4fde14610442578063c87b56dd14610462578063cc47a40b1461048257600080fd5b806395d89b41116100c657806395d89b41146103e45780639d1b464a146103f9578063a0712d681461040f578063a22cb4651461042257600080fd5b806370a0823114610391578063715018a6146103b15780638da5cb5b146103c657600080fd5b806323b872dd116101595780633ccfd60b116101335780633ccfd60b1461031c57806342842e0e1461033157806355f804b3146103515780636352211e1461037157600080fd5b806323b872dd146102d057806332cb6b0c146102f05780633c8463a11461030657600080fd5b8063081812fc11610195578063081812fc14610235578063095ea7b31461026d57806318160ddd1461028d57806318b20071146102b057600080fd5b806301ffc9a7146101bc57806302c88989146101f157806306fdde0314610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611825565b61054c565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061021161020c36600461180a565b61059e565b005b34801561021f57600080fd5b506102286105ef565b6040516101e89190611959565b34801561024157600080fd5b506102556102503660046118a8565b610681565b6040516001600160a01b0390911681526020016101e8565b34801561027957600080fd5b506102116102883660046117e0565b6106c5565b34801561029957600080fd5b50600154600054035b6040519081526020016101e8565b3480156102bc57600080fd5b506102116102cb3660046118a8565b610753565b3480156102dc57600080fd5b506102116102eb3660046116fe565b610782565b3480156102fc57600080fd5b506102a2600a5481565b34801561031257600080fd5b506102a2600c5481565b34801561032857600080fd5b5061021161078d565b34801561033d57600080fd5b5061021161034c3660046116fe565b6107ea565b34801561035d57600080fd5b5061021161036c36600461185f565b610805565b34801561037d57600080fd5b5061025561038c3660046118a8565b610842565b34801561039d57600080fd5b506102a26103ac3660046116b0565b610854565b3480156103bd57600080fd5b506102116108a3565b3480156103d257600080fd5b506008546001600160a01b0316610255565b3480156103f057600080fd5b506102286108d9565b34801561040557600080fd5b506102a2600b5481565b61021161041d3660046118a8565b6108e8565b34801561042e57600080fd5b5061021161043d3660046117b6565b610acc565b34801561044e57600080fd5b5061021161045d36600461173a565b610b62565b34801561046e57600080fd5b5061022861047d3660046118a8565b610bad565b34801561048e57600080fd5b5061021161049d3660046117e0565b610c32565b3480156104ae57600080fd5b506101dc6104bd3660046116cb565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104f757600080fd5b506008546101dc90600160a01b900460ff1681565b34801561051857600080fd5b506102116105273660046118a8565b610cd3565b34801561053857600080fd5b506102116105473660046116b0565b610d02565b60006001600160e01b031982166380ac58cd60e01b148061057d57506001600160e01b03198216635b5e139f60e01b145b8061059857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146105d15760405162461bcd60e51b81526004016105c89061196c565b60405180910390fd5b60088054911515600160a01b0260ff60a01b19909216919091179055565b6060600280546105fe90611a2f565b80601f016020809104026020016040519081016040528092919081815260200182805461062a90611a2f565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b600061068c82610d9d565b6106a9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106d082610842565b9050806001600160a01b0316836001600160a01b031614156107055760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610725575061072381336104bd565b155b15610743576040516367d9dca160e11b815260040160405180910390fd5b61074e838383610dc8565b505050565b6008546001600160a01b0316331461077d5760405162461bcd60e51b81526004016105c89061196c565b600b55565b61074e838383610e24565b6008546001600160a01b031633146107b75760405162461bcd60e51b81526004016105c89061196c565b6040514790339082156108fc029083906000818181858888f193505050501580156107e6573d6000803e3d6000fd5b5050565b61074e83838360405180602001604052806000815250610b62565b6008546001600160a01b0316331461082f5760405162461bcd60e51b81526004016105c89061196c565b80516107e6906009906020840190611575565b600061084d82611014565b5192915050565b60006001600160a01b03821661087d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108cd5760405162461bcd60e51b81526004016105c89061196c565b6108d76000611130565b565b6060600380546105fe90611a2f565b60006108f76001546000540390565b33600090815260056020526040902054600854919250600160401b900467ffffffffffffffff1690600160a01b900460ff166109805760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420746f6b656044820152616e7360f01b60648201526084016105c8565b600c5461098d82856119a1565b11156109d15760405162461bcd60e51b8152602060048201526013602482015272115e18d95959081dd85b1b195d081b1a5b5a5d606a1b60448201526064016105c8565b600a546109de84846119a1565b1115610a2c5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526064016105c8565b60006002821015610a4757610a428260026119ec565b610a4a565b60005b905080841015610a575750825b34610a6282866119ec565b600b54610a6f91906119cd565b14610abc5760405162461bcd60e51b815260206004820152601960248201527f56616c75652073656e74206973206e6f7420636f72726563740000000000000060448201526064016105c8565b610ac63385611182565b50505050565b6001600160a01b038216331415610af65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b6d848484610e24565b6001600160a01b0383163b15158015610b8f5750610b8d8484848461119c565b155b15610ac6576040516368d2bf6b60e11b815260040160405180910390fd5b6060610bb882610d9d565b610bd557604051630a14c4b560e41b815260040160405180910390fd5b6000610bdf611294565b9050805160001415610c005760405180602001604052806000815250610c2b565b80610c0a846112a3565b604051602001610c1b9291906118ed565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610c5c5760405162461bcd60e51b81526004016105c89061196c565b6000610c6b6001546000540390565b600a54909150610c7b83836119a1565b1115610cc95760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526064016105c8565b61074e8383611182565b6008546001600160a01b03163314610cfd5760405162461bcd60e51b81526004016105c89061196c565b600c55565b6008546001600160a01b03163314610d2c5760405162461bcd60e51b81526004016105c89061196c565b6001600160a01b038116610d915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c8565b610d9a81611130565b50565b6000805482108015610598575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610e2f82611014565b9050836001600160a01b031681600001516001600160a01b031614610e665760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610e845750610e8485336104bd565b80610e9f575033610e9484610681565b6001600160a01b0316145b905080610ebf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610ee657604051633a954ecd60e21b815260040160405180910390fd5b610ef260008487610dc8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610fc8576000548214610fc8578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561111757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111155780516001600160a01b0316156110ab579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611110579392505050565b6110ab565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107e68282604051806020016040528060008152506113a1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111d190339089908890889060040161191c565b602060405180830381600087803b1580156111eb57600080fd5b505af192505050801561121b575060408051601f3d908101601f1916820190925261121891810190611842565b60015b611276573d808015611249576040519150601f19603f3d011682016040523d82523d6000602084013e61124e565b606091505b50805161126e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546105fe90611a2f565b6060816112c75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112f157806112db81611a6a565b91506112ea9050600a836119b9565b91506112cb565b60008167ffffffffffffffff81111561130c5761130c611adb565b6040519080825280601f01601f191660200182016040528015611336576020820181803683370190505b5090505b841561128c5761134b6001836119ec565b9150611358600a86611a85565b6113639060306119a1565b60f81b81838151811061137857611378611ac5565b60200101906001600160f81b031916908160001a90535061139a600a866119b9565b945061133a565b61074e83838360016000546001600160a01b0385166113d257604051622e076360e81b815260040160405180910390fd5b836113f05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561149d57506001600160a01b0387163b15155b15611526575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114ee600088848060010195508861119c565b61150b576040516368d2bf6b60e11b815260040160405180910390fd5b808214156114a357826000541461152157600080fd5b61156c565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611527575b5060005561100d565b82805461158190611a2f565b90600052602060002090601f0160209004810192826115a357600085556115e9565b82601f106115bc57805160ff19168380011785556115e9565b828001600101855582156115e9579182015b828111156115e95782518255916020019190600101906115ce565b506115f59291506115f9565b5090565b5b808211156115f557600081556001016115fa565b600067ffffffffffffffff8084111561162957611629611adb565b604051601f8501601f19908116603f0116810190828211818310171561165157611651611adb565b8160405280935085815286868601111561166a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461169b57600080fd5b919050565b8035801515811461169b57600080fd5b6000602082840312156116c257600080fd5b610c2b82611684565b600080604083850312156116de57600080fd5b6116e783611684565b91506116f560208401611684565b90509250929050565b60008060006060848603121561171357600080fd5b61171c84611684565b925061172a60208501611684565b9150604084013590509250925092565b6000806000806080858703121561175057600080fd5b61175985611684565b935061176760208601611684565b925060408501359150606085013567ffffffffffffffff81111561178a57600080fd5b8501601f8101871361179b57600080fd5b6117aa8782356020840161160e565b91505092959194509250565b600080604083850312156117c957600080fd5b6117d283611684565b91506116f5602084016116a0565b600080604083850312156117f357600080fd5b6117fc83611684565b946020939093013593505050565b60006020828403121561181c57600080fd5b610c2b826116a0565b60006020828403121561183757600080fd5b8135610c2b81611af1565b60006020828403121561185457600080fd5b8151610c2b81611af1565b60006020828403121561187157600080fd5b813567ffffffffffffffff81111561188857600080fd5b8201601f8101841361189957600080fd5b61128c8482356020840161160e565b6000602082840312156118ba57600080fd5b5035919050565b600081518084526118d9816020860160208601611a03565b601f01601f19169290920160200192915050565b600083516118ff818460208801611a03565b835190830190611913818360208801611a03565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061194f908301846118c1565b9695505050505050565b602081526000610c2b60208301846118c1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156119b4576119b4611a99565b500190565b6000826119c8576119c8611aaf565b500490565b60008160001904831182151516156119e7576119e7611a99565b500290565b6000828210156119fe576119fe611a99565b500390565b60005b83811015611a1e578181015183820152602001611a06565b83811115610ac65750506000910152565b600181811c90821680611a4357607f821691505b60208210811415611a6457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a7e57611a7e611a99565b5060010190565b600082611a9457611a94611aaf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d9a57600080fdfea2646970667358221220e07c4094d298df604731d16483b8acbd00f12af3e9d4bfc1700a45767b8e02b564736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000001ff973cafa80000000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000c446f6e742042757920506f6f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003504f4f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063e985e9c511610064578063e985e9c5146104a2578063eb8d2444146104eb578063f1d5f5171461050c578063f2fde38b1461052c57600080fd5b8063b88d4fde14610442578063c87b56dd14610462578063cc47a40b1461048257600080fd5b806395d89b41116100c657806395d89b41146103e45780639d1b464a146103f9578063a0712d681461040f578063a22cb4651461042257600080fd5b806370a0823114610391578063715018a6146103b15780638da5cb5b146103c657600080fd5b806323b872dd116101595780633ccfd60b116101335780633ccfd60b1461031c57806342842e0e1461033157806355f804b3146103515780636352211e1461037157600080fd5b806323b872dd146102d057806332cb6b0c146102f05780633c8463a11461030657600080fd5b8063081812fc11610195578063081812fc14610235578063095ea7b31461026d57806318160ddd1461028d57806318b20071146102b057600080fd5b806301ffc9a7146101bc57806302c88989146101f157806306fdde0314610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611825565b61054c565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061021161020c36600461180a565b61059e565b005b34801561021f57600080fd5b506102286105ef565b6040516101e89190611959565b34801561024157600080fd5b506102556102503660046118a8565b610681565b6040516001600160a01b0390911681526020016101e8565b34801561027957600080fd5b506102116102883660046117e0565b6106c5565b34801561029957600080fd5b50600154600054035b6040519081526020016101e8565b3480156102bc57600080fd5b506102116102cb3660046118a8565b610753565b3480156102dc57600080fd5b506102116102eb3660046116fe565b610782565b3480156102fc57600080fd5b506102a2600a5481565b34801561031257600080fd5b506102a2600c5481565b34801561032857600080fd5b5061021161078d565b34801561033d57600080fd5b5061021161034c3660046116fe565b6107ea565b34801561035d57600080fd5b5061021161036c36600461185f565b610805565b34801561037d57600080fd5b5061025561038c3660046118a8565b610842565b34801561039d57600080fd5b506102a26103ac3660046116b0565b610854565b3480156103bd57600080fd5b506102116108a3565b3480156103d257600080fd5b506008546001600160a01b0316610255565b3480156103f057600080fd5b506102286108d9565b34801561040557600080fd5b506102a2600b5481565b61021161041d3660046118a8565b6108e8565b34801561042e57600080fd5b5061021161043d3660046117b6565b610acc565b34801561044e57600080fd5b5061021161045d36600461173a565b610b62565b34801561046e57600080fd5b5061022861047d3660046118a8565b610bad565b34801561048e57600080fd5b5061021161049d3660046117e0565b610c32565b3480156104ae57600080fd5b506101dc6104bd3660046116cb565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104f757600080fd5b506008546101dc90600160a01b900460ff1681565b34801561051857600080fd5b506102116105273660046118a8565b610cd3565b34801561053857600080fd5b506102116105473660046116b0565b610d02565b60006001600160e01b031982166380ac58cd60e01b148061057d57506001600160e01b03198216635b5e139f60e01b145b8061059857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146105d15760405162461bcd60e51b81526004016105c89061196c565b60405180910390fd5b60088054911515600160a01b0260ff60a01b19909216919091179055565b6060600280546105fe90611a2f565b80601f016020809104026020016040519081016040528092919081815260200182805461062a90611a2f565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b600061068c82610d9d565b6106a9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106d082610842565b9050806001600160a01b0316836001600160a01b031614156107055760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610725575061072381336104bd565b155b15610743576040516367d9dca160e11b815260040160405180910390fd5b61074e838383610dc8565b505050565b6008546001600160a01b0316331461077d5760405162461bcd60e51b81526004016105c89061196c565b600b55565b61074e838383610e24565b6008546001600160a01b031633146107b75760405162461bcd60e51b81526004016105c89061196c565b6040514790339082156108fc029083906000818181858888f193505050501580156107e6573d6000803e3d6000fd5b5050565b61074e83838360405180602001604052806000815250610b62565b6008546001600160a01b0316331461082f5760405162461bcd60e51b81526004016105c89061196c565b80516107e6906009906020840190611575565b600061084d82611014565b5192915050565b60006001600160a01b03821661087d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108cd5760405162461bcd60e51b81526004016105c89061196c565b6108d76000611130565b565b6060600380546105fe90611a2f565b60006108f76001546000540390565b33600090815260056020526040902054600854919250600160401b900467ffffffffffffffff1690600160a01b900460ff166109805760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e7420746f6b656044820152616e7360f01b60648201526084016105c8565b600c5461098d82856119a1565b11156109d15760405162461bcd60e51b8152602060048201526013602482015272115e18d95959081dd85b1b195d081b1a5b5a5d606a1b60448201526064016105c8565b600a546109de84846119a1565b1115610a2c5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526064016105c8565b60006002821015610a4757610a428260026119ec565b610a4a565b60005b905080841015610a575750825b34610a6282866119ec565b600b54610a6f91906119cd565b14610abc5760405162461bcd60e51b815260206004820152601960248201527f56616c75652073656e74206973206e6f7420636f72726563740000000000000060448201526064016105c8565b610ac63385611182565b50505050565b6001600160a01b038216331415610af65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b6d848484610e24565b6001600160a01b0383163b15158015610b8f5750610b8d8484848461119c565b155b15610ac6576040516368d2bf6b60e11b815260040160405180910390fd5b6060610bb882610d9d565b610bd557604051630a14c4b560e41b815260040160405180910390fd5b6000610bdf611294565b9050805160001415610c005760405180602001604052806000815250610c2b565b80610c0a846112a3565b604051602001610c1b9291906118ed565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610c5c5760405162461bcd60e51b81526004016105c89061196c565b6000610c6b6001546000540390565b600a54909150610c7b83836119a1565b1115610cc95760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526064016105c8565b61074e8383611182565b6008546001600160a01b03163314610cfd5760405162461bcd60e51b81526004016105c89061196c565b600c55565b6008546001600160a01b03163314610d2c5760405162461bcd60e51b81526004016105c89061196c565b6001600160a01b038116610d915760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105c8565b610d9a81611130565b50565b6000805482108015610598575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610e2f82611014565b9050836001600160a01b031681600001516001600160a01b031614610e665760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610e845750610e8485336104bd565b80610e9f575033610e9484610681565b6001600160a01b0316145b905080610ebf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610ee657604051633a954ecd60e21b815260040160405180910390fd5b610ef260008487610dc8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610fc8576000548214610fc8578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561111757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111155780516001600160a01b0316156110ab579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611110579392505050565b6110ab565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107e68282604051806020016040528060008152506113a1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111d190339089908890889060040161191c565b602060405180830381600087803b1580156111eb57600080fd5b505af192505050801561121b575060408051601f3d908101601f1916820190925261121891810190611842565b60015b611276573d808015611249576040519150601f19603f3d011682016040523d82523d6000602084013e61124e565b606091505b50805161126e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546105fe90611a2f565b6060816112c75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112f157806112db81611a6a565b91506112ea9050600a836119b9565b91506112cb565b60008167ffffffffffffffff81111561130c5761130c611adb565b6040519080825280601f01601f191660200182016040528015611336576020820181803683370190505b5090505b841561128c5761134b6001836119ec565b9150611358600a86611a85565b6113639060306119a1565b60f81b81838151811061137857611378611ac5565b60200101906001600160f81b031916908160001a90535061139a600a866119b9565b945061133a565b61074e83838360016000546001600160a01b0385166113d257604051622e076360e81b815260040160405180910390fd5b836113f05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561149d57506001600160a01b0387163b15155b15611526575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114ee600088848060010195508861119c565b61150b576040516368d2bf6b60e11b815260040160405180910390fd5b808214156114a357826000541461152157600080fd5b61156c565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611527575b5060005561100d565b82805461158190611a2f565b90600052602060002090601f0160209004810192826115a357600085556115e9565b82601f106115bc57805160ff19168380011785556115e9565b828001600101855582156115e9579182015b828111156115e95782518255916020019190600101906115ce565b506115f59291506115f9565b5090565b5b808211156115f557600081556001016115fa565b600067ffffffffffffffff8084111561162957611629611adb565b604051601f8501601f19908116603f0116810190828211818310171561165157611651611adb565b8160405280935085815286868601111561166a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461169b57600080fd5b919050565b8035801515811461169b57600080fd5b6000602082840312156116c257600080fd5b610c2b82611684565b600080604083850312156116de57600080fd5b6116e783611684565b91506116f560208401611684565b90509250929050565b60008060006060848603121561171357600080fd5b61171c84611684565b925061172a60208501611684565b9150604084013590509250925092565b6000806000806080858703121561175057600080fd5b61175985611684565b935061176760208601611684565b925060408501359150606085013567ffffffffffffffff81111561178a57600080fd5b8501601f8101871361179b57600080fd5b6117aa8782356020840161160e565b91505092959194509250565b600080604083850312156117c957600080fd5b6117d283611684565b91506116f5602084016116a0565b600080604083850312156117f357600080fd5b6117fc83611684565b946020939093013593505050565b60006020828403121561181c57600080fd5b610c2b826116a0565b60006020828403121561183757600080fd5b8135610c2b81611af1565b60006020828403121561185457600080fd5b8151610c2b81611af1565b60006020828403121561187157600080fd5b813567ffffffffffffffff81111561188857600080fd5b8201601f8101841361189957600080fd5b61128c8482356020840161160e565b6000602082840312156118ba57600080fd5b5035919050565b600081518084526118d9816020860160208601611a03565b601f01601f19169290920160200192915050565b600083516118ff818460208801611a03565b835190830190611913818360208801611a03565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061194f908301846118c1565b9695505050505050565b602081526000610c2b60208301846118c1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156119b4576119b4611a99565b500190565b6000826119c8576119c8611aaf565b500490565b60008160001904831182151516156119e7576119e7611a99565b500290565b6000828210156119fe576119fe611a99565b500390565b60005b83811015611a1e578181015183820152602001611a06565b83811115610ac65750506000910152565b600181811c90821680611a4357607f821691505b60208210811415611a6457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a7e57611a7e611a99565b5060010190565b600082611a9457611a94611aaf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d9a57600080fdfea2646970667358221220e07c4094d298df604731d16483b8acbd00f12af3e9d4bfc1700a45767b8e02b564736f6c63430008060033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000001ff973cafa80000000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000c446f6e742042757920506f6f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003504f4f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Dont Buy Poo
Arg [1] : _symbol (string): POO
Arg [2] : limit (uint256): 10
Arg [3] : price (uint256): 9000000000000000
Arg [4] : maxSupply (uint256): 10000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 000000000000000000000000000000000000000000000000001ff973cafa8000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 446f6e742042757920506f6f0000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 504f4f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

134:2078:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4295:344:4;;;;;;;;;;-1:-1:-1;4295:344:4;;;;;:::i;:::-;;:::i;:::-;;;5903:14:14;;5896:22;5878:41;;5866:2;5851:18;4295:344:4;;;;;;;;1675:99:11;;;;;;;;;;-1:-1:-1;1675:99:11;;;;;:::i;:::-;;:::i;:::-;;7395:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;8939:236::-;;;;;;;;;;-1:-1:-1;8939:236:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5201:32:14;;;5183:51;;5171:2;5156:18;8939:236:4;5138:102:14;8516:362:4;;;;;;;;;;-1:-1:-1;8516:362:4;;;;;:::i;:::-;;:::i;3566:297::-;;;;;;;;;;-1:-1:-1;3816:12:4;;3610:7;3800:13;:28;3566:297;;;8534:25:14;;;8522:2;8507:18;3566:297:4;8489:76:14;1780:96:11;;;;;;;;;;-1:-1:-1;1780:96:11;;;;;:::i;:::-;;:::i;9886:164:4:-;;;;;;;;;;-1:-1:-1;9886:164:4;;;;;:::i;:::-;;:::i;249:25:11:-;;;;;;;;;;;;;;;;313:26;;;;;;;;;;;;;;;;1527:142;;;;;;;;;;;;;:::i;10116:179:4:-;;;;;;;;;;-1:-1:-1;10116:179:4;;;;;:::i;:::-;;:::i;1982:107:11:-;;;;;;;;;;-1:-1:-1;1982:107:11;;;;;:::i;:::-;;:::i;7210:123:4:-;;;;;;;;;;-1:-1:-1;7210:123:4;;;;;:::i;:::-;;:::i;4698:203::-;;;;;;;;;;-1:-1:-1;4698:203:4;;;;;:::i;:::-;;:::i;1659:101:12:-;;;;;;;;;;;;;:::i;1027:85::-;;;;;;;;;;-1:-1:-1;1099:6:12;;-1:-1:-1;;;;;1099:6:12;1027:85;;7557:102:4;;;;;;;;;;;;;:::i;280:27:11:-;;;;;;;;;;;;;;;;625:674;;;;;;:::i;:::-;;:::i;9242:310:4:-;;;;;;;;;;-1:-1:-1;9242:310:4;;;;;:::i;:::-;;:::i;10361:393::-;;;;;;;;;;-1:-1:-1;10361:393:4;;;;;:::i;:::-;;:::i;7725:401::-;;;;;;;;;;-1:-1:-1;7725:401:4;;;;;:::i;:::-;;:::i;1305:216:11:-;;;;;;;;;;-1:-1:-1;1305:216:11;;;;;:::i;:::-;;:::i;9618:206:4:-;;;;;;;;;;-1:-1:-1;9618:206:4;;;;;:::i;:::-;-1:-1:-1;;;;;9782:25:4;;;9755:4;9782:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;9618:206;173:32:11;;;;;;;;;;-1:-1:-1;173:32:11;;;;-1:-1:-1;;;173:32:11;;;;;;1882:94;;;;;;;;;;-1:-1:-1;1882:94:11;;;;;:::i;:::-;;:::i;1909:198:12:-;;;;;;;;;;-1:-1:-1;1909:198:12;;;;;:::i;:::-;;:::i;4295:344:4:-;4437:4;-1:-1:-1;;;;;;4476:40:4;;-1:-1:-1;;;4476:40:4;;:104;;-1:-1:-1;;;;;;;4532:48:4;;-1:-1:-1;;;4532:48:4;4476:104;:156;;;-1:-1:-1;;;;;;;;;;935:40:2;;;4596:36:4;4457:175;4295:344;-1:-1:-1;;4295:344:4:o;1675:99:11:-;1099:6:12;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;;;;;;;;;1744:12:11::1;:23:::0;;;::::1;;-1:-1:-1::0;;;1744:23:11::1;-1:-1:-1::0;;;;1744:23:11;;::::1;::::0;;;::::1;::::0;;1675:99::o;7395:98:4:-;7449:13;7481:5;7474:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7395:98;:::o;8939:236::-;9039:7;9067:16;9075:7;9067;:16::i;:::-;9062:64;;9092:34;;-1:-1:-1;;;9092:34:4;;;;;;;;;;;9062:64;-1:-1:-1;9144:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;9144:24:4;;8939:236::o;8516:362::-;8588:13;8604:24;8620:7;8604:15;:24::i;:::-;8588:40;;8648:5;-1:-1:-1;;;;;8642:11:4;:2;-1:-1:-1;;;;;8642:11:4;;8638:48;;;8662:24;;-1:-1:-1;;;8662:24:4;;;;;;;;;;;8638:48;719:10:1;-1:-1:-1;;;;;8701:21:4;;;;;;:63;;-1:-1:-1;8727:37:4;8744:5;719:10:1;9618:206:4;:::i;8727:37::-;8726:38;8701:63;8697:136;;;8787:35;;-1:-1:-1;;;8787:35:4;;;;;;;;;;;8697:136;8843:28;8852:2;8856:7;8865:5;8843:8;:28::i;:::-;8578:300;8516:362;;:::o;1780:96:11:-;1099:6:12;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;1849:12:11::1;:20:::0;1780:96::o;9886:164:4:-;10015:28;10025:4;10031:2;10035:7;10015:9;:28::i;1527:142:11:-;1099:6:12;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;1625:37:11::1;::::0;1594:21:::1;::::0;1633:10:::1;::::0;1625:37;::::1;;;::::0;1594:21;;1576:15:::1;1625:37:::0;1576:15;1625:37;1594:21;1633:10;1625:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1566:103;1527:142::o:0;10116:179:4:-;10249:39;10266:4;10272:2;10276:7;10249:39;;;;;;;;;;;;:16;:39::i;1982:107:11:-;1099:6:12;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;2055:27:11;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;7210:123:4:-:0;7274:7;7300:21;7313:7;7300:12;:21::i;:::-;:26;;7210:123;-1:-1:-1;;7210:123:4:o;4698:203::-;4762:7;-1:-1:-1;;;;;4785:19:4;;4781:60;;4813:28;;-1:-1:-1;;;4813:28:4;;;;;;;;;;;4781:60;-1:-1:-1;;;;;;4866:19:4;;;;;:12;:19;;;;;:27;;;;4698:203::o;1659:101:12:-;1099:6;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;1723:30:::1;1750:1;1723:18;:30::i;:::-;1659:101::o:0;7557:102:4:-;7613:13;7645:7;7638:14;;;;;:::i;625:674:11:-;682:10;695:13;3816:12:4;;3610:7;3800:13;:28;;3566:297;695:13:11;749:10;718:14;5073:19:4;;;:12;:19;;;;;:32;779:12:11;;682:26;;-1:-1:-1;;;;5073:32:4;;;;;-1:-1:-1;;;779:12:11;;;;771:59;;;;-1:-1:-1;;;771:59:11;;8187:2:14;771:59:11;;;8169:21:14;8226:2;8206:18;;;8199:30;8265:34;8245:18;;;8238:62;-1:-1:-1;;;8316:18:14;;;8309:32;8358:19;;771:59:11;8159:224:14;771:59:11;867:11;;848:15;857:6;848;:15;:::i;:::-;:30;;840:62;;;;-1:-1:-1;;;840:62:11;;6356:2:14;840:62:11;;;6338:21:14;6395:2;6375:18;;;6368:30;-1:-1:-1;;;6414:18:14;;;6407:49;6473:18;;840:62:11;6328:169:14;840:62:11;935:10;;920:11;925:6;920:2;:11;:::i;:::-;:25;;912:70;;;;-1:-1:-1;;;912:70:11;;7111:2:14;912:70:11;;;7093:21:14;;;7130:18;;;7123:30;7189:34;7169:18;;;7162:62;7241:18;;912:70:11;7083:182:14;912:70:11;993:18;1024:1;1014:6;:11;;:28;;1032:10;1036:6;1032:1;:10;:::i;:::-;1014:28;;;1028:1;1014:28;993:49;;1065:10;1056:6;:19;1052:69;;;-1:-1:-1;1104:6:11;1052:69;1192:9;1168:19;1177:10;1168:6;:19;:::i;:::-;1152:12;;:36;;;;:::i;:::-;:49;1131:121;;;;-1:-1:-1;;;1131:121:11;;7472:2:14;1131:121:11;;;7454:21:14;7511:2;7491:18;;;7484:30;7550:27;7530:18;;;7523:55;7595:18;;1131:121:11;7444:175:14;1131:121:11;1263:29;1273:10;1285:6;1263:9;:29::i;:::-;672:627;;;625:674;:::o;9242:310:4:-;-1:-1:-1;;;;;9368:24:4;;719:10:1;9368:24:4;9364:54;;;9401:17;;-1:-1:-1;;;9401:17:4;;;;;;;;;;;9364:54;719:10:1;9429:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;9429:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;9429:53:4;;;;;;;;;;9497:48;;5878:41:14;;;9429:42:4;;719:10:1;9497:48:4;;5851:18:14;9497:48:4;;;;;;;9242:310;;:::o;10361:393::-;10522:28;10532:4;10538:2;10542:7;10522:9;:28::i;:::-;-1:-1:-1;;;;;10577:13:4;;1087:20:0;1133:8;;10577:88:4;;;;;10609:56;10640:4;10646:2;10650:7;10659:5;10609:30;:56::i;:::-;10608:57;10577:88;10560:188;;;10697:40;;-1:-1:-1;;;10697:40:4;;;;;;;;;;;7725:401;7838:13;7872:16;7880:7;7872;:16::i;:::-;7867:59;;7897:29;;-1:-1:-1;;;7897:29:4;;;;;;;;;;;7867:59;7937:21;7961:10;:8;:10::i;:::-;7937:34;;8006:7;8000:21;8025:1;8000:26;;:119;;;;;;;;;;;;;;;;;8069:7;8078:18;:7;:16;:18::i;:::-;8052:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8000:119;7981:138;7725:401;-1:-1:-1;;;7725:401:4:o;1305:216:11:-;1099:6:12;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;1377:10:11::1;1390:13;3816:12:4::0;;3610:7;3800:13;:28;;3566:297;1390:13:11::1;1436:10;::::0;1377:26;;-1:-1:-1;1421:11:11::1;1426:6:::0;1377:26;1421:11:::1;:::i;:::-;:25;;1413:70;;;::::0;-1:-1:-1;;;1413:70:11;;7111:2:14;1413:70:11::1;::::0;::::1;7093:21:14::0;;;7130:18;;;7123:30;7189:34;7169:18;;;7162:62;7241:18;;1413:70:11::1;7083:182:14::0;1413:70:11::1;1493:21;1503:2;1507:6;1493:9;:21::i;1882:94::-:0;1099:6:12;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;1950:11:11::1;:19:::0;1882:94::o;1909:198:12:-;1099:6;;-1:-1:-1;;;;;1099:6:12;719:10:1;1239:23:12;1231:68;;;;-1:-1:-1;;;1231:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;1997:22:12;::::1;1989:73;;;::::0;-1:-1:-1;;;1989:73:12;;6704:2:14;1989:73:12::1;::::0;::::1;6686:21:14::0;6743:2;6723:18;;;6716:30;6782:34;6762:18;;;6755:62;-1:-1:-1;;;6833:18:14;;;6826:36;6879:19;;1989:73:12::1;6676:228:14::0;1989:73:12::1;2072:28;2091:8;2072:18;:28::i;:::-;1909:198:::0;:::o;11000:208:4:-;11057:4;11144:13;;11134:7;:23;11092:109;;;;-1:-1:-1;;11174:20:4;;;;:11;:20;;;;;:27;-1:-1:-1;;;11174:27:4;;;;11173:28;;11000:208::o;19160:189::-;19270:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19270:29:4;-1:-1:-1;;;;;19270:29:4;;;;;;;;;19314:28;;19270:24;;19314:28;;;;;;;19160:189;;;:::o;14230:2082::-;14340:35;14378:21;14391:7;14378:12;:21::i;:::-;14340:59;;14436:4;-1:-1:-1;;;;;14414:26:4;:13;:18;;;-1:-1:-1;;;;;14414:26:4;;14410:67;;14449:28;;-1:-1:-1;;;14449:28:4;;;;;;;;;;;14410:67;14488:22;719:10:1;-1:-1:-1;;;;;14514:20:4;;;;:72;;-1:-1:-1;14550:36:4;14567:4;719:10:1;9618:206:4;:::i;14550:36::-;14514:124;;;-1:-1:-1;719:10:1;14602:20:4;14614:7;14602:11;:20::i;:::-;-1:-1:-1;;;;;14602:36:4;;14514:124;14488:151;;14655:17;14650:66;;14681:35;;-1:-1:-1;;;14681:35:4;;;;;;;;;;;14650:66;-1:-1:-1;;;;;14730:16:4;;14726:52;;14755:23;;-1:-1:-1;;;14755:23:4;;;;;;;;;;;14726:52;14894:35;14911:1;14915:7;14924:4;14894:8;:35::i;:::-;-1:-1:-1;;;;;15219:18:4;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;15219:31:4;;;;;;;-1:-1:-1;;15219:31:4;;;;;;;15264:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;15264:29:4;;;;;;;;;;;15342:20;;;:11;:20;;;;;;15376:18;;-1:-1:-1;;;;;;15408:49:4;;;;-1:-1:-1;;;15441:15:4;15408:49;;;;;;;;;;15727:11;;15786:24;;;;;15828:13;;15342:20;;15786:24;;15828:13;15824:377;;16035:13;;16020:11;:28;16016:171;;16072:20;;16140:28;;;;16114:54;;-1:-1:-1;;;16114:54:4;-1:-1:-1;;;;;;16114:54:4;;;-1:-1:-1;;;;;16072:20:4;;16114:54;;;;16016:171;15195:1016;;;16245:7;16241:2;-1:-1:-1;;;;;16226:27:4;16235:4;-1:-1:-1;;;;;16226:27:4;;;;;;;;;;;16263:42;14330:1982;;14230:2082;;;:::o;6041:1112::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6179:7:4;6259:13;;6252:4;:20;6221:868;;;6292:31;6326:17;;;:11;:17;;;;;;;;;6292:51;;;;;;;;;-1:-1:-1;;;;;6292:51:4;;;;-1:-1:-1;;;6292:51:4;;;;;;;;;;;-1:-1:-1;;;6292:51:4;;;;;;;;;;;;;;6361:714;;6410:14;;-1:-1:-1;;;;;6410:28:4;;6406:99;;6473:9;6041:1112;-1:-1:-1;;;6041:1112:4:o;6406:99::-;-1:-1:-1;;;6841:6:4;6885:17;;;;:11;:17;;;;;;;;;6873:29;;;;;;;;;-1:-1:-1;;;;;6873:29:4;;;;;-1:-1:-1;;;6873:29:4;;;;;;;;;;;-1:-1:-1;;;6873:29:4;;;;;;;;;;;;;6932:28;6928:107;;6999:9;6041:1112;-1:-1:-1;;;6041:1112:4:o;6928:107::-;6802:255;;;6274:815;6221:868;7115:31;;-1:-1:-1;;;7115:31:4;;;;;;;;;;;2261:187:12;2353:6;;;-1:-1:-1;;;;;2369:17:12;;;-1:-1:-1;;;;;;2369:17:12;;;;;;;2401:40;;2353:6;;;2369:17;2353:6;;2401:40;;2334:16;;2401:40;2324:124;2261:187;:::o;11214:102:4:-;11282:27;11292:2;11296:8;11282:27;;;;;;;;;;;;:9;:27::i;19830:748::-;20020:150;;-1:-1:-1;;;20020:150:4;;19988:4;;-1:-1:-1;;;;;20020:36:4;;;;;:150;;719:10:1;;20104:4:4;;20126:7;;20151:5;;20020:150;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20020:150:4;;;;;;;;-1:-1:-1;;20020:150:4;;;;;;;;;;;;:::i;:::-;;;20004:568;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20337:13:4;;20333:229;;20382:40;;-1:-1:-1;;;20382:40:4;;;;;;;;;;;20333:229;20522:6;20516:13;20507:6;20503:2;20499:15;20492:38;20004:568;-1:-1:-1;;;;;;20224:55:4;-1:-1:-1;;;20224:55:4;;-1:-1:-1;20004:568:4;19830:748;;;;;;:::o;2095:115:11:-;2155:13;2187:16;2180:23;;;;;:::i;328:703:13:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:13;;;;;;;;;;;;-1:-1:-1;;;627:10:13;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:13;;-1:-1:-1;773:2:13;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:13;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:13;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:13;;;;;;;;-1:-1:-1;972:11:13;981:2;972:11;;:::i;:::-;;;844:150;;11667:157:4;11785:32;11791:2;11795:8;11805:5;11812:4;12204:20;12227:13;-1:-1:-1;;;;;12254:16:4;;12250:48;;12279:19;;-1:-1:-1;;;12279:19:4;;;;;;;;;;;12250:48;12312:13;12308:44;;12334:18;;-1:-1:-1;;;12334:18:4;;;;;;;;;;;12308:44;-1:-1:-1;;;;;12695:16:4;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;12753:49:4;;12695:44;;;;;;;;12753:49;;;-1:-1:-1;;;;;12695:44:4;;;;;;12753:49;;;;;;;;;;;;;;;;12817:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;12866:66:4;;;;-1:-1:-1;;;12916:15:4;12866:66;;;;;;;;;;12817:25;13010:23;;;13052:4;:23;;;;-1:-1:-1;;;;;;13060:13:4;;1087:20:0;1133:8;;13060:15:4;13048:812;;;13095:493;13125:38;;13150:12;;-1:-1:-1;;;;;13125:38:4;;;13142:1;;13125:38;;13142:1;;13125:38;13215:207;13283:1;13315:2;13347:14;;;;;;13391:5;13215:30;:207::i;:::-;13185:356;;13478:40;;-1:-1:-1;;;13478:40:4;;;;;;;;;;;13185:356;13583:3;13567:12;:19;;13095:493;;13667:12;13650:13;;:29;13646:43;;13681:8;;;13646:43;13048:812;;;13728:118;13758:40;;13783:14;;;;;-1:-1:-1;;;;;13758:40:4;;;13775:1;;13758:40;;13775:1;;13758:40;13841:3;13825:12;:19;;13728:118;;13048:812;-1:-1:-1;13873:13:4;:28;13921:60;625:674:11;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:14;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:14;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:14;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1121:1;1118;1111:12;1073:2;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:2;;;1329:1;1326;1319:12;1281:2;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1271:173;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:2;;;1611:1;1608;1601:12;1563:2;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1553:224;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:2;;;1971:1;1968;1961:12;1922:2;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:2;;;2241:1;2238;2231:12;2195:2;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:2:14;;2346:1;2343;2336:12;2295:2;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1912:536;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:2;;;2595:1;2592;2585:12;2547:2;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:2;;;2857:1;2854;2847:12;2809:2;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2799:167:14:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:2;;;3096:1;3093;3086:12;3048:2;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:2;;;3283:1;3280;3273:12;3235:2;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:2;;;3544:1;3541;3534:12;3496:2;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:2;;;3798:1;3795;3788:12;3750:2;3838:9;3825:23;3871:18;3863:6;3860:30;3857:2;;;3903:1;3900;3893:12;3857:2;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:2:14;;4008:1;4005;3998:12;3957:2;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:2;;;4243:1;4240;4233:12;4195:2;-1:-1:-1;4266:23:14;;4185:110;-1:-1:-1;4185:110:14:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:14;4505:39;;;;4546:4;4501:50;;4349:208;-1:-1:-1;;4349:208:14:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4749:283;-1:-1:-1;;;;4749:283:14:o;5245:488::-;-1:-1:-1;;;;;5514:15:14;;;5496:34;;5566:15;;5561:2;5546:18;;5539:43;5613:2;5598:18;;5591:34;;;5661:3;5656:2;5641:18;;5634:31;;;5439:4;;5682:45;;5707:19;;5699:6;5682:45;:::i;:::-;5674:53;5448:285;-1:-1:-1;;;;;;5448:285:14:o;5930:219::-;6079:2;6068:9;6061:21;6042:4;6099:44;6139:2;6128:9;6124:18;6116:6;6099:44;:::i;7624:356::-;7826:2;7808:21;;;7845:18;;;7838:30;7904:34;7899:2;7884:18;;7877:62;7971:2;7956:18;;7798:182::o;8570:128::-;8610:3;8641:1;8637:6;8634:1;8631:13;8628:2;;;8647:18;;:::i;:::-;-1:-1:-1;8683:9:14;;8618:80::o;8703:120::-;8743:1;8769;8759:2;;8774:18;;:::i;:::-;-1:-1:-1;8808:9:14;;8749:74::o;8828:168::-;8868:7;8934:1;8930;8926:6;8922:14;8919:1;8916:21;8911:1;8904:9;8897:17;8893:45;8890:2;;;8941:18;;:::i;:::-;-1:-1:-1;8981:9:14;;8880:116::o;9001:125::-;9041:4;9069:1;9066;9063:8;9060:2;;;9074:18;;:::i;:::-;-1:-1:-1;9111:9:14;;9050:76::o;9131:258::-;9203:1;9213:113;9227:6;9224:1;9221:13;9213:113;;;9303:11;;;9297:18;9284:11;;;9277:39;9249:2;9242:10;9213:113;;;9344:6;9341:1;9338:13;9335:2;;;-1:-1:-1;;9379:1:14;9361:16;;9354:27;9184:205::o;9394:380::-;9473:1;9469:12;;;;9516;;;9537:2;;9591:4;9583:6;9579:17;9569:27;;9537:2;9644;9636:6;9633:14;9613:18;9610:38;9607:2;;;9690:10;9685:3;9681:20;9678:1;9671:31;9725:4;9722:1;9715:15;9753:4;9750:1;9743:15;9607:2;;9449:325;;;:::o;9779:135::-;9818:3;-1:-1:-1;;9839:17:14;;9836:2;;;9859:18;;:::i;:::-;-1:-1:-1;9906:1:14;9895:13;;9826:88::o;9919:112::-;9951:1;9977;9967:2;;9982:18;;:::i;:::-;-1:-1:-1;10016:9:14;;9957:74::o;10036:127::-;10097:10;10092:3;10088:20;10085:1;10078:31;10128:4;10125:1;10118:15;10152:4;10149:1;10142:15;10168:127;10229:10;10224:3;10220:20;10217:1;10210:31;10260:4;10257:1;10250:15;10284:4;10281:1;10274:15;10300:127;10361:10;10356:3;10352:20;10349:1;10342:31;10392:4;10389:1;10382:15;10416:4;10413:1;10406:15;10432:127;10493:10;10488:3;10484:20;10481:1;10474:31;10524:4;10521:1;10514:15;10548:4;10545:1;10538:15;10564:131;-1:-1:-1;;;;;;10638:32:14;;10628:43;;10618:2;;10685:1;10682;10675:12

Swarm Source

ipfs://e07c4094d298df604731d16483b8acbd00f12af3e9d4bfc1700a45767b8e02b5
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.