ETH Price: $3,806.65 (+0.82%)
Gas: 5 Gwei

Token

Baby Ape Club (BAC)
 

Overview

Max Total Supply

5,000 BAC

Holders

3,156

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 BAC
0x22b0cd01f0C1F9a43557EF5f1D9F5ee1d93646Dc
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:
BabyApeClubNFT

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-15
*/

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

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/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

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/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


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

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

    bool private _paused;

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

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/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/BabyApeClubNFT.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
pragma experimental ABIEncoderV2;





contract BabyApeClubNFT is ERC721Enumerable, Ownable {
    
    address public founderAddress = 0x4337e2811d7A8f55574684680517457722c2F49a; //Owner
    string private baseTokenURI;
    uint256 public MAX_TOKENS = 9999;
    uint256 public apesMintedCount;

    bool public publicSaleStarted;
    mapping(address => uint256) public totalClaimed;
    
    //Whitelist
    uint256 public presalePrice = 0.07 ether;
    uint256 public constant publicSalePrice = 0.088 ether;
    mapping(address => bool) private _presaleAddresses;
    mapping(address => bool) private _presaleAddressesVIP;
    mapping(address => uint256) private _totalClaimedPresale;
    bool public presaleStarted;

    event BaseURIChanged(string baseURI);
    event PresaleMint(address mintTo, uint256 apesCount);
    event PublicSaleMint(address mintTo, uint256 apesCount);

    modifier whenPresaleStarted() {
        require(presaleStarted, "Presale has not started yet");
        _;
    }

    modifier whenPublicSaleStarted() {
        require(publicSaleStarted, "Public sale has not started yet");
        _;
    }

    constructor(string memory baseURI) ERC721("Baby Ape Club", "BAC") {
        baseTokenURI = baseURI;
    }

    function addToWhitelist(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");
            _presaleAddresses[addresses[i]] = true;
        }
    }

    function addToVIPWhitelist(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");
            _presaleAddressesVIP[addresses[i]] = true;
        }
    }

    function checkMeInWL(address addr) external view returns (bool) {
        return _presaleAddresses[addr];
    }

    function checkMeInWLVIP(address addr) external view returns (bool) {
        return _presaleAddressesVIP[addr];
    }

    function getPresaleMintsClaimed(address addr) external view returns (uint256) {
        return _totalClaimedPresale[addr];
    }

    function mintPresale() external payable whenPresaleStarted {
        require(_presaleAddresses[msg.sender], "You are not in whitelist");
        require(totalSupply() + 1 <= 2500, "Minting would exceed max supply");
        require(_totalClaimedPresale[msg.sender] + 1 <= 1, "Only 1 mint allowed");
        require(presalePrice <= msg.value, "ETH amount is incorrect");

        uint256 tokenId = apesMintedCount + 1;

        apesMintedCount += 1;
        _totalClaimedPresale[msg.sender] += 1;
        _safeMint(msg.sender, tokenId);

        emit PresaleMint(msg.sender, 1);
    }

    function mintPresaleVIP() external payable whenPresaleStarted {
        require(_presaleAddressesVIP[msg.sender], "You are not in whitelist");
        require(totalSupply() + 1 <= 2500, "Minting would exceed max supply");
        require(_totalClaimedPresale[msg.sender] + 1 <= 2, "Only 2 mints allowed");
        require(presalePrice <= msg.value, "ETH amount is incorrect");

        uint256 tokenId = apesMintedCount + 1;

        apesMintedCount += 1;
        _totalClaimedPresale[msg.sender] += 1;
        _safeMint(msg.sender, tokenId);

        emit PresaleMint(msg.sender, 1);
    }

    function mint(uint256 apesCount) external payable whenPublicSaleStarted {
        require(totalSupply() + apesMintedCount <= MAX_TOKENS, "Minting would exceed max supply");
        require(totalClaimed[msg.sender] + apesCount <= 4, "Purchase exceeds max allowed per address");
        require(apesCount > 0, "Must mint at least one Ape");
        require(apesCount <= 2, "Amount over max per transaction. ");
        require(publicSalePrice * apesCount <= msg.value, "ETH amount is incorrect");

        for (uint256 i = 0; i < apesCount; i++) {
            uint256 tokenId = apesMintedCount + 1;
            apesMintedCount += 1;
            totalClaimed[msg.sender] += 1;
            _safeMint(msg.sender, tokenId);
        }

        emit PublicSaleMint(msg.sender, apesCount);
    }

    function togglePresaleStarted() external onlyOwner {
        presaleStarted = !presaleStarted;
    }

    function togglePublicSaleStarted() external onlyOwner {
        publicSaleStarted = !publicSaleStarted;
    }

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

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) 
    {
        string memory _tokenURI = super.tokenURI(tokenId);
        return string(abi.encodePacked(_tokenURI, ".json"));
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
        emit BaseURIChanged(baseURI);
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        _widthdraw(founderAddress, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{ value: _amount }("");
        require(success, "Failed to widthdraw Ether");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"mintTo","type":"address"},{"indexed":false,"internalType":"uint256","name":"apesCount","type":"uint256"}],"name":"PresaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"mintTo","type":"address"},{"indexed":false,"internalType":"uint256","name":"apesCount","type":"uint256"}],"name":"PublicSaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToVIPWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"apesMintedCount","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":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkMeInWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkMeInWLVIP","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"founderAddress","outputs":[{"internalType":"address","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":"addr","type":"address"}],"name":"getPresaleMintsClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"apesCount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPresaleVIP","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"togglePresaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleStarted","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b80546001600160a01b031916734337e2811d7a8f55574684680517457722c2f49a17905561270f600d5566f8b0a10e4700006011553480156200004857600080fd5b5060405162002c9838038062002c988339810160408190526200006b916200021d565b604080518082018252600d81526c2130b13c9020b8329021b63ab160991b60208083019182528351808501909452600384526242414360e81b908401528151919291620000bb9160009162000161565b508051620000d190600190602084019062000161565b505050620000ee620000e86200010b60201b60201c565b6200010f565b80516200010390600c90602084019062000161565b505062000336565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016f90620002f9565b90600052602060002090601f016020900481019282620001935760008555620001de565b82601f10620001ae57805160ff1916838001178555620001de565b82800160010185558215620001de579182015b82811115620001de578251825591602001919060010190620001c1565b50620001ec929150620001f0565b5090565b5b80821115620001ec5760008155600101620001f1565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200023157600080fd5b82516001600160401b03808211156200024957600080fd5b818501915085601f8301126200025e57600080fd5b81518181111562000273576200027362000207565b604051601f8201601f19908116603f011681019083821181831017156200029e576200029e62000207565b816040528281528886848701011115620002b757600080fd5b600093505b82841015620002db5784840186015181850187015292850192620002bc565b82841115620002ed5760008684830101525b98975050505050505050565b600181811c908216806200030e57607f821691505b602082108114156200033057634e487b7160e01b600052602260045260246000fd5b50919050565b61295280620003466000396000f3fe6080604052600436106101bf5760003560e01c80620e7fa8146101c457806301ffc9a7146101ed57806304549d6f1461021d57806306fdde0314610237578063081812fc14610259578063095ea7b31461029157806318160ddd146102b357806320689083146102c857806323b872dd146103015780632f745c59146103215780632f8145751461034157806342842e0e1461035657806346bb2833146103765780634f6ccce71461039657806355f804b3146103b65780636352211e146103d657806370a08231146103f6578063715018a6146104165780637f6497831461042b578063853828b61461044b5780638da5cb5b146104605780638e1e0bb01461047557806395d89b41146104ae5780639b6860c8146104c3578063a060158c146104df578063a0712d68146104e7578063a22cb465146104fa578063a2e914771461051a578063b88d4fde14610534578063bf6972bc14610554578063c87b56dd14610574578063db59969814610594578063e0db9e621461059c578063e985e9c5146105b2578063ed1fc2a2146105d2578063ef5d9ae8146105e7578063f2fde38b14610614578063f47c84c514610634578063f87e62621461064a575b600080fd5b3480156101d057600080fd5b506101da60115481565b6040519081526020015b60405180910390f35b3480156101f957600080fd5b5061020d6102083660046121c6565b610680565b60405190151581526020016101e4565b34801561022957600080fd5b5060155461020d9060ff1681565b34801561024357600080fd5b5061024c6106ab565b6040516101e4919061223b565b34801561026557600080fd5b5061027961027436600461224e565b61073d565b6040516001600160a01b0390911681526020016101e4565b34801561029d57600080fd5b506102b16102ac366004612283565b6107ca565b005b3480156102bf57600080fd5b506008546101da565b3480156102d457600080fd5b5061020d6102e33660046122ad565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561030d57600080fd5b506102b161031c3660046122c8565b6108db565b34801561032d57600080fd5b506101da61033c366004612283565b61090c565b34801561034d57600080fd5b506102b16109a2565b34801561036257600080fd5b506102b16103713660046122c8565b6109e5565b34801561038257600080fd5b50600b54610279906001600160a01b031681565b3480156103a257600080fd5b506101da6103b136600461224e565b610a00565b3480156103c257600080fd5b506102b16103d136600461238f565b610a93565b3480156103e257600080fd5b506102796103f136600461224e565b610b10565b34801561040257600080fd5b506101da6104113660046122ad565b610b87565b34801561042257600080fd5b506102b1610c0e565b34801561043757600080fd5b506102b16104463660046123d7565b610c49565b34801561045757600080fd5b506102b1610d3a565b34801561046c57600080fd5b50610279610dc6565b34801561048157600080fd5b5061020d6104903660046122ad565b6001600160a01b031660009081526013602052604090205460ff1690565b3480156104ba57600080fd5b5061024c610dd5565b3480156104cf57600080fd5b506101da670138a388a43c000081565b6102b1610de4565b6102b16104f536600461224e565b610f7c565b34801561050657600080fd5b506102b161051536600461244b565b611200565b34801561052657600080fd5b50600f5461020d9060ff1681565b34801561054057600080fd5b506102b161054f366004612487565b61120f565b34801561056057600080fd5b506102b161056f3660046123d7565b611247565b34801561058057600080fd5b5061024c61058f36600461224e565b611338565b6102b161136f565b3480156105a857600080fd5b506101da600e5481565b3480156105be57600080fd5b5061020d6105cd366004612502565b611456565b3480156105de57600080fd5b506102b1611484565b3480156105f357600080fd5b506101da6106023660046122ad565b60106020526000908152604090205481565b34801561062057600080fd5b506102b161062f3660046122ad565b6114c7565b34801561064057600080fd5b506101da600d5481565b34801561065657600080fd5b506101da6106653660046122ad565b6001600160a01b031660009081526014602052604090205490565b60006001600160e01b0319821663780e9d6360e01b14806106a557506106a582611564565b92915050565b6060600080546106ba90612535565b80601f01602080910402602001604051908101604052809291908181526020018280546106e690612535565b80156107335780601f1061070857610100808354040283529160200191610733565b820191906000526020600020905b81548152906001019060200180831161071657829003601f168201915b5050505050905090565b6000610748826115b4565b6107ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107d582610b10565b9050806001600160a01b0316836001600160a01b031614156108435760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107a5565b336001600160a01b038216148061085f575061085f8133611456565b6108cc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016107a5565b6108d683836115d1565b505050565b6108e5338261163f565b6109015760405162461bcd60e51b81526004016107a590612570565b6108d6838383611709565b600061091783610b87565b82106109795760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107a5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b336109ab610dc6565b6001600160a01b0316146109d15760405162461bcd60e51b81526004016107a5906125c1565b600f805460ff19811660ff90911615179055565b6108d68383836040518060200160405280600081525061120f565b6000610a0b60085490565b8210610a6e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107a5565b60088281548110610a8157610a816125f6565b90600052602060002001549050919050565b33610a9c610dc6565b6001600160a01b031614610ac25760405162461bcd60e51b81526004016107a5906125c1565b8051610ad590600c906020840190612117565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610b05919061223b565b60405180910390a150565b6000818152600260205260408120546001600160a01b0316806106a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107a5565b60006001600160a01b038216610bf25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107a5565b506001600160a01b031660009081526003602052604090205490565b33610c17610dc6565b6001600160a01b031614610c3d5760405162461bcd60e51b81526004016107a5906125c1565b610c4760006118a2565b565b33610c52610dc6565b6001600160a01b031614610c785760405162461bcd60e51b81526004016107a5906125c1565b60005b818110156108d6576000838383818110610c9757610c976125f6565b9050602002016020810190610cac91906122ad565b6001600160a01b03161415610cd35760405162461bcd60e51b81526004016107a59061260c565b600160126000858585818110610ceb57610ceb6125f6565b9050602002016020810190610d0091906122ad565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610d3281612653565b915050610c7b565b33610d43610dc6565b6001600160a01b031614610d695760405162461bcd60e51b81526004016107a5906125c1565b4780610dad5760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b60448201526064016107a5565b600b54610dc3906001600160a01b0316476118f4565b50565b600a546001600160a01b031690565b6060600180546106ba90612535565b60155460ff16610e065760405162461bcd60e51b81526004016107a59061266e565b3360009081526013602052604090205460ff16610e355760405162461bcd60e51b81526004016107a5906126a3565b6109c4610e4160085490565b610e4c9060016126d5565b1115610e6a5760405162461bcd60e51b81526004016107a5906126ed565b33600090815260146020526040902054600290610e889060016126d5565b1115610ecd5760405162461bcd60e51b815260206004820152601460248201527313db9b1e480c881b5a5b9d1cc8185b1b1bddd95960621b60448201526064016107a5565b346011541115610eef5760405162461bcd60e51b81526004016107a590612724565b6000600e546001610f0091906126d5565b90506001600e6000828254610f1591906126d5565b9091555050336000908152601460205260408120805460019290610f3a9084906126d5565b90915550610f4a90503382611993565b7ff5df7d07fef0d8ac7581015ebd1a3b7b7760da84b12f0c8174ae0dcd639cb6a3336001604051610b05929190612755565b600f5460ff16610fce5760405162461bcd60e51b815260206004820152601f60248201527f5075626c69632073616c6520686173206e6f742073746172746564207965740060448201526064016107a5565b600d54600e54600854610fe191906126d5565b1115610fff5760405162461bcd60e51b81526004016107a5906126ed565b3360009081526010602052604090205460049061101d9083906126d5565b111561107c5760405162461bcd60e51b815260206004820152602860248201527f50757263686173652065786365656473206d617820616c6c6f77656420706572604482015267206164647265737360c01b60648201526084016107a5565b600081116110c95760405162461bcd60e51b815260206004820152601a6024820152794d757374206d696e74206174206c65617374206f6e652041706560301b60448201526064016107a5565b60028111156111245760405162461bcd60e51b815260206004820152602160248201527f416d6f756e74206f766572206d617820706572207472616e73616374696f6e2e6044820152600160fd1b60648201526084016107a5565b3461113782670138a388a43c000061276e565b11156111555760405162461bcd60e51b81526004016107a590612724565b60005b818110156111ce576000600e54600161117191906126d5565b90506001600e600082825461118691906126d5565b90915550503360009081526010602052604081208054600192906111ab9084906126d5565b909155506111bb90503382611993565b50806111c681612653565b915050611158565b507f239739eec2dbaccb604ff1de6462a5eccd5f3148924696dd88f04d636ff582b53382604051610b05929190612755565b61120b3383836119ad565b5050565b611219338361163f565b6112355760405162461bcd60e51b81526004016107a590612570565b61124184848484611a78565b50505050565b33611250610dc6565b6001600160a01b0316146112765760405162461bcd60e51b81526004016107a5906125c1565b60005b818110156108d6576000838383818110611295576112956125f6565b90506020020160208101906112aa91906122ad565b6001600160a01b031614156112d15760405162461bcd60e51b81526004016107a59061260c565b6001601360008585858181106112e9576112e96125f6565b90506020020160208101906112fe91906122ad565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061133081612653565b915050611279565b6060600061134583611aab565b905080604051602001611358919061278d565b604051602081830303815290604052915050919050565b60155460ff166113915760405162461bcd60e51b81526004016107a59061266e565b3360009081526012602052604090205460ff166113c05760405162461bcd60e51b81526004016107a5906126a3565b6109c46113cc60085490565b6113d79060016126d5565b11156113f55760405162461bcd60e51b81526004016107a5906126ed565b3360009081526014602052604090205460019061141290826126d5565b1115610ecd5760405162461bcd60e51b815260206004820152601360248201527213db9b1e480c481b5a5b9d08185b1b1bddd959606a1b60448201526064016107a5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3361148d610dc6565b6001600160a01b0316146114b35760405162461bcd60e51b81526004016107a5906125c1565b6015805460ff19811660ff90911615179055565b336114d0610dc6565b6001600160a01b0316146114f65760405162461bcd60e51b81526004016107a5906125c1565b6001600160a01b03811661155b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a5565b610dc3816118a2565b60006001600160e01b031982166380ac58cd60e01b148061159557506001600160e01b03198216635b5e139f60e01b145b806106a557506301ffc9a760e01b6001600160e01b03198316146106a5565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061160682610b10565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061164a826115b4565b6116ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107a5565b60006116b683610b10565b9050806001600160a01b0316846001600160a01b031614806116f15750836001600160a01b03166116e68461073d565b6001600160a01b0316145b8061170157506117018185611456565b949350505050565b826001600160a01b031661171c82610b10565b6001600160a01b0316146117845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107a5565b6001600160a01b0382166117e65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107a5565b6117f1838383611b66565b6117fc6000826115d1565b6001600160a01b03831660009081526003602052604081208054600192906118259084906127b6565b90915550506001600160a01b03821660009081526003602052604081208054600192906118539084906126d5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716916000805160206128fd83398151915291a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611941576040519150601f19603f3d011682016040523d82523d6000602084013e611946565b606091505b50509050806108d65760405162461bcd60e51b81526020600482015260196024820152782330b4b632b2103a37903bb4b23a34323930bb9022ba3432b960391b60448201526064016107a5565b61120b828260405180602001604052806000815250611c1e565b816001600160a01b0316836001600160a01b03161415611a0b5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016107a5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a83848484611709565b611a8f84848484611c51565b6112415760405162461bcd60e51b81526004016107a5906127cd565b6060611ab6826115b4565b611b1a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107a5565b6000611b24611d4f565b90506000815111611b445760405180602001604052806000815250611b5f565b80611b4e84611d5e565b60405160200161135892919061281f565b9392505050565b6001600160a01b038316611bc157611bbc81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611be4565b816001600160a01b0316836001600160a01b031614611be457611be48382611e5b565b6001600160a01b038216611bfb576108d681611ef8565b826001600160a01b0316826001600160a01b0316146108d6576108d68282611fa7565b611c288383611feb565b611c356000848484611c51565b6108d65760405162461bcd60e51b81526004016107a5906127cd565b60006001600160a01b0384163b15611d4457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c9590339089908890889060040161284e565b6020604051808303816000875af1925050508015611cd0575060408051601f3d908101601f19168201909252611ccd9181019061288b565b60015b611d2a573d808015611cfe576040519150601f19603f3d011682016040523d82523d6000602084013e611d03565b606091505b508051611d225760405162461bcd60e51b81526004016107a5906127cd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611701565b506001949350505050565b6060600c80546106ba90612535565b606081611d825750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dac5780611d9681612653565b9150611da59050600a836128be565b9150611d86565b6000816001600160401b03811115611dc657611dc6612304565b6040519080825280601f01601f191660200182016040528015611df0576020820181803683370190505b5090505b841561170157611e056001836127b6565b9150611e12600a866128d2565b611e1d9060306126d5565b60f81b818381518110611e3257611e326125f6565b60200101906001600160f81b031916908160001a905350611e54600a866128be565b9450611df4565b60006001611e6884610b87565b611e7291906127b6565b600083815260076020526040902054909150808214611ec5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f0a906001906127b6565b60008381526009602052604081205460088054939450909284908110611f3257611f326125f6565b906000526020600020015490508060088381548110611f5357611f536125f6565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f8b57611f8b6128e6565b6001900381819060005260206000200160009055905550505050565b6000611fb283610b87565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120415760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107a5565b61204a816115b4565b156120965760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016107a5565b6120a260008383611b66565b6001600160a01b03821660009081526003602052604081208054600192906120cb9084906126d5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392906000805160206128fd833981519152908290a45050565b82805461212390612535565b90600052602060002090601f016020900481019282612145576000855561218b565b82601f1061215e57805160ff191683800117855561218b565b8280016001018555821561218b579182015b8281111561218b578251825591602001919060010190612170565b5061219792915061219b565b5090565b5b80821115612197576000815560010161219c565b6001600160e01b031981168114610dc357600080fd5b6000602082840312156121d857600080fd5b8135611b5f816121b0565b60005b838110156121fe5781810151838201526020016121e6565b838111156112415750506000910152565b600081518084526122278160208601602086016121e3565b601f01601f19169290920160200192915050565b602081526000611b5f602083018461220f565b60006020828403121561226057600080fd5b5035919050565b80356001600160a01b038116811461227e57600080fd5b919050565b6000806040838503121561229657600080fd5b61229f83612267565b946020939093013593505050565b6000602082840312156122bf57600080fd5b611b5f82612267565b6000806000606084860312156122dd57600080fd5b6122e684612267565b92506122f460208501612267565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561233457612334612304565b604051601f8501601f19908116603f0116810190828211818310171561235c5761235c612304565b8160405280935085815286868601111561237557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123a157600080fd5b81356001600160401b038111156123b757600080fd5b8201601f810184136123c857600080fd5b6117018482356020840161231a565b600080602083850312156123ea57600080fd5b82356001600160401b038082111561240157600080fd5b818501915085601f83011261241557600080fd5b81358181111561242457600080fd5b8660208260051b850101111561243957600080fd5b60209290920196919550909350505050565b6000806040838503121561245e57600080fd5b61246783612267565b91506020830135801515811461247c57600080fd5b809150509250929050565b6000806000806080858703121561249d57600080fd5b6124a685612267565b93506124b460208601612267565b92506040850135915060608501356001600160401b038111156124d657600080fd5b8501601f810187136124e757600080fd5b6124f68782356020840161231a565b91505092959194509250565b6000806040838503121561251557600080fd5b61251e83612267565b915061252c60208401612267565b90509250929050565b600181811c9082168061254957607f821691505b6020821081141561256a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60208082526017908201527643616e6e6f7420616464206e756c6c206164647265737360481b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60006000198214156126675761266761263d565b5060010190565b6020808252601b908201527a141c995cd85b19481a185cc81b9bdd081cdd185c9d1959081e595d602a1b604082015260600190565b602080825260189082015277165bdd48185c99481b9bdd081a5b881dda1a5d195b1a5cdd60421b604082015260600190565b600082198211156126e8576126e861263d565b500190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b60208082526017908201527611551208185b5bdd5b9d081a5cc81a5b98dbdc9c9958dd604a1b604082015260600190565b6001600160a01b03929092168252602082015260400190565b60008160001904831182151516156127885761278861263d565b500290565b6000825161279f8184602087016121e3565b64173539b7b760d91b920191825250600501919050565b6000828210156127c8576127c861263d565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600083516128318184602088016121e3565b8351908301906128458183602088016121e3565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128819083018461220f565b9695505050505050565b60006020828403121561289d57600080fd5b8151611b5f816121b0565b634e487b7160e01b600052601260045260246000fd5b6000826128cd576128cd6128a8565b500490565b6000826128e1576128e16128a8565b500690565b634e487b7160e01b600052603160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220928cff2af4a922823033c0aecf706d26a925d3c270643a41a48987da8f1219a864736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002f687474703a2f2f62616279617065636c75622e696f2f536563726574466f6c646572576974684d657461646174612f0000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101bf5760003560e01c80620e7fa8146101c457806301ffc9a7146101ed57806304549d6f1461021d57806306fdde0314610237578063081812fc14610259578063095ea7b31461029157806318160ddd146102b357806320689083146102c857806323b872dd146103015780632f745c59146103215780632f8145751461034157806342842e0e1461035657806346bb2833146103765780634f6ccce71461039657806355f804b3146103b65780636352211e146103d657806370a08231146103f6578063715018a6146104165780637f6497831461042b578063853828b61461044b5780638da5cb5b146104605780638e1e0bb01461047557806395d89b41146104ae5780639b6860c8146104c3578063a060158c146104df578063a0712d68146104e7578063a22cb465146104fa578063a2e914771461051a578063b88d4fde14610534578063bf6972bc14610554578063c87b56dd14610574578063db59969814610594578063e0db9e621461059c578063e985e9c5146105b2578063ed1fc2a2146105d2578063ef5d9ae8146105e7578063f2fde38b14610614578063f47c84c514610634578063f87e62621461064a575b600080fd5b3480156101d057600080fd5b506101da60115481565b6040519081526020015b60405180910390f35b3480156101f957600080fd5b5061020d6102083660046121c6565b610680565b60405190151581526020016101e4565b34801561022957600080fd5b5060155461020d9060ff1681565b34801561024357600080fd5b5061024c6106ab565b6040516101e4919061223b565b34801561026557600080fd5b5061027961027436600461224e565b61073d565b6040516001600160a01b0390911681526020016101e4565b34801561029d57600080fd5b506102b16102ac366004612283565b6107ca565b005b3480156102bf57600080fd5b506008546101da565b3480156102d457600080fd5b5061020d6102e33660046122ad565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561030d57600080fd5b506102b161031c3660046122c8565b6108db565b34801561032d57600080fd5b506101da61033c366004612283565b61090c565b34801561034d57600080fd5b506102b16109a2565b34801561036257600080fd5b506102b16103713660046122c8565b6109e5565b34801561038257600080fd5b50600b54610279906001600160a01b031681565b3480156103a257600080fd5b506101da6103b136600461224e565b610a00565b3480156103c257600080fd5b506102b16103d136600461238f565b610a93565b3480156103e257600080fd5b506102796103f136600461224e565b610b10565b34801561040257600080fd5b506101da6104113660046122ad565b610b87565b34801561042257600080fd5b506102b1610c0e565b34801561043757600080fd5b506102b16104463660046123d7565b610c49565b34801561045757600080fd5b506102b1610d3a565b34801561046c57600080fd5b50610279610dc6565b34801561048157600080fd5b5061020d6104903660046122ad565b6001600160a01b031660009081526013602052604090205460ff1690565b3480156104ba57600080fd5b5061024c610dd5565b3480156104cf57600080fd5b506101da670138a388a43c000081565b6102b1610de4565b6102b16104f536600461224e565b610f7c565b34801561050657600080fd5b506102b161051536600461244b565b611200565b34801561052657600080fd5b50600f5461020d9060ff1681565b34801561054057600080fd5b506102b161054f366004612487565b61120f565b34801561056057600080fd5b506102b161056f3660046123d7565b611247565b34801561058057600080fd5b5061024c61058f36600461224e565b611338565b6102b161136f565b3480156105a857600080fd5b506101da600e5481565b3480156105be57600080fd5b5061020d6105cd366004612502565b611456565b3480156105de57600080fd5b506102b1611484565b3480156105f357600080fd5b506101da6106023660046122ad565b60106020526000908152604090205481565b34801561062057600080fd5b506102b161062f3660046122ad565b6114c7565b34801561064057600080fd5b506101da600d5481565b34801561065657600080fd5b506101da6106653660046122ad565b6001600160a01b031660009081526014602052604090205490565b60006001600160e01b0319821663780e9d6360e01b14806106a557506106a582611564565b92915050565b6060600080546106ba90612535565b80601f01602080910402602001604051908101604052809291908181526020018280546106e690612535565b80156107335780601f1061070857610100808354040283529160200191610733565b820191906000526020600020905b81548152906001019060200180831161071657829003601f168201915b5050505050905090565b6000610748826115b4565b6107ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107d582610b10565b9050806001600160a01b0316836001600160a01b031614156108435760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107a5565b336001600160a01b038216148061085f575061085f8133611456565b6108cc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016107a5565b6108d683836115d1565b505050565b6108e5338261163f565b6109015760405162461bcd60e51b81526004016107a590612570565b6108d6838383611709565b600061091783610b87565b82106109795760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107a5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b336109ab610dc6565b6001600160a01b0316146109d15760405162461bcd60e51b81526004016107a5906125c1565b600f805460ff19811660ff90911615179055565b6108d68383836040518060200160405280600081525061120f565b6000610a0b60085490565b8210610a6e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107a5565b60088281548110610a8157610a816125f6565b90600052602060002001549050919050565b33610a9c610dc6565b6001600160a01b031614610ac25760405162461bcd60e51b81526004016107a5906125c1565b8051610ad590600c906020840190612117565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610b05919061223b565b60405180910390a150565b6000818152600260205260408120546001600160a01b0316806106a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107a5565b60006001600160a01b038216610bf25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107a5565b506001600160a01b031660009081526003602052604090205490565b33610c17610dc6565b6001600160a01b031614610c3d5760405162461bcd60e51b81526004016107a5906125c1565b610c4760006118a2565b565b33610c52610dc6565b6001600160a01b031614610c785760405162461bcd60e51b81526004016107a5906125c1565b60005b818110156108d6576000838383818110610c9757610c976125f6565b9050602002016020810190610cac91906122ad565b6001600160a01b03161415610cd35760405162461bcd60e51b81526004016107a59061260c565b600160126000858585818110610ceb57610ceb6125f6565b9050602002016020810190610d0091906122ad565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610d3281612653565b915050610c7b565b33610d43610dc6565b6001600160a01b031614610d695760405162461bcd60e51b81526004016107a5906125c1565b4780610dad5760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b60448201526064016107a5565b600b54610dc3906001600160a01b0316476118f4565b50565b600a546001600160a01b031690565b6060600180546106ba90612535565b60155460ff16610e065760405162461bcd60e51b81526004016107a59061266e565b3360009081526013602052604090205460ff16610e355760405162461bcd60e51b81526004016107a5906126a3565b6109c4610e4160085490565b610e4c9060016126d5565b1115610e6a5760405162461bcd60e51b81526004016107a5906126ed565b33600090815260146020526040902054600290610e889060016126d5565b1115610ecd5760405162461bcd60e51b815260206004820152601460248201527313db9b1e480c881b5a5b9d1cc8185b1b1bddd95960621b60448201526064016107a5565b346011541115610eef5760405162461bcd60e51b81526004016107a590612724565b6000600e546001610f0091906126d5565b90506001600e6000828254610f1591906126d5565b9091555050336000908152601460205260408120805460019290610f3a9084906126d5565b90915550610f4a90503382611993565b7ff5df7d07fef0d8ac7581015ebd1a3b7b7760da84b12f0c8174ae0dcd639cb6a3336001604051610b05929190612755565b600f5460ff16610fce5760405162461bcd60e51b815260206004820152601f60248201527f5075626c69632073616c6520686173206e6f742073746172746564207965740060448201526064016107a5565b600d54600e54600854610fe191906126d5565b1115610fff5760405162461bcd60e51b81526004016107a5906126ed565b3360009081526010602052604090205460049061101d9083906126d5565b111561107c5760405162461bcd60e51b815260206004820152602860248201527f50757263686173652065786365656473206d617820616c6c6f77656420706572604482015267206164647265737360c01b60648201526084016107a5565b600081116110c95760405162461bcd60e51b815260206004820152601a6024820152794d757374206d696e74206174206c65617374206f6e652041706560301b60448201526064016107a5565b60028111156111245760405162461bcd60e51b815260206004820152602160248201527f416d6f756e74206f766572206d617820706572207472616e73616374696f6e2e6044820152600160fd1b60648201526084016107a5565b3461113782670138a388a43c000061276e565b11156111555760405162461bcd60e51b81526004016107a590612724565b60005b818110156111ce576000600e54600161117191906126d5565b90506001600e600082825461118691906126d5565b90915550503360009081526010602052604081208054600192906111ab9084906126d5565b909155506111bb90503382611993565b50806111c681612653565b915050611158565b507f239739eec2dbaccb604ff1de6462a5eccd5f3148924696dd88f04d636ff582b53382604051610b05929190612755565b61120b3383836119ad565b5050565b611219338361163f565b6112355760405162461bcd60e51b81526004016107a590612570565b61124184848484611a78565b50505050565b33611250610dc6565b6001600160a01b0316146112765760405162461bcd60e51b81526004016107a5906125c1565b60005b818110156108d6576000838383818110611295576112956125f6565b90506020020160208101906112aa91906122ad565b6001600160a01b031614156112d15760405162461bcd60e51b81526004016107a59061260c565b6001601360008585858181106112e9576112e96125f6565b90506020020160208101906112fe91906122ad565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061133081612653565b915050611279565b6060600061134583611aab565b905080604051602001611358919061278d565b604051602081830303815290604052915050919050565b60155460ff166113915760405162461bcd60e51b81526004016107a59061266e565b3360009081526012602052604090205460ff166113c05760405162461bcd60e51b81526004016107a5906126a3565b6109c46113cc60085490565b6113d79060016126d5565b11156113f55760405162461bcd60e51b81526004016107a5906126ed565b3360009081526014602052604090205460019061141290826126d5565b1115610ecd5760405162461bcd60e51b815260206004820152601360248201527213db9b1e480c481b5a5b9d08185b1b1bddd959606a1b60448201526064016107a5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3361148d610dc6565b6001600160a01b0316146114b35760405162461bcd60e51b81526004016107a5906125c1565b6015805460ff19811660ff90911615179055565b336114d0610dc6565b6001600160a01b0316146114f65760405162461bcd60e51b81526004016107a5906125c1565b6001600160a01b03811661155b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a5565b610dc3816118a2565b60006001600160e01b031982166380ac58cd60e01b148061159557506001600160e01b03198216635b5e139f60e01b145b806106a557506301ffc9a760e01b6001600160e01b03198316146106a5565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061160682610b10565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061164a826115b4565b6116ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107a5565b60006116b683610b10565b9050806001600160a01b0316846001600160a01b031614806116f15750836001600160a01b03166116e68461073d565b6001600160a01b0316145b8061170157506117018185611456565b949350505050565b826001600160a01b031661171c82610b10565b6001600160a01b0316146117845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107a5565b6001600160a01b0382166117e65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107a5565b6117f1838383611b66565b6117fc6000826115d1565b6001600160a01b03831660009081526003602052604081208054600192906118259084906127b6565b90915550506001600160a01b03821660009081526003602052604081208054600192906118539084906126d5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716916000805160206128fd83398151915291a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611941576040519150601f19603f3d011682016040523d82523d6000602084013e611946565b606091505b50509050806108d65760405162461bcd60e51b81526020600482015260196024820152782330b4b632b2103a37903bb4b23a34323930bb9022ba3432b960391b60448201526064016107a5565b61120b828260405180602001604052806000815250611c1e565b816001600160a01b0316836001600160a01b03161415611a0b5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016107a5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a83848484611709565b611a8f84848484611c51565b6112415760405162461bcd60e51b81526004016107a5906127cd565b6060611ab6826115b4565b611b1a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107a5565b6000611b24611d4f565b90506000815111611b445760405180602001604052806000815250611b5f565b80611b4e84611d5e565b60405160200161135892919061281f565b9392505050565b6001600160a01b038316611bc157611bbc81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611be4565b816001600160a01b0316836001600160a01b031614611be457611be48382611e5b565b6001600160a01b038216611bfb576108d681611ef8565b826001600160a01b0316826001600160a01b0316146108d6576108d68282611fa7565b611c288383611feb565b611c356000848484611c51565b6108d65760405162461bcd60e51b81526004016107a5906127cd565b60006001600160a01b0384163b15611d4457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c9590339089908890889060040161284e565b6020604051808303816000875af1925050508015611cd0575060408051601f3d908101601f19168201909252611ccd9181019061288b565b60015b611d2a573d808015611cfe576040519150601f19603f3d011682016040523d82523d6000602084013e611d03565b606091505b508051611d225760405162461bcd60e51b81526004016107a5906127cd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611701565b506001949350505050565b6060600c80546106ba90612535565b606081611d825750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dac5780611d9681612653565b9150611da59050600a836128be565b9150611d86565b6000816001600160401b03811115611dc657611dc6612304565b6040519080825280601f01601f191660200182016040528015611df0576020820181803683370190505b5090505b841561170157611e056001836127b6565b9150611e12600a866128d2565b611e1d9060306126d5565b60f81b818381518110611e3257611e326125f6565b60200101906001600160f81b031916908160001a905350611e54600a866128be565b9450611df4565b60006001611e6884610b87565b611e7291906127b6565b600083815260076020526040902054909150808214611ec5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f0a906001906127b6565b60008381526009602052604081205460088054939450909284908110611f3257611f326125f6565b906000526020600020015490508060088381548110611f5357611f536125f6565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f8b57611f8b6128e6565b6001900381819060005260206000200160009055905550505050565b6000611fb283610b87565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120415760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107a5565b61204a816115b4565b156120965760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60448201526064016107a5565b6120a260008383611b66565b6001600160a01b03821660009081526003602052604081208054600192906120cb9084906126d5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392906000805160206128fd833981519152908290a45050565b82805461212390612535565b90600052602060002090601f016020900481019282612145576000855561218b565b82601f1061215e57805160ff191683800117855561218b565b8280016001018555821561218b579182015b8281111561218b578251825591602001919060010190612170565b5061219792915061219b565b5090565b5b80821115612197576000815560010161219c565b6001600160e01b031981168114610dc357600080fd5b6000602082840312156121d857600080fd5b8135611b5f816121b0565b60005b838110156121fe5781810151838201526020016121e6565b838111156112415750506000910152565b600081518084526122278160208601602086016121e3565b601f01601f19169290920160200192915050565b602081526000611b5f602083018461220f565b60006020828403121561226057600080fd5b5035919050565b80356001600160a01b038116811461227e57600080fd5b919050565b6000806040838503121561229657600080fd5b61229f83612267565b946020939093013593505050565b6000602082840312156122bf57600080fd5b611b5f82612267565b6000806000606084860312156122dd57600080fd5b6122e684612267565b92506122f460208501612267565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561233457612334612304565b604051601f8501601f19908116603f0116810190828211818310171561235c5761235c612304565b8160405280935085815286868601111561237557600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123a157600080fd5b81356001600160401b038111156123b757600080fd5b8201601f810184136123c857600080fd5b6117018482356020840161231a565b600080602083850312156123ea57600080fd5b82356001600160401b038082111561240157600080fd5b818501915085601f83011261241557600080fd5b81358181111561242457600080fd5b8660208260051b850101111561243957600080fd5b60209290920196919550909350505050565b6000806040838503121561245e57600080fd5b61246783612267565b91506020830135801515811461247c57600080fd5b809150509250929050565b6000806000806080858703121561249d57600080fd5b6124a685612267565b93506124b460208601612267565b92506040850135915060608501356001600160401b038111156124d657600080fd5b8501601f810187136124e757600080fd5b6124f68782356020840161231a565b91505092959194509250565b6000806040838503121561251557600080fd5b61251e83612267565b915061252c60208401612267565b90509250929050565b600181811c9082168061254957607f821691505b6020821081141561256a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60208082526017908201527643616e6e6f7420616464206e756c6c206164647265737360481b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60006000198214156126675761266761263d565b5060010190565b6020808252601b908201527a141c995cd85b19481a185cc81b9bdd081cdd185c9d1959081e595d602a1b604082015260600190565b602080825260189082015277165bdd48185c99481b9bdd081a5b881dda1a5d195b1a5cdd60421b604082015260600190565b600082198211156126e8576126e861263d565b500190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b60208082526017908201527611551208185b5bdd5b9d081a5cc81a5b98dbdc9c9958dd604a1b604082015260600190565b6001600160a01b03929092168252602082015260400190565b60008160001904831182151516156127885761278861263d565b500290565b6000825161279f8184602087016121e3565b64173539b7b760d91b920191825250600501919050565b6000828210156127c8576127c861263d565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600083516128318184602088016121e3565b8351908301906128458183602088016121e3565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128819083018461220f565b9695505050505050565b60006020828403121561289d57600080fd5b8151611b5f816121b0565b634e487b7160e01b600052601260045260246000fd5b6000826128cd576128cd6128a8565b500490565b6000826128e1576128e16128a8565b500690565b634e487b7160e01b600052603160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220928cff2af4a922823033c0aecf706d26a925d3c270643a41a48987da8f1219a864736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002f687474703a2f2f62616279617065636c75622e696f2f536563726574466f6c646572576974684d657461646174612f0000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): http://babyapeclub.io/SecretFolderWithMetadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [2] : 687474703a2f2f62616279617065636c75622e696f2f536563726574466f6c64
Arg [3] : 6572576974684d657461646174612f0000000000000000000000000000000000


Deployed Bytecode Sourcemap

46876:5378:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47256:40;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;47256:40:0;;;;;;;;38054:224;;;;;;;;;;-1:-1:-1;38054:224:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;38054:224:0;582:187:1;47543:26:0;;;;;;;;;;-1:-1:-1;47543:26:0;;;;;;;;25548:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27107:221::-;;;;;;;;;;-1:-1:-1;27107:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;27107:221:0;1710:203:1;26630:411:0;;;;;;;;;;-1:-1:-1;26630:411:0;;;;;:::i;:::-;;:::i;:::-;;38694:113;;;;;;;;;;-1:-1:-1;38782:10:0;:17;38694:113;;48697;;;;;;;;;;-1:-1:-1;48697:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;48779:23:0;48755:4;48779:23;;;:17;:23;;;;;;;;;48697:113;27857:339;;;;;;;;;;-1:-1:-1;27857:339:0;;;;;:::i;:::-;;:::i;38362:256::-;;;;;;;;;;-1:-1:-1;38362:256:0;;;;;:::i;:::-;;:::i;51217:111::-;;;;;;;;;;;;;:::i;28267:185::-;;;;;;;;;;-1:-1:-1;28267:185:0;;;;;:::i;:::-;;:::i;46942:74::-;;;;;;;;;;-1:-1:-1;46942:74:0;;;;-1:-1:-1;;;;;46942:74:0;;;38884:233;;;;;;;;;;-1:-1:-1;38884:233:0;;;;;:::i;:::-;;:::i;51689:140::-;;;;;;;;;;-1:-1:-1;51689:140:0;;;;;:::i;:::-;;:::i;25242:239::-;;;;;;;;;;-1:-1:-1;25242:239:0;;;;;:::i;:::-;;:::i;24972:208::-;;;;;;;;;;-1:-1:-1;24972:208:0;;;;;:::i;:::-;;:::i;45915:103::-;;;;;;;;;;;;;:::i;48115:280::-;;;;;;;;;;-1:-1:-1;48115:280:0;;;;;:::i;:::-;;:::i;51837:212::-;;;;;;;;;;;;;:::i;45264:87::-;;;;;;;;;;;;;:::i;48818:119::-;;;;;;;;;;-1:-1:-1;48818:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;48903:26:0;48879:4;48903:26;;;:20;:26;;;;;;;;;48818:119;25717:104;;;;;;;;;;;;;:::i;47303:53::-;;;;;;;;;;;;47345:11;47303:53;;49687:603;;;:::i;50298:801::-;;;;;;:::i;:::-;;:::i;27400:155::-;;;;;;;;;;-1:-1:-1;27400:155:0;;;;;:::i;:::-;;:::i;47143:29::-;;;;;;;;;;-1:-1:-1;47143:29:0;;;;;;;;28523:328;;;;;;;;;;-1:-1:-1;28523:328:0;;;;;:::i;:::-;;:::i;48403:286::-;;;;;;;;;;-1:-1:-1;48403:286:0;;;;;:::i;:::-;;:::i;51457:224::-;;;;;;;;;;-1:-1:-1;51457:224:0;;;;;:::i;:::-;;:::i;49083:596::-;;;:::i;47104:30::-;;;;;;;;;;;;;;;;27626:164;;;;;;;;;;-1:-1:-1;27626:164:0;;;;;:::i;:::-;;:::i;51107:102::-;;;;;;;;;;;;;:::i;47179:47::-;;;;;;;;;;-1:-1:-1;47179:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;46173:201;;;;;;;;;;-1:-1:-1;46173:201:0;;;;;:::i;:::-;;:::i;47065:32::-;;;;;;;;;;;;;;;;48945:130;;;;;;;;;;-1:-1:-1;48945:130:0;;;;;:::i;:::-;-1:-1:-1;;;;;49041:26:0;49014:7;49041:26;;;:20;:26;;;;;;;48945:130;38054:224;38156:4;-1:-1:-1;;;;;;38180:50:0;;-1:-1:-1;;;38180:50:0;;:90;;;38234:36;38258:11;38234:23;:36::i;:::-;38173:97;38054:224;-1:-1:-1;;38054:224:0:o;25548:100::-;25602:13;25635:5;25628:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25548:100;:::o;27107:221::-;27183:7;27211:16;27219:7;27211;:16::i;:::-;27203:73;;;;-1:-1:-1;;;27203:73:0;;6600:2:1;27203:73:0;;;6582:21:1;6639:2;6619:18;;;6612:30;6678:34;6658:18;;;6651:62;-1:-1:-1;;;6729:18:1;;;6722:42;6781:19;;27203:73:0;;;;;;;;;-1:-1:-1;27296:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27296:24:0;;27107:221::o;26630:411::-;26711:13;26727:23;26742:7;26727:14;:23::i;:::-;26711:39;;26775:5;-1:-1:-1;;;;;26769:11:0;:2;-1:-1:-1;;;;;26769:11:0;;;26761:57;;;;-1:-1:-1;;;26761:57:0;;7013:2:1;26761:57:0;;;6995:21:1;7052:2;7032:18;;;7025:30;7091:34;7071:18;;;7064:62;-1:-1:-1;;;7142:18:1;;;7135:31;7183:19;;26761:57:0;6811:397:1;26761:57:0;20759:10;-1:-1:-1;;;;;26853:21:0;;;;:62;;-1:-1:-1;26878:37:0;26895:5;20759:10;27626:164;:::i;26878:37::-;26831:168;;;;-1:-1:-1;;;26831:168:0;;7415:2:1;26831:168:0;;;7397:21:1;7454:2;7434:18;;;7427:30;7493:34;7473:18;;;7466:62;-1:-1:-1;;;7544:18:1;;;7537:54;7608:19;;26831:168:0;7213:420:1;26831:168:0;27012:21;27021:2;27025:7;27012:8;:21::i;:::-;26700:341;26630:411;;:::o;27857:339::-;28052:41;20759:10;28085:7;28052:18;:41::i;:::-;28044:103;;;;-1:-1:-1;;;28044:103:0;;;;;;;:::i;:::-;28160:28;28170:4;28176:2;28180:7;28160:9;:28::i;38362:256::-;38459:7;38495:23;38512:5;38495:16;:23::i;:::-;38487:5;:31;38479:87;;;;-1:-1:-1;;;38479:87:0;;8258:2:1;38479:87:0;;;8240:21:1;8297:2;8277:18;;;8270:30;8336:34;8316:18;;;8309:62;-1:-1:-1;;;8387:18:1;;;8380:41;8438:19;;38479:87:0;8056:407:1;38479:87:0;-1:-1:-1;;;;;;38584:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38362:256::o;51217:111::-;20759:10;45484:7;:5;:7::i;:::-;-1:-1:-1;;;;;45484:23:0;;45476:68;;;;-1:-1:-1;;;45476:68:0;;;;;;;:::i;:::-;51303:17:::1;::::0;;-1:-1:-1;;51282:38:0;::::1;51303:17;::::0;;::::1;51302:18;51282:38;::::0;;51217:111::o;28267:185::-;28405:39;28422:4;28428:2;28432:7;28405:39;;;;;;;;;;;;:16;:39::i;38884:233::-;38959:7;38995:30;38782:10;:17;;38694:113;38995:30;38987:5;:38;38979:95;;;;-1:-1:-1;;;38979:95:0;;9031:2:1;38979:95:0;;;9013:21:1;9070:2;9050:18;;;9043:30;9109:34;9089:18;;;9082:62;-1:-1:-1;;;9160:18:1;;;9153:42;9212:19;;38979:95:0;8829:408:1;38979:95:0;39092:10;39103:5;39092:17;;;;;;;;:::i;:::-;;;;;;;;;39085:24;;38884:233;;;:::o;51689:140::-;20759:10;45484:7;:5;:7::i;:::-;-1:-1:-1;;;;;45484:23:0;;45476:68;;;;-1:-1:-1;;;45476:68:0;;;;;;;:::i;:::-;51760:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51798:23;51813:7;51798:23;;;;;;:::i;:::-;;;;;;;;51689:140:::0;:::o;25242:239::-;25314:7;25350:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25350:16:0;25385:19;25377:73;;;;-1:-1:-1;;;25377:73:0;;9576:2:1;25377:73:0;;;9558:21:1;9615:2;9595:18;;;9588:30;9654:34;9634:18;;;9627:62;-1:-1:-1;;;9705:18:1;;;9698:39;9754:19;;25377:73:0;9374:405:1;24972:208:0;25044:7;-1:-1:-1;;;;;25072:19:0;;25064:74;;;;-1:-1:-1;;;25064:74:0;;9986:2:1;25064:74:0;;;9968:21:1;10025:2;10005:18;;;9998:30;10064:34;10044:18;;;10037:62;-1:-1:-1;;;10115:18:1;;;10108:40;10165:19;;25064:74:0;9784:406:1;25064:74:0;-1:-1:-1;;;;;;25156:16:0;;;;;:9;:16;;;;;;;24972:208::o;45915:103::-;20759:10;45484:7;:5;:7::i;:::-;-1:-1:-1;;;;;45484:23:0;;45476:68;;;;-1:-1:-1;;;45476:68:0;;;;;;;:::i;:::-;45980:30:::1;46007:1;45980:18;:30::i;:::-;45915:103::o:0;48115:280::-;20759:10;45484:7;:5;:7::i;:::-;-1:-1:-1;;;;;45484:23:0;;45476:68;;;;-1:-1:-1;;;45476:68:0;;;;;;;:::i;:::-;48204:9:::1;48199:189;48219:20:::0;;::::1;48199:189;;;48293:1;48269:9:::0;;48279:1;48269:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48269:26:0::1;;;48261:62;;;;-1:-1:-1::0;;;48261:62:0::1;;;;;;;:::i;:::-;48372:4;48338:17;:31;48356:9;;48366:1;48356:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48338:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48338:31:0;:38;;-1:-1:-1;;48338:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48241:3;::::1;::::0;::::1;:::i;:::-;;;;48199:189;;51837:212:::0;20759:10;45484:7;:5;:7::i;:::-;-1:-1:-1;;;;;45484:23:0;;45476:68;;;;-1:-1:-1;;;45476:68:0;;;;;;;:::i;:::-;51906:21:::1;51946:11:::0;51938:43:::1;;;::::0;-1:-1:-1;;;51938:43:0;;11021:2:1;51938:43:0::1;::::0;::::1;11003:21:1::0;11060:2;11040:18;;;11033:30;-1:-1:-1;;;11079:18:1;;;11072:49;11138:18;;51938:43:0::1;10819:343:1::0;51938:43:0::1;52003:14;::::0;51992:49:::1;::::0;-1:-1:-1;;;;;52003:14:0::1;52019:21;51992:10;:49::i;:::-;51877:172;51837:212::o:0;45264:87::-;45337:6;;-1:-1:-1;;;;;45337:6:0;;45264:87::o;25717:104::-;25773:13;25806:7;25799:14;;;;;:::i;49687:603::-;47793:14;;;;47785:54;;;;-1:-1:-1;;;47785:54:0;;;;;;;:::i;:::-;49789:10:::1;49768:32;::::0;;;:20:::1;:32;::::0;;;;;::::1;;49760:69;;;;-1:-1:-1::0;;;49760:69:0::1;;;;;;;:::i;:::-;49869:4;49848:13;38782:10:::0;:17;;38694:113;49848:13:::1;:17;::::0;49864:1:::1;49848:17;:::i;:::-;:25;;49840:69;;;;-1:-1:-1::0;;;49840:69:0::1;;;;;;;:::i;:::-;49949:10;49928:32;::::0;;;:20:::1;:32;::::0;;;;;49968:1:::1;::::0;49928:36:::1;::::0;49963:1:::1;49928:36;:::i;:::-;:41;;49920:74;;;::::0;-1:-1:-1;;;49920:74:0;;12571:2:1;49920:74:0::1;::::0;::::1;12553:21:1::0;12610:2;12590:18;;;12583:30;-1:-1:-1;;;12629:18:1;;;12622:50;12689:18;;49920:74:0::1;12369:344:1::0;49920:74:0::1;50029:9;50013:12;;:25;;50005:61;;;;-1:-1:-1::0;;;50005:61:0::1;;;;;;;:::i;:::-;50079:15;50097;;50115:1;50097:19;;;;:::i;:::-;50079:37;;50148:1;50129:15;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;50181:10:0::1;50160:32;::::0;;;:20:::1;:32;::::0;;;;:37;;50196:1:::1;::::0;50160:32;:37:::1;::::0;50196:1;;50160:37:::1;:::i;:::-;::::0;;;-1:-1:-1;50208:30:0::1;::::0;-1:-1:-1;50218:10:0::1;50230:7:::0;50208:9:::1;:30::i;:::-;50256:26;50268:10;50280:1;50256:26;;;;;;;:::i;50298:801::-:0;47919:17;;;;47911:61;;;;-1:-1:-1;;;47911:61:0;;13559:2:1;47911:61:0;;;13541:21:1;13598:2;13578:18;;;13571:30;13637:33;13617:18;;;13610:61;13688:18;;47911:61:0;13357:355:1;47911:61:0;50424:10:::1;::::0;50405:15:::1;::::0;38782:10;:17;50389:31:::1;;;;:::i;:::-;:45;;50381:89;;;;-1:-1:-1::0;;;50381:89:0::1;;;;;;;:::i;:::-;50502:10;50489:24;::::0;;;:12:::1;:24;::::0;;;;;50529:1:::1;::::0;50489:36:::1;::::0;50516:9;;50489:36:::1;:::i;:::-;:41;;50481:94;;;::::0;-1:-1:-1;;;50481:94:0;;13919:2:1;50481:94:0::1;::::0;::::1;13901:21:1::0;13958:2;13938:18;;;13931:30;13997:34;13977:18;;;13970:62;-1:-1:-1;;;14048:18:1;;;14041:38;14096:19;;50481:94:0::1;13717:404:1::0;50481:94:0::1;50606:1;50594:9;:13;50586:52;;;::::0;-1:-1:-1;;;50586:52:0;;14328:2:1;50586:52:0::1;::::0;::::1;14310:21:1::0;14367:2;14347:18;;;14340:30;-1:-1:-1;;;14386:18:1;;;14379:56;14452:18;;50586:52:0::1;14126:350:1::0;50586:52:0::1;50670:1;50657:9;:14;;50649:60;;;::::0;-1:-1:-1;;;50649:60:0;;14683:2:1;50649:60:0::1;::::0;::::1;14665:21:1::0;14722:2;14702:18;;;14695:30;14761:34;14741:18;;;14734:62;-1:-1:-1;;;14812:18:1;;;14805:31;14853:19;;50649:60:0::1;14481:397:1::0;50649:60:0::1;50759:9;50728:27;50746:9:::0;47345:11:::1;50728:27;:::i;:::-;:40;;50720:76;;;;-1:-1:-1::0;;;50720:76:0::1;;;;;;;:::i;:::-;50814:9;50809:228;50833:9;50829:1;:13;50809:228;;;50864:15;50882;;50900:1;50882:19;;;;:::i;:::-;50864:37;;50935:1;50916:15;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;50964:10:0::1;50951:24;::::0;;;:12:::1;:24;::::0;;;;:29;;50979:1:::1;::::0;50951:24;:29:::1;::::0;50979:1;;50951:29:::1;:::i;:::-;::::0;;;-1:-1:-1;50995:30:0::1;::::0;-1:-1:-1;51005:10:0::1;51017:7:::0;50995:9:::1;:30::i;:::-;-1:-1:-1::0;50844:3:0;::::1;::::0;::::1;:::i;:::-;;;;50809:228;;;;51054:37;51069:10;51081:9;51054:37;;;;;;;:::i;27400:155::-:0;27495:52;20759:10;27528:8;27538;27495:18;:52::i;:::-;27400:155;;:::o;28523:328::-;28698:41;20759:10;28731:7;28698:18;:41::i;:::-;28690:103;;;;-1:-1:-1;;;28690:103:0;;;;;;;:::i;:::-;28804:39;28818:4;28824:2;28828:7;28837:5;28804:13;:39::i;:::-;28523:328;;;;:::o;48403:286::-;20759:10;45484:7;:5;:7::i;:::-;-1:-1:-1;;;;;45484:23:0;;45476:68;;;;-1:-1:-1;;;45476:68:0;;;;;;;:::i;:::-;48495:9:::1;48490:192;48510:20:::0;;::::1;48490:192;;;48584:1;48560:9:::0;;48570:1;48560:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48560:26:0::1;;;48552:62;;;;-1:-1:-1::0;;;48552:62:0::1;;;;;;;:::i;:::-;48666:4;48629:20;:34;48650:9;;48660:1;48650:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48629:34:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48629:34:0;:41;;-1:-1:-1;;48629:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48532:3;::::1;::::0;::::1;:::i;:::-;;;;48490:192;;51457:224:::0;51530:13;51562:23;51588;51603:7;51588:14;:23::i;:::-;51562:49;;51653:9;51636:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;51622:51;;;51457:224;;;:::o;49083:596::-;47793:14;;;;47785:54;;;;-1:-1:-1;;;47785:54:0;;;;;;;:::i;:::-;49179:10:::1;49161:29;::::0;;;:17:::1;:29;::::0;;;;;::::1;;49153:66;;;;-1:-1:-1::0;;;49153:66:0::1;;;;;;;:::i;:::-;49259:4;49238:13;38782:10:::0;:17;;38694:113;49238:13:::1;:17;::::0;49254:1:::1;49238:17;:::i;:::-;:25;;49230:69;;;;-1:-1:-1::0;;;49230:69:0::1;;;;;;;:::i;:::-;49339:10;49318:32;::::0;;;:20:::1;:32;::::0;;;;;49358:1:::1;::::0;49318:36:::1;::::0;49358:1;49318:36:::1;:::i;:::-;:41;;49310:73;;;::::0;-1:-1:-1;;;49310:73:0;;15985:2:1;49310:73:0::1;::::0;::::1;15967:21:1::0;16024:2;16004:18;;;15997:30;-1:-1:-1;;;16043:18:1;;;16036:49;16102:18;;49310:73:0::1;15783:343:1::0;27626:164:0;-1:-1:-1;;;;;27747:25:0;;;27723:4;27747:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27626:164::o;51107:102::-;20759:10;45484:7;:5;:7::i;:::-;-1:-1:-1;;;;;45484:23:0;;45476:68;;;;-1:-1:-1;;;45476:68:0;;;;;;;:::i;:::-;51187:14:::1;::::0;;-1:-1:-1;;51169:32:0;::::1;51187:14;::::0;;::::1;51186:15;51169:32;::::0;;51107:102::o;46173:201::-;20759:10;45484:7;:5;:7::i;:::-;-1:-1:-1;;;;;45484:23:0;;45476:68;;;;-1:-1:-1;;;45476:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46262:22:0;::::1;46254:73;;;::::0;-1:-1:-1;;;46254:73:0;;16333:2:1;46254:73:0::1;::::0;::::1;16315:21:1::0;16372:2;16352:18;;;16345:30;16411:34;16391:18;;;16384:62;-1:-1:-1;;;16462:18:1;;;16455:36;16508:19;;46254:73:0::1;16131:402:1::0;46254:73:0::1;46338:28;46357:8;46338:18;:28::i;24603:305::-:0;24705:4;-1:-1:-1;;;;;;24742:40:0;;-1:-1:-1;;;24742:40:0;;:105;;-1:-1:-1;;;;;;;24799:48:0;;-1:-1:-1;;;24799:48:0;24742:105;:158;;;-1:-1:-1;;;;;;;;;;13197:40:0;;;24864:36;13088:157;30361:127;30426:4;30450:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30450:16:0;:30;;;30361:127::o;34343:174::-;34418:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34418:29:0;-1:-1:-1;;;;;34418:29:0;;;;;;;;:24;;34472:23;34418:24;34472:14;:23::i;:::-;-1:-1:-1;;;;;34463:46:0;;;;;;;;;;;34343:174;;:::o;30655:348::-;30748:4;30773:16;30781:7;30773;:16::i;:::-;30765:73;;;;-1:-1:-1;;;30765:73:0;;16740:2:1;30765:73:0;;;16722:21:1;16779:2;16759:18;;;16752:30;16818:34;16798:18;;;16791:62;-1:-1:-1;;;16869:18:1;;;16862:42;16921:19;;30765:73:0;16538:408:1;30765:73:0;30849:13;30865:23;30880:7;30865:14;:23::i;:::-;30849:39;;30918:5;-1:-1:-1;;;;;30907:16:0;:7;-1:-1:-1;;;;;30907:16:0;;:51;;;;30951:7;-1:-1:-1;;;;;30927:31:0;:20;30939:7;30927:11;:20::i;:::-;-1:-1:-1;;;;;30927:31:0;;30907:51;:87;;;;30962:32;30979:5;30986:7;30962:16;:32::i;:::-;30899:96;30655:348;-1:-1:-1;;;;30655:348:0:o;33647:578::-;33806:4;-1:-1:-1;;;;;33779:31:0;:23;33794:7;33779:14;:23::i;:::-;-1:-1:-1;;;;;33779:31:0;;33771:85;;;;-1:-1:-1;;;33771:85:0;;17153:2:1;33771:85:0;;;17135:21:1;17192:2;17172:18;;;17165:30;17231:34;17211:18;;;17204:62;-1:-1:-1;;;17282:18:1;;;17275:39;17331:19;;33771:85:0;16951:405:1;33771:85:0;-1:-1:-1;;;;;33875:16:0;;33867:65;;;;-1:-1:-1;;;33867:65:0;;17563:2:1;33867:65:0;;;17545:21:1;17602:2;17582:18;;;17575:30;17641:34;17621:18;;;17614:62;-1:-1:-1;;;17692:18:1;;;17685:34;17736:19;;33867:65:0;17361:400:1;33867:65:0;33945:39;33966:4;33972:2;33976:7;33945:20;:39::i;:::-;34049:29;34066:1;34070:7;34049:8;:29::i;:::-;-1:-1:-1;;;;;34091:15:0;;;;;;:9;:15;;;;;:20;;34110:1;;34091:15;:20;;34110:1;;34091:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34122:13:0;;;;;;:9;:13;;;;;:18;;34139:1;;34122:13;:18;;34139:1;;34122:18;:::i;:::-;;;;-1:-1:-1;;34151:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34151:21:0;-1:-1:-1;;;;;34151:21:0;;;;;;;;;34190:27;;34151:16;;34190:27;;;;-1:-1:-1;;;;;;;;;;;34190:27:0;;33647:578;;;:::o;46534:191::-;46627:6;;;-1:-1:-1;;;;;46644:17:0;;;-1:-1:-1;;;;;;46644:17:0;;;;;;;46677:40;;46627:6;;;46644:17;46627:6;;46677:40;;46608:16;;46677:40;46597:128;46534:191;:::o;52057:192::-;52132:12;52150:8;-1:-1:-1;;;;;52150:13:0;52172:7;52150:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52131:54;;;52204:7;52196:45;;;;-1:-1:-1;;;52196:45:0;;18308:2:1;52196:45:0;;;18290:21:1;18347:2;18327:18;;;18320:30;-1:-1:-1;;;18366:18:1;;;18359:55;18431:18;;52196:45:0;18106:349:1;31345:110:0;31421:26;31431:2;31435:7;31421:26;;;;;;;;;;;;:9;:26::i;34659:315::-;34814:8;-1:-1:-1;;;;;34805:17:0;:5;-1:-1:-1;;;;;34805:17:0;;;34797:55;;;;-1:-1:-1;;;34797:55:0;;18662:2:1;34797:55:0;;;18644:21:1;18701:2;18681:18;;;18674:30;-1:-1:-1;;;18720:18:1;;;18713:55;18785:18;;34797:55:0;18460:349:1;34797:55:0;-1:-1:-1;;;;;34863:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34863:46:0;;;;;;;;;;34925:41;;722::1;;;34925::0;;695:18:1;34925:41:0;;;;;;;34659:315;;;:::o;29733:::-;29890:28;29900:4;29906:2;29910:7;29890:9;:28::i;:::-;29937:48;29960:4;29966:2;29970:7;29979:5;29937:22;:48::i;:::-;29929:111;;;;-1:-1:-1;;;29929:111:0;;;;;;;:::i;25892:334::-;25965:13;25999:16;26007:7;25999;:16::i;:::-;25991:76;;;;-1:-1:-1;;;25991:76:0;;19435:2:1;25991:76:0;;;19417:21:1;19474:2;19454:18;;;19447:30;19513:34;19493:18;;;19486:62;-1:-1:-1;;;19564:18:1;;;19557:45;19619:19;;25991:76:0;19233:411:1;25991:76:0;26080:21;26104:10;:8;:10::i;:::-;26080:34;;26156:1;26138:7;26132:21;:25;:86;;;;;;;;;;;;;;;;;26184:7;26193:18;:7;:16;:18::i;:::-;26167:45;;;;;;;;;:::i;26132:86::-;26125:93;25892:334;-1:-1:-1;;;25892:334:0:o;39730:589::-;-1:-1:-1;;;;;39936:18:0;;39932:187;;39971:40;40003:7;41146:10;:17;;41119:24;;;;:15;:24;;;;;:44;;;41174:24;;;;;;;;;;;;41042:164;39971:40;39932:187;;;40041:2;-1:-1:-1;;;;;40033:10:0;:4;-1:-1:-1;;;;;40033:10:0;;40029:90;;40060:47;40093:4;40099:7;40060:32;:47::i;:::-;-1:-1:-1;;;;;40133:16:0;;40129:183;;40166:45;40203:7;40166:36;:45::i;40129:183::-;40239:4;-1:-1:-1;;;;;40233:10:0;:2;-1:-1:-1;;;;;40233:10:0;;40229:83;;40260:40;40288:2;40292:7;40260:27;:40::i;31682:321::-;31812:18;31818:2;31822:7;31812:5;:18::i;:::-;31863:54;31894:1;31898:2;31902:7;31911:5;31863:22;:54::i;:::-;31841:154;;;;-1:-1:-1;;;31841:154:0;;;;;;;:::i;35539:799::-;35694:4;-1:-1:-1;;;;;35715:13:0;;3267:20;3315:8;35711:620;;35751:72;;-1:-1:-1;;;35751:72:0;;-1:-1:-1;;;;;35751:36:0;;;;;:72;;20759:10;;35802:4;;35808:7;;35817:5;;35751:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35751:72:0;;;;;;;;-1:-1:-1;;35751:72:0;;;;;;;;;;;;:::i;:::-;;;35747:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35993:13:0;;35989:272;;36036:60;;-1:-1:-1;;;36036:60:0;;;;;;;:::i;35989:272::-;36211:6;36205:13;36196:6;36192:2;36188:15;36181:38;35747:529;-1:-1:-1;;;;;;35874:51:0;-1:-1:-1;;;35874:51:0;;-1:-1:-1;35867:58:0;;35711:620;-1:-1:-1;36315:4:0;35539:799;;;;;;:::o;51336:113::-;51396:13;51429:12;51422:19;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;-1:-1:-1;;;;;867:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;41833:988;42099:22;42149:1;42124:22;42141:4;42124:16;:22::i;:::-;:26;;;;:::i;:::-;42161:18;42182:26;;;:17;:26;;;;;;42099:51;;-1:-1:-1;42315:28:0;;;42311:328;;-1:-1:-1;;;;;42382:18:0;;42360:19;42382:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42433:30;;;;;;:44;;;42550:30;;:17;:30;;;;;:43;;;42311:328;-1:-1:-1;42735:26:0;;;;:17;:26;;;;;;;;42728:33;;;-1:-1:-1;;;;;42779:18:0;;;;;:12;:18;;;;;:34;;;;;;;42772:41;41833:988::o;43116:1079::-;43394:10;:17;43369:22;;43394:21;;43414:1;;43394:21;:::i;:::-;43426:18;43447:24;;;:15;:24;;;;;;43820:10;:26;;43369:46;;-1:-1:-1;43447:24:0;;43369:46;;43820:26;;;;;;:::i;:::-;;;;;;;;;43798:48;;43884:11;43859:10;43870;43859:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;43964:28;;;:15;:28;;;;;;;:41;;;44136:24;;;;;44129:31;44171:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43187:1008;;;43116:1079;:::o;40620:221::-;40705:14;40722:20;40739:2;40722:16;:20::i;:::-;-1:-1:-1;;;;;40753:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;40798:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40620:221:0:o;32339:382::-;-1:-1:-1;;;;;32419:16:0;;32411:61;;;;-1:-1:-1;;;32411:61:0;;21580:2:1;32411:61:0;;;21562:21:1;;;21599:18;;;21592:30;21658:34;21638:18;;;21631:62;21710:18;;32411:61:0;21378:356:1;32411:61:0;32492:16;32500:7;32492;:16::i;:::-;32491:17;32483:58;;;;-1:-1:-1;;;32483:58:0;;21941:2:1;32483:58:0;;;21923:21:1;21980:2;21960:18;;;21953:30;-1:-1:-1;;;21999:18:1;;;21992:58;22067:18;;32483:58:0;21739:352:1;32483:58:0;32554:45;32583:1;32587:2;32591:7;32554:20;:45::i;:::-;-1:-1:-1;;;;;32612:13:0;;;;;;:9;:13;;;;;:18;;32629:1;;32612:13;:18;;32629:1;;32612:18;:::i;:::-;;;;-1:-1:-1;;32641:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32641:21:0;-1:-1:-1;;;;;32641:21:0;;;;;;;;32680:33;;32641:16;;;-1:-1:-1;;;;;;;;;;;32680:33:0;32641:16;;32680:33;32339:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;-1:-1:-1;;;;;3136:14:1;;;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3813:23;;-1:-1:-1;;;;;3848:30:1;;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:615::-;4190:6;4198;4251:2;4239:9;4230:7;4226:23;4222:32;4219:52;;;4267:1;4264;4257:12;4219:52;4294:23;;-1:-1:-1;;;;;4366:14:1;;;4363:34;;;4393:1;4390;4383:12;4363:34;4431:6;4420:9;4416:22;4406:32;;4476:7;4469:4;4465:2;4461:13;4457:27;4447:55;;4498:1;4495;4488:12;4447:55;4538:2;4525:16;4564:2;4556:6;4553:14;4550:34;;;4580:1;4577;4570:12;4550:34;4633:7;4628:2;4618:6;4615:1;4611:14;4607:2;4603:23;4599:32;4596:45;4593:65;;;4654:1;4651;4644:12;4593:65;4685:2;4677:11;;;;;4707:6;;-1:-1:-1;4104:615:1;;-1:-1:-1;;;;4104:615:1:o;4724:347::-;4789:6;4797;4850:2;4838:9;4829:7;4825:23;4821:32;4818:52;;;4866:1;4863;4856:12;4818:52;4889:29;4908:9;4889:29;:::i;:::-;4879:39;;4968:2;4957:9;4953:18;4940:32;5015:5;5008:13;5001:21;4994:5;4991:32;4981:60;;5037:1;5034;5027:12;4981:60;5060:5;5050:15;;;4724:347;;;;;:::o;5076:667::-;5171:6;5179;5187;5195;5248:3;5236:9;5227:7;5223:23;5219:33;5216:53;;;5265:1;5262;5255:12;5216:53;5288:29;5307:9;5288:29;:::i;:::-;5278:39;;5336:38;5370:2;5359:9;5355:18;5336:38;:::i;:::-;5326:48;-1:-1:-1;5421:2:1;5406:18;;5393:32;;-1:-1:-1;5476:2:1;5461:18;;5448:32;-1:-1:-1;;;;;5492:30:1;;5489:50;;;5535:1;5532;5525:12;5489:50;5558:22;;5611:4;5603:13;;5599:27;-1:-1:-1;5589:55:1;;5640:1;5637;5630:12;5589:55;5663:74;5729:7;5724:2;5711:16;5706:2;5702;5698:11;5663:74;:::i;:::-;5653:84;;;5076:667;;;;;;;:::o;5748:260::-;5816:6;5824;5877:2;5865:9;5856:7;5852:23;5848:32;5845:52;;;5893:1;5890;5883:12;5845:52;5916:29;5935:9;5916:29;:::i;:::-;5906:39;;5964:38;5998:2;5987:9;5983:18;5964:38;:::i;:::-;5954:48;;5748:260;;;;;:::o;6013:380::-;6092:1;6088:12;;;;6135;;;6156:61;;6210:4;6202:6;6198:17;6188:27;;6156:61;6263:2;6255:6;6252:14;6232:18;6229:38;6226:161;;;6309:10;6304:3;6300:20;6297:1;6290:31;6344:4;6341:1;6334:15;6372:4;6369:1;6362:15;6226:161;;6013:380;;;:::o;7638:413::-;7840:2;7822:21;;;7879:2;7859:18;;;7852:30;7918:34;7913:2;7898:18;;7891:62;-1:-1:-1;;;7984:2:1;7969:18;;7962:47;8041:3;8026:19;;7638:413::o;8468:356::-;8670:2;8652:21;;;8689:18;;;8682:30;8748:34;8743:2;8728:18;;8721:62;8815:2;8800:18;;8468:356::o;9242:127::-;9303:10;9298:3;9294:20;9291:1;9284:31;9334:4;9331:1;9324:15;9358:4;9355:1;9348:15;10195:347;10397:2;10379:21;;;10436:2;10416:18;;;10409:30;-1:-1:-1;;;10470:2:1;10455:18;;10448:53;10533:2;10518:18;;10195:347::o;10547:127::-;10608:10;10603:3;10599:20;10596:1;10589:31;10639:4;10636:1;10629:15;10663:4;10660:1;10653:15;10679:135;10718:3;-1:-1:-1;;10739:17:1;;10736:43;;;10759:18;;:::i;:::-;-1:-1:-1;10806:1:1;10795:13;;10679:135::o;11167:351::-;11369:2;11351:21;;;11408:2;11388:18;;;11381:30;-1:-1:-1;;;11442:2:1;11427:18;;11420:57;11509:2;11494:18;;11167:351::o;11523:348::-;11725:2;11707:21;;;11764:2;11744:18;;;11737:30;-1:-1:-1;;;11798:2:1;11783:18;;11776:54;11862:2;11847:18;;11523:348::o;11876:128::-;11916:3;11947:1;11943:6;11940:1;11937:13;11934:39;;;11953:18;;:::i;:::-;-1:-1:-1;11989:9:1;;11876:128::o;12009:355::-;12211:2;12193:21;;;12250:2;12230:18;;;12223:30;12289:33;12284:2;12269:18;;12262:61;12355:2;12340:18;;12009:355::o;12718:347::-;12920:2;12902:21;;;12959:2;12939:18;;;12932:30;-1:-1:-1;;;12993:2:1;12978:18;;12971:53;13056:2;13041:18;;12718:347::o;13070:282::-;-1:-1:-1;;;;;13270:32:1;;;;13252:51;;13334:2;13319:18;;13312:34;13240:2;13225:18;;13070:282::o;14883:168::-;14923:7;14989:1;14985;14981:6;14977:14;14974:1;14971:21;14966:1;14959:9;14952:17;14948:45;14945:71;;;14996:18;;:::i;:::-;-1:-1:-1;15036:9:1;;14883:168::o;15335:443::-;15567:3;15605:6;15599:13;15621:53;15667:6;15662:3;15655:4;15647:6;15643:17;15621:53;:::i;:::-;-1:-1:-1;;;15696:16:1;;15721:22;;;-1:-1:-1;15770:1:1;15759:13;;15335:443;-1:-1:-1;15335:443:1:o;17766:125::-;17806:4;17834:1;17831;17828:8;17825:34;;;17839:18;;:::i;:::-;-1:-1:-1;17876:9:1;;17766:125::o;18814:414::-;19016:2;18998:21;;;19055:2;19035:18;;;19028:30;19094:34;19089:2;19074:18;;19067:62;-1:-1:-1;;;19160:2:1;19145:18;;19138:48;19218:3;19203:19;;18814:414::o;19649:470::-;19828:3;19866:6;19860:13;19882:53;19928:6;19923:3;19916:4;19908:6;19904:17;19882:53;:::i;:::-;19998:13;;19957:16;;;;20020:57;19998:13;19957:16;20054:4;20042:17;;20020:57;:::i;:::-;20093:20;;19649:470;-1:-1:-1;;;;19649:470:1:o;20124:489::-;-1:-1:-1;;;;;20393:15:1;;;20375:34;;20445:15;;20440:2;20425:18;;20418:43;20492:2;20477:18;;20470:34;;;20540:3;20535:2;20520:18;;20513:31;;;20318:4;;20561:46;;20587:19;;20579:6;20561:46;:::i;:::-;20553:54;20124:489;-1:-1:-1;;;;;;20124:489:1:o;20618:249::-;20687:6;20740:2;20728:9;20719:7;20715:23;20711:32;20708:52;;;20756:1;20753;20746:12;20708:52;20788:9;20782:16;20807:30;20831:5;20807:30;:::i;20872:127::-;20933:10;20928:3;20924:20;20921:1;20914:31;20964:4;20961:1;20954:15;20988:4;20985:1;20978:15;21004:120;21044:1;21070;21060:35;;21075:18;;:::i;:::-;-1:-1:-1;21109:9:1;;21004:120::o;21129:112::-;21161:1;21187;21177:35;;21192:18;;:::i;:::-;-1:-1:-1;21226:9:1;;21129:112::o;21246:127::-;21307:10;21302:3;21298:20;21295:1;21288:31;21338:4;21335:1;21328:15;21362:4;21359:1;21352:15

Swarm Source

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