ETH Price: $3,019.80 (+4.46%)
Gas: 10 Gwei

Token

xmferpets (xmp)
 

Overview

Max Total Supply

2,690 xmp

Holders

1,018

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
youngdong.eth
Balance
1 xmp
0x6608d5342ca0fc0acf0c334c2496f1542af1fc71
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

xcopy inspired xmfer pets every xmfer needs a pet

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
xmferspets

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


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


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



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


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


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



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

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

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

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

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

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

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

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

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

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

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

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


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


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



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


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


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



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

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

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


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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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



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

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


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


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



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

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

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

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

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


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


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



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


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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)









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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


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


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



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

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

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

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

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

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

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

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


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


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



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

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

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

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

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

// File contracts/xmferpets.sol

contract xmferspets is ERC721, Ownable {
    using Counters for Counters.Counter;

    string public baseURI;
    string public contractURI;
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    bytes32 public merkleRoot = 0x7cccd35f224c6fbb86274f2e458d93423f1c4a773545381094d930d8bc34a199;

    Counters.Counter private _totalSupply;
    uint256 private _publicSupply;
    uint256 public MAX_SUPPLY_PUBLIC = 4200;
    uint256 public price = 0.024 ether;
    uint256 public holders_price = 0.0042 ether;
    uint256 public saleID;
    uint256 public constant MAX_PER_WALLET_PUBLIC = 2;

    bool public claimSale = false;
    bool public publicSale = false;
    bool public reveal = false;

    mapping(uint256 => bool) public petTypeAvailableToMint;
    mapping(uint256 => uint256) public petAsignToTokenID;
    mapping(uint256 => mapping(address => uint256)) public claimWalletsMinted;
    mapping(uint256 => mapping(address => uint256)) public hodlersMinted;
    mapping(uint256 => mapping(address => uint256)) public walletsMinted;

    IERC721 xmfers = IERC721(0xB156ADf8523FdC6152aFFdbA076a2143FD7e3c69);

    constructor() ERC721("xmferpets", "xmp") {
        petTypeAvailableToMint[0] = true;
        petTypeAvailableToMint[1] = true;
    }

    function claim(uint256 _amountToMint, uint256 _typeOfPet, uint256 _maxAmount, bytes32[] calldata _merkleProof) external payable {
        address _caller = _msgSender();
        require(claimSale, "Claim not active");
        require(xmfers.balanceOf(_caller) > 0, "Non believer");
        require(petTypeAvailableToMint[_typeOfPet], "Not allowed to mint this type of pet");
        require(claimWalletsMinted[saleID][_caller] + _amountToMint <= _maxAmount, "Not allow to mint more");
        require(_amountToMint > 0, "Not 0 mints");
        require(tx.origin == _caller, "No contracts");

        bytes32 leaf = keccak256(abi.encodePacked(_caller, _maxAmount));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid proof");

        claimWalletsMinted[saleID][_caller] += _amountToMint;
        for (uint256 i; i < _amountToMint; i++) {
            if(_typeOfPet > 0){
                petAsignToTokenID[_totalSupply.current()] = _typeOfPet;
            }
            _safeMint(_caller, _totalSupply.current());
            _totalSupply.increment();
        }
    }

    function holders(uint256 _amountToMint, uint256 _typeOfPet) external payable {
        address _caller = _msgSender();
        require(MAX_SUPPLY_PUBLIC >= _publicSupply + _amountToMint, "Exceeds max supply");
        require(publicSale, "Public sale not active");
        require(xmfers.balanceOf(_caller) > 0, "Non believer");
        require(petTypeAvailableToMint[_typeOfPet], "Not allowed to mint this type of pet");
        require(hodlersMinted[saleID][_caller] + _amountToMint <= MAX_PER_WALLET_PUBLIC, "Not allow to mint more");
        require(_amountToMint > 0, "Not 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(_amountToMint * holders_price == msg.value, "Invalid funds provided");

        hodlersMinted[saleID][_caller] += _amountToMint;
        unchecked { _publicSupply += _amountToMint; }
        for (uint256 i; i < _amountToMint; i++) {
            if(_typeOfPet > 0){
                petAsignToTokenID[_totalSupply.current()] = _typeOfPet;
            }
            _safeMint(_caller, _totalSupply.current());
            _totalSupply.increment();
        }
    }

    function mint(uint256 _amountToMint, uint256 _typeOfPet) external payable {
        address _caller = _msgSender();
        require(MAX_SUPPLY_PUBLIC >= _publicSupply + _amountToMint, "Exceeds max supply");
        require(publicSale, "Public sale not active");
        require(petTypeAvailableToMint[_typeOfPet], "Not allowed to mint this type of pet");
        require(walletsMinted[saleID][_caller] + _amountToMint <= MAX_PER_WALLET_PUBLIC, "Not allow to mint more");
        require(_amountToMint > 0, "Not 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(_amountToMint * price == msg.value, "Invalid funds provided");

        walletsMinted[saleID][_caller] += _amountToMint;
        unchecked { _publicSupply += _amountToMint; }
        for (uint256 i; i < _amountToMint; i++) {
            if(_typeOfPet > 0){
                petAsignToTokenID[_totalSupply.current()] = _typeOfPet;
            }
            _safeMint(_caller, _totalSupply.current());
            _totalSupply.increment();
        }
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function changeSupply(uint256 _MAX_SUPPLY) external onlyOwner {
        require(_MAX_SUPPLY >= _totalSupply.current(), "Cant put less supply");
        MAX_SUPPLY_PUBLIC = _MAX_SUPPLY;
    }

    function mintingOnes(uint256 _amountToMint) external onlyOwner {
        for (uint256 i; i < _amountToMint; i++) {
            _safeMint(_msgSender(), _totalSupply.current());
            _totalSupply.increment();
        }
    }

    function resetPublicSupplyCounter() external onlyOwner {
        _publicSupply = 0;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function setRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setSaleID(uint256 _saleID) external onlyOwner {
        saleID = _saleID;
    }

    function setPrices(uint256 _price, uint256 _holders_price) external onlyOwner {
        price = _price;
        holders_price = _holders_price;
    }

    function setSaleState(bool _claimSale, bool _publicSale) external onlyOwner {
        claimSale = _claimSale;
        publicSale = _publicSale;
    }

    function setRevealState(bool _reveal) external onlyOwner {
        reveal = _reveal;
    }

    function setPetAvailabilityState(uint256 _typeOfPet, bool _available) external onlyOwner {
        petTypeAvailableToMint[_typeOfPet] = _available;
    }

    function totalSupply() external view returns (uint256) {
        return _totalSupply.current();
    }

    function publicSupply() external view returns (uint256) {
        return _publicSupply;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              reveal ? Strings.toString(_tokenId) : string(abi.encodePacked(Strings.toString(petAsignToTokenID[_tokenId]), "_holder")),
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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_PER_WALLET_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"changeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountToMint","type":"uint256"},{"internalType":"uint256","name":"_typeOfPet","type":"uint256"},{"internalType":"uint256","name":"_maxAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"claimWalletsMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"hodlersMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountToMint","type":"uint256"},{"internalType":"uint256","name":"_typeOfPet","type":"uint256"}],"name":"holders","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"holders_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountToMint","type":"uint256"},{"internalType":"uint256","name":"_typeOfPet","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountToMint","type":"uint256"}],"name":"mintingOnes","outputs":[],"stateMutability":"nonpayable","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":"","type":"uint256"}],"name":"petAsignToTokenID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"petTypeAvailableToMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetPublicSupplyCounter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_typeOfPet","type":"uint256"},{"internalType":"bool","name":"_available","type":"bool"}],"name":"setPetAvailabilityState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_holders_price","type":"uint256"}],"name":"setPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_reveal","type":"bool"}],"name":"setRevealState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleID","type":"uint256"}],"name":"setSaleID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_claimSale","type":"bool"},{"internalType":"bool","name":"_publicSale","type":"bool"}],"name":"setSaleState","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":"_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":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"walletsMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040527f7cccd35f224c6fbb86274f2e458d93423f1c4a773545381094d930d8bc34a199600955611068600c55665543df729c0000600d55660eebe0b40e8000600e556010805462ffffff19169055601680546001600160a01b03191673b156adf8523fdc6152affdba076a2143fd7e3c691790553480156200008357600080fd5b506040805180820182526009815268786d6665727065747360b81b6020808301918252835180850190945260038452620786d760ec1b908401528151919291620000d091600091620001c4565b508051620000e6906001906020840190620001c4565b50505062000103620000fd6200016e60201b60201c565b62000172565b60116020527f4ad3b33220dddc71b994a52d72c06b10862965f7d926534c05c00fb7e819e7b78054600160ff19918216811790925560008290527f17bc176d2408558f6e4111feebc3cab4e16b63e967be91cde721f4c8a488b55280549091169091179055620002a7565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001d2906200026a565b90600052602060002090601f016020900481019282620001f6576000855562000241565b82601f106200021157805160ff191683800117855562000241565b8280016001018555821562000241579182015b828111156200024157825182559160200191906001019062000224565b506200024f92915062000253565b5090565b5b808211156200024f576000815560010162000254565b600181811c908216806200027f57607f821691505b60208210811415620002a157634e487b7160e01b600052602260045260246000fd5b50919050565b612efc80620002b76000396000f3fe6080604052600436106102e45760003560e01c80636c0360eb11610190578063b3fc07c3116100dc578063cd7c032611610095578063e985e9c51161006f578063e985e9c5146108d8578063ea25e176146108f8578063ef483c511461090b578063f2fde38b1461092157600080fd5b8063cd7c03261461087b578063dab5f340146108a3578063e8a3d485146108c357600080fd5b8063b3fc07c314610792578063b74b013c146107b2578063b88d4fde146107d2578063b9e84592146107f2578063c66828621461082a578063c87b56dd1461085b57600080fd5b80638da5cb5b11610149578063a035b1fe11610123578063a035b1fe14610729578063a22cb4651461073f578063a475b5dd1461075f578063aed6176e1461077f57600080fd5b80638da5cb5b146106d6578063938e3d7b146106f457806395d89b411461071457600080fd5b80636c0360eb1461061e57806370a0823114610633578063715018a61461065357806377fbd4fe1461066857806382255456146106a05780638b2e9809146106b657600080fd5b80633ccfd60b1161024f578063557071691161020857806359d170ee116101e257806359d170ee146105a75780635e84d723146105d45780636352211e146105e957806364affb401461060957600080fd5b8063557071691461055257806355f804b31461056757806359647d361461058757600080fd5b80633ccfd60b146104855780633ff955341461049a578063407d791c146104ca57806342842e0e146104e0578063454dfaaf146105005780634c7dd7d41461051a57600080fd5b80631b2ef1ca116102a15780631b2ef1ca146103dd57806323b872dd146103f05780632eb4a7ab146104105780633340d62c1461042657806333bc1c5c1461044657806339a7919f1461046557600080fd5b806301ffc9a7146102e957806305fefda71461031e57806306fdde0314610340578063081812fc14610362578063095ea7b31461039a57806318160ddd146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004612897565b610941565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004612998565b610993565b005b34801561034c57600080fd5b506103556109d1565b6040516103159190612ba1565b34801561036e57600080fd5b5061038261037d36600461287e565b610a63565b6040516001600160a01b039091168152602001610315565b3480156103a657600080fd5b5061033e6103b536600461281b565b610af8565b3480156103c657600080fd5b506103cf610c0e565b604051908152602001610315565b61033e6103eb366004612998565b610c1e565b3480156103fc57600080fd5b5061033e61040b366004612725565b610e8c565b34801561041c57600080fd5b506103cf60095481565b34801561043257600080fd5b5061033e610441366004612862565b610ebd565b34801561045257600080fd5b5060105461030990610100900460ff1681565b34801561047157600080fd5b5061033e61048036600461287e565b610f0b565b34801561049157600080fd5b5061033e610f83565b3480156104a657600080fd5b506103096104b536600461287e565b60116020526000908152604090205460ff1681565b3480156104d657600080fd5b506103cf600f5481565b3480156104ec57600080fd5b5061033e6104fb366004612725565b61103c565b34801561050c57600080fd5b506010546103099060ff1681565b34801561052657600080fd5b506103cf610535366004612950565b601360209081526000928352604080842090915290825290205481565b34801561055e57600080fd5b5061033e611057565b34801561057357600080fd5b5061033e6105823660046128ee565b611088565b34801561059357600080fd5b5061033e6105a236600461287e565b6110c5565b3480156105b357600080fd5b506103cf6105c236600461287e565b60126020526000908152604090205481565b3480156105e057600080fd5b50600b546103cf565b3480156105f557600080fd5b5061038261060436600461287e565b6110f4565b34801561061557600080fd5b506103cf600281565b34801561062a57600080fd5b5061035561116b565b34801561063f57600080fd5b506103cf61064e3660046126c8565b6111f9565b34801561065f57600080fd5b5061033e611280565b34801561067457600080fd5b506103cf610683366004612950565b601560209081526000928352604080842090915290825290205481565b3480156106ac57600080fd5b506103cf600c5481565b3480156106c257600080fd5b5061033e6106d1366004612847565b6112b6565b3480156106e257600080fd5b506006546001600160a01b0316610382565b34801561070057600080fd5b5061033e61070f3660046128ee565b6112fc565b34801561072057600080fd5b50610355611339565b34801561073557600080fd5b506103cf600d5481565b34801561074b57600080fd5b5061033e61075a3660046127e6565b611348565b34801561076b57600080fd5b506010546103099062010000900460ff1681565b61033e61078d366004612998565b611353565b34801561079e57600080fd5b5061033e6107ad36600461287e565b611670565b3480156107be57600080fd5b5061033e6107cd366004612975565b6116d1565b3480156107de57600080fd5b5061033e6107ed366004612766565b61171b565b3480156107fe57600080fd5b506103cf61080d366004612950565b601460209081526000928352604080842090915290825290205481565b34801561083657600080fd5b5061035560405180604001604052806005815260200164173539b7b760d91b81525081565b34801561086757600080fd5b5061035561087636600461287e565b61174d565b34801561088757600080fd5b5061038273a5409ec958c83c3f309868babaca7c86dcb077c181565b3480156108af57600080fd5b5061033e6108be36600461287e565b611874565b3480156108cf57600080fd5b506103556118a3565b3480156108e457600080fd5b506103096108f33660046126ec565b6118b0565b61033e6109063660046129ba565b61198f565b34801561091757600080fd5b506103cf600e5481565b34801561092d57600080fd5b5061033e61093c3660046126c8565b611cb8565b60006001600160e01b031982166380ac58cd60e01b148061097257506001600160e01b03198216635b5e139f60e01b145b8061098d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146109c65760405162461bcd60e51b81526004016109bd90612c6f565b60405180910390fd5b600d91909155600e55565b6060600080546109e090612dd9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0c90612dd9565b8015610a595780601f10610a2e57610100808354040283529160200191610a59565b820191906000526020600020905b815481529060010190602001808311610a3c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610adc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109bd565b506000908152600460205260409020546001600160a01b031690565b6000610b03826110f4565b9050806001600160a01b0316836001600160a01b03161415610b715760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109bd565b336001600160a01b0382161480610b8d5750610b8d81336118b0565b610bff5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109bd565b610c098383611d53565b505050565b6000610c19600a5490565b905090565b600b543390610c2e908490612d4b565b600c541015610c745760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016109bd565b601054610100900460ff16610cc45760405162461bcd60e51b81526020600482015260166024820152755075626c69632073616c65206e6f742061637469766560501b60448201526064016109bd565b60008281526011602052604090205460ff16610cf25760405162461bcd60e51b81526004016109bd90612c2b565b600f5460009081526015602090815260408083206001600160a01b0385168452909152902054600290610d26908590612d4b565b1115610d445760405162461bcd60e51b81526004016109bd90612ca4565b60008311610d645760405162461bcd60e51b81526004016109bd90612c06565b326001600160a01b03821614610d8c5760405162461bcd60e51b81526004016109bd90612d25565b34600d5484610d9b9190612d77565b14610de15760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016109bd565b600f5460009081526015602090815260408083206001600160a01b038516845290915281208054859290610e16908490612d4b565b9091555050600b80548401905560005b83811015610e86578215610e54578260126000610e42600a5490565b81526020810191909152604001600020555b610e6682610e61600a5490565b611dc1565b610e74600a80546001019055565b80610e7e81612e14565b915050610e26565b50505050565b610e963382611ddb565b610eb25760405162461bcd60e51b81526004016109bd90612cd4565b610c09838383611eaa565b6006546001600160a01b03163314610ee75760405162461bcd60e51b81526004016109bd90612c6f565b6010805461ffff191692151561ff0019169290921761010091151591909102179055565b6006546001600160a01b03163314610f355760405162461bcd60e51b81526004016109bd90612c6f565b600a54811015610f7e5760405162461bcd60e51b815260206004820152601460248201527343616e7420707574206c65737320737570706c7960601b60448201526064016109bd565b600c55565b6006546001600160a01b03163314610fad5760405162461bcd60e51b81526004016109bd90612c6f565b6040514790600090339083908381818185875af1925050503d8060008114610ff1576040519150601f19603f3d011682016040523d82523d6000602084013e610ff6565b606091505b50509050806110385760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016109bd565b5050565b610c098383836040518060200160405280600081525061171b565b6006546001600160a01b031633146110815760405162461bcd60e51b81526004016109bd90612c6f565b6000600b55565b6006546001600160a01b031633146110b25760405162461bcd60e51b81526004016109bd90612c6f565b80516110389060079060208401906125a4565b6006546001600160a01b031633146110ef5760405162461bcd60e51b81526004016109bd90612c6f565b600f55565b6000818152600260205260408120546001600160a01b03168061098d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109bd565b6007805461117890612dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546111a490612dd9565b80156111f15780601f106111c6576101008083540402835291602001916111f1565b820191906000526020600020905b8154815290600101906020018083116111d457829003601f168201915b505050505081565b60006001600160a01b0382166112645760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109bd565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112aa5760405162461bcd60e51b81526004016109bd90612c6f565b6112b46000612046565b565b6006546001600160a01b031633146112e05760405162461bcd60e51b81526004016109bd90612c6f565b60108054911515620100000262ff000019909216919091179055565b6006546001600160a01b031633146113265760405162461bcd60e51b81526004016109bd90612c6f565b80516110389060089060208401906125a4565b6060600180546109e090612dd9565b611038338383612098565b600b543390611363908490612d4b565b600c5410156113a95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016109bd565b601054610100900460ff166113f95760405162461bcd60e51b81526020600482015260166024820152755075626c69632073616c65206e6f742061637469766560501b60448201526064016109bd565b6016546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b15801561143f57600080fd5b505afa158015611453573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114779190612937565b116114b35760405162461bcd60e51b815260206004820152600c60248201526b2737b7103132b634b2bb32b960a11b60448201526064016109bd565b60008281526011602052604090205460ff166114e15760405162461bcd60e51b81526004016109bd90612c2b565b600f5460009081526014602090815260408083206001600160a01b0385168452909152902054600290611515908590612d4b565b11156115335760405162461bcd60e51b81526004016109bd90612ca4565b600083116115535760405162461bcd60e51b81526004016109bd90612c06565b326001600160a01b0382161461157b5760405162461bcd60e51b81526004016109bd90612d25565b34600e548461158a9190612d77565b146115d05760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016109bd565b600f5460009081526014602090815260408083206001600160a01b038516845290915281208054859290611605908490612d4b565b9091555050600b80548401905560005b83811015610e86578215611643578260126000611631600a5490565b81526020810191909152604001600020555b61165082610e61600a5490565b61165e600a80546001019055565b8061166881612e14565b915050611615565b6006546001600160a01b0316331461169a5760405162461bcd60e51b81526004016109bd90612c6f565b60005b81811015611038576116b133600a54611dc1565b6116bf600a80546001019055565b806116c981612e14565b91505061169d565b6006546001600160a01b031633146116fb5760405162461bcd60e51b81526004016109bd90612c6f565b600091825260116020526040909120805460ff1916911515919091179055565b6117253383611ddb565b6117415760405162461bcd60e51b81526004016109bd90612cd4565b610e8684848484612167565b6000818152600260205260409020546060906001600160a01b03166117ac5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016109bd565b6000600780546117bb90612dd9565b9050116117d7576040518060200160405280600081525061098d565b60105460079062010000900460ff16611826576000838152601260205260409020546118029061219a565b6040516020016118129190612a92565b60405160208183030381529060405261182f565b61182f8361219a565b60405180604001604052806005815260200164173539b7b760d91b81525060405160200161185f93929190612abd565b60405160208183030381529060405292915050565b6006546001600160a01b0316331461189e5760405162461bcd60e51b81526004016109bd90612c6f565b600955565b6008805461117890612dd9565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b15801561190c57600080fd5b505afa158015611920573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194491906128d1565b6001600160a01b0316141561195d57600191505061098d565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b601054339060ff166119d65760405162461bcd60e51b815260206004820152601060248201526f436c61696d206e6f742061637469766560801b60448201526064016109bd565b6016546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b158015611a1c57600080fd5b505afa158015611a30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a549190612937565b11611a905760405162461bcd60e51b815260206004820152600c60248201526b2737b7103132b634b2bb32b960a11b60448201526064016109bd565b60008581526011602052604090205460ff16611abe5760405162461bcd60e51b81526004016109bd90612c2b565b600f5460009081526013602090815260408083206001600160a01b03851684529091529020548490611af1908890612d4b565b1115611b0f5760405162461bcd60e51b81526004016109bd90612ca4565b60008611611b2f5760405162461bcd60e51b81526004016109bd90612c06565b326001600160a01b03821614611b575760405162461bcd60e51b81526004016109bd90612d25565b6040516bffffffffffffffffffffffff19606083901b16602082015260348101859052600090605401604051602081830303815290604052805190602001209050611bd9848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150849050612298565b611c155760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016109bd565b600f5460009081526013602090815260408083206001600160a01b038616845290915281208054899290611c4a908490612d4b565b90915550600090505b87811015611cae578615611c81578660126000611c6f600a5490565b81526020810191909152604001600020555b611c8e83610e61600a5490565b611c9c600a80546001019055565b80611ca681612e14565b915050611c53565b5050505050505050565b6006546001600160a01b03163314611ce25760405162461bcd60e51b81526004016109bd90612c6f565b6001600160a01b038116611d475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109bd565b611d5081612046565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d88826110f4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6110388282604051806020016040528060008152506122ae565b6000818152600260205260408120546001600160a01b0316611e545760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109bd565b6000611e5f836110f4565b9050806001600160a01b0316846001600160a01b03161480611e9a5750836001600160a01b0316611e8f84610a63565b6001600160a01b0316145b80611987575061198781856118b0565b826001600160a01b0316611ebd826110f4565b6001600160a01b031614611f215760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016109bd565b6001600160a01b038216611f835760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109bd565b611f8e600082611d53565b6001600160a01b0383166000908152600360205260408120805460019290611fb7908490612d96565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fe5908490612d4b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120fa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109bd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612172848484611eaa565b61217e848484846122e1565b610e865760405162461bcd60e51b81526004016109bd90612bb4565b6060816121be5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121e857806121d281612e14565b91506121e19050600a83612d63565b91506121c2565b60008167ffffffffffffffff81111561220357612203612e85565b6040519080825280601f01601f19166020018201604052801561222d576020820181803683370190505b5090505b841561198757612242600183612d96565b915061224f600a86612e2f565b61225a906030612d4b565b60f81b81838151811061226f5761226f612e6f565b60200101906001600160f81b031916908160001a905350612291600a86612d63565b9450612231565b6000826122a585846123ee565b14949350505050565b6122b88383612462565b6122c560008484846122e1565b610c095760405162461bcd60e51b81526004016109bd90612bb4565b60006001600160a01b0384163b156123e357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612325903390899088908890600401612b6e565b602060405180830381600087803b15801561233f57600080fd5b505af192505050801561236f575060408051601f3d908101601f1916820190925261236c918101906128b4565b60015b6123c9573d80801561239d576040519150601f19603f3d011682016040523d82523d6000602084013e6123a2565b606091505b5080516123c15760405162461bcd60e51b81526004016109bd90612bb4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611987565b506001949350505050565b600081815b845181101561245a57600085828151811061241057612410612e6f565b602002602001015190508083116124365760008381526020829052604090209250612447565b600081815260208490526040902092505b508061245281612e14565b9150506123f3565b509392505050565b6001600160a01b0382166124b85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109bd565b6000818152600260205260409020546001600160a01b03161561251d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109bd565b6001600160a01b0382166000908152600360205260408120805460019290612546908490612d4b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546125b090612dd9565b90600052602060002090601f0160209004810192826125d25760008555612618565b82601f106125eb57805160ff1916838001178555612618565b82800160010185558215612618579182015b828111156126185782518255916020019190600101906125fd565b50612624929150612628565b5090565b5b808211156126245760008155600101612629565b600067ffffffffffffffff8084111561265857612658612e85565b604051601f8501601f19908116603f0116810190828211818310171561268057612680612e85565b8160405280935085815286868601111561269957600080fd5b858560208301376000602087830101525050509392505050565b803580151581146126c357600080fd5b919050565b6000602082840312156126da57600080fd5b81356126e581612e9b565b9392505050565b600080604083850312156126ff57600080fd5b823561270a81612e9b565b9150602083013561271a81612e9b565b809150509250929050565b60008060006060848603121561273a57600080fd5b833561274581612e9b565b9250602084013561275581612e9b565b929592945050506040919091013590565b6000806000806080858703121561277c57600080fd5b843561278781612e9b565b9350602085013561279781612e9b565b925060408501359150606085013567ffffffffffffffff8111156127ba57600080fd5b8501601f810187136127cb57600080fd5b6127da8782356020840161263d565b91505092959194509250565b600080604083850312156127f957600080fd5b823561280481612e9b565b9150612812602084016126b3565b90509250929050565b6000806040838503121561282e57600080fd5b823561283981612e9b565b946020939093013593505050565b60006020828403121561285957600080fd5b6126e5826126b3565b6000806040838503121561287557600080fd5b612804836126b3565b60006020828403121561289057600080fd5b5035919050565b6000602082840312156128a957600080fd5b81356126e581612eb0565b6000602082840312156128c657600080fd5b81516126e581612eb0565b6000602082840312156128e357600080fd5b81516126e581612e9b565b60006020828403121561290057600080fd5b813567ffffffffffffffff81111561291757600080fd5b8201601f8101841361292857600080fd5b6119878482356020840161263d565b60006020828403121561294957600080fd5b5051919050565b6000806040838503121561296357600080fd5b82359150602083013561271a81612e9b565b6000806040838503121561298857600080fd5b82359150612812602084016126b3565b600080604083850312156129ab57600080fd5b50508035926020909101359150565b6000806000806000608086880312156129d257600080fd5b853594506020860135935060408601359250606086013567ffffffffffffffff808211156129ff57600080fd5b818801915088601f830112612a1357600080fd5b813581811115612a2257600080fd5b8960208260051b8501011115612a3757600080fd5b9699959850939650602001949392505050565b60008151808452612a62816020860160208601612dad565b601f01601f19169290920160200192915050565b60008151612a88818560208601612dad565b9290920192915050565b60008251612aa4818460208701612dad565b662fb437b63232b960c91b920191825250600701919050565b600080855481600182811c915080831680612ad957607f831692505b6020808410821415612af957634e487b7160e01b86526022600452602486fd5b818015612b0d5760018114612b1e57612b4b565b60ff19861689528489019650612b4b565b60008c81526020902060005b86811015612b435781548b820152908501908301612b2a565b505084890196505b505050505050612b64612b5e8287612a76565b85612a76565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b6490830184612a4a565b6020815260006126e56020830184612a4a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600b908201526a4e6f742030206d696e747360a81b604082015260600190565b60208082526024908201527f4e6f7420616c6c6f77656420746f206d696e7420746869732074797065206f66604082015263081c195d60e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152754e6f7420616c6c6f7720746f206d696e74206d6f726560501b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600c908201526b4e6f20636f6e74726163747360a01b604082015260600190565b60008219821115612d5e57612d5e612e43565b500190565b600082612d7257612d72612e59565b500490565b6000816000190483118215151615612d9157612d91612e43565b500290565b600082821015612da857612da8612e43565b500390565b60005b83811015612dc8578181015183820152602001612db0565b83811115610e865750506000910152565b600181811c90821680612ded57607f821691505b60208210811415612e0e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e2857612e28612e43565b5060010190565b600082612e3e57612e3e612e59565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611d5057600080fd5b6001600160e01b031981168114611d5057600080fdfea2646970667358221220da67efe1b306498db0c1fd94e9eb37340cf430a6a890fd8ad3cf9ea38cac9f9464736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102e45760003560e01c80636c0360eb11610190578063b3fc07c3116100dc578063cd7c032611610095578063e985e9c51161006f578063e985e9c5146108d8578063ea25e176146108f8578063ef483c511461090b578063f2fde38b1461092157600080fd5b8063cd7c03261461087b578063dab5f340146108a3578063e8a3d485146108c357600080fd5b8063b3fc07c314610792578063b74b013c146107b2578063b88d4fde146107d2578063b9e84592146107f2578063c66828621461082a578063c87b56dd1461085b57600080fd5b80638da5cb5b11610149578063a035b1fe11610123578063a035b1fe14610729578063a22cb4651461073f578063a475b5dd1461075f578063aed6176e1461077f57600080fd5b80638da5cb5b146106d6578063938e3d7b146106f457806395d89b411461071457600080fd5b80636c0360eb1461061e57806370a0823114610633578063715018a61461065357806377fbd4fe1461066857806382255456146106a05780638b2e9809146106b657600080fd5b80633ccfd60b1161024f578063557071691161020857806359d170ee116101e257806359d170ee146105a75780635e84d723146105d45780636352211e146105e957806364affb401461060957600080fd5b8063557071691461055257806355f804b31461056757806359647d361461058757600080fd5b80633ccfd60b146104855780633ff955341461049a578063407d791c146104ca57806342842e0e146104e0578063454dfaaf146105005780634c7dd7d41461051a57600080fd5b80631b2ef1ca116102a15780631b2ef1ca146103dd57806323b872dd146103f05780632eb4a7ab146104105780633340d62c1461042657806333bc1c5c1461044657806339a7919f1461046557600080fd5b806301ffc9a7146102e957806305fefda71461031e57806306fdde0314610340578063081812fc14610362578063095ea7b31461039a57806318160ddd146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004612897565b610941565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004612998565b610993565b005b34801561034c57600080fd5b506103556109d1565b6040516103159190612ba1565b34801561036e57600080fd5b5061038261037d36600461287e565b610a63565b6040516001600160a01b039091168152602001610315565b3480156103a657600080fd5b5061033e6103b536600461281b565b610af8565b3480156103c657600080fd5b506103cf610c0e565b604051908152602001610315565b61033e6103eb366004612998565b610c1e565b3480156103fc57600080fd5b5061033e61040b366004612725565b610e8c565b34801561041c57600080fd5b506103cf60095481565b34801561043257600080fd5b5061033e610441366004612862565b610ebd565b34801561045257600080fd5b5060105461030990610100900460ff1681565b34801561047157600080fd5b5061033e61048036600461287e565b610f0b565b34801561049157600080fd5b5061033e610f83565b3480156104a657600080fd5b506103096104b536600461287e565b60116020526000908152604090205460ff1681565b3480156104d657600080fd5b506103cf600f5481565b3480156104ec57600080fd5b5061033e6104fb366004612725565b61103c565b34801561050c57600080fd5b506010546103099060ff1681565b34801561052657600080fd5b506103cf610535366004612950565b601360209081526000928352604080842090915290825290205481565b34801561055e57600080fd5b5061033e611057565b34801561057357600080fd5b5061033e6105823660046128ee565b611088565b34801561059357600080fd5b5061033e6105a236600461287e565b6110c5565b3480156105b357600080fd5b506103cf6105c236600461287e565b60126020526000908152604090205481565b3480156105e057600080fd5b50600b546103cf565b3480156105f557600080fd5b5061038261060436600461287e565b6110f4565b34801561061557600080fd5b506103cf600281565b34801561062a57600080fd5b5061035561116b565b34801561063f57600080fd5b506103cf61064e3660046126c8565b6111f9565b34801561065f57600080fd5b5061033e611280565b34801561067457600080fd5b506103cf610683366004612950565b601560209081526000928352604080842090915290825290205481565b3480156106ac57600080fd5b506103cf600c5481565b3480156106c257600080fd5b5061033e6106d1366004612847565b6112b6565b3480156106e257600080fd5b506006546001600160a01b0316610382565b34801561070057600080fd5b5061033e61070f3660046128ee565b6112fc565b34801561072057600080fd5b50610355611339565b34801561073557600080fd5b506103cf600d5481565b34801561074b57600080fd5b5061033e61075a3660046127e6565b611348565b34801561076b57600080fd5b506010546103099062010000900460ff1681565b61033e61078d366004612998565b611353565b34801561079e57600080fd5b5061033e6107ad36600461287e565b611670565b3480156107be57600080fd5b5061033e6107cd366004612975565b6116d1565b3480156107de57600080fd5b5061033e6107ed366004612766565b61171b565b3480156107fe57600080fd5b506103cf61080d366004612950565b601460209081526000928352604080842090915290825290205481565b34801561083657600080fd5b5061035560405180604001604052806005815260200164173539b7b760d91b81525081565b34801561086757600080fd5b5061035561087636600461287e565b61174d565b34801561088757600080fd5b5061038273a5409ec958c83c3f309868babaca7c86dcb077c181565b3480156108af57600080fd5b5061033e6108be36600461287e565b611874565b3480156108cf57600080fd5b506103556118a3565b3480156108e457600080fd5b506103096108f33660046126ec565b6118b0565b61033e6109063660046129ba565b61198f565b34801561091757600080fd5b506103cf600e5481565b34801561092d57600080fd5b5061033e61093c3660046126c8565b611cb8565b60006001600160e01b031982166380ac58cd60e01b148061097257506001600160e01b03198216635b5e139f60e01b145b8061098d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146109c65760405162461bcd60e51b81526004016109bd90612c6f565b60405180910390fd5b600d91909155600e55565b6060600080546109e090612dd9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0c90612dd9565b8015610a595780601f10610a2e57610100808354040283529160200191610a59565b820191906000526020600020905b815481529060010190602001808311610a3c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610adc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109bd565b506000908152600460205260409020546001600160a01b031690565b6000610b03826110f4565b9050806001600160a01b0316836001600160a01b03161415610b715760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109bd565b336001600160a01b0382161480610b8d5750610b8d81336118b0565b610bff5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109bd565b610c098383611d53565b505050565b6000610c19600a5490565b905090565b600b543390610c2e908490612d4b565b600c541015610c745760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016109bd565b601054610100900460ff16610cc45760405162461bcd60e51b81526020600482015260166024820152755075626c69632073616c65206e6f742061637469766560501b60448201526064016109bd565b60008281526011602052604090205460ff16610cf25760405162461bcd60e51b81526004016109bd90612c2b565b600f5460009081526015602090815260408083206001600160a01b0385168452909152902054600290610d26908590612d4b565b1115610d445760405162461bcd60e51b81526004016109bd90612ca4565b60008311610d645760405162461bcd60e51b81526004016109bd90612c06565b326001600160a01b03821614610d8c5760405162461bcd60e51b81526004016109bd90612d25565b34600d5484610d9b9190612d77565b14610de15760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016109bd565b600f5460009081526015602090815260408083206001600160a01b038516845290915281208054859290610e16908490612d4b565b9091555050600b80548401905560005b83811015610e86578215610e54578260126000610e42600a5490565b81526020810191909152604001600020555b610e6682610e61600a5490565b611dc1565b610e74600a80546001019055565b80610e7e81612e14565b915050610e26565b50505050565b610e963382611ddb565b610eb25760405162461bcd60e51b81526004016109bd90612cd4565b610c09838383611eaa565b6006546001600160a01b03163314610ee75760405162461bcd60e51b81526004016109bd90612c6f565b6010805461ffff191692151561ff0019169290921761010091151591909102179055565b6006546001600160a01b03163314610f355760405162461bcd60e51b81526004016109bd90612c6f565b600a54811015610f7e5760405162461bcd60e51b815260206004820152601460248201527343616e7420707574206c65737320737570706c7960601b60448201526064016109bd565b600c55565b6006546001600160a01b03163314610fad5760405162461bcd60e51b81526004016109bd90612c6f565b6040514790600090339083908381818185875af1925050503d8060008114610ff1576040519150601f19603f3d011682016040523d82523d6000602084013e610ff6565b606091505b50509050806110385760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016109bd565b5050565b610c098383836040518060200160405280600081525061171b565b6006546001600160a01b031633146110815760405162461bcd60e51b81526004016109bd90612c6f565b6000600b55565b6006546001600160a01b031633146110b25760405162461bcd60e51b81526004016109bd90612c6f565b80516110389060079060208401906125a4565b6006546001600160a01b031633146110ef5760405162461bcd60e51b81526004016109bd90612c6f565b600f55565b6000818152600260205260408120546001600160a01b03168061098d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109bd565b6007805461117890612dd9565b80601f01602080910402602001604051908101604052809291908181526020018280546111a490612dd9565b80156111f15780601f106111c6576101008083540402835291602001916111f1565b820191906000526020600020905b8154815290600101906020018083116111d457829003601f168201915b505050505081565b60006001600160a01b0382166112645760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109bd565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112aa5760405162461bcd60e51b81526004016109bd90612c6f565b6112b46000612046565b565b6006546001600160a01b031633146112e05760405162461bcd60e51b81526004016109bd90612c6f565b60108054911515620100000262ff000019909216919091179055565b6006546001600160a01b031633146113265760405162461bcd60e51b81526004016109bd90612c6f565b80516110389060089060208401906125a4565b6060600180546109e090612dd9565b611038338383612098565b600b543390611363908490612d4b565b600c5410156113a95760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016109bd565b601054610100900460ff166113f95760405162461bcd60e51b81526020600482015260166024820152755075626c69632073616c65206e6f742061637469766560501b60448201526064016109bd565b6016546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b15801561143f57600080fd5b505afa158015611453573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114779190612937565b116114b35760405162461bcd60e51b815260206004820152600c60248201526b2737b7103132b634b2bb32b960a11b60448201526064016109bd565b60008281526011602052604090205460ff166114e15760405162461bcd60e51b81526004016109bd90612c2b565b600f5460009081526014602090815260408083206001600160a01b0385168452909152902054600290611515908590612d4b565b11156115335760405162461bcd60e51b81526004016109bd90612ca4565b600083116115535760405162461bcd60e51b81526004016109bd90612c06565b326001600160a01b0382161461157b5760405162461bcd60e51b81526004016109bd90612d25565b34600e548461158a9190612d77565b146115d05760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016109bd565b600f5460009081526014602090815260408083206001600160a01b038516845290915281208054859290611605908490612d4b565b9091555050600b80548401905560005b83811015610e86578215611643578260126000611631600a5490565b81526020810191909152604001600020555b61165082610e61600a5490565b61165e600a80546001019055565b8061166881612e14565b915050611615565b6006546001600160a01b0316331461169a5760405162461bcd60e51b81526004016109bd90612c6f565b60005b81811015611038576116b133600a54611dc1565b6116bf600a80546001019055565b806116c981612e14565b91505061169d565b6006546001600160a01b031633146116fb5760405162461bcd60e51b81526004016109bd90612c6f565b600091825260116020526040909120805460ff1916911515919091179055565b6117253383611ddb565b6117415760405162461bcd60e51b81526004016109bd90612cd4565b610e8684848484612167565b6000818152600260205260409020546060906001600160a01b03166117ac5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016109bd565b6000600780546117bb90612dd9565b9050116117d7576040518060200160405280600081525061098d565b60105460079062010000900460ff16611826576000838152601260205260409020546118029061219a565b6040516020016118129190612a92565b60405160208183030381529060405261182f565b61182f8361219a565b60405180604001604052806005815260200164173539b7b760d91b81525060405160200161185f93929190612abd565b60405160208183030381529060405292915050565b6006546001600160a01b0316331461189e5760405162461bcd60e51b81526004016109bd90612c6f565b600955565b6008805461117890612dd9565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b15801561190c57600080fd5b505afa158015611920573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194491906128d1565b6001600160a01b0316141561195d57600191505061098d565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b601054339060ff166119d65760405162461bcd60e51b815260206004820152601060248201526f436c61696d206e6f742061637469766560801b60448201526064016109bd565b6016546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b158015611a1c57600080fd5b505afa158015611a30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a549190612937565b11611a905760405162461bcd60e51b815260206004820152600c60248201526b2737b7103132b634b2bb32b960a11b60448201526064016109bd565b60008581526011602052604090205460ff16611abe5760405162461bcd60e51b81526004016109bd90612c2b565b600f5460009081526013602090815260408083206001600160a01b03851684529091529020548490611af1908890612d4b565b1115611b0f5760405162461bcd60e51b81526004016109bd90612ca4565b60008611611b2f5760405162461bcd60e51b81526004016109bd90612c06565b326001600160a01b03821614611b575760405162461bcd60e51b81526004016109bd90612d25565b6040516bffffffffffffffffffffffff19606083901b16602082015260348101859052600090605401604051602081830303815290604052805190602001209050611bd9848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506009549150849050612298565b611c155760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016109bd565b600f5460009081526013602090815260408083206001600160a01b038616845290915281208054899290611c4a908490612d4b565b90915550600090505b87811015611cae578615611c81578660126000611c6f600a5490565b81526020810191909152604001600020555b611c8e83610e61600a5490565b611c9c600a80546001019055565b80611ca681612e14565b915050611c53565b5050505050505050565b6006546001600160a01b03163314611ce25760405162461bcd60e51b81526004016109bd90612c6f565b6001600160a01b038116611d475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109bd565b611d5081612046565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d88826110f4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6110388282604051806020016040528060008152506122ae565b6000818152600260205260408120546001600160a01b0316611e545760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109bd565b6000611e5f836110f4565b9050806001600160a01b0316846001600160a01b03161480611e9a5750836001600160a01b0316611e8f84610a63565b6001600160a01b0316145b80611987575061198781856118b0565b826001600160a01b0316611ebd826110f4565b6001600160a01b031614611f215760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016109bd565b6001600160a01b038216611f835760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109bd565b611f8e600082611d53565b6001600160a01b0383166000908152600360205260408120805460019290611fb7908490612d96565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fe5908490612d4b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120fa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109bd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612172848484611eaa565b61217e848484846122e1565b610e865760405162461bcd60e51b81526004016109bd90612bb4565b6060816121be5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121e857806121d281612e14565b91506121e19050600a83612d63565b91506121c2565b60008167ffffffffffffffff81111561220357612203612e85565b6040519080825280601f01601f19166020018201604052801561222d576020820181803683370190505b5090505b841561198757612242600183612d96565b915061224f600a86612e2f565b61225a906030612d4b565b60f81b81838151811061226f5761226f612e6f565b60200101906001600160f81b031916908160001a905350612291600a86612d63565b9450612231565b6000826122a585846123ee565b14949350505050565b6122b88383612462565b6122c560008484846122e1565b610c095760405162461bcd60e51b81526004016109bd90612bb4565b60006001600160a01b0384163b156123e357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612325903390899088908890600401612b6e565b602060405180830381600087803b15801561233f57600080fd5b505af192505050801561236f575060408051601f3d908101601f1916820190925261236c918101906128b4565b60015b6123c9573d80801561239d576040519150601f19603f3d011682016040523d82523d6000602084013e6123a2565b606091505b5080516123c15760405162461bcd60e51b81526004016109bd90612bb4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611987565b506001949350505050565b600081815b845181101561245a57600085828151811061241057612410612e6f565b602002602001015190508083116124365760008381526020829052604090209250612447565b600081815260208490526040902092505b508061245281612e14565b9150506123f3565b509392505050565b6001600160a01b0382166124b85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109bd565b6000818152600260205260409020546001600160a01b03161561251d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109bd565b6001600160a01b0382166000908152600360205260408120805460019290612546908490612d4b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546125b090612dd9565b90600052602060002090601f0160209004810192826125d25760008555612618565b82601f106125eb57805160ff1916838001178555612618565b82800160010185558215612618579182015b828111156126185782518255916020019190600101906125fd565b50612624929150612628565b5090565b5b808211156126245760008155600101612629565b600067ffffffffffffffff8084111561265857612658612e85565b604051601f8501601f19908116603f0116810190828211818310171561268057612680612e85565b8160405280935085815286868601111561269957600080fd5b858560208301376000602087830101525050509392505050565b803580151581146126c357600080fd5b919050565b6000602082840312156126da57600080fd5b81356126e581612e9b565b9392505050565b600080604083850312156126ff57600080fd5b823561270a81612e9b565b9150602083013561271a81612e9b565b809150509250929050565b60008060006060848603121561273a57600080fd5b833561274581612e9b565b9250602084013561275581612e9b565b929592945050506040919091013590565b6000806000806080858703121561277c57600080fd5b843561278781612e9b565b9350602085013561279781612e9b565b925060408501359150606085013567ffffffffffffffff8111156127ba57600080fd5b8501601f810187136127cb57600080fd5b6127da8782356020840161263d565b91505092959194509250565b600080604083850312156127f957600080fd5b823561280481612e9b565b9150612812602084016126b3565b90509250929050565b6000806040838503121561282e57600080fd5b823561283981612e9b565b946020939093013593505050565b60006020828403121561285957600080fd5b6126e5826126b3565b6000806040838503121561287557600080fd5b612804836126b3565b60006020828403121561289057600080fd5b5035919050565b6000602082840312156128a957600080fd5b81356126e581612eb0565b6000602082840312156128c657600080fd5b81516126e581612eb0565b6000602082840312156128e357600080fd5b81516126e581612e9b565b60006020828403121561290057600080fd5b813567ffffffffffffffff81111561291757600080fd5b8201601f8101841361292857600080fd5b6119878482356020840161263d565b60006020828403121561294957600080fd5b5051919050565b6000806040838503121561296357600080fd5b82359150602083013561271a81612e9b565b6000806040838503121561298857600080fd5b82359150612812602084016126b3565b600080604083850312156129ab57600080fd5b50508035926020909101359150565b6000806000806000608086880312156129d257600080fd5b853594506020860135935060408601359250606086013567ffffffffffffffff808211156129ff57600080fd5b818801915088601f830112612a1357600080fd5b813581811115612a2257600080fd5b8960208260051b8501011115612a3757600080fd5b9699959850939650602001949392505050565b60008151808452612a62816020860160208601612dad565b601f01601f19169290920160200192915050565b60008151612a88818560208601612dad565b9290920192915050565b60008251612aa4818460208701612dad565b662fb437b63232b960c91b920191825250600701919050565b600080855481600182811c915080831680612ad957607f831692505b6020808410821415612af957634e487b7160e01b86526022600452602486fd5b818015612b0d5760018114612b1e57612b4b565b60ff19861689528489019650612b4b565b60008c81526020902060005b86811015612b435781548b820152908501908301612b2a565b505084890196505b505050505050612b64612b5e8287612a76565b85612a76565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b6490830184612a4a565b6020815260006126e56020830184612a4a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600b908201526a4e6f742030206d696e747360a81b604082015260600190565b60208082526024908201527f4e6f7420616c6c6f77656420746f206d696e7420746869732074797065206f66604082015263081c195d60e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152754e6f7420616c6c6f7720746f206d696e74206d6f726560501b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252600c908201526b4e6f20636f6e74726163747360a01b604082015260600190565b60008219821115612d5e57612d5e612e43565b500190565b600082612d7257612d72612e59565b500490565b6000816000190483118215151615612d9157612d91612e43565b500290565b600082821015612da857612da8612e43565b500390565b60005b83811015612dc8578181015183820152602001612db0565b83811115610e865750506000910152565b600181811c90821680612ded57607f821691505b60208210811415612e0e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e2857612e28612e43565b5060010190565b600082612e3e57612e3e612e59565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611d5057600080fd5b6001600160e01b031981168114611d5057600080fdfea2646970667358221220da67efe1b306498db0c1fd94e9eb37340cf430a6a890fd8ad3cf9ea38cac9f9464736f6c63430008070033

Deployed Bytecode Sourcemap

41061:7630:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23949:305;;;;;;;;;;-1:-1:-1;23949:305:0;;;;;:::i;:::-;;:::i;:::-;;;10783:14:1;;10776:22;10758:41;;10746:2;10731:18;23949:305:0;;;;;;;;47435:152;;;;;;;;;;-1:-1:-1;47435:152:0;;;;;:::i;:::-;;:::i;:::-;;24894:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26453:221::-;;;;;;;;;;-1:-1:-1;26453:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10081:32:1;;;10063:51;;10051:2;10036:18;26453:221:0;9917:203:1;25976:411:0;;;;;;;;;;-1:-1:-1;25976:411:0;;;;;:::i;:::-;;:::i;48018:103::-;;;;;;;;;;;;;:::i;:::-;;;10956:25:1;;;10944:2;10929:18;48018:103:0;10810:177:1;44713:1064:0;;;;;;:::i;:::-;;:::i;27203:339::-;;;;;;;;;;-1:-1:-1;27203:339:0;;;;;:::i;:::-;;:::i;41360:94::-;;;;;;;;;;;;;;;;47595:152;;;;;;;;;;-1:-1:-1;47595:152:0;;;;;:::i;:::-;;:::i;41802:30::-;;;;;;;;;;-1:-1:-1;41802:30:0;;;;;;;;;;;46455:193;;;;;;;;;;-1:-1:-1;46455:193:0;;;;;:::i;:::-;;:::i;46238:209::-;;;;;;;;;;;;;:::i;41874:54::-;;;;;;;;;;-1:-1:-1;41874:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;41680:21;;;;;;;;;;;;;;;;27613:185;;;;;;;;;;-1:-1:-1;27613:185:0;;;;;:::i;:::-;;:::i;41766:29::-;;;;;;;;;;-1:-1:-1;41766:29:0;;;;;;;;41994:73;;;;;;;;;;-1:-1:-1;41994:73:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;46898:91;;;;;;;;;;;;;:::i;46997:100::-;;;;;;;;;;-1:-1:-1;46997:100:0;;;;;:::i;:::-;;:::i;47337:90::-;;;;;;;;;;-1:-1:-1;47337:90:0;;;;;:::i;:::-;;:::i;41935:52::-;;;;;;;;;;-1:-1:-1;41935:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;48129:95;;;;;;;;;;-1:-1:-1;48203:13:0;;48129:95;;24588:239;;;;;;;;;;-1:-1:-1;24588:239:0;;;;;:::i;:::-;;:::i;41708:49::-;;;;;;;;;;;;41756:1;41708:49;;41151:21;;;;;;;;;;;;;:::i;24318:208::-;;;;;;;;;;-1:-1:-1;24318:208:0;;;;;:::i;:::-;;:::i;38759:103::-;;;;;;;;;;;;;:::i;42149:68::-;;;;;;;;;;-1:-1:-1;42149:68:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;41543:39;;;;;;;;;;;;;;;;47755:92;;;;;;;;;;-1:-1:-1;47755:92:0;;;;;:::i;:::-;;:::i;38108:87::-;;;;;;;;;;-1:-1:-1;38181:6:0;;-1:-1:-1;;;;;38181:6:0;38108:87;;47105:116;;;;;;;;;;-1:-1:-1;47105:116:0;;;;;:::i;:::-;;:::i;25063:104::-;;;;;;;;;;;;;:::i;41589:34::-;;;;;;;;;;;;;;;;26746:155;;;;;;;;;;-1:-1:-1;26746:155:0;;;;;:::i;:::-;;:::i;41839:26::-;;;;;;;;;;-1:-1:-1;41839:26:0;;;;;;;;;;;43565:1140;;;;;;:::i;:::-;;:::i;46656:234::-;;;;;;;;;;-1:-1:-1;46656:234:0;;;;;:::i;:::-;;:::i;47855:155::-;;;;;;;;;;-1:-1:-1;47855:155:0;;;;;:::i;:::-;;:::i;27869:328::-;;;;;;;;;;-1:-1:-1;27869:328:0;;;;;:::i;:::-;;:::i;42074:68::-;;;;;;;;;;-1:-1:-1;42074:68:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;41211:46;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;41211:46:0;;;;;48232:456;;;;;;;;;;-1:-1:-1;48232:456:0;;;;;:::i;:::-;;:::i;41264:89::-;;;;;;;;;;;;41311:42;41264:89;;47229:100;;;;;;;;;;-1:-1:-1;47229:100:0;;;;;:::i;:::-;;:::i;41179:25::-;;;;;;;;;;;;;:::i;45785:445::-;;;;;;;;;;-1:-1:-1;45785:445:0;;;;;:::i;:::-;;:::i;42446:1111::-;;;;;;:::i;:::-;;:::i;41630:43::-;;;;;;;;;;;;;;;;39017:201;;;;;;;;;;-1:-1:-1;39017:201:0;;;;;:::i;:::-;;:::i;23949:305::-;24051:4;-1:-1:-1;;;;;;24088:40:0;;-1:-1:-1;;;24088:40:0;;:105;;-1:-1:-1;;;;;;;24145:48:0;;-1:-1:-1;;;24145:48:0;24088:105;:158;;;-1:-1:-1;;;;;;;;;;22504:40:0;;;24210:36;24068:178;23949:305;-1:-1:-1;;23949:305:0:o;47435:152::-;38181:6;;-1:-1:-1;;;;;38181:6:0;19304:10;38328:23;38320:68;;;;-1:-1:-1;;;38320:68:0;;;;;;;:::i;:::-;;;;;;;;;47524:5:::1;:14:::0;;;;47549:13:::1;:30:::0;47435:152::o;24894:100::-;24948:13;24981:5;24974:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24894:100;:::o;26453:221::-;26529:7;29796:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29796:16:0;26549:73;;;;-1:-1:-1;;;26549:73:0;;17569:2:1;26549:73:0;;;17551:21:1;17608:2;17588:18;;;17581:30;17647:34;17627:18;;;17620:62;-1:-1:-1;;;17698:18:1;;;17691:42;17750:19;;26549:73:0;17367:408:1;26549:73:0;-1:-1:-1;26642:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26642:24:0;;26453:221::o;25976:411::-;26057:13;26073:23;26088:7;26073:14;:23::i;:::-;26057:39;;26121:5;-1:-1:-1;;;;;26115:11:0;:2;-1:-1:-1;;;;;26115:11:0;;;26107:57;;;;-1:-1:-1;;;26107:57:0;;19745:2:1;26107:57:0;;;19727:21:1;19784:2;19764:18;;;19757:30;19823:34;19803:18;;;19796:62;-1:-1:-1;;;19874:18:1;;;19867:31;19915:19;;26107:57:0;19543:397:1;26107:57:0;19304:10;-1:-1:-1;;;;;26199:21:0;;;;:62;;-1:-1:-1;26224:37:0;26241:5;19304:10;45785:445;:::i;26224:37::-;26177:168;;;;-1:-1:-1;;;26177:168:0;;14860:2:1;26177:168:0;;;14842:21:1;14899:2;14879:18;;;14872:30;14938:34;14918:18;;;14911:62;15009:26;14989:18;;;14982:54;15053:19;;26177:168:0;14658:420:1;26177:168:0;26358:21;26367:2;26371:7;26358:8;:21::i;:::-;26046:341;25976:411;;:::o;48018:103::-;48064:7;48091:22;:12;40525:14;;40433:114;48091:22;48084:29;;48018:103;:::o;44713:1064::-;44868:13;;19304:10;;44868:29;;44884:13;;44868:29;:::i;:::-;44847:17;;:50;;44839:81;;;;-1:-1:-1;;;44839:81:0;;16106:2:1;44839:81:0;;;16088:21:1;16145:2;16125:18;;;16118:30;-1:-1:-1;;;16164:18:1;;;16157:48;16222:18;;44839:81:0;15904:342:1;44839:81:0;44939:10;;;;;;;44931:45;;;;-1:-1:-1;;;44931:45:0;;17982:2:1;44931:45:0;;;17964:21:1;18021:2;18001:18;;;17994:30;-1:-1:-1;;;18040:18:1;;;18033:52;18102:18;;44931:45:0;17780:346:1;44931:45:0;44995:34;;;;:22;:34;;;;;;;;44987:83;;;;-1:-1:-1;;;44987:83:0;;;;;;;:::i;:::-;45103:6;;45089:21;;;;:13;:21;;;;;;;;-1:-1:-1;;;;;45089:30:0;;;;;;;;;;41756:1;;45089:46;;45122:13;;45089:46;:::i;:::-;:71;;45081:106;;;;-1:-1:-1;;;45081:106:0;;;;;;;:::i;:::-;45222:1;45206:13;:17;45198:41;;;;-1:-1:-1;;;45198:41:0;;;;;;;:::i;:::-;45258:9;-1:-1:-1;;;;;45258:20:0;;;45250:45;;;;-1:-1:-1;;;45250:45:0;;;;;;;:::i;:::-;45339:9;45330:5;;45314:13;:21;;;;:::i;:::-;:34;45306:69;;;;-1:-1:-1;;;45306:69:0;;18694:2:1;45306:69:0;;;18676:21:1;18733:2;18713:18;;;18706:30;-1:-1:-1;;;18752:18:1;;;18745:52;18814:18;;45306:69:0;18492:346:1;45306:69:0;45402:6;;45388:21;;;;:13;:21;;;;;;;;-1:-1:-1;;;;;45388:30:0;;;;;;;;;:47;;45422:13;;45388:21;:47;;45422:13;;45388:47;:::i;:::-;;;;-1:-1:-1;;45458:13:0;:30;;;;;;:13;45501:269;45521:13;45517:1;:17;45501:269;;;45559:14;;45556:107;;45637:10;45593:17;:41;45611:22;:12;40525:14;;40433:114;45611:22;45593:41;;;;;;;;;;;-1:-1:-1;45593:41:0;:54;45556:107;45677:42;45687:7;45696:22;:12;40525:14;;40433:114;45696:22;45677:9;:42::i;:::-;45734:24;:12;40644:19;;40662:1;40644:19;;;40555:127;45734:24;45536:3;;;;:::i;:::-;;;;45501:269;;;;44787:990;44713:1064;;:::o;27203:339::-;27398:41;19304:10;27431:7;27398:18;:41::i;:::-;27390:103;;;;-1:-1:-1;;;27390:103:0;;;;;;;:::i;:::-;27506:28;27516:4;27522:2;27526:7;27506:9;:28::i;47595:152::-;38181:6;;-1:-1:-1;;;;;38181:6:0;19304:10;38328:23;38320:68;;;;-1:-1:-1;;;38320:68:0;;;;;;;:::i;:::-;47682:9:::1;:22:::0;;-1:-1:-1;;47715:24:0;47682:22;::::1;;-1:-1:-1::0;;47715:24:0;;;;;47682:22:::1;47715:24:::0;::::1;;::::0;;;::::1;;::::0;;47595:152::o;46455:193::-;38181:6;;-1:-1:-1;;;;;38181:6:0;19304:10;38328:23;38320:68;;;;-1:-1:-1;;;38320:68:0;;;;;;;:::i;:::-;46551:12:::1;40525:14:::0;46536:11:::1;:37;;46528:70;;;::::0;-1:-1:-1;;;46528:70:0;;19396:2:1;46528:70:0::1;::::0;::::1;19378:21:1::0;19435:2;19415:18;;;19408:30;-1:-1:-1;;;19454:18:1;;;19447:50;19514:18;;46528:70:0::1;19194:344:1::0;46528:70:0::1;46609:17;:31:::0;46455:193::o;46238:209::-;38181:6;;-1:-1:-1;;;;;38181:6:0;19304:10;38328:23;38320:68;;;;-1:-1:-1;;;38320:68:0;;;;;;;:::i;:::-;46357:37:::1;::::0;46306:21:::1;::::0;46288:15:::1;::::0;19304:10;;46306:21;;46288:15;46357:37;46288:15;46357:37;46306:21;19304:10;46357:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46338:56;;;46413:7;46405:34;;;::::0;-1:-1:-1;;;46405:34:0;;21252:2:1;46405:34:0::1;::::0;::::1;21234:21:1::0;21291:2;21271:18;;;21264:30;-1:-1:-1;;;21310:18:1;;;21303:44;21364:18;;46405:34:0::1;21050:338:1::0;46405:34:0::1;46277:170;;46238:209::o:0;27613:185::-;27751:39;27768:4;27774:2;27778:7;27751:39;;;;;;;;;;;;:16;:39::i;46898:91::-;38181:6;;-1:-1:-1;;;;;38181:6:0;19304:10;38328:23;38320:68;;;;-1:-1:-1;;;38320:68:0;;;;;;;:::i;:::-;46980:1:::1;46964:13;:17:::0;46898:91::o;46997:100::-;38181:6;;-1:-1:-1;;;;;38181:6:0;19304:10;38328:23;38320:68;;;;-1:-1:-1;;;38320:68:0;;;;;;;:::i;:::-;47071:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;47337:90::-:0;38181:6;;-1:-1:-1;;;;;38181:6:0;19304:10;38328:23;38320:68;;;;-1:-1:-1;;;38320:68:0;;;;;;;:::i;:::-;47403:6:::1;:16:::0;47337:90::o;24588:239::-;24660:7;24696:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24696:16:0;24731:19;24723:73;;;;-1:-1:-1;;;24723:73:0;;15696:2:1;24723:73:0;;;15678:21:1;15735:2;15715:18;;;15708:30;15774:34;15754:18;;;15747:62;-1:-1:-1;;;15825:18:1;;;15818:39;15874:19;;24723:73:0;15494:405:1;41151:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24318:208::-;24390:7;-1:-1:-1;;;;;24418:19:0;;24410:74;;;;-1:-1:-1;;;24410:74:0;;15285:2:1;24410:74:0;;;15267:21:1;15324:2;15304:18;;;15297:30;15363:34;15343:18;;;15336:62;-1:-1:-1;;;15414:18:1;;;15407:40;15464:19;;24410:74:0;15083:406:1;24410:74:0;-1:-1:-1;;;;;;24502:16:0;;;;;:9;:16;;;;;;;24318:208::o;38759:103::-;38181:6;;-1:-1:-1;;;;;38181:6:0;19304:10;38328:23;38320:68;;;;-1:-1:-1;;;38320:68:0;;;;;;;:::i;:::-;38824:30:::1;38851:1;38824:18;:30::i;:::-;38759:103::o:0;47755:92::-;38181:6;;-1:-1:-1;;;;;38181:6:0;19304:10;38328:23;38320:68;;;;-1:-1:-1;;;38320:68:0;;;;;;;:::i;:::-;47823:6:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;47823:16:0;;::::1;::::0;;;::::1;::::0;;47755:92::o;47105:116::-;38181:6;;-1:-1:-1;;;;;38181:6:0;19304:10;38328:23;38320:68;;;;-1:-1:-1;;;38320:68:0;;;;;;;:::i;:::-;47187:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;25063:104::-:0;25119:13;25152:7;25145:14;;;;;:::i;26746:155::-;26841:52;19304:10;26874:8;26884;26841:18;:52::i;43565:1140::-;43723:13;;19304:10;;43723:29;;43739:13;;43723:29;:::i;:::-;43702:17;;:50;;43694:81;;;;-1:-1:-1;;;43694:81:0;;16106:2:1;43694:81:0;;;16088:21:1;16145:2;16125:18;;;16118:30;-1:-1:-1;;;16164:18:1;;;16157:48;16222:18;;43694:81:0;15904:342:1;43694:81:0;43794:10;;;;;;;43786:45;;;;-1:-1:-1;;;43786:45:0;;17982:2:1;43786:45:0;;;17964:21:1;18021:2;18001:18;;;17994:30;-1:-1:-1;;;18040:18:1;;;18033:52;18102:18;;43786:45:0;17780:346:1;43786:45:0;43850:6;;:25;;-1:-1:-1;;;43850:25:0;;-1:-1:-1;;;;;10081:32:1;;;43850:25:0;;;10063:51:1;43878:1:0;;43850:6;;:16;;10036:18:1;;43850:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:29;43842:54;;;;-1:-1:-1;;;43842:54:0;;11837:2:1;43842:54:0;;;11819:21:1;11876:2;11856:18;;;11849:30;-1:-1:-1;;;11895:18:1;;;11888:42;11947:18;;43842:54:0;11635:336:1;43842:54:0;43915:34;;;;:22;:34;;;;;;;;43907:83;;;;-1:-1:-1;;;43907:83:0;;;;;;;:::i;:::-;44023:6;;44009:21;;;;:13;:21;;;;;;;;-1:-1:-1;;;;;44009:30:0;;;;;;;;;;41756:1;;44009:46;;44042:13;;44009:46;:::i;:::-;:71;;44001:106;;;;-1:-1:-1;;;44001:106:0;;;;;;;:::i;:::-;44142:1;44126:13;:17;44118:41;;;;-1:-1:-1;;;44118:41:0;;;;;;;:::i;:::-;44178:9;-1:-1:-1;;;;;44178:20:0;;;44170:45;;;;-1:-1:-1;;;44170:45:0;;;;;;;:::i;:::-;44267:9;44250:13;;44234;:29;;;;:::i;:::-;:42;44226:77;;;;-1:-1:-1;;;44226:77:0;;18694:2:1;44226:77:0;;;18676:21:1;18733:2;18713:18;;;18706:30;-1:-1:-1;;;18752:18:1;;;18745:52;18814:18;;44226:77:0;18492:346:1;44226:77:0;44330:6;;44316:21;;;;:13;:21;;;;;;;;-1:-1:-1;;;;;44316:30:0;;;;;;;;;:47;;44350:13;;44316:21;:47;;44350:13;;44316:47;:::i;:::-;;;;-1:-1:-1;;44386:13:0;:30;;;;;;:13;44429:269;44449:13;44445:1;:17;44429:269;;;44487:14;;44484:107;;44565:10;44521:17;:41;44539:22;:12;40525:14;;40433:114;44539:22;44521:41;;;;;;;;;;;-1:-1:-1;44521:41:0;:54;44484:107;44605:42;44615:7;44624:22;:12;40525:14;;40433:114;44605:42;44662:24;:12;40644:19;;40662:1;40644:19;;;40555:127;44662:24;44464:3;;;;:::i;:::-;;;;44429:269;;46656:234;38181:6;;-1:-1:-1;;;;;38181:6:0;19304:10;38328:23;38320:68;;;;-1:-1:-1;;;38320:68:0;;;;;;;:::i;:::-;46735:9:::1;46730:153;46750:13;46746:1;:17;46730:153;;;46785:47;19304:10:::0;46809:12:::1;40525:14:::0;45677:9;:42::i;46785:47::-:1;46847:24;:12;40644:19:::0;;40662:1;40644:19;;;40555:127;46847:24:::1;46765:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46730:153;;47855:155:::0;38181:6;;-1:-1:-1;;;;;38181:6:0;19304:10;38328:23;38320:68;;;;-1:-1:-1;;;38320:68:0;;;;;;;:::i;:::-;47955:34:::1;::::0;;;:22:::1;:34;::::0;;;;;:47;;-1:-1:-1;;47955:47:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47855:155::o;27869:328::-;28044:41;19304:10;28077:7;28044:18;:41::i;:::-;28036:103;;;;-1:-1:-1;;;28036:103:0;;;;;;;:::i;:::-;28150:39;28164:4;28170:2;28174:7;28183:5;28150:13;:39::i;48232:456::-;29772:4;29796:16;;;:7;:16;;;;;;48298:13;;-1:-1:-1;;;;;29796:16:0;48324:51;;;;-1:-1:-1;;;48324:51:0;;16814:2:1;48324:51:0;;;16796:21:1;16853:2;16833:18;;;16826:30;-1:-1:-1;;;16872:18:1;;;16865:51;16933:18;;48324:51:0;16612:345:1;48324:51:0;48417:1;48399:7;48393:21;;;;;:::i;:::-;;;:25;:287;;;;;;;;;;;;;;;;;48499:6;;48475:7;;48499:6;;;;;:120;;48578:27;;;;:17;:27;;;;;;48561:45;;:16;:45::i;:::-;48544:74;;;;;;;;:::i;:::-;;;;;;;;;;;;;48499:120;;;48508:26;48525:8;48508:16;:26::i;:::-;48636:13;;;;;;;;;;;;;-1:-1:-1;;;48636:13:0;;;48442:222;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48386:294;48232:456;-1:-1:-1;;48232:456:0:o;47229:100::-;38181:6;;-1:-1:-1;;;;;38181:6:0;19304:10;38328:23;38320:68;;;;-1:-1:-1;;;38320:68:0;;;;;;;:::i;:::-;47297:10:::1;:24:::0;47229:100::o;41179:25::-;;;;;;;:::i;45785:445::-;46083:28;;-1:-1:-1;;;46083:28:0;;-1:-1:-1;;;;;10081:32:1;;;46083:28:0;;;10063:51:1;45910:4:0;;41311:42;;46075:49;;;41311:42;;46083:21;;10036:18:1;;46083:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46075:49:0;;46071:93;;;46148:4;46141:11;;;;;46071:93;-1:-1:-1;;;;;27093:25:0;;;27069:4;27093:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;46183:39;46176:46;45785:445;-1:-1:-1;;;;45785:445:0:o;42446:1111::-;42634:9;;19304:10;;42634:9;;42626:38;;;;-1:-1:-1;;;42626:38:0;;20565:2:1;42626:38:0;;;20547:21:1;20604:2;20584:18;;;20577:30;-1:-1:-1;;;20623:18:1;;;20616:46;20679:18;;42626:38:0;20363:340:1;42626:38:0;42683:6;;:25;;-1:-1:-1;;;42683:25:0;;-1:-1:-1;;;;;10081:32:1;;;42683:25:0;;;10063:51:1;42711:1:0;;42683:6;;:16;;10036:18:1;;42683:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:29;42675:54;;;;-1:-1:-1;;;42675:54:0;;11837:2:1;42675:54:0;;;11819:21:1;11876:2;11856:18;;;11849:30;-1:-1:-1;;;11895:18:1;;;11888:42;11947:18;;42675:54:0;11635:336:1;42675:54:0;42748:34;;;;:22;:34;;;;;;;;42740:83;;;;-1:-1:-1;;;42740:83:0;;;;;;;:::i;:::-;42861:6;;42842:26;;;;:18;:26;;;;;;;;-1:-1:-1;;;;;42842:35:0;;;;;;;;;;42897:10;;42842:51;;42880:13;;42842:51;:::i;:::-;:65;;42834:100;;;;-1:-1:-1;;;42834:100:0;;;;;;;:::i;:::-;42969:1;42953:13;:17;42945:41;;;;-1:-1:-1;;;42945:41:0;;;;;;;:::i;:::-;43005:9;-1:-1:-1;;;;;43005:20:0;;;42997:45;;;;-1:-1:-1;;;42997:45:0;;;;;;;:::i;:::-;43080:37;;-1:-1:-1;;7881:2:1;7877:15;;;7873:53;43080:37:0;;;7861:66:1;7943:12;;;7936:28;;;43055:12:0;;7980::1;;43080:37:0;;;;;;;;;;;;43070:48;;;;;;43055:63;;43137:50;43156:12;;43137:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;43170:10:0;;;-1:-1:-1;43182:4:0;;-1:-1:-1;43137:18:0;:50::i;:::-;43129:76;;;;-1:-1:-1;;;43129:76:0;;20910:2:1;43129:76:0;;;20892:21:1;20949:2;20929:18;;;20922:30;-1:-1:-1;;;20968:18:1;;;20961:43;21021:18;;43129:76:0;20708:337:1;43129:76:0;43237:6;;43218:26;;;;:18;:26;;;;;;;;-1:-1:-1;;;;;43218:35:0;;;;;;;;;:52;;43257:13;;43218:26;:52;;43257:13;;43218:52;:::i;:::-;;;;-1:-1:-1;43286:9:0;;-1:-1:-1;43281:269:0;43301:13;43297:1;:17;43281:269;;;43339:14;;43336:107;;43417:10;43373:17;:41;43391:22;:12;40525:14;;40433:114;43391:22;43373:41;;;;;;;;;;;-1:-1:-1;43373:41:0;:54;43336:107;43457:42;43467:7;43476:22;:12;40525:14;;40433:114;43457:42;43514:24;:12;40644:19;;40662:1;40644:19;;;40555:127;43514:24;43316:3;;;;:::i;:::-;;;;43281:269;;;;42574:983;;42446:1111;;;;;:::o;39017:201::-;38181:6;;-1:-1:-1;;;;;38181:6:0;19304:10;38328:23;38320:68;;;;-1:-1:-1;;;38320:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39106:22:0;::::1;39098:73;;;::::0;-1:-1:-1;;;39098:73:0;;12178:2:1;39098:73:0::1;::::0;::::1;12160:21:1::0;12217:2;12197:18;;;12190:30;12256:34;12236:18;;;12229:62;-1:-1:-1;;;12307:18:1;;;12300:36;12353:19;;39098:73:0::1;11976:402:1::0;39098:73:0::1;39182:28;39201:8;39182:18;:28::i;:::-;39017:201:::0;:::o;33853:174::-;33928:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33928:29:0;-1:-1:-1;;;;;33928:29:0;;;;;;;;:24;;33982:23;33928:24;33982:14;:23::i;:::-;-1:-1:-1;;;;;33973:46:0;;;;;;;;;;;33853:174;;:::o;30691:110::-;30767:26;30777:2;30781:7;30767:26;;;;;;;;;;;;:9;:26::i;30001:348::-;30094:4;29796:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29796:16:0;30111:73;;;;-1:-1:-1;;;30111:73:0;;14447:2:1;30111:73:0;;;14429:21:1;14486:2;14466:18;;;14459:30;14525:34;14505:18;;;14498:62;-1:-1:-1;;;14576:18:1;;;14569:42;14628:19;;30111:73:0;14245:408:1;30111:73:0;30195:13;30211:23;30226:7;30211:14;:23::i;:::-;30195:39;;30264:5;-1:-1:-1;;;;;30253:16:0;:7;-1:-1:-1;;;;;30253:16:0;;:51;;;;30297:7;-1:-1:-1;;;;;30273:31:0;:20;30285:7;30273:11;:20::i;:::-;-1:-1:-1;;;;;30273:31:0;;30253:51;:87;;;;30308:32;30325:5;30332:7;30308:16;:32::i;33110:625::-;33269:4;-1:-1:-1;;;;;33242:31:0;:23;33257:7;33242:14;:23::i;:::-;-1:-1:-1;;;;;33242:31:0;;33234:81;;;;-1:-1:-1;;;33234:81:0;;12925:2:1;33234:81:0;;;12907:21:1;12964:2;12944:18;;;12937:30;13003:34;12983:18;;;12976:62;-1:-1:-1;;;13054:18:1;;;13047:35;13099:19;;33234:81:0;12723:401:1;33234:81:0;-1:-1:-1;;;;;33334:16:0;;33326:65;;;;-1:-1:-1;;;33326:65:0;;13688:2:1;33326:65:0;;;13670:21:1;13727:2;13707:18;;;13700:30;13766:34;13746:18;;;13739:62;-1:-1:-1;;;13817:18:1;;;13810:34;13861:19;;33326:65:0;13486:400:1;33326:65:0;33508:29;33525:1;33529:7;33508:8;:29::i;:::-;-1:-1:-1;;;;;33550:15:0;;;;;;:9;:15;;;;;:20;;33569:1;;33550:15;:20;;33569:1;;33550:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33581:13:0;;;;;;:9;:13;;;;;:18;;33598:1;;33581:13;:18;;33598:1;;33581:18;:::i;:::-;;;;-1:-1:-1;;33610:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33610:21:0;-1:-1:-1;;;;;33610:21:0;;;;;;;;;33649:27;;33610:16;;33649:27;;;;;;;26046:341;25976:411;;:::o;39378:191::-;39471:6;;;-1:-1:-1;;;;;39488:17:0;;;-1:-1:-1;;;;;;39488:17:0;;;;;;;39521:40;;39471:6;;;39488:17;39471:6;;39521:40;;39452:16;;39521:40;39441:128;39378:191;:::o;34169:315::-;34324:8;-1:-1:-1;;;;;34315:17:0;:5;-1:-1:-1;;;;;34315:17:0;;;34307:55;;;;-1:-1:-1;;;34307:55:0;;14093:2:1;34307:55:0;;;14075:21:1;14132:2;14112:18;;;14105:30;14171:27;14151:18;;;14144:55;14216:18;;34307:55:0;13891:349:1;34307:55:0;-1:-1:-1;;;;;34373:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34373:46:0;;;;;;;;;;34435:41;;10758::1;;;34435::0;;10731:18:1;34435:41:0;;;;;;;34169:315;;;:::o;29079:::-;29236:28;29246:4;29252:2;29256:7;29236:9;:28::i;:::-;29283:48;29306:4;29312:2;29316:7;29325:5;29283:22;:48::i;:::-;29275:111;;;;-1:-1:-1;;;29275:111:0;;;;;;;:::i;19788:723::-;19844:13;20065:10;20061:53;;-1:-1:-1;;20092:10:0;;;;;;;;;;;;-1:-1:-1;;;20092:10:0;;;;;19788:723::o;20061:53::-;20139:5;20124:12;20180:78;20187:9;;20180:78;;20213:8;;;;:::i;:::-;;-1:-1:-1;20236:10:0;;-1:-1:-1;20244:2:0;20236:10;;:::i;:::-;;;20180:78;;;20268:19;20300:6;20290:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20290:17:0;;20268:39;;20318:154;20325:10;;20318:154;;20352:11;20362:1;20352:11;;:::i;:::-;;-1:-1:-1;20421:10:0;20429:2;20421:5;:10;:::i;:::-;20408:24;;:2;:24;:::i;:::-;20395:39;;20378:6;20385;20378:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20378:56:0;;;;;;;;-1:-1:-1;20449:11:0;20458:2;20449:11;;:::i;:::-;;;20318:154;;1024:190;1149:4;1202;1173:25;1186:5;1193:4;1173:12;:25::i;:::-;:33;;1024:190;-1:-1:-1;;;;1024:190:0:o;31028:321::-;31158:18;31164:2;31168:7;31158:5;:18::i;:::-;31209:54;31240:1;31244:2;31248:7;31257:5;31209:22;:54::i;:::-;31187:154;;;;-1:-1:-1;;;31187:154:0;;;;;;;:::i;35049:799::-;35204:4;-1:-1:-1;;;;;35225:13:0;;11585:19;:23;35221:620;;35261:72;;-1:-1:-1;;;35261:72:0;;-1:-1:-1;;;;;35261:36:0;;;;;:72;;19304:10;;35312:4;;35318:7;;35327:5;;35261:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35261:72:0;;;;;;;;-1:-1:-1;;35261:72:0;;;;;;;;;;;;:::i;:::-;;;35257:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35503:13:0;;35499:272;;35546:60;;-1:-1:-1;;;35546:60:0;;;;;;;:::i;35499:272::-;35721:6;35715:13;35706:6;35702:2;35698:15;35691:38;35257:529;-1:-1:-1;;;;;;35384:51:0;-1:-1:-1;;;35384:51:0;;-1:-1:-1;35377:58:0;;35221:620;-1:-1:-1;35825:4:0;35049:799;;;;;;:::o;1576:675::-;1659:7;1702:4;1659:7;1717:497;1741:5;:12;1737:1;:16;1717:497;;;1775:20;1798:5;1804:1;1798:8;;;;;;;;:::i;:::-;;;;;;;1775:31;;1841:12;1825;:28;1821:382;;2327:13;2377:15;;;2413:4;2406:15;;;2460:4;2444:21;;1953:57;;1821:382;;;2327:13;2377:15;;;2413:4;2406:15;;;2460:4;2444:21;;2130:57;;1821:382;-1:-1:-1;1755:3:0;;;;:::i;:::-;;;;1717:497;;;-1:-1:-1;2231:12:0;1576:675;-1:-1:-1;;;1576:675:0:o;31685:439::-;-1:-1:-1;;;;;31765:16:0;;31757:61;;;;-1:-1:-1;;;31757:61:0;;16453:2:1;31757:61:0;;;16435:21:1;;;16472:18;;;16465:30;16531:34;16511:18;;;16504:62;16583:18;;31757:61:0;16251:356:1;31757:61:0;29772:4;29796:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29796:16:0;:30;31829:58;;;;-1:-1:-1;;;31829:58:0;;13331:2:1;31829:58:0;;;13313:21:1;13370:2;13350:18;;;13343:30;13409;13389:18;;;13382:58;13457:18;;31829:58:0;13129:352:1;31829:58:0;-1:-1:-1;;;;;31958:13:0;;;;;;:9;:13;;;;;:18;;31975:1;;31958:13;:18;;31975:1;;31958:18;:::i;:::-;;;;-1:-1:-1;;31987:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31987:21:0;-1:-1:-1;;;;;31987:21:0;;;;;;;;32026:33;;31987:16;;;32026:33;;31987:16;;32026:33;46277:170:::1;;46238:209::o:0;-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:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;:::-;1051:5;815:247;-1:-1:-1;;;815:247:1:o;1067:388::-;1135:6;1143;1196:2;1184:9;1175:7;1171:23;1167:32;1164:52;;;1212:1;1209;1202:12;1164:52;1251:9;1238:23;1270:31;1295:5;1270:31;:::i;:::-;1320:5;-1:-1:-1;1377:2:1;1362:18;;1349:32;1390:33;1349:32;1390:33;:::i;:::-;1442:7;1432:17;;;1067:388;;;;;:::o;1460:456::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1661:9;1648:23;1680:31;1705:5;1680:31;:::i;:::-;1730:5;-1:-1:-1;1787:2:1;1772:18;;1759:32;1800:33;1759:32;1800:33;:::i;:::-;1460:456;;1852:7;;-1:-1:-1;;;1906:2:1;1891:18;;;;1878:32;;1460:456::o;1921:794::-;2016:6;2024;2032;2040;2093:3;2081:9;2072:7;2068:23;2064:33;2061:53;;;2110:1;2107;2100:12;2061:53;2149:9;2136:23;2168:31;2193:5;2168:31;:::i;:::-;2218:5;-1:-1:-1;2275:2:1;2260:18;;2247:32;2288:33;2247:32;2288:33;:::i;:::-;2340:7;-1:-1:-1;2394:2:1;2379:18;;2366:32;;-1:-1:-1;2449:2:1;2434:18;;2421:32;2476:18;2465:30;;2462:50;;;2508:1;2505;2498:12;2462:50;2531:22;;2584:4;2576:13;;2572:27;-1:-1:-1;2562:55:1;;2613:1;2610;2603:12;2562:55;2636:73;2701:7;2696:2;2683:16;2678:2;2674;2670:11;2636:73;:::i;:::-;2626:83;;;1921:794;;;;;;;:::o;2720:315::-;2785:6;2793;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:31;2945:5;2920:31;:::i;:::-;2970:5;-1:-1:-1;2994:35:1;3025:2;3010:18;;2994:35;:::i;:::-;2984:45;;2720:315;;;;;:::o;3040:::-;3108:6;3116;3169:2;3157:9;3148:7;3144:23;3140:32;3137:52;;;3185:1;3182;3175:12;3137:52;3224:9;3211:23;3243:31;3268:5;3243:31;:::i;:::-;3293:5;3345:2;3330:18;;;;3317:32;;-1:-1:-1;;;3040:315:1:o;3360:180::-;3416:6;3469:2;3457:9;3448:7;3444:23;3440:32;3437:52;;;3485:1;3482;3475:12;3437:52;3508:26;3524:9;3508:26;:::i;3545:248::-;3607:6;3615;3668:2;3656:9;3647:7;3643:23;3639:32;3636:52;;;3684:1;3681;3674:12;3636:52;3707:26;3723:9;3707:26;:::i;3798:180::-;3857:6;3910:2;3898:9;3889:7;3885:23;3881:32;3878:52;;;3926:1;3923;3916:12;3878:52;-1:-1:-1;3949:23:1;;3798:180;-1:-1:-1;3798:180:1:o;3983:245::-;4041:6;4094:2;4082:9;4073:7;4069:23;4065:32;4062:52;;;4110:1;4107;4100:12;4062:52;4149:9;4136:23;4168:30;4192:5;4168:30;:::i;4233:249::-;4302:6;4355:2;4343:9;4334:7;4330:23;4326:32;4323:52;;;4371:1;4368;4361:12;4323:52;4403:9;4397:16;4422:30;4446:5;4422:30;:::i;4487:280::-;4586:6;4639:2;4627:9;4618:7;4614:23;4610:32;4607:52;;;4655:1;4652;4645:12;4607:52;4687:9;4681:16;4706:31;4731:5;4706:31;:::i;4772:450::-;4841:6;4894:2;4882:9;4873:7;4869:23;4865:32;4862:52;;;4910:1;4907;4900:12;4862:52;4950:9;4937:23;4983:18;4975:6;4972:30;4969:50;;;5015:1;5012;5005:12;4969:50;5038:22;;5091:4;5083:13;;5079:27;-1:-1:-1;5069:55:1;;5120:1;5117;5110:12;5069:55;5143:73;5208:7;5203:2;5190:16;5185:2;5181;5177:11;5143:73;:::i;5412:184::-;5482:6;5535:2;5523:9;5514:7;5510:23;5506:32;5503:52;;;5551:1;5548;5541:12;5503:52;-1:-1:-1;5574:16:1;;5412:184;-1:-1:-1;5412:184:1:o;5601:315::-;5669:6;5677;5730:2;5718:9;5709:7;5705:23;5701:32;5698:52;;;5746:1;5743;5736:12;5698:52;5782:9;5769:23;5759:33;;5842:2;5831:9;5827:18;5814:32;5855:31;5880:5;5855:31;:::i;5921:248::-;5986:6;5994;6047:2;6035:9;6026:7;6022:23;6018:32;6015:52;;;6063:1;6060;6053:12;6015:52;6099:9;6086:23;6076:33;;6128:35;6159:2;6148:9;6144:18;6128:35;:::i;6174:248::-;6242:6;6250;6303:2;6291:9;6282:7;6278:23;6274:32;6271:52;;;6319:1;6316;6309:12;6271:52;-1:-1:-1;;6342:23:1;;;6412:2;6397:18;;;6384:32;;-1:-1:-1;6174:248:1:o;6427:820::-;6540:6;6548;6556;6564;6572;6625:3;6613:9;6604:7;6600:23;6596:33;6593:53;;;6642:1;6639;6632:12;6593:53;6678:9;6665:23;6655:33;;6735:2;6724:9;6720:18;6707:32;6697:42;;6786:2;6775:9;6771:18;6758:32;6748:42;;6841:2;6830:9;6826:18;6813:32;6864:18;6905:2;6897:6;6894:14;6891:34;;;6921:1;6918;6911:12;6891:34;6959:6;6948:9;6944:22;6934:32;;7004:7;6997:4;6993:2;6989:13;6985:27;6975:55;;7026:1;7023;7016:12;6975:55;7066:2;7053:16;7092:2;7084:6;7081:14;7078:34;;;7108:1;7105;7098:12;7078:34;7161:7;7156:2;7146:6;7143:1;7139:14;7135:2;7131:23;7127:32;7124:45;7121:65;;;7182:1;7179;7172:12;7121:65;6427:820;;;;-1:-1:-1;6427:820:1;;-1:-1:-1;7213:2:1;7205:11;;7235:6;6427:820;-1:-1:-1;;;6427:820:1:o;7252:257::-;7293:3;7331:5;7325:12;7358:6;7353:3;7346:19;7374:63;7430:6;7423:4;7418:3;7414:14;7407:4;7400:5;7396:16;7374:63;:::i;:::-;7491:2;7470:15;-1:-1:-1;;7466:29:1;7457:39;;;;7498:4;7453:50;;7252:257;-1:-1:-1;;7252:257:1:o;7514:185::-;7556:3;7594:5;7588:12;7609:52;7654:6;7649:3;7642:4;7635:5;7631:16;7609:52;:::i;:::-;7677:16;;;;;7514:185;-1:-1:-1;;7514:185:1:o;8003:445::-;8235:3;8273:6;8267:13;8289:53;8335:6;8330:3;8323:4;8315:6;8311:17;8289:53;:::i;:::-;-1:-1:-1;;;8364:16:1;;8389:24;;;-1:-1:-1;8440:1:1;8429:13;;8003:445;-1:-1:-1;8003:445:1:o;8453:1249::-;8677:3;8706:1;8739:6;8733:13;8769:3;8791:1;8819:9;8815:2;8811:18;8801:28;;8879:2;8868:9;8864:18;8901;8891:61;;8945:4;8937:6;8933:17;8923:27;;8891:61;8971:2;9019;9011:6;9008:14;8988:18;8985:38;8982:165;;;-1:-1:-1;;;9046:33:1;;9102:4;9099:1;9092:15;9132:4;9053:3;9120:17;8982:165;9163:18;9190:104;;;;9308:1;9303:320;;;;9156:467;;9190:104;-1:-1:-1;;9223:24:1;;9211:37;;9268:16;;;;-1:-1:-1;9190:104:1;;9303:320;21989:1;21982:14;;;22026:4;22013:18;;9398:1;9412:165;9426:6;9423:1;9420:13;9412:165;;;9504:14;;9491:11;;;9484:35;9547:16;;;;9441:10;;9412:165;;;9416:3;;9606:6;9601:3;9597:16;9590:23;;9156:467;;;;;;;9639:57;9665:30;9691:3;9683:6;9665:30;:::i;:::-;9657:6;9639:57;:::i;:::-;9632:64;8453:1249;-1:-1:-1;;;;;;8453:1249:1:o;10125:488::-;-1:-1:-1;;;;;10394:15:1;;;10376:34;;10446:15;;10441:2;10426:18;;10419:43;10493:2;10478:18;;10471:34;;;10541:3;10536:2;10521:18;;10514:31;;;10319:4;;10562:45;;10587:19;;10579:6;10562:45;:::i;10992:219::-;11141:2;11130:9;11123:21;11104:4;11161:44;11201:2;11190:9;11186:18;11178:6;11161:44;:::i;11216:414::-;11418:2;11400:21;;;11457:2;11437:18;;;11430:30;11496:34;11491:2;11476:18;;11469:62;-1:-1:-1;;;11562:2:1;11547:18;;11540:48;11620:3;11605:19;;11216:414::o;12383:335::-;12585:2;12567:21;;;12624:2;12604:18;;;12597:30;-1:-1:-1;;;12658:2:1;12643:18;;12636:41;12709:2;12694:18;;12383:335::o;16962:400::-;17164:2;17146:21;;;17203:2;17183:18;;;17176:30;17242:34;17237:2;17222:18;;17215:62;-1:-1:-1;;;17308:2:1;17293:18;;17286:34;17352:3;17337:19;;16962:400::o;18131:356::-;18333:2;18315:21;;;18352:18;;;18345:30;18411:34;18406:2;18391:18;;18384:62;18478:2;18463:18;;18131:356::o;18843:346::-;19045:2;19027:21;;;19084:2;19064:18;;;19057:30;-1:-1:-1;;;19118:2:1;19103:18;;19096:52;19180:2;19165:18;;18843:346::o;19945:413::-;20147:2;20129:21;;;20186:2;20166:18;;;20159:30;20225:34;20220:2;20205:18;;20198:62;-1:-1:-1;;;20291:2:1;20276:18;;20269:47;20348:3;20333:19;;19945:413::o;21393:336::-;21595:2;21577:21;;;21634:2;21614:18;;;21607:30;-1:-1:-1;;;21668:2:1;21653:18;;21646:42;21720:2;21705:18;;21393:336::o;22042:128::-;22082:3;22113:1;22109:6;22106:1;22103:13;22100:39;;;22119:18;;:::i;:::-;-1:-1:-1;22155:9:1;;22042:128::o;22175:120::-;22215:1;22241;22231:35;;22246:18;;:::i;:::-;-1:-1:-1;22280:9:1;;22175:120::o;22300:168::-;22340:7;22406:1;22402;22398:6;22394:14;22391:1;22388:21;22383:1;22376:9;22369:17;22365:45;22362:71;;;22413:18;;:::i;:::-;-1:-1:-1;22453:9:1;;22300:168::o;22473:125::-;22513:4;22541:1;22538;22535:8;22532:34;;;22546:18;;:::i;:::-;-1:-1:-1;22583:9:1;;22473:125::o;22603:258::-;22675:1;22685:113;22699:6;22696:1;22693:13;22685:113;;;22775:11;;;22769:18;22756:11;;;22749:39;22721:2;22714:10;22685:113;;;22816:6;22813:1;22810:13;22807:48;;;-1:-1:-1;;22851:1:1;22833:16;;22826:27;22603:258::o;22866:380::-;22945:1;22941:12;;;;22988;;;23009:61;;23063:4;23055:6;23051:17;23041:27;;23009:61;23116:2;23108:6;23105:14;23085:18;23082:38;23079:161;;;23162:10;23157:3;23153:20;23150:1;23143:31;23197:4;23194:1;23187:15;23225:4;23222:1;23215:15;23079:161;;22866:380;;;:::o;23251:135::-;23290:3;-1:-1:-1;;23311:17:1;;23308:43;;;23331:18;;:::i;:::-;-1:-1:-1;23378:1:1;23367:13;;23251:135::o;23391:112::-;23423:1;23449;23439:35;;23454:18;;:::i;:::-;-1:-1:-1;23488:9:1;;23391:112::o;23508:127::-;23569:10;23564:3;23560:20;23557:1;23550:31;23600:4;23597:1;23590:15;23624:4;23621:1;23614:15;23640:127;23701:10;23696:3;23692:20;23689:1;23682:31;23732:4;23729:1;23722:15;23756:4;23753:1;23746:15;23772:127;23833:10;23828:3;23824:20;23821:1;23814:31;23864:4;23861:1;23854:15;23888:4;23885:1;23878:15;23904:127;23965:10;23960:3;23956:20;23953:1;23946:31;23996:4;23993:1;23986:15;24020:4;24017:1;24010:15;24036:131;-1:-1:-1;;;;;24111:31:1;;24101:42;;24091:70;;24157:1;24154;24147:12;24172:131;-1:-1:-1;;;;;;24246:32:1;;24236:43;;24226:71;;24293:1;24290;24283:12

Swarm Source

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