ETH Price: $3,106.02 (+1.00%)
Gas: 7 Gwei

Token

PlutoHipHopDept_V2 (PHHD_V2)
 

Overview

Max Total Supply

288 PHHD_V2

Holders

193

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PHHD_V2
0xcce7b0255f646DF6B2586C8e3a24409298b7E81e
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:
PlutoHipHopDept_V2

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-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);
}

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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



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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        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 {}
}

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



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

interface PlutoHipHopDept {
  function ownerOf(uint256 tokenId) external view returns (address owner);
  function totalSupply() external view returns (uint256);
  function transferFrom(address from, address to, uint256 tokenId) external;
  function isApprovedForAll(address owner, address operator) external view returns (bool);
}

pragma solidity >=0.7.0 <0.9.0;

contract PlutoHipHopDept_V2 is ERC721Enumerable, Ownable {
  using Strings for uint256;

  PlutoHipHopDept private PHHD = PlutoHipHopDept(0xf1Fc4124729F01230b6a77D1Bb603f6Cd31Be060);
  string public baseURI;
  string public baseExtension = ".json";
  uint256 public maxSupply = 3333;
  uint256 public maxSaleNum = 3267;
  uint256 public v2Index = PHHD.totalSupply();
  uint256 public presalePrice = 0.06 ether;
  uint256 public publicPrice = 0.08 ether;
  uint256 public presaleLimit = 1;
  uint256 public txLimit = 10;

  bool public paused = false;
  bool public migrateIsActive = true;
  bool public onlyWhitelisted = false;
  bool public publicSaleIsActive = false;
  mapping(address => uint256) public addressWhitelistMintedMap;
  mapping(address => bool) public whitelistedAddresses;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
  }

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

  function teamReserve(uint256 startNum, uint256 endNum) public onlyOwner {
    require(startNum <= endNum, "error index");
    require(startNum > maxSaleNum, "error startNum");
    require(endNum <= maxSupply, "max NFT limit exceeded");
    for (uint256 i = startNum; i <= endNum; i++) {
        _safeMint(_msgSender(), i);
    }
  }

  function migrate(uint256 tokenId) public {
    require(!paused, "The contract is paused");
    require(migrateIsActive, "Migrate is not active");
    require(PHHD.ownerOf(tokenId) == msg.sender, "Not the holder");
    require(tokenId <= PHHD.totalSupply(), "Invalid ID");
    require(totalSupply() + 1 <= maxSupply, "Exceed max supply");
    require(PHHD.isApprovedForAll(msg.sender, address(this)), "Need approve for this contract");
    require(!_exists(tokenId), "Token is migrated");
        
    PHHD.transferFrom(msg.sender, address(this), tokenId);
    _safeMint(_msgSender(), tokenId);
  }

  function presaleMint(uint256 mintAmount) public payable {
    require(!paused, "The contract is paused");
    require(onlyWhitelisted, "Not presale mint");
    require(v2Index + mintAmount <= maxSaleNum, "Max NFT limit exceeded");
    require(mintAmount <= presaleLimit, "Exceed presale limit");
    require(msg.value >= presalePrice * mintAmount, "Insufficient funds");
    require(isWhitelisted(msg.sender), "User is not whitelisted");

    uint256 ownerMintedCount = addressWhitelistMintedMap[msg.sender];
    require(ownerMintedCount + mintAmount <= presaleLimit, "Max NFT per address exceeded");
    
    for (uint256 i = 1; i <= mintAmount; i++) {
        addressWhitelistMintedMap[msg.sender]++;
        uint256 mintIndex = v2Index + 1;
        _safeMint(msg.sender, mintIndex);
        v2Index++;
    }
  }

  function publicMint(uint256 mintAmount) public payable {
    require(!paused, "The contract is paused");
    require(!onlyWhitelisted, "Not public sale");
    require(publicSaleIsActive, "Not public sale");
    require(mintAmount > 0, "Need to mint at least 1 NFT");
    require(mintAmount <= txLimit, "Max mint amount per session exceeded");
    require(v2Index + mintAmount <= maxSaleNum, "Max NFT limit exceeded");
    require(msg.value >= publicPrice * mintAmount, "Insufficient funds");

    for (uint256 i = 1; i <= mintAmount; i++) {
        uint256 mintIndex = v2Index + 1;
        _safeMint(msg.sender, mintIndex);
        v2Index++;
    }
  }

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

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

  //only owner
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

  function flipMigrateState() public onlyOwner {
    migrateIsActive = !migrateIsActive;
  }

  function flipPublicSaleState() public onlyOwner {
    publicSaleIsActive = !publicSaleIsActive;
  }

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

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

  function setPresaleLimit(uint256 _newLimit) public onlyOwner {
    presaleLimit= _newLimit;
  }

  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }

  function addWhitelistUsers(address[] calldata users) public onlyOwner {
    for(uint256 i = 0; i < users.length; i++ ) {
      whitelistedAddresses[users[i]] = true;
    }
  }

  function removeWhitelistUsers(address[] calldata users) public onlyOwner {
    for(uint256 i = 0; i < users.length; i++ ) {
      whitelistedAddresses[users[i]] = false;
    }
  }

  function withdraw() public onlyOwner returns (bool success) {
    (success,) = payable(owner()).call{value: address(this).balance}("");
    return success;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","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":"users","type":"address[]"}],"name":"addWhitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressWhitelistMintedMap","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMigrateState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSaleNum","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":"tokenId","type":"uint256"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"migrateIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"presaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"removeWhitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_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":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setPresaleLimit","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":"startNum","type":"uint256"},{"internalType":"uint256","name":"endNum","type":"uint256"}],"name":"teamReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"v2Index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

600b80546001600160a01b03191673f1fc4124729f01230b6a77d1bb603f6cd31be06017905560c06040526005608081905264173539b7b760d91b60a09081526200004e91600d919062000268565b50610d05600e55610cc3600f55600b60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015620000af573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000d591906200030e565b60105566d529ae9e86000060115567011c37937e0800006012556001601355600a6014556015805463ffffffff19166101001790553480156200011757600080fd5b5060405162003651380380620036518339810160408190526200013a91620003f5565b8251839083906200015390600090602085019062000268565b5080516200016990600190602084019062000268565b50505062000186620001806200019a60201b60201c565b6200019e565b6200019181620001f0565b505050620004c3565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200024f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200026490600c90602084019062000268565b5050565b828054620002769062000486565b90600052602060002090601f0160209004810192826200029a5760008555620002e5565b82601f10620002b557805160ff1916838001178555620002e5565b82800160010185558215620002e5579182015b82811115620002e5578251825591602001919060010190620002c8565b50620002f3929150620002f7565b5090565b5b80821115620002f35760008155600101620002f8565b6000602082840312156200032157600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200035057600080fd5b81516001600160401b03808211156200036d576200036d62000328565b604051601f8301601f19908116603f0116810190828211818310171562000398576200039862000328565b81604052838152602092508683858801011115620003b557600080fd5b600091505b83821015620003d95785820183015181830184015290820190620003ba565b83821115620003eb5760008385830101525b9695505050505050565b6000806000606084860312156200040b57600080fd5b83516001600160401b03808211156200042357600080fd5b62000431878388016200033e565b945060208601519150808211156200044857600080fd5b62000456878388016200033e565b935060408601519150808211156200046d57600080fd5b506200047c868287016200033e565b9150509250925092565b600181811c908216806200049b57607f821691505b60208210811415620004bd57634e487b7160e01b600052602260045260246000fd5b50919050565b61317e80620004d36000396000f3fe6080604052600436106102c85760003560e01c80636675445d11610175578063a22cb465116100dc578063c9b298f111610095578063d7b76ee61161006f578063d7b76ee614610842578063da3ef23f1461086f578063e985e9c51461088f578063f2fde38b146108d857600080fd5b8063c9b298f1146107fa578063d315cf891461080d578063d5abeb011461082c57600080fd5b8063a22cb4651461074f578063a945bf801461076f578063b2e1311114610785578063b88d4fde146107a5578063c6682862146107c5578063c87b56dd146107da57600080fd5b80637fd255f11161012e5780637fd255f1146106b15780638da5cb5b146106d157806395a4f76d146106ef57806395d89b41146107055780639c70b5121461071a578063a10866ef1461073a57600080fd5b80636675445d1461061c578063686b2812146106315780636c0360eb146106515780636caae8321461066657806370a082311461067c578063715018a61461069c57600080fd5b80632f745c5911610234578063454b0608116101ed578063525b3fe3116101c7578063525b3fe3146105ac57806355f804b3146105c25780635c975abb146105e25780636352211e146105fc57600080fd5b8063454b06081461054c578063481525951461056c5780634f6ccce71461058c57600080fd5b80632f745c59146104715780633af32abf146104915780633c952764146104ca5780633ccfd60b146104ea57806342842e0e146104ff578063438b63001461051f57600080fd5b8063095ea7b311610286578063095ea7b3146103d25780630fcf2e75146103f257806318160ddd1461041357806318815a671461042857806323b872dd1461043e5780632db115441461045e57600080fd5b80620e7fa8146102cd57806301ffc9a7146102f657806302329a291461032657806306c933d81461034857806306fdde0314610378578063081812fc1461039a575b600080fd5b3480156102d957600080fd5b506102e360115481565b6040519081526020015b60405180910390f35b34801561030257600080fd5b506103166103113660046129a9565b6108f8565b60405190151581526020016102ed565b34801561033257600080fd5b506103466103413660046129d4565b610923565b005b34801561035457600080fd5b50610316610363366004612a06565b60176020526000908152604090205460ff1681565b34801561038457600080fd5b5061038d610969565b6040516102ed9190612a7b565b3480156103a657600080fd5b506103ba6103b5366004612a8e565b6109fb565b6040516001600160a01b0390911681526020016102ed565b3480156103de57600080fd5b506103466103ed366004612aa7565b610a90565b3480156103fe57600080fd5b50601554610316906301000000900460ff1681565b34801561041f57600080fd5b506008546102e3565b34801561043457600080fd5b506102e360105481565b34801561044a57600080fd5b50610346610459366004612ad3565b610ba6565b61034661046c366004612a8e565b610bd7565b34801561047d57600080fd5b506102e361048c366004612aa7565b610e3c565b34801561049d57600080fd5b506103166104ac366004612a06565b6001600160a01b031660009081526017602052604090205460ff1690565b3480156104d657600080fd5b506103466104e53660046129d4565b610ed2565b3480156104f657600080fd5b50610316610f18565b34801561050b57600080fd5b5061034661051a366004612ad3565b610f9f565b34801561052b57600080fd5b5061053f61053a366004612a06565b610fba565b6040516102ed9190612b14565b34801561055857600080fd5b50610346610567366004612a8e565b61105c565b34801561057857600080fd5b50610346610587366004612b58565b61141c565b34801561059857600080fd5b506102e36105a7366004612a8e565b611535565b3480156105b857600080fd5b506102e360135481565b3480156105ce57600080fd5b506103466105dd366004612c06565b6115c8565b3480156105ee57600080fd5b506015546103169060ff1681565b34801561060857600080fd5b506103ba610617366004612a8e565b611605565b34801561062857600080fd5b5061034661167c565b34801561063d57600080fd5b5061034661064c366004612c4f565b6116c3565b34801561065d57600080fd5b5061038d61175f565b34801561067257600080fd5b506102e360145481565b34801561068857600080fd5b506102e3610697366004612a06565b6117ed565b3480156106a857600080fd5b50610346611874565b3480156106bd57600080fd5b506103466106cc366004612a8e565b6118aa565b3480156106dd57600080fd5b50600a546001600160a01b03166103ba565b3480156106fb57600080fd5b506102e3600f5481565b34801561071157600080fd5b5061038d6118d9565b34801561072657600080fd5b506015546103169062010000900460ff1681565b34801561074657600080fd5b506103466118e8565b34801561075b57600080fd5b5061034661076a366004612cc4565b611933565b34801561077b57600080fd5b506102e360125481565b34801561079157600080fd5b506103466107a0366004612c4f565b6119f8565b3480156107b157600080fd5b506103466107c0366004612cfd565b611a94565b3480156107d157600080fd5b5061038d611acc565b3480156107e657600080fd5b5061038d6107f5366004612a8e565b611ad9565b610346610808366004612a8e565b611bb7565b34801561081957600080fd5b5060155461031690610100900460ff1681565b34801561083857600080fd5b506102e3600e5481565b34801561084e57600080fd5b506102e361085d366004612a06565b60166020526000908152604090205481565b34801561087b57600080fd5b5061034661088a366004612c06565b611e52565b34801561089b57600080fd5b506103166108aa366004612d7d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108e457600080fd5b506103466108f3366004612a06565b611e8f565b60006001600160e01b0319821663780e9d6360e01b148061091d575061091d82611f27565b92915050565b600a546001600160a01b031633146109565760405162461bcd60e51b815260040161094d90612dab565b60405180910390fd5b6015805460ff1916911515919091179055565b60606000805461097890612de0565b80601f01602080910402602001604051908101604052809291908181526020018280546109a490612de0565b80156109f15780601f106109c6576101008083540402835291602001916109f1565b820191906000526020600020905b8154815290600101906020018083116109d457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a745760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161094d565b506000908152600460205260409020546001600160a01b031690565b6000610a9b82611605565b9050806001600160a01b0316836001600160a01b03161415610b095760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161094d565b336001600160a01b0382161480610b255750610b2581336108aa565b610b975760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161094d565b610ba18383611f77565b505050565b610bb03382611fe5565b610bcc5760405162461bcd60e51b815260040161094d90612e1b565b610ba18383836120dc565b60155460ff1615610bfa5760405162461bcd60e51b815260040161094d90612e6c565b60155462010000900460ff1615610c455760405162461bcd60e51b815260206004820152600f60248201526e4e6f74207075626c69632073616c6560881b604482015260640161094d565b6015546301000000900460ff16610c905760405162461bcd60e51b815260206004820152600f60248201526e4e6f74207075626c69632073616c6560881b604482015260640161094d565b60008111610ce05760405162461bcd60e51b815260206004820152601b60248201527f4e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161094d565b601454811115610d3e5760405162461bcd60e51b8152602060048201526024808201527f4d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161094d565b600f5481601054610d4f9190612eb2565b1115610d965760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161094d565b80601254610da49190612eca565b341015610de85760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161094d565b60015b818111610e385760006010546001610e039190612eb2565b9050610e0f3382612287565b60108054906000610e1f83612ee9565b9190505550508080610e3090612ee9565b915050610deb565b5050565b6000610e47836117ed565b8210610ea95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161094d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610efc5760405162461bcd60e51b815260040161094d90612dab565b60158054911515620100000262ff000019909216919091179055565b600a546000906001600160a01b03163314610f455760405162461bcd60e51b815260040161094d90612dab565b600a546040516001600160a01b03909116904790600081818185875af1925050503d8060008114610f92576040519150601f19603f3d011682016040523d82523d6000602084013e610f97565b606091505b509091505090565b610ba183838360405180602001604052806000815250611a94565b60606000610fc7836117ed565b905060008167ffffffffffffffff811115610fe457610fe4612b7a565b60405190808252806020026020018201604052801561100d578160200160208202803683370190505b50905060005b82811015611054576110258582610e3c565b82828151811061103757611037612f04565b60209081029190910101528061104c81612ee9565b915050611013565b509392505050565b60155460ff161561107f5760405162461bcd60e51b815260040161094d90612e6c565b601554610100900460ff166110ce5760405162461bcd60e51b81526020600482015260156024820152744d696772617465206973206e6f742061637469766560581b604482015260640161094d565b600b546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa158015611117573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113b9190612f1a565b6001600160a01b0316146111825760405162461bcd60e51b815260206004820152600e60248201526d2737ba103a3432903437b63232b960911b604482015260640161094d565b600b60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f99190612f37565b8111156112355760405162461bcd60e51b815260206004820152600a602482015269125b9d985b1a5908125160b21b604482015260640161094d565b600e54600854611246906001612eb2565b11156112885760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b604482015260640161094d565b600b5460405163e985e9c560e01b81523360048201523060248201526001600160a01b039091169063e985e9c590604401602060405180830381865afa1580156112d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fa9190612f50565b6113465760405162461bcd60e51b815260206004820152601e60248201527f4e65656420617070726f766520666f72207468697320636f6e74726163740000604482015260640161094d565b6000818152600260205260409020546001600160a01b03161561139f5760405162461bcd60e51b8152602060048201526011602482015270151bdad95b881a5cc81b5a59dc985d1959607a1b604482015260640161094d565b600b546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd90606401600060405180830381600087803b1580156113f157600080fd5b505af1158015611405573d6000803e3d6000fd5b505050506114196114133390565b82612287565b50565b600a546001600160a01b031633146114465760405162461bcd60e51b815260040161094d90612dab565b808211156114845760405162461bcd60e51b815260206004820152600b60248201526a0cae4e4dee440d2dcc8caf60ab1b604482015260640161094d565b600f5482116114c65760405162461bcd60e51b815260206004820152600e60248201526d6572726f722073746172744e756d60901b604482015260640161094d565b600e548111156115115760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161094d565b815b818111610ba15761152333611413565b8061152d81612ee9565b915050611513565b600061154060085490565b82106115a35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161094d565b600882815481106115b6576115b6612f04565b90600052602060002001549050919050565b600a546001600160a01b031633146115f25760405162461bcd60e51b815260040161094d90612dab565b8051610e3890600c9060208401906128fa565b6000818152600260205260408120546001600160a01b03168061091d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161094d565b600a546001600160a01b031633146116a65760405162461bcd60e51b815260040161094d90612dab565b6015805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146116ed5760405162461bcd60e51b815260040161094d90612dab565b60005b81811015610ba15760016017600085858581811061171057611710612f04565b90506020020160208101906117259190612a06565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061175781612ee9565b9150506116f0565b600c805461176c90612de0565b80601f016020809104026020016040519081016040528092919081815260200182805461179890612de0565b80156117e55780601f106117ba576101008083540402835291602001916117e5565b820191906000526020600020905b8154815290600101906020018083116117c857829003601f168201915b505050505081565b60006001600160a01b0382166118585760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161094d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461189e5760405162461bcd60e51b815260040161094d90612dab565b6118a860006122a1565b565b600a546001600160a01b031633146118d45760405162461bcd60e51b815260040161094d90612dab565b601355565b60606001805461097890612de0565b600a546001600160a01b031633146119125760405162461bcd60e51b815260040161094d90612dab565b6015805463ff00000019811663010000009182900460ff1615909102179055565b6001600160a01b03821633141561198c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161094d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a225760405162461bcd60e51b815260040161094d90612dab565b60005b81811015610ba157600060176000858585818110611a4557611a45612f04565b9050602002016020810190611a5a9190612a06565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611a8c81612ee9565b915050611a25565b611a9e3383611fe5565b611aba5760405162461bcd60e51b815260040161094d90612e1b565b611ac6848484846122f3565b50505050565b600d805461176c90612de0565b6000818152600260205260409020546060906001600160a01b0316611b585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161094d565b6000611b62612326565b90506000815111611b825760405180602001604052806000815250611bb0565b80611b8c84612335565b600d604051602001611ba093929190612f6d565b6040516020818303038152906040525b9392505050565b60155460ff1615611bda5760405162461bcd60e51b815260040161094d90612e6c565b60155462010000900460ff16611c255760405162461bcd60e51b815260206004820152601060248201526f139bdd081c1c995cd85b19481b5a5b9d60821b604482015260640161094d565b600f5481601054611c369190612eb2565b1115611c7d5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161094d565b601354811115611cc65760405162461bcd60e51b8152602060048201526014602482015273115e18d95959081c1c995cd85b19481b1a5b5a5d60621b604482015260640161094d565b80601154611cd49190612eca565b341015611d185760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161094d565b3360009081526017602052604090205460ff16611d775760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161094d565b33600090815260166020526040902054601354611d948383612eb2565b1115611de25760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161094d565b60015b828111610ba157336000908152601660205260408120805491611e0783612ee9565b919050555060006010546001611e1d9190612eb2565b9050611e293382612287565b60108054906000611e3983612ee9565b9190505550508080611e4a90612ee9565b915050611de5565b600a546001600160a01b03163314611e7c5760405162461bcd60e51b815260040161094d90612dab565b8051610e3890600d9060208401906128fa565b600a546001600160a01b03163314611eb95760405162461bcd60e51b815260040161094d90612dab565b6001600160a01b038116611f1e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094d565b611419816122a1565b60006001600160e01b031982166380ac58cd60e01b1480611f5857506001600160e01b03198216635b5e139f60e01b145b8061091d57506301ffc9a760e01b6001600160e01b031983161461091d565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fac82611605565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661205e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161094d565b600061206983611605565b9050806001600160a01b0316846001600160a01b031614806120a45750836001600160a01b0316612099846109fb565b6001600160a01b0316145b806120d457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166120ef82611605565b6001600160a01b0316146121575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161094d565b6001600160a01b0382166121b95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161094d565b6121c4838383612433565b6121cf600082611f77565b6001600160a01b03831660009081526003602052604081208054600192906121f8908490613031565b90915550506001600160a01b0382166000908152600360205260408120805460019290612226908490612eb2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e388282604051806020016040528060008152506124eb565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6122fe8484846120dc565b61230a8484848461251e565b611ac65760405162461bcd60e51b815260040161094d90613048565b6060600c805461097890612de0565b6060816123595750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612383578061236d81612ee9565b915061237c9050600a836130b0565b915061235d565b60008167ffffffffffffffff81111561239e5761239e612b7a565b6040519080825280601f01601f1916602001820160405280156123c8576020820181803683370190505b5090505b84156120d4576123dd600183613031565b91506123ea600a866130c4565b6123f5906030612eb2565b60f81b81838151811061240a5761240a612f04565b60200101906001600160f81b031916908160001a90535061242c600a866130b0565b94506123cc565b6001600160a01b03831661248e5761248981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6124b1565b816001600160a01b0316836001600160a01b0316146124b1576124b1838261261c565b6001600160a01b0382166124c857610ba1816126b9565b826001600160a01b0316826001600160a01b031614610ba157610ba18282612768565b6124f583836127ac565b612502600084848461251e565b610ba15760405162461bcd60e51b815260040161094d90613048565b60006001600160a01b0384163b1561261157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125629033908990889088906004016130d8565b6020604051808303816000875af192505050801561259d575060408051601f3d908101601f1916820190925261259a91810190613115565b60015b6125f7573d8080156125cb576040519150601f19603f3d011682016040523d82523d6000602084013e6125d0565b606091505b5080516125ef5760405162461bcd60e51b815260040161094d90613048565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120d4565b506001949350505050565b60006001612629846117ed565b6126339190613031565b600083815260076020526040902054909150808214612686576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126cb90600190613031565b600083815260096020526040812054600880549394509092849081106126f3576126f3612f04565b90600052602060002001549050806008838154811061271457612714612f04565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061274c5761274c613132565b6001900381819060005260206000200160009055905550505050565b6000612773836117ed565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166128025760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161094d565b6000818152600260205260409020546001600160a01b0316156128675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161094d565b61287360008383612433565b6001600160a01b038216600090815260036020526040812080546001929061289c908490612eb2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461290690612de0565b90600052602060002090601f016020900481019282612928576000855561296e565b82601f1061294157805160ff191683800117855561296e565b8280016001018555821561296e579182015b8281111561296e578251825591602001919060010190612953565b5061297a92915061297e565b5090565b5b8082111561297a576000815560010161297f565b6001600160e01b03198116811461141957600080fd5b6000602082840312156129bb57600080fd5b8135611bb081612993565b801515811461141957600080fd5b6000602082840312156129e657600080fd5b8135611bb0816129c6565b6001600160a01b038116811461141957600080fd5b600060208284031215612a1857600080fd5b8135611bb0816129f1565b60005b83811015612a3e578181015183820152602001612a26565b83811115611ac65750506000910152565b60008151808452612a67816020860160208601612a23565b601f01601f19169290920160200192915050565b602081526000611bb06020830184612a4f565b600060208284031215612aa057600080fd5b5035919050565b60008060408385031215612aba57600080fd5b8235612ac5816129f1565b946020939093013593505050565b600080600060608486031215612ae857600080fd5b8335612af3816129f1565b92506020840135612b03816129f1565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015612b4c57835183529284019291840191600101612b30565b50909695505050505050565b60008060408385031215612b6b57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612bab57612bab612b7a565b604051601f8501601f19908116603f01168101908282118183101715612bd357612bd3612b7a565b81604052809350858152868686011115612bec57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612c1857600080fd5b813567ffffffffffffffff811115612c2f57600080fd5b8201601f81018413612c4057600080fd5b6120d484823560208401612b90565b60008060208385031215612c6257600080fd5b823567ffffffffffffffff80821115612c7a57600080fd5b818501915085601f830112612c8e57600080fd5b813581811115612c9d57600080fd5b8660208260051b8501011115612cb257600080fd5b60209290920196919550909350505050565b60008060408385031215612cd757600080fd5b8235612ce2816129f1565b91506020830135612cf2816129c6565b809150509250929050565b60008060008060808587031215612d1357600080fd5b8435612d1e816129f1565b93506020850135612d2e816129f1565b925060408501359150606085013567ffffffffffffffff811115612d5157600080fd5b8501601f81018713612d6257600080fd5b612d7187823560208401612b90565b91505092959194509250565b60008060408385031215612d9057600080fd5b8235612d9b816129f1565b91506020830135612cf2816129f1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612df457607f821691505b60208210811415612e1557634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260169082015275151a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612ec557612ec5612e9c565b500190565b6000816000190483118215151615612ee457612ee4612e9c565b500290565b6000600019821415612efd57612efd612e9c565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612f2c57600080fd5b8151611bb0816129f1565b600060208284031215612f4957600080fd5b5051919050565b600060208284031215612f6257600080fd5b8151611bb0816129c6565b600084516020612f808285838a01612a23565b855191840191612f938184848a01612a23565b8554920191600090600181811c9080831680612fb057607f831692505b858310811415612fce57634e487b7160e01b85526022600452602485fd5b808015612fe25760018114612ff357613020565b60ff19851688528388019550613020565b60008b81526020902060005b858110156130185781548a820152908401908801612fff565b505083880195505b50939b9a5050505050505050505050565b60008282101561304357613043612e9c565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826130bf576130bf61309a565b500490565b6000826130d3576130d361309a565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061310b90830184612a4f565b9695505050505050565b60006020828403121561312757600080fd5b8151611bb081612993565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220dd0f7ec67ede6b1f69f55289dc665720ecc3bc0e4086c443131884413b3f910764736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012506c75746f486970486f70446570745f563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007504848445f563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d65384d6f7375697a585442757a75445a664c775879397466565a6d4d5042524d784b596136427162565375712f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102c85760003560e01c80636675445d11610175578063a22cb465116100dc578063c9b298f111610095578063d7b76ee61161006f578063d7b76ee614610842578063da3ef23f1461086f578063e985e9c51461088f578063f2fde38b146108d857600080fd5b8063c9b298f1146107fa578063d315cf891461080d578063d5abeb011461082c57600080fd5b8063a22cb4651461074f578063a945bf801461076f578063b2e1311114610785578063b88d4fde146107a5578063c6682862146107c5578063c87b56dd146107da57600080fd5b80637fd255f11161012e5780637fd255f1146106b15780638da5cb5b146106d157806395a4f76d146106ef57806395d89b41146107055780639c70b5121461071a578063a10866ef1461073a57600080fd5b80636675445d1461061c578063686b2812146106315780636c0360eb146106515780636caae8321461066657806370a082311461067c578063715018a61461069c57600080fd5b80632f745c5911610234578063454b0608116101ed578063525b3fe3116101c7578063525b3fe3146105ac57806355f804b3146105c25780635c975abb146105e25780636352211e146105fc57600080fd5b8063454b06081461054c578063481525951461056c5780634f6ccce71461058c57600080fd5b80632f745c59146104715780633af32abf146104915780633c952764146104ca5780633ccfd60b146104ea57806342842e0e146104ff578063438b63001461051f57600080fd5b8063095ea7b311610286578063095ea7b3146103d25780630fcf2e75146103f257806318160ddd1461041357806318815a671461042857806323b872dd1461043e5780632db115441461045e57600080fd5b80620e7fa8146102cd57806301ffc9a7146102f657806302329a291461032657806306c933d81461034857806306fdde0314610378578063081812fc1461039a575b600080fd5b3480156102d957600080fd5b506102e360115481565b6040519081526020015b60405180910390f35b34801561030257600080fd5b506103166103113660046129a9565b6108f8565b60405190151581526020016102ed565b34801561033257600080fd5b506103466103413660046129d4565b610923565b005b34801561035457600080fd5b50610316610363366004612a06565b60176020526000908152604090205460ff1681565b34801561038457600080fd5b5061038d610969565b6040516102ed9190612a7b565b3480156103a657600080fd5b506103ba6103b5366004612a8e565b6109fb565b6040516001600160a01b0390911681526020016102ed565b3480156103de57600080fd5b506103466103ed366004612aa7565b610a90565b3480156103fe57600080fd5b50601554610316906301000000900460ff1681565b34801561041f57600080fd5b506008546102e3565b34801561043457600080fd5b506102e360105481565b34801561044a57600080fd5b50610346610459366004612ad3565b610ba6565b61034661046c366004612a8e565b610bd7565b34801561047d57600080fd5b506102e361048c366004612aa7565b610e3c565b34801561049d57600080fd5b506103166104ac366004612a06565b6001600160a01b031660009081526017602052604090205460ff1690565b3480156104d657600080fd5b506103466104e53660046129d4565b610ed2565b3480156104f657600080fd5b50610316610f18565b34801561050b57600080fd5b5061034661051a366004612ad3565b610f9f565b34801561052b57600080fd5b5061053f61053a366004612a06565b610fba565b6040516102ed9190612b14565b34801561055857600080fd5b50610346610567366004612a8e565b61105c565b34801561057857600080fd5b50610346610587366004612b58565b61141c565b34801561059857600080fd5b506102e36105a7366004612a8e565b611535565b3480156105b857600080fd5b506102e360135481565b3480156105ce57600080fd5b506103466105dd366004612c06565b6115c8565b3480156105ee57600080fd5b506015546103169060ff1681565b34801561060857600080fd5b506103ba610617366004612a8e565b611605565b34801561062857600080fd5b5061034661167c565b34801561063d57600080fd5b5061034661064c366004612c4f565b6116c3565b34801561065d57600080fd5b5061038d61175f565b34801561067257600080fd5b506102e360145481565b34801561068857600080fd5b506102e3610697366004612a06565b6117ed565b3480156106a857600080fd5b50610346611874565b3480156106bd57600080fd5b506103466106cc366004612a8e565b6118aa565b3480156106dd57600080fd5b50600a546001600160a01b03166103ba565b3480156106fb57600080fd5b506102e3600f5481565b34801561071157600080fd5b5061038d6118d9565b34801561072657600080fd5b506015546103169062010000900460ff1681565b34801561074657600080fd5b506103466118e8565b34801561075b57600080fd5b5061034661076a366004612cc4565b611933565b34801561077b57600080fd5b506102e360125481565b34801561079157600080fd5b506103466107a0366004612c4f565b6119f8565b3480156107b157600080fd5b506103466107c0366004612cfd565b611a94565b3480156107d157600080fd5b5061038d611acc565b3480156107e657600080fd5b5061038d6107f5366004612a8e565b611ad9565b610346610808366004612a8e565b611bb7565b34801561081957600080fd5b5060155461031690610100900460ff1681565b34801561083857600080fd5b506102e3600e5481565b34801561084e57600080fd5b506102e361085d366004612a06565b60166020526000908152604090205481565b34801561087b57600080fd5b5061034661088a366004612c06565b611e52565b34801561089b57600080fd5b506103166108aa366004612d7d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108e457600080fd5b506103466108f3366004612a06565b611e8f565b60006001600160e01b0319821663780e9d6360e01b148061091d575061091d82611f27565b92915050565b600a546001600160a01b031633146109565760405162461bcd60e51b815260040161094d90612dab565b60405180910390fd5b6015805460ff1916911515919091179055565b60606000805461097890612de0565b80601f01602080910402602001604051908101604052809291908181526020018280546109a490612de0565b80156109f15780601f106109c6576101008083540402835291602001916109f1565b820191906000526020600020905b8154815290600101906020018083116109d457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a745760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161094d565b506000908152600460205260409020546001600160a01b031690565b6000610a9b82611605565b9050806001600160a01b0316836001600160a01b03161415610b095760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161094d565b336001600160a01b0382161480610b255750610b2581336108aa565b610b975760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161094d565b610ba18383611f77565b505050565b610bb03382611fe5565b610bcc5760405162461bcd60e51b815260040161094d90612e1b565b610ba18383836120dc565b60155460ff1615610bfa5760405162461bcd60e51b815260040161094d90612e6c565b60155462010000900460ff1615610c455760405162461bcd60e51b815260206004820152600f60248201526e4e6f74207075626c69632073616c6560881b604482015260640161094d565b6015546301000000900460ff16610c905760405162461bcd60e51b815260206004820152600f60248201526e4e6f74207075626c69632073616c6560881b604482015260640161094d565b60008111610ce05760405162461bcd60e51b815260206004820152601b60248201527f4e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161094d565b601454811115610d3e5760405162461bcd60e51b8152602060048201526024808201527f4d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161094d565b600f5481601054610d4f9190612eb2565b1115610d965760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161094d565b80601254610da49190612eca565b341015610de85760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161094d565b60015b818111610e385760006010546001610e039190612eb2565b9050610e0f3382612287565b60108054906000610e1f83612ee9565b9190505550508080610e3090612ee9565b915050610deb565b5050565b6000610e47836117ed565b8210610ea95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161094d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610efc5760405162461bcd60e51b815260040161094d90612dab565b60158054911515620100000262ff000019909216919091179055565b600a546000906001600160a01b03163314610f455760405162461bcd60e51b815260040161094d90612dab565b600a546040516001600160a01b03909116904790600081818185875af1925050503d8060008114610f92576040519150601f19603f3d011682016040523d82523d6000602084013e610f97565b606091505b509091505090565b610ba183838360405180602001604052806000815250611a94565b60606000610fc7836117ed565b905060008167ffffffffffffffff811115610fe457610fe4612b7a565b60405190808252806020026020018201604052801561100d578160200160208202803683370190505b50905060005b82811015611054576110258582610e3c565b82828151811061103757611037612f04565b60209081029190910101528061104c81612ee9565b915050611013565b509392505050565b60155460ff161561107f5760405162461bcd60e51b815260040161094d90612e6c565b601554610100900460ff166110ce5760405162461bcd60e51b81526020600482015260156024820152744d696772617465206973206e6f742061637469766560581b604482015260640161094d565b600b546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa158015611117573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113b9190612f1a565b6001600160a01b0316146111825760405162461bcd60e51b815260206004820152600e60248201526d2737ba103a3432903437b63232b960911b604482015260640161094d565b600b60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f99190612f37565b8111156112355760405162461bcd60e51b815260206004820152600a602482015269125b9d985b1a5908125160b21b604482015260640161094d565b600e54600854611246906001612eb2565b11156112885760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b604482015260640161094d565b600b5460405163e985e9c560e01b81523360048201523060248201526001600160a01b039091169063e985e9c590604401602060405180830381865afa1580156112d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fa9190612f50565b6113465760405162461bcd60e51b815260206004820152601e60248201527f4e65656420617070726f766520666f72207468697320636f6e74726163740000604482015260640161094d565b6000818152600260205260409020546001600160a01b03161561139f5760405162461bcd60e51b8152602060048201526011602482015270151bdad95b881a5cc81b5a59dc985d1959607a1b604482015260640161094d565b600b546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd90606401600060405180830381600087803b1580156113f157600080fd5b505af1158015611405573d6000803e3d6000fd5b505050506114196114133390565b82612287565b50565b600a546001600160a01b031633146114465760405162461bcd60e51b815260040161094d90612dab565b808211156114845760405162461bcd60e51b815260206004820152600b60248201526a0cae4e4dee440d2dcc8caf60ab1b604482015260640161094d565b600f5482116114c65760405162461bcd60e51b815260206004820152600e60248201526d6572726f722073746172744e756d60901b604482015260640161094d565b600e548111156115115760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161094d565b815b818111610ba15761152333611413565b8061152d81612ee9565b915050611513565b600061154060085490565b82106115a35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161094d565b600882815481106115b6576115b6612f04565b90600052602060002001549050919050565b600a546001600160a01b031633146115f25760405162461bcd60e51b815260040161094d90612dab565b8051610e3890600c9060208401906128fa565b6000818152600260205260408120546001600160a01b03168061091d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161094d565b600a546001600160a01b031633146116a65760405162461bcd60e51b815260040161094d90612dab565b6015805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146116ed5760405162461bcd60e51b815260040161094d90612dab565b60005b81811015610ba15760016017600085858581811061171057611710612f04565b90506020020160208101906117259190612a06565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061175781612ee9565b9150506116f0565b600c805461176c90612de0565b80601f016020809104026020016040519081016040528092919081815260200182805461179890612de0565b80156117e55780601f106117ba576101008083540402835291602001916117e5565b820191906000526020600020905b8154815290600101906020018083116117c857829003601f168201915b505050505081565b60006001600160a01b0382166118585760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161094d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461189e5760405162461bcd60e51b815260040161094d90612dab565b6118a860006122a1565b565b600a546001600160a01b031633146118d45760405162461bcd60e51b815260040161094d90612dab565b601355565b60606001805461097890612de0565b600a546001600160a01b031633146119125760405162461bcd60e51b815260040161094d90612dab565b6015805463ff00000019811663010000009182900460ff1615909102179055565b6001600160a01b03821633141561198c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161094d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a225760405162461bcd60e51b815260040161094d90612dab565b60005b81811015610ba157600060176000858585818110611a4557611a45612f04565b9050602002016020810190611a5a9190612a06565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611a8c81612ee9565b915050611a25565b611a9e3383611fe5565b611aba5760405162461bcd60e51b815260040161094d90612e1b565b611ac6848484846122f3565b50505050565b600d805461176c90612de0565b6000818152600260205260409020546060906001600160a01b0316611b585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161094d565b6000611b62612326565b90506000815111611b825760405180602001604052806000815250611bb0565b80611b8c84612335565b600d604051602001611ba093929190612f6d565b6040516020818303038152906040525b9392505050565b60155460ff1615611bda5760405162461bcd60e51b815260040161094d90612e6c565b60155462010000900460ff16611c255760405162461bcd60e51b815260206004820152601060248201526f139bdd081c1c995cd85b19481b5a5b9d60821b604482015260640161094d565b600f5481601054611c369190612eb2565b1115611c7d5760405162461bcd60e51b815260206004820152601660248201527513585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161094d565b601354811115611cc65760405162461bcd60e51b8152602060048201526014602482015273115e18d95959081c1c995cd85b19481b1a5b5a5d60621b604482015260640161094d565b80601154611cd49190612eca565b341015611d185760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b604482015260640161094d565b3360009081526017602052604090205460ff16611d775760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161094d565b33600090815260166020526040902054601354611d948383612eb2565b1115611de25760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161094d565b60015b828111610ba157336000908152601660205260408120805491611e0783612ee9565b919050555060006010546001611e1d9190612eb2565b9050611e293382612287565b60108054906000611e3983612ee9565b9190505550508080611e4a90612ee9565b915050611de5565b600a546001600160a01b03163314611e7c5760405162461bcd60e51b815260040161094d90612dab565b8051610e3890600d9060208401906128fa565b600a546001600160a01b03163314611eb95760405162461bcd60e51b815260040161094d90612dab565b6001600160a01b038116611f1e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094d565b611419816122a1565b60006001600160e01b031982166380ac58cd60e01b1480611f5857506001600160e01b03198216635b5e139f60e01b145b8061091d57506301ffc9a760e01b6001600160e01b031983161461091d565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fac82611605565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661205e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161094d565b600061206983611605565b9050806001600160a01b0316846001600160a01b031614806120a45750836001600160a01b0316612099846109fb565b6001600160a01b0316145b806120d457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166120ef82611605565b6001600160a01b0316146121575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161094d565b6001600160a01b0382166121b95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161094d565b6121c4838383612433565b6121cf600082611f77565b6001600160a01b03831660009081526003602052604081208054600192906121f8908490613031565b90915550506001600160a01b0382166000908152600360205260408120805460019290612226908490612eb2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e388282604051806020016040528060008152506124eb565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6122fe8484846120dc565b61230a8484848461251e565b611ac65760405162461bcd60e51b815260040161094d90613048565b6060600c805461097890612de0565b6060816123595750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612383578061236d81612ee9565b915061237c9050600a836130b0565b915061235d565b60008167ffffffffffffffff81111561239e5761239e612b7a565b6040519080825280601f01601f1916602001820160405280156123c8576020820181803683370190505b5090505b84156120d4576123dd600183613031565b91506123ea600a866130c4565b6123f5906030612eb2565b60f81b81838151811061240a5761240a612f04565b60200101906001600160f81b031916908160001a90535061242c600a866130b0565b94506123cc565b6001600160a01b03831661248e5761248981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6124b1565b816001600160a01b0316836001600160a01b0316146124b1576124b1838261261c565b6001600160a01b0382166124c857610ba1816126b9565b826001600160a01b0316826001600160a01b031614610ba157610ba18282612768565b6124f583836127ac565b612502600084848461251e565b610ba15760405162461bcd60e51b815260040161094d90613048565b60006001600160a01b0384163b1561261157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125629033908990889088906004016130d8565b6020604051808303816000875af192505050801561259d575060408051601f3d908101601f1916820190925261259a91810190613115565b60015b6125f7573d8080156125cb576040519150601f19603f3d011682016040523d82523d6000602084013e6125d0565b606091505b5080516125ef5760405162461bcd60e51b815260040161094d90613048565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120d4565b506001949350505050565b60006001612629846117ed565b6126339190613031565b600083815260076020526040902054909150808214612686576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126cb90600190613031565b600083815260096020526040812054600880549394509092849081106126f3576126f3612f04565b90600052602060002001549050806008838154811061271457612714612f04565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061274c5761274c613132565b6001900381819060005260206000200160009055905550505050565b6000612773836117ed565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166128025760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161094d565b6000818152600260205260409020546001600160a01b0316156128675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161094d565b61287360008383612433565b6001600160a01b038216600090815260036020526040812080546001929061289c908490612eb2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461290690612de0565b90600052602060002090601f016020900481019282612928576000855561296e565b82601f1061294157805160ff191683800117855561296e565b8280016001018555821561296e579182015b8281111561296e578251825591602001919060010190612953565b5061297a92915061297e565b5090565b5b8082111561297a576000815560010161297f565b6001600160e01b03198116811461141957600080fd5b6000602082840312156129bb57600080fd5b8135611bb081612993565b801515811461141957600080fd5b6000602082840312156129e657600080fd5b8135611bb0816129c6565b6001600160a01b038116811461141957600080fd5b600060208284031215612a1857600080fd5b8135611bb0816129f1565b60005b83811015612a3e578181015183820152602001612a26565b83811115611ac65750506000910152565b60008151808452612a67816020860160208601612a23565b601f01601f19169290920160200192915050565b602081526000611bb06020830184612a4f565b600060208284031215612aa057600080fd5b5035919050565b60008060408385031215612aba57600080fd5b8235612ac5816129f1565b946020939093013593505050565b600080600060608486031215612ae857600080fd5b8335612af3816129f1565b92506020840135612b03816129f1565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015612b4c57835183529284019291840191600101612b30565b50909695505050505050565b60008060408385031215612b6b57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612bab57612bab612b7a565b604051601f8501601f19908116603f01168101908282118183101715612bd357612bd3612b7a565b81604052809350858152868686011115612bec57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612c1857600080fd5b813567ffffffffffffffff811115612c2f57600080fd5b8201601f81018413612c4057600080fd5b6120d484823560208401612b90565b60008060208385031215612c6257600080fd5b823567ffffffffffffffff80821115612c7a57600080fd5b818501915085601f830112612c8e57600080fd5b813581811115612c9d57600080fd5b8660208260051b8501011115612cb257600080fd5b60209290920196919550909350505050565b60008060408385031215612cd757600080fd5b8235612ce2816129f1565b91506020830135612cf2816129c6565b809150509250929050565b60008060008060808587031215612d1357600080fd5b8435612d1e816129f1565b93506020850135612d2e816129f1565b925060408501359150606085013567ffffffffffffffff811115612d5157600080fd5b8501601f81018713612d6257600080fd5b612d7187823560208401612b90565b91505092959194509250565b60008060408385031215612d9057600080fd5b8235612d9b816129f1565b91506020830135612cf2816129f1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612df457607f821691505b60208210811415612e1557634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260169082015275151a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612ec557612ec5612e9c565b500190565b6000816000190483118215151615612ee457612ee4612e9c565b500290565b6000600019821415612efd57612efd612e9c565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612f2c57600080fd5b8151611bb0816129f1565b600060208284031215612f4957600080fd5b5051919050565b600060208284031215612f6257600080fd5b8151611bb0816129c6565b600084516020612f808285838a01612a23565b855191840191612f938184848a01612a23565b8554920191600090600181811c9080831680612fb057607f831692505b858310811415612fce57634e487b7160e01b85526022600452602485fd5b808015612fe25760018114612ff357613020565b60ff19851688528388019550613020565b60008b81526020902060005b858110156130185781548a820152908401908801612fff565b505083880195505b50939b9a5050505050505050505050565b60008282101561304357613043612e9c565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826130bf576130bf61309a565b500490565b6000826130d3576130d361309a565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061310b90830184612a4f565b9695505050505050565b60006020828403121561312757600080fd5b8151611bb081612993565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220dd0f7ec67ede6b1f69f55289dc665720ecc3bc0e4086c443131884413b3f910764736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012506c75746f486970486f70446570745f563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007504848445f563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d65384d6f7375697a585442757a75445a664c775879397466565a6d4d5042524d784b596136427162565375712f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): PlutoHipHopDept_V2
Arg [1] : _symbol (string): PHHD_V2
Arg [2] : _initBaseURI (string): https://gateway.pinata.cloud/ipfs/Qme8MosuizXTBuzuDZfLwXy9tfVZmMPBRMxKYa6BqbVSuq/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 506c75746f486970486f70446570745f56320000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 504848445f563200000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d65384d6f7375697a585442757a75445a664c775879397466565a6d4d
Arg [10] : 5042524d784b596136427162565375712f000000000000000000000000000000


Deployed Bytecode Sourcemap

43448:5753:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43826:40;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;43826:40:0;;;;;;;;34648:224;;;;;;;;;;-1:-1:-1;34648:224:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;34648:224:0;582:187:1;47942:73:0;;;;;;;;;;-1:-1:-1;47942:73:0;;;;;:::i;:::-;;:::i;:::-;;44203:52;;;;;;;;;;-1:-1:-1;44203:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21549:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23108:221::-;;;;;;;;;;-1:-1:-1;23108:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2631:32:1;;;2613:51;;2601:2;2586:18;23108:221:0;2467:203:1;22631:411:0;;;;;;;;;;-1:-1:-1;22631:411:0;;;;;:::i;:::-;;:::i;44095:38::-;;;;;;;;;;-1:-1:-1;44095:38:0;;;;;;;;;;;35288:113;;;;;;;;;;-1:-1:-1;35376:10:0;:17;35288:113;;43778:43;;;;;;;;;;;;;;;;23998:339;;;;;;;;;;-1:-1:-1;23998:339:0;;;;;:::i;:::-;;:::i;46351:666::-;;;;;;:::i;:::-;;:::i;34956:256::-;;;;;;;;;;-1:-1:-1;34956:256:0;;;;;:::i;:::-;;:::i;47023:112::-;;;;;;;;;;-1:-1:-1;47023:112:0;;;;;:::i;:::-;-1:-1:-1;;;;;47102:27:0;47082:4;47102:27;;;:20;:27;;;;;;;;;47023:112;48561:95;;;;;;;;;;-1:-1:-1;48561:95:0;;;;;:::i;:::-;;:::i;49036:162::-;;;;;;;;;;;;;:::i;24408:185::-;;;;;;;;;;-1:-1:-1;24408:185:0;;;;;:::i;:::-;;:::i;47143:348::-;;;;;;;;;;-1:-1:-1;47143:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44900:608::-;;;;;;;;;;-1:-1:-1;44900:608:0;;;;;:::i;:::-;;:::i;44555:339::-;;;;;;;;;;-1:-1:-1;44555:339:0;;;;;:::i;:::-;;:::i;35478:233::-;;;;;;;;;;-1:-1:-1;35478:233:0;;;;;:::i;:::-;;:::i;43915:31::-;;;;;;;;;;;;;;;;48226:98;;;;;;;;;;-1:-1:-1;48226:98:0;;;;;:::i;:::-;;:::i;43985:26::-;;;;;;;;;;-1:-1:-1;43985:26:0;;;;;;;;21243:239;;;;;;;;;;-1:-1:-1;21243:239:0;;;;;:::i;:::-;;:::i;48021:92::-;;;;;;;;;;;;;:::i;48662:179::-;;;;;;;;;;-1:-1:-1;48662:179:0;;;;;:::i;:::-;;:::i;43637:21::-;;;;;;;;;;;;;:::i;43951:27::-;;;;;;;;;;;;;;;;20973:208;;;;;;;;;;-1:-1:-1;20973:208:0;;;;;:::i;:::-;;:::i;42445:94::-;;;;;;;;;;;;;:::i;48458:97::-;;;;;;;;;;-1:-1:-1;48458:97:0;;;;;:::i;:::-;;:::i;41794:87::-;;;;;;;;;;-1:-1:-1;41867:6:0;;-1:-1:-1;;;;;41867:6:0;41794:87;;43741:32;;;;;;;;;;;;;;;;21718:104;;;;;;;;;;;;;:::i;44055:35::-;;;;;;;;;;-1:-1:-1;44055:35:0;;;;;;;;;;;48119:101;;;;;;;;;;;;;:::i;23401:295::-;;;;;;;;;;-1:-1:-1;23401:295:0;;;;;:::i;:::-;;:::i;43871:39::-;;;;;;;;;;;;;;;;48847:183;;;;;;;;;;-1:-1:-1;48847:183:0;;;;;:::i;:::-;;:::i;24664:328::-;;;;;;;;;;-1:-1:-1;24664:328:0;;;;;:::i;:::-;;:::i;43663:37::-;;;;;;;;;;;;;:::i;47497:423::-;;;;;;;;;;-1:-1:-1;47497:423:0;;;;;:::i;:::-;;:::i;45514:831::-;;;;;;:::i;:::-;;:::i;44016:34::-;;;;;;;;;;-1:-1:-1;44016:34:0;;;;;;;;;;;43705:31;;;;;;;;;;;;;;;;44138:60;;;;;;;;;;-1:-1:-1;44138:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;48330:122;;;;;;;;;;-1:-1:-1;48330:122:0;;;;;:::i;:::-;;:::i;23767:164::-;;;;;;;;;;-1:-1:-1;23767:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23888:25:0;;;23864:4;23888:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23767:164;42694:192;;;;;;;;;;-1:-1:-1;42694:192:0;;;;;:::i;:::-;;:::i;34648:224::-;34750:4;-1:-1:-1;;;;;;34774:50:0;;-1:-1:-1;;;34774:50:0;;:90;;;34828:36;34852:11;34828:23;:36::i;:::-;34767:97;34648:224;-1:-1:-1;;34648:224:0:o;47942:73::-;41867:6;;-1:-1:-1;;;;;41867:6:0;16122:10;42014:23;42006:68;;;;-1:-1:-1;;;42006:68:0;;;;;;;:::i;:::-;;;;;;;;;47994:6:::1;:15:::0;;-1:-1:-1;;47994:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47942:73::o;21549:100::-;21603:13;21636:5;21629:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21549:100;:::o;23108:221::-;23184:7;26591:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26591:16:0;23204:73;;;;-1:-1:-1;;;23204:73:0;;8719:2:1;23204:73:0;;;8701:21:1;8758:2;8738:18;;;8731:30;8797:34;8777:18;;;8770:62;-1:-1:-1;;;8848:18:1;;;8841:42;8900:19;;23204:73:0;8517:408:1;23204:73:0;-1:-1:-1;23297:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23297:24:0;;23108:221::o;22631:411::-;22712:13;22728:23;22743:7;22728:14;:23::i;:::-;22712:39;;22776:5;-1:-1:-1;;;;;22770:11:0;:2;-1:-1:-1;;;;;22770:11:0;;;22762:57;;;;-1:-1:-1;;;22762:57:0;;9132:2:1;22762:57:0;;;9114:21:1;9171:2;9151:18;;;9144:30;9210:34;9190:18;;;9183:62;-1:-1:-1;;;9261:18:1;;;9254:31;9302:19;;22762:57:0;8930:397:1;22762:57:0;16122:10;-1:-1:-1;;;;;22854:21:0;;;;:62;;-1:-1:-1;22879:37:0;22896:5;16122:10;23767:164;:::i;22879:37::-;22832:168;;;;-1:-1:-1;;;22832:168:0;;9534:2:1;22832:168:0;;;9516:21:1;9573:2;9553:18;;;9546:30;9612:34;9592:18;;;9585:62;9683:26;9663:18;;;9656:54;9727:19;;22832:168:0;9332:420:1;22832:168:0;23013:21;23022:2;23026:7;23013:8;:21::i;:::-;22701:341;22631:411;;:::o;23998:339::-;24193:41;16122:10;24226:7;24193:18;:41::i;:::-;24185:103;;;;-1:-1:-1;;;24185:103:0;;;;;;;:::i;:::-;24301:28;24311:4;24317:2;24321:7;24301:9;:28::i;46351:666::-;46422:6;;;;46421:7;46413:42;;;;-1:-1:-1;;;46413:42:0;;;;;;;:::i;:::-;46471:15;;;;;;;46470:16;46462:44;;;;-1:-1:-1;;;46462:44:0;;10728:2:1;46462:44:0;;;10710:21:1;10767:2;10747:18;;;10740:30;-1:-1:-1;;;10786:18:1;;;10779:45;10841:18;;46462:44:0;10526:339:1;46462:44:0;46521:18;;;;;;;46513:46;;;;-1:-1:-1;;;46513:46:0;;10728:2:1;46513:46:0;;;10710:21:1;10767:2;10747:18;;;10740:30;-1:-1:-1;;;10786:18:1;;;10779:45;10841:18;;46513:46:0;10526:339:1;46513:46:0;46587:1;46574:10;:14;46566:54;;;;-1:-1:-1;;;46566:54:0;;11072:2:1;46566:54:0;;;11054:21:1;11111:2;11091:18;;;11084:30;11150:29;11130:18;;;11123:57;11197:18;;46566:54:0;10870:351:1;46566:54:0;46649:7;;46635:10;:21;;46627:70;;;;-1:-1:-1;;;46627:70:0;;11428:2:1;46627:70:0;;;11410:21:1;11467:2;11447:18;;;11440:30;11506:34;11486:18;;;11479:62;-1:-1:-1;;;11557:18:1;;;11550:34;11601:19;;46627:70:0;11226:400:1;46627:70:0;46736:10;;46722;46712:7;;:20;;;;:::i;:::-;:34;;46704:69;;;;-1:-1:-1;;;46704:69:0;;12098:2:1;46704:69:0;;;12080:21:1;12137:2;12117:18;;;12110:30;-1:-1:-1;;;12156:18:1;;;12149:52;12218:18;;46704:69:0;11896:346:1;46704:69:0;46815:10;46801:11;;:24;;;;:::i;:::-;46788:9;:37;;46780:68;;;;-1:-1:-1;;;46780:68:0;;12622:2:1;46780:68:0;;;12604:21:1;12661:2;12641:18;;;12634:30;-1:-1:-1;;;12680:18:1;;;12673:48;12738:18;;46780:68:0;12420:342:1;46780:68:0;46874:1;46857:155;46882:10;46877:1;:15;46857:155;;46910:17;46930:7;;46940:1;46930:11;;;;:::i;:::-;46910:31;;46952:32;46962:10;46974:9;46952;:32::i;:::-;46995:7;:9;;;:7;:9;;;:::i;:::-;;;;;;46899:113;46894:3;;;;;:::i;:::-;;;;46857:155;;;;46351:666;:::o;34956:256::-;35053:7;35089:23;35106:5;35089:16;:23::i;:::-;35081:5;:31;35073:87;;;;-1:-1:-1;;;35073:87:0;;13109:2:1;35073:87:0;;;13091:21:1;13148:2;13128:18;;;13121:30;13187:34;13167:18;;;13160:62;-1:-1:-1;;;13238:18:1;;;13231:41;13289:19;;35073:87:0;12907:407:1;35073:87:0;-1:-1:-1;;;;;;35178:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34956:256::o;48561:95::-;41867:6;;-1:-1:-1;;;;;41867:6:0;16122:10;42014:23;42006:68;;;;-1:-1:-1;;;42006:68:0;;;;;;;:::i;:::-;48626:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;48626:24:0;;::::1;::::0;;;::::1;::::0;;48561:95::o;49036:162::-;41867:6;;49082:12;;-1:-1:-1;;;;;41867:6:0;16122:10;42014:23;42006:68;;;;-1:-1:-1;;;42006:68:0;;;;;;;:::i;:::-;41867:6;;49116:55:::1;::::0;-1:-1:-1;;;;;41867:6:0;;;;49145:21:::1;::::0;49116:55:::1;::::0;;;49145:21;41867:6;49116:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;49103:68:0;;-1:-1:-1;;49036:162:0;:::o;24408:185::-;24546:39;24563:4;24569:2;24573:7;24546:39;;;;;;;;;;;;:16;:39::i;47143:348::-;47218:16;47246:23;47272:17;47282:6;47272:9;:17::i;:::-;47246:43;;47296:25;47338:15;47324:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47324:30:0;;47296:58;;47366:9;47361:103;47381:15;47377:1;:19;47361:103;;;47426:30;47446:6;47454:1;47426:19;:30::i;:::-;47412:8;47421:1;47412:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;47398:3;;;;:::i;:::-;;;;47361:103;;;-1:-1:-1;47477:8:0;47143:348;-1:-1:-1;;;47143:348:0:o;44900:608::-;44957:6;;;;44956:7;44948:42;;;;-1:-1:-1;;;44948:42:0;;;;;;;:::i;:::-;45005:15;;;;;;;44997:49;;;;-1:-1:-1;;;44997:49:0;;13863:2:1;44997:49:0;;;13845:21:1;13902:2;13882:18;;;13875:30;-1:-1:-1;;;13921:18:1;;;13914:51;13982:18;;44997:49:0;13661:345:1;44997:49:0;45061:4;;:21;;-1:-1:-1;;;45061:21:0;;;;;160:25:1;;;45086:10:0;;-1:-1:-1;;;;;45061:4:0;;:12;;133:18:1;;45061:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;45061:35:0;;45053:62;;;;-1:-1:-1;;;45053:62:0;;14469:2:1;45053:62:0;;;14451:21:1;14508:2;14488:18;;;14481:30;-1:-1:-1;;;14527:18:1;;;14520:44;14581:18;;45053:62:0;14267:338:1;45053:62:0;45141:4;;;;;;;;;-1:-1:-1;;;;;45141:4:0;-1:-1:-1;;;;;45141:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45130:7;:29;;45122:52;;;;-1:-1:-1;;;45122:52:0;;15001:2:1;45122:52:0;;;14983:21:1;15040:2;15020:18;;;15013:30;-1:-1:-1;;;15059:18:1;;;15052:40;15109:18;;45122:52:0;14799:334:1;45122:52:0;45210:9;;35376:10;:17;45189;;45205:1;45189:17;:::i;:::-;:30;;45181:60;;;;-1:-1:-1;;;45181:60:0;;15340:2:1;45181:60:0;;;15322:21:1;15379:2;15359:18;;;15352:30;-1:-1:-1;;;15398:18:1;;;15391:47;15455:18;;45181:60:0;15138:341:1;45181:60:0;45256:4;;:48;;-1:-1:-1;;;45256:48:0;;45278:10;45256:48;;;15696:34:1;45298:4:0;15746:18:1;;;15739:43;-1:-1:-1;;;;;45256:4:0;;;;:21;;15631:18:1;;45256:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45248:91;;;;-1:-1:-1;;;45248:91:0;;16245:2:1;45248:91:0;;;16227:21:1;16284:2;16264:18;;;16257:30;16323:32;16303:18;;;16296:60;16373:18;;45248:91:0;16043:354:1;45248:91:0;26567:4;26591:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26591:16:0;:30;45346:47;;;;-1:-1:-1;;;45346:47:0;;16604:2:1;45346:47:0;;;16586:21:1;16643:2;16623:18;;;16616:30;-1:-1:-1;;;16662:18:1;;;16655:47;16719:18;;45346:47:0;16402:341:1;45346:47:0;45410:4;;:53;;-1:-1:-1;;;45410:53:0;;45428:10;45410:53;;;16988:34:1;45448:4:0;17038:18:1;;;17031:43;17090:18;;;17083:34;;;-1:-1:-1;;;;;45410:4:0;;;;:17;;16923:18:1;;45410:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45470:32;45480:12;16122:10;;16042:98;45480:12;45494:7;45470:9;:32::i;:::-;44900:608;:::o;44555:339::-;41867:6;;-1:-1:-1;;;;;41867:6:0;16122:10;42014:23;42006:68;;;;-1:-1:-1;;;42006:68:0;;;;;;;:::i;:::-;44654:6:::1;44642:8;:18;;44634:42;;;::::0;-1:-1:-1;;;44634:42:0;;17330:2:1;44634:42:0::1;::::0;::::1;17312:21:1::0;17369:2;17349:18;;;17342:30;-1:-1:-1;;;17388:18:1;;;17381:41;17439:18;;44634:42:0::1;17128:335:1::0;44634:42:0::1;44702:10;;44691:8;:21;44683:48;;;::::0;-1:-1:-1;;;44683:48:0;;17670:2:1;44683:48:0::1;::::0;::::1;17652:21:1::0;17709:2;17689:18;;;17682:30;-1:-1:-1;;;17728:18:1;;;17721:44;17782:18;;44683:48:0::1;17468:338:1::0;44683:48:0::1;44756:9;;44746:6;:19;;44738:54;;;::::0;-1:-1:-1;;;44738:54:0;;18013:2:1;44738:54:0::1;::::0;::::1;17995:21:1::0;18052:2;18032:18;;;18025:30;-1:-1:-1;;;18071:18:1;;;18064:52;18133:18;;44738:54:0::1;17811:346:1::0;44738:54:0::1;44816:8:::0;44799:90:::1;44831:6;44826:1;:11;44799:90;;44855:26;16122:10:::0;44865:12:::1;16042:98:::0;44855:26:::1;44839:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44799:90;;35478:233:::0;35553:7;35589:30;35376:10;:17;;35288:113;35589:30;35581:5;:38;35573:95;;;;-1:-1:-1;;;35573:95:0;;18364:2:1;35573:95:0;;;18346:21:1;18403:2;18383:18;;;18376:30;18442:34;18422:18;;;18415:62;-1:-1:-1;;;18493:18:1;;;18486:42;18545:19;;35573:95:0;18162:408:1;35573:95:0;35686:10;35697:5;35686:17;;;;;;;;:::i;:::-;;;;;;;;;35679:24;;35478:233;;;:::o;48226:98::-;41867:6;;-1:-1:-1;;;;;41867:6:0;16122:10;42014:23;42006:68;;;;-1:-1:-1;;;42006:68:0;;;;;;;:::i;:::-;48297:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;21243:239::-:0;21315:7;21351:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21351:16:0;21386:19;21378:73;;;;-1:-1:-1;;;21378:73:0;;18777:2:1;21378:73:0;;;18759:21:1;18816:2;18796:18;;;18789:30;18855:34;18835:18;;;18828:62;-1:-1:-1;;;18906:18:1;;;18899:39;18955:19;;21378:73:0;18575:405:1;48021:92:0;41867:6;;-1:-1:-1;;;;;41867:6:0;16122:10;42014:23;42006:68;;;;-1:-1:-1;;;42006:68:0;;;;;;;:::i;:::-;48092:15:::1;::::0;;-1:-1:-1;;48073:34:0;::::1;48092:15;::::0;;;::::1;;;48091:16;48073:34:::0;;::::1;;::::0;;48021:92::o;48662:179::-;41867:6;;-1:-1:-1;;;;;41867:6:0;16122:10;42014:23;42006:68;;;;-1:-1:-1;;;42006:68:0;;;;;;;:::i;:::-;48743:9:::1;48739:97;48758:16:::0;;::::1;48739:97;;;48824:4;48791:20;:30;48812:5;;48818:1;48812:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48791:30:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48791:30:0;:37;;-1:-1:-1;;48791:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48776:3;::::1;::::0;::::1;:::i;:::-;;;;48739:97;;43637:21:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20973:208::-;21045:7;-1:-1:-1;;;;;21073:19:0;;21065:74;;;;-1:-1:-1;;;21065:74:0;;19187:2:1;21065:74:0;;;19169:21:1;19226:2;19206:18;;;19199:30;19265:34;19245:18;;;19238:62;-1:-1:-1;;;19316:18:1;;;19309:40;19366:19;;21065:74:0;18985:406:1;21065:74:0;-1:-1:-1;;;;;;21157:16:0;;;;;:9;:16;;;;;;;20973:208::o;42445:94::-;41867:6;;-1:-1:-1;;;;;41867:6:0;16122:10;42014:23;42006:68;;;;-1:-1:-1;;;42006:68:0;;;;;;;:::i;:::-;42510:21:::1;42528:1;42510:9;:21::i;:::-;42445:94::o:0;48458:97::-;41867:6;;-1:-1:-1;;;;;41867:6:0;16122:10;42014:23;42006:68;;;;-1:-1:-1;;;42006:68:0;;;;;;;:::i;:::-;48526:12:::1;:23:::0;48458:97::o;21718:104::-;21774:13;21807:7;21800:14;;;;;:::i;48119:101::-;41867:6;;-1:-1:-1;;;;;41867:6:0;16122:10;42014:23;42006:68;;;;-1:-1:-1;;;42006:68:0;;;;;;;:::i;:::-;48196:18:::1;::::0;;-1:-1:-1;;48174:40:0;::::1;48196:18:::0;;;;::::1;;;48195:19;48174:40:::0;;::::1;;::::0;;48119:101::o;23401:295::-;-1:-1:-1;;;;;23504:24:0;;16122:10;23504:24;;23496:62;;;;-1:-1:-1;;;23496:62:0;;19598:2:1;23496:62:0;;;19580:21:1;19637:2;19617:18;;;19610:30;19676:27;19656:18;;;19649:55;19721:18;;23496:62:0;19396:349:1;23496:62:0;16122:10;23571:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23571:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23571:53:0;;;;;;;;;;23640:48;;722:41:1;;;23571:42:0;;16122:10;23640:48;;695:18:1;23640:48:0;;;;;;;23401:295;;:::o;48847:183::-;41867:6;;-1:-1:-1;;;;;41867:6:0;16122:10;42014:23;42006:68;;;;-1:-1:-1;;;42006:68:0;;;;;;;:::i;:::-;48931:9:::1;48927:98;48946:16:::0;;::::1;48927:98;;;49012:5;48979:20;:30;49000:5;;49006:1;49000:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48979:30:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48979:30:0;:38;;-1:-1:-1;;48979:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48964:3;::::1;::::0;::::1;:::i;:::-;;;;48927:98;;24664:328:::0;24839:41;16122:10;24872:7;24839:18;:41::i;:::-;24831:103;;;;-1:-1:-1;;;24831:103:0;;;;;;;:::i;:::-;24945:39;24959:4;24965:2;24969:7;24978:5;24945:13;:39::i;:::-;24664:328;;;;:::o;43663:37::-;;;;;;;:::i;47497:423::-;26567:4;26591:16;;;:7;:16;;;;;;47595:13;;-1:-1:-1;;;;;26591:16:0;47620:97;;;;-1:-1:-1;;;47620:97:0;;19952:2:1;47620:97:0;;;19934:21:1;19991:2;19971:18;;;19964:30;20030:34;20010:18;;;20003:62;-1:-1:-1;;;20081:18:1;;;20074:45;20136:19;;47620:97:0;19750:411:1;47620:97:0;47726:28;47757:10;:8;:10::i;:::-;47726:41;;47812:1;47787:14;47781:28;:32;:133;;;;;;;;;;;;;;;;;47849:14;47865:18;:7;:16;:18::i;:::-;47885:13;47832:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47781:133;47774:140;47497:423;-1:-1:-1;;;47497:423:0:o;45514:831::-;45586:6;;;;45585:7;45577:42;;;;-1:-1:-1;;;45577:42:0;;;;;;;:::i;:::-;45634:15;;;;;;;45626:44;;;;-1:-1:-1;;;45626:44:0;;22026:2:1;45626:44:0;;;22008:21:1;22065:2;22045:18;;;22038:30;-1:-1:-1;;;22084:18:1;;;22077:46;22140:18;;45626:44:0;21824:340:1;45626:44:0;45709:10;;45695;45685:7;;:20;;;;:::i;:::-;:34;;45677:69;;;;-1:-1:-1;;;45677:69:0;;12098:2:1;45677:69:0;;;12080:21:1;12137:2;12117:18;;;12110:30;-1:-1:-1;;;12156:18:1;;;12149:52;12218:18;;45677:69:0;11896:346:1;45677:69:0;45775:12;;45761:10;:26;;45753:59;;;;-1:-1:-1;;;45753:59:0;;22371:2:1;45753:59:0;;;22353:21:1;22410:2;22390:18;;;22383:30;-1:-1:-1;;;22429:18:1;;;22422:50;22489:18;;45753:59:0;22169:344:1;45753:59:0;45855:10;45840:12;;:25;;;;:::i;:::-;45827:9;:38;;45819:69;;;;-1:-1:-1;;;45819:69:0;;12622:2:1;45819:69:0;;;12604:21:1;12661:2;12641:18;;;12634:30;-1:-1:-1;;;12680:18:1;;;12673:48;12738:18;;45819:69:0;12420:342:1;45819:69:0;45917:10;47082:4;47102:27;;;:20;:27;;;;;;;;45895:61;;;;-1:-1:-1;;;45895:61:0;;22720:2:1;45895:61:0;;;22702:21:1;22759:2;22739:18;;;22732:30;22798:25;22778:18;;;22771:53;22841:18;;45895:61:0;22518:347:1;45895:61:0;46018:10;45965:24;45992:37;;;:25;:37;;;;;;46077:12;;46044:29;46063:10;45992:37;46044:29;:::i;:::-;:45;;46036:86;;;;-1:-1:-1;;;46036:86:0;;23072:2:1;46036:86:0;;;23054:21:1;23111:2;23091:18;;;23084:30;23150;23130:18;;;23123:58;23198:18;;46036:86:0;22870:352:1;46036:86:0;46152:1;46135:205;46160:10;46155:1;:15;46135:205;;46214:10;46188:37;;;;:25;:37;;;;;:39;;;;;;:::i;:::-;;;;;;46238:17;46258:7;;46268:1;46258:11;;;;:::i;:::-;46238:31;;46280:32;46290:10;46302:9;46280;:32::i;:::-;46323:7;:9;;;:7;:9;;;:::i;:::-;;;;;;46177:163;46172:3;;;;;:::i;:::-;;;;46135:205;;48330:122;41867:6;;-1:-1:-1;;;;;41867:6:0;16122:10;42014:23;42006:68;;;;-1:-1:-1;;;42006:68:0;;;;;;;:::i;:::-;48413:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;42694:192::-:0;41867:6;;-1:-1:-1;;;;;41867:6:0;16122:10;42014:23;42006:68;;;;-1:-1:-1;;;42006:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42783:22:0;::::1;42775:73;;;::::0;-1:-1:-1;;;42775:73:0;;23429:2:1;42775:73:0::1;::::0;::::1;23411:21:1::0;23468:2;23448:18;;;23441:30;23507:34;23487:18;;;23480:62;-1:-1:-1;;;23558:18:1;;;23551:36;23604:19;;42775:73:0::1;23227:402:1::0;42775:73:0::1;42859:19;42869:8;42859:9;:19::i;20604:305::-:0;20706:4;-1:-1:-1;;;;;;20743:40:0;;-1:-1:-1;;;20743:40:0;;:105;;-1:-1:-1;;;;;;;20800:48:0;;-1:-1:-1;;;20800:48:0;20743:105;:158;;;-1:-1:-1;;;;;;;;;;19233:40:0;;;20865:36;19124:157;30484:174;30559:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30559:29:0;-1:-1:-1;;;;;30559:29:0;;;;;;;;:24;;30613:23;30559:24;30613:14;:23::i;:::-;-1:-1:-1;;;;;30604:46:0;;;;;;;;;;;30484:174;;:::o;26796:348::-;26889:4;26591:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26591:16:0;26906:73;;;;-1:-1:-1;;;26906:73:0;;23836:2:1;26906:73:0;;;23818:21:1;23875:2;23855:18;;;23848:30;23914:34;23894:18;;;23887:62;-1:-1:-1;;;23965:18:1;;;23958:42;24017:19;;26906:73:0;23634:408:1;26906:73:0;26990:13;27006:23;27021:7;27006:14;:23::i;:::-;26990:39;;27059:5;-1:-1:-1;;;;;27048:16:0;:7;-1:-1:-1;;;;;27048:16:0;;:51;;;;27092:7;-1:-1:-1;;;;;27068:31:0;:20;27080:7;27068:11;:20::i;:::-;-1:-1:-1;;;;;27068:31:0;;27048:51;:87;;;-1:-1:-1;;;;;;23888:25:0;;;23864:4;23888:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27103:32;27040:96;26796:348;-1:-1:-1;;;;26796:348:0:o;29788:578::-;29947:4;-1:-1:-1;;;;;29920:31:0;:23;29935:7;29920:14;:23::i;:::-;-1:-1:-1;;;;;29920:31:0;;29912:85;;;;-1:-1:-1;;;29912:85:0;;24249:2:1;29912:85:0;;;24231:21:1;24288:2;24268:18;;;24261:30;24327:34;24307:18;;;24300:62;-1:-1:-1;;;24378:18:1;;;24371:39;24427:19;;29912:85:0;24047:405:1;29912:85:0;-1:-1:-1;;;;;30016:16:0;;30008:65;;;;-1:-1:-1;;;30008:65:0;;24659:2:1;30008:65:0;;;24641:21:1;24698:2;24678:18;;;24671:30;24737:34;24717:18;;;24710:62;-1:-1:-1;;;24788:18:1;;;24781:34;24832:19;;30008:65:0;24457:400:1;30008:65:0;30086:39;30107:4;30113:2;30117:7;30086:20;:39::i;:::-;30190:29;30207:1;30211:7;30190:8;:29::i;:::-;-1:-1:-1;;;;;30232:15:0;;;;;;:9;:15;;;;;:20;;30251:1;;30232:15;:20;;30251:1;;30232:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30263:13:0;;;;;;:9;:13;;;;;:18;;30280:1;;30263:13;:18;;30280:1;;30263:18;:::i;:::-;;;;-1:-1:-1;;30292:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30292:21:0;-1:-1:-1;;;;;30292:21:0;;;;;;;;;30331:27;;30292:16;;30331:27;;;;;;;29788:578;;;:::o;27486:110::-;27562:26;27572:2;27576:7;27562:26;;;;;;;;;;;;:9;:26::i;42894:173::-;42969:6;;;-1:-1:-1;;;;;42986:17:0;;;-1:-1:-1;;;;;;42986:17:0;;;;;;;43019:40;;42969:6;;;42986:17;42969:6;;43019:40;;42950:16;;43019:40;42939:128;42894:173;:::o;25874:315::-;26031:28;26041:4;26047:2;26051:7;26031:9;:28::i;:::-;26078:48;26101:4;26107:2;26111:7;26120:5;26078:22;:48::i;:::-;26070:111;;;;-1:-1:-1;;;26070:111:0;;;;;;;:::i;44447:102::-;44507:13;44536:7;44529:14;;;;;:::i;16567:723::-;16623:13;16844:10;16840:53;;-1:-1:-1;;16871:10:0;;;;;;;;;;;;-1:-1:-1;;;16871:10:0;;;;;16567:723::o;16840:53::-;16918:5;16903:12;16959:78;16966:9;;16959:78;;16992:8;;;;:::i;:::-;;-1:-1:-1;17015:10:0;;-1:-1:-1;17023:2:0;17015:10;;:::i;:::-;;;16959:78;;;17047:19;17079:6;17069:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17069:17:0;;17047:39;;17097:154;17104:10;;17097:154;;17131:11;17141:1;17131:11;;:::i;:::-;;-1:-1:-1;17200:10:0;17208:2;17200:5;:10;:::i;:::-;17187:24;;:2;:24;:::i;:::-;17174:39;;17157:6;17164;17157:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17157:56:0;;;;;;;;-1:-1:-1;17228:11:0;17237:2;17228:11;;:::i;:::-;;;17097:154;;36324:589;-1:-1:-1;;;;;36530:18:0;;36526:187;;36565:40;36597:7;37740:10;:17;;37713:24;;;;:15;:24;;;;;:44;;;37768:24;;;;;;;;;;;;37636:164;36565:40;36526:187;;;36635:2;-1:-1:-1;;;;;36627:10:0;:4;-1:-1:-1;;;;;36627:10:0;;36623:90;;36654:47;36687:4;36693:7;36654:32;:47::i;:::-;-1:-1:-1;;;;;36727:16:0;;36723:183;;36760:45;36797:7;36760:36;:45::i;36723:183::-;36833:4;-1:-1:-1;;;;;36827:10:0;:2;-1:-1:-1;;;;;36827:10:0;;36823:83;;36854:40;36882:2;36886:7;36854:27;:40::i;27823:321::-;27953:18;27959:2;27963:7;27953:5;:18::i;:::-;28004:54;28035:1;28039:2;28043:7;28052:5;28004:22;:54::i;:::-;27982:154;;;;-1:-1:-1;;;27982:154:0;;;;;;;:::i;31223:799::-;31378:4;-1:-1:-1;;;;;31399:13:0;;8409:20;8457:8;31395:620;;31435:72;;-1:-1:-1;;;31435:72:0;;-1:-1:-1;;;;;31435:36:0;;;;;:72;;16122:10;;31486:4;;31492:7;;31501:5;;31435:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31435:72:0;;;;;;;;-1:-1:-1;;31435:72:0;;;;;;;;;;;;:::i;:::-;;;31431:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31677:13:0;;31673:272;;31720:60;;-1:-1:-1;;;31720:60:0;;;;;;;:::i;31673:272::-;31895:6;31889:13;31880:6;31876:2;31872:15;31865:38;31431:529;-1:-1:-1;;;;;;31558:51:0;-1:-1:-1;;;31558:51:0;;-1:-1:-1;31551:58:0;;31395:620;-1:-1:-1;31999:4:0;31223:799;;;;;;:::o;38427:988::-;38693:22;38743:1;38718:22;38735:4;38718:16;:22::i;:::-;:26;;;;:::i;:::-;38755:18;38776:26;;;:17;:26;;;;;;38693:51;;-1:-1:-1;38909:28:0;;;38905:328;;-1:-1:-1;;;;;38976:18:0;;38954:19;38976:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39027:30;;;;;;:44;;;39144:30;;:17;:30;;;;;:43;;;38905:328;-1:-1:-1;39329:26:0;;;;:17;:26;;;;;;;;39322:33;;;-1:-1:-1;;;;;39373:18:0;;;;;:12;:18;;;;;:34;;;;;;;39366:41;38427:988::o;39710:1079::-;39988:10;:17;39963:22;;39988:21;;40008:1;;39988:21;:::i;:::-;40020:18;40041:24;;;:15;:24;;;;;;40414:10;:26;;39963:46;;-1:-1:-1;40041:24:0;;39963:46;;40414:26;;;;;;:::i;:::-;;;;;;;;;40392:48;;40478:11;40453:10;40464;40453:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40558:28;;;:15;:28;;;;;;;:41;;;40730:24;;;;;40723:31;40765:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39781:1008;;;39710:1079;:::o;37214:221::-;37299:14;37316:20;37333:2;37316:16;:20::i;:::-;-1:-1:-1;;;;;37347:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37392:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37214:221:0:o;28480:382::-;-1:-1:-1;;;;;28560:16:0;;28552:61;;;;-1:-1:-1;;;28552:61:0;;26867:2:1;28552:61:0;;;26849:21:1;;;26886:18;;;26879:30;26945:34;26925:18;;;26918:62;26997:18;;28552:61:0;26665:356:1;28552:61:0;26567:4;26591:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26591:16:0;:30;28624:58;;;;-1:-1:-1;;;28624:58:0;;27228:2:1;28624:58:0;;;27210:21:1;27267:2;27247:18;;;27240:30;27306;27286:18;;;27279:58;27354:18;;28624:58:0;27026:352:1;28624:58:0;28695:45;28724:1;28728:2;28732:7;28695:20;:45::i;:::-;-1:-1:-1;;;;;28753:13:0;;;;;;:9;:13;;;;;:18;;28770:1;;28753:13;:18;;28770:1;;28753:18;:::i;:::-;;;;-1:-1:-1;;28782:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28782:21:0;-1:-1:-1;;;;;28782:21:0;;;;;;;;28821:33;;28782:16;;;28821:33;;28782:16;;28821:33;28480:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:118::-;860:5;853:13;846:21;839:5;836:32;826:60;;882:1;879;872:12;897:241;953:6;1006:2;994:9;985:7;981:23;977:32;974:52;;;1022:1;1019;1012:12;974:52;1061:9;1048:23;1080:28;1102:5;1080:28;:::i;1143:131::-;-1:-1:-1;;;;;1218:31:1;;1208:42;;1198:70;;1264:1;1261;1254:12;1279:247;1338:6;1391:2;1379:9;1370:7;1366:23;1362:32;1359:52;;;1407:1;1404;1397:12;1359:52;1446:9;1433:23;1465:31;1490:5;1465:31;:::i;1531:258::-;1603:1;1613:113;1627:6;1624:1;1621:13;1613:113;;;1703:11;;;1697:18;1684:11;;;1677:39;1649:2;1642:10;1613:113;;;1744:6;1741:1;1738:13;1735:48;;;-1:-1:-1;;1779:1:1;1761:16;;1754:27;1531:258::o;1794:::-;1836:3;1874:5;1868:12;1901:6;1896:3;1889:19;1917:63;1973:6;1966:4;1961:3;1957:14;1950:4;1943:5;1939:16;1917:63;:::i;:::-;2034:2;2013:15;-1:-1:-1;;2009:29:1;2000:39;;;;2041:4;1996:50;;1794:258;-1:-1:-1;;1794:258:1:o;2057:220::-;2206:2;2195:9;2188:21;2169:4;2226:45;2267:2;2256:9;2252:18;2244:6;2226:45;:::i;2282:180::-;2341:6;2394:2;2382:9;2373:7;2369:23;2365:32;2362:52;;;2410:1;2407;2400:12;2362:52;-1:-1:-1;2433:23:1;;2282:180;-1:-1:-1;2282:180:1:o;2675:315::-;2743:6;2751;2804:2;2792:9;2783:7;2779:23;2775:32;2772:52;;;2820:1;2817;2810:12;2772:52;2859:9;2846:23;2878:31;2903:5;2878:31;:::i;:::-;2928:5;2980:2;2965:18;;;;2952:32;;-1:-1:-1;;;2675:315:1:o;2995:456::-;3072:6;3080;3088;3141:2;3129:9;3120:7;3116:23;3112:32;3109:52;;;3157:1;3154;3147:12;3109:52;3196:9;3183:23;3215:31;3240:5;3215:31;:::i;:::-;3265:5;-1:-1:-1;3322:2:1;3307:18;;3294:32;3335:33;3294:32;3335:33;:::i;:::-;2995:456;;3387:7;;-1:-1:-1;;;3441:2:1;3426:18;;;;3413:32;;2995:456::o;3456:632::-;3627:2;3679:21;;;3749:13;;3652:18;;;3771:22;;;3598:4;;3627:2;3850:15;;;;3824:2;3809:18;;;3598:4;3893:169;3907:6;3904:1;3901:13;3893:169;;;3968:13;;3956:26;;4037:15;;;;4002:12;;;;3929:1;3922:9;3893:169;;;-1:-1:-1;4079:3:1;;3456:632;-1:-1:-1;;;;;;3456:632:1:o;4093:248::-;4161:6;4169;4222:2;4210:9;4201:7;4197:23;4193:32;4190:52;;;4238:1;4235;4228:12;4190:52;-1:-1:-1;;4261:23:1;;;4331:2;4316:18;;;4303:32;;-1:-1:-1;4093:248:1:o;4346:127::-;4407:10;4402:3;4398:20;4395:1;4388:31;4438:4;4435:1;4428:15;4462:4;4459:1;4452:15;4478:632;4543:5;4573:18;4614:2;4606:6;4603:14;4600:40;;;4620:18;;:::i;:::-;4695:2;4689:9;4663:2;4749:15;;-1:-1:-1;;4745:24:1;;;4771:2;4741:33;4737:42;4725:55;;;4795:18;;;4815:22;;;4792:46;4789:72;;;4841:18;;:::i;:::-;4881:10;4877:2;4870:22;4910:6;4901:15;;4940:6;4932;4925:22;4980:3;4971:6;4966:3;4962:16;4959:25;4956:45;;;4997:1;4994;4987:12;4956:45;5047:6;5042:3;5035:4;5027:6;5023:17;5010:44;5102:1;5095:4;5086:6;5078;5074:19;5070:30;5063:41;;;;4478:632;;;;;:::o;5115:451::-;5184:6;5237:2;5225:9;5216:7;5212:23;5208:32;5205:52;;;5253:1;5250;5243:12;5205:52;5293:9;5280:23;5326:18;5318:6;5315:30;5312:50;;;5358:1;5355;5348:12;5312:50;5381:22;;5434:4;5426:13;;5422:27;-1:-1:-1;5412:55:1;;5463:1;5460;5453:12;5412:55;5486:74;5552:7;5547:2;5534:16;5529:2;5525;5521:11;5486:74;:::i;5571:615::-;5657:6;5665;5718:2;5706:9;5697:7;5693:23;5689:32;5686:52;;;5734:1;5731;5724:12;5686:52;5774:9;5761:23;5803:18;5844:2;5836:6;5833:14;5830:34;;;5860:1;5857;5850:12;5830:34;5898:6;5887:9;5883:22;5873:32;;5943:7;5936:4;5932:2;5928:13;5924:27;5914:55;;5965:1;5962;5955:12;5914:55;6005:2;5992:16;6031:2;6023:6;6020:14;6017:34;;;6047:1;6044;6037:12;6017:34;6100:7;6095:2;6085:6;6082:1;6078:14;6074:2;6070:23;6066:32;6063:45;6060:65;;;6121:1;6118;6111:12;6060:65;6152:2;6144:11;;;;;6174:6;;-1:-1:-1;5571:615:1;;-1:-1:-1;;;;5571:615:1:o;6191:382::-;6256:6;6264;6317:2;6305:9;6296:7;6292:23;6288:32;6285:52;;;6333:1;6330;6323:12;6285:52;6372:9;6359:23;6391:31;6416:5;6391:31;:::i;:::-;6441:5;-1:-1:-1;6498:2:1;6483:18;;6470:32;6511:30;6470:32;6511:30;:::i;:::-;6560:7;6550:17;;;6191:382;;;;;:::o;6578:795::-;6673:6;6681;6689;6697;6750:3;6738:9;6729:7;6725:23;6721:33;6718:53;;;6767:1;6764;6757:12;6718:53;6806:9;6793:23;6825:31;6850:5;6825:31;:::i;:::-;6875:5;-1:-1:-1;6932:2:1;6917:18;;6904:32;6945:33;6904:32;6945:33;:::i;:::-;6997:7;-1:-1:-1;7051:2:1;7036:18;;7023:32;;-1:-1:-1;7106:2:1;7091:18;;7078:32;7133:18;7122:30;;7119:50;;;7165:1;7162;7155:12;7119:50;7188:22;;7241:4;7233:13;;7229:27;-1:-1:-1;7219:55:1;;7270:1;7267;7260:12;7219:55;7293:74;7359:7;7354:2;7341:16;7336:2;7332;7328:11;7293:74;:::i;:::-;7283:84;;;6578:795;;;;;;;:::o;7378:388::-;7446:6;7454;7507:2;7495:9;7486:7;7482:23;7478:32;7475:52;;;7523:1;7520;7513:12;7475:52;7562:9;7549:23;7581:31;7606:5;7581:31;:::i;:::-;7631:5;-1:-1:-1;7688:2:1;7673:18;;7660:32;7701:33;7660:32;7701:33;:::i;7771:356::-;7973:2;7955:21;;;7992:18;;;7985:30;8051:34;8046:2;8031:18;;8024:62;8118:2;8103:18;;7771:356::o;8132:380::-;8211:1;8207:12;;;;8254;;;8275:61;;8329:4;8321:6;8317:17;8307:27;;8275:61;8382:2;8374:6;8371:14;8351:18;8348:38;8345:161;;;8428:10;8423:3;8419:20;8416:1;8409:31;8463:4;8460:1;8453:15;8491:4;8488:1;8481:15;8345:161;;8132:380;;;:::o;9757:413::-;9959:2;9941:21;;;9998:2;9978:18;;;9971:30;10037:34;10032:2;10017:18;;10010:62;-1:-1:-1;;;10103:2:1;10088:18;;10081:47;10160:3;10145:19;;9757:413::o;10175:346::-;10377:2;10359:21;;;10416:2;10396:18;;;10389:30;-1:-1:-1;;;10450:2:1;10435:18;;10428:52;10512:2;10497:18;;10175:346::o;11631:127::-;11692:10;11687:3;11683:20;11680:1;11673:31;11723:4;11720:1;11713:15;11747:4;11744:1;11737:15;11763:128;11803:3;11834:1;11830:6;11827:1;11824:13;11821:39;;;11840:18;;:::i;:::-;-1:-1:-1;11876:9:1;;11763:128::o;12247:168::-;12287:7;12353:1;12349;12345:6;12341:14;12338:1;12335:21;12330:1;12323:9;12316:17;12312:45;12309:71;;;12360:18;;:::i;:::-;-1:-1:-1;12400:9:1;;12247:168::o;12767:135::-;12806:3;-1:-1:-1;;12827:17:1;;12824:43;;;12847:18;;:::i;:::-;-1:-1:-1;12894:1:1;12883:13;;12767:135::o;13529:127::-;13590:10;13585:3;13581:20;13578:1;13571:31;13621:4;13618:1;13611:15;13645:4;13642:1;13635:15;14011:251;14081:6;14134:2;14122:9;14113:7;14109:23;14105:32;14102:52;;;14150:1;14147;14140:12;14102:52;14182:9;14176:16;14201:31;14226:5;14201:31;:::i;14610:184::-;14680:6;14733:2;14721:9;14712:7;14708:23;14704:32;14701:52;;;14749:1;14746;14739:12;14701:52;-1:-1:-1;14772:16:1;;14610:184;-1:-1:-1;14610:184:1:o;15793:245::-;15860:6;15913:2;15901:9;15892:7;15888:23;15884:32;15881:52;;;15929:1;15926;15919:12;15881:52;15961:9;15955:16;15980:28;16002:5;15980:28;:::i;20292:1527::-;20516:3;20554:6;20548:13;20580:4;20593:51;20637:6;20632:3;20627:2;20619:6;20615:15;20593:51;:::i;:::-;20707:13;;20666:16;;;;20729:55;20707:13;20666:16;20751:15;;;20729:55;:::i;:::-;20873:13;;20806:20;;;20846:1;;20933;20955:18;;;;21008;;;;21035:93;;21113:4;21103:8;21099:19;21087:31;;21035:93;21176:2;21166:8;21163:16;21143:18;21140:40;21137:167;;;-1:-1:-1;;;21203:33:1;;21259:4;21256:1;21249:15;21289:4;21210:3;21277:17;21137:167;21320:18;21347:110;;;;21471:1;21466:328;;;;21313:481;;21347:110;-1:-1:-1;;21382:24:1;;21368:39;;21427:20;;;;-1:-1:-1;21347:110:1;;21466:328;20239:1;20232:14;;;20276:4;20263:18;;21561:1;21575:169;21589:8;21586:1;21583:15;21575:169;;;21671:14;;21656:13;;;21649:37;21714:16;;;;21606:10;;21575:169;;;21579:3;;21775:8;21768:5;21764:20;21757:27;;21313:481;-1:-1:-1;21810:3:1;;20292:1527;-1:-1:-1;;;;;;;;;;;20292:1527:1:o;24862:125::-;24902:4;24930:1;24927;24924:8;24921:34;;;24935:18;;:::i;:::-;-1:-1:-1;24972:9:1;;24862:125::o;24992:414::-;25194:2;25176:21;;;25233:2;25213:18;;;25206:30;25272:34;25267:2;25252:18;;25245:62;-1:-1:-1;;;25338:2:1;25323:18;;25316:48;25396:3;25381:19;;24992:414::o;25411:127::-;25472:10;25467:3;25463:20;25460:1;25453:31;25503:4;25500:1;25493:15;25527:4;25524:1;25517:15;25543:120;25583:1;25609;25599:35;;25614:18;;:::i;:::-;-1:-1:-1;25648:9:1;;25543:120::o;25668:112::-;25700:1;25726;25716:35;;25731:18;;:::i;:::-;-1:-1:-1;25765:9:1;;25668:112::o;25785:489::-;-1:-1:-1;;;;;26054:15:1;;;26036:34;;26106:15;;26101:2;26086:18;;26079:43;26153:2;26138:18;;26131:34;;;26201:3;26196:2;26181:18;;26174:31;;;25979:4;;26222:46;;26248:19;;26240:6;26222:46;:::i;:::-;26214:54;25785:489;-1:-1:-1;;;;;;25785:489:1:o;26279:249::-;26348:6;26401:2;26389:9;26380:7;26376:23;26372:32;26369:52;;;26417:1;26414;26407:12;26369:52;26449:9;26443:16;26468:30;26492:5;26468:30;:::i;26533:127::-;26594:10;26589:3;26585:20;26582:1;26575:31;26625:4;26622:1;26615:15;26649:4;26646:1;26639:15

Swarm Source

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