ETH Price: $2,627.72 (-0.31%)
Gas: 1 Gwei

Token

Rich Ape Miners Club (RAMC)
 

Overview

Max Total Supply

165 RAMC

Holders

47

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RAMC
0xA68324c6B71b7E4128887d1A6F90242bdB53f948
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:
RichApeMinersClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT AND GPL-3.0

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


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


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


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


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


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


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


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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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 {}
}


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



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


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

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

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

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

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

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

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

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


contract RichApeMinersClub is ERC721Enumerable, Ownable {
    using Strings for uint256;
    string private baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
    uint256 public preSaleCost = 0.222 ether;
    uint256 public cost = 0.333 ether;
    uint256 public maxSupply = 10000;
    uint256 public preSaleMaxSupply = 3000;
    uint256 public maxMintAmountPresale = 3000;
    uint256 public maxMintAmount = 1000;
    uint256 public nftPerAddressLimitPresale = 1000;
    uint256 public nftPerAddressLimit = 1000;
    uint256 public preSaleDate = 1642968000; // TODO check that this is the correct date (!)
    uint256 public preSaleEndDate = 1643054400; // TODO check that this is one day after (!)
    uint256 public publicSaleDate = 1643054401; // It starts right after presale (1 second after)
    bool public paused = false;
    bool public revealed = false;
    mapping(address => bool) whitelistedAddresses;
    mapping(address => uint256) public addressMintedBalance;

    constructor(string memory _name, string memory _symbol, string memory _initNotRevealedUri, string memory __baseURI) ERC721(_name, _symbol) {
        setNotRevealedURI(_initNotRevealedUri);
        baseURI = __baseURI;
    }

    function setPresaleDates(uint256 _start, uint256 _end) public onlyOwner {
        preSaleDate = _start;
        preSaleEndDate = _end;
    }

    function setPublicMintDate(uint256 _start) public onlyOwner {
        publicSaleDate = _start;
    }
    
    //MODIFIERS
    modifier notPaused {
         require(!paused, "the contract is paused");
         _;
    }

    modifier saleStarted {
        require(block.timestamp >= preSaleDate, "Sale has not started yet");
        _;
    }

    modifier minimumMintAmount(uint256 _mintAmount) {
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        _;
    }

    // INTERNAL
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function presaleValidations(uint256 _ownerMintedCount, uint256 _mintAmount, uint256 _supply) internal {
            uint256 actualCost;
            block.timestamp < preSaleEndDate ? actualCost = preSaleCost : actualCost = cost;
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            require(_ownerMintedCount + _mintAmount <= nftPerAddressLimitPresale, "max NFT per address exceeded for presale");
            require(msg.value >= actualCost * _mintAmount, "insufficient funds");
            require(_mintAmount <= maxMintAmountPresale,"max mint amount per transaction exceeded");
            require(_supply + _mintAmount <= preSaleMaxSupply,"max NFT presale limit exceeded");
    }

    function publicsaleValidations(uint256 _ownerMintedCount, uint256 _mintAmount) internal {
        require(_ownerMintedCount + _mintAmount <= nftPerAddressLimit,"max NFT per address exceeded");
        require(msg.value >= cost * _mintAmount, "insufficient funds");
        require(_mintAmount <= maxMintAmount,"max mint amount per transaction exceeded");
    }

    //MINT
    function mint(uint256 _mintAmount) public payable notPaused saleStarted minimumMintAmount(_mintAmount) {
        uint256 supply = totalSupply();
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];

        //Do some validations depending on which step of the sale we are in
        block.timestamp < publicSaleDate ? presaleValidations(ownerMintedCount, _mintAmount, supply) : publicsaleValidations(ownerMintedCount, _mintAmount);

        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
        if (_mintAmount >= 6) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, supply + _mintAmount + 1);
        }
    }
    
    function gift(uint256 _mintAmount, address destination) public onlyOwner {
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[destination]++;
            _safeMint(destination, supply + i);
        }
    }

    //PUBLIC VIEWS
    function isWhitelisted(address _user) public view returns (bool) {
        return whitelistedAddresses[_user];
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        if (!revealed) {
            return notRevealedUri;
        } else {
            string memory currentBaseURI = _baseURI();
            return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI,tokenId.toString(), baseExtension)) : "";
        }
    }

    function getCurrentCost() public view returns (uint256) {
        if (block.timestamp < preSaleEndDate) {
            return preSaleCost;
        } else {
            return cost;
        }
    }

    //ONLY OWNER VIEWS
    function getBaseURI() public view onlyOwner returns (string memory) {
        return baseURI;
    }

    function getContractBalance() public view onlyOwner returns (uint256) {
        return address(this).balance;
    }

    //ONLY OWNER SETTERS
    function reveal() public onlyOwner {
        revealed = true;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }
    
    function setNftPerAddressLimitPreSale(uint256 _limit) public onlyOwner {
        nftPerAddressLimitPresale = _limit;
    }

    function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
        nftPerAddressLimit = _limit;
    }

    function setPresaleCost(uint256 _newCost) public onlyOwner {
        preSaleCost = _newCost;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }
    
    function setmaxMintAmountPreSale(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmountPresale = _newmaxMintAmount;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setPresaleMaxSupply(uint256 _newPresaleMaxSupply) public onlyOwner {
        preSaleMaxSupply = _newPresaleMaxSupply;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setPreSaleDate(uint256 _preSaleDate) public onlyOwner {
        preSaleDate = _preSaleDate;
    }

    function setPreSaleEndDate(uint256 _preSaleEndDate) public onlyOwner {
        preSaleEndDate = _preSaleEndDate;
    }

    function setPublicSaleDate(uint256 _publicSaleDate) public onlyOwner {
        publicSaleDate = _publicSaleDate;
    }

    function whitelistUsers(address[] memory addresses) public onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            whitelistedAddresses[addresses[i]] = true;
        }
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleEndDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleDate","type":"uint256"}],"name":"setPreSaleDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleEndDate","type":"uint256"}],"name":"setPreSaleEndDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"setPresaleDates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPresaleMaxSupply","type":"uint256"}],"name":"setPresaleMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_start","type":"uint256"}],"name":"setPublicMintDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleDate","type":"uint256"}],"name":"setPublicSaleDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001fa565b50670314b3d2e4230000600e5567049f0dbc56348000600f55612710601055610bb860118190556012556103e8601381905560148190556015556361edb3c06016556361ef05406017556361ef05416018556019805461ffff191690553480156200009257600080fd5b506040516200363b3803806200363b833981016040819052620000b59162000357565b835184908490620000ce906000906020850190620001fa565b508051620000e4906001906020840190620001fa565b50505062000101620000fb6200012c60201b60201c565b62000130565b6200010c8262000182565b80516200012190600b906020840190620001fa565b505050505062000463565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001f690600d906020840190620001fa565b5050565b828054620002089062000410565b90600052602060002090601f0160209004810192826200022c576000855562000277565b82601f106200024757805160ff191683800117855562000277565b8280016001018555821562000277579182015b82811115620002775782518255916020019190600101906200025a565b506200028592915062000289565b5090565b5b808211156200028557600081556001016200028a565b600082601f830112620002b257600080fd5b81516001600160401b0380821115620002cf57620002cf6200044d565b604051601f8301601f19908116603f01168101908282118183101715620002fa57620002fa6200044d565b816040528381526020925086838588010111156200031757600080fd5b600091505b838210156200033b57858201830151818301840152908201906200031c565b838211156200034d5760008385830101525b9695505050505050565b600080600080608085870312156200036e57600080fd5b84516001600160401b03808211156200038657600080fd5b6200039488838901620002a0565b95506020870151915080821115620003ab57600080fd5b620003b988838901620002a0565b94506040870151915080821115620003d057600080fd5b620003de88838901620002a0565b93506060870151915080821115620003f557600080fd5b506200040487828801620002a0565b91505092959194509250565b600181811c908216806200042557607f821691505b602082108114156200044757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6131c880620004736000396000f3fe6080604052600436106103ad5760003560e01c80636f9fb98a116101e7578063a22cb4651161010d578063d5abeb01116100a0578063eced38731161006f578063eced387314610a78578063edec5f2714610a8e578063f2c4ce1e14610aae578063f2fde38b14610ace57600080fd5b8063d5abeb01146109d9578063da3ef23f146109ef578063dc12abb514610a0f578063e985e9c514610a2f57600080fd5b8063c6682862116100dc578063c66828621461096e578063c87b56dd14610983578063cc9ff9c6146109a3578063d0eb26b0146109b957600080fd5b8063a22cb46514610903578063a475b5dd14610923578063b88d4fde14610938578063ba7d2c761461095857600080fd5b80637f00c7a6116101855780638fdcf942116101545780638fdcf942146108a557806395d89b41146108c5578063a0712d68146108da578063a18116f1146108ed57600080fd5b80637f00c7a614610832578063831e60de1461085257806383a076be146108675780638da5cb5b1461088757600080fd5b8063715018a6116101c1578063715018a6146107d1578063743c7f6b146107e65780637967a50a146108065780637effc0321461081c57600080fd5b80636f9fb98a1461078757806370a082311461079c578063714c5398146107bc57600080fd5b806323b872dd116102d757806344a0d68a1161026a5780635c975abb116102395780635c975abb1461070d5780636352211e14610727578063669736c0146107475780636f8b44b01461076757600080fd5b806344a0d68a1461068e5780634f6ccce7146106ae57806351830227146106ce57806355f804b3146106ed57600080fd5b80633ccfd60b116102a65780633ccfd60b1461061957806342842e0e1461062157806342f0ca0d14610641578063438b63001461066157600080fd5b806323b872dd1461058a5780632e09282e146105aa5780632f745c59146105c05780633af32abf146105e057600080fd5b80630a50716b1161034f57806318cae2691161031e57806318cae269146105315780631985cc651461055e5780631ee34fab146104d8578063239c70ae1461057457600080fd5b80630a50716b146104b85780630e54a883146104d857806313faede6146104f857806318160ddd1461051c57600080fd5b8063081812fc1161038b578063081812fc1461042b578063081c8c4414610463578063095ea7b3146104785780630a403f041461049857600080fd5b806301ffc9a7146103b257806302329a29146103e757806306fdde0314610409575b600080fd5b3480156103be57600080fd5b506103d26103cd366004612c60565b610aee565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b50610407610402366004612c45565b610b19565b005b34801561041557600080fd5b5061041e610b5f565b6040516103de9190612eb2565b34801561043757600080fd5b5061044b610446366004612ce3565b610bf1565b6040516001600160a01b0390911681526020016103de565b34801561046f57600080fd5b5061041e610c86565b34801561048457600080fd5b50610407610493366004612b67565b610d14565b3480156104a457600080fd5b506104076104b3366004612ce3565b610e2a565b3480156104c457600080fd5b506104076104d3366004612ce3565b610e59565b3480156104e457600080fd5b506104076104f3366004612ce3565b610e88565b34801561050457600080fd5b5061050e600f5481565b6040519081526020016103de565b34801561052857600080fd5b5060085461050e565b34801561053d57600080fd5b5061050e61054c366004612a37565b601b6020526000908152604090205481565b34801561056a57600080fd5b5061050e60165481565b34801561058057600080fd5b5061050e60135481565b34801561059657600080fd5b506104076105a5366004612a85565b610eb7565b3480156105b657600080fd5b5061050e60145481565b3480156105cc57600080fd5b5061050e6105db366004612b67565b610ee8565b3480156105ec57600080fd5b506103d26105fb366004612a37565b6001600160a01b03166000908152601a602052604090205460ff1690565b610407610f7e565b34801561062d57600080fd5b5061040761063c366004612a85565b611000565b34801561064d57600080fd5b5061040761065c366004612ce3565b61101b565b34801561066d57600080fd5b5061068161067c366004612a37565b61104a565b6040516103de9190612e6e565b34801561069a57600080fd5b506104076106a9366004612ce3565b6110ec565b3480156106ba57600080fd5b5061050e6106c9366004612ce3565b61111b565b3480156106da57600080fd5b506019546103d290610100900460ff1681565b3480156106f957600080fd5b50610407610708366004612c9a565b6111ae565b34801561071957600080fd5b506019546103d29060ff1681565b34801561073357600080fd5b5061044b610742366004612ce3565b6111ef565b34801561075357600080fd5b50610407610762366004612ce3565b611266565b34801561077357600080fd5b50610407610782366004612ce3565b611295565b34801561079357600080fd5b5061050e6112c4565b3480156107a857600080fd5b5061050e6107b7366004612a37565b6112f6565b3480156107c857600080fd5b5061041e61137d565b3480156107dd57600080fd5b506104076113b7565b3480156107f257600080fd5b50610407610801366004612ce3565b6113ed565b34801561081257600080fd5b5061050e60175481565b34801561082857600080fd5b5061050e60125481565b34801561083e57600080fd5b5061040761084d366004612ce3565b61141c565b34801561085e57600080fd5b5061050e61144b565b34801561087357600080fd5b50610407610882366004612cfc565b611465565b34801561089357600080fd5b50600a546001600160a01b031661044b565b3480156108b157600080fd5b506104076108c0366004612ce3565b6115a0565b3480156108d157600080fd5b5061041e6115cf565b6104076108e8366004612ce3565b6115de565b3480156108f957600080fd5b5061050e60115481565b34801561090f57600080fd5b5061040761091e366004612b3d565b6117f1565b34801561092f57600080fd5b506104076118b6565b34801561094457600080fd5b50610407610953366004612ac1565b6118f1565b34801561096457600080fd5b5061050e60155481565b34801561097a57600080fd5b5061041e611923565b34801561098f57600080fd5b5061041e61099e366004612ce3565b611930565b3480156109af57600080fd5b5061050e600e5481565b3480156109c557600080fd5b506104076109d4366004612ce3565b611ab4565b3480156109e557600080fd5b5061050e60105481565b3480156109fb57600080fd5b50610407610a0a366004612c9a565b611ae3565b348015610a1b57600080fd5b50610407610a2a366004612d1f565b611b20565b348015610a3b57600080fd5b506103d2610a4a366004612a52565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a8457600080fd5b5061050e60185481565b348015610a9a57600080fd5b50610407610aa9366004612b91565b611b55565b348015610aba57600080fd5b50610407610ac9366004612c9a565b611be7565b348015610ada57600080fd5b50610407610ae9366004612a37565b611c24565b60006001600160e01b0319821663780e9d6360e01b1480610b135750610b1382611cbc565b92915050565b600a546001600160a01b03163314610b4c5760405162461bcd60e51b8152600401610b4390612f5f565b60405180910390fd5b6019805460ff1916911515919091179055565b606060008054610b6e906130a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9a906130a4565b8015610be75780601f10610bbc57610100808354040283529160200191610be7565b820191906000526020600020905b815481529060010190602001808311610bca57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c6a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b43565b506000908152600460205260409020546001600160a01b031690565b600d8054610c93906130a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbf906130a4565b8015610d0c5780601f10610ce157610100808354040283529160200191610d0c565b820191906000526020600020905b815481529060010190602001808311610cef57829003601f168201915b505050505081565b6000610d1f826111ef565b9050806001600160a01b0316836001600160a01b03161415610d8d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b43565b336001600160a01b0382161480610da95750610da98133610a4a565b610e1b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b43565b610e258383611d0c565b505050565b600a546001600160a01b03163314610e545760405162461bcd60e51b8152600401610b4390612f5f565b601155565b600a546001600160a01b03163314610e835760405162461bcd60e51b8152600401610b4390612f5f565b601455565b600a546001600160a01b03163314610eb25760405162461bcd60e51b8152600401610b4390612f5f565b601855565b610ec13382611d7a565b610edd5760405162461bcd60e51b8152600401610b4390612f94565b610e25838383611e71565b6000610ef3836112f6565b8210610f555760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b43565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610fa85760405162461bcd60e51b8152600401610b4390612f5f565b604051600090339047908381818185875af1925050503d8060008114610fea576040519150601f19603f3d011682016040523d82523d6000602084013e610fef565b606091505b5050905080610ffd57600080fd5b50565b610e25838383604051806020016040528060008152506118f1565b600a546001600160a01b031633146110455760405162461bcd60e51b8152600401610b4390612f5f565b601755565b60606000611057836112f6565b905060008167ffffffffffffffff81111561107457611074613166565b60405190808252806020026020018201604052801561109d578160200160208202803683370190505b50905060005b828110156110e4576110b58582610ee8565b8282815181106110c7576110c7613150565b6020908102919091010152806110dc816130df565b9150506110a3565b509392505050565b600a546001600160a01b031633146111165760405162461bcd60e51b8152600401610b4390612f5f565b600f55565b600061112660085490565b82106111895760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b43565b6008828154811061119c5761119c613150565b90600052602060002001549050919050565b600a546001600160a01b031633146111d85760405162461bcd60e51b8152600401610b4390612f5f565b80516111eb90600b90602084019061291f565b5050565b6000818152600260205260408120546001600160a01b031680610b135760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b43565b600a546001600160a01b031633146112905760405162461bcd60e51b8152600401610b4390612f5f565b601255565b600a546001600160a01b031633146112bf5760405162461bcd60e51b8152600401610b4390612f5f565b601055565b600a546000906001600160a01b031633146112f15760405162461bcd60e51b8152600401610b4390612f5f565b504790565b60006001600160a01b0382166113615760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b43565b506001600160a01b031660009081526003602052604090205490565b600a546060906001600160a01b031633146113aa5760405162461bcd60e51b8152600401610b4390612f5f565b600b8054610b6e906130a4565b600a546001600160a01b031633146113e15760405162461bcd60e51b8152600401610b4390612f5f565b6113eb600061201c565b565b600a546001600160a01b031633146114175760405162461bcd60e51b8152600401610b4390612f5f565b601655565b600a546001600160a01b031633146114465760405162461bcd60e51b8152600401610b4390612f5f565b601355565b600060175442101561145e5750600e5490565b50600f5490565b600a546001600160a01b0316331461148f5760405162461bcd60e51b8152600401610b4390612f5f565b600082116114df5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b43565b60006114ea60085490565b6010549091506114fa8483613016565b11156115415760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b43565b60015b83811161159a576001600160a01b0383166000908152601b6020526040812080549161156f836130df565b909155506115889050836115838385613016565b61206e565b80611592816130df565b915050611544565b50505050565b600a546001600160a01b031633146115ca5760405162461bcd60e51b8152600401610b4390612f5f565b600e55565b606060018054610b6e906130a4565b60195460ff161561162a5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b43565b60165442101561167c5760405162461bcd60e51b815260206004820152601860248201527f53616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610b43565b80600081116116cd5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b43565b60006116d860085490565b336000908152601b6020526040902054601854919250904210611704576116ff8185612088565b61170f565b61170f818584612157565b60105461171c8584613016565b11156117635760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b43565b60015b8481116117ae57336000908152601b60205260408120805491611788836130df565b9091555061179c9050336115838386613016565b806117a6816130df565b915050611766565b506006841061159a57336000908152601b602052604081208054916117d2836130df565b9091555061159a9050336117e68685613016565b611583906001613016565b6001600160a01b03821633141561184a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b43565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146118e05760405162461bcd60e51b8152600401610b4390612f5f565b6019805461ff001916610100179055565b6118fb3383611d7a565b6119175760405162461bcd60e51b8152600401610b4390612f94565b61159a84848484612309565b600c8054610c93906130a4565b6000818152600260205260409020546060906001600160a01b03166119af5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b43565b601954610100900460ff16611a5057600d80546119cb906130a4565b80601f01602080910402602001604051908101604052809291908181526020018280546119f7906130a4565b8015611a445780601f10611a1957610100808354040283529160200191611a44565b820191906000526020600020905b815481529060010190602001808311611a2757829003601f168201915b50505050509050919050565b6000611a5a61233c565b90506000815111611a7a5760405180602001604052806000815250611aa8565b80611a848461234b565b600c604051602001611a9893929190612d6d565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b03163314611ade5760405162461bcd60e51b8152600401610b4390612f5f565b601555565b600a546001600160a01b03163314611b0d5760405162461bcd60e51b8152600401610b4390612f5f565b80516111eb90600c90602084019061291f565b600a546001600160a01b03163314611b4a5760405162461bcd60e51b8152600401610b4390612f5f565b601691909155601755565b600a546001600160a01b03163314611b7f5760405162461bcd60e51b8152600401610b4390612f5f565b60005b81518110156111eb576001601a6000848481518110611ba357611ba3613150565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611bdf816130df565b915050611b82565b600a546001600160a01b03163314611c115760405162461bcd60e51b8152600401610b4390612f5f565b80516111eb90600d90602084019061291f565b600a546001600160a01b03163314611c4e5760405162461bcd60e51b8152600401610b4390612f5f565b6001600160a01b038116611cb35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b43565b610ffd8161201c565b60006001600160e01b031982166380ac58cd60e01b1480611ced57506001600160e01b03198216635b5e139f60e01b145b80610b1357506301ffc9a760e01b6001600160e01b0319831614610b13565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d41826111ef565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611df35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b43565b6000611dfe836111ef565b9050806001600160a01b0316846001600160a01b03161480611e395750836001600160a01b0316611e2e84610bf1565b6001600160a01b0316145b80611e6957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e84826111ef565b6001600160a01b031614611eec5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b43565b6001600160a01b038216611f4e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b43565b611f59838383612449565b611f64600082611d0c565b6001600160a01b0383166000908152600360205260408120805460019290611f8d908490613061565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fbb908490613016565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111eb828260405180602001604052806000815250612501565b6015546120958284613016565b11156120e35760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610b43565b80600f546120f19190613042565b3410156121355760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b43565b6013548111156111eb5760405162461bcd60e51b8152600401610b4390612f17565b6000601754421061216c5750600f5480612172565b50600e54805b50336000908152601a602052604090205460ff166121d25760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b43565b6014546121df8486613016565b111561223e5760405162461bcd60e51b815260206004820152602860248201527f6d6178204e465420706572206164647265737320657863656564656420666f726044820152672070726573616c6560c01b6064820152608401610b43565b6122488382613042565b34101561228c5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b43565b6012548311156122ae5760405162461bcd60e51b8152600401610b4390612f17565b6011546122bb8484613016565b111561159a5760405162461bcd60e51b815260206004820152601e60248201527f6d6178204e46542070726573616c65206c696d697420657863656564656400006044820152606401610b43565b612314848484611e71565b61232084848484612534565b61159a5760405162461bcd60e51b8152600401610b4390612ec5565b6060600b8054610b6e906130a4565b60608161236f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123995780612383816130df565b91506123929050600a8361302e565b9150612373565b60008167ffffffffffffffff8111156123b4576123b4613166565b6040519080825280601f01601f1916602001820160405280156123de576020820181803683370190505b5090505b8415611e69576123f3600183613061565b9150612400600a866130fa565b61240b906030613016565b60f81b81838151811061242057612420613150565b60200101906001600160f81b031916908160001a905350612442600a8661302e565b94506123e2565b6001600160a01b0383166124a45761249f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6124c7565b816001600160a01b0316836001600160a01b0316146124c7576124c78382612641565b6001600160a01b0382166124de57610e25816126de565b826001600160a01b0316826001600160a01b031614610e2557610e25828261278d565b61250b83836127d1565b6125186000848484612534565b610e255760405162461bcd60e51b8152600401610b4390612ec5565b60006001600160a01b0384163b1561263657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612578903390899088908890600401612e31565b602060405180830381600087803b15801561259257600080fd5b505af19250505080156125c2575060408051601f3d908101601f191682019092526125bf91810190612c7d565b60015b61261c573d8080156125f0576040519150601f19603f3d011682016040523d82523d6000602084013e6125f5565b606091505b5080516126145760405162461bcd60e51b8152600401610b4390612ec5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e69565b506001949350505050565b6000600161264e846112f6565b6126589190613061565b6000838152600760205260409020549091508082146126ab576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126f090600190613061565b6000838152600960205260408120546008805493945090928490811061271857612718613150565b90600052602060002001549050806008838154811061273957612739613150565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806127715761277161313a565b6001900381819060005260206000200160009055905550505050565b6000612798836112f6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166128275760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b43565b6000818152600260205260409020546001600160a01b03161561288c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b43565b61289860008383612449565b6001600160a01b03821660009081526003602052604081208054600192906128c1908490613016565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461292b906130a4565b90600052602060002090601f01602090048101928261294d5760008555612993565b82601f1061296657805160ff1916838001178555612993565b82800160010185558215612993579182015b82811115612993578251825591602001919060010190612978565b5061299f9291506129a3565b5090565b5b8082111561299f57600081556001016129a4565b600067ffffffffffffffff8311156129d2576129d2613166565b6129e5601f8401601f1916602001612fe5565b90508281528383830111156129f957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611aaf57600080fd5b80358015158114611aaf57600080fd5b600060208284031215612a4957600080fd5b611aa882612a10565b60008060408385031215612a6557600080fd5b612a6e83612a10565b9150612a7c60208401612a10565b90509250929050565b600080600060608486031215612a9a57600080fd5b612aa384612a10565b9250612ab160208501612a10565b9150604084013590509250925092565b60008060008060808587031215612ad757600080fd5b612ae085612a10565b9350612aee60208601612a10565b925060408501359150606085013567ffffffffffffffff811115612b1157600080fd5b8501601f81018713612b2257600080fd5b612b31878235602084016129b8565b91505092959194509250565b60008060408385031215612b5057600080fd5b612b5983612a10565b9150612a7c60208401612a27565b60008060408385031215612b7a57600080fd5b612b8383612a10565b946020939093013593505050565b60006020808385031215612ba457600080fd5b823567ffffffffffffffff80821115612bbc57600080fd5b818501915085601f830112612bd057600080fd5b813581811115612be257612be2613166565b8060051b9150612bf3848301612fe5565b8181528481019084860184860187018a1015612c0e57600080fd5b600095505b83861015612c3857612c2481612a10565b835260019590950194918601918601612c13565b5098975050505050505050565b600060208284031215612c5757600080fd5b611aa882612a27565b600060208284031215612c7257600080fd5b8135611aa88161317c565b600060208284031215612c8f57600080fd5b8151611aa88161317c565b600060208284031215612cac57600080fd5b813567ffffffffffffffff811115612cc357600080fd5b8201601f81018413612cd457600080fd5b611e69848235602084016129b8565b600060208284031215612cf557600080fd5b5035919050565b60008060408385031215612d0f57600080fd5b82359150612a7c60208401612a10565b60008060408385031215612d3257600080fd5b50508035926020909101359150565b60008151808452612d59816020860160208601613078565b601f01601f19169290920160200192915050565b600084516020612d808285838a01613078565b855191840191612d938184848a01613078565b8554920191600090600181811c9080831680612db057607f831692505b858310811415612dce57634e487b7160e01b85526022600452602485fd5b808015612de25760018114612df357612e20565b60ff19851688528388019550612e20565b60008b81526020902060005b85811015612e185781548a820152908401908801612dff565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e6490830184612d41565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ea657835183529284019291840191600101612e8a565b50909695505050505050565b602081526000611aa86020830184612d41565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e20604082015267195e18d95959195960c21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561300e5761300e613166565b604052919050565b600082198211156130295761302961310e565b500190565b60008261303d5761303d613124565b500490565b600081600019048311821515161561305c5761305c61310e565b500290565b6000828210156130735761307361310e565b500390565b60005b8381101561309357818101518382015260200161307b565b8381111561159a5750506000910152565b600181811c908216806130b857607f821691505b602082108114156130d957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130f3576130f361310e565b5060010190565b60008261310957613109613124565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ffd57600080fdfea264697066735822122013f270a1d22340def9178b74d7ea8bfbd91878060b2ee77f8ae3603ddcbd137164736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000145269636820417065204d696e65727320436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000452414d4300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003868747470733a2f2f6d657461646174612e726963686170656d696e657273636c75622e636f6d2f6e6f742d72657665616c65642e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6d657461646174612e726963686170656d696e657273636c75622e636f6d2f00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103ad5760003560e01c80636f9fb98a116101e7578063a22cb4651161010d578063d5abeb01116100a0578063eced38731161006f578063eced387314610a78578063edec5f2714610a8e578063f2c4ce1e14610aae578063f2fde38b14610ace57600080fd5b8063d5abeb01146109d9578063da3ef23f146109ef578063dc12abb514610a0f578063e985e9c514610a2f57600080fd5b8063c6682862116100dc578063c66828621461096e578063c87b56dd14610983578063cc9ff9c6146109a3578063d0eb26b0146109b957600080fd5b8063a22cb46514610903578063a475b5dd14610923578063b88d4fde14610938578063ba7d2c761461095857600080fd5b80637f00c7a6116101855780638fdcf942116101545780638fdcf942146108a557806395d89b41146108c5578063a0712d68146108da578063a18116f1146108ed57600080fd5b80637f00c7a614610832578063831e60de1461085257806383a076be146108675780638da5cb5b1461088757600080fd5b8063715018a6116101c1578063715018a6146107d1578063743c7f6b146107e65780637967a50a146108065780637effc0321461081c57600080fd5b80636f9fb98a1461078757806370a082311461079c578063714c5398146107bc57600080fd5b806323b872dd116102d757806344a0d68a1161026a5780635c975abb116102395780635c975abb1461070d5780636352211e14610727578063669736c0146107475780636f8b44b01461076757600080fd5b806344a0d68a1461068e5780634f6ccce7146106ae57806351830227146106ce57806355f804b3146106ed57600080fd5b80633ccfd60b116102a65780633ccfd60b1461061957806342842e0e1461062157806342f0ca0d14610641578063438b63001461066157600080fd5b806323b872dd1461058a5780632e09282e146105aa5780632f745c59146105c05780633af32abf146105e057600080fd5b80630a50716b1161034f57806318cae2691161031e57806318cae269146105315780631985cc651461055e5780631ee34fab146104d8578063239c70ae1461057457600080fd5b80630a50716b146104b85780630e54a883146104d857806313faede6146104f857806318160ddd1461051c57600080fd5b8063081812fc1161038b578063081812fc1461042b578063081c8c4414610463578063095ea7b3146104785780630a403f041461049857600080fd5b806301ffc9a7146103b257806302329a29146103e757806306fdde0314610409575b600080fd5b3480156103be57600080fd5b506103d26103cd366004612c60565b610aee565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b50610407610402366004612c45565b610b19565b005b34801561041557600080fd5b5061041e610b5f565b6040516103de9190612eb2565b34801561043757600080fd5b5061044b610446366004612ce3565b610bf1565b6040516001600160a01b0390911681526020016103de565b34801561046f57600080fd5b5061041e610c86565b34801561048457600080fd5b50610407610493366004612b67565b610d14565b3480156104a457600080fd5b506104076104b3366004612ce3565b610e2a565b3480156104c457600080fd5b506104076104d3366004612ce3565b610e59565b3480156104e457600080fd5b506104076104f3366004612ce3565b610e88565b34801561050457600080fd5b5061050e600f5481565b6040519081526020016103de565b34801561052857600080fd5b5060085461050e565b34801561053d57600080fd5b5061050e61054c366004612a37565b601b6020526000908152604090205481565b34801561056a57600080fd5b5061050e60165481565b34801561058057600080fd5b5061050e60135481565b34801561059657600080fd5b506104076105a5366004612a85565b610eb7565b3480156105b657600080fd5b5061050e60145481565b3480156105cc57600080fd5b5061050e6105db366004612b67565b610ee8565b3480156105ec57600080fd5b506103d26105fb366004612a37565b6001600160a01b03166000908152601a602052604090205460ff1690565b610407610f7e565b34801561062d57600080fd5b5061040761063c366004612a85565b611000565b34801561064d57600080fd5b5061040761065c366004612ce3565b61101b565b34801561066d57600080fd5b5061068161067c366004612a37565b61104a565b6040516103de9190612e6e565b34801561069a57600080fd5b506104076106a9366004612ce3565b6110ec565b3480156106ba57600080fd5b5061050e6106c9366004612ce3565b61111b565b3480156106da57600080fd5b506019546103d290610100900460ff1681565b3480156106f957600080fd5b50610407610708366004612c9a565b6111ae565b34801561071957600080fd5b506019546103d29060ff1681565b34801561073357600080fd5b5061044b610742366004612ce3565b6111ef565b34801561075357600080fd5b50610407610762366004612ce3565b611266565b34801561077357600080fd5b50610407610782366004612ce3565b611295565b34801561079357600080fd5b5061050e6112c4565b3480156107a857600080fd5b5061050e6107b7366004612a37565b6112f6565b3480156107c857600080fd5b5061041e61137d565b3480156107dd57600080fd5b506104076113b7565b3480156107f257600080fd5b50610407610801366004612ce3565b6113ed565b34801561081257600080fd5b5061050e60175481565b34801561082857600080fd5b5061050e60125481565b34801561083e57600080fd5b5061040761084d366004612ce3565b61141c565b34801561085e57600080fd5b5061050e61144b565b34801561087357600080fd5b50610407610882366004612cfc565b611465565b34801561089357600080fd5b50600a546001600160a01b031661044b565b3480156108b157600080fd5b506104076108c0366004612ce3565b6115a0565b3480156108d157600080fd5b5061041e6115cf565b6104076108e8366004612ce3565b6115de565b3480156108f957600080fd5b5061050e60115481565b34801561090f57600080fd5b5061040761091e366004612b3d565b6117f1565b34801561092f57600080fd5b506104076118b6565b34801561094457600080fd5b50610407610953366004612ac1565b6118f1565b34801561096457600080fd5b5061050e60155481565b34801561097a57600080fd5b5061041e611923565b34801561098f57600080fd5b5061041e61099e366004612ce3565b611930565b3480156109af57600080fd5b5061050e600e5481565b3480156109c557600080fd5b506104076109d4366004612ce3565b611ab4565b3480156109e557600080fd5b5061050e60105481565b3480156109fb57600080fd5b50610407610a0a366004612c9a565b611ae3565b348015610a1b57600080fd5b50610407610a2a366004612d1f565b611b20565b348015610a3b57600080fd5b506103d2610a4a366004612a52565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a8457600080fd5b5061050e60185481565b348015610a9a57600080fd5b50610407610aa9366004612b91565b611b55565b348015610aba57600080fd5b50610407610ac9366004612c9a565b611be7565b348015610ada57600080fd5b50610407610ae9366004612a37565b611c24565b60006001600160e01b0319821663780e9d6360e01b1480610b135750610b1382611cbc565b92915050565b600a546001600160a01b03163314610b4c5760405162461bcd60e51b8152600401610b4390612f5f565b60405180910390fd5b6019805460ff1916911515919091179055565b606060008054610b6e906130a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9a906130a4565b8015610be75780601f10610bbc57610100808354040283529160200191610be7565b820191906000526020600020905b815481529060010190602001808311610bca57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c6a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b43565b506000908152600460205260409020546001600160a01b031690565b600d8054610c93906130a4565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbf906130a4565b8015610d0c5780601f10610ce157610100808354040283529160200191610d0c565b820191906000526020600020905b815481529060010190602001808311610cef57829003601f168201915b505050505081565b6000610d1f826111ef565b9050806001600160a01b0316836001600160a01b03161415610d8d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b43565b336001600160a01b0382161480610da95750610da98133610a4a565b610e1b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b43565b610e258383611d0c565b505050565b600a546001600160a01b03163314610e545760405162461bcd60e51b8152600401610b4390612f5f565b601155565b600a546001600160a01b03163314610e835760405162461bcd60e51b8152600401610b4390612f5f565b601455565b600a546001600160a01b03163314610eb25760405162461bcd60e51b8152600401610b4390612f5f565b601855565b610ec13382611d7a565b610edd5760405162461bcd60e51b8152600401610b4390612f94565b610e25838383611e71565b6000610ef3836112f6565b8210610f555760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b43565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610fa85760405162461bcd60e51b8152600401610b4390612f5f565b604051600090339047908381818185875af1925050503d8060008114610fea576040519150601f19603f3d011682016040523d82523d6000602084013e610fef565b606091505b5050905080610ffd57600080fd5b50565b610e25838383604051806020016040528060008152506118f1565b600a546001600160a01b031633146110455760405162461bcd60e51b8152600401610b4390612f5f565b601755565b60606000611057836112f6565b905060008167ffffffffffffffff81111561107457611074613166565b60405190808252806020026020018201604052801561109d578160200160208202803683370190505b50905060005b828110156110e4576110b58582610ee8565b8282815181106110c7576110c7613150565b6020908102919091010152806110dc816130df565b9150506110a3565b509392505050565b600a546001600160a01b031633146111165760405162461bcd60e51b8152600401610b4390612f5f565b600f55565b600061112660085490565b82106111895760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b43565b6008828154811061119c5761119c613150565b90600052602060002001549050919050565b600a546001600160a01b031633146111d85760405162461bcd60e51b8152600401610b4390612f5f565b80516111eb90600b90602084019061291f565b5050565b6000818152600260205260408120546001600160a01b031680610b135760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b43565b600a546001600160a01b031633146112905760405162461bcd60e51b8152600401610b4390612f5f565b601255565b600a546001600160a01b031633146112bf5760405162461bcd60e51b8152600401610b4390612f5f565b601055565b600a546000906001600160a01b031633146112f15760405162461bcd60e51b8152600401610b4390612f5f565b504790565b60006001600160a01b0382166113615760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b43565b506001600160a01b031660009081526003602052604090205490565b600a546060906001600160a01b031633146113aa5760405162461bcd60e51b8152600401610b4390612f5f565b600b8054610b6e906130a4565b600a546001600160a01b031633146113e15760405162461bcd60e51b8152600401610b4390612f5f565b6113eb600061201c565b565b600a546001600160a01b031633146114175760405162461bcd60e51b8152600401610b4390612f5f565b601655565b600a546001600160a01b031633146114465760405162461bcd60e51b8152600401610b4390612f5f565b601355565b600060175442101561145e5750600e5490565b50600f5490565b600a546001600160a01b0316331461148f5760405162461bcd60e51b8152600401610b4390612f5f565b600082116114df5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b43565b60006114ea60085490565b6010549091506114fa8483613016565b11156115415760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b43565b60015b83811161159a576001600160a01b0383166000908152601b6020526040812080549161156f836130df565b909155506115889050836115838385613016565b61206e565b80611592816130df565b915050611544565b50505050565b600a546001600160a01b031633146115ca5760405162461bcd60e51b8152600401610b4390612f5f565b600e55565b606060018054610b6e906130a4565b60195460ff161561162a5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b43565b60165442101561167c5760405162461bcd60e51b815260206004820152601860248201527f53616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610b43565b80600081116116cd5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b43565b60006116d860085490565b336000908152601b6020526040902054601854919250904210611704576116ff8185612088565b61170f565b61170f818584612157565b60105461171c8584613016565b11156117635760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b43565b60015b8481116117ae57336000908152601b60205260408120805491611788836130df565b9091555061179c9050336115838386613016565b806117a6816130df565b915050611766565b506006841061159a57336000908152601b602052604081208054916117d2836130df565b9091555061159a9050336117e68685613016565b611583906001613016565b6001600160a01b03821633141561184a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b43565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146118e05760405162461bcd60e51b8152600401610b4390612f5f565b6019805461ff001916610100179055565b6118fb3383611d7a565b6119175760405162461bcd60e51b8152600401610b4390612f94565b61159a84848484612309565b600c8054610c93906130a4565b6000818152600260205260409020546060906001600160a01b03166119af5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b43565b601954610100900460ff16611a5057600d80546119cb906130a4565b80601f01602080910402602001604051908101604052809291908181526020018280546119f7906130a4565b8015611a445780601f10611a1957610100808354040283529160200191611a44565b820191906000526020600020905b815481529060010190602001808311611a2757829003601f168201915b50505050509050919050565b6000611a5a61233c565b90506000815111611a7a5760405180602001604052806000815250611aa8565b80611a848461234b565b600c604051602001611a9893929190612d6d565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b03163314611ade5760405162461bcd60e51b8152600401610b4390612f5f565b601555565b600a546001600160a01b03163314611b0d5760405162461bcd60e51b8152600401610b4390612f5f565b80516111eb90600c90602084019061291f565b600a546001600160a01b03163314611b4a5760405162461bcd60e51b8152600401610b4390612f5f565b601691909155601755565b600a546001600160a01b03163314611b7f5760405162461bcd60e51b8152600401610b4390612f5f565b60005b81518110156111eb576001601a6000848481518110611ba357611ba3613150565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611bdf816130df565b915050611b82565b600a546001600160a01b03163314611c115760405162461bcd60e51b8152600401610b4390612f5f565b80516111eb90600d90602084019061291f565b600a546001600160a01b03163314611c4e5760405162461bcd60e51b8152600401610b4390612f5f565b6001600160a01b038116611cb35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b43565b610ffd8161201c565b60006001600160e01b031982166380ac58cd60e01b1480611ced57506001600160e01b03198216635b5e139f60e01b145b80610b1357506301ffc9a760e01b6001600160e01b0319831614610b13565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d41826111ef565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611df35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b43565b6000611dfe836111ef565b9050806001600160a01b0316846001600160a01b03161480611e395750836001600160a01b0316611e2e84610bf1565b6001600160a01b0316145b80611e6957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e84826111ef565b6001600160a01b031614611eec5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b43565b6001600160a01b038216611f4e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b43565b611f59838383612449565b611f64600082611d0c565b6001600160a01b0383166000908152600360205260408120805460019290611f8d908490613061565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fbb908490613016565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111eb828260405180602001604052806000815250612501565b6015546120958284613016565b11156120e35760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610b43565b80600f546120f19190613042565b3410156121355760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b43565b6013548111156111eb5760405162461bcd60e51b8152600401610b4390612f17565b6000601754421061216c5750600f5480612172565b50600e54805b50336000908152601a602052604090205460ff166121d25760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b43565b6014546121df8486613016565b111561223e5760405162461bcd60e51b815260206004820152602860248201527f6d6178204e465420706572206164647265737320657863656564656420666f726044820152672070726573616c6560c01b6064820152608401610b43565b6122488382613042565b34101561228c5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b43565b6012548311156122ae5760405162461bcd60e51b8152600401610b4390612f17565b6011546122bb8484613016565b111561159a5760405162461bcd60e51b815260206004820152601e60248201527f6d6178204e46542070726573616c65206c696d697420657863656564656400006044820152606401610b43565b612314848484611e71565b61232084848484612534565b61159a5760405162461bcd60e51b8152600401610b4390612ec5565b6060600b8054610b6e906130a4565b60608161236f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123995780612383816130df565b91506123929050600a8361302e565b9150612373565b60008167ffffffffffffffff8111156123b4576123b4613166565b6040519080825280601f01601f1916602001820160405280156123de576020820181803683370190505b5090505b8415611e69576123f3600183613061565b9150612400600a866130fa565b61240b906030613016565b60f81b81838151811061242057612420613150565b60200101906001600160f81b031916908160001a905350612442600a8661302e565b94506123e2565b6001600160a01b0383166124a45761249f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6124c7565b816001600160a01b0316836001600160a01b0316146124c7576124c78382612641565b6001600160a01b0382166124de57610e25816126de565b826001600160a01b0316826001600160a01b031614610e2557610e25828261278d565b61250b83836127d1565b6125186000848484612534565b610e255760405162461bcd60e51b8152600401610b4390612ec5565b60006001600160a01b0384163b1561263657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612578903390899088908890600401612e31565b602060405180830381600087803b15801561259257600080fd5b505af19250505080156125c2575060408051601f3d908101601f191682019092526125bf91810190612c7d565b60015b61261c573d8080156125f0576040519150601f19603f3d011682016040523d82523d6000602084013e6125f5565b606091505b5080516126145760405162461bcd60e51b8152600401610b4390612ec5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e69565b506001949350505050565b6000600161264e846112f6565b6126589190613061565b6000838152600760205260409020549091508082146126ab576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126f090600190613061565b6000838152600960205260408120546008805493945090928490811061271857612718613150565b90600052602060002001549050806008838154811061273957612739613150565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806127715761277161313a565b6001900381819060005260206000200160009055905550505050565b6000612798836112f6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166128275760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b43565b6000818152600260205260409020546001600160a01b03161561288c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b43565b61289860008383612449565b6001600160a01b03821660009081526003602052604081208054600192906128c1908490613016565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461292b906130a4565b90600052602060002090601f01602090048101928261294d5760008555612993565b82601f1061296657805160ff1916838001178555612993565b82800160010185558215612993579182015b82811115612993578251825591602001919060010190612978565b5061299f9291506129a3565b5090565b5b8082111561299f57600081556001016129a4565b600067ffffffffffffffff8311156129d2576129d2613166565b6129e5601f8401601f1916602001612fe5565b90508281528383830111156129f957600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611aaf57600080fd5b80358015158114611aaf57600080fd5b600060208284031215612a4957600080fd5b611aa882612a10565b60008060408385031215612a6557600080fd5b612a6e83612a10565b9150612a7c60208401612a10565b90509250929050565b600080600060608486031215612a9a57600080fd5b612aa384612a10565b9250612ab160208501612a10565b9150604084013590509250925092565b60008060008060808587031215612ad757600080fd5b612ae085612a10565b9350612aee60208601612a10565b925060408501359150606085013567ffffffffffffffff811115612b1157600080fd5b8501601f81018713612b2257600080fd5b612b31878235602084016129b8565b91505092959194509250565b60008060408385031215612b5057600080fd5b612b5983612a10565b9150612a7c60208401612a27565b60008060408385031215612b7a57600080fd5b612b8383612a10565b946020939093013593505050565b60006020808385031215612ba457600080fd5b823567ffffffffffffffff80821115612bbc57600080fd5b818501915085601f830112612bd057600080fd5b813581811115612be257612be2613166565b8060051b9150612bf3848301612fe5565b8181528481019084860184860187018a1015612c0e57600080fd5b600095505b83861015612c3857612c2481612a10565b835260019590950194918601918601612c13565b5098975050505050505050565b600060208284031215612c5757600080fd5b611aa882612a27565b600060208284031215612c7257600080fd5b8135611aa88161317c565b600060208284031215612c8f57600080fd5b8151611aa88161317c565b600060208284031215612cac57600080fd5b813567ffffffffffffffff811115612cc357600080fd5b8201601f81018413612cd457600080fd5b611e69848235602084016129b8565b600060208284031215612cf557600080fd5b5035919050565b60008060408385031215612d0f57600080fd5b82359150612a7c60208401612a10565b60008060408385031215612d3257600080fd5b50508035926020909101359150565b60008151808452612d59816020860160208601613078565b601f01601f19169290920160200192915050565b600084516020612d808285838a01613078565b855191840191612d938184848a01613078565b8554920191600090600181811c9080831680612db057607f831692505b858310811415612dce57634e487b7160e01b85526022600452602485fd5b808015612de25760018114612df357612e20565b60ff19851688528388019550612e20565b60008b81526020902060005b85811015612e185781548a820152908401908801612dff565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e6490830184612d41565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ea657835183529284019291840191600101612e8a565b50909695505050505050565b602081526000611aa86020830184612d41565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e20604082015267195e18d95959195960c21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561300e5761300e613166565b604052919050565b600082198211156130295761302961310e565b500190565b60008261303d5761303d613124565b500490565b600081600019048311821515161561305c5761305c61310e565b500290565b6000828210156130735761307361310e565b500390565b60005b8381101561309357818101518382015260200161307b565b8381111561159a5750506000910152565b600181811c908216806130b857607f821691505b602082108114156130d957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130f3576130f361310e565b5060010190565b60008261310957613109613124565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ffd57600080fdfea264697066735822122013f270a1d22340def9178b74d7ea8bfbd91878060b2ee77f8ae3603ddcbd137164736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000145269636820417065204d696e65727320436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000452414d4300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003868747470733a2f2f6d657461646174612e726963686170656d696e657273636c75622e636f6d2f6e6f742d72657665616c65642e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6d657461646174612e726963686170656d696e657273636c75622e636f6d2f00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Rich Ape Miners Club
Arg [1] : _symbol (string): RAMC
Arg [2] : _initNotRevealedUri (string): https://metadata.richapeminersclub.com/not-revealed.json
Arg [3] : __baseURI (string): https://metadata.richapeminersclub.com/

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [5] : 5269636820417065204d696e65727320436c7562000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 52414d4300000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000038
Arg [9] : 68747470733a2f2f6d657461646174612e726963686170656d696e657273636c
Arg [10] : 75622e636f6d2f6e6f742d72657665616c65642e6a736f6e0000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [12] : 68747470733a2f2f6d657461646174612e726963686170656d696e657273636c
Arg [13] : 75622e636f6d2f00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42030:8249:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33688:224;;;;;;;;;;-1:-1:-1;33688:224:0;;;;;:::i;:::-;;:::i;:::-;;;9062:14:1;;9055:22;9037:41;;9025:2;9010:18;33688:224:0;;;;;;;;48073:79;;;;;;;;;;-1:-1:-1;48073:79:0;;;;;:::i;:::-;;:::i;:::-;;20814:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22373:221::-;;;;;;;;;;-1:-1:-1;22373:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7723:32:1;;;7705:51;;7693:2;7678:18;22373:221:0;7559:203:1;42198:28:0;;;;;;;;;;;;;:::i;21896:411::-;;;;;;;;;;-1:-1:-1;21896:411:0;;;;;:::i;:::-;;:::i;49276:134::-;;;;;;;;;;-1:-1:-1;49276:134:0;;;;;:::i;:::-;;:::i;48164:124::-;;;;;;;;;;-1:-1:-1;48164:124:0;;;;;:::i;:::-;;:::i;49770:120::-;;;;;;;;;;-1:-1:-1;49770:120:0;;;;;:::i;:::-;;:::i;42280:33::-;;;;;;;;;;;;;;;;;;;20310:25:1;;;20298:2;20283:18;42280:33:0;20164:177:1;34328:113:0;;;;;;;;;;-1:-1:-1;34416:10:0;:17;34328:113;;43003:55;;;;;;;;;;-1:-1:-1;43003:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;42596:39;;;;;;;;;;;;;;;;42453:35;;;;;;;;;;;;;;;;23263:339;;;;;;;;;;-1:-1:-1;23263:339:0;;;;;:::i;:::-;;:::i;42495:47::-;;;;;;;;;;;;;;;;33996:256;;;;;;;;;;-1:-1:-1;33996:256:0;;;;;:::i;:::-;;:::i;46535:118::-;;;;;;;;;;-1:-1:-1;46535:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;46618:27:0;46594:4;46618:27;;;:20;:27;;;;;;;;;46535:118;50108:168;;;:::i;23673:185::-;;;;;;;;;;-1:-1:-1;23673:185:0;;;;;:::i;:::-;;:::i;49642:120::-;;;;;;;;;;-1:-1:-1;49642:120:0;;;;;:::i;:::-;;:::i;46661:358::-;;;;;;;;;;-1:-1:-1;46661:358:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48522:86::-;;;;;;;;;;-1:-1:-1;48522:86:0;;;;;:::i;:::-;;:::i;34518:233::-;;;;;;;;;;-1:-1:-1;34518:233:0;;;;;:::i;:::-;;:::i;42916:28::-;;;;;;;;;;-1:-1:-1;42916:28:0;;;;;;;;;;;48894:104;;;;;;;;;;-1:-1:-1;48894:104:0;;;;;:::i;:::-;;:::i;42883:26::-;;;;;;;;;;-1:-1:-1;42883:26:0;;;;;;;;20508:239;;;;;;;;;;-1:-1:-1;20508:239:0;;;;;:::i;:::-;;:::i;48620:136::-;;;;;;;;;;-1:-1:-1;48620:136:0;;;;;:::i;:::-;;:::i;49418:100::-;;;;;;;;;;-1:-1:-1;49418:100:0;;;;;:::i;:::-;;:::i;47845:117::-;;;;;;;;;;;;;:::i;20238:208::-;;;;;;;;;;-1:-1:-1;20238:208:0;;;;;:::i;:::-;;:::i;47736:101::-;;;;;;;;;;;;;:::i;41399:94::-;;;;;;;;;;;;;:::i;49526:108::-;;;;;;;;;;-1:-1:-1;49526:108:0;;;;;:::i;:::-;;:::i;42690:42::-;;;;;;;;;;;;;;;;42404;;;;;;;;;;;;;;;;48764:122;;;;;;;;;;-1:-1:-1;48764:122:0;;;;;:::i;:::-;;:::i;47503:201::-;;;;;;;;;;;;;:::i;46074:433::-;;;;;;;;;;-1:-1:-1;46074:433:0;;;;;:::i;:::-;;:::i;40748:87::-;;;;;;;;;;-1:-1:-1;40821:6:0;;-1:-1:-1;;;;;40821:6:0;40748:87;;48414:100;;;;;;;;;;-1:-1:-1;48414:100:0;;;;;:::i;:::-;;:::i;20983:104::-;;;;;;;;;;;;;:::i;45203:859::-;;;;;;:::i;:::-;;:::i;42359:38::-;;;;;;;;;;;;;;;;22666:295;;;;;;;;;;-1:-1:-1;22666:295:0;;;;;:::i;:::-;;:::i;47996:69::-;;;;;;;;;;;;;:::i;23929:328::-;;;;;;;;;;-1:-1:-1;23929:328:0;;;;;:::i;:::-;;:::i;42549:40::-;;;;;;;;;;;;;;;;42154:37;;;;;;;;;;;;;:::i;47027:468::-;;;;;;;;;;-1:-1:-1;47027:468:0;;;;;:::i;:::-;;:::i;42233:40::-;;;;;;;;;;;;;;;;48296:110;;;;;;;;;;-1:-1:-1;48296:110:0;;;;;:::i;:::-;;:::i;42320:32::-;;;;;;;;;;;;;;;;49006:128;;;;;;;;;;-1:-1:-1;49006:128:0;;;;;:::i;:::-;;:::i;43301:143::-;;;;;;;;;;-1:-1:-1;43301:143:0;;;;;:::i;:::-;;:::i;23032:164::-;;;;;;;;;;-1:-1:-1;23032:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23153:25:0;;;23129:4;23153:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23032:164;42784:42;;;;;;;;;;;;;;;;49898:202;;;;;;;;;;-1:-1:-1;49898:202:0;;;;;:::i;:::-;;:::i;49142:126::-;;;;;;;;;;-1:-1:-1;49142:126:0;;;;;:::i;:::-;;:::i;41648:192::-;;;;;;;;;;-1:-1:-1;41648:192:0;;;;;:::i;:::-;;:::i;33688:224::-;33790:4;-1:-1:-1;;;;;;33814:50:0;;-1:-1:-1;;;33814:50:0;;:90;;;33868:36;33892:11;33868:23;:36::i;:::-;33807:97;33688:224;-1:-1:-1;;33688:224:0:o;48073:79::-;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;;;;;;;;;48129:6:::1;:15:::0;;-1:-1:-1;;48129:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48073:79::o;20814:100::-;20868:13;20901:5;20894:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20814:100;:::o;22373:221::-;22449:7;25856:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25856:16:0;22469:73;;;;-1:-1:-1;;;22469:73:0;;15359:2:1;22469:73:0;;;15341:21:1;15398:2;15378:18;;;15371:30;15437:34;15417:18;;;15410:62;-1:-1:-1;;;15488:18:1;;;15481:42;15540:19;;22469:73:0;15157:408:1;22469:73:0;-1:-1:-1;22562:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22562:24:0;;22373:221::o;42198:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21896:411::-;21977:13;21993:23;22008:7;21993:14;:23::i;:::-;21977:39;;22041:5;-1:-1:-1;;;;;22035:11:0;:2;-1:-1:-1;;;;;22035:11:0;;;22027:57;;;;-1:-1:-1;;;22027:57:0;;17669:2:1;22027:57:0;;;17651:21:1;17708:2;17688:18;;;17681:30;17747:34;17727:18;;;17720:62;-1:-1:-1;;;17798:18:1;;;17791:31;17839:19;;22027:57:0;17467:397:1;22027:57:0;15655:10;-1:-1:-1;;;;;22119:21:0;;;;:62;;-1:-1:-1;22144:37:0;22161:5;15655:10;23032:164;:::i;22144:37::-;22097:168;;;;-1:-1:-1;;;22097:168:0;;13401:2:1;22097:168:0;;;13383:21:1;13440:2;13420:18;;;13413:30;13479:34;13459:18;;;13452:62;13550:26;13530:18;;;13523:54;13594:19;;22097:168:0;13199:420:1;22097:168:0;22278:21;22287:2;22291:7;22278:8;:21::i;:::-;21966:341;21896:411;;:::o;49276:134::-;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;49363:16:::1;:39:::0;49276:134::o;48164:124::-;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;48246:25:::1;:34:::0;48164:124::o;49770:120::-;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;49850:14:::1;:32:::0;49770:120::o;23263:339::-;23458:41;15655:10;23491:7;23458:18;:41::i;:::-;23450:103;;;;-1:-1:-1;;;23450:103:0;;;;;;;:::i;:::-;23566:28;23576:4;23582:2;23586:7;23566:9;:28::i;33996:256::-;34093:7;34129:23;34146:5;34129:16;:23::i;:::-;34121:5;:31;34113:87;;;;-1:-1:-1;;;34113:87:0;;9868:2:1;34113:87:0;;;9850:21:1;9907:2;9887:18;;;9880:30;9946:34;9926:18;;;9919:62;-1:-1:-1;;;9997:18:1;;;9990:41;10048:19;;34113:87:0;9666:407:1;34113:87:0;-1:-1:-1;;;;;;34218:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;33996:256::o;50108:168::-;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;50183:58:::1;::::0;50165:12:::1;::::0;50191:10:::1;::::0;50215:21:::1;::::0;50165:12;50183:58;50165:12;50183:58;50215:21;50191:10;50183:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50164:77;;;50260:7;50252:16;;;::::0;::::1;;50153:123;50108:168::o:0;23673:185::-;23811:39;23828:4;23834:2;23838:7;23811:39;;;;;;;;;;;;:16;:39::i;49642:120::-;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;49722:14:::1;:32:::0;49642:120::o;46661:358::-;46721:16;46750:23;46776:17;46786:6;46776:9;:17::i;:::-;46750:43;;46804:25;46846:15;46832:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46832:30:0;;46804:58;;46878:9;46873:113;46893:15;46889:1;:19;46873:113;;;46944:30;46964:6;46972:1;46944:19;:30::i;:::-;46930:8;46939:1;46930:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;46910:3;;;;:::i;:::-;;;;46873:113;;;-1:-1:-1;47003:8:0;46661:358;-1:-1:-1;;;46661:358:0:o;48522:86::-;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;48585:4:::1;:15:::0;48522:86::o;34518:233::-;34593:7;34629:30;34416:10;:17;;34328:113;34629:30;34621:5;:38;34613:95;;;;-1:-1:-1;;;34613:95:0;;19245:2:1;34613:95:0;;;19227:21:1;19284:2;19264:18;;;19257:30;19323:34;19303:18;;;19296:62;-1:-1:-1;;;19374:18:1;;;19367:42;19426:19;;34613:95:0;19043:408:1;34613:95:0;34726:10;34737:5;34726:17;;;;;;;;:::i;:::-;;;;;;;;;34719:24;;34518:233;;;:::o;48894:104::-;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;48969:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48894:104:::0;:::o;20508:239::-;20580:7;20616:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20616:16:0;20651:19;20643:73;;;;-1:-1:-1;;;20643:73:0;;14237:2:1;20643:73:0;;;14219:21:1;14276:2;14256:18;;;14249:30;14315:34;14295:18;;;14288:62;-1:-1:-1;;;14366:18:1;;;14359:39;14415:19;;20643:73:0;14035:405:1;48620:136:0;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;48708:20:::1;:40:::0;48620:136::o;49418:100::-;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;49488:9:::1;:22:::0;49418:100::o;47845:117::-;40821:6;;47906:7;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;-1:-1:-1;47933:21:0::1;47845:117:::0;:::o;20238:208::-;20310:7;-1:-1:-1;;;;;20338:19:0;;20330:74;;;;-1:-1:-1;;;20330:74:0;;13826:2:1;20330:74:0;;;13808:21:1;13865:2;13845:18;;;13838:30;13904:34;13884:18;;;13877:62;-1:-1:-1;;;13955:18:1;;;13948:40;14005:19;;20330:74:0;13624:406:1;20330:74:0;-1:-1:-1;;;;;;20422:16:0;;;;;:9;:16;;;;;;;20238:208::o;47736:101::-;40821:6;;47789:13;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;47822:7:::1;47815:14;;;;;:::i;41399:94::-:0;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;41464:21:::1;41482:1;41464:9;:21::i;:::-;41399:94::o:0;49526:108::-;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;49600:11:::1;:26:::0;49526:108::o;48764:122::-;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;48845:13:::1;:33:::0;48764:122::o;47503:201::-;47550:7;47592:14;;47574:15;:32;47570:127;;;-1:-1:-1;47630:11:0;;;47503:201::o;47570:127::-;-1:-1:-1;47681:4:0;;;47503:201::o;46074:433::-;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;46180:1:::1;46166:11;:15;46158:55;;;::::0;-1:-1:-1;;;46158:55:0;;20010:2:1;46158:55:0::1;::::0;::::1;19992:21:1::0;20049:2;20029:18;;;20022:30;20088:29;20068:18;;;20061:57;20135:18;;46158:55:0::1;19808:351:1::0;46158:55:0::1;46224:14;46241:13;34416:10:::0;:17;;34328:113;46241:13:::1;46297:9;::::0;46224:30;;-1:-1:-1;46273:20:0::1;46282:11:::0;46224:30;46273:20:::1;:::i;:::-;:33;;46265:68;;;::::0;-1:-1:-1;;;46265:68:0;;14647:2:1;46265:68:0::1;::::0;::::1;14629:21:1::0;14686:2;14666:18;;;14659:30;-1:-1:-1;;;14705:18:1;;;14698:52;14767:18;;46265:68:0::1;14445:346:1::0;46265:68:0::1;46363:1;46346:154;46371:11;46366:1;:16;46346:154;;-1:-1:-1::0;;;;;46404:33:0;::::1;;::::0;;;:20:::1;:33;::::0;;;;:35;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;46454:34:0::1;::::0;-1:-1:-1;46464:11:0;46477:10:::1;46486:1:::0;46477:6;:10:::1;:::i;:::-;46454:9;:34::i;:::-;46384:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46346:154;;;;46147:360;46074:433:::0;;:::o;48414:100::-;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;48484:11:::1;:22:::0;48414:100::o;20983:104::-;21039:13;21072:7;21065:14;;;;;:::i;45203:859::-;43623:6;;;;43622:7;43614:42;;;;-1:-1:-1;;;43614:42:0;;16133:2:1;43614:42:0;;;16115:21:1;16172:2;16152:18;;;16145:30;-1:-1:-1;;;16191:18:1;;;16184:52;16253:18;;43614:42:0;15931:346:1;43614:42:0;43744:11:::1;;43725:15;:30;;43717:67;;;::::0;-1:-1:-1;;;43717:67:0;;9515:2:1;43717:67:0::1;::::0;::::1;9497:21:1::0;9554:2;9534:18;;;9527:30;9593:26;9573:18;;;9566:54;9637:18;;43717:67:0::1;9313:348:1::0;43717:67:0::1;45293:11:::2;43893:1;43879:11;:15;43871:55;;;::::0;-1:-1:-1;;;43871:55:0;;20010:2:1;43871:55:0::2;::::0;::::2;19992:21:1::0;20049:2;20029:18;;;20022:30;20088:29;20068:18;;;20061:57;20135:18;;43871:55:0::2;19808:351:1::0;43871:55:0::2;45317:14:::3;45334:13;34416:10:::0;:17;;34328:113;45334:13:::3;45406:10;45358:24;45385:32:::0;;;:20:::3;:32;::::0;;;;;45525:14:::3;::::0;45317:30;;-1:-1:-1;45385:32:0;45507:15:::3;:32;:147;;45602:52;45624:16;45642:11;45602:21;:52::i;:::-;45507:147;;;45542:57;45561:16;45579:11;45592:6;45542:18;:57::i;:::-;45699:9;::::0;45675:20:::3;45684:11:::0;45675:6;:20:::3;:::i;:::-;:33;;45667:68;;;::::0;-1:-1:-1;;;45667:68:0;;14647:2:1;45667:68:0::3;::::0;::::3;14629:21:1::0;14686:2;14666:18;;;14659:30;-1:-1:-1;;;14705:18:1;;;14698:52;14767:18;;45667:68:0::3;14445:346:1::0;45667:68:0::3;45765:1;45748:152;45773:11;45768:1;:16;45748:152;;45827:10;45806:32;::::0;;;:20:::3;:32;::::0;;;;:34;;;::::3;::::0;::::3;:::i;:::-;::::0;;;-1:-1:-1;45855:33:0::3;::::0;-1:-1:-1;45865:10:0::3;45877;45886:1:::0;45877:6;:10:::3;:::i;45855:33::-;45786:3:::0;::::3;::::0;::::3;:::i;:::-;;;;45748:152;;;;45929:1;45914:11;:16;45910:145;;45968:10;45947:32;::::0;;;:20:::3;:32;::::0;;;;:34;;;::::3;::::0;::::3;:::i;:::-;::::0;;;-1:-1:-1;45996:47:0::3;::::0;-1:-1:-1;46006:10:0::3;46018:20;46027:11:::0;46018:6;:20:::3;:::i;:::-;:24;::::0;46041:1:::3;46018:24;:::i;22666:295::-:0;-1:-1:-1;;;;;22769:24:0;;15655:10;22769:24;;22761:62;;;;-1:-1:-1;;;22761:62:0;;12225:2:1;22761:62:0;;;12207:21:1;12264:2;12244:18;;;12237:30;12303:27;12283:18;;;12276:55;12348:18;;22761:62:0;12023:349:1;22761:62:0;15655:10;22836:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;22836:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;22836:53:0;;;;;;;;;;22905:48;;9037:41:1;;;22836:42:0;;15655:10;22905:48;;9010:18:1;22905:48:0;;;;;;;22666:295;;:::o;47996:69::-;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;48042:8:::1;:15:::0;;-1:-1:-1;;48042:15:0::1;;;::::0;;47996:69::o;23929:328::-;24104:41;15655:10;24137:7;24104:18;:41::i;:::-;24096:103;;;;-1:-1:-1;;;24096:103:0;;;;;;;:::i;:::-;24210:39;24224:4;24230:2;24234:7;24243:5;24210:13;:39::i;42154:37::-;;;;;;;:::i;47027:468::-;25832:4;25856:16;;;:7;:16;;;;;;47100:13;;-1:-1:-1;;;;;25856:16:0;47126:76;;;;-1:-1:-1;;;47126:76:0;;17253:2:1;47126:76:0;;;17235:21:1;17292:2;17272:18;;;17265:30;17331:34;17311:18;;;17304:62;-1:-1:-1;;;17382:18:1;;;17375:45;17437:19;;47126:76:0;17051:411:1;47126:76:0;47220:8;;;;;;;47215:273;;47252:14;47245:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47027:468;;;:::o;47215:273::-;47299:28;47330:10;:8;:10::i;:::-;47299:41;;47393:1;47368:14;47362:28;:32;:114;;;;;;;;;;;;;;;;;47421:14;47436:18;:7;:16;:18::i;:::-;47456:13;47404:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47362:114;47355:121;47027:468;-1:-1:-1;;;47027:468:0:o;47215:273::-;47027:468;;;:::o;48296:110::-;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;48371:18:::1;:27:::0;48296:110::o;49006:128::-;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;49093:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;43301:143::-:0;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;43384:11:::1;:20:::0;;;;43415:14:::1;:21:::0;43301:143::o;49898:202::-;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;49983:9:::1;49978:115;50002:9;:16;49998:1;:20;49978:115;;;50077:4;50040:20;:34;50061:9;50071:1;50061:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50040:34:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50040:34:0;:41;;-1:-1:-1;;50040:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50020:3;::::1;::::0;::::1;:::i;:::-;;;;49978:115;;49142:126:::0;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;49228:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;41648:192::-:0;40821:6;;-1:-1:-1;;;;;40821:6:0;15655:10;40968:23;40960:68;;;;-1:-1:-1;;;40960:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41737:22:0;::::1;41729:73;;;::::0;-1:-1:-1;;;41729:73:0;;10699:2:1;41729:73:0::1;::::0;::::1;10681:21:1::0;10738:2;10718:18;;;10711:30;10777:34;10757:18;;;10750:62;-1:-1:-1;;;10828:18:1;;;10821:36;10874:19;;41729:73:0::1;10497:402:1::0;41729:73:0::1;41813:19;41823:8;41813:9;:19::i;19869:305::-:0;19971:4;-1:-1:-1;;;;;;20008:40:0;;-1:-1:-1;;;20008:40:0;;:105;;-1:-1:-1;;;;;;;20065:48:0;;-1:-1:-1;;;20065:48:0;20008:105;:158;;;-1:-1:-1;;;;;;;;;;18585:40:0;;;20130:36;18476:157;29749:174;29824:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29824:29:0;-1:-1:-1;;;;;29824:29:0;;;;;;;;:24;;29878:23;29824:24;29878:14;:23::i;:::-;-1:-1:-1;;;;;29869:46:0;;;;;;;;;;;29749:174;;:::o;26061:348::-;26154:4;25856:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25856:16:0;26171:73;;;;-1:-1:-1;;;26171:73:0;;12988:2:1;26171:73:0;;;12970:21:1;13027:2;13007:18;;;13000:30;13066:34;13046:18;;;13039:62;-1:-1:-1;;;13117:18:1;;;13110:42;13169:19;;26171:73:0;12786:408:1;26171:73:0;26255:13;26271:23;26286:7;26271:14;:23::i;:::-;26255:39;;26324:5;-1:-1:-1;;;;;26313:16:0;:7;-1:-1:-1;;;;;26313:16:0;;:51;;;;26357:7;-1:-1:-1;;;;;26333:31:0;:20;26345:7;26333:11;:20::i;:::-;-1:-1:-1;;;;;26333:31:0;;26313:51;:87;;;-1:-1:-1;;;;;;23153:25:0;;;23129:4;23153:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26368:32;26305:96;26061:348;-1:-1:-1;;;;26061:348:0:o;29053:578::-;29212:4;-1:-1:-1;;;;;29185:31:0;:23;29200:7;29185:14;:23::i;:::-;-1:-1:-1;;;;;29185:31:0;;29177:85;;;;-1:-1:-1;;;29177:85:0;;16484:2:1;29177:85:0;;;16466:21:1;16523:2;16503:18;;;16496:30;16562:34;16542:18;;;16535:62;-1:-1:-1;;;16613:18:1;;;16606:39;16662:19;;29177:85:0;16282:405:1;29177:85:0;-1:-1:-1;;;;;29281:16:0;;29273:65;;;;-1:-1:-1;;;29273:65:0;;11820:2:1;29273:65:0;;;11802:21:1;11859:2;11839:18;;;11832:30;11898:34;11878:18;;;11871:62;-1:-1:-1;;;11949:18:1;;;11942:34;11993:19;;29273:65:0;11618:400:1;29273:65:0;29351:39;29372:4;29378:2;29382:7;29351:20;:39::i;:::-;29455:29;29472:1;29476:7;29455:8;:29::i;:::-;-1:-1:-1;;;;;29497:15:0;;;;;;:9;:15;;;;;:20;;29516:1;;29497:15;:20;;29516:1;;29497:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29528:13:0;;;;;;:9;:13;;;;;:18;;29545:1;;29528:13;:18;;29545:1;;29528:18;:::i;:::-;;;;-1:-1:-1;;29557:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29557:21:0;-1:-1:-1;;;;;29557:21:0;;;;;;;;;29596:27;;29557:16;;29596:27;;;;;;;29053:578;;;:::o;41848:173::-;41923:6;;;-1:-1:-1;;;;;41940:17:0;;;-1:-1:-1;;;;;;41940:17:0;;;;;;;41973:40;;41923:6;;;41940:17;41923:6;;41973:40;;41904:16;;41973:40;41893:128;41848:173;:::o;26751:110::-;26827:26;26837:2;26841:7;26827:26;;;;;;;;;;;;:9;:26::i;44819:364::-;44961:18;;44926:31;44946:11;44926:17;:31;:::i;:::-;:53;;44918:93;;;;-1:-1:-1;;;44918:93:0;;11463:2:1;44918:93:0;;;11445:21:1;11502:2;11482:18;;;11475:30;11541;11521:18;;;11514:58;11589:18;;44918:93:0;11261:352:1;44918:93:0;45050:11;45043:4;;:18;;;;:::i;:::-;45030:9;:31;;45022:62;;;;-1:-1:-1;;;45022:62:0;;18071:2:1;45022:62:0;;;18053:21:1;18110:2;18090:18;;;18083:30;-1:-1:-1;;;18129:18:1;;;18122:48;18187:18;;45022:62:0;17869:342:1;45022:62:0;45118:13;;45103:11;:28;;45095:80;;;;-1:-1:-1;;;45095:80:0;;;;;;;:::i;44087:724::-;44204:18;44255:14;;44237:15;:32;:79;;-1:-1:-1;44312:4:0;;;44237:79;;;-1:-1:-1;44285:11:0;;;44237:79;-1:-1:-1;44353:10:0;46594:4;46618:27;;;:20;:27;;;;;;;;44331:61;;;;-1:-1:-1;;;44331:61:0;;19658:2:1;44331:61:0;;;19640:21:1;19697:2;19677:18;;;19670:30;19736:25;19716:18;;;19709:53;19779:18;;44331:61:0;19456:347:1;44331:61:0;44450:25;;44415:31;44435:11;44415:17;:31;:::i;:::-;:60;;44407:113;;;;-1:-1:-1;;;44407:113:0;;18418:2:1;44407:113:0;;;18400:21:1;18457:2;18437:18;;;18430:30;18496:34;18476:18;;;18469:62;-1:-1:-1;;;18547:18:1;;;18540:38;18595:19;;44407:113:0;18216:404:1;44407:113:0;44556:24;44569:11;44556:10;:24;:::i;:::-;44543:9;:37;;44535:68;;;;-1:-1:-1;;;44535:68:0;;18071:2:1;44535:68:0;;;18053:21:1;18110:2;18090:18;;;18083:30;-1:-1:-1;;;18129:18:1;;;18122:48;18187:18;;44535:68:0;17869:342:1;44535:68:0;44641:20;;44626:11;:35;;44618:87;;;;-1:-1:-1;;;44618:87:0;;;;;;;:::i;:::-;44753:16;;44728:21;44738:11;44728:7;:21;:::i;:::-;:41;;44720:83;;;;-1:-1:-1;;;44720:83:0;;16894:2:1;44720:83:0;;;16876:21:1;16933:2;16913:18;;;16906:30;16972:32;16952:18;;;16945:60;17022:18;;44720:83:0;16692:354:1;25139:315:0;25296:28;25306:4;25312:2;25316:7;25296:9;:28::i;:::-;25343:48;25366:4;25372:2;25376:7;25385:5;25343:22;:48::i;:::-;25335:111;;;;-1:-1:-1;;;25335:111:0;;;;;;;:::i;43971:108::-;44031:13;44064:7;44057:14;;;;;:::i;16017:723::-;16073:13;16294:10;16290:53;;-1:-1:-1;;16321:10:0;;;;;;;;;;;;-1:-1:-1;;;16321:10:0;;;;;16017:723::o;16290:53::-;16368:5;16353:12;16409:78;16416:9;;16409:78;;16442:8;;;;:::i;:::-;;-1:-1:-1;16465:10:0;;-1:-1:-1;16473:2:0;16465:10;;:::i;:::-;;;16409:78;;;16497:19;16529:6;16519:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16519:17:0;;16497:39;;16547:154;16554:10;;16547:154;;16581:11;16591:1;16581:11;;:::i;:::-;;-1:-1:-1;16650:10:0;16658:2;16650:5;:10;:::i;:::-;16637:24;;:2;:24;:::i;:::-;16624:39;;16607:6;16614;16607:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;16607:56:0;;;;;;;;-1:-1:-1;16678:11:0;16687:2;16678:11;;:::i;:::-;;;16547:154;;35364:589;-1:-1:-1;;;;;35570:18:0;;35566:187;;35605:40;35637:7;36780:10;:17;;36753:24;;;;:15;:24;;;;;:44;;;36808:24;;;;;;;;;;;;36676:164;35605:40;35566:187;;;35675:2;-1:-1:-1;;;;;35667:10:0;:4;-1:-1:-1;;;;;35667:10:0;;35663:90;;35694:47;35727:4;35733:7;35694:32;:47::i;:::-;-1:-1:-1;;;;;35767:16:0;;35763:183;;35800:45;35837:7;35800:36;:45::i;35763:183::-;35873:4;-1:-1:-1;;;;;35867:10:0;:2;-1:-1:-1;;;;;35867:10:0;;35863:83;;35894:40;35922:2;35926:7;35894:27;:40::i;27088:321::-;27218:18;27224:2;27228:7;27218:5;:18::i;:::-;27269:54;27300:1;27304:2;27308:7;27317:5;27269:22;:54::i;:::-;27247:154;;;;-1:-1:-1;;;27247:154:0;;;;;;;:::i;30488:799::-;30643:4;-1:-1:-1;;;;;30664:13:0;;8025:20;8073:8;30660:620;;30700:72;;-1:-1:-1;;;30700:72:0;;-1:-1:-1;;;;;30700:36:0;;;;;:72;;15655:10;;30751:4;;30757:7;;30766:5;;30700:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30700:72:0;;;;;;;;-1:-1:-1;;30700:72:0;;;;;;;;;;;;:::i;:::-;;;30696:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30942:13:0;;30938:272;;30985:60;;-1:-1:-1;;;30985:60:0;;;;;;;:::i;30938:272::-;31160:6;31154:13;31145:6;31141:2;31137:15;31130:38;30696:529;-1:-1:-1;;;;;;30823:51:0;-1:-1:-1;;;30823:51:0;;-1:-1:-1;30816:58:0;;30660:620;-1:-1:-1;31264:4:0;30488:799;;;;;;:::o;37467:988::-;37733:22;37783:1;37758:22;37775:4;37758:16;:22::i;:::-;:26;;;;:::i;:::-;37795:18;37816:26;;;:17;:26;;;;;;37733:51;;-1:-1:-1;37949:28:0;;;37945:328;;-1:-1:-1;;;;;38016:18:0;;37994:19;38016:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38067:30;;;;;;:44;;;38184:30;;:17;:30;;;;;:43;;;37945:328;-1:-1:-1;38369:26:0;;;;:17;:26;;;;;;;;38362:33;;;-1:-1:-1;;;;;38413:18:0;;;;;:12;:18;;;;;:34;;;;;;;38406:41;37467:988::o;38750:1079::-;39028:10;:17;39003:22;;39028:21;;39048:1;;39028:21;:::i;:::-;39060:18;39081:24;;;:15;:24;;;;;;39454:10;:26;;39003:46;;-1:-1:-1;39081:24:0;;39003:46;;39454:26;;;;;;:::i;:::-;;;;;;;;;39432:48;;39518:11;39493:10;39504;39493:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;39598:28;;;:15;:28;;;;;;;:41;;;39770:24;;;;;39763:31;39805:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;38821:1008;;;38750:1079;:::o;36254:221::-;36339:14;36356:20;36373:2;36356:16;:20::i;:::-;-1:-1:-1;;;;;36387:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36432:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36254:221:0:o;27745:382::-;-1:-1:-1;;;;;27825:16:0;;27817:61;;;;-1:-1:-1;;;27817:61:0;;14998:2:1;27817:61:0;;;14980:21:1;;;15017:18;;;15010:30;15076:34;15056:18;;;15049:62;15128:18;;27817:61:0;14796:356:1;27817:61:0;25832:4;25856:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25856:16:0;:30;27889:58;;;;-1:-1:-1;;;27889:58:0;;11106:2:1;27889:58:0;;;11088:21:1;11145:2;11125:18;;;11118:30;11184;11164:18;;;11157:58;11232:18;;27889:58:0;10904:352:1;27889:58:0;27960:45;27989:1;27993:2;27997:7;27960:20;:45::i;:::-;-1:-1:-1;;;;;28018:13:0;;;;;;:9;:13;;;;;:18;;28035:1;;28018:13;:18;;28035:1;;28018:18;:::i;:::-;;;;-1:-1:-1;;28047:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28047:21:0;-1:-1:-1;;;;;28047:21:0;;;;;;;;28086:33;;28047:16;;;28086:33;;28047:16;;28086:33;27745:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;603:160;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;4614:18;4606:6;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:254::-;5111:6;5119;5172:2;5160:9;5151:7;5147:23;5143:32;5140:52;;;5188:1;5185;5178:12;5140:52;5224:9;5211:23;5201:33;;5253:38;5287:2;5276:9;5272:18;5253:38;:::i;5302:248::-;5370:6;5378;5431:2;5419:9;5410:7;5406:23;5402:32;5399:52;;;5447:1;5444;5437:12;5399:52;-1:-1:-1;;5470:23:1;;;5540:2;5525:18;;;5512:32;;-1:-1:-1;5302:248:1:o;5555:257::-;5596:3;5634:5;5628:12;5661:6;5656:3;5649:19;5677:63;5733:6;5726:4;5721:3;5717:14;5710:4;5703:5;5699:16;5677:63;:::i;:::-;5794:2;5773:15;-1:-1:-1;;5769:29:1;5760:39;;;;5801:4;5756:50;;5555:257;-1:-1:-1;;5555:257:1:o;5817:1527::-;6041:3;6079:6;6073:13;6105:4;6118:51;6162:6;6157:3;6152:2;6144:6;6140:15;6118:51;:::i;:::-;6232:13;;6191:16;;;;6254:55;6232:13;6191:16;6276:15;;;6254:55;:::i;:::-;6398:13;;6331:20;;;6371:1;;6458;6480:18;;;;6533;;;;6560:93;;6638:4;6628:8;6624:19;6612:31;;6560:93;6701:2;6691:8;6688:16;6668:18;6665:40;6662:167;;;-1:-1:-1;;;6728:33:1;;6784:4;6781:1;6774:15;6814:4;6735:3;6802:17;6662:167;6845:18;6872:110;;;;6996:1;6991:328;;;;6838:481;;6872:110;-1:-1:-1;;6907:24:1;;6893:39;;6952:20;;;;-1:-1:-1;6872:110:1;;6991:328;20699:1;20692:14;;;20736:4;20723:18;;7086:1;7100:169;7114:8;7111:1;7108:15;7100:169;;;7196:14;;7181:13;;;7174:37;7239:16;;;;7131:10;;7100:169;;;7104:3;;7300:8;7293:5;7289:20;7282:27;;6838:481;-1:-1:-1;7335:3:1;;5817:1527;-1:-1:-1;;;;;;;;;;;5817:1527:1:o;7767:488::-;-1:-1:-1;;;;;8036:15:1;;;8018:34;;8088:15;;8083:2;8068:18;;8061:43;8135:2;8120:18;;8113:34;;;8183:3;8178:2;8163:18;;8156:31;;;7961:4;;8204:45;;8229:19;;8221:6;8204:45;:::i;:::-;8196:53;7767:488;-1:-1:-1;;;;;;7767:488:1:o;8260:632::-;8431:2;8483:21;;;8553:13;;8456:18;;;8575:22;;;8402:4;;8431:2;8654:15;;;;8628:2;8613:18;;;8402:4;8697:169;8711:6;8708:1;8705:13;8697:169;;;8772:13;;8760:26;;8841:15;;;;8806:12;;;;8733:1;8726:9;8697:169;;;-1:-1:-1;8883:3:1;;8260:632;-1:-1:-1;;;;;;8260:632:1:o;9089:219::-;9238:2;9227:9;9220:21;9201:4;9258:44;9298:2;9287:9;9283:18;9275:6;9258:44;:::i;10078:414::-;10280:2;10262:21;;;10319:2;10299:18;;;10292:30;10358:34;10353:2;10338:18;;10331:62;-1:-1:-1;;;10424:2:1;10409:18;;10402:48;10482:3;10467:19;;10078:414::o;12377:404::-;12579:2;12561:21;;;12618:2;12598:18;;;12591:30;12657:34;12652:2;12637:18;;12630:62;-1:-1:-1;;;12723:2:1;12708:18;;12701:38;12771:3;12756:19;;12377:404::o;15570:356::-;15772:2;15754:21;;;15791:18;;;15784:30;15850:34;15845:2;15830:18;;15823:62;15917:2;15902:18;;15570:356::o;18625:413::-;18827:2;18809:21;;;18866:2;18846:18;;;18839:30;18905:34;18900:2;18885:18;;18878:62;-1:-1:-1;;;18971:2:1;18956:18;;18949:47;19028:3;19013:19;;18625:413::o;20346:275::-;20417:2;20411:9;20482:2;20463:13;;-1:-1:-1;;20459:27:1;20447:40;;20517:18;20502:34;;20538:22;;;20499:62;20496:88;;;20564:18;;:::i;:::-;20600:2;20593:22;20346:275;;-1:-1:-1;20346:275:1:o;20752:128::-;20792:3;20823:1;20819:6;20816:1;20813:13;20810:39;;;20829:18;;:::i;:::-;-1:-1:-1;20865:9:1;;20752:128::o;20885:120::-;20925:1;20951;20941:35;;20956:18;;:::i;:::-;-1:-1:-1;20990:9:1;;20885:120::o;21010:168::-;21050:7;21116:1;21112;21108:6;21104:14;21101:1;21098:21;21093:1;21086:9;21079:17;21075:45;21072:71;;;21123:18;;:::i;:::-;-1:-1:-1;21163:9:1;;21010:168::o;21183:125::-;21223:4;21251:1;21248;21245:8;21242:34;;;21256:18;;:::i;:::-;-1:-1:-1;21293:9:1;;21183:125::o;21313:258::-;21385:1;21395:113;21409:6;21406:1;21403:13;21395:113;;;21485:11;;;21479:18;21466:11;;;21459:39;21431:2;21424:10;21395:113;;;21526:6;21523:1;21520:13;21517:48;;;-1:-1:-1;;21561:1:1;21543:16;;21536:27;21313:258::o;21576:380::-;21655:1;21651:12;;;;21698;;;21719:61;;21773:4;21765:6;21761:17;21751:27;;21719:61;21826:2;21818:6;21815:14;21795:18;21792:38;21789:161;;;21872:10;21867:3;21863:20;21860:1;21853:31;21907:4;21904:1;21897:15;21935:4;21932:1;21925:15;21789:161;;21576:380;;;:::o;21961:135::-;22000:3;-1:-1:-1;;22021:17:1;;22018:43;;;22041:18;;:::i;:::-;-1:-1:-1;22088:1:1;22077:13;;21961:135::o;22101:112::-;22133:1;22159;22149:35;;22164:18;;:::i;:::-;-1:-1:-1;22198:9:1;;22101:112::o;22218:127::-;22279:10;22274:3;22270:20;22267:1;22260:31;22310:4;22307:1;22300:15;22334:4;22331:1;22324:15;22350:127;22411:10;22406:3;22402:20;22399:1;22392:31;22442:4;22439:1;22432:15;22466:4;22463:1;22456:15;22482:127;22543:10;22538:3;22534:20;22531:1;22524:31;22574:4;22571:1;22564:15;22598:4;22595:1;22588:15;22614:127;22675:10;22670:3;22666:20;22663:1;22656:31;22706:4;22703:1;22696:15;22730:4;22727:1;22720:15;22746:127;22807:10;22802:3;22798:20;22795:1;22788:31;22838:4;22835:1;22828:15;22862:4;22859:1;22852:15;22878:131;-1:-1:-1;;;;;;22952:32:1;;22942:43;;22932:71;;22999:1;22996;22989:12

Swarm Source

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