ETH Price: $2,681.50 (-2.32%)

Token

Bionic Apes (BAPE)
 

Overview

Max Total Supply

5,555 BAPE

Holders

1,131

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
cyberjuice.eth
Balance
3 BAPE
0x963ecf0410877cac0a64a4ae076bf5499f8cd278
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:
BAPE

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-18
*/

// Sources flattened with hardhat v2.5.0 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC721/[email protected]



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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/utils/[email protected]



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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]



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 @openzeppelin/contracts/utils/introspection/[email protected]



pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev 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("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}


// File @openzeppelin/contracts/access/[email protected]



pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}



pragma solidity ^0.8.2;





contract BAPE is ERC721, ERC721Enumerable, ERC721Burnable, Ownable {
    using Counters for Counters.Counter;
    string public baseURI;
    Counters.Counter private _tokenIdCounter;

    // Where funds should be sent to
    address payable public fundsTo;

    // Maximum supply of the NFT
    uint256 public maxSupply;

    // Maximum mints per transaction
    uint256 public maxPerTx;

    // Is sale on?
    bool public sale;

    // Sale price
    uint256 public pricePer;
    uint256 public pricePerPre;
    uint256 public maxPreMint;
    uint256 public maxWallet = 2;
    bool public presale = false;
    bool public checkwhitelist = false;
    mapping (address => bool) userAddr; 
    mapping(address => uint256) public minted; // To check how many tokens an address has minted
    constructor(address payable fundsTo_, uint256 maxSupply_, uint256 maxPerTx_, uint256 pricePer_, uint256 pricePerPre_) ERC721("Bionic Apes", "BAPE") {
        fundsTo = fundsTo_;
        maxSupply = maxSupply_;
        maxPerTx = maxPerTx_;
        sale = false;
        pricePer = pricePer_;
        pricePerPre = pricePerPre_;
    }

    function updateFundsTo(address payable newFundsTo) public onlyOwner {
        fundsTo = newFundsTo;
    }

    function enableSale() public onlyOwner {
        sale = true;
    }

    function claimBalance() public onlyOwner {
        (bool success, ) = fundsTo.call{value: address(this).balance}("");
        require(success, "transfer failed");
    }

    function safeMint(address to, uint256 quantity) payable public {
        // Sale must be enabled
        require(sale, "Sale disabled");
        // Cannot mint 0
        require(quantity != 0, "Requested quantity cannot be zero");
        // Cannot mint more than maximum
        require(quantity <= maxPerTx, "Requested quantity more than maximum");
        // Transaction must have at least quantity * price (any more is considered a tip)
        require(quantity * pricePer <= msg.value, "Not enough ether sent");
        // Mint operation cannot lead to more than max supply
        require(!Address.isContract(msg.sender), "Contracts are not allowed to mint");
        require(minted[msg.sender] + quantity <= maxWallet, "Purchase would exceed max tokens per wallet");
        require(super.totalSupply() + quantity <= maxSupply, "Total supply will exceed limit");

        for (uint256 i = 0; i < quantity; i++) {
            _safeMint(to, _tokenIdCounter.current());
            _tokenIdCounter.increment();
        }
        minted[msg.sender] += quantity;
    }

    function preMint(address to, uint256 quantity) external payable {
        // Sale must NOT be enabled
        require(presale,"Presale must be active");
        require(quantity != 0, "Requested quantity cannot be zero");
        require(quantity * pricePerPre <= msg.value, "Not enough ether sent");
        require(super.totalSupply() + quantity <= maxPreMint, "Purchase would exceed max tokens for presale");
         require(minted[msg.sender] + quantity <= maxWallet, "Purchase would exceed max tokens per wallet");
        require(!Address.isContract(msg.sender), "Contracts are not allowed to mint");
        if(checkwhitelist)
        {
            require(_iswhitelistAddress(msg.sender), "Account not whitelisted");
        }
        for (uint256 i = 0; i < quantity; i++) {
            _safeMint(to, _tokenIdCounter.current());
            _tokenIdCounter.increment();
        }
        minted[msg.sender] += quantity;
    }
    function setBaseURI(string memory __baseURI) external onlyOwner {
        baseURI = __baseURI;
    }
    
    function setMaxPreMint(uint __maxPreMint) external onlyOwner {
        maxPreMint = __maxPreMint;
    }
    
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
    function flipSaleState() public onlyOwner {
        sale = !sale;
    }

    function flipPresaleState() public onlyOwner {
        presale = !presale;
    }
    
    function flipCheckWhitelist() public onlyOwner {
        checkwhitelist = !checkwhitelist;
    }

    function setMaxWallet(uint _newMaxWallet) external onlyOwner {
        maxWallet = _newMaxWallet;
    }
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
    function whitelistAddress (address user) public onlyOwner {
        userAddr[user] = true;
    }
    function _iswhitelistAddress (address user) public view returns (bool) {
        return userAddr[user];
    }
    function totalSupplyMinted() public view  returns (uint256) { 
        return _tokenIdCounter.current(); 
    }
    
    function setPrePrice(uint256 prePrice_) external onlyOwner {
        pricePerPre = prePrice_;
    }
    function setPostPrice(uint256 postPrice_) external onlyOwner {
        pricePer = postPrice_;
    }
    function _preMintPrice() public view  returns (uint256) {
        return pricePerPre;
    }
    function _salePrice() public view  returns (uint256) {
        return pricePer;
    }
    function checkTokenExists(uint256 tokenId) public view returns(bool) 
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return true;
    }
    
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"fundsTo_","type":"address"},{"internalType":"uint256","name":"maxSupply_","type":"uint256"},{"internalType":"uint256","name":"maxPerTx_","type":"uint256"},{"internalType":"uint256","name":"pricePer_","type":"uint256"},{"internalType":"uint256","name":"pricePerPre_","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":[{"internalType":"address","name":"user","type":"address"}],"name":"_iswhitelistAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_preMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"checkTokenExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkwhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipCheckWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fundsTo","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerPre","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"__maxPreMint","type":"uint256"}],"name":"setMaxPreMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"postPrice_","type":"uint256"}],"name":"setPostPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"prePrice_","type":"uint256"}],"name":"setPrePrice","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":[],"name":"totalSupplyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newFundsTo","type":"address"}],"name":"updateFundsTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260026014556015805461ffff191690553480156200002157600080fd5b5060405162002e1f38038062002e1f833981016040819052620000449162000202565b604080518082018252600b81526a42696f6e6963204170657360a81b6020808301918252835180850190945260048452634241504560e01b90840152815191929162000093916000916200015c565b508051620000a99060019060208401906200015c565b505050620000c6620000c06200010660201b60201c565b6200010a565b600d80546001600160a01b0319166001600160a01b039690961695909517909455600e92909255600f556010805460ff1916905560115560125562000296565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016a9062000259565b90600052602060002090601f0160209004810192826200018e5760008555620001d9565b82601f10620001a957805160ff1916838001178555620001d9565b82800160010185558215620001d9579182015b82811115620001d9578251825591602001919060010190620001bc565b50620001e7929150620001eb565b5090565b5b80821115620001e75760008155600101620001ec565b600080600080600060a086880312156200021b57600080fd5b85516001600160a01b03811681146200023357600080fd5b602087015160408801516060890151608090990151929a91995097965090945092505050565b600181811c908216806200026e57607f821691505b602082108114156200029057634e487b7160e01b600052602260045260246000fd5b50919050565b612b7980620002a66000396000f3fe6080604052600436106102e45760003560e01c8063933e95b211610190578063d5abeb01116100dc578063f2fde38b11610095578063f8b45b051161006f578063f8b45b0514610893578063f968adbe146108a9578063f9affd43146108bf578063fdea8e0b146108d457600080fd5b8063f2fde38b14610849578063f39d502a14610869578063f81227d41461087e57600080fd5b8063d5abeb011461075d578063d9c44d0414610773578063de666fb5146107ac578063e985e9c5146107cb578063ec40217514610814578063ecc1da271461082957600080fd5b8063b88d4fde11610149578063c835990e11610123578063c835990e146106dd578063c87b56dd146106fd578063c9417bb31461071d578063ca694de01461073d57600080fd5b8063b88d4fde14610688578063bfd5621e146106a8578063c683d8e4146106c857600080fd5b8063933e95b2146105ff57806395d89b41146106145780639b1d24be14610629578063a14481941461063f578063a22cb46514610652578063a7ee066d1461067257600080fd5b806334918dfd1161024f5780635d0044ca116102085780636c0360eb116101e25780636c0360eb1461059757806370a08231146105ac578063715018a6146105cc5780638da5cb5b146105e157600080fd5b80635d0044ca1461053d5780636352211e1461055d5780636ad1fe021461057d57600080fd5b806334918dfd14610488578063415665851461049d57806342842e0e146104bd57806342966c68146104dd5780634f6ccce7146104fd57806355f804b31461051d57600080fd5b80631e7269c5116102a15780631e7269c5146103d357806323b872dd14610400578063290c292d146104205780632f745c591461043357806330136e381461045357806330509bca1461047357600080fd5b806301ffc9a7146102e957806306fdde031461031e578063070a8a8514610340578063081812fc14610364578063095ea7b31461039c57806318160ddd146103be575b600080fd5b3480156102f557600080fd5b50610309610304366004612677565b6108ee565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b506103336108ff565b60405161031591906127ab565b34801561034c57600080fd5b5061035660115481565b604051908152602001610315565b34801561037057600080fd5b5061038461037f3660046126fa565b610991565b6040516001600160a01b039091168152602001610315565b3480156103a857600080fd5b506103bc6103b736600461264b565b610a2b565b005b3480156103ca57600080fd5b50600854610356565b3480156103df57600080fd5b506103566103ee366004612501565b60176020526000908152604090205481565b34801561040c57600080fd5b506103bc61041b366004612557565b610b41565b6103bc61042e36600461264b565b610b73565b34801561043f57600080fd5b5061035661044e36600461264b565b610dda565b34801561045f57600080fd5b50600d54610384906001600160a01b031681565b34801561047f57600080fd5b506103bc610e70565b34801561049457600080fd5b506103bc610f32565b3480156104a957600080fd5b506103bc6104b8366004612501565b610f70565b3480156104c957600080fd5b506103bc6104d8366004612557565b610fbe565b3480156104e957600080fd5b506103bc6104f83660046126fa565b610fd9565b34801561050957600080fd5b506103566105183660046126fa565b611050565b34801561052957600080fd5b506103bc6105383660046126b1565b6110e3565b34801561054957600080fd5b506103bc6105583660046126fa565b611124565b34801561056957600080fd5b506103846105783660046126fa565b611153565b34801561058957600080fd5b506010546103099060ff1681565b3480156105a357600080fd5b506103336111ca565b3480156105b857600080fd5b506103566105c7366004612501565b611258565b3480156105d857600080fd5b506103bc6112df565b3480156105ed57600080fd5b50600a546001600160a01b0316610384565b34801561060b57600080fd5b50610356611315565b34801561062057600080fd5b50610333611325565b34801561063557600080fd5b5061035660125481565b6103bc61064d36600461264b565b611334565b34801561065e57600080fd5b506103bc61066d366004612618565b61153e565b34801561067e57600080fd5b5061035660135481565b34801561069457600080fd5b506103bc6106a3366004612598565b611603565b3480156106b457600080fd5b506103096106c33660046126fa565b61163b565b3480156106d457600080fd5b506103bc611677565b3480156106e957600080fd5b506103bc6106f83660046126fa565b6116b0565b34801561070957600080fd5b506103336107183660046126fa565b6116df565b34801561072957600080fd5b506103bc6107383660046126fa565b611772565b34801561074957600080fd5b506103bc6107583660046126fa565b6117a1565b34801561076957600080fd5b50610356600e5481565b34801561077f57600080fd5b5061030961078e366004612501565b6001600160a01b031660009081526016602052604090205460ff1690565b3480156107b857600080fd5b5060155461030990610100900460ff1681565b3480156107d757600080fd5b506103096107e636600461251e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561082057600080fd5b50601154610356565b34801561083557600080fd5b506103bc610844366004612501565b6117d0565b34801561085557600080fd5b506103bc610864366004612501565b61181c565b34801561087557600080fd5b506103bc6118b4565b34801561088a57600080fd5b506103bc6118fb565b34801561089f57600080fd5b5061035660145481565b3480156108b557600080fd5b50610356600f5481565b3480156108cb57600080fd5b50601254610356565b3480156108e057600080fd5b506015546103099060ff1681565b60006108f982611939565b92915050565b60606000805461090e90612a40565b80601f016020809104026020016040519081016040528092919081815260200182805461093a90612a40565b80156109875780601f1061095c57610100808354040283529160200191610987565b820191906000526020600020905b81548152906001019060200180831161096a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a0f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a3682611153565b9050806001600160a01b0316836001600160a01b03161415610aa45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a06565b336001600160a01b0382161480610ac05750610ac081336107e6565b610b325760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a06565b610b3c838361195e565b505050565b610b4c335b826119cc565b610b685760405162461bcd60e51b8152600401610a06906128df565b610b3c838383611ac3565b60155460ff16610bbe5760405162461bcd60e51b815260206004820152601660248201527550726573616c65206d7573742062652061637469766560501b6044820152606401610a06565b80610bdb5760405162461bcd60e51b8152600401610a0690612930565b3460125482610bea91906129de565b1115610c305760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610a06565b60135481610c3d60085490565b610c4791906129b2565b1115610caa5760405162461bcd60e51b815260206004820152602c60248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526b20666f722070726573616c6560a01b6064820152608401610a06565b60145433600090815260176020526040902054610cc89083906129b2565b1115610ce65760405162461bcd60e51b8152600401610a06906127be565b333b15610d055760405162461bcd60e51b8152600401610a0690612971565b601554610100900460ff1615610d74573360009081526016602052604090205460ff16610d745760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206e6f742077686974656c69737465640000000000000000006044820152606401610a06565b60005b81811015610db157610d9183610d8c600c5490565b611c6e565b610d9f600c80546001019055565b80610da981612a7b565b915050610d77565b503360009081526017602052604081208054839290610dd19084906129b2565b90915550505050565b6000610de583611258565b8210610e475760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a06565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e9a5760405162461bcd60e51b8152600401610a069061285b565b600d546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610ee7576040519150601f19603f3d011682016040523d82523d6000602084013e610eec565b606091505b5050905080610f2f5760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b6044820152606401610a06565b50565b600a546001600160a01b03163314610f5c5760405162461bcd60e51b8152600401610a069061285b565b6010805460ff19811660ff90911615179055565b600a546001600160a01b03163314610f9a5760405162461bcd60e51b8152600401610a069061285b565b6001600160a01b03166000908152601660205260409020805460ff19166001179055565b610b3c83838360405180602001604052806000815250611603565b610fe233610b46565b6110475760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610a06565b610f2f81611c88565b600061105b60085490565b82106110be5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a06565b600882815481106110d1576110d1612aec565b90600052602060002001549050919050565b600a546001600160a01b0316331461110d5760405162461bcd60e51b8152600401610a069061285b565b805161112090600b9060208401906123f2565b5050565b600a546001600160a01b0316331461114e5760405162461bcd60e51b8152600401610a069061285b565b601455565b6000818152600260205260408120546001600160a01b0316806108f95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a06565b600b80546111d790612a40565b80601f016020809104026020016040519081016040528092919081815260200182805461120390612a40565b80156112505780601f1061122557610100808354040283529160200191611250565b820191906000526020600020905b81548152906001019060200180831161123357829003601f168201915b505050505081565b60006001600160a01b0382166112c35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a06565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113095760405162461bcd60e51b8152600401610a069061285b565b6113136000611d2f565b565b6000611320600c5490565b905090565b60606001805461090e90612a40565b60105460ff166113765760405162461bcd60e51b815260206004820152600d60248201526c14d85b1948191a5cd8589b1959609a1b6044820152606401610a06565b806113935760405162461bcd60e51b8152600401610a0690612930565b600f548111156113f15760405162461bcd60e51b8152602060048201526024808201527f526571756573746564207175616e74697479206d6f7265207468616e206d6178604482015263696d756d60e01b6064820152608401610a06565b346011548261140091906129de565b11156114465760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610a06565b333b156114655760405162461bcd60e51b8152600401610a0690612971565b601454336000908152601760205260409020546114839083906129b2565b11156114a15760405162461bcd60e51b8152600401610a06906127be565b600e54816114ae60085490565b6114b891906129b2565b11156115065760405162461bcd60e51b815260206004820152601e60248201527f546f74616c20737570706c792077696c6c20657863656564206c696d697400006044820152606401610a06565b60005b81811015610db15761151e83610d8c600c5490565b61152c600c80546001019055565b8061153681612a7b565b915050611509565b6001600160a01b0382163314156115975760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a06565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61160d33836119cc565b6116295760405162461bcd60e51b8152600401610a06906128df565b61163584848484611d81565b50505050565b6000818152600260205260408120546001600160a01b031661166f5760405162461bcd60e51b8152600401610a0690612890565b506001919050565b600a546001600160a01b031633146116a15760405162461bcd60e51b8152600401610a069061285b565b6010805460ff19166001179055565b600a546001600160a01b031633146116da5760405162461bcd60e51b8152600401610a069061285b565b601255565b6000818152600260205260409020546060906001600160a01b03166117165760405162461bcd60e51b8152600401610a0690612890565b6000611720611db4565b90506000815111611740576040518060200160405280600081525061176b565b8061174a84611dc3565b60405160200161175b92919061273f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461179c5760405162461bcd60e51b8152600401610a069061285b565b601355565b600a546001600160a01b031633146117cb5760405162461bcd60e51b8152600401610a069061285b565b601155565b600a546001600160a01b031633146117fa5760405162461bcd60e51b8152600401610a069061285b565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146118465760405162461bcd60e51b8152600401610a069061285b565b6001600160a01b0381166118ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a06565b610f2f81611d2f565b600a546001600160a01b031633146118de5760405162461bcd60e51b8152600401610a069061285b565b6015805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146119255760405162461bcd60e51b8152600401610a069061285b565b6015805460ff19811660ff90911615179055565b60006001600160e01b0319821663780e9d6360e01b14806108f957506108f982611ec1565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061199382611153565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a455760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a06565b6000611a5083611153565b9050806001600160a01b0316846001600160a01b03161480611a8b5750836001600160a01b0316611a8084610991565b6001600160a01b0316145b80611abb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ad682611153565b6001600160a01b031614611b3e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a06565b6001600160a01b038216611ba05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a06565b611bab838383611f11565b611bb660008261195e565b6001600160a01b0383166000908152600360205260408120805460019290611bdf9084906129fd565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c0d9084906129b2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611120828260405180602001604052806000815250611f1c565b6000611c9382611153565b9050611ca181600084611f11565b611cac60008361195e565b6001600160a01b0381166000908152600360205260408120805460019290611cd59084906129fd565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d8c848484611ac3565b611d9884848484611f4f565b6116355760405162461bcd60e51b8152600401610a0690612809565b6060600b805461090e90612a40565b606081611de75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e115780611dfb81612a7b565b9150611e0a9050600a836129ca565b9150611deb565b60008167ffffffffffffffff811115611e2c57611e2c612b02565b6040519080825280601f01601f191660200182016040528015611e56576020820181803683370190505b5090505b8415611abb57611e6b6001836129fd565b9150611e78600a86612a96565b611e839060306129b2565b60f81b818381518110611e9857611e98612aec565b60200101906001600160f81b031916908160001a905350611eba600a866129ca565b9450611e5a565b60006001600160e01b031982166380ac58cd60e01b1480611ef257506001600160e01b03198216635b5e139f60e01b145b806108f957506301ffc9a760e01b6001600160e01b03198316146108f9565b610b3c83838361205c565b611f268383612114565b611f336000848484611f4f565b610b3c5760405162461bcd60e51b8152600401610a0690612809565b60006001600160a01b0384163b1561205157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f9390339089908890889060040161276e565b602060405180830381600087803b158015611fad57600080fd5b505af1925050508015611fdd575060408051601f3d908101601f19168201909252611fda91810190612694565b60015b612037573d80801561200b576040519150601f19603f3d011682016040523d82523d6000602084013e612010565b606091505b50805161202f5760405162461bcd60e51b8152600401610a0690612809565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611abb565b506001949350505050565b6001600160a01b0383166120b7576120b281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120da565b816001600160a01b0316836001600160a01b0316146120da576120da8382612262565b6001600160a01b0382166120f157610b3c816122ff565b826001600160a01b0316826001600160a01b031614610b3c57610b3c82826123ae565b6001600160a01b03821661216a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a06565b6000818152600260205260409020546001600160a01b0316156121cf5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a06565b6121db60008383611f11565b6001600160a01b03821660009081526003602052604081208054600192906122049084906129b2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161226f84611258565b61227991906129fd565b6000838152600760205260409020549091508082146122cc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612311906001906129fd565b6000838152600960205260408120546008805493945090928490811061233957612339612aec565b90600052602060002001549050806008838154811061235a5761235a612aec565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061239257612392612ad6565b6001900381819060005260206000200160009055905550505050565b60006123b983611258565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546123fe90612a40565b90600052602060002090601f0160209004810192826124205760008555612466565b82601f1061243957805160ff1916838001178555612466565b82800160010185558215612466579182015b8281111561246657825182559160200191906001019061244b565b50612472929150612476565b5090565b5b808211156124725760008155600101612477565b600067ffffffffffffffff808411156124a6576124a6612b02565b604051601f8501601f19908116603f011681019082821181831017156124ce576124ce612b02565b816040528093508581528686860111156124e757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561251357600080fd5b813561176b81612b18565b6000806040838503121561253157600080fd5b823561253c81612b18565b9150602083013561254c81612b18565b809150509250929050565b60008060006060848603121561256c57600080fd5b833561257781612b18565b9250602084013561258781612b18565b929592945050506040919091013590565b600080600080608085870312156125ae57600080fd5b84356125b981612b18565b935060208501356125c981612b18565b925060408501359150606085013567ffffffffffffffff8111156125ec57600080fd5b8501601f810187136125fd57600080fd5b61260c8782356020840161248b565b91505092959194509250565b6000806040838503121561262b57600080fd5b823561263681612b18565b91506020830135801515811461254c57600080fd5b6000806040838503121561265e57600080fd5b823561266981612b18565b946020939093013593505050565b60006020828403121561268957600080fd5b813561176b81612b2d565b6000602082840312156126a657600080fd5b815161176b81612b2d565b6000602082840312156126c357600080fd5b813567ffffffffffffffff8111156126da57600080fd5b8201601f810184136126eb57600080fd5b611abb8482356020840161248b565b60006020828403121561270c57600080fd5b5035919050565b6000815180845261272b816020860160208601612a14565b601f01601f19169290920160200192915050565b60008351612751818460208801612a14565b835190830190612765818360208801612a14565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127a190830184612713565b9695505050505050565b60208152600061176b6020830184612713565b6020808252602b908201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360408201526a081c195c881dd85b1b195d60aa1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f526571756573746564207175616e746974792063616e6e6f74206265207a65726040820152606f60f81b606082015260800190565b60208082526021908201527f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e6040820152601d60fa1b606082015260800190565b600082198211156129c5576129c5612aaa565b500190565b6000826129d9576129d9612ac0565b500490565b60008160001904831182151516156129f8576129f8612aaa565b500290565b600082821015612a0f57612a0f612aaa565b500390565b60005b83811015612a2f578181015183820152602001612a17565b838111156116355750506000910152565b600181811c90821680612a5457607f821691505b60208210811415612a7557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a8f57612a8f612aaa565b5060010190565b600082612aa557612aa5612ac0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f2f57600080fd5b6001600160e01b031981168114610f2f57600080fdfea26469706673582212203e2b9635c81cb091f116d75cf41cecc1dca693639e2b1539365a655b396f8a8364736f6c634300080700330000000000000000000000001a77f6f3a550f52d5b95449a3945ee402767f22600000000000000000000000000000000000000000000000000000000000015b3000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000016345785d8a0000000000000000000000000000000000000000000000000000013fbe85edc90000

Deployed Bytecode

0x6080604052600436106102e45760003560e01c8063933e95b211610190578063d5abeb01116100dc578063f2fde38b11610095578063f8b45b051161006f578063f8b45b0514610893578063f968adbe146108a9578063f9affd43146108bf578063fdea8e0b146108d457600080fd5b8063f2fde38b14610849578063f39d502a14610869578063f81227d41461087e57600080fd5b8063d5abeb011461075d578063d9c44d0414610773578063de666fb5146107ac578063e985e9c5146107cb578063ec40217514610814578063ecc1da271461082957600080fd5b8063b88d4fde11610149578063c835990e11610123578063c835990e146106dd578063c87b56dd146106fd578063c9417bb31461071d578063ca694de01461073d57600080fd5b8063b88d4fde14610688578063bfd5621e146106a8578063c683d8e4146106c857600080fd5b8063933e95b2146105ff57806395d89b41146106145780639b1d24be14610629578063a14481941461063f578063a22cb46514610652578063a7ee066d1461067257600080fd5b806334918dfd1161024f5780635d0044ca116102085780636c0360eb116101e25780636c0360eb1461059757806370a08231146105ac578063715018a6146105cc5780638da5cb5b146105e157600080fd5b80635d0044ca1461053d5780636352211e1461055d5780636ad1fe021461057d57600080fd5b806334918dfd14610488578063415665851461049d57806342842e0e146104bd57806342966c68146104dd5780634f6ccce7146104fd57806355f804b31461051d57600080fd5b80631e7269c5116102a15780631e7269c5146103d357806323b872dd14610400578063290c292d146104205780632f745c591461043357806330136e381461045357806330509bca1461047357600080fd5b806301ffc9a7146102e957806306fdde031461031e578063070a8a8514610340578063081812fc14610364578063095ea7b31461039c57806318160ddd146103be575b600080fd5b3480156102f557600080fd5b50610309610304366004612677565b6108ee565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b506103336108ff565b60405161031591906127ab565b34801561034c57600080fd5b5061035660115481565b604051908152602001610315565b34801561037057600080fd5b5061038461037f3660046126fa565b610991565b6040516001600160a01b039091168152602001610315565b3480156103a857600080fd5b506103bc6103b736600461264b565b610a2b565b005b3480156103ca57600080fd5b50600854610356565b3480156103df57600080fd5b506103566103ee366004612501565b60176020526000908152604090205481565b34801561040c57600080fd5b506103bc61041b366004612557565b610b41565b6103bc61042e36600461264b565b610b73565b34801561043f57600080fd5b5061035661044e36600461264b565b610dda565b34801561045f57600080fd5b50600d54610384906001600160a01b031681565b34801561047f57600080fd5b506103bc610e70565b34801561049457600080fd5b506103bc610f32565b3480156104a957600080fd5b506103bc6104b8366004612501565b610f70565b3480156104c957600080fd5b506103bc6104d8366004612557565b610fbe565b3480156104e957600080fd5b506103bc6104f83660046126fa565b610fd9565b34801561050957600080fd5b506103566105183660046126fa565b611050565b34801561052957600080fd5b506103bc6105383660046126b1565b6110e3565b34801561054957600080fd5b506103bc6105583660046126fa565b611124565b34801561056957600080fd5b506103846105783660046126fa565b611153565b34801561058957600080fd5b506010546103099060ff1681565b3480156105a357600080fd5b506103336111ca565b3480156105b857600080fd5b506103566105c7366004612501565b611258565b3480156105d857600080fd5b506103bc6112df565b3480156105ed57600080fd5b50600a546001600160a01b0316610384565b34801561060b57600080fd5b50610356611315565b34801561062057600080fd5b50610333611325565b34801561063557600080fd5b5061035660125481565b6103bc61064d36600461264b565b611334565b34801561065e57600080fd5b506103bc61066d366004612618565b61153e565b34801561067e57600080fd5b5061035660135481565b34801561069457600080fd5b506103bc6106a3366004612598565b611603565b3480156106b457600080fd5b506103096106c33660046126fa565b61163b565b3480156106d457600080fd5b506103bc611677565b3480156106e957600080fd5b506103bc6106f83660046126fa565b6116b0565b34801561070957600080fd5b506103336107183660046126fa565b6116df565b34801561072957600080fd5b506103bc6107383660046126fa565b611772565b34801561074957600080fd5b506103bc6107583660046126fa565b6117a1565b34801561076957600080fd5b50610356600e5481565b34801561077f57600080fd5b5061030961078e366004612501565b6001600160a01b031660009081526016602052604090205460ff1690565b3480156107b857600080fd5b5060155461030990610100900460ff1681565b3480156107d757600080fd5b506103096107e636600461251e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561082057600080fd5b50601154610356565b34801561083557600080fd5b506103bc610844366004612501565b6117d0565b34801561085557600080fd5b506103bc610864366004612501565b61181c565b34801561087557600080fd5b506103bc6118b4565b34801561088a57600080fd5b506103bc6118fb565b34801561089f57600080fd5b5061035660145481565b3480156108b557600080fd5b50610356600f5481565b3480156108cb57600080fd5b50601254610356565b3480156108e057600080fd5b506015546103099060ff1681565b60006108f982611939565b92915050565b60606000805461090e90612a40565b80601f016020809104026020016040519081016040528092919081815260200182805461093a90612a40565b80156109875780601f1061095c57610100808354040283529160200191610987565b820191906000526020600020905b81548152906001019060200180831161096a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a0f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a3682611153565b9050806001600160a01b0316836001600160a01b03161415610aa45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a06565b336001600160a01b0382161480610ac05750610ac081336107e6565b610b325760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a06565b610b3c838361195e565b505050565b610b4c335b826119cc565b610b685760405162461bcd60e51b8152600401610a06906128df565b610b3c838383611ac3565b60155460ff16610bbe5760405162461bcd60e51b815260206004820152601660248201527550726573616c65206d7573742062652061637469766560501b6044820152606401610a06565b80610bdb5760405162461bcd60e51b8152600401610a0690612930565b3460125482610bea91906129de565b1115610c305760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610a06565b60135481610c3d60085490565b610c4791906129b2565b1115610caa5760405162461bcd60e51b815260206004820152602c60248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526b20666f722070726573616c6560a01b6064820152608401610a06565b60145433600090815260176020526040902054610cc89083906129b2565b1115610ce65760405162461bcd60e51b8152600401610a06906127be565b333b15610d055760405162461bcd60e51b8152600401610a0690612971565b601554610100900460ff1615610d74573360009081526016602052604090205460ff16610d745760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206e6f742077686974656c69737465640000000000000000006044820152606401610a06565b60005b81811015610db157610d9183610d8c600c5490565b611c6e565b610d9f600c80546001019055565b80610da981612a7b565b915050610d77565b503360009081526017602052604081208054839290610dd19084906129b2565b90915550505050565b6000610de583611258565b8210610e475760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a06565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e9a5760405162461bcd60e51b8152600401610a069061285b565b600d546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610ee7576040519150601f19603f3d011682016040523d82523d6000602084013e610eec565b606091505b5050905080610f2f5760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b6044820152606401610a06565b50565b600a546001600160a01b03163314610f5c5760405162461bcd60e51b8152600401610a069061285b565b6010805460ff19811660ff90911615179055565b600a546001600160a01b03163314610f9a5760405162461bcd60e51b8152600401610a069061285b565b6001600160a01b03166000908152601660205260409020805460ff19166001179055565b610b3c83838360405180602001604052806000815250611603565b610fe233610b46565b6110475760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610a06565b610f2f81611c88565b600061105b60085490565b82106110be5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a06565b600882815481106110d1576110d1612aec565b90600052602060002001549050919050565b600a546001600160a01b0316331461110d5760405162461bcd60e51b8152600401610a069061285b565b805161112090600b9060208401906123f2565b5050565b600a546001600160a01b0316331461114e5760405162461bcd60e51b8152600401610a069061285b565b601455565b6000818152600260205260408120546001600160a01b0316806108f95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a06565b600b80546111d790612a40565b80601f016020809104026020016040519081016040528092919081815260200182805461120390612a40565b80156112505780601f1061122557610100808354040283529160200191611250565b820191906000526020600020905b81548152906001019060200180831161123357829003601f168201915b505050505081565b60006001600160a01b0382166112c35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a06565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113095760405162461bcd60e51b8152600401610a069061285b565b6113136000611d2f565b565b6000611320600c5490565b905090565b60606001805461090e90612a40565b60105460ff166113765760405162461bcd60e51b815260206004820152600d60248201526c14d85b1948191a5cd8589b1959609a1b6044820152606401610a06565b806113935760405162461bcd60e51b8152600401610a0690612930565b600f548111156113f15760405162461bcd60e51b8152602060048201526024808201527f526571756573746564207175616e74697479206d6f7265207468616e206d6178604482015263696d756d60e01b6064820152608401610a06565b346011548261140091906129de565b11156114465760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610a06565b333b156114655760405162461bcd60e51b8152600401610a0690612971565b601454336000908152601760205260409020546114839083906129b2565b11156114a15760405162461bcd60e51b8152600401610a06906127be565b600e54816114ae60085490565b6114b891906129b2565b11156115065760405162461bcd60e51b815260206004820152601e60248201527f546f74616c20737570706c792077696c6c20657863656564206c696d697400006044820152606401610a06565b60005b81811015610db15761151e83610d8c600c5490565b61152c600c80546001019055565b8061153681612a7b565b915050611509565b6001600160a01b0382163314156115975760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a06565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61160d33836119cc565b6116295760405162461bcd60e51b8152600401610a06906128df565b61163584848484611d81565b50505050565b6000818152600260205260408120546001600160a01b031661166f5760405162461bcd60e51b8152600401610a0690612890565b506001919050565b600a546001600160a01b031633146116a15760405162461bcd60e51b8152600401610a069061285b565b6010805460ff19166001179055565b600a546001600160a01b031633146116da5760405162461bcd60e51b8152600401610a069061285b565b601255565b6000818152600260205260409020546060906001600160a01b03166117165760405162461bcd60e51b8152600401610a0690612890565b6000611720611db4565b90506000815111611740576040518060200160405280600081525061176b565b8061174a84611dc3565b60405160200161175b92919061273f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461179c5760405162461bcd60e51b8152600401610a069061285b565b601355565b600a546001600160a01b031633146117cb5760405162461bcd60e51b8152600401610a069061285b565b601155565b600a546001600160a01b031633146117fa5760405162461bcd60e51b8152600401610a069061285b565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146118465760405162461bcd60e51b8152600401610a069061285b565b6001600160a01b0381166118ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a06565b610f2f81611d2f565b600a546001600160a01b031633146118de5760405162461bcd60e51b8152600401610a069061285b565b6015805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146119255760405162461bcd60e51b8152600401610a069061285b565b6015805460ff19811660ff90911615179055565b60006001600160e01b0319821663780e9d6360e01b14806108f957506108f982611ec1565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061199382611153565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a455760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a06565b6000611a5083611153565b9050806001600160a01b0316846001600160a01b03161480611a8b5750836001600160a01b0316611a8084610991565b6001600160a01b0316145b80611abb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ad682611153565b6001600160a01b031614611b3e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a06565b6001600160a01b038216611ba05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a06565b611bab838383611f11565b611bb660008261195e565b6001600160a01b0383166000908152600360205260408120805460019290611bdf9084906129fd565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c0d9084906129b2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611120828260405180602001604052806000815250611f1c565b6000611c9382611153565b9050611ca181600084611f11565b611cac60008361195e565b6001600160a01b0381166000908152600360205260408120805460019290611cd59084906129fd565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d8c848484611ac3565b611d9884848484611f4f565b6116355760405162461bcd60e51b8152600401610a0690612809565b6060600b805461090e90612a40565b606081611de75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e115780611dfb81612a7b565b9150611e0a9050600a836129ca565b9150611deb565b60008167ffffffffffffffff811115611e2c57611e2c612b02565b6040519080825280601f01601f191660200182016040528015611e56576020820181803683370190505b5090505b8415611abb57611e6b6001836129fd565b9150611e78600a86612a96565b611e839060306129b2565b60f81b818381518110611e9857611e98612aec565b60200101906001600160f81b031916908160001a905350611eba600a866129ca565b9450611e5a565b60006001600160e01b031982166380ac58cd60e01b1480611ef257506001600160e01b03198216635b5e139f60e01b145b806108f957506301ffc9a760e01b6001600160e01b03198316146108f9565b610b3c83838361205c565b611f268383612114565b611f336000848484611f4f565b610b3c5760405162461bcd60e51b8152600401610a0690612809565b60006001600160a01b0384163b1561205157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f9390339089908890889060040161276e565b602060405180830381600087803b158015611fad57600080fd5b505af1925050508015611fdd575060408051601f3d908101601f19168201909252611fda91810190612694565b60015b612037573d80801561200b576040519150601f19603f3d011682016040523d82523d6000602084013e612010565b606091505b50805161202f5760405162461bcd60e51b8152600401610a0690612809565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611abb565b506001949350505050565b6001600160a01b0383166120b7576120b281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120da565b816001600160a01b0316836001600160a01b0316146120da576120da8382612262565b6001600160a01b0382166120f157610b3c816122ff565b826001600160a01b0316826001600160a01b031614610b3c57610b3c82826123ae565b6001600160a01b03821661216a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a06565b6000818152600260205260409020546001600160a01b0316156121cf5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a06565b6121db60008383611f11565b6001600160a01b03821660009081526003602052604081208054600192906122049084906129b2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161226f84611258565b61227991906129fd565b6000838152600760205260409020549091508082146122cc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612311906001906129fd565b6000838152600960205260408120546008805493945090928490811061233957612339612aec565b90600052602060002001549050806008838154811061235a5761235a612aec565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061239257612392612ad6565b6001900381819060005260206000200160009055905550505050565b60006123b983611258565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546123fe90612a40565b90600052602060002090601f0160209004810192826124205760008555612466565b82601f1061243957805160ff1916838001178555612466565b82800160010185558215612466579182015b8281111561246657825182559160200191906001019061244b565b50612472929150612476565b5090565b5b808211156124725760008155600101612477565b600067ffffffffffffffff808411156124a6576124a6612b02565b604051601f8501601f19908116603f011681019082821181831017156124ce576124ce612b02565b816040528093508581528686860111156124e757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561251357600080fd5b813561176b81612b18565b6000806040838503121561253157600080fd5b823561253c81612b18565b9150602083013561254c81612b18565b809150509250929050565b60008060006060848603121561256c57600080fd5b833561257781612b18565b9250602084013561258781612b18565b929592945050506040919091013590565b600080600080608085870312156125ae57600080fd5b84356125b981612b18565b935060208501356125c981612b18565b925060408501359150606085013567ffffffffffffffff8111156125ec57600080fd5b8501601f810187136125fd57600080fd5b61260c8782356020840161248b565b91505092959194509250565b6000806040838503121561262b57600080fd5b823561263681612b18565b91506020830135801515811461254c57600080fd5b6000806040838503121561265e57600080fd5b823561266981612b18565b946020939093013593505050565b60006020828403121561268957600080fd5b813561176b81612b2d565b6000602082840312156126a657600080fd5b815161176b81612b2d565b6000602082840312156126c357600080fd5b813567ffffffffffffffff8111156126da57600080fd5b8201601f810184136126eb57600080fd5b611abb8482356020840161248b565b60006020828403121561270c57600080fd5b5035919050565b6000815180845261272b816020860160208601612a14565b601f01601f19169290920160200192915050565b60008351612751818460208801612a14565b835190830190612765818360208801612a14565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127a190830184612713565b9695505050505050565b60208152600061176b6020830184612713565b6020808252602b908201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360408201526a081c195c881dd85b1b195d60aa1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f526571756573746564207175616e746974792063616e6e6f74206265207a65726040820152606f60f81b606082015260800190565b60208082526021908201527f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e6040820152601d60fa1b606082015260800190565b600082198211156129c5576129c5612aaa565b500190565b6000826129d9576129d9612ac0565b500490565b60008160001904831182151516156129f8576129f8612aaa565b500290565b600082821015612a0f57612a0f612aaa565b500390565b60005b83811015612a2f578181015183820152602001612a17565b838111156116355750506000910152565b600181811c90821680612a5457607f821691505b60208210811415612a7557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a8f57612a8f612aaa565b5060010190565b600082612aa557612aa5612ac0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f2f57600080fd5b6001600160e01b031981168114610f2f57600080fdfea26469706673582212203e2b9635c81cb091f116d75cf41cecc1dca693639e2b1539365a655b396f8a8364736f6c63430008070033

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

0000000000000000000000001a77f6f3a550f52d5b95449a3945ee402767f22600000000000000000000000000000000000000000000000000000000000015b3000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000016345785d8a0000000000000000000000000000000000000000000000000000013fbe85edc90000

-----Decoded View---------------
Arg [0] : fundsTo_ (address): 0x1A77f6F3a550f52D5b95449a3945eE402767F226
Arg [1] : maxSupply_ (uint256): 5555
Arg [2] : maxPerTx_ (uint256): 15
Arg [3] : pricePer_ (uint256): 100000000000000000
Arg [4] : pricePerPre_ (uint256): 90000000000000000

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000001a77f6f3a550f52d5b95449a3945ee402767f226
Arg [1] : 00000000000000000000000000000000000000000000000000000000000015b3
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [3] : 000000000000000000000000000000000000000000000000016345785d8a0000
Arg [4] : 000000000000000000000000000000000000000000000000013fbe85edc90000


Deployed Bytecode Sourcemap

45248:5644:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49756:171;;;;;;;;;;-1:-1:-1;49756:171:0;;;;;:::i;:::-;;:::i;:::-;;;6737:14:1;;6730:22;6712:41;;6700:2;6685:18;49756:171:0;;;;;;;;21529:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45719:23::-;;;;;;;;;;;;;;;;;;;18890:25:1;;;18878:2;18863:18;45719:23:0;18744:177:1;23088:221:0;;;;;;;;;;-1:-1:-1;23088:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5811:32:1;;;5793:51;;5781:2;5766:18;23088:221:0;5647:203:1;22611:411:0;;;;;;;;;;-1:-1:-1;22611:411:0;;;;;:::i;:::-;;:::i;:::-;;35284:113;;;;;;;;;;-1:-1:-1;35372:10:0;:17;35284:113;;45966:41;;;;;;;;;;-1:-1:-1;45966:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;23978:339;;;;;;;;;;-1:-1:-1;23978:339:0;;;;;:::i;:::-;;:::i;47880:952::-;;;;;;:::i;:::-;;:::i;34952:256::-;;;;;;;;;;-1:-1:-1;34952:256:0;;;;;:::i;:::-;;:::i;45479:30::-;;;;;;;;;;-1:-1:-1;45479:30:0;;;;-1:-1:-1;;;;;45479:30:0;;;46604:171;;;;;;;;;;;;;:::i;49175:73::-;;;;;;;;;;;;;:::i;49933:98::-;;;;;;;;;;-1:-1:-1;49933:98:0;;;;;:::i;:::-;;:::i;24388:185::-;;;;;;;;;;-1:-1:-1;24388:185:0;;;;;:::i;:::-;;:::i;41255:245::-;;;;;;;;;;-1:-1:-1;41255:245:0;;;;;:::i;:::-;;:::i;35474:233::-;;;;;;;;;;-1:-1:-1;35474:233:0;;;;;:::i;:::-;;:::i;48838:102::-;;;;;;;;;;-1:-1:-1;48838:102:0;;;;;:::i;:::-;;:::i;49456:105::-;;;;;;;;;;-1:-1:-1;49456:105:0;;;;;:::i;:::-;;:::i;21223:239::-;;;;;;;;;;-1:-1:-1;21223:239:0;;;;;:::i;:::-;;:::i;45675:16::-;;;;;;;;;;-1:-1:-1;45675:16:0;;;;;;;;45364:21;;;;;;;;;;;;;:::i;20953:208::-;;;;;;;;;;-1:-1:-1;20953:208:0;;;;;:::i;:::-;;:::i;43162:94::-;;;;;;;;;;;;;:::i;42511:87::-;;;;;;;;;;-1:-1:-1;42584:6:0;;-1:-1:-1;;;;;42584:6:0;42511:87;;50154:113;;;;;;;;;;;;;:::i;21698:104::-;;;;;;;;;;;;;:::i;45749:26::-;;;;;;;;;;;;;;;;46783:1089;;;;;;:::i;:::-;;:::i;23381:295::-;;;;;;;;;;-1:-1:-1;23381:295:0;;;;;:::i;:::-;;:::i;45782:25::-;;;;;;;;;;;;;;;;24644:328;;;;;;;;;;-1:-1:-1;24644:328:0;;;;;:::i;:::-;;:::i;50685:192::-;;;;;;;;;;-1:-1:-1;50685:192:0;;;;;:::i;:::-;;:::i;46527:69::-;;;;;;;;;;;;;:::i;50279:101::-;;;;;;;;;;-1:-1:-1;50279:101:0;;;;;:::i;:::-;;:::i;21873:334::-;;;;;;;;;;-1:-1:-1;21873:334:0;;;;;:::i;:::-;;:::i;48952:105::-;;;;;;;;;;-1:-1:-1;48952:105:0;;;;;:::i;:::-;;:::i;50386:101::-;;;;;;;;;;-1:-1:-1;50386:101:0;;;;;:::i;:::-;;:::i;45552:24::-;;;;;;;;;;;;;;;;50037:111;;;;;;;;;;-1:-1:-1;50037:111:0;;;;;:::i;:::-;-1:-1:-1;;;;;50126:14:0;50102:4;50126:14;;;:8;:14;;;;;;;;;50037:111;45883:34;;;;;;;;;;-1:-1:-1;45883:34:0;;;;;;;;;;;23747:164;;;;;;;;;;-1:-1:-1;23747:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23868:25:0;;;23844:4;23868:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23747:164;50592:87;;;;;;;;;;-1:-1:-1;50663:8:0;;50592:87;;46412:107;;;;;;;;;;-1:-1:-1;46412:107:0;;;;;:::i;:::-;;:::i;43411:192::-;;;;;;;;;;-1:-1:-1;43411:192:0;;;;;:::i;:::-;;:::i;49350:98::-;;;;;;;;;;;;;:::i;49256:82::-;;;;;;;;;;;;;:::i;45814:28::-;;;;;;;;;;;;;;;;45623:23;;;;;;;;;;;;;;;;50493:93;;;;;;;;;;-1:-1:-1;50567:11:0;;50493:93;;45849:27;;;;;;;;;;-1:-1:-1;45849:27:0;;;;;;;;49756:171;49859:4;49883:36;49907:11;49883:23;:36::i;:::-;49876:43;49756:171;-1:-1:-1;;49756:171:0:o;21529:100::-;21583:13;21616:5;21609:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21529:100;:::o;23088:221::-;23164:7;26571:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26571:16:0;23184:73;;;;-1:-1:-1;;;23184:73:0;;12389:2:1;23184:73:0;;;12371:21:1;12428:2;12408:18;;;12401:30;12467:34;12447:18;;;12440:62;-1:-1:-1;;;12518:18:1;;;12511:42;12570:19;;23184:73:0;;;;;;;;;-1:-1:-1;23277:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23277:24:0;;23088:221::o;22611:411::-;22692:13;22708:23;22723:7;22708:14;:23::i;:::-;22692:39;;22756:5;-1:-1:-1;;;;;22750:11:0;:2;-1:-1:-1;;;;;22750:11:0;;;22742:57;;;;-1:-1:-1;;;22742:57:0;;14682:2:1;22742:57:0;;;14664:21:1;14721:2;14701:18;;;14694:30;14760:34;14740:18;;;14733:62;-1:-1:-1;;;14811:18:1;;;14804:31;14852:19;;22742:57:0;14480:397:1;22742:57:0;16066:10;-1:-1:-1;;;;;22834:21:0;;;;:62;;-1:-1:-1;22859:37:0;22876:5;16066:10;23747:164;:::i;22859:37::-;22812:168;;;;-1:-1:-1;;;22812:168:0;;10369:2:1;22812:168:0;;;10351:21:1;10408:2;10388:18;;;10381:30;10447:34;10427:18;;;10420:62;10518:26;10498:18;;;10491:54;10562:19;;22812:168:0;10167:420:1;22812:168:0;22993:21;23002:2;23006:7;22993:8;:21::i;:::-;22681:341;22611:411;;:::o;23978:339::-;24173:41;16066:10;24192:12;24206:7;24173:18;:41::i;:::-;24165:103;;;;-1:-1:-1;;;24165:103:0;;;;;;;:::i;:::-;24281:28;24291:4;24297:2;24301:7;24281:9;:28::i;47880:952::-;48000:7;;;;47992:41;;;;-1:-1:-1;;;47992:41:0;;13163:2:1;47992:41:0;;;13145:21:1;13202:2;13182:18;;;13175:30;-1:-1:-1;;;13221:18:1;;;13214:52;13283:18;;47992:41:0;12961:346:1;47992:41:0;48052:13;48044:59;;;;-1:-1:-1;;;48044:59:0;;;;;;;:::i;:::-;48148:9;48133:11;;48122:8;:22;;;;:::i;:::-;:35;;48114:69;;;;-1:-1:-1;;;48114:69:0;;16274:2:1;48114:69:0;;;16256:21:1;16313:2;16293:18;;;16286:30;-1:-1:-1;;;16332:18:1;;;16325:51;16393:18;;48114:69:0;16072:345:1;48114:69:0;48236:10;;48224:8;48202:19;35372:10;:17;;35284:113;48202:19;:30;;;;:::i;:::-;:44;;48194:101;;;;-1:-1:-1;;;48194:101:0;;11615:2:1;48194:101:0;;;11597:21:1;11654:2;11634:18;;;11627:30;11693:34;11673:18;;;11666:62;-1:-1:-1;;;11744:18:1;;;11737:42;11796:19;;48194:101:0;11413:408:1;48194:101:0;48348:9;;48322:10;48315:18;;;;:6;:18;;;;;;:29;;48336:8;;48315:29;:::i;:::-;:42;;48307:98;;;;-1:-1:-1;;;48307:98:0;;;;;;;:::i;:::-;48444:10;8563:20;8611:8;48416:77;;;;-1:-1:-1;;;48416:77:0;;;;;;;:::i;:::-;48507:14;;;;;;;48504:122;;;48575:10;50102:4;50126:14;;;:8;:14;;;;;;;;48547:67;;;;-1:-1:-1;;;48547:67:0;;17370:2:1;48547:67:0;;;17352:21:1;17409:2;17389:18;;;17382:30;17448:25;17428:18;;;17421:53;17491:18;;48547:67:0;17168:347:1;48547:67:0;48641:9;48636:148;48660:8;48656:1;:12;48636:148;;;48690:40;48700:2;48704:25;:15;44708:14;;44616:114;48704:25;48690:9;:40::i;:::-;48745:27;:15;44827:19;;44845:1;44827:19;;;44738:127;48745:27;48670:3;;;;:::i;:::-;;;;48636:148;;;-1:-1:-1;48801:10:0;48794:18;;;;:6;:18;;;;;:30;;48816:8;;48794:18;:30;;48816:8;;48794:30;:::i;:::-;;;;-1:-1:-1;;;;47880:952:0:o;34952:256::-;35049:7;35085:23;35102:5;35085:16;:23::i;:::-;35077:5;:31;35069:87;;;;-1:-1:-1;;;35069:87:0;;7602:2:1;35069:87:0;;;7584:21:1;7641:2;7621:18;;;7614:30;7680:34;7660:18;;;7653:62;-1:-1:-1;;;7731:18:1;;;7724:41;7782:19;;35069:87:0;7400:407:1;35069:87:0;-1:-1:-1;;;;;;35174:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34952:256::o;46604:171::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;46675:7:::1;::::0;:46:::1;::::0;46657:12:::1;::::0;-1:-1:-1;;;;;46675:7:0::1;::::0;46695:21:::1;::::0;46657:12;46675:46;46657:12;46675:46;46695:21;46675:7;:46:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46656:65;;;46740:7;46732:35;;;::::0;-1:-1:-1;;;46732:35:0;;17026:2:1;46732:35:0::1;::::0;::::1;17008:21:1::0;17065:2;17045:18;;;17038:30;-1:-1:-1;;;17084:18:1;;;17077:45;17139:18;;46732:35:0::1;16824:339:1::0;46732:35:0::1;46645:130;46604:171::o:0;49175:73::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;49236:4:::1;::::0;;-1:-1:-1;;49228:12:0;::::1;49236:4;::::0;;::::1;49235:5;49228:12;::::0;;49175:73::o;49933:98::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50002:14:0::1;;::::0;;;:8:::1;:14;::::0;;;;:21;;-1:-1:-1;;50002:21:0::1;50019:4;50002:21;::::0;;49933:98::o;24388:185::-;24526:39;24543:4;24549:2;24553:7;24526:39;;;;;;;;;;;;:16;:39::i;41255:245::-;41373:41;16066:10;41392:12;15986:98;41373:41;41365:102;;;;-1:-1:-1;;;41365:102:0;;18127:2:1;41365:102:0;;;18109:21:1;18166:2;18146:18;;;18139:30;18205:34;18185:18;;;18178:62;-1:-1:-1;;;18256:18:1;;;18249:46;18312:19;;41365:102:0;17925:412:1;41365:102:0;41478:14;41484:7;41478:5;:14::i;35474:233::-;35549:7;35585:30;35372:10;:17;;35284:113;35585:30;35577:5;:38;35569:95;;;;-1:-1:-1;;;35569:95:0;;15861:2:1;35569:95:0;;;15843:21:1;15900:2;15880:18;;;15873:30;15939:34;15919:18;;;15912:62;-1:-1:-1;;;15990:18:1;;;15983:42;16042:19;;35569:95:0;15659:408:1;35569:95:0;35682:10;35693:5;35682:17;;;;;;;;:::i;:::-;;;;;;;;;35675:24;;35474:233;;;:::o;48838:102::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;48913:19;;::::1;::::0;:7:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48838:102:::0;:::o;49456:105::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;49528:9:::1;:25:::0;49456:105::o;21223:239::-;21295:7;21331:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21331:16:0;21366:19;21358:73;;;;-1:-1:-1;;;21358:73:0;;11205:2:1;21358:73:0;;;11187:21:1;11244:2;11224:18;;;11217:30;11283:34;11263:18;;;11256:62;-1:-1:-1;;;11334:18:1;;;11327:39;11383:19;;21358:73:0;11003:405:1;45364:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20953:208::-;21025:7;-1:-1:-1;;;;;21053:19:0;;21045:74;;;;-1:-1:-1;;;21045:74:0;;10794:2:1;21045:74:0;;;10776:21:1;10833:2;10813:18;;;10806:30;10872:34;10852:18;;;10845:62;-1:-1:-1;;;10923:18:1;;;10916:40;10973:19;;21045:74:0;10592:406:1;21045:74:0;-1:-1:-1;;;;;;21137:16:0;;;;;:9;:16;;;;;;;20953:208::o;43162:94::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;43227:21:::1;43245:1;43227:9;:21::i;:::-;43162:94::o:0;50154:113::-;50205:7;50233:25;:15;44708:14;;44616:114;50233:25;50226:32;;50154:113;:::o;21698:104::-;21754:13;21787:7;21780:14;;;;;:::i;46783:1089::-;46898:4;;;;46890:30;;;;-1:-1:-1;;;46890:30:0;;14340:2:1;46890:30:0;;;14322:21:1;14379:2;14359:18;;;14352:30;-1:-1:-1;;;14398:18:1;;;14391:43;14451:18;;46890:30:0;14138:337:1;46890:30:0;46965:13;46957:59;;;;-1:-1:-1;;;46957:59:0;;;;;;;:::i;:::-;47089:8;;47077;:20;;47069:69;;;;-1:-1:-1;;;47069:69:0;;17722:2:1;47069:69:0;;;17704:21:1;17761:2;17741:18;;;17734:30;17800:34;17780:18;;;17773:62;-1:-1:-1;;;17851:18:1;;;17844:34;17895:19;;47069:69:0;17520:400:1;47069:69:0;47271:9;47259:8;;47248;:19;;;;:::i;:::-;:32;;47240:66;;;;-1:-1:-1;;;47240:66:0;;16274:2:1;47240:66:0;;;16256:21:1;16313:2;16293:18;;;16286:30;-1:-1:-1;;;16332:18:1;;;16325:51;16393:18;;47240:66:0;16072:345:1;47240:66:0;47408:10;8563:20;8611:8;47380:77;;;;-1:-1:-1;;;47380:77:0;;;;;;;:::i;:::-;47509:9;;47483:10;47476:18;;;;:6;:18;;;;;;:29;;47497:8;;47476:29;:::i;:::-;:42;;47468:98;;;;-1:-1:-1;;;47468:98:0;;;;;;;:::i;:::-;47619:9;;47607:8;47585:19;35372:10;:17;;35284:113;47585:19;:30;;;;:::i;:::-;:43;;47577:86;;;;-1:-1:-1;;;47577:86:0;;15084:2:1;47577:86:0;;;15066:21:1;15123:2;15103:18;;;15096:30;15162:32;15142:18;;;15135:60;15212:18;;47577:86:0;14882:354:1;47577:86:0;47681:9;47676:148;47700:8;47696:1;:12;47676:148;;;47730:40;47740:2;47744:25;:15;44708:14;;44616:114;47730:40;47785:27;:15;44827:19;;44845:1;44827:19;;;44738:127;47785:27;47710:3;;;;:::i;:::-;;;;47676:148;;23381:295;-1:-1:-1;;;;;23484:24:0;;16066:10;23484:24;;23476:62;;;;-1:-1:-1;;;23476:62:0;;9602:2:1;23476:62:0;;;9584:21:1;9641:2;9621:18;;;9614:30;9680:27;9660:18;;;9653:55;9725:18;;23476:62:0;9400:349:1;23476:62:0;16066:10;23551:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23551:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23551:53:0;;;;;;;;;;23620:48;;6712:41:1;;;23551:42:0;;16066:10;23620:48;;6685:18:1;23620:48:0;;;;;;;23381:295;;:::o;24644:328::-;24819:41;16066:10;24852:7;24819:18;:41::i;:::-;24811:103;;;;-1:-1:-1;;;24811:103:0;;;;;;;:::i;:::-;24925:39;24939:4;24945:2;24949:7;24958:5;24925:13;:39::i;:::-;24644:328;;;;:::o;50685:192::-;50748:4;26571:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26571:16:0;50771:76;;;;-1:-1:-1;;;50771:76:0;;;;;;;:::i;:::-;-1:-1:-1;50865:4:0;;50685:192;-1:-1:-1;50685:192:0:o;46527:69::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;46577:4:::1;:11:::0;;-1:-1:-1;;46577:11:0::1;46584:4;46577:11;::::0;;46527:69::o;50279:101::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;50349:11:::1;:23:::0;50279:101::o;21873:334::-;26547:4;26571:16;;;:7;:16;;;;;;21946:13;;-1:-1:-1;;;;;26571:16:0;21972:76;;;;-1:-1:-1;;;21972:76:0;;;;;;;:::i;:::-;22061:21;22085:10;:8;:10::i;:::-;22061:34;;22137:1;22119:7;22113:21;:25;:86;;;;;;;;;;;;;;;;;22165:7;22174:18;:7;:16;:18::i;:::-;22148:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22113:86;22106:93;21873:334;-1:-1:-1;;;21873:334:0:o;48952:105::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;49024:10:::1;:25:::0;48952:105::o;50386:101::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;50458:8:::1;:21:::0;50386:101::o;46412:107::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;46491:7:::1;:20:::0;;-1:-1:-1;;;;;;46491:20:0::1;-1:-1:-1::0;;;;;46491:20:0;;;::::1;::::0;;;::::1;::::0;;46412:107::o;43411:192::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43500:22:0;::::1;43492:73;;;::::0;-1:-1:-1;;;43492:73:0;;8433:2:1;43492:73:0::1;::::0;::::1;8415:21:1::0;8472:2;8452:18;;;8445:30;8511:34;8491:18;;;8484:62;-1:-1:-1;;;8562:18:1;;;8555:36;8608:19;;43492:73:0::1;8231:402:1::0;43492:73:0::1;43576:19;43586:8;43576:9;:19::i;49350:98::-:0;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;49426:14:::1;::::0;;-1:-1:-1;;49408:32:0;::::1;49426:14;::::0;;;::::1;;;49425:15;49408:32:::0;;::::1;;::::0;;49350:98::o;49256:82::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;49323:7:::1;::::0;;-1:-1:-1;;49312:18:0;::::1;49323:7;::::0;;::::1;49322:8;49312:18;::::0;;49256:82::o;34644:224::-;34746:4;-1:-1:-1;;;;;;34770:50:0;;-1:-1:-1;;;34770:50:0;;:90;;;34824:36;34848:11;34824:23;:36::i;30464:174::-;30539:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30539:29:0;-1:-1:-1;;;;;30539:29:0;;;;;;;;:24;;30593:23;30539:24;30593:14;:23::i;:::-;-1:-1:-1;;;;;30584:46:0;;;;;;;;;;;30464:174;;:::o;26776:348::-;26869:4;26571:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26571:16:0;26886:73;;;;-1:-1:-1;;;26886:73:0;;9956:2:1;26886:73:0;;;9938:21:1;9995:2;9975:18;;;9968:30;10034:34;10014:18;;;10007:62;-1:-1:-1;;;10085:18:1;;;10078:42;10137:19;;26886:73:0;9754:408:1;26886:73:0;26970:13;26986:23;27001:7;26986:14;:23::i;:::-;26970:39;;27039:5;-1:-1:-1;;;;;27028:16:0;:7;-1:-1:-1;;;;;27028:16:0;;:51;;;;27072:7;-1:-1:-1;;;;;27048:31:0;:20;27060:7;27048:11;:20::i;:::-;-1:-1:-1;;;;;27048:31:0;;27028:51;:87;;;-1:-1:-1;;;;;;23868:25:0;;;23844:4;23868:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27083:32;27020:96;26776:348;-1:-1:-1;;;;26776:348:0:o;29768:578::-;29927:4;-1:-1:-1;;;;;29900:31:0;:23;29915:7;29900:14;:23::i;:::-;-1:-1:-1;;;;;29900:31:0;;29892:85;;;;-1:-1:-1;;;29892:85:0;;13514:2:1;29892:85:0;;;13496:21:1;13553:2;13533:18;;;13526:30;13592:34;13572:18;;;13565:62;-1:-1:-1;;;13643:18:1;;;13636:39;13692:19;;29892:85:0;13312:405:1;29892:85:0;-1:-1:-1;;;;;29996:16:0;;29988:65;;;;-1:-1:-1;;;29988:65:0;;9197:2:1;29988:65:0;;;9179:21:1;9236:2;9216:18;;;9209:30;9275:34;9255:18;;;9248:62;-1:-1:-1;;;9326:18:1;;;9319:34;9370:19;;29988:65:0;8995:400:1;29988:65:0;30066:39;30087:4;30093:2;30097:7;30066:20;:39::i;:::-;30170:29;30187:1;30191:7;30170:8;:29::i;:::-;-1:-1:-1;;;;;30212:15:0;;;;;;:9;:15;;;;;:20;;30231:1;;30212:15;:20;;30231:1;;30212:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30243:13:0;;;;;;:9;:13;;;;;:18;;30260:1;;30243:13;:18;;30260:1;;30243:18;:::i;:::-;;;;-1:-1:-1;;30272:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30272:21:0;-1:-1:-1;;;;;30272:21:0;;;;;;;;;30311:27;;30272:16;;30311:27;;;;;;;29768:578;;;:::o;27466:110::-;27542:26;27552:2;27556:7;27542:26;;;;;;;;;;;;:9;:26::i;29071:360::-;29131:13;29147:23;29162:7;29147:14;:23::i;:::-;29131:39;;29183:48;29204:5;29219:1;29223:7;29183:20;:48::i;:::-;29272:29;29289:1;29293:7;29272:8;:29::i;:::-;-1:-1:-1;;;;;29314:16:0;;;;;;:9;:16;;;;;:21;;29334:1;;29314:16;:21;;29334:1;;29314:21;:::i;:::-;;;;-1:-1:-1;;29353:16:0;;;;:7;:16;;;;;;29346:23;;-1:-1:-1;;;;;;29346:23:0;;;29387:36;29361:7;;29353:16;-1:-1:-1;;;;;29387:36:0;;;;;29353:16;;29387:36;29120:311;29071:360;:::o;43611:173::-;43686:6;;;-1:-1:-1;;;;;43703:17:0;;;-1:-1:-1;;;;;;43703:17:0;;;;;;;43736:40;;43686:6;;;43703:17;43686:6;;43736:40;;43667:16;;43736:40;43656:128;43611:173;:::o;25854:315::-;26011:28;26021:4;26027:2;26031:7;26011:9;:28::i;:::-;26058:48;26081:4;26087:2;26091:7;26100:5;26058:22;:48::i;:::-;26050:111;;;;-1:-1:-1;;;26050:111:0;;;;;;;:::i;49069:100::-;49121:13;49154:7;49147:14;;;;;:::i;16519:723::-;16575:13;16796:10;16792:53;;-1:-1:-1;;16823:10:0;;;;;;;;;;;;-1:-1:-1;;;16823:10:0;;;;;16519:723::o;16792:53::-;16870:5;16855:12;16911:78;16918:9;;16911:78;;16944:8;;;;:::i;:::-;;-1:-1:-1;16967:10:0;;-1:-1:-1;16975:2:0;16967:10;;:::i;:::-;;;16911:78;;;16999:19;17031:6;17021:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17021:17:0;;16999:39;;17049:154;17056:10;;17049:154;;17083:11;17093:1;17083:11;;:::i;:::-;;-1:-1:-1;17152:10:0;17160:2;17152:5;:10;:::i;:::-;17139:24;;:2;:24;:::i;:::-;17126:39;;17109:6;17116;17109:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17109:56:0;;;;;;;;-1:-1:-1;17180:11:0;17189:2;17180:11;;:::i;:::-;;;17049:154;;20584:305;20686:4;-1:-1:-1;;;;;;20723:40:0;;-1:-1:-1;;;20723:40:0;;:105;;-1:-1:-1;;;;;;;20780:48:0;;-1:-1:-1;;;20780:48:0;20723:105;:158;;;-1:-1:-1;;;;;;;;;;19191:40:0;;;20845:36;19082:157;49567:181;49695:45;49722:4;49728:2;49732:7;49695:26;:45::i;27803:321::-;27933:18;27939:2;27943:7;27933:5;:18::i;:::-;27984:54;28015:1;28019:2;28023:7;28032:5;27984:22;:54::i;:::-;27962:154;;;;-1:-1:-1;;;27962:154:0;;;;;;;:::i;31203:803::-;31358:4;-1:-1:-1;;;;;31379:13:0;;8563:20;8611:8;31375:624;;31415:72;;-1:-1:-1;;;31415:72:0;;-1:-1:-1;;;;;31415:36:0;;;;;:72;;16066:10;;31466:4;;31472:7;;31481:5;;31415:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31415:72:0;;;;;;;;-1:-1:-1;;31415:72:0;;;;;;;;;;;;:::i;:::-;;;31411:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31661:13:0;;31657:272;;31704:60;;-1:-1:-1;;;31704:60:0;;;;;;;:::i;31657:272::-;31879:6;31873:13;31864:6;31860:2;31856:15;31849:38;31411:533;-1:-1:-1;;;;;;31538:55:0;-1:-1:-1;;;31538:55:0;;-1:-1:-1;31531:62:0;;31375:624;-1:-1:-1;31983:4:0;31203:803;;;;;;:::o;36320:589::-;-1:-1:-1;;;;;36526:18:0;;36522:187;;36561:40;36593:7;37736:10;:17;;37709:24;;;;:15;:24;;;;;:44;;;37764:24;;;;;;;;;;;;37632:164;36561:40;36522:187;;;36631:2;-1:-1:-1;;;;;36623:10:0;:4;-1:-1:-1;;;;;36623:10:0;;36619:90;;36650:47;36683:4;36689:7;36650:32;:47::i;:::-;-1:-1:-1;;;;;36723:16:0;;36719:183;;36756:45;36793:7;36756:36;:45::i;36719:183::-;36829:4;-1:-1:-1;;;;;36823:10:0;:2;-1:-1:-1;;;;;36823:10:0;;36819:83;;36850:40;36878:2;36882:7;36850:27;:40::i;28460:382::-;-1:-1:-1;;;;;28540:16:0;;28532:61;;;;-1:-1:-1;;;28532:61:0;;12028:2:1;28532:61:0;;;12010:21:1;;;12047:18;;;12040:30;12106:34;12086:18;;;12079:62;12158:18;;28532:61:0;11826:356:1;28532:61:0;26547:4;26571:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26571:16:0;:30;28604:58;;;;-1:-1:-1;;;28604:58:0;;8840:2:1;28604:58:0;;;8822:21:1;8879:2;8859:18;;;8852:30;8918;8898:18;;;8891:58;8966:18;;28604:58:0;8638:352:1;28604:58:0;28675:45;28704:1;28708:2;28712:7;28675:20;:45::i;:::-;-1:-1:-1;;;;;28733:13:0;;;;;;:9;:13;;;;;:18;;28750:1;;28733:13;:18;;28750:1;;28733:18;:::i;:::-;;;;-1:-1:-1;;28762:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28762:21:0;-1:-1:-1;;;;;28762:21:0;;;;;;;;28801:33;;28762:16;;;28801:33;;28762:16;;28801:33;28460:382;;:::o;38423:988::-;38689:22;38739:1;38714:22;38731:4;38714:16;:22::i;:::-;:26;;;;:::i;:::-;38751:18;38772:26;;;:17;:26;;;;;;38689:51;;-1:-1:-1;38905:28:0;;;38901:328;;-1:-1:-1;;;;;38972:18:0;;38950:19;38972:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39023:30;;;;;;:44;;;39140:30;;:17;:30;;;;;:43;;;38901:328;-1:-1:-1;39325:26:0;;;;:17;:26;;;;;;;;39318:33;;;-1:-1:-1;;;;;39369:18:0;;;;;:12;:18;;;;;:34;;;;;;;39362:41;38423:988::o;39706:1079::-;39984:10;:17;39959:22;;39984:21;;40004:1;;39984:21;:::i;:::-;40016:18;40037:24;;;:15;:24;;;;;;40410:10;:26;;39959:46;;-1:-1:-1;40037:24:0;;39959:46;;40410:26;;;;;;:::i;:::-;;;;;;;;;40388:48;;40474:11;40449:10;40460;40449:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40554:28;;;:15;:28;;;;;;;:41;;;40726:24;;;;;40719:31;40761:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39777:1008;;;39706:1079;:::o;37210:221::-;37295:14;37312:20;37329:2;37312:16;:20::i;:::-;-1:-1:-1;;;;;37343:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37388:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37210:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;1162:388::-;1230:6;1238;1291:2;1279:9;1270:7;1266:23;1262:32;1259:52;;;1307:1;1304;1297:12;1259:52;1346:9;1333:23;1365:31;1390:5;1365:31;:::i;:::-;1415:5;-1:-1:-1;1472:2:1;1457:18;;1444:32;1485:33;1444:32;1485:33;:::i;:::-;1537:7;1527:17;;;1162:388;;;;;:::o;1555:456::-;1632:6;1640;1648;1701:2;1689:9;1680:7;1676:23;1672:32;1669:52;;;1717:1;1714;1707:12;1669:52;1756:9;1743:23;1775:31;1800:5;1775:31;:::i;:::-;1825:5;-1:-1:-1;1882:2:1;1867:18;;1854:32;1895:33;1854:32;1895:33;:::i;:::-;1555:456;;1947:7;;-1:-1:-1;;;2001:2:1;1986:18;;;;1973:32;;1555:456::o;2016:794::-;2111:6;2119;2127;2135;2188:3;2176:9;2167:7;2163:23;2159:33;2156:53;;;2205:1;2202;2195:12;2156:53;2244:9;2231:23;2263:31;2288:5;2263:31;:::i;:::-;2313:5;-1:-1:-1;2370:2:1;2355:18;;2342:32;2383:33;2342:32;2383:33;:::i;:::-;2435:7;-1:-1:-1;2489:2:1;2474:18;;2461:32;;-1:-1:-1;2544:2:1;2529:18;;2516:32;2571:18;2560:30;;2557:50;;;2603:1;2600;2593:12;2557:50;2626:22;;2679:4;2671:13;;2667:27;-1:-1:-1;2657:55:1;;2708:1;2705;2698:12;2657:55;2731:73;2796:7;2791:2;2778:16;2773:2;2769;2765:11;2731:73;:::i;:::-;2721:83;;;2016:794;;;;;;;:::o;2815:416::-;2880:6;2888;2941:2;2929:9;2920:7;2916:23;2912:32;2909:52;;;2957:1;2954;2947:12;2909:52;2996:9;2983:23;3015:31;3040:5;3015:31;:::i;:::-;3065:5;-1:-1:-1;3122:2:1;3107:18;;3094:32;3164:15;;3157:23;3145:36;;3135:64;;3195:1;3192;3185:12;3236:315;3304:6;3312;3365:2;3353:9;3344:7;3340:23;3336:32;3333:52;;;3381:1;3378;3371:12;3333:52;3420:9;3407:23;3439:31;3464:5;3439:31;:::i;:::-;3489:5;3541:2;3526:18;;;;3513:32;;-1:-1:-1;;;3236:315:1:o;3556:245::-;3614:6;3667:2;3655:9;3646:7;3642:23;3638:32;3635:52;;;3683:1;3680;3673:12;3635:52;3722:9;3709:23;3741:30;3765:5;3741:30;:::i;3806:249::-;3875:6;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;3976:9;3970:16;3995:30;4019:5;3995:30;:::i;4060:450::-;4129:6;4182:2;4170:9;4161:7;4157:23;4153:32;4150:52;;;4198:1;4195;4188:12;4150:52;4238:9;4225:23;4271:18;4263:6;4260:30;4257:50;;;4303:1;4300;4293:12;4257:50;4326:22;;4379:4;4371:13;;4367:27;-1:-1:-1;4357:55:1;;4408:1;4405;4398:12;4357:55;4431:73;4496:7;4491:2;4478:16;4473:2;4469;4465:11;4431:73;:::i;4515:180::-;4574:6;4627:2;4615:9;4606:7;4602:23;4598:32;4595:52;;;4643:1;4640;4633:12;4595:52;-1:-1:-1;4666:23:1;;4515:180;-1:-1:-1;4515:180:1:o;4700:257::-;4741:3;4779:5;4773:12;4806:6;4801:3;4794:19;4822:63;4878:6;4871:4;4866:3;4862:14;4855:4;4848:5;4844:16;4822:63;:::i;:::-;4939:2;4918:15;-1:-1:-1;;4914:29:1;4905:39;;;;4946:4;4901:50;;4700:257;-1:-1:-1;;4700:257:1:o;4962:470::-;5141:3;5179:6;5173:13;5195:53;5241:6;5236:3;5229:4;5221:6;5217:17;5195:53;:::i;:::-;5311:13;;5270:16;;;;5333:57;5311:13;5270:16;5367:4;5355:17;;5333:57;:::i;:::-;5406:20;;4962:470;-1:-1:-1;;;;4962:470:1:o;6079:488::-;-1:-1:-1;;;;;6348:15:1;;;6330:34;;6400:15;;6395:2;6380:18;;6373:43;6447:2;6432:18;;6425:34;;;6495:3;6490:2;6475:18;;6468:31;;;6273:4;;6516:45;;6541:19;;6533:6;6516:45;:::i;:::-;6508:53;6079:488;-1:-1:-1;;;;;;6079:488:1:o;6764:219::-;6913:2;6902:9;6895:21;6876:4;6933:44;6973:2;6962:9;6958:18;6950:6;6933:44;:::i;6988:407::-;7190:2;7172:21;;;7229:2;7209:18;;;7202:30;7268:34;7263:2;7248:18;;7241:62;-1:-1:-1;;;7334:2:1;7319:18;;7312:41;7385:3;7370:19;;6988:407::o;7812:414::-;8014:2;7996:21;;;8053:2;8033:18;;;8026:30;8092:34;8087:2;8072:18;;8065:62;-1:-1:-1;;;8158:2:1;8143:18;;8136:48;8216:3;8201:19;;7812:414::o;12600:356::-;12802:2;12784:21;;;12821:18;;;12814:30;12880:34;12875:2;12860:18;;12853:62;12947:2;12932:18;;12600:356::o;13722:411::-;13924:2;13906:21;;;13963:2;13943:18;;;13936:30;14002:34;13997:2;13982:18;;13975:62;-1:-1:-1;;;14068:2:1;14053:18;;14046:45;14123:3;14108:19;;13722:411::o;15241:413::-;15443:2;15425:21;;;15482:2;15462:18;;;15455:30;15521:34;15516:2;15501:18;;15494:62;-1:-1:-1;;;15587:2:1;15572:18;;15565:47;15644:3;15629:19;;15241:413::o;16422:397::-;16624:2;16606:21;;;16663:2;16643:18;;;16636:30;16702:34;16697:2;16682:18;;16675:62;-1:-1:-1;;;16768:2:1;16753:18;;16746:31;16809:3;16794:19;;16422:397::o;18342:::-;18544:2;18526:21;;;18583:2;18563:18;;;18556:30;18622:34;18617:2;18602:18;;18595:62;-1:-1:-1;;;18688:2:1;18673:18;;18666:31;18729:3;18714:19;;18342:397::o;18926:128::-;18966:3;18997:1;18993:6;18990:1;18987:13;18984:39;;;19003:18;;:::i;:::-;-1:-1:-1;19039:9:1;;18926:128::o;19059:120::-;19099:1;19125;19115:35;;19130:18;;:::i;:::-;-1:-1:-1;19164:9:1;;19059:120::o;19184:168::-;19224:7;19290:1;19286;19282:6;19278:14;19275:1;19272:21;19267:1;19260:9;19253:17;19249:45;19246:71;;;19297:18;;:::i;:::-;-1:-1:-1;19337:9:1;;19184:168::o;19357:125::-;19397:4;19425:1;19422;19419:8;19416:34;;;19430:18;;:::i;:::-;-1:-1:-1;19467:9:1;;19357:125::o;19487:258::-;19559:1;19569:113;19583:6;19580:1;19577:13;19569:113;;;19659:11;;;19653:18;19640:11;;;19633:39;19605:2;19598:10;19569:113;;;19700:6;19697:1;19694:13;19691:48;;;-1:-1:-1;;19735:1:1;19717:16;;19710:27;19487:258::o;19750:380::-;19829:1;19825:12;;;;19872;;;19893:61;;19947:4;19939:6;19935:17;19925:27;;19893:61;20000:2;19992:6;19989:14;19969:18;19966:38;19963:161;;;20046:10;20041:3;20037:20;20034:1;20027:31;20081:4;20078:1;20071:15;20109:4;20106:1;20099:15;19963:161;;19750:380;;;:::o;20135:135::-;20174:3;-1:-1:-1;;20195:17:1;;20192:43;;;20215:18;;:::i;:::-;-1:-1:-1;20262:1:1;20251:13;;20135:135::o;20275:112::-;20307:1;20333;20323:35;;20338:18;;:::i;:::-;-1:-1:-1;20372:9:1;;20275:112::o;20392:127::-;20453:10;20448:3;20444:20;20441:1;20434:31;20484:4;20481:1;20474:15;20508:4;20505:1;20498:15;20524:127;20585:10;20580:3;20576:20;20573:1;20566:31;20616:4;20613:1;20606:15;20640:4;20637:1;20630:15;20656:127;20717:10;20712:3;20708:20;20705:1;20698:31;20748:4;20745:1;20738:15;20772:4;20769:1;20762:15;20788:127;20849:10;20844:3;20840:20;20837:1;20830:31;20880:4;20877:1;20870:15;20904:4;20901:1;20894:15;20920:127;20981:10;20976:3;20972:20;20969:1;20962:31;21012:4;21009:1;21002:15;21036:4;21033:1;21026:15;21052:131;-1:-1:-1;;;;;21127:31:1;;21117:42;;21107:70;;21173:1;21170;21163:12;21188:131;-1:-1:-1;;;;;;21262:32:1;;21252:43;;21242:71;;21309:1;21306;21299:12

Swarm Source

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