ETH Price: $3,359.23 (-1.66%)
Gas: 8 Gwei

Token

My Pet Hooligan (MPH)
 

Overview

Max Total Supply

8,888 MPH

Holders

3,510

Market

Volume (24H)

2.549 ETH

Min Price (24H)

$1,068.23 @ 0.318000 ETH

Max Price (24H)

$3,963.89 @ 1.180000 ETH

Other Info

Balance
1 MPH
0xC073786CF42cf5fa153400Cfb509E4e681CEe980
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

An NFT collection of 8888 Pet Hooligans – unique 3D characters built with a wide variety of unique traits on the Ethereum blockchain. Not only will your NFT be packed with utility, they will also serve as your unique playable characters in our ever-expanding Metaverse, The Rab...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MPH

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-13
*/

// SPDX-License-Identifier: Unlimited
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

contract MPHPresale {

	mapping (address => uint8) public _presaleAddresses;
	mapping (address => bool) public _presaleAddressesMinted;
	address public owner;

    constructor () {
        owner = msg.sender;
    }

    function setMainContract(address _address) public {
        require(msg.sender == owner, "My Pet Hooligan: You are not the owner");
        owner = _address;
    }

    function addPresalers(address[] calldata _addresses, uint8[] calldata _amounts) public {
        require(msg.sender == owner, "My Pet Hooligan: You are not the owner");
        for (uint x = 0; x < _addresses.length; x++) {
            _presaleAddresses[_addresses[x]] = _amounts[x];
        }
    }
    
    function removePresalers(address[] calldata _addresses) public {
        require(msg.sender == owner, "My Pet Hooligan: You are not the owner");
        for (uint x = 0; x < _addresses.length; x++) {
            _presaleAddresses[_addresses[x]] = 0;
        }
    }

    function isInPresale(address _address) public view returns (uint8) {
        return _presaleAddresses[_address];
    }

    function isInMintedPresale(address _address) public view returns (bool) {
        return _presaleAddressesMinted[_address];
    }

    function addToMinted(address _address) public {
        require(msg.sender == owner, "My Pet Hooligan: You are not the owner");
        _presaleAddressesMinted[_address] = true;
    }

}

contract MPH is ERC721Enumerable, Ownable, ReentrancyGuard {
    uint public constant MAX = 8888;
	string _baseTokenURI;
	bool _didWeGetTheReserves = false;
	uint _saleTime = 1639497600;
	uint _presaleTime = 1639411200;
	uint _price = 80000000000000000;
	mapping (uint256 => string) public _tokenURI;
    address public _presaleContract;
	address[] public _presaleAddresses;
	address[] public _presaleAddressesMinted;
	
    constructor(string memory baseURI) ERC721("My Pet Hooligan", "MPH")  {
        setBaseURI(baseURI);
    }

    function mint(uint _count) public payable nonReentrant {
        require(totalSupply() + _count <= MAX, "My Pet Hooligan: Not enough left to mint");
        require(totalSupply() < MAX, "My Pet Hooligan: Not enough left to mint");
        require(_count <= 5, "My Pet Hooligan: Exceeds the max you can mint");
        require(msg.value >= price(_count), "My Pet Hooligan: Value below price");
        

        if (block.timestamp >= _saleTime) {
            for (uint x = 0; x < _count; x++) {
                _safeMint(msg.sender, totalSupply());
            }
        } else if (block.timestamp < _saleTime && block.timestamp >= _presaleTime) {
            require(_count <= MPHPresale(_presaleContract).isInPresale(msg.sender), "My Pet Hooligan: Exceeds the max you can mint in the presale");
            require(MPHPresale(_presaleContract).isInPresale(msg.sender) > 0, "My Pet Hooligan: You are not in the presale");
            require(MPHPresale(_presaleContract).isInMintedPresale(msg.sender) == false, "My Pet Hooligan: You already minted from the presale");
            for (uint x = 0; x < _count; x++) {
                _safeMint(msg.sender, totalSupply());
            }
            MPHPresale(_presaleContract).addToMinted(msg.sender);
        }
    }

    function price(uint _count) public view returns (uint256) {
        return _price * _count;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    
    function setNewPrice(uint _newPrice) public onlyOwner {
        _price = _newPrice;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setPresaleAddress(address _address) public onlyOwner {
        _presaleContract = _address;
    }
    
    function changeSaleTime(uint _newDate) public onlyOwner {
        _saleTime = _newDate;
    }
    
    function changePreSaleTime(uint _newDate) public onlyOwner {
        _presaleTime = _newDate;
    }
    
    function getReserves44() public onlyOwner {
        require(totalSupply() + 44 <= MAX, "My Pet Hooligan: Not enough left to mint");
        for (uint x = 0; x < 44; x++) {
            _safeMint(msg.sender, totalSupply());
        }
    }

    function walletOfOwner(address _owner) external view returns(uint256[] memory) {
        uint tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint i = 0; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function withdrawAll() public payable onlyOwner {
        require(payable(_msgSender()).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_presaleAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_presaleAddressesMinted","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_presaleContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newDate","type":"uint256"}],"name":"changePreSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newDate","type":"uint256"}],"name":"changeSaleTime","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":[],"name":"getReserves44","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setNewPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setPresaleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600d805460ff191690556361b8bf80600e556361b76e00600f5567011c37937e0800006010553480156200003757600080fd5b5060405162002b4938038062002b498339810160408190526200005a916200026a565b604080518082018252600f81526e26bc902832ba102437b7b634b3b0b760891b60208083019182528351808501909452600384526209aa0960eb1b908401528151919291620000ac91600091620001c4565b508051620000c2906001906020840190620001c4565b505050620000df620000d9620000f660201b60201c565b620000fa565b6001600b55620000ef816200014c565b5062000399565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001c090600c906020840190620001c4565b5050565b828054620001d29062000346565b90600052602060002090601f016020900481019282620001f6576000855562000241565b82601f106200021157805160ff191683800117855562000241565b8280016001018555821562000241579182015b828111156200024157825182559160200191906001019062000224565b506200024f92915062000253565b5090565b5b808211156200024f576000815560010162000254565b600060208083850312156200027e57600080fd5b82516001600160401b03808211156200029657600080fd5b818501915085601f830112620002ab57600080fd5b815181811115620002c057620002c062000383565b604051601f8201601f19908116603f01168101908382118183101715620002eb57620002eb62000383565b8160405282815288868487010111156200030457600080fd5b600093505b8284101562000328578484018601518185018701529285019262000309565b828411156200033a5760008684830101525b98975050505050505050565b600181811c908216806200035b57607f821691505b602082108114156200037d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6127a080620003a96000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a9bed551116100a0578063d49d51811161006f578063d49d518114610593578063d5ae7ad6146105a9578063e985e9c5146105c9578063ee8cdd4e14610612578063f2fde38b1461063257600080fd5b8063a9bed5511461051e578063b88d4fde14610533578063bdb9f28d14610553578063c87b56dd1461057357600080fd5b80638da5cb5b116100dc5780638da5cb5b146104b857806395d89b41146104d6578063a0712d68146104eb578063a22cb465146104fe57600080fd5b806370a082311461045b578063715018a61461047b578063853828b6146104905780638d17e7121461049857600080fd5b806323b872dd1161019057806342842e0e1161015f57806342842e0e146103ae578063438b6300146103ce5780634f6ccce7146103fb57806355f804b31461041b5780636352211e1461043b57600080fd5b806323b872dd1461032e57806326a49e371461034e5780632bd7c0251461036e5780632f745c591461038e57600080fd5b80630ff10848116101cc5780630ff10848146102af578063119b2a20146102cf5780631495c18a146102ef57806318160ddd1461030f57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004612312565b610652565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861067d565b60405161022a91906124ad565b34801561026157600080fd5b50610275610270366004612395565b61070f565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a83660046122cb565b6107a9565b005b3480156102bb57600080fd5b506102ad6102ca366004612395565b6108bf565b3480156102db57600080fd5b506102756102ea366004612395565b6108ee565b3480156102fb57600080fd5b50601254610275906001600160a01b031681565b34801561031b57600080fd5b506008545b60405190815260200161022a565b34801561033a57600080fd5b506102ad6103493660046121dc565b610918565b34801561035a57600080fd5b50610320610369366004612395565b610949565b34801561037a57600080fd5b50610275610389366004612395565b610959565b34801561039a57600080fd5b506103206103a93660046122cb565b610969565b3480156103ba57600080fd5b506102ad6103c93660046121dc565b6109ff565b3480156103da57600080fd5b506103ee6103e936600461218e565b610a1a565b60405161022a9190612469565b34801561040757600080fd5b50610320610416366004612395565b610abc565b34801561042757600080fd5b506102ad61043636600461234c565b610b4f565b34801561044757600080fd5b50610275610456366004612395565b610b90565b34801561046757600080fd5b5061032061047636600461218e565b610c07565b34801561048757600080fd5b506102ad610c8e565b6102ad610cc4565b3480156104a457600080fd5b506102486104b3366004612395565b610d12565b3480156104c457600080fd5b50600a546001600160a01b0316610275565b3480156104e257600080fd5b50610248610dac565b6102ad6104f9366004612395565b610dbb565b34801561050a57600080fd5b506102ad610519366004612294565b6112da565b34801561052a57600080fd5b506102ad61139f565b34801561053f57600080fd5b506102ad61054e366004612218565b61142c565b34801561055f57600080fd5b506102ad61056e36600461218e565b611464565b34801561057f57600080fd5b5061024861058e366004612395565b6114b0565b34801561059f57600080fd5b506103206122b881565b3480156105b557600080fd5b506102ad6105c4366004612395565b61158b565b3480156105d557600080fd5b5061021e6105e43660046121a9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061e57600080fd5b506102ad61062d366004612395565b6115ba565b34801561063e57600080fd5b506102ad61064d36600461218e565b6115e9565b60006001600160e01b0319821663780e9d6360e01b1480610677575061067782611681565b92915050565b60606000805461068c9061266e565b80601f01602080910402602001604051908101604052809291908181526020018280546106b89061266e565b80156107055780601f106106da57610100808354040283529160200191610705565b820191906000526020600020905b8154815290600101906020018083116106e857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661078d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107b482610b90565b9050806001600160a01b0316836001600160a01b031614156108225760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610784565b336001600160a01b038216148061083e575061083e81336105e4565b6108b05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610784565b6108ba83836116d1565b505050565b600a546001600160a01b031633146108e95760405162461bcd60e51b81526004016107849061255a565b600f55565b601481815481106108fe57600080fd5b6000918252602090912001546001600160a01b0316905081565b610922338261173f565b61093e5760405162461bcd60e51b81526004016107849061258f565b6108ba838383611836565b600081601054610677919061260c565b601381815481106108fe57600080fd5b600061097483610c07565b82106109d65760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610784565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108ba8383836040518060200160405280600081525061142c565b60606000610a2783610c07565b905060008167ffffffffffffffff811115610a4457610a44612730565b604051908082528060200260200182016040528015610a6d578160200160208202803683370190505b50905060005b82811015610ab457610a858582610969565b828281518110610a9757610a9761271a565b602090810291909101015280610aac816126a9565b915050610a73565b509392505050565b6000610ac760085490565b8210610b2a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610784565b60088281548110610b3d57610b3d61271a565b90600052602060002001549050919050565b600a546001600160a01b03163314610b795760405162461bcd60e51b81526004016107849061255a565b8051610b8c90600c906020840190612063565b5050565b6000818152600260205260408120546001600160a01b0316806106775760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610784565b60006001600160a01b038216610c725760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610784565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610cb85760405162461bcd60e51b81526004016107849061255a565b610cc260006119e1565b565b600a546001600160a01b03163314610cee5760405162461bcd60e51b81526004016107849061255a565b60405133904780156108fc02916000818181858888f19350505050610cc257600080fd5b60116020526000908152604090208054610d2b9061266e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d579061266e565b8015610da45780601f10610d7957610100808354040283529160200191610da4565b820191906000526020600020905b815481529060010190602001808311610d8757829003601f168201915b505050505081565b60606001805461068c9061266e565b6002600b541415610e0e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610784565b6002600b556122b881610e2060085490565b610e2a91906125e0565b1115610e485760405162461bcd60e51b815260040161078490612512565b6122b8610e5460085490565b10610e715760405162461bcd60e51b815260040161078490612512565b6005811115610ed85760405162461bcd60e51b815260206004820152602d60248201527f4d792050657420486f6f6c6967616e3a204578636565647320746865206d617860448201526c081e5bdd4818d85b881b5a5b9d609a1b6064820152608401610784565b610ee181610949565b341015610f3b5760405162461bcd60e51b815260206004820152602260248201527f4d792050657420486f6f6c6967616e3a2056616c75652062656c6f7720707269604482015261636560f01b6064820152608401610784565b600e544210610f795760005b81811015610f7357610f6133610f5c60085490565b611a33565b80610f6b816126a9565b915050610f47565b506112d2565b600e5442108015610f8c5750600f544210155b156112d257601254604051632ee65a1160e21b81523360048201526001600160a01b039091169063bb9968449060240160206040518083038186803b158015610fd457600080fd5b505afa158015610fe8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100c91906123ae565b60ff168111156110845760405162461bcd60e51b815260206004820152603c60248201527f4d792050657420486f6f6c6967616e3a204578636565647320746865206d617860448201527f20796f752063616e206d696e7420696e207468652070726573616c65000000006064820152608401610784565b601254604051632ee65a1160e21b81523360048201526000916001600160a01b03169063bb9968449060240160206040518083038186803b1580156110c857600080fd5b505afa1580156110dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110091906123ae565b60ff16116111645760405162461bcd60e51b815260206004820152602b60248201527f4d792050657420486f6f6c6967616e3a20596f7520617265206e6f7420696e2060448201526a7468652070726573616c6560a81b6064820152608401610784565b6012546040516304037a0d60e31b81523360048201526001600160a01b039091169063201bd0689060240160206040518083038186803b1580156111a757600080fd5b505afa1580156111bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111df91906122f5565b156112495760405162461bcd60e51b815260206004820152603460248201527f4d792050657420486f6f6c6967616e3a20596f7520616c7265616479206d696e6044820152737465642066726f6d207468652070726573616c6560601b6064820152608401610784565b60005b818110156112735761126133610f5c60085490565b8061126b816126a9565b91505061124c565b506012546040516335b1bca560e21b81523360048201526001600160a01b039091169063d6c6f29490602401600060405180830381600087803b1580156112b957600080fd5b505af11580156112cd573d6000803e3d6000fd5b505050505b506001600b55565b6001600160a01b0382163314156113335760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610784565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113c95760405162461bcd60e51b81526004016107849061255a565b6122b86113d560085490565b6113e090602c6125e0565b11156113fe5760405162461bcd60e51b815260040161078490612512565b60005b602c8110156114295761141733610f5c60085490565b80611421816126a9565b915050611401565b50565b611436338361173f565b6114525760405162461bcd60e51b81526004016107849061258f565b61145e84848484611a4d565b50505050565b600a546001600160a01b0316331461148e5760405162461bcd60e51b81526004016107849061255a565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260409020546060906001600160a01b031661152f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610784565b6000611539611a80565b905060008151116115595760405180602001604052806000815250611584565b8061156384611a8f565b6040516020016115749291906123fd565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115b55760405162461bcd60e51b81526004016107849061255a565b600e55565b600a546001600160a01b031633146115e45760405162461bcd60e51b81526004016107849061255a565b601055565b600a546001600160a01b031633146116135760405162461bcd60e51b81526004016107849061255a565b6001600160a01b0381166116785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610784565b611429816119e1565b60006001600160e01b031982166380ac58cd60e01b14806116b257506001600160e01b03198216635b5e139f60e01b145b8061067757506301ffc9a760e01b6001600160e01b0319831614610677565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061170682610b90565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117b85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610784565b60006117c383610b90565b9050806001600160a01b0316846001600160a01b031614806117fe5750836001600160a01b03166117f38461070f565b6001600160a01b0316145b8061182e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661184982610b90565b6001600160a01b0316146118b15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610784565b6001600160a01b0382166119135760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610784565b61191e838383611b8d565b6119296000826116d1565b6001600160a01b038316600090815260036020526040812080546001929061195290849061262b565b90915550506001600160a01b03821660009081526003602052604081208054600192906119809084906125e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b8c828260405180602001604052806000815250611c45565b611a58848484611836565b611a6484848484611c78565b61145e5760405162461bcd60e51b8152600401610784906124c0565b6060600c805461068c9061266e565b606081611ab35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611add5780611ac7816126a9565b9150611ad69050600a836125f8565b9150611ab7565b60008167ffffffffffffffff811115611af857611af8612730565b6040519080825280601f01601f191660200182016040528015611b22576020820181803683370190505b5090505b841561182e57611b3760018361262b565b9150611b44600a866126c4565b611b4f9060306125e0565b60f81b818381518110611b6457611b6461271a565b60200101906001600160f81b031916908160001a905350611b86600a866125f8565b9450611b26565b6001600160a01b038316611be857611be381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c0b565b816001600160a01b0316836001600160a01b031614611c0b57611c0b8382611d85565b6001600160a01b038216611c22576108ba81611e22565b826001600160a01b0316826001600160a01b0316146108ba576108ba8282611ed1565b611c4f8383611f15565b611c5c6000848484611c78565b6108ba5760405162461bcd60e51b8152600401610784906124c0565b60006001600160a01b0384163b15611d7a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cbc90339089908890889060040161242c565b602060405180830381600087803b158015611cd657600080fd5b505af1925050508015611d06575060408051601f3d908101601f19168201909252611d039181019061232f565b60015b611d60573d808015611d34576040519150601f19603f3d011682016040523d82523d6000602084013e611d39565b606091505b508051611d585760405162461bcd60e51b8152600401610784906124c0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061182e565b506001949350505050565b60006001611d9284610c07565b611d9c919061262b565b600083815260076020526040902054909150808214611def576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e349060019061262b565b60008381526009602052604081205460088054939450909284908110611e5c57611e5c61271a565b906000526020600020015490508060088381548110611e7d57611e7d61271a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611eb557611eb5612704565b6001900381819060005260206000200160009055905550505050565b6000611edc83610c07565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611f6b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610784565b6000818152600260205260409020546001600160a01b031615611fd05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610784565b611fdc60008383611b8d565b6001600160a01b03821660009081526003602052604081208054600192906120059084906125e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461206f9061266e565b90600052602060002090601f01602090048101928261209157600085556120d7565b82601f106120aa57805160ff19168380011785556120d7565b828001600101855582156120d7579182015b828111156120d75782518255916020019190600101906120bc565b506120e39291506120e7565b5090565b5b808211156120e357600081556001016120e8565b600067ffffffffffffffff8084111561211757612117612730565b604051601f8501601f19908116603f0116810190828211818310171561213f5761213f612730565b8160405280935085815286868601111561215857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461218957600080fd5b919050565b6000602082840312156121a057600080fd5b61158482612172565b600080604083850312156121bc57600080fd5b6121c583612172565b91506121d360208401612172565b90509250929050565b6000806000606084860312156121f157600080fd5b6121fa84612172565b925061220860208501612172565b9150604084013590509250925092565b6000806000806080858703121561222e57600080fd5b61223785612172565b935061224560208601612172565b925060408501359150606085013567ffffffffffffffff81111561226857600080fd5b8501601f8101871361227957600080fd5b612288878235602084016120fc565b91505092959194509250565b600080604083850312156122a757600080fd5b6122b083612172565b915060208301356122c081612746565b809150509250929050565b600080604083850312156122de57600080fd5b6122e783612172565b946020939093013593505050565b60006020828403121561230757600080fd5b815161158481612746565b60006020828403121561232457600080fd5b813561158481612754565b60006020828403121561234157600080fd5b815161158481612754565b60006020828403121561235e57600080fd5b813567ffffffffffffffff81111561237557600080fd5b8201601f8101841361238657600080fd5b61182e848235602084016120fc565b6000602082840312156123a757600080fd5b5035919050565b6000602082840312156123c057600080fd5b815160ff8116811461158457600080fd5b600081518084526123e9816020860160208601612642565b601f01601f19169290920160200192915050565b6000835161240f818460208801612642565b835190830190612423818360208801612642565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061245f908301846123d1565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124a157835183529284019291840191600101612485565b50909695505050505050565b60208152600061158460208301846123d1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f4d792050657420486f6f6c6967616e3a204e6f7420656e6f756768206c656674604082015267081d1bc81b5a5b9d60c21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156125f3576125f36126d8565b500190565b600082612607576126076126ee565b500490565b6000816000190483118215151615612626576126266126d8565b500290565b60008282101561263d5761263d6126d8565b500390565b60005b8381101561265d578181015183820152602001612645565b8381111561145e5750506000910152565b600181811c9082168061268257607f821691505b602082108114156126a357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126bd576126bd6126d8565b5060010190565b6000826126d3576126d36126ee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461142957600080fd5b6001600160e01b03198116811461142957600080fdfea26469706673582212201fb7263bd6ce220121962ebf7852755f42c5364127d222f96bf4462a302a0f8b64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6d79706574686f6f6c6967616e2e636f6d2f6d6574612f00

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a9bed551116100a0578063d49d51811161006f578063d49d518114610593578063d5ae7ad6146105a9578063e985e9c5146105c9578063ee8cdd4e14610612578063f2fde38b1461063257600080fd5b8063a9bed5511461051e578063b88d4fde14610533578063bdb9f28d14610553578063c87b56dd1461057357600080fd5b80638da5cb5b116100dc5780638da5cb5b146104b857806395d89b41146104d6578063a0712d68146104eb578063a22cb465146104fe57600080fd5b806370a082311461045b578063715018a61461047b578063853828b6146104905780638d17e7121461049857600080fd5b806323b872dd1161019057806342842e0e1161015f57806342842e0e146103ae578063438b6300146103ce5780634f6ccce7146103fb57806355f804b31461041b5780636352211e1461043b57600080fd5b806323b872dd1461032e57806326a49e371461034e5780632bd7c0251461036e5780632f745c591461038e57600080fd5b80630ff10848116101cc5780630ff10848146102af578063119b2a20146102cf5780631495c18a146102ef57806318160ddd1461030f57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004612312565b610652565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061024861067d565b60405161022a91906124ad565b34801561026157600080fd5b50610275610270366004612395565b61070f565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a83660046122cb565b6107a9565b005b3480156102bb57600080fd5b506102ad6102ca366004612395565b6108bf565b3480156102db57600080fd5b506102756102ea366004612395565b6108ee565b3480156102fb57600080fd5b50601254610275906001600160a01b031681565b34801561031b57600080fd5b506008545b60405190815260200161022a565b34801561033a57600080fd5b506102ad6103493660046121dc565b610918565b34801561035a57600080fd5b50610320610369366004612395565b610949565b34801561037a57600080fd5b50610275610389366004612395565b610959565b34801561039a57600080fd5b506103206103a93660046122cb565b610969565b3480156103ba57600080fd5b506102ad6103c93660046121dc565b6109ff565b3480156103da57600080fd5b506103ee6103e936600461218e565b610a1a565b60405161022a9190612469565b34801561040757600080fd5b50610320610416366004612395565b610abc565b34801561042757600080fd5b506102ad61043636600461234c565b610b4f565b34801561044757600080fd5b50610275610456366004612395565b610b90565b34801561046757600080fd5b5061032061047636600461218e565b610c07565b34801561048757600080fd5b506102ad610c8e565b6102ad610cc4565b3480156104a457600080fd5b506102486104b3366004612395565b610d12565b3480156104c457600080fd5b50600a546001600160a01b0316610275565b3480156104e257600080fd5b50610248610dac565b6102ad6104f9366004612395565b610dbb565b34801561050a57600080fd5b506102ad610519366004612294565b6112da565b34801561052a57600080fd5b506102ad61139f565b34801561053f57600080fd5b506102ad61054e366004612218565b61142c565b34801561055f57600080fd5b506102ad61056e36600461218e565b611464565b34801561057f57600080fd5b5061024861058e366004612395565b6114b0565b34801561059f57600080fd5b506103206122b881565b3480156105b557600080fd5b506102ad6105c4366004612395565b61158b565b3480156105d557600080fd5b5061021e6105e43660046121a9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061e57600080fd5b506102ad61062d366004612395565b6115ba565b34801561063e57600080fd5b506102ad61064d36600461218e565b6115e9565b60006001600160e01b0319821663780e9d6360e01b1480610677575061067782611681565b92915050565b60606000805461068c9061266e565b80601f01602080910402602001604051908101604052809291908181526020018280546106b89061266e565b80156107055780601f106106da57610100808354040283529160200191610705565b820191906000526020600020905b8154815290600101906020018083116106e857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661078d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107b482610b90565b9050806001600160a01b0316836001600160a01b031614156108225760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610784565b336001600160a01b038216148061083e575061083e81336105e4565b6108b05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610784565b6108ba83836116d1565b505050565b600a546001600160a01b031633146108e95760405162461bcd60e51b81526004016107849061255a565b600f55565b601481815481106108fe57600080fd5b6000918252602090912001546001600160a01b0316905081565b610922338261173f565b61093e5760405162461bcd60e51b81526004016107849061258f565b6108ba838383611836565b600081601054610677919061260c565b601381815481106108fe57600080fd5b600061097483610c07565b82106109d65760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610784565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108ba8383836040518060200160405280600081525061142c565b60606000610a2783610c07565b905060008167ffffffffffffffff811115610a4457610a44612730565b604051908082528060200260200182016040528015610a6d578160200160208202803683370190505b50905060005b82811015610ab457610a858582610969565b828281518110610a9757610a9761271a565b602090810291909101015280610aac816126a9565b915050610a73565b509392505050565b6000610ac760085490565b8210610b2a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610784565b60088281548110610b3d57610b3d61271a565b90600052602060002001549050919050565b600a546001600160a01b03163314610b795760405162461bcd60e51b81526004016107849061255a565b8051610b8c90600c906020840190612063565b5050565b6000818152600260205260408120546001600160a01b0316806106775760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610784565b60006001600160a01b038216610c725760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610784565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610cb85760405162461bcd60e51b81526004016107849061255a565b610cc260006119e1565b565b600a546001600160a01b03163314610cee5760405162461bcd60e51b81526004016107849061255a565b60405133904780156108fc02916000818181858888f19350505050610cc257600080fd5b60116020526000908152604090208054610d2b9061266e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d579061266e565b8015610da45780601f10610d7957610100808354040283529160200191610da4565b820191906000526020600020905b815481529060010190602001808311610d8757829003601f168201915b505050505081565b60606001805461068c9061266e565b6002600b541415610e0e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610784565b6002600b556122b881610e2060085490565b610e2a91906125e0565b1115610e485760405162461bcd60e51b815260040161078490612512565b6122b8610e5460085490565b10610e715760405162461bcd60e51b815260040161078490612512565b6005811115610ed85760405162461bcd60e51b815260206004820152602d60248201527f4d792050657420486f6f6c6967616e3a204578636565647320746865206d617860448201526c081e5bdd4818d85b881b5a5b9d609a1b6064820152608401610784565b610ee181610949565b341015610f3b5760405162461bcd60e51b815260206004820152602260248201527f4d792050657420486f6f6c6967616e3a2056616c75652062656c6f7720707269604482015261636560f01b6064820152608401610784565b600e544210610f795760005b81811015610f7357610f6133610f5c60085490565b611a33565b80610f6b816126a9565b915050610f47565b506112d2565b600e5442108015610f8c5750600f544210155b156112d257601254604051632ee65a1160e21b81523360048201526001600160a01b039091169063bb9968449060240160206040518083038186803b158015610fd457600080fd5b505afa158015610fe8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100c91906123ae565b60ff168111156110845760405162461bcd60e51b815260206004820152603c60248201527f4d792050657420486f6f6c6967616e3a204578636565647320746865206d617860448201527f20796f752063616e206d696e7420696e207468652070726573616c65000000006064820152608401610784565b601254604051632ee65a1160e21b81523360048201526000916001600160a01b03169063bb9968449060240160206040518083038186803b1580156110c857600080fd5b505afa1580156110dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110091906123ae565b60ff16116111645760405162461bcd60e51b815260206004820152602b60248201527f4d792050657420486f6f6c6967616e3a20596f7520617265206e6f7420696e2060448201526a7468652070726573616c6560a81b6064820152608401610784565b6012546040516304037a0d60e31b81523360048201526001600160a01b039091169063201bd0689060240160206040518083038186803b1580156111a757600080fd5b505afa1580156111bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111df91906122f5565b156112495760405162461bcd60e51b815260206004820152603460248201527f4d792050657420486f6f6c6967616e3a20596f7520616c7265616479206d696e6044820152737465642066726f6d207468652070726573616c6560601b6064820152608401610784565b60005b818110156112735761126133610f5c60085490565b8061126b816126a9565b91505061124c565b506012546040516335b1bca560e21b81523360048201526001600160a01b039091169063d6c6f29490602401600060405180830381600087803b1580156112b957600080fd5b505af11580156112cd573d6000803e3d6000fd5b505050505b506001600b55565b6001600160a01b0382163314156113335760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610784565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113c95760405162461bcd60e51b81526004016107849061255a565b6122b86113d560085490565b6113e090602c6125e0565b11156113fe5760405162461bcd60e51b815260040161078490612512565b60005b602c8110156114295761141733610f5c60085490565b80611421816126a9565b915050611401565b50565b611436338361173f565b6114525760405162461bcd60e51b81526004016107849061258f565b61145e84848484611a4d565b50505050565b600a546001600160a01b0316331461148e5760405162461bcd60e51b81526004016107849061255a565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260409020546060906001600160a01b031661152f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610784565b6000611539611a80565b905060008151116115595760405180602001604052806000815250611584565b8061156384611a8f565b6040516020016115749291906123fd565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115b55760405162461bcd60e51b81526004016107849061255a565b600e55565b600a546001600160a01b031633146115e45760405162461bcd60e51b81526004016107849061255a565b601055565b600a546001600160a01b031633146116135760405162461bcd60e51b81526004016107849061255a565b6001600160a01b0381166116785760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610784565b611429816119e1565b60006001600160e01b031982166380ac58cd60e01b14806116b257506001600160e01b03198216635b5e139f60e01b145b8061067757506301ffc9a760e01b6001600160e01b0319831614610677565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061170682610b90565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117b85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610784565b60006117c383610b90565b9050806001600160a01b0316846001600160a01b031614806117fe5750836001600160a01b03166117f38461070f565b6001600160a01b0316145b8061182e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661184982610b90565b6001600160a01b0316146118b15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610784565b6001600160a01b0382166119135760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610784565b61191e838383611b8d565b6119296000826116d1565b6001600160a01b038316600090815260036020526040812080546001929061195290849061262b565b90915550506001600160a01b03821660009081526003602052604081208054600192906119809084906125e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b8c828260405180602001604052806000815250611c45565b611a58848484611836565b611a6484848484611c78565b61145e5760405162461bcd60e51b8152600401610784906124c0565b6060600c805461068c9061266e565b606081611ab35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611add5780611ac7816126a9565b9150611ad69050600a836125f8565b9150611ab7565b60008167ffffffffffffffff811115611af857611af8612730565b6040519080825280601f01601f191660200182016040528015611b22576020820181803683370190505b5090505b841561182e57611b3760018361262b565b9150611b44600a866126c4565b611b4f9060306125e0565b60f81b818381518110611b6457611b6461271a565b60200101906001600160f81b031916908160001a905350611b86600a866125f8565b9450611b26565b6001600160a01b038316611be857611be381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c0b565b816001600160a01b0316836001600160a01b031614611c0b57611c0b8382611d85565b6001600160a01b038216611c22576108ba81611e22565b826001600160a01b0316826001600160a01b0316146108ba576108ba8282611ed1565b611c4f8383611f15565b611c5c6000848484611c78565b6108ba5760405162461bcd60e51b8152600401610784906124c0565b60006001600160a01b0384163b15611d7a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cbc90339089908890889060040161242c565b602060405180830381600087803b158015611cd657600080fd5b505af1925050508015611d06575060408051601f3d908101601f19168201909252611d039181019061232f565b60015b611d60573d808015611d34576040519150601f19603f3d011682016040523d82523d6000602084013e611d39565b606091505b508051611d585760405162461bcd60e51b8152600401610784906124c0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061182e565b506001949350505050565b60006001611d9284610c07565b611d9c919061262b565b600083815260076020526040902054909150808214611def576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e349060019061262b565b60008381526009602052604081205460088054939450909284908110611e5c57611e5c61271a565b906000526020600020015490508060088381548110611e7d57611e7d61271a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611eb557611eb5612704565b6001900381819060005260206000200160009055905550505050565b6000611edc83610c07565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611f6b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610784565b6000818152600260205260409020546001600160a01b031615611fd05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610784565b611fdc60008383611b8d565b6001600160a01b03821660009081526003602052604081208054600192906120059084906125e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461206f9061266e565b90600052602060002090601f01602090048101928261209157600085556120d7565b82601f106120aa57805160ff19168380011785556120d7565b828001600101855582156120d7579182015b828111156120d75782518255916020019190600101906120bc565b506120e39291506120e7565b5090565b5b808211156120e357600081556001016120e8565b600067ffffffffffffffff8084111561211757612117612730565b604051601f8501601f19908116603f0116810190828211818310171561213f5761213f612730565b8160405280935085815286868601111561215857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461218957600080fd5b919050565b6000602082840312156121a057600080fd5b61158482612172565b600080604083850312156121bc57600080fd5b6121c583612172565b91506121d360208401612172565b90509250929050565b6000806000606084860312156121f157600080fd5b6121fa84612172565b925061220860208501612172565b9150604084013590509250925092565b6000806000806080858703121561222e57600080fd5b61223785612172565b935061224560208601612172565b925060408501359150606085013567ffffffffffffffff81111561226857600080fd5b8501601f8101871361227957600080fd5b612288878235602084016120fc565b91505092959194509250565b600080604083850312156122a757600080fd5b6122b083612172565b915060208301356122c081612746565b809150509250929050565b600080604083850312156122de57600080fd5b6122e783612172565b946020939093013593505050565b60006020828403121561230757600080fd5b815161158481612746565b60006020828403121561232457600080fd5b813561158481612754565b60006020828403121561234157600080fd5b815161158481612754565b60006020828403121561235e57600080fd5b813567ffffffffffffffff81111561237557600080fd5b8201601f8101841361238657600080fd5b61182e848235602084016120fc565b6000602082840312156123a757600080fd5b5035919050565b6000602082840312156123c057600080fd5b815160ff8116811461158457600080fd5b600081518084526123e9816020860160208601612642565b601f01601f19169290920160200192915050565b6000835161240f818460208801612642565b835190830190612423818360208801612642565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061245f908301846123d1565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124a157835183529284019291840191600101612485565b50909695505050505050565b60208152600061158460208301846123d1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526028908201527f4d792050657420486f6f6c6967616e3a204e6f7420656e6f756768206c656674604082015267081d1bc81b5a5b9d60c21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156125f3576125f36126d8565b500190565b600082612607576126076126ee565b500490565b6000816000190483118215151615612626576126266126d8565b500290565b60008282101561263d5761263d6126d8565b500390565b60005b8381101561265d578181015183820152602001612645565b8381111561145e5750506000910152565b600181811c9082168061268257607f821691505b602082108114156126a357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126bd576126bd6126d8565b5060010190565b6000826126d3576126d36126ee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461142957600080fd5b6001600160e01b03198116811461142957600080fdfea26469706673582212201fb7263bd6ce220121962ebf7852755f42c5364127d222f96bf4462a302a0f8b64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6d79706574686f6f6c6967616e2e636f6d2f6d6574612f00

-----Decoded View---------------
Arg [0] : baseURI (string): https://mypethooligan.com/meta/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [2] : 68747470733a2f2f6d79706574686f6f6c6967616e2e636f6d2f6d6574612f00


Deployed Bytecode Sourcemap

45073:3357:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35634:224;;;;;;;;;;-1:-1:-1;35634:224:0;;;;;:::i;:::-;;:::i;:::-;;;6779:14:1;;6772:22;6754:41;;6742:2;6727:18;35634:224:0;;;;;;;;23638:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25197:221::-;;;;;;;;;;-1:-1:-1;25197:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5440:32:1;;;5422:51;;5410:2;5395:18;25197:221:0;5276:203:1;24720:411:0;;;;;;;;;;-1:-1:-1;24720:411:0;;;;;:::i;:::-;;:::i;:::-;;47591:101;;;;;;;;;;-1:-1:-1;47591:101:0;;;;;:::i;:::-;;:::i;45459:40::-;;;;;;;;;;-1:-1:-1;45459:40:0;;;;;:::i;:::-;;:::i;45386:31::-;;;;;;;;;;-1:-1:-1;45386:31:0;;;;-1:-1:-1;;;;;45386:31:0;;;36274:113;;;;;;;;;;-1:-1:-1;36362:10:0;:17;36274:113;;;17231:25:1;;;17219:2;17204:18;36274:113:0;17085:177:1;26087:339:0;;;;;;;;;;-1:-1:-1;26087:339:0;;;;;:::i;:::-;;:::i;46918:99::-;;;;;;;;;;-1:-1:-1;46918:99:0;;;;;:::i;:::-;;:::i;45421:34::-;;;;;;;;;;-1:-1:-1;45421:34:0;;;;;:::i;:::-;;:::i;35942:256::-;;;;;;;;;;-1:-1:-1;35942:256:0;;;;;:::i;:::-;;:::i;26497:185::-;;;;;;;;;;-1:-1:-1;26497:185:0;;;;;:::i;:::-;;:::i;47954:340::-;;;;;;;;;;-1:-1:-1;47954:340:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;36464:233::-;;;;;;;;;;-1:-1:-1;36464:233:0;;;;;:::i;:::-;;:::i;47254:102::-;;;;;;;;;;-1:-1:-1;47254:102:0;;;;;:::i;:::-;;:::i;23332:239::-;;;;;;;;;;-1:-1:-1;23332:239:0;;;;;:::i;:::-;;:::i;23062:208::-;;;;;;;;;;-1:-1:-1;23062:208:0;;;;;:::i;:::-;;:::i;20837:94::-;;;;;;;;;;;;;:::i;48302:125::-;;;:::i;45335:44::-;;;;;;;;;;-1:-1:-1;45335:44:0;;;;;:::i;:::-;;:::i;20186:87::-;;;;;;;;;;-1:-1:-1;20259:6:0;;-1:-1:-1;;;;;20259:6:0;20186:87;;23807:104;;;;;;;;;;;;;:::i;45624:1286::-;;;;;;:::i;:::-;;:::i;25490:295::-;;;;;;;;;;-1:-1:-1;25490:295:0;;;;;:::i;:::-;;:::i;47704:242::-;;;;;;;;;;;;;:::i;26753:328::-;;;;;;;;;;-1:-1:-1;26753:328:0;;;;;:::i;:::-;;:::i;47364:108::-;;;;;;;;;;-1:-1:-1;47364:108:0;;;;;:::i;:::-;;:::i;23982:334::-;;;;;;;;;;-1:-1:-1;23982:334:0;;;;;:::i;:::-;;:::i;45139:31::-;;;;;;;;;;;;45166:4;45139:31;;47484:95;;;;;;;;;;-1:-1:-1;47484:95:0;;;;;:::i;:::-;;:::i;25856:164::-;;;;;;;;;;-1:-1:-1;25856:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25977:25:0;;;25953:4;25977:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25856:164;47151:91;;;;;;;;;;-1:-1:-1;47151:91:0;;;;;:::i;:::-;;:::i;21086:192::-;;;;;;;;;;-1:-1:-1;21086:192:0;;;;;:::i;:::-;;:::i;35634:224::-;35736:4;-1:-1:-1;;;;;;35760:50:0;;-1:-1:-1;;;35760:50:0;;:90;;;35814:36;35838:11;35814:23;:36::i;:::-;35753:97;35634:224;-1:-1:-1;;35634:224:0:o;23638:100::-;23692:13;23725:5;23718:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23638:100;:::o;25197:221::-;25273:7;28680:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28680:16:0;25293:73;;;;-1:-1:-1;;;25293:73:0;;13279:2:1;25293:73:0;;;13261:21:1;13318:2;13298:18;;;13291:30;13357:34;13337:18;;;13330:62;-1:-1:-1;;;13408:18:1;;;13401:42;13460:19;;25293:73:0;;;;;;;;;-1:-1:-1;25386:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25386:24:0;;25197:221::o;24720:411::-;24801:13;24817:23;24832:7;24817:14;:23::i;:::-;24801:39;;24865:5;-1:-1:-1;;;;;24859:11:0;:2;-1:-1:-1;;;;;24859:11:0;;;24851:57;;;;-1:-1:-1;;;24851:57:0;;15282:2:1;24851:57:0;;;15264:21:1;15321:2;15301:18;;;15294:30;15360:34;15340:18;;;15333:62;-1:-1:-1;;;15411:18:1;;;15404:31;15452:19;;24851:57:0;15080:397:1;24851:57:0;16281:10;-1:-1:-1;;;;;24943:21:0;;;;:62;;-1:-1:-1;24968:37:0;24985:5;16281:10;25856:164;:::i;24968:37::-;24921:168;;;;-1:-1:-1;;;24921:168:0;;11672:2:1;24921:168:0;;;11654:21:1;11711:2;11691:18;;;11684:30;11750:34;11730:18;;;11723:62;11821:26;11801:18;;;11794:54;11865:19;;24921:168:0;11470:420:1;24921:168:0;25102:21;25111:2;25115:7;25102:8;:21::i;:::-;24790:341;24720:411;;:::o;47591:101::-;20259:6;;-1:-1:-1;;;;;20259:6:0;16281:10;20406:23;20398:68;;;;-1:-1:-1;;;20398:68:0;;;;;;;:::i;:::-;47661:12:::1;:23:::0;47591:101::o;45459:40::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45459:40:0;;-1:-1:-1;45459:40:0;:::o;26087:339::-;26282:41;16281:10;26315:7;26282:18;:41::i;:::-;26274:103;;;;-1:-1:-1;;;26274:103:0;;;;;;;:::i;:::-;26390:28;26400:4;26406:2;26410:7;26390:9;:28::i;46918:99::-;46967:7;47003:6;46994;;:15;;;;:::i;45421:34::-;;;;;;;;;;;;35942:256;36039:7;36075:23;36092:5;36075:16;:23::i;:::-;36067:5;:31;36059:87;;;;-1:-1:-1;;;36059:87:0;;7661:2:1;36059:87:0;;;7643:21:1;7700:2;7680:18;;;7673:30;7739:34;7719:18;;;7712:62;-1:-1:-1;;;7790:18:1;;;7783:41;7841:19;;36059:87:0;7459:407:1;36059:87:0;-1:-1:-1;;;;;;36164:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35942:256::o;26497:185::-;26635:39;26652:4;26658:2;26662:7;26635:39;;;;;;;;;;;;:16;:39::i;47954:340::-;48015:16;48044:15;48062:17;48072:6;48062:9;:17::i;:::-;48044:35;;48090:25;48132:10;48118:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48118:25:0;;48090:53;;48158:6;48154:107;48174:10;48170:1;:14;48154:107;;;48219:30;48239:6;48247:1;48219:19;:30::i;:::-;48205:8;48214:1;48205:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;48186:3;;;;:::i;:::-;;;;48154:107;;;-1:-1:-1;48278:8:0;47954:340;-1:-1:-1;;;47954:340:0:o;36464:233::-;36539:7;36575:30;36362:10;:17;;36274:113;36575:30;36567:5;:38;36559:95;;;;-1:-1:-1;;;36559:95:0;;16514:2:1;36559:95:0;;;16496:21:1;16553:2;16533:18;;;16526:30;16592:34;16572:18;;;16565:62;-1:-1:-1;;;16643:18:1;;;16636:42;16695:19;;36559:95:0;16312:408:1;36559:95:0;36672:10;36683:5;36672:17;;;;;;;;:::i;:::-;;;;;;;;;36665:24;;36464:233;;;:::o;47254:102::-;20259:6;;-1:-1:-1;;;;;20259:6:0;16281:10;20406:23;20398:68;;;;-1:-1:-1;;;20398:68:0;;;;;;;:::i;:::-;47325:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47254:102:::0;:::o;23332:239::-;23404:7;23440:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23440:16:0;23475:19;23467:73;;;;-1:-1:-1;;;23467:73:0;;12508:2:1;23467:73:0;;;12490:21:1;12547:2;12527:18;;;12520:30;12586:34;12566:18;;;12559:62;-1:-1:-1;;;12637:18:1;;;12630:39;12686:19;;23467:73:0;12306:405:1;23062:208:0;23134:7;-1:-1:-1;;;;;23162:19:0;;23154:74;;;;-1:-1:-1;;;23154:74:0;;12097:2:1;23154:74:0;;;12079:21:1;12136:2;12116:18;;;12109:30;12175:34;12155:18;;;12148:62;-1:-1:-1;;;12226:18:1;;;12219:40;12276:19;;23154:74:0;11895:406:1;23154:74:0;-1:-1:-1;;;;;;23246:16:0;;;;;:9;:16;;;;;;;23062:208::o;20837:94::-;20259:6;;-1:-1:-1;;;;;20259:6:0;16281:10;20406:23;20398:68;;;;-1:-1:-1;;;20398:68:0;;;;;;;:::i;:::-;20902:21:::1;20920:1;20902:9;:21::i;:::-;20837:94::o:0;48302:125::-;20259:6;;-1:-1:-1;;;;;20259:6:0;16281:10;20406:23;20398:68;;;;-1:-1:-1;;;20398:68:0;;;;;;;:::i;:::-;48369:49:::1;::::0;16281:10;;48396:21:::1;48369:49:::0;::::1;;;::::0;::::1;::::0;;;48396:21;16281:10;48369:49;::::1;;;;;;48361:58;;;::::0;::::1;45335:44:::0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23807:104::-;23863:13;23896:7;23889:14;;;;;:::i;45624:1286::-;42666:1;43264:7;;:19;;43256:63;;;;-1:-1:-1;;;43256:63:0;;16927:2:1;43256:63:0;;;16909:21:1;16966:2;16946:18;;;16939:30;17005:33;16985:18;;;16978:61;17056:18;;43256:63:0;16725:355:1;43256:63:0;42666:1;43397:7;:18;45166:4:::1;45714:6:::0;45698:13:::1;36362:10:::0;:17;;36274:113;45698:13:::1;:22;;;;:::i;:::-;:29;;45690:82;;;;-1:-1:-1::0;;;45690:82:0::1;;;;;;;:::i;:::-;45166:4;45791:13;36362:10:::0;:17;;36274:113;45791:13:::1;:19;45783:72;;;;-1:-1:-1::0;;;45783:72:0::1;;;;;;;:::i;:::-;45884:1;45874:6;:11;;45866:69;;;::::0;-1:-1:-1;;;45866:69:0;;10015:2:1;45866:69:0::1;::::0;::::1;9997:21:1::0;10054:2;10034:18;;;10027:30;10093:34;10073:18;;;10066:62;-1:-1:-1;;;10144:18:1;;;10137:43;10197:19;;45866:69:0::1;9813:409:1::0;45866:69:0::1;45967:13;45973:6;45967:5;:13::i;:::-;45954:9;:26;;45946:73;;;::::0;-1:-1:-1;;;45946:73:0;;13692:2:1;45946:73:0::1;::::0;::::1;13674:21:1::0;13731:2;13711:18;;;13704:30;13770:34;13750:18;;;13743:62;-1:-1:-1;;;13821:18:1;;;13814:32;13863:19;;45946:73:0::1;13490:398:1::0;45946:73:0::1;46065:9;;46046:15;:28;46042:861;;46096:6;46091:105;46112:6;46108:1;:10;46091:105;;;46144:36;46154:10;46166:13;36362:10:::0;:17;;36274:113;46166:13:::1;46144:9;:36::i;:::-;46120:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46091:105;;;;46042:861;;;46235:9;;46217:15;:27;:62;;;;;46267:12;;46248:15;:31;;46217:62;46213:690;;;46325:16;::::0;46314:52:::1;::::0;-1:-1:-1;;;46314:52:0;;46355:10:::1;46314:52;::::0;::::1;5422:51:1::0;-1:-1:-1;;;;;46325:16:0;;::::1;::::0;46314:40:::1;::::0;5395:18:1;;46314:52:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46304:62;;:6;:62;;46296:135;;;::::0;-1:-1:-1;;;46296:135:0;;7232:2:1;46296:135:0::1;::::0;::::1;7214:21:1::0;7271:2;7251:18;;;7244:30;7310:34;7290:18;;;7283:62;7381:30;7361:18;;;7354:58;7429:19;;46296:135:0::1;7030:424:1::0;46296:135:0::1;46465:16;::::0;46454:52:::1;::::0;-1:-1:-1;;;46454:52:0;;46495:10:::1;46454:52;::::0;::::1;5422:51:1::0;46509:1:0::1;::::0;-1:-1:-1;;;;;46465:16:0::1;::::0;46454:40:::1;::::0;5395:18:1;;46454:52:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:56;;;46446:112;;;::::0;-1:-1:-1;;;46446:112:0;;16102:2:1;46446:112:0::1;::::0;::::1;16084:21:1::0;16141:2;16121:18;;;16114:30;16180:34;16160:18;;;16153:62;-1:-1:-1;;;16231:18:1;;;16224:41;16282:19;;46446:112:0::1;15900:407:1::0;46446:112:0::1;46592:16;::::0;46581:58:::1;::::0;-1:-1:-1;;;46581:58:0;;46628:10:::1;46581:58;::::0;::::1;5422:51:1::0;-1:-1:-1;;;;;46592:16:0;;::::1;::::0;46581:46:::1;::::0;5395:18:1;;46581:58:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:67;46573:132;;;::::0;-1:-1:-1;;;46573:132:0;;11251:2:1;46573:132:0::1;::::0;::::1;11233:21:1::0;11290:2;11270:18;;;11263:30;11329:34;11309:18;;;11302:62;-1:-1:-1;;;11380:18:1;;;11373:50;11440:19;;46573:132:0::1;11049:416:1::0;46573:132:0::1;46725:6;46720:105;46741:6;46737:1;:10;46720:105;;;46773:36;46783:10;46795:13;36362:10:::0;:17;;36274:113;46773:36:::1;46749:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46720:105;;;-1:-1:-1::0;46850:16:0::1;::::0;46839:52:::1;::::0;-1:-1:-1;;;46839:52:0;;46880:10:::1;46839:52;::::0;::::1;5422:51:1::0;-1:-1:-1;;;;;46850:16:0;;::::1;::::0;46839:40:::1;::::0;5395:18:1;;46839:52:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;46213:690;-1:-1:-1::0;42622:1:0;43576:7;:22;45624:1286::o;25490:295::-;-1:-1:-1;;;;;25593:24:0;;16281:10;25593:24;;25585:62;;;;-1:-1:-1;;;25585:62:0;;9661:2:1;25585:62:0;;;9643:21:1;9700:2;9680:18;;;9673:30;9739:27;9719:18;;;9712:55;9784:18;;25585:62:0;9459:349:1;25585:62:0;16281:10;25660:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25660:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25660:53:0;;;;;;;;;;25729:48;;6754:41:1;;;25660:42:0;;16281:10;25729:48;;6727:18:1;25729:48:0;;;;;;;25490:295;;:::o;47704:242::-;20259:6;;-1:-1:-1;;;;;20259:6:0;16281:10;20406:23;20398:68;;;;-1:-1:-1;;;20398:68:0;;;;;;;:::i;:::-;45166:4:::1;47765:13;36362:10:::0;:17;;36274:113;47765:13:::1;:18;::::0;47781:2:::1;47765:18;:::i;:::-;:25;;47757:78;;;;-1:-1:-1::0;;;47757:78:0::1;;;;;;;:::i;:::-;47851:6;47846:93;47867:2;47863:1;:6;47846:93;;;47891:36;47901:10;47913:13;36362:10:::0;:17;;36274:113;47891:36:::1;47871:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47846:93;;;;47704:242::o:0;26753:328::-;26928:41;16281:10;26961:7;26928:18;:41::i;:::-;26920:103;;;;-1:-1:-1;;;26920:103:0;;;;;;;:::i;:::-;27034:39;27048:4;27054:2;27058:7;27067:5;27034:13;:39::i;:::-;26753:328;;;;:::o;47364:108::-;20259:6;;-1:-1:-1;;;;;20259:6:0;16281:10;20406:23;20398:68;;;;-1:-1:-1;;;20398:68:0;;;;;;;:::i;:::-;47437:16:::1;:27:::0;;-1:-1:-1;;;;;;47437:27:0::1;-1:-1:-1::0;;;;;47437:27:0;;;::::1;::::0;;;::::1;::::0;;47364:108::o;23982:334::-;28656:4;28680:16;;;:7;:16;;;;;;24055:13;;-1:-1:-1;;;;;28680:16:0;24081:76;;;;-1:-1:-1;;;24081:76:0;;14866:2:1;24081:76:0;;;14848:21:1;14905:2;14885:18;;;14878:30;14944:34;14924:18;;;14917:62;-1:-1:-1;;;14995:18:1;;;14988:45;15050:19;;24081:76:0;14664:411:1;24081:76:0;24170:21;24194:10;:8;:10::i;:::-;24170:34;;24246:1;24228:7;24222:21;:25;:86;;;;;;;;;;;;;;;;;24274:7;24283:18;:7;:16;:18::i;:::-;24257:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24222:86;24215:93;23982:334;-1:-1:-1;;;23982:334:0:o;47484:95::-;20259:6;;-1:-1:-1;;;;;20259:6:0;16281:10;20406:23;20398:68;;;;-1:-1:-1;;;20398:68:0;;;;;;;:::i;:::-;47551:9:::1;:20:::0;47484:95::o;47151:91::-;20259:6;;-1:-1:-1;;;;;20259:6:0;16281:10;20406:23;20398:68;;;;-1:-1:-1;;;20398:68:0;;;;;;;:::i;:::-;47216:6:::1;:18:::0;47151:91::o;21086:192::-;20259:6;;-1:-1:-1;;;;;20259:6:0;16281:10;20406:23;20398:68;;;;-1:-1:-1;;;20398:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21175:22:0;::::1;21167:73;;;::::0;-1:-1:-1;;;21167:73:0;;8492:2:1;21167:73:0::1;::::0;::::1;8474:21:1::0;8531:2;8511:18;;;8504:30;8570:34;8550:18;;;8543:62;-1:-1:-1;;;8621:18:1;;;8614:36;8667:19;;21167:73:0::1;8290:402:1::0;21167:73:0::1;21251:19;21261:8;21251:9;:19::i;22693:305::-:0;22795:4;-1:-1:-1;;;;;;22832:40:0;;-1:-1:-1;;;22832:40:0;;:105;;-1:-1:-1;;;;;;;22889:48:0;;-1:-1:-1;;;22889:48:0;22832:105;:158;;;-1:-1:-1;;;;;;;;;;1623:40:0;;;22954:36;1514:157;32573:174;32648:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32648:29:0;-1:-1:-1;;;;;32648:29:0;;;;;;;;:24;;32702:23;32648:24;32702:14;:23::i;:::-;-1:-1:-1;;;;;32693:46:0;;;;;;;;;;;32573:174;;:::o;28885:348::-;28978:4;28680:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28680:16:0;28995:73;;;;-1:-1:-1;;;28995:73:0;;10838:2:1;28995:73:0;;;10820:21:1;10877:2;10857:18;;;10850:30;10916:34;10896:18;;;10889:62;-1:-1:-1;;;10967:18:1;;;10960:42;11019:19;;28995:73:0;10636:408:1;28995:73:0;29079:13;29095:23;29110:7;29095:14;:23::i;:::-;29079:39;;29148:5;-1:-1:-1;;;;;29137:16:0;:7;-1:-1:-1;;;;;29137:16:0;;:51;;;;29181:7;-1:-1:-1;;;;;29157:31:0;:20;29169:7;29157:11;:20::i;:::-;-1:-1:-1;;;;;29157:31:0;;29137:51;:87;;;-1:-1:-1;;;;;;25977:25:0;;;25953:4;25977:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29192:32;29129:96;28885:348;-1:-1:-1;;;;28885:348:0:o;31877:578::-;32036:4;-1:-1:-1;;;;;32009:31:0;:23;32024:7;32009:14;:23::i;:::-;-1:-1:-1;;;;;32009:31:0;;32001:85;;;;-1:-1:-1;;;32001:85:0;;14456:2:1;32001:85:0;;;14438:21:1;14495:2;14475:18;;;14468:30;14534:34;14514:18;;;14507:62;-1:-1:-1;;;14585:18:1;;;14578:39;14634:19;;32001:85:0;14254:405:1;32001:85:0;-1:-1:-1;;;;;32105:16:0;;32097:65;;;;-1:-1:-1;;;32097:65:0;;9256:2:1;32097:65:0;;;9238:21:1;9295:2;9275:18;;;9268:30;9334:34;9314:18;;;9307:62;-1:-1:-1;;;9385:18:1;;;9378:34;9429:19;;32097:65:0;9054:400:1;32097:65:0;32175:39;32196:4;32202:2;32206:7;32175:20;:39::i;:::-;32279:29;32296:1;32300:7;32279:8;:29::i;:::-;-1:-1:-1;;;;;32321:15:0;;;;;;:9;:15;;;;;:20;;32340:1;;32321:15;:20;;32340:1;;32321:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32352:13:0;;;;;;:9;:13;;;;;:18;;32369:1;;32352:13;:18;;32369:1;;32352:18;:::i;:::-;;;;-1:-1:-1;;32381:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32381:21:0;-1:-1:-1;;;;;32381:21:0;;;;;;;;;32420:27;;32381:16;;32420:27;;;;;;;31877:578;;;:::o;21286:173::-;21361:6;;;-1:-1:-1;;;;;21378:17:0;;;-1:-1:-1;;;;;;21378:17:0;;;;;;;21411:40;;21361:6;;;21378:17;21361:6;;21411:40;;21342:16;;21411:40;21331:128;21286:173;:::o;29575:110::-;29651:26;29661:2;29665:7;29651:26;;;;;;;;;;;;:9;:26::i;27963:315::-;28120:28;28130:4;28136:2;28140:7;28120:9;:28::i;:::-;28167:48;28190:4;28196:2;28200:7;28209:5;28167:22;:48::i;:::-;28159:111;;;;-1:-1:-1;;;28159:111:0;;;;;;;:::i;47025:114::-;47085:13;47118;47111:20;;;;;:::i;16641:723::-;16697:13;16918:10;16914:53;;-1:-1:-1;;16945:10:0;;;;;;;;;;;;-1:-1:-1;;;16945:10:0;;;;;16641:723::o;16914:53::-;16992:5;16977:12;17033:78;17040:9;;17033:78;;17066:8;;;;:::i;:::-;;-1:-1:-1;17089:10:0;;-1:-1:-1;17097:2:0;17089:10;;:::i;:::-;;;17033:78;;;17121:19;17153:6;17143:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17143:17:0;;17121:39;;17171:154;17178:10;;17171:154;;17205:11;17215:1;17205:11;;:::i;:::-;;-1:-1:-1;17274:10:0;17282:2;17274:5;:10;:::i;:::-;17261:24;;:2;:24;:::i;:::-;17248:39;;17231:6;17238;17231:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17231:56:0;;;;;;;;-1:-1:-1;17302:11:0;17311:2;17302:11;;:::i;:::-;;;17171:154;;37310:589;-1:-1:-1;;;;;37516:18:0;;37512:187;;37551:40;37583:7;38726:10;:17;;38699:24;;;;:15;:24;;;;;:44;;;38754:24;;;;;;;;;;;;38622:164;37551:40;37512:187;;;37621:2;-1:-1:-1;;;;;37613:10:0;:4;-1:-1:-1;;;;;37613:10:0;;37609:90;;37640:47;37673:4;37679:7;37640:32;:47::i;:::-;-1:-1:-1;;;;;37713:16:0;;37709:183;;37746:45;37783:7;37746:36;:45::i;37709:183::-;37819:4;-1:-1:-1;;;;;37813:10:0;:2;-1:-1:-1;;;;;37813:10:0;;37809:83;;37840:40;37868:2;37872:7;37840:27;:40::i;29912:321::-;30042:18;30048:2;30052:7;30042:5;:18::i;:::-;30093:54;30124:1;30128:2;30132:7;30141:5;30093:22;:54::i;:::-;30071:154;;;;-1:-1:-1;;;30071:154:0;;;;;;;:::i;33312:803::-;33467:4;-1:-1:-1;;;;;33488:13:0;;8871:20;8919:8;33484:624;;33524:72;;-1:-1:-1;;;33524:72:0;;-1:-1:-1;;;;;33524:36:0;;;;;:72;;16281:10;;33575:4;;33581:7;;33590:5;;33524:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33524:72:0;;;;;;;;-1:-1:-1;;33524:72:0;;;;;;;;;;;;:::i;:::-;;;33520:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33770:13:0;;33766:272;;33813:60;;-1:-1:-1;;;33813:60:0;;;;;;;:::i;33766:272::-;33988:6;33982:13;33973:6;33969:2;33965:15;33958:38;33520:533;-1:-1:-1;;;;;;33647:55:0;-1:-1:-1;;;33647:55:0;;-1:-1:-1;33640:62:0;;33484:624;-1:-1:-1;34092:4:0;33312:803;;;;;;:::o;39413:988::-;39679:22;39729:1;39704:22;39721:4;39704:16;:22::i;:::-;:26;;;;:::i;:::-;39741:18;39762:26;;;:17;:26;;;;;;39679:51;;-1:-1:-1;39895:28:0;;;39891:328;;-1:-1:-1;;;;;39962:18:0;;39940:19;39962:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40013:30;;;;;;:44;;;40130:30;;:17;:30;;;;;:43;;;39891:328;-1:-1:-1;40315:26:0;;;;:17;:26;;;;;;;;40308:33;;;-1:-1:-1;;;;;40359:18:0;;;;;:12;:18;;;;;:34;;;;;;;40352:41;39413:988::o;40696:1079::-;40974:10;:17;40949:22;;40974:21;;40994:1;;40974:21;:::i;:::-;41006:18;41027:24;;;:15;:24;;;;;;41400:10;:26;;40949:46;;-1:-1:-1;41027:24:0;;40949:46;;41400:26;;;;;;:::i;:::-;;;;;;;;;41378:48;;41464:11;41439:10;41450;41439:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41544:28;;;:15;:28;;;;;;;:41;;;41716:24;;;;;41709:31;41751:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40767:1008;;;40696:1079;:::o;38200:221::-;38285:14;38302:20;38319:2;38302:16;:20::i;:::-;-1:-1:-1;;;;;38333:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38378:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38200:221:0:o;30569:382::-;-1:-1:-1;;;;;30649:16:0;;30641:61;;;;-1:-1:-1;;;30641:61:0;;12918:2:1;30641:61:0;;;12900:21:1;;;12937:18;;;12930:30;12996:34;12976:18;;;12969:62;13048:18;;30641:61:0;12716:356:1;30641:61:0;28656:4;28680:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28680:16:0;:30;30713:58;;;;-1:-1:-1;;;30713:58:0;;8899:2:1;30713:58:0;;;8881:21:1;8938:2;8918:18;;;8911:30;8977;8957:18;;;8950:58;9025:18;;30713:58:0;8697:352:1;30713:58:0;30784:45;30813:1;30817:2;30821:7;30784:20;:45::i;:::-;-1:-1:-1;;;;;30842:13:0;;;;;;:9;:13;;;;;:18;;30859:1;;30842:13;:18;;30859:1;;30842:18;:::i;:::-;;;;-1:-1:-1;;30871:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30871:21:0;-1:-1:-1;;;;;30871:21:0;;;;;;;;30910:33;;30871:16;;;30910:33;;30871:16;;30910:33;30569:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:315::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2545:28;2567:5;2545:28;:::i;:::-;2592:5;2582:15;;;2288:315;;;;;:::o;2608:254::-;2676:6;2684;2737:2;2725:9;2716:7;2712:23;2708:32;2705:52;;;2753:1;2750;2743:12;2705:52;2776:29;2795:9;2776:29;:::i;:::-;2766:39;2852:2;2837:18;;;;2824:32;;-1:-1:-1;;;2608:254:1:o;2867:245::-;2934:6;2987:2;2975:9;2966:7;2962:23;2958:32;2955:52;;;3003:1;3000;2993:12;2955:52;3035:9;3029:16;3054:28;3076:5;3054:28;:::i;3117:245::-;3175:6;3228:2;3216:9;3207:7;3203:23;3199:32;3196:52;;;3244:1;3241;3234:12;3196:52;3283:9;3270:23;3302:30;3326:5;3302:30;:::i;3367:249::-;3436:6;3489:2;3477:9;3468:7;3464:23;3460:32;3457:52;;;3505:1;3502;3495:12;3457:52;3537:9;3531:16;3556:30;3580:5;3556:30;:::i;3621:450::-;3690:6;3743:2;3731:9;3722:7;3718:23;3714:32;3711:52;;;3759:1;3756;3749:12;3711:52;3799:9;3786:23;3832:18;3824:6;3821:30;3818:50;;;3864:1;3861;3854:12;3818:50;3887:22;;3940:4;3932:13;;3928:27;-1:-1:-1;3918:55:1;;3969:1;3966;3959:12;3918:55;3992:73;4057:7;4052:2;4039:16;4034:2;4030;4026:11;3992:73;:::i;4076:180::-;4135:6;4188:2;4176:9;4167:7;4163:23;4159:32;4156:52;;;4204:1;4201;4194:12;4156:52;-1:-1:-1;4227:23:1;;4076:180;-1:-1:-1;4076:180:1:o;4261:273::-;4329:6;4382:2;4370:9;4361:7;4357:23;4353:32;4350:52;;;4398:1;4395;4388:12;4350:52;4430:9;4424:16;4480:4;4473:5;4469:16;4462:5;4459:27;4449:55;;4500:1;4497;4490:12;4539:257;4580:3;4618:5;4612:12;4645:6;4640:3;4633:19;4661:63;4717:6;4710:4;4705:3;4701:14;4694:4;4687:5;4683:16;4661:63;:::i;:::-;4778:2;4757:15;-1:-1:-1;;4753:29:1;4744:39;;;;4785:4;4740:50;;4539:257;-1:-1:-1;;4539:257:1:o;4801:470::-;4980:3;5018:6;5012:13;5034:53;5080:6;5075:3;5068:4;5060:6;5056:17;5034:53;:::i;:::-;5150:13;;5109:16;;;;5172:57;5150:13;5109:16;5206:4;5194:17;;5172:57;:::i;:::-;5245:20;;4801:470;-1:-1:-1;;;;4801:470:1:o;5484:488::-;-1:-1:-1;;;;;5753:15:1;;;5735:34;;5805:15;;5800:2;5785:18;;5778:43;5852:2;5837:18;;5830:34;;;5900:3;5895:2;5880:18;;5873:31;;;5678:4;;5921:45;;5946:19;;5938:6;5921:45;:::i;:::-;5913:53;5484:488;-1:-1:-1;;;;;;5484:488:1:o;5977:632::-;6148:2;6200:21;;;6270:13;;6173:18;;;6292:22;;;6119:4;;6148:2;6371:15;;;;6345:2;6330:18;;;6119:4;6414:169;6428:6;6425:1;6422:13;6414:169;;;6489:13;;6477:26;;6558:15;;;;6523:12;;;;6450:1;6443:9;6414:169;;;-1:-1:-1;6600:3:1;;5977:632;-1:-1:-1;;;;;;5977:632:1:o;6806:219::-;6955:2;6944:9;6937:21;6918:4;6975:44;7015:2;7004:9;7000:18;6992:6;6975:44;:::i;7871:414::-;8073:2;8055:21;;;8112:2;8092:18;;;8085:30;8151:34;8146:2;8131:18;;8124:62;-1:-1:-1;;;8217:2:1;8202:18;;8195:48;8275:3;8260:19;;7871:414::o;10227:404::-;10429:2;10411:21;;;10468:2;10448:18;;;10441:30;10507:34;10502:2;10487:18;;10480:62;-1:-1:-1;;;10573:2:1;10558:18;;10551:38;10621:3;10606:19;;10227:404::o;13893:356::-;14095:2;14077:21;;;14114:18;;;14107:30;14173:34;14168:2;14153:18;;14146:62;14240:2;14225:18;;13893:356::o;15482:413::-;15684:2;15666:21;;;15723:2;15703:18;;;15696:30;15762:34;15757:2;15742:18;;15735:62;-1:-1:-1;;;15828:2:1;15813:18;;15806:47;15885:3;15870:19;;15482:413::o;17267:128::-;17307:3;17338:1;17334:6;17331:1;17328:13;17325:39;;;17344:18;;:::i;:::-;-1:-1:-1;17380:9:1;;17267:128::o;17400:120::-;17440:1;17466;17456:35;;17471:18;;:::i;:::-;-1:-1:-1;17505:9:1;;17400:120::o;17525:168::-;17565:7;17631:1;17627;17623:6;17619:14;17616:1;17613:21;17608:1;17601:9;17594:17;17590:45;17587:71;;;17638:18;;:::i;:::-;-1:-1:-1;17678:9:1;;17525:168::o;17698:125::-;17738:4;17766:1;17763;17760:8;17757:34;;;17771:18;;:::i;:::-;-1:-1:-1;17808:9:1;;17698:125::o;17828:258::-;17900:1;17910:113;17924:6;17921:1;17918:13;17910:113;;;18000:11;;;17994:18;17981:11;;;17974:39;17946:2;17939:10;17910:113;;;18041:6;18038:1;18035:13;18032:48;;;-1:-1:-1;;18076:1:1;18058:16;;18051:27;17828:258::o;18091:380::-;18170:1;18166:12;;;;18213;;;18234:61;;18288:4;18280:6;18276:17;18266:27;;18234:61;18341:2;18333:6;18330:14;18310:18;18307:38;18304:161;;;18387:10;18382:3;18378:20;18375:1;18368:31;18422:4;18419:1;18412:15;18450:4;18447:1;18440:15;18304:161;;18091:380;;;:::o;18476:135::-;18515:3;-1:-1:-1;;18536:17:1;;18533:43;;;18556:18;;:::i;:::-;-1:-1:-1;18603:1:1;18592:13;;18476:135::o;18616:112::-;18648:1;18674;18664:35;;18679:18;;:::i;:::-;-1:-1:-1;18713:9:1;;18616:112::o;18733:127::-;18794:10;18789:3;18785:20;18782:1;18775:31;18825:4;18822:1;18815:15;18849:4;18846:1;18839:15;18865:127;18926:10;18921:3;18917:20;18914:1;18907:31;18957:4;18954:1;18947:15;18981:4;18978:1;18971:15;18997:127;19058:10;19053:3;19049:20;19046:1;19039:31;19089:4;19086:1;19079:15;19113:4;19110:1;19103:15;19129:127;19190:10;19185:3;19181:20;19178:1;19171:31;19221:4;19218:1;19211:15;19245:4;19242:1;19235:15;19261:127;19322:10;19317:3;19313:20;19310:1;19303:31;19353:4;19350:1;19343:15;19377:4;19374:1;19367:15;19393:118;19479:5;19472:13;19465:21;19458:5;19455:32;19445:60;;19501:1;19498;19491:12;19516:131;-1:-1:-1;;;;;;19590:32:1;;19580:43;;19570:71;;19637:1;19634;19627:12

Swarm Source

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