ETH Price: $2,347.56 (+0.42%)

Token

Ether (ETR)
 

Overview

Max Total Supply

90 ETR

Holders

89

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
darthvetter.eth
Balance
1 ETR
0x1b8fa7e37794449fb812e5eb932ced9a87c8a42c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Ether

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Ether.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract Ether is ERC721A, Ownable, ReentrancyGuard {
    string public PROVENANCE;

    uint256 public maxSupply;
    uint256 public pricePerToken;

    bool public whitelistMintActive = false;
    bool public publicMintActive = false;

    uint256 public constant MAX_PUBLIC_MINT = 7;

    uint256 private _numberOfReserved;
    string private _baseURIextended;
    string private _contractURI;
    mapping(address => uint8) private _whitelist;

    constructor(
        uint256 _maxBatchSize,
        uint256 _maxSupply,
        uint256 _pricePerToken
    ) ERC721A("Ether", "ETR", _maxBatchSize, _maxSupply) {
        pricePerToken = _pricePerToken;
        maxSupply = _maxSupply;
    }

    function setPricePerToken(uint256 _pricePerToken) external onlyOwner {
        require(_pricePerToken > pricePerToken, "Can only set higher price");
        pricePerToken = _pricePerToken;
    }

    function setWhitelistMintActive(bool _whitelistMintActive)
        external
        onlyOwner
    {
        whitelistMintActive = _whitelistMintActive;
    }

    function addToWhitelist(
        address[] calldata addresses,
        uint8 numberAllowedToMint
    ) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _whitelist[addresses[i]] = numberAllowedToMint;
        }
    }

    function numberAvailableToMint(address addressToMint)
        external
        view
        returns (uint8)
    {
        return _whitelist[addressToMint];
    }

    function mintWhitelisted(uint8 numberToMint) external payable {
        uint256 totalSupply = totalSupply();
        require(whitelistMintActive, "Whitelist mint is not active");
        require(
            numberToMint <= _whitelist[msg.sender],
            "Exceeded max available to purchase"
        );
        require(
            totalSupply + numberToMint <= maxSupply - _numberOfReserved,
            "Purchase would exceed max tokens"
        );
        require(
            pricePerToken * numberToMint <= msg.value,
            "Ether value sent is not correct"
        );

        _whitelist[msg.sender] -= numberToMint;
        _safeMint(msg.sender, numberToMint);
    }

    function reserve(uint256 numberToReserve) public onlyOwner {
        uint256 totalSupply = totalSupply();
        require(
            totalSupply + numberToReserve <= maxSupply,
            "Reserve too many tokens"
        );

        _numberOfReserved = numberToReserve;
    }

    function mintReserved(address to, uint256 numberToMint) public onlyOwner {
        require(numberToMint <= _numberOfReserved, "Mint more than reserved");
        _safeMint(to, numberToMint);
        _numberOfReserved -= numberToMint;
    }

    function setPublicMintActive(bool _publicMintActive) public onlyOwner {
        publicMintActive = _publicMintActive;
    }

    function mint(uint256 numberToMint) public payable {
        uint256 totalSupply = totalSupply();
        require(publicMintActive, "Public mint must be active to mint tokens");
        require(numberToMint <= MAX_PUBLIC_MINT, "Exceeded max token purchase");
        require(
            totalSupply + numberToMint <= maxSupply - _numberOfReserved,
            "Purchase would exceed max tokens"
        );
        require(
            pricePerToken * numberToMint <= msg.value,
            "Ether value sent is not correct"
        );

        _safeMint(msg.sender, numberToMint);
    }

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

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal override(ERC721A) {
        super._beforeTokenTransfers(from, to, startTokenId, quantity);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

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

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

    function setContractURI(string memory contractURI_) external onlyOwner {
        _contractURI = contractURI_;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function setProvenance(string memory provenance) public onlyOwner {
        PROVENANCE = provenance;
    }
}

File 2 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;

    // 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) private _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;

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     * `collectionSize_` refers to how many tokens are in the collection.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_,
        uint256 collectionSize_
    ) {
        require(
            collectionSize_ > 0,
            "ERC721A: collection must have a nonzero supply"
        );
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: balance query for the zero address"
        );
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
    {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - there must be `quantity` tokens remaining unminted in the total collection.
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

    /**
     * @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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 8 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_maxBatchSize","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_pricePerToken","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"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_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numberAllowedToMint","type":"uint8"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberToMint","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberToMint","type":"uint8"}],"name":"mintWhitelisted","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addressToMint","type":"address"}],"name":"numberAvailableToMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"pricePerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberToReserve","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":[{"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":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pricePerToken","type":"uint256"}],"name":"setPricePerToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicMintActive","type":"bool"}],"name":"setPublicMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_whitelistMintActive","type":"bool"}],"name":"setWhitelistMintActive","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"whitelistMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000805560006007556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055503480156200005057600080fd5b50604051620057573803806200575783398181016040528101906200007691906200038a565b6040518060400160405280600581526020017f45746865720000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f45545200000000000000000000000000000000000000000000000000000000008152508484600081116200012a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001219062000450565b60405180910390fd5b6000821162000170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000167906200042e565b60405180910390fd5b836001908051906020019062000188929190620002c3565b508260029080519060200190620001a1929190620002c3565b508160a08181525050806080818152505050505050620001d6620001ca620001f560201b60201c565b620001fd60201b60201c565b600160098190555080600c8190555081600b81905550505050620005aa565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002d1906200048d565b90600052602060002090601f016020900481019282620002f5576000855562000341565b82601f106200031057805160ff191683800117855562000341565b8280016001018555821562000341579182015b828111156200034057825182559160200191906001019062000323565b5b50905062000350919062000354565b5090565b5b808211156200036f57600081600090555060010162000355565b5090565b600081519050620003848162000590565b92915050565b600080600060608486031215620003a057600080fd5b6000620003b08682870162000373565b9350506020620003c38682870162000373565b9250506040620003d68682870162000373565b9150509250925092565b6000620003ef60278362000472565b9150620003fc82620004f2565b604082019050919050565b600062000416602e8362000472565b9150620004238262000541565b604082019050919050565b600060208201905081810360008301526200044981620003e0565b9050919050565b600060208201905081810360008301526200046b8162000407565b9050919050565b600082825260208201905092915050565b6000819050919050565b60006002820490506001821680620004a657607f821691505b60208210811415620004bd57620004bc620004c3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b6200059b8162000483565b8114620005a757600080fd5b50565b60805160a05161517c620005db600039600081816129610152818161298a01526130d701526000505061517c6000f3fe60806040526004361061023b5760003560e01c806365f130971161012e578063a22cb465116100ab578063d7224ba01161006f578063d7224ba014610851578063e8a3d4851461087c578063e985e9c5146108a7578063f2fde38b146108e4578063ffe630b51461090d5761023b565b8063a22cb4651461076c578063b67c25a314610795578063b88d4fde146107c0578063c87b56dd146107e9578063d5abeb01146108265761023b565b8063819b25ba116100f2578063819b25ba146106a85780638da5cb5b146106d1578063938e3d7b146106fc57806395d89b4114610725578063a0712d68146107505761023b565b806365f13097146105d557806370a0823114610600578063715018a61461063d5780637b1b1de6146106545780637de55fe11461067f5761023b565b80632f745c59116101bc578063512513201161018057806351251320146104f057806355f804b3146105195780636352211e146105425780636373a6b11461057f57806364de1e85146105aa5761023b565b80632f745c59146103f95780633052f8b3146104365780633ccfd60b1461047357806342842e0e1461048a5780634f6ccce7146104b35761023b565b806318160ddd1161020357806318160ddd1461032a57806318bea1c41461035557806323b872dd1461037e5780632b707c71146103a75780632bf2762f146103d05761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e55780630cc03f721461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906139c3565b610936565b6040516102749190614009565b60405180910390f35b34801561028957600080fd5b50610292610948565b60405161029f9190614024565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613a56565b6109da565b6040516102dc9190613fa2565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613906565b610a5f565b005b61032860048036038101906103239190613a7f565b610b78565b005b34801561033657600080fd5b5061033f610d9f565b60405161034c91906143e6565b60405180910390f35b34801561036157600080fd5b5061037c6004803603810190610377919061399a565b610da8565b005b34801561038a57600080fd5b506103a560048036038101906103a09190613800565b610e41565b005b3480156103b357600080fd5b506103ce60048036038101906103c9919061399a565b610e51565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190613a56565b610eea565b005b34801561040557600080fd5b50610420600480360381019061041b9190613906565b610fb4565b60405161042d91906143e6565b60405180910390f35b34801561044257600080fd5b5061045d6004803603810190610458919061379b565b6111b2565b60405161046a9190614401565b60405180910390f35b34801561047f57600080fd5b50610488611208565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613800565b6112d3565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190613a56565b6112f3565b6040516104e791906143e6565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190613942565b611346565b005b34801561052557600080fd5b50610540600480360381019061053b9190613a15565b61148e565b005b34801561054e57600080fd5b5061056960048036038101906105649190613a56565b611524565b6040516105769190613fa2565b60405180910390f35b34801561058b57600080fd5b5061059461153a565b6040516105a19190614024565b60405180910390f35b3480156105b657600080fd5b506105bf6115c8565b6040516105cc9190614009565b60405180910390f35b3480156105e157600080fd5b506105ea6115db565b6040516105f791906143e6565b60405180910390f35b34801561060c57600080fd5b506106276004803603810190610622919061379b565b6115e0565b60405161063491906143e6565b60405180910390f35b34801561064957600080fd5b506106526116c9565b005b34801561066057600080fd5b50610669611751565b60405161067691906143e6565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a19190613906565b611757565b005b3480156106b457600080fd5b506106cf60048036038101906106ca9190613a56565b61183f565b005b3480156106dd57600080fd5b506106e6611922565b6040516106f39190613fa2565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190613a15565b61194c565b005b34801561073157600080fd5b5061073a6119e2565b6040516107479190614024565b60405180910390f35b61076a60048036038101906107659190613a56565b611a74565b005b34801561077857600080fd5b50610793600480360381019061078e91906138ca565b611bce565b005b3480156107a157600080fd5b506107aa611d4f565b6040516107b79190614009565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e2919061384f565b611d62565b005b3480156107f557600080fd5b50610810600480360381019061080b9190613a56565b611dbe565b60405161081d9190614024565b60405180910390f35b34801561083257600080fd5b5061083b611e65565b60405161084891906143e6565b60405180910390f35b34801561085d57600080fd5b50610866611e6b565b60405161087391906143e6565b60405180910390f35b34801561088857600080fd5b50610891611e71565b60405161089e9190614024565b60405180910390f35b3480156108b357600080fd5b506108ce60048036038101906108c991906137c4565b611f03565b6040516108db9190614009565b60405180910390f35b3480156108f057600080fd5b5061090b6004803603810190610906919061379b565b611f97565b005b34801561091957600080fd5b50610934600480360381019061092f9190613a15565b61208f565b005b600061094182612125565b9050919050565b606060018054610957906147b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610983906147b2565b80156109d05780601f106109a5576101008083540402835291602001916109d0565b820191906000526020600020905b8154815290600101906020018083116109b357829003601f168201915b5050505050905090565b60006109e58261226f565b610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b906143a6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6a82611524565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad2906142e6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610afa61227c565b73ffffffffffffffffffffffffffffffffffffffff161480610b295750610b2881610b2361227c565b611f03565b5b610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f90614186565b60405180910390fd5b610b73838383612284565b505050565b6000610b82610d9f565b9050600d60009054906101000a900460ff16610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca90614066565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168260ff161115610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f906142c6565b60405180910390fd5b600e54600b54610c789190614641565b8260ff1682610c87919061452c565b1115610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf906140a6565b60405180910390fd5b348260ff16600c54610cda91906145b3565b1115610d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1290614126565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16610d769190614675565b92506101000a81548160ff021916908360ff160217905550610d9b338360ff16612336565b5050565b60008054905090565b610db061227c565b73ffffffffffffffffffffffffffffffffffffffff16610dce611922565b73ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90614206565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b610e4c838383612354565b505050565b610e5961227c565b73ffffffffffffffffffffffffffffffffffffffff16610e77611922565b73ffffffffffffffffffffffffffffffffffffffff1614610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490614206565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b610ef261227c565b73ffffffffffffffffffffffffffffffffffffffff16610f10611922565b73ffffffffffffffffffffffffffffffffffffffff1614610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d90614206565b60405180910390fd5b600c548111610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa190614146565b60405180910390fd5b80600c8190555050565b6000610fbf836115e0565b8210611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff790614046565b60405180910390fd5b600061100a610d9f565b905060008060005b83811015611170576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461110457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561115c578684141561114d5781955050505050506111ac565b838061115890614815565b9450505b50808061116890614815565b915050611012565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390614366565b60405180910390fd5b92915050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61121061227c565b73ffffffffffffffffffffffffffffffffffffffff1661122e611922565b73ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90614206565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112cf573d6000803e3d6000fd5b5050565b6112ee83838360405180602001604052806000815250611d62565b505050565b60006112fd610d9f565b821061133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906140e6565b60405180910390fd5b819050919050565b61134e61227c565b73ffffffffffffffffffffffffffffffffffffffff1661136c611922565b73ffffffffffffffffffffffffffffffffffffffff16146113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990614206565b60405180910390fd5b60005b8383905081101561148857816011600086868581811061140e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611423919061379b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550808061148090614815565b9150506113c5565b50505050565b61149661227c565b73ffffffffffffffffffffffffffffffffffffffff166114b4611922565b73ffffffffffffffffffffffffffffffffffffffff161461150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190614206565b60405180910390fd5b80600f9080519060200190611520929190613526565b5050565b600061152f8261290d565b600001519050919050565b600a8054611547906147b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611573906147b2565b80156115c05780601f10611595576101008083540402835291602001916115c0565b820191906000526020600020905b8154815290600101906020018083116115a357829003601f168201915b505050505081565b600d60009054906101000a900460ff1681565b600781565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611651576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611648906141a6565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116d161227c565b73ffffffffffffffffffffffffffffffffffffffff166116ef611922565b73ffffffffffffffffffffffffffffffffffffffff1614611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90614206565b60405180910390fd5b61174f6000612b10565b565b600c5481565b61175f61227c565b73ffffffffffffffffffffffffffffffffffffffff1661177d611922565b73ffffffffffffffffffffffffffffffffffffffff16146117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca90614206565b60405180910390fd5b600e54811115611818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180f90614226565b60405180910390fd5b6118228282612336565b80600e60008282546118349190614641565b925050819055505050565b61184761227c565b73ffffffffffffffffffffffffffffffffffffffff16611865611922565b73ffffffffffffffffffffffffffffffffffffffff16146118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b290614206565b60405180910390fd5b60006118c5610d9f565b9050600b5482826118d6919061452c565b1115611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e906141c6565b60405180910390fd5b81600e819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61195461227c565b73ffffffffffffffffffffffffffffffffffffffff16611972611922565b73ffffffffffffffffffffffffffffffffffffffff16146119c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bf90614206565b60405180910390fd5b80601090805190602001906119de929190613526565b5050565b6060600280546119f1906147b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1d906147b2565b8015611a6a5780601f10611a3f57610100808354040283529160200191611a6a565b820191906000526020600020905b815481529060010190602001808311611a4d57829003601f168201915b5050505050905090565b6000611a7e610d9f565b9050600d60019054906101000a900460ff16611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac690614166565b60405180910390fd5b6007821115611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a906142a6565b60405180910390fd5b600e54600b54611b239190614641565b8282611b2f919061452c565b1115611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b67906140a6565b60405180910390fd5b3482600c54611b7f91906145b3565b1115611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb790614126565b60405180910390fd5b611bca3383612336565b5050565b611bd661227c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90614266565b60405180910390fd5b8060066000611c5161227c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cfe61227c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d439190614009565b60405180910390a35050565b600d60019054906101000a900460ff1681565b611d6d848484612354565b611d7984848484612bd6565b611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf90614306565b60405180910390fd5b50505050565b6060611dc98261226f565b611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90614246565b60405180910390fd5b6000611e12612d6d565b90506000815111611e325760405180602001604052806000815250611e5d565b80611e3c84612dff565b604051602001611e4d929190613f7e565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b606060108054611e80906147b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611eac906147b2565b8015611ef95780601f10611ece57610100808354040283529160200191611ef9565b820191906000526020600020905b815481529060010190602001808311611edc57829003601f168201915b5050505050905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f9f61227c565b73ffffffffffffffffffffffffffffffffffffffff16611fbd611922565b73ffffffffffffffffffffffffffffffffffffffff1614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90614206565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207a90614086565b60405180910390fd5b61208c81612b10565b50565b61209761227c565b73ffffffffffffffffffffffffffffffffffffffff166120b5611922565b73ffffffffffffffffffffffffffffffffffffffff161461210b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210290614206565b60405180910390fd5b80600a9080519060200190612121929190613526565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121f057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061225857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612268575061226782612fac565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612350828260405180602001604052806000815250613016565b5050565b600061235f8261290d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661238661227c565b73ffffffffffffffffffffffffffffffffffffffff1614806123e257506123ab61227c565b73ffffffffffffffffffffffffffffffffffffffff166123ca846109da565b73ffffffffffffffffffffffffffffffffffffffff16145b806123fe57506123fd82600001516123f861227c565b611f03565b5b905080612440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243790614286565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146124b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a9906141e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251990614106565b60405180910390fd5b61252f85858560016134f5565b61253f6000848460000151612284565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125ad919061460d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661265191906144e6565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612757919061452c565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561289d576127cd8161226f565b1561289c576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129058686866001613507565b505050505050565b6129156135ac565b61291e8261226f565b61295d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612954906140c6565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106129c15760017f0000000000000000000000000000000000000000000000000000000000000000846129b49190614641565b6129be919061452c565b90505b60008390505b818110612acf576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612abb57809350505050612b0b565b508080612ac790614788565b9150506129c7565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0290614386565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612bf78473ffffffffffffffffffffffffffffffffffffffff1661350d565b15612d60578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c2061227c565b8786866040518563ffffffff1660e01b8152600401612c429493929190613fbd565b602060405180830381600087803b158015612c5c57600080fd5b505af1925050508015612c8d57506040513d601f19601f82011682018060405250810190612c8a91906139ec565b60015b612d10573d8060008114612cbd576040519150601f19603f3d011682016040523d82523d6000602084013e612cc2565b606091505b50600081511415612d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cff90614306565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d65565b600190505b949350505050565b6060600f8054612d7c906147b2565b80601f0160208091040260200160405190810160405280929190818152602001828054612da8906147b2565b8015612df55780601f10612dca57610100808354040283529160200191612df5565b820191906000526020600020905b815481529060010190602001808311612dd857829003601f168201915b5050505050905090565b60606000821415612e47576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fa7565b600082905060005b60008214612e79578080612e6290614815565b915050600a82612e729190614582565b9150612e4f565b60008167ffffffffffffffff811115612ebb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612eed5781602001600182028036833780820191505090505b5090505b60008514612fa057600182612f069190614641565b9150600a85612f15919061485e565b6030612f21919061452c565b60f81b818381518110612f5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f999190614582565b9450612ef1565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561308c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308390614346565b60405180910390fd5b6130958161226f565b156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc90614326565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312f906143c6565b60405180910390fd5b61314560008583866134f5565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161324291906144e6565b6fffffffffffffffffffffffffffffffff16815260200185836020015161326991906144e6565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156134d857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134786000888488612bd6565b6134b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ae90614306565b60405180910390fd5b81806134c290614815565b92505080806134d090614815565b915050613407565b50806000819055506134ed6000878588613507565b505050505050565b61350184848484613520565b50505050565b50505050565b600080823b905060008111915050919050565b50505050565b828054613532906147b2565b90600052602060002090601f016020900481019282613554576000855561359b565b82601f1061356d57805160ff191683800117855561359b565b8280016001018555821561359b579182015b8281111561359a57825182559160200191906001019061357f565b5b5090506135a891906135e6565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156135ff5760008160009055506001016135e7565b5090565b600061361661361184614441565b61441c565b90508281526020810184848401111561362e57600080fd5b613639848285614746565b509392505050565b600061365461364f84614472565b61441c565b90508281526020810184848401111561366c57600080fd5b613677848285614746565b509392505050565b60008135905061368e816150d3565b92915050565b60008083601f8401126136a657600080fd5b8235905067ffffffffffffffff8111156136bf57600080fd5b6020830191508360208202830111156136d757600080fd5b9250929050565b6000813590506136ed816150ea565b92915050565b60008135905061370281615101565b92915050565b60008151905061371781615101565b92915050565b600082601f83011261372e57600080fd5b813561373e848260208601613603565b91505092915050565b600082601f83011261375857600080fd5b8135613768848260208601613641565b91505092915050565b60008135905061378081615118565b92915050565b6000813590506137958161512f565b92915050565b6000602082840312156137ad57600080fd5b60006137bb8482850161367f565b91505092915050565b600080604083850312156137d757600080fd5b60006137e58582860161367f565b92505060206137f68582860161367f565b9150509250929050565b60008060006060848603121561381557600080fd5b60006138238682870161367f565b93505060206138348682870161367f565b925050604061384586828701613771565b9150509250925092565b6000806000806080858703121561386557600080fd5b60006138738782880161367f565b94505060206138848782880161367f565b935050604061389587828801613771565b925050606085013567ffffffffffffffff8111156138b257600080fd5b6138be8782880161371d565b91505092959194509250565b600080604083850312156138dd57600080fd5b60006138eb8582860161367f565b92505060206138fc858286016136de565b9150509250929050565b6000806040838503121561391957600080fd5b60006139278582860161367f565b925050602061393885828601613771565b9150509250929050565b60008060006040848603121561395757600080fd5b600084013567ffffffffffffffff81111561397157600080fd5b61397d86828701613694565b9350935050602061399086828701613786565b9150509250925092565b6000602082840312156139ac57600080fd5b60006139ba848285016136de565b91505092915050565b6000602082840312156139d557600080fd5b60006139e3848285016136f3565b91505092915050565b6000602082840312156139fe57600080fd5b6000613a0c84828501613708565b91505092915050565b600060208284031215613a2757600080fd5b600082013567ffffffffffffffff811115613a4157600080fd5b613a4d84828501613747565b91505092915050565b600060208284031215613a6857600080fd5b6000613a7684828501613771565b91505092915050565b600060208284031215613a9157600080fd5b6000613a9f84828501613786565b91505092915050565b613ab1816146a9565b82525050565b613ac0816146bb565b82525050565b6000613ad1826144a3565b613adb81856144b9565b9350613aeb818560208601614755565b613af48161494b565b840191505092915050565b6000613b0a826144ae565b613b1481856144ca565b9350613b24818560208601614755565b613b2d8161494b565b840191505092915050565b6000613b43826144ae565b613b4d81856144db565b9350613b5d818560208601614755565b80840191505092915050565b6000613b766022836144ca565b9150613b818261495c565b604082019050919050565b6000613b99601c836144ca565b9150613ba4826149ab565b602082019050919050565b6000613bbc6026836144ca565b9150613bc7826149d4565b604082019050919050565b6000613bdf6020836144ca565b9150613bea82614a23565b602082019050919050565b6000613c02602a836144ca565b9150613c0d82614a4c565b604082019050919050565b6000613c256023836144ca565b9150613c3082614a9b565b604082019050919050565b6000613c486025836144ca565b9150613c5382614aea565b604082019050919050565b6000613c6b601f836144ca565b9150613c7682614b39565b602082019050919050565b6000613c8e6019836144ca565b9150613c9982614b62565b602082019050919050565b6000613cb16029836144ca565b9150613cbc82614b8b565b604082019050919050565b6000613cd46039836144ca565b9150613cdf82614bda565b604082019050919050565b6000613cf7602b836144ca565b9150613d0282614c29565b604082019050919050565b6000613d1a6017836144ca565b9150613d2582614c78565b602082019050919050565b6000613d3d6026836144ca565b9150613d4882614ca1565b604082019050919050565b6000613d606020836144ca565b9150613d6b82614cf0565b602082019050919050565b6000613d836017836144ca565b9150613d8e82614d19565b602082019050919050565b6000613da6602f836144ca565b9150613db182614d42565b604082019050919050565b6000613dc9601a836144ca565b9150613dd482614d91565b602082019050919050565b6000613dec6032836144ca565b9150613df782614dba565b604082019050919050565b6000613e0f601b836144ca565b9150613e1a82614e09565b602082019050919050565b6000613e326022836144ca565b9150613e3d82614e32565b604082019050919050565b6000613e556022836144ca565b9150613e6082614e81565b604082019050919050565b6000613e786033836144ca565b9150613e8382614ed0565b604082019050919050565b6000613e9b601d836144ca565b9150613ea682614f1f565b602082019050919050565b6000613ebe6021836144ca565b9150613ec982614f48565b604082019050919050565b6000613ee1602e836144ca565b9150613eec82614f97565b604082019050919050565b6000613f04602f836144ca565b9150613f0f82614fe6565b604082019050919050565b6000613f27602d836144ca565b9150613f3282615035565b604082019050919050565b6000613f4a6022836144ca565b9150613f5582615084565b604082019050919050565b613f698161472f565b82525050565b613f7881614739565b82525050565b6000613f8a8285613b38565b9150613f968284613b38565b91508190509392505050565b6000602082019050613fb76000830184613aa8565b92915050565b6000608082019050613fd26000830187613aa8565b613fdf6020830186613aa8565b613fec6040830185613f60565b8181036060830152613ffe8184613ac6565b905095945050505050565b600060208201905061401e6000830184613ab7565b92915050565b6000602082019050818103600083015261403e8184613aff565b905092915050565b6000602082019050818103600083015261405f81613b69565b9050919050565b6000602082019050818103600083015261407f81613b8c565b9050919050565b6000602082019050818103600083015261409f81613baf565b9050919050565b600060208201905081810360008301526140bf81613bd2565b9050919050565b600060208201905081810360008301526140df81613bf5565b9050919050565b600060208201905081810360008301526140ff81613c18565b9050919050565b6000602082019050818103600083015261411f81613c3b565b9050919050565b6000602082019050818103600083015261413f81613c5e565b9050919050565b6000602082019050818103600083015261415f81613c81565b9050919050565b6000602082019050818103600083015261417f81613ca4565b9050919050565b6000602082019050818103600083015261419f81613cc7565b9050919050565b600060208201905081810360008301526141bf81613cea565b9050919050565b600060208201905081810360008301526141df81613d0d565b9050919050565b600060208201905081810360008301526141ff81613d30565b9050919050565b6000602082019050818103600083015261421f81613d53565b9050919050565b6000602082019050818103600083015261423f81613d76565b9050919050565b6000602082019050818103600083015261425f81613d99565b9050919050565b6000602082019050818103600083015261427f81613dbc565b9050919050565b6000602082019050818103600083015261429f81613ddf565b9050919050565b600060208201905081810360008301526142bf81613e02565b9050919050565b600060208201905081810360008301526142df81613e25565b9050919050565b600060208201905081810360008301526142ff81613e48565b9050919050565b6000602082019050818103600083015261431f81613e6b565b9050919050565b6000602082019050818103600083015261433f81613e8e565b9050919050565b6000602082019050818103600083015261435f81613eb1565b9050919050565b6000602082019050818103600083015261437f81613ed4565b9050919050565b6000602082019050818103600083015261439f81613ef7565b9050919050565b600060208201905081810360008301526143bf81613f1a565b9050919050565b600060208201905081810360008301526143df81613f3d565b9050919050565b60006020820190506143fb6000830184613f60565b92915050565b60006020820190506144166000830184613f6f565b92915050565b6000614426614437565b905061443282826147e4565b919050565b6000604051905090565b600067ffffffffffffffff82111561445c5761445b61491c565b5b6144658261494b565b9050602081019050919050565b600067ffffffffffffffff82111561448d5761448c61491c565b5b6144968261494b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006144f1826146f3565b91506144fc836146f3565b9250826fffffffffffffffffffffffffffffffff038211156145215761452061488f565b5b828201905092915050565b60006145378261472f565b91506145428361472f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145775761457661488f565b5b828201905092915050565b600061458d8261472f565b91506145988361472f565b9250826145a8576145a76148be565b5b828204905092915050565b60006145be8261472f565b91506145c98361472f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146025761460161488f565b5b828202905092915050565b6000614618826146f3565b9150614623836146f3565b9250828210156146365761463561488f565b5b828203905092915050565b600061464c8261472f565b91506146578361472f565b92508282101561466a5761466961488f565b5b828203905092915050565b600061468082614739565b915061468b83614739565b92508282101561469e5761469d61488f565b5b828203905092915050565b60006146b48261470f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614773578082015181840152602081019050614758565b83811115614782576000848401525b50505050565b60006147938261472f565b915060008214156147a7576147a661488f565b5b600182039050919050565b600060028204905060018216806147ca57607f821691505b602082108114156147de576147dd6148ed565b5b50919050565b6147ed8261494b565b810181811067ffffffffffffffff8211171561480c5761480b61491c565b5b80604052505050565b60006148208261472f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148535761485261488f565b5b600182019050919050565b60006148698261472f565b91506148748361472f565b925082614884576148836148be565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74206973206e6f742061637469766500000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f43616e206f6e6c79207365742068696768657220707269636500000000000000600082015250565b7f5075626c6963206d696e74206d7573742062652061637469766520746f206d6960008201527f6e7420746f6b656e730000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f5265736572766520746f6f206d616e7920746f6b656e73000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74206d6f7265207468616e207265736572766564000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6150dc816146a9565b81146150e757600080fd5b50565b6150f3816146bb565b81146150fe57600080fd5b50565b61510a816146c7565b811461511557600080fd5b50565b6151218161472f565b811461512c57600080fd5b50565b61513881614739565b811461514357600080fd5b5056fea26469706673582212204fe57e348fd3f32aa5cfb6d0f5299f3a04c9ea35509155f29728f71315158c6664736f6c634300080400330000000000000000000000000000000000000000000000000000000000000ada0000000000000000000000000000000000000000000000000000000000002b670000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806365f130971161012e578063a22cb465116100ab578063d7224ba01161006f578063d7224ba014610851578063e8a3d4851461087c578063e985e9c5146108a7578063f2fde38b146108e4578063ffe630b51461090d5761023b565b8063a22cb4651461076c578063b67c25a314610795578063b88d4fde146107c0578063c87b56dd146107e9578063d5abeb01146108265761023b565b8063819b25ba116100f2578063819b25ba146106a85780638da5cb5b146106d1578063938e3d7b146106fc57806395d89b4114610725578063a0712d68146107505761023b565b806365f13097146105d557806370a0823114610600578063715018a61461063d5780637b1b1de6146106545780637de55fe11461067f5761023b565b80632f745c59116101bc578063512513201161018057806351251320146104f057806355f804b3146105195780636352211e146105425780636373a6b11461057f57806364de1e85146105aa5761023b565b80632f745c59146103f95780633052f8b3146104365780633ccfd60b1461047357806342842e0e1461048a5780634f6ccce7146104b35761023b565b806318160ddd1161020357806318160ddd1461032a57806318bea1c41461035557806323b872dd1461037e5780632b707c71146103a75780632bf2762f146103d05761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e55780630cc03f721461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906139c3565b610936565b6040516102749190614009565b60405180910390f35b34801561028957600080fd5b50610292610948565b60405161029f9190614024565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613a56565b6109da565b6040516102dc9190613fa2565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613906565b610a5f565b005b61032860048036038101906103239190613a7f565b610b78565b005b34801561033657600080fd5b5061033f610d9f565b60405161034c91906143e6565b60405180910390f35b34801561036157600080fd5b5061037c6004803603810190610377919061399a565b610da8565b005b34801561038a57600080fd5b506103a560048036038101906103a09190613800565b610e41565b005b3480156103b357600080fd5b506103ce60048036038101906103c9919061399a565b610e51565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190613a56565b610eea565b005b34801561040557600080fd5b50610420600480360381019061041b9190613906565b610fb4565b60405161042d91906143e6565b60405180910390f35b34801561044257600080fd5b5061045d6004803603810190610458919061379b565b6111b2565b60405161046a9190614401565b60405180910390f35b34801561047f57600080fd5b50610488611208565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613800565b6112d3565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190613a56565b6112f3565b6040516104e791906143e6565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190613942565b611346565b005b34801561052557600080fd5b50610540600480360381019061053b9190613a15565b61148e565b005b34801561054e57600080fd5b5061056960048036038101906105649190613a56565b611524565b6040516105769190613fa2565b60405180910390f35b34801561058b57600080fd5b5061059461153a565b6040516105a19190614024565b60405180910390f35b3480156105b657600080fd5b506105bf6115c8565b6040516105cc9190614009565b60405180910390f35b3480156105e157600080fd5b506105ea6115db565b6040516105f791906143e6565b60405180910390f35b34801561060c57600080fd5b506106276004803603810190610622919061379b565b6115e0565b60405161063491906143e6565b60405180910390f35b34801561064957600080fd5b506106526116c9565b005b34801561066057600080fd5b50610669611751565b60405161067691906143e6565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a19190613906565b611757565b005b3480156106b457600080fd5b506106cf60048036038101906106ca9190613a56565b61183f565b005b3480156106dd57600080fd5b506106e6611922565b6040516106f39190613fa2565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190613a15565b61194c565b005b34801561073157600080fd5b5061073a6119e2565b6040516107479190614024565b60405180910390f35b61076a60048036038101906107659190613a56565b611a74565b005b34801561077857600080fd5b50610793600480360381019061078e91906138ca565b611bce565b005b3480156107a157600080fd5b506107aa611d4f565b6040516107b79190614009565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e2919061384f565b611d62565b005b3480156107f557600080fd5b50610810600480360381019061080b9190613a56565b611dbe565b60405161081d9190614024565b60405180910390f35b34801561083257600080fd5b5061083b611e65565b60405161084891906143e6565b60405180910390f35b34801561085d57600080fd5b50610866611e6b565b60405161087391906143e6565b60405180910390f35b34801561088857600080fd5b50610891611e71565b60405161089e9190614024565b60405180910390f35b3480156108b357600080fd5b506108ce60048036038101906108c991906137c4565b611f03565b6040516108db9190614009565b60405180910390f35b3480156108f057600080fd5b5061090b6004803603810190610906919061379b565b611f97565b005b34801561091957600080fd5b50610934600480360381019061092f9190613a15565b61208f565b005b600061094182612125565b9050919050565b606060018054610957906147b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610983906147b2565b80156109d05780601f106109a5576101008083540402835291602001916109d0565b820191906000526020600020905b8154815290600101906020018083116109b357829003601f168201915b5050505050905090565b60006109e58261226f565b610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b906143a6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6a82611524565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad2906142e6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610afa61227c565b73ffffffffffffffffffffffffffffffffffffffff161480610b295750610b2881610b2361227c565b611f03565b5b610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f90614186565b60405180910390fd5b610b73838383612284565b505050565b6000610b82610d9f565b9050600d60009054906101000a900460ff16610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca90614066565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168260ff161115610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f906142c6565b60405180910390fd5b600e54600b54610c789190614641565b8260ff1682610c87919061452c565b1115610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf906140a6565b60405180910390fd5b348260ff16600c54610cda91906145b3565b1115610d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1290614126565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16610d769190614675565b92506101000a81548160ff021916908360ff160217905550610d9b338360ff16612336565b5050565b60008054905090565b610db061227c565b73ffffffffffffffffffffffffffffffffffffffff16610dce611922565b73ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90614206565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b610e4c838383612354565b505050565b610e5961227c565b73ffffffffffffffffffffffffffffffffffffffff16610e77611922565b73ffffffffffffffffffffffffffffffffffffffff1614610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490614206565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b610ef261227c565b73ffffffffffffffffffffffffffffffffffffffff16610f10611922565b73ffffffffffffffffffffffffffffffffffffffff1614610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d90614206565b60405180910390fd5b600c548111610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa190614146565b60405180910390fd5b80600c8190555050565b6000610fbf836115e0565b8210611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff790614046565b60405180910390fd5b600061100a610d9f565b905060008060005b83811015611170576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461110457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561115c578684141561114d5781955050505050506111ac565b838061115890614815565b9450505b50808061116890614815565b915050611012565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390614366565b60405180910390fd5b92915050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61121061227c565b73ffffffffffffffffffffffffffffffffffffffff1661122e611922565b73ffffffffffffffffffffffffffffffffffffffff1614611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90614206565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112cf573d6000803e3d6000fd5b5050565b6112ee83838360405180602001604052806000815250611d62565b505050565b60006112fd610d9f565b821061133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906140e6565b60405180910390fd5b819050919050565b61134e61227c565b73ffffffffffffffffffffffffffffffffffffffff1661136c611922565b73ffffffffffffffffffffffffffffffffffffffff16146113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990614206565b60405180910390fd5b60005b8383905081101561148857816011600086868581811061140e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611423919061379b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550808061148090614815565b9150506113c5565b50505050565b61149661227c565b73ffffffffffffffffffffffffffffffffffffffff166114b4611922565b73ffffffffffffffffffffffffffffffffffffffff161461150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190614206565b60405180910390fd5b80600f9080519060200190611520929190613526565b5050565b600061152f8261290d565b600001519050919050565b600a8054611547906147b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611573906147b2565b80156115c05780601f10611595576101008083540402835291602001916115c0565b820191906000526020600020905b8154815290600101906020018083116115a357829003601f168201915b505050505081565b600d60009054906101000a900460ff1681565b600781565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611651576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611648906141a6565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116d161227c565b73ffffffffffffffffffffffffffffffffffffffff166116ef611922565b73ffffffffffffffffffffffffffffffffffffffff1614611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90614206565b60405180910390fd5b61174f6000612b10565b565b600c5481565b61175f61227c565b73ffffffffffffffffffffffffffffffffffffffff1661177d611922565b73ffffffffffffffffffffffffffffffffffffffff16146117d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ca90614206565b60405180910390fd5b600e54811115611818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180f90614226565b60405180910390fd5b6118228282612336565b80600e60008282546118349190614641565b925050819055505050565b61184761227c565b73ffffffffffffffffffffffffffffffffffffffff16611865611922565b73ffffffffffffffffffffffffffffffffffffffff16146118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b290614206565b60405180910390fd5b60006118c5610d9f565b9050600b5482826118d6919061452c565b1115611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e906141c6565b60405180910390fd5b81600e819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61195461227c565b73ffffffffffffffffffffffffffffffffffffffff16611972611922565b73ffffffffffffffffffffffffffffffffffffffff16146119c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bf90614206565b60405180910390fd5b80601090805190602001906119de929190613526565b5050565b6060600280546119f1906147b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1d906147b2565b8015611a6a5780601f10611a3f57610100808354040283529160200191611a6a565b820191906000526020600020905b815481529060010190602001808311611a4d57829003601f168201915b5050505050905090565b6000611a7e610d9f565b9050600d60019054906101000a900460ff16611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac690614166565b60405180910390fd5b6007821115611b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0a906142a6565b60405180910390fd5b600e54600b54611b239190614641565b8282611b2f919061452c565b1115611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b67906140a6565b60405180910390fd5b3482600c54611b7f91906145b3565b1115611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb790614126565b60405180910390fd5b611bca3383612336565b5050565b611bd661227c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90614266565b60405180910390fd5b8060066000611c5161227c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cfe61227c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d439190614009565b60405180910390a35050565b600d60019054906101000a900460ff1681565b611d6d848484612354565b611d7984848484612bd6565b611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf90614306565b60405180910390fd5b50505050565b6060611dc98261226f565b611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90614246565b60405180910390fd5b6000611e12612d6d565b90506000815111611e325760405180602001604052806000815250611e5d565b80611e3c84612dff565b604051602001611e4d929190613f7e565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b606060108054611e80906147b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611eac906147b2565b8015611ef95780601f10611ece57610100808354040283529160200191611ef9565b820191906000526020600020905b815481529060010190602001808311611edc57829003601f168201915b5050505050905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f9f61227c565b73ffffffffffffffffffffffffffffffffffffffff16611fbd611922565b73ffffffffffffffffffffffffffffffffffffffff1614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90614206565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207a90614086565b60405180910390fd5b61208c81612b10565b50565b61209761227c565b73ffffffffffffffffffffffffffffffffffffffff166120b5611922565b73ffffffffffffffffffffffffffffffffffffffff161461210b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210290614206565b60405180910390fd5b80600a9080519060200190612121929190613526565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121f057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061225857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612268575061226782612fac565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612350828260405180602001604052806000815250613016565b5050565b600061235f8261290d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661238661227c565b73ffffffffffffffffffffffffffffffffffffffff1614806123e257506123ab61227c565b73ffffffffffffffffffffffffffffffffffffffff166123ca846109da565b73ffffffffffffffffffffffffffffffffffffffff16145b806123fe57506123fd82600001516123f861227c565b611f03565b5b905080612440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243790614286565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146124b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a9906141e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251990614106565b60405180910390fd5b61252f85858560016134f5565b61253f6000848460000151612284565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125ad919061460d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661265191906144e6565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612757919061452c565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561289d576127cd8161226f565b1561289c576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129058686866001613507565b505050505050565b6129156135ac565b61291e8261226f565b61295d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612954906140c6565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000ada83106129c15760017f0000000000000000000000000000000000000000000000000000000000000ada846129b49190614641565b6129be919061452c565b90505b60008390505b818110612acf576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612abb57809350505050612b0b565b508080612ac790614788565b9150506129c7565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0290614386565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612bf78473ffffffffffffffffffffffffffffffffffffffff1661350d565b15612d60578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c2061227c565b8786866040518563ffffffff1660e01b8152600401612c429493929190613fbd565b602060405180830381600087803b158015612c5c57600080fd5b505af1925050508015612c8d57506040513d601f19601f82011682018060405250810190612c8a91906139ec565b60015b612d10573d8060008114612cbd576040519150601f19603f3d011682016040523d82523d6000602084013e612cc2565b606091505b50600081511415612d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cff90614306565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d65565b600190505b949350505050565b6060600f8054612d7c906147b2565b80601f0160208091040260200160405190810160405280929190818152602001828054612da8906147b2565b8015612df55780601f10612dca57610100808354040283529160200191612df5565b820191906000526020600020905b815481529060010190602001808311612dd857829003601f168201915b5050505050905090565b60606000821415612e47576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fa7565b600082905060005b60008214612e79578080612e6290614815565b915050600a82612e729190614582565b9150612e4f565b60008167ffffffffffffffff811115612ebb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612eed5781602001600182028036833780820191505090505b5090505b60008514612fa057600182612f069190614641565b9150600a85612f15919061485e565b6030612f21919061452c565b60f81b818381518110612f5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f999190614582565b9450612ef1565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561308c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308390614346565b60405180910390fd5b6130958161226f565b156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc90614326565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000ada831115613138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312f906143c6565b60405180910390fd5b61314560008583866134f5565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161324291906144e6565b6fffffffffffffffffffffffffffffffff16815260200185836020015161326991906144e6565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156134d857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134786000888488612bd6565b6134b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134ae90614306565b60405180910390fd5b81806134c290614815565b92505080806134d090614815565b915050613407565b50806000819055506134ed6000878588613507565b505050505050565b61350184848484613520565b50505050565b50505050565b600080823b905060008111915050919050565b50505050565b828054613532906147b2565b90600052602060002090601f016020900481019282613554576000855561359b565b82601f1061356d57805160ff191683800117855561359b565b8280016001018555821561359b579182015b8281111561359a57825182559160200191906001019061357f565b5b5090506135a891906135e6565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156135ff5760008160009055506001016135e7565b5090565b600061361661361184614441565b61441c565b90508281526020810184848401111561362e57600080fd5b613639848285614746565b509392505050565b600061365461364f84614472565b61441c565b90508281526020810184848401111561366c57600080fd5b613677848285614746565b509392505050565b60008135905061368e816150d3565b92915050565b60008083601f8401126136a657600080fd5b8235905067ffffffffffffffff8111156136bf57600080fd5b6020830191508360208202830111156136d757600080fd5b9250929050565b6000813590506136ed816150ea565b92915050565b60008135905061370281615101565b92915050565b60008151905061371781615101565b92915050565b600082601f83011261372e57600080fd5b813561373e848260208601613603565b91505092915050565b600082601f83011261375857600080fd5b8135613768848260208601613641565b91505092915050565b60008135905061378081615118565b92915050565b6000813590506137958161512f565b92915050565b6000602082840312156137ad57600080fd5b60006137bb8482850161367f565b91505092915050565b600080604083850312156137d757600080fd5b60006137e58582860161367f565b92505060206137f68582860161367f565b9150509250929050565b60008060006060848603121561381557600080fd5b60006138238682870161367f565b93505060206138348682870161367f565b925050604061384586828701613771565b9150509250925092565b6000806000806080858703121561386557600080fd5b60006138738782880161367f565b94505060206138848782880161367f565b935050604061389587828801613771565b925050606085013567ffffffffffffffff8111156138b257600080fd5b6138be8782880161371d565b91505092959194509250565b600080604083850312156138dd57600080fd5b60006138eb8582860161367f565b92505060206138fc858286016136de565b9150509250929050565b6000806040838503121561391957600080fd5b60006139278582860161367f565b925050602061393885828601613771565b9150509250929050565b60008060006040848603121561395757600080fd5b600084013567ffffffffffffffff81111561397157600080fd5b61397d86828701613694565b9350935050602061399086828701613786565b9150509250925092565b6000602082840312156139ac57600080fd5b60006139ba848285016136de565b91505092915050565b6000602082840312156139d557600080fd5b60006139e3848285016136f3565b91505092915050565b6000602082840312156139fe57600080fd5b6000613a0c84828501613708565b91505092915050565b600060208284031215613a2757600080fd5b600082013567ffffffffffffffff811115613a4157600080fd5b613a4d84828501613747565b91505092915050565b600060208284031215613a6857600080fd5b6000613a7684828501613771565b91505092915050565b600060208284031215613a9157600080fd5b6000613a9f84828501613786565b91505092915050565b613ab1816146a9565b82525050565b613ac0816146bb565b82525050565b6000613ad1826144a3565b613adb81856144b9565b9350613aeb818560208601614755565b613af48161494b565b840191505092915050565b6000613b0a826144ae565b613b1481856144ca565b9350613b24818560208601614755565b613b2d8161494b565b840191505092915050565b6000613b43826144ae565b613b4d81856144db565b9350613b5d818560208601614755565b80840191505092915050565b6000613b766022836144ca565b9150613b818261495c565b604082019050919050565b6000613b99601c836144ca565b9150613ba4826149ab565b602082019050919050565b6000613bbc6026836144ca565b9150613bc7826149d4565b604082019050919050565b6000613bdf6020836144ca565b9150613bea82614a23565b602082019050919050565b6000613c02602a836144ca565b9150613c0d82614a4c565b604082019050919050565b6000613c256023836144ca565b9150613c3082614a9b565b604082019050919050565b6000613c486025836144ca565b9150613c5382614aea565b604082019050919050565b6000613c6b601f836144ca565b9150613c7682614b39565b602082019050919050565b6000613c8e6019836144ca565b9150613c9982614b62565b602082019050919050565b6000613cb16029836144ca565b9150613cbc82614b8b565b604082019050919050565b6000613cd46039836144ca565b9150613cdf82614bda565b604082019050919050565b6000613cf7602b836144ca565b9150613d0282614c29565b604082019050919050565b6000613d1a6017836144ca565b9150613d2582614c78565b602082019050919050565b6000613d3d6026836144ca565b9150613d4882614ca1565b604082019050919050565b6000613d606020836144ca565b9150613d6b82614cf0565b602082019050919050565b6000613d836017836144ca565b9150613d8e82614d19565b602082019050919050565b6000613da6602f836144ca565b9150613db182614d42565b604082019050919050565b6000613dc9601a836144ca565b9150613dd482614d91565b602082019050919050565b6000613dec6032836144ca565b9150613df782614dba565b604082019050919050565b6000613e0f601b836144ca565b9150613e1a82614e09565b602082019050919050565b6000613e326022836144ca565b9150613e3d82614e32565b604082019050919050565b6000613e556022836144ca565b9150613e6082614e81565b604082019050919050565b6000613e786033836144ca565b9150613e8382614ed0565b604082019050919050565b6000613e9b601d836144ca565b9150613ea682614f1f565b602082019050919050565b6000613ebe6021836144ca565b9150613ec982614f48565b604082019050919050565b6000613ee1602e836144ca565b9150613eec82614f97565b604082019050919050565b6000613f04602f836144ca565b9150613f0f82614fe6565b604082019050919050565b6000613f27602d836144ca565b9150613f3282615035565b604082019050919050565b6000613f4a6022836144ca565b9150613f5582615084565b604082019050919050565b613f698161472f565b82525050565b613f7881614739565b82525050565b6000613f8a8285613b38565b9150613f968284613b38565b91508190509392505050565b6000602082019050613fb76000830184613aa8565b92915050565b6000608082019050613fd26000830187613aa8565b613fdf6020830186613aa8565b613fec6040830185613f60565b8181036060830152613ffe8184613ac6565b905095945050505050565b600060208201905061401e6000830184613ab7565b92915050565b6000602082019050818103600083015261403e8184613aff565b905092915050565b6000602082019050818103600083015261405f81613b69565b9050919050565b6000602082019050818103600083015261407f81613b8c565b9050919050565b6000602082019050818103600083015261409f81613baf565b9050919050565b600060208201905081810360008301526140bf81613bd2565b9050919050565b600060208201905081810360008301526140df81613bf5565b9050919050565b600060208201905081810360008301526140ff81613c18565b9050919050565b6000602082019050818103600083015261411f81613c3b565b9050919050565b6000602082019050818103600083015261413f81613c5e565b9050919050565b6000602082019050818103600083015261415f81613c81565b9050919050565b6000602082019050818103600083015261417f81613ca4565b9050919050565b6000602082019050818103600083015261419f81613cc7565b9050919050565b600060208201905081810360008301526141bf81613cea565b9050919050565b600060208201905081810360008301526141df81613d0d565b9050919050565b600060208201905081810360008301526141ff81613d30565b9050919050565b6000602082019050818103600083015261421f81613d53565b9050919050565b6000602082019050818103600083015261423f81613d76565b9050919050565b6000602082019050818103600083015261425f81613d99565b9050919050565b6000602082019050818103600083015261427f81613dbc565b9050919050565b6000602082019050818103600083015261429f81613ddf565b9050919050565b600060208201905081810360008301526142bf81613e02565b9050919050565b600060208201905081810360008301526142df81613e25565b9050919050565b600060208201905081810360008301526142ff81613e48565b9050919050565b6000602082019050818103600083015261431f81613e6b565b9050919050565b6000602082019050818103600083015261433f81613e8e565b9050919050565b6000602082019050818103600083015261435f81613eb1565b9050919050565b6000602082019050818103600083015261437f81613ed4565b9050919050565b6000602082019050818103600083015261439f81613ef7565b9050919050565b600060208201905081810360008301526143bf81613f1a565b9050919050565b600060208201905081810360008301526143df81613f3d565b9050919050565b60006020820190506143fb6000830184613f60565b92915050565b60006020820190506144166000830184613f6f565b92915050565b6000614426614437565b905061443282826147e4565b919050565b6000604051905090565b600067ffffffffffffffff82111561445c5761445b61491c565b5b6144658261494b565b9050602081019050919050565b600067ffffffffffffffff82111561448d5761448c61491c565b5b6144968261494b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006144f1826146f3565b91506144fc836146f3565b9250826fffffffffffffffffffffffffffffffff038211156145215761452061488f565b5b828201905092915050565b60006145378261472f565b91506145428361472f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145775761457661488f565b5b828201905092915050565b600061458d8261472f565b91506145988361472f565b9250826145a8576145a76148be565b5b828204905092915050565b60006145be8261472f565b91506145c98361472f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146025761460161488f565b5b828202905092915050565b6000614618826146f3565b9150614623836146f3565b9250828210156146365761463561488f565b5b828203905092915050565b600061464c8261472f565b91506146578361472f565b92508282101561466a5761466961488f565b5b828203905092915050565b600061468082614739565b915061468b83614739565b92508282101561469e5761469d61488f565b5b828203905092915050565b60006146b48261470f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614773578082015181840152602081019050614758565b83811115614782576000848401525b50505050565b60006147938261472f565b915060008214156147a7576147a661488f565b5b600182039050919050565b600060028204905060018216806147ca57607f821691505b602082108114156147de576147dd6148ed565b5b50919050565b6147ed8261494b565b810181811067ffffffffffffffff8211171561480c5761480b61491c565b5b80604052505050565b60006148208261472f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148535761485261488f565b5b600182019050919050565b60006148698261472f565b91506148748361472f565b925082614884576148836148be565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74206973206e6f742061637469766500000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f43616e206f6e6c79207365742068696768657220707269636500000000000000600082015250565b7f5075626c6963206d696e74206d7573742062652061637469766520746f206d6960008201527f6e7420746f6b656e730000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f5265736572766520746f6f206d616e7920746f6b656e73000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74206d6f7265207468616e207265736572766564000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6150dc816146a9565b81146150e757600080fd5b50565b6150f3816146bb565b81146150fe57600080fd5b50565b61510a816146c7565b811461511557600080fd5b50565b6151218161472f565b811461512c57600080fd5b50565b61513881614739565b811461514357600080fd5b5056fea26469706673582212204fe57e348fd3f32aa5cfb6d0f5299f3a04c9ea35509155f29728f71315158c6664736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000ada0000000000000000000000000000000000000000000000000000000000002b670000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _maxBatchSize (uint256): 2778
Arg [1] : _maxSupply (uint256): 11111
Arg [2] : _pricePerToken (uint256): 0

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000ada
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002b67
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000


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.