ETH Price: $3,286.12 (-0.81%)
Gas: 6 Gwei

Token

PepePals (PepePals)
 

Overview

Max Total Supply

101 PepePals

Holders

49

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 PepePals
0xa882cf637523bd6d23e44ec32a553bf6bbe04b7d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PepePals

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-05
*/

// SPDX-License-Identifier: MIT

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/token.sol

interface BaseMetadata {

    function getMetadata(uint256 _tokenId) external view returns (string memory);
    function getData() external view returns (address[] memory, uint256[] memory);
    function getPrice(uint256 _a, uint256 _b) external view returns (uint256);

}


pragma solidity ^0.8.0;

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

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.03 ether;
    uint256 public maxSupply = 3333;
    uint256 public maxMintAmount = 10;
    bool public paused = true;
    uint256 public mintStart;
    uint256 public duration;
    BaseMetadata baseMetadata;
    bool public orURI;
    
      constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
      ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
      }

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

      // public
      function mint(address _to, uint256 _mintAmount) public payable {

        uint256 supply = totalSupply();
        require(!paused);
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount);
        require(supply + _mintAmount <= maxSupply);

        if (msg.sender != owner()) {
            require(msg.value >= baseMetadata.getPrice(supply, _mintAmount));
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
          _safeMint(_to, supply + i);
        }

      }

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

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

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

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setMetadata(address _baseMetadata, bool _orURI) public onlyOwner {
        baseMetadata = BaseMetadata(_baseMetadata);
        orURI = _orURI;
    }

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

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

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

    function pause(bool _state, uint256 _duration) public onlyOwner {
        mintStart = block.timestamp;
        if (duration != _duration) {duration = _duration;}
        paused = _state;
    }

    function withdraw() public payable onlyOwner {
       require(payable(msg.sender).send(address(this).balance));
    }

    function withdrawToWithdrawer(address _withdrawer, uint256 _amount) 
        public payable onlyOwner {
        require(payable(_withdrawer).send(_amount));
    }

    function withdrawToWithdrawers(address[] calldata _users, uint16[] calldata _nums) public payable onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            if (_nums[i] > 0) {
                require(payable(_users[i]).send(address(this).balance * uint256(_nums[i]) / 1000));
            }
        }
    }

    function getSelfAddress() public view returns(address) {
        return address(this);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSelfAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"orURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"},{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_baseMetadata","type":"address"},{"internalType":"bool","name":"_orURI","type":"bool"}],"name":"setMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_withdrawer","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawToWithdrawer","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"},{"internalType":"uint16[]","name":"_nums","type":"uint16[]"}],"name":"withdrawToWithdrawers","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001a9565b50666a94d74f430000600d55610d05600e55600a600f556010805460ff191660011790553480156200005957600080fd5b5060405162002e0e38038062002e0e8339810160408190526200007c91620002fa565b82518390839062000095906000906020850190620001a9565b508051620000ab906001906020840190620001a9565b505050620000c8620000c2620000dc60201b60201c565b620000e0565b620000d38162000132565b5050506200040f565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200013c620000dc565b6001600160a01b03166200014f6200019a565b6001600160a01b031614620001815760405162461bcd60e51b8152600401620001789062000387565b60405180910390fd5b80516200019690600b906020840190620001a9565b5050565b600a546001600160a01b031690565b828054620001b790620003bc565b90600052602060002090601f016020900481019282620001db576000855562000226565b82601f10620001f657805160ff191683800117855562000226565b8280016001018555821562000226579182015b828111156200022657825182559160200191906001019062000209565b506200023492915062000238565b5090565b5b8082111562000234576000815560010162000239565b600082601f83011262000260578081fd5b81516001600160401b03808211156200027d576200027d620003f9565b6040516020601f8401601f1916820181018381118382101715620002a557620002a5620003f9565b6040528382528584018101871015620002bc578485fd5b8492505b83831015620002df5785830181015182840182015291820191620002c0565b83831115620002f057848185840101525b5095945050505050565b6000806000606084860312156200030f578283fd5b83516001600160401b038082111562000326578485fd5b62000334878388016200024f565b945060208601519150808211156200034a578384fd5b62000358878388016200024f565b935060408601519150808211156200036e578283fd5b506200037d868287016200024f565b9150509250925092565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600281046001821680620003d157607f821691505b60208210811415620003f357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6129ef806200041f6000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063b88d4fde116100ab578063da3ef23f1161006f578063da3ef23f14610613578063e985e9c514610633578063efd12fc814610653578063f2fde38b14610673578063f556fcdb146106935761023b565b8063b88d4fde14610594578063c1864949146105b4578063c6682862146105c9578063c87b56dd146105de578063d5abeb01146105fe5761023b565b80637f00c7a6116100f25780637f00c7a61461050a5780638da5cb5b1461052a57806395d89b411461053f57806397b17f2714610554578063a22cb465146105745761023b565b80636352211e1461048d5780636c0360eb146104ad57806370a08231146104c2578063715018a6146104e25780637dea82ca146104f75761023b565b80632f745c59116101bc57806344a0d68a1161018057806344a0d68a146104055780634f6ccce71461042557806355f804b3146104455780635bffb1df146104655780635c975abb146104785761023b565b80632f745c591461037d5780633ccfd60b1461039d57806340c10f19146103a557806342842e0e146103b8578063438b6300146103d85761023b565b806313faede61161020357806313faede61461030957806318160ddd1461031e578063239c70ae1461033357806323b872dd14610348578063255e4685146103685761023b565b806301ffc9a71461024057806306fdde0314610276578063081812fc14610298578063095ea7b3146102c55780630fb5a6b4146102e7575b600080fd5b34801561024c57600080fd5b5061026061025b366004612013565b6106a8565b60405161026d91906122d9565b60405180910390f35b34801561028257600080fd5b5061028b6106d5565b60405161026d91906122e4565b3480156102a457600080fd5b506102b86102b3366004612126565b610767565b60405161026d9190612244565b3480156102d157600080fd5b506102e56102e0366004611f66565b6107b3565b005b3480156102f357600080fd5b506102fc61084b565b60405161026d91906127f4565b34801561031557600080fd5b506102fc610851565b34801561032a57600080fd5b506102fc610857565b34801561033f57600080fd5b506102fc61085d565b34801561035457600080fd5b506102e5610363366004611e89565b610863565b34801561037457600080fd5b506102fc61089b565b34801561038957600080fd5b506102fc610398366004611f66565b6108a1565b6102e56108f3565b6102e56103b3366004611f66565b610958565b3480156103c457600080fd5b506102e56103d3366004611e89565b610a8c565b3480156103e457600080fd5b506103f86103f3366004611e3d565b610aa7565b60405161026d9190612295565b34801561041157600080fd5b506102e5610420366004612126565b610b65565b34801561043157600080fd5b506102fc610440366004612126565b610ba9565b34801561045157600080fd5b506102e561046036600461204b565b610c04565b6102e5610473366004611f8f565b610c5a565b34801561048457600080fd5b50610260610daf565b34801561049957600080fd5b506102b86104a8366004612126565b610db8565b3480156104b957600080fd5b5061028b610ded565b3480156104ce57600080fd5b506102fc6104dd366004611e3d565b610e7b565b3480156104ee57600080fd5b506102e5610ebf565b6102e5610505366004611f66565b610f08565b34801561051657600080fd5b506102e5610525366004612126565b610f75565b34801561053657600080fd5b506102b8610fb9565b34801561054b57600080fd5b5061028b610fc8565b34801561056057600080fd5b506102e561056f366004611f3d565b610fd7565b34801561058057600080fd5b506102e561058f366004611f3d565b61104c565b3480156105a057600080fd5b506102e56105af366004611ec4565b61105e565b3480156105c057600080fd5b50610260611097565b3480156105d557600080fd5b5061028b6110a7565b3480156105ea57600080fd5b5061028b6105f9366004612126565b6110b4565b34801561060a57600080fd5b506102fc6111d5565b34801561061f57600080fd5b506102e561062e36600461204b565b6111db565b34801561063f57600080fd5b5061026061064e366004611e57565b61122d565b34801561065f57600080fd5b506102e561066e366004611ff8565b61125b565b34801561067f57600080fd5b506102e561068e366004611e3d565b6112c1565b34801561069f57600080fd5b506102b8611332565b60006001600160e01b0319821663780e9d6360e01b14806106cd57506106cd82611336565b90505b919050565b6060600080546106e4906128f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610710906128f7565b801561075d5780601f106107325761010080835404028352916020019161075d565b820191906000526020600020905b81548152906001019060200180831161074057829003601f168201915b5050505050905090565b600061077282611376565b6107975760405162461bcd60e51b815260040161078e906125fd565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107be82610db8565b9050806001600160a01b0316836001600160a01b031614156107f25760405162461bcd60e51b815260040161078e90612716565b806001600160a01b0316610804611393565b6001600160a01b0316148061082057506108208161064e611393565b61083c5760405162461bcd60e51b815260040161078e906124d8565b6108468383611397565b505050565b60125481565b600d5481565b60085490565b600f5481565b61087461086e611393565b82611405565b6108905760405162461bcd60e51b815260040161078e90612757565b61084683838361148a565b60115481565b60006108ac83610e7b565b82106108ca5760405162461bcd60e51b815260040161078e906122f7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108fb611393565b6001600160a01b031661090c610fb9565b6001600160a01b0316146109325760405162461bcd60e51b815260040161078e90612649565b60405133904780156108fc02916000818181858888f1935050505061095657600080fd5b565b6000610962610857565b60105490915060ff161561097557600080fd5b6000821161098257600080fd5b600f5482111561099157600080fd5b600e5461099e8383612869565b11156109a957600080fd5b6109b1610fb9565b6001600160a01b0316336001600160a01b031614610a5757601354604051635cf4ee9160e01b81526001600160a01b0390911690635cf4ee91906109fb90849086906004016127fd565b60206040518083038186803b158015610a1357600080fd5b505afa158015610a27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4b919061213e565b341015610a5757600080fd5b60015b828111610a8657610a7484610a6f8385612869565b6115b7565b80610a7e81612932565b915050610a5a565b50505050565b6108468383836040518060200160405280600081525061105e565b60606000610ab483610e7b565b905060008167ffffffffffffffff811115610adf57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610b08578160200160208202803683370190505b50905060005b82811015610b5d57610b2085826108a1565b828281518110610b4057634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610b5581612932565b915050610b0e565b509392505050565b610b6d611393565b6001600160a01b0316610b7e610fb9565b6001600160a01b031614610ba45760405162461bcd60e51b815260040161078e90612649565b600d55565b6000610bb3610857565b8210610bd15760405162461bcd60e51b815260040161078e906127a8565b60088281548110610bf257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610c0c611393565b6001600160a01b0316610c1d610fb9565b6001600160a01b031614610c435760405162461bcd60e51b815260040161078e90612649565b8051610c5690600b906020840190611cf6565b5050565b610c62611393565b6001600160a01b0316610c73610fb9565b6001600160a01b031614610c995760405162461bcd60e51b815260040161078e90612649565b60005b83811015610da8576000838383818110610cc657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610cdb9190612104565b61ffff161115610d9657848482818110610d0557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d1a9190611e3d565b6001600160a01b03166108fc6103e8858585818110610d4957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d5e9190612104565b610d6c9061ffff1647612895565b610d769190612881565b6040518115909202916000818181858888f19350505050610d9657600080fd5b80610da081612932565b915050610c9c565b5050505050565b60105460ff1681565b6000818152600260205260408120546001600160a01b0316806106cd5760405162461bcd60e51b815260040161078e9061257f565b600b8054610dfa906128f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e26906128f7565b8015610e735780601f10610e4857610100808354040283529160200191610e73565b820191906000526020600020905b815481529060010190602001808311610e5657829003601f168201915b505050505081565b60006001600160a01b038216610ea35760405162461bcd60e51b815260040161078e90612535565b506001600160a01b031660009081526003602052604090205490565b610ec7611393565b6001600160a01b0316610ed8610fb9565b6001600160a01b031614610efe5760405162461bcd60e51b815260040161078e90612649565b61095660006115d1565b610f10611393565b6001600160a01b0316610f21610fb9565b6001600160a01b031614610f475760405162461bcd60e51b815260040161078e90612649565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050610c5657600080fd5b610f7d611393565b6001600160a01b0316610f8e610fb9565b6001600160a01b031614610fb45760405162461bcd60e51b815260040161078e90612649565b600f55565b600a546001600160a01b031690565b6060600180546106e4906128f7565b610fdf611393565b6001600160a01b0316610ff0610fb9565b6001600160a01b0316146110165760405162461bcd60e51b815260040161078e90612649565b601380546001600160a01b0319166001600160a01b03939093169290921760ff60a01b1916600160a01b91151591909102179055565b610c56611057611393565b8383611623565b61106f611069611393565b83611405565b61108b5760405162461bcd60e51b815260040161078e90612757565b610a86848484846116c6565b601354600160a01b900460ff1681565b600c8054610dfa906128f7565b60606110bf82611376565b6110db5760405162461bcd60e51b815260040161078e906126c7565b601354600090600160a01b900460ff166110fc576110f76116f9565b611180565b60135460405163295d33a960e21b81526001600160a01b039091169063a574cea49061112c9086906004016127f4565b60006040518083038186803b15801561114457600080fd5b505afa158015611158573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111809190810190612091565b905060008151116111a057604051806020016040528060008152506111ce565b806111aa84611708565b600c6040516020016111be93929190612182565b6040516020818303038152906040525b9392505050565b600e5481565b6111e3611393565b6001600160a01b03166111f4610fb9565b6001600160a01b03161461121a5760405162461bcd60e51b815260040161078e90612649565b8051610c5690600c906020840190611cf6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611263611393565b6001600160a01b0316611274610fb9565b6001600160a01b03161461129a5760405162461bcd60e51b815260040161078e90612649565b4260115560125481146112ad5760128190555b506010805460ff1916911515919091179055565b6112c9611393565b6001600160a01b03166112da610fb9565b6001600160a01b0316146113005760405162461bcd60e51b815260040161078e90612649565b6001600160a01b0381166113265760405162461bcd60e51b815260040161078e90612394565b61132f816115d1565b50565b3090565b60006001600160e01b031982166380ac58cd60e01b148061136757506001600160e01b03198216635b5e139f60e01b145b806106cd57506106cd82611823565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113cc82610db8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061141082611376565b61142c5760405162461bcd60e51b815260040161078e9061248c565b600061143783610db8565b9050806001600160a01b0316846001600160a01b031614806114725750836001600160a01b031661146784610767565b6001600160a01b0316145b806114825750611482818561122d565b949350505050565b826001600160a01b031661149d82610db8565b6001600160a01b0316146114c35760405162461bcd60e51b815260040161078e9061267e565b6001600160a01b0382166114e95760405162461bcd60e51b815260040161078e90612411565b6114f483838361183c565b6114ff600082611397565b6001600160a01b03831660009081526003602052604081208054600192906115289084906128b4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611556908490612869565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c568282604051806020016040528060008152506118c5565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116555760405162461bcd60e51b815260040161078e90612455565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906116b99085906122d9565b60405180910390a3505050565b6116d184848461148a565b6116dd848484846118f8565b610a865760405162461bcd60e51b815260040161078e90612342565b6060600b80546106e4906128f7565b60608161172d57506040805180820190915260018152600360fc1b60208201526106d0565b8160005b8115611757578061174181612932565b91506117509050600a83612881565b9150611731565b60008167ffffffffffffffff81111561178057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156117aa576020820181803683370190505b5090505b8415611482576117bf6001836128b4565b91506117cc600a8661294d565b6117d7906030612869565b60f81b8183815181106117fa57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061181c600a86612881565b94506117ae565b6001600160e01b031981166301ffc9a760e01b14919050565b611847838383610846565b6001600160a01b0383166118635761185e81611a13565b611886565b816001600160a01b0316836001600160a01b031614611886576118868382611a57565b6001600160a01b0382166118a25761189d81611af4565b610846565b826001600160a01b0316826001600160a01b031614610846576108468282611bcd565b6118cf8383611c11565b6118dc60008484846118f8565b6108465760405162461bcd60e51b815260040161078e90612342565b600061190c846001600160a01b0316611cf0565b15611a0857836001600160a01b031663150b7a02611928611393565b8786866040518563ffffffff1660e01b815260040161194a9493929190612258565b602060405180830381600087803b15801561196457600080fd5b505af1925050508015611994575060408051601f3d908101601f191682019092526119919181019061202f565b60015b6119ee573d8080156119c2576040519150601f19603f3d011682016040523d82523d6000602084013e6119c7565b606091505b5080516119e65760405162461bcd60e51b815260040161078e90612342565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611482565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611a6484610e7b565b611a6e91906128b4565b600083815260076020526040902054909150808214611ac1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b06906001906128b4565b60008381526009602052604081205460088054939450909284908110611b3c57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b6b57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611bb157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611bd883610e7b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c375760405162461bcd60e51b815260040161078e906125c8565b611c4081611376565b15611c5d5760405162461bcd60e51b815260040161078e906123da565b611c696000838361183c565b6001600160a01b0382166000908152600360205260408120805460019290611c92908490612869565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611d02906128f7565b90600052602060002090601f016020900481019282611d245760008555611d6a565b82601f10611d3d57805160ff1916838001178555611d6a565b82800160010185558215611d6a579182015b82811115611d6a578251825591602001919060010190611d4f565b50611d76929150611d7a565b5090565b5b80821115611d765760008155600101611d7b565b6000611da2611d9d84612835565b61280b565b9050828152838383011115611db657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146106d057600080fd5b60008083601f840112611df5578182fd5b50813567ffffffffffffffff811115611e0c578182fd5b6020830191508360208083028501011115611e2657600080fd5b9250929050565b803580151581146106d057600080fd5b600060208284031215611e4e578081fd5b6111ce82611dcd565b60008060408385031215611e69578081fd5b611e7283611dcd565b9150611e8060208401611dcd565b90509250929050565b600080600060608486031215611e9d578081fd5b611ea684611dcd565b9250611eb460208501611dcd565b9150604084013590509250925092565b60008060008060808587031215611ed9578081fd5b611ee285611dcd565b9350611ef060208601611dcd565b925060408501359150606085013567ffffffffffffffff811115611f12578182fd5b8501601f81018713611f22578182fd5b611f3187823560208401611d8f565b91505092959194509250565b60008060408385031215611f4f578182fd5b611f5883611dcd565b9150611e8060208401611e2d565b60008060408385031215611f78578182fd5b611f8183611dcd565b946020939093013593505050565b60008060008060408587031215611fa4578384fd5b843567ffffffffffffffff80821115611fbb578586fd5b611fc788838901611de4565b90965094506020870135915080821115611fdf578384fd5b50611fec87828801611de4565b95989497509550505050565b6000806040838503121561200a578182fd5b611f8183611e2d565b600060208284031215612024578081fd5b81356111ce816129a3565b600060208284031215612040578081fd5b81516111ce816129a3565b60006020828403121561205c578081fd5b813567ffffffffffffffff811115612072578182fd5b8201601f81018413612082578182fd5b61148284823560208401611d8f565b6000602082840312156120a2578081fd5b815167ffffffffffffffff8111156120b8578182fd5b8201601f810184136120c8578182fd5b80516120d6611d9d82612835565b8181528560208385010111156120ea578384fd5b6120fb8260208301602086016128cb565b95945050505050565b600060208284031215612115578081fd5b813561ffff811681146111ce578182fd5b600060208284031215612137578081fd5b5035919050565b60006020828403121561214f578081fd5b5051919050565b6000815180845261216e8160208601602086016128cb565b601f01601f19169290920160200192915050565b6000845160206121958285838a016128cb565b8551918401916121a88184848a016128cb565b85549201918390600281046001808316806121c457607f831692505b8583108114156121e257634e487b7160e01b88526022600452602488fd5b8080156121f6576001811461220757612233565b60ff19851688528388019550612233565b6122108b61285d565b895b8581101561222b5781548a820152908401908801612212565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061228b90830184612156565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122cd578351835292840192918401916001016122b1565b50909695505050505050565b901515815260200190565b6000602082526111ce6020830184612156565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b918252602082015260400190565b60405181810167ffffffffffffffff8111828210171561282d5761282d61298d565b604052919050565b600067ffffffffffffffff82111561284f5761284f61298d565b50601f01601f191660200190565b60009081526020902090565b6000821982111561287c5761287c612961565b500190565b60008261289057612890612977565b500490565b60008160001904831182151516156128af576128af612961565b500290565b6000828210156128c6576128c6612961565b500390565b60005b838110156128e65781810151838201526020016128ce565b83811115610a865750506000910152565b60028104600182168061290b57607f821691505b6020821081141561292c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561294657612946612961565b5060010190565b60008261295c5761295c612977565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461132f57600080fdfea26469706673582212207ba90597b7b0e804296c28f2d975dbe84f49c749f29aa3d74b01e04ff51756cd64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000085065706550616c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000085065706550616c730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569617134356762633768633269613263326b6e7067737832737137636e72796766333366627a766d7073336468796162336b6276652f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063b88d4fde116100ab578063da3ef23f1161006f578063da3ef23f14610613578063e985e9c514610633578063efd12fc814610653578063f2fde38b14610673578063f556fcdb146106935761023b565b8063b88d4fde14610594578063c1864949146105b4578063c6682862146105c9578063c87b56dd146105de578063d5abeb01146105fe5761023b565b80637f00c7a6116100f25780637f00c7a61461050a5780638da5cb5b1461052a57806395d89b411461053f57806397b17f2714610554578063a22cb465146105745761023b565b80636352211e1461048d5780636c0360eb146104ad57806370a08231146104c2578063715018a6146104e25780637dea82ca146104f75761023b565b80632f745c59116101bc57806344a0d68a1161018057806344a0d68a146104055780634f6ccce71461042557806355f804b3146104455780635bffb1df146104655780635c975abb146104785761023b565b80632f745c591461037d5780633ccfd60b1461039d57806340c10f19146103a557806342842e0e146103b8578063438b6300146103d85761023b565b806313faede61161020357806313faede61461030957806318160ddd1461031e578063239c70ae1461033357806323b872dd14610348578063255e4685146103685761023b565b806301ffc9a71461024057806306fdde0314610276578063081812fc14610298578063095ea7b3146102c55780630fb5a6b4146102e7575b600080fd5b34801561024c57600080fd5b5061026061025b366004612013565b6106a8565b60405161026d91906122d9565b60405180910390f35b34801561028257600080fd5b5061028b6106d5565b60405161026d91906122e4565b3480156102a457600080fd5b506102b86102b3366004612126565b610767565b60405161026d9190612244565b3480156102d157600080fd5b506102e56102e0366004611f66565b6107b3565b005b3480156102f357600080fd5b506102fc61084b565b60405161026d91906127f4565b34801561031557600080fd5b506102fc610851565b34801561032a57600080fd5b506102fc610857565b34801561033f57600080fd5b506102fc61085d565b34801561035457600080fd5b506102e5610363366004611e89565b610863565b34801561037457600080fd5b506102fc61089b565b34801561038957600080fd5b506102fc610398366004611f66565b6108a1565b6102e56108f3565b6102e56103b3366004611f66565b610958565b3480156103c457600080fd5b506102e56103d3366004611e89565b610a8c565b3480156103e457600080fd5b506103f86103f3366004611e3d565b610aa7565b60405161026d9190612295565b34801561041157600080fd5b506102e5610420366004612126565b610b65565b34801561043157600080fd5b506102fc610440366004612126565b610ba9565b34801561045157600080fd5b506102e561046036600461204b565b610c04565b6102e5610473366004611f8f565b610c5a565b34801561048457600080fd5b50610260610daf565b34801561049957600080fd5b506102b86104a8366004612126565b610db8565b3480156104b957600080fd5b5061028b610ded565b3480156104ce57600080fd5b506102fc6104dd366004611e3d565b610e7b565b3480156104ee57600080fd5b506102e5610ebf565b6102e5610505366004611f66565b610f08565b34801561051657600080fd5b506102e5610525366004612126565b610f75565b34801561053657600080fd5b506102b8610fb9565b34801561054b57600080fd5b5061028b610fc8565b34801561056057600080fd5b506102e561056f366004611f3d565b610fd7565b34801561058057600080fd5b506102e561058f366004611f3d565b61104c565b3480156105a057600080fd5b506102e56105af366004611ec4565b61105e565b3480156105c057600080fd5b50610260611097565b3480156105d557600080fd5b5061028b6110a7565b3480156105ea57600080fd5b5061028b6105f9366004612126565b6110b4565b34801561060a57600080fd5b506102fc6111d5565b34801561061f57600080fd5b506102e561062e36600461204b565b6111db565b34801561063f57600080fd5b5061026061064e366004611e57565b61122d565b34801561065f57600080fd5b506102e561066e366004611ff8565b61125b565b34801561067f57600080fd5b506102e561068e366004611e3d565b6112c1565b34801561069f57600080fd5b506102b8611332565b60006001600160e01b0319821663780e9d6360e01b14806106cd57506106cd82611336565b90505b919050565b6060600080546106e4906128f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610710906128f7565b801561075d5780601f106107325761010080835404028352916020019161075d565b820191906000526020600020905b81548152906001019060200180831161074057829003601f168201915b5050505050905090565b600061077282611376565b6107975760405162461bcd60e51b815260040161078e906125fd565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107be82610db8565b9050806001600160a01b0316836001600160a01b031614156107f25760405162461bcd60e51b815260040161078e90612716565b806001600160a01b0316610804611393565b6001600160a01b0316148061082057506108208161064e611393565b61083c5760405162461bcd60e51b815260040161078e906124d8565b6108468383611397565b505050565b60125481565b600d5481565b60085490565b600f5481565b61087461086e611393565b82611405565b6108905760405162461bcd60e51b815260040161078e90612757565b61084683838361148a565b60115481565b60006108ac83610e7b565b82106108ca5760405162461bcd60e51b815260040161078e906122f7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108fb611393565b6001600160a01b031661090c610fb9565b6001600160a01b0316146109325760405162461bcd60e51b815260040161078e90612649565b60405133904780156108fc02916000818181858888f1935050505061095657600080fd5b565b6000610962610857565b60105490915060ff161561097557600080fd5b6000821161098257600080fd5b600f5482111561099157600080fd5b600e5461099e8383612869565b11156109a957600080fd5b6109b1610fb9565b6001600160a01b0316336001600160a01b031614610a5757601354604051635cf4ee9160e01b81526001600160a01b0390911690635cf4ee91906109fb90849086906004016127fd565b60206040518083038186803b158015610a1357600080fd5b505afa158015610a27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4b919061213e565b341015610a5757600080fd5b60015b828111610a8657610a7484610a6f8385612869565b6115b7565b80610a7e81612932565b915050610a5a565b50505050565b6108468383836040518060200160405280600081525061105e565b60606000610ab483610e7b565b905060008167ffffffffffffffff811115610adf57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610b08578160200160208202803683370190505b50905060005b82811015610b5d57610b2085826108a1565b828281518110610b4057634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610b5581612932565b915050610b0e565b509392505050565b610b6d611393565b6001600160a01b0316610b7e610fb9565b6001600160a01b031614610ba45760405162461bcd60e51b815260040161078e90612649565b600d55565b6000610bb3610857565b8210610bd15760405162461bcd60e51b815260040161078e906127a8565b60088281548110610bf257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610c0c611393565b6001600160a01b0316610c1d610fb9565b6001600160a01b031614610c435760405162461bcd60e51b815260040161078e90612649565b8051610c5690600b906020840190611cf6565b5050565b610c62611393565b6001600160a01b0316610c73610fb9565b6001600160a01b031614610c995760405162461bcd60e51b815260040161078e90612649565b60005b83811015610da8576000838383818110610cc657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610cdb9190612104565b61ffff161115610d9657848482818110610d0557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d1a9190611e3d565b6001600160a01b03166108fc6103e8858585818110610d4957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610d5e9190612104565b610d6c9061ffff1647612895565b610d769190612881565b6040518115909202916000818181858888f19350505050610d9657600080fd5b80610da081612932565b915050610c9c565b5050505050565b60105460ff1681565b6000818152600260205260408120546001600160a01b0316806106cd5760405162461bcd60e51b815260040161078e9061257f565b600b8054610dfa906128f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610e26906128f7565b8015610e735780601f10610e4857610100808354040283529160200191610e73565b820191906000526020600020905b815481529060010190602001808311610e5657829003601f168201915b505050505081565b60006001600160a01b038216610ea35760405162461bcd60e51b815260040161078e90612535565b506001600160a01b031660009081526003602052604090205490565b610ec7611393565b6001600160a01b0316610ed8610fb9565b6001600160a01b031614610efe5760405162461bcd60e51b815260040161078e90612649565b61095660006115d1565b610f10611393565b6001600160a01b0316610f21610fb9565b6001600160a01b031614610f475760405162461bcd60e51b815260040161078e90612649565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050610c5657600080fd5b610f7d611393565b6001600160a01b0316610f8e610fb9565b6001600160a01b031614610fb45760405162461bcd60e51b815260040161078e90612649565b600f55565b600a546001600160a01b031690565b6060600180546106e4906128f7565b610fdf611393565b6001600160a01b0316610ff0610fb9565b6001600160a01b0316146110165760405162461bcd60e51b815260040161078e90612649565b601380546001600160a01b0319166001600160a01b03939093169290921760ff60a01b1916600160a01b91151591909102179055565b610c56611057611393565b8383611623565b61106f611069611393565b83611405565b61108b5760405162461bcd60e51b815260040161078e90612757565b610a86848484846116c6565b601354600160a01b900460ff1681565b600c8054610dfa906128f7565b60606110bf82611376565b6110db5760405162461bcd60e51b815260040161078e906126c7565b601354600090600160a01b900460ff166110fc576110f76116f9565b611180565b60135460405163295d33a960e21b81526001600160a01b039091169063a574cea49061112c9086906004016127f4565b60006040518083038186803b15801561114457600080fd5b505afa158015611158573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111809190810190612091565b905060008151116111a057604051806020016040528060008152506111ce565b806111aa84611708565b600c6040516020016111be93929190612182565b6040516020818303038152906040525b9392505050565b600e5481565b6111e3611393565b6001600160a01b03166111f4610fb9565b6001600160a01b03161461121a5760405162461bcd60e51b815260040161078e90612649565b8051610c5690600c906020840190611cf6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611263611393565b6001600160a01b0316611274610fb9565b6001600160a01b03161461129a5760405162461bcd60e51b815260040161078e90612649565b4260115560125481146112ad5760128190555b506010805460ff1916911515919091179055565b6112c9611393565b6001600160a01b03166112da610fb9565b6001600160a01b0316146113005760405162461bcd60e51b815260040161078e90612649565b6001600160a01b0381166113265760405162461bcd60e51b815260040161078e90612394565b61132f816115d1565b50565b3090565b60006001600160e01b031982166380ac58cd60e01b148061136757506001600160e01b03198216635b5e139f60e01b145b806106cd57506106cd82611823565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113cc82610db8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061141082611376565b61142c5760405162461bcd60e51b815260040161078e9061248c565b600061143783610db8565b9050806001600160a01b0316846001600160a01b031614806114725750836001600160a01b031661146784610767565b6001600160a01b0316145b806114825750611482818561122d565b949350505050565b826001600160a01b031661149d82610db8565b6001600160a01b0316146114c35760405162461bcd60e51b815260040161078e9061267e565b6001600160a01b0382166114e95760405162461bcd60e51b815260040161078e90612411565b6114f483838361183c565b6114ff600082611397565b6001600160a01b03831660009081526003602052604081208054600192906115289084906128b4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611556908490612869565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c568282604051806020016040528060008152506118c5565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116555760405162461bcd60e51b815260040161078e90612455565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906116b99085906122d9565b60405180910390a3505050565b6116d184848461148a565b6116dd848484846118f8565b610a865760405162461bcd60e51b815260040161078e90612342565b6060600b80546106e4906128f7565b60608161172d57506040805180820190915260018152600360fc1b60208201526106d0565b8160005b8115611757578061174181612932565b91506117509050600a83612881565b9150611731565b60008167ffffffffffffffff81111561178057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156117aa576020820181803683370190505b5090505b8415611482576117bf6001836128b4565b91506117cc600a8661294d565b6117d7906030612869565b60f81b8183815181106117fa57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061181c600a86612881565b94506117ae565b6001600160e01b031981166301ffc9a760e01b14919050565b611847838383610846565b6001600160a01b0383166118635761185e81611a13565b611886565b816001600160a01b0316836001600160a01b031614611886576118868382611a57565b6001600160a01b0382166118a25761189d81611af4565b610846565b826001600160a01b0316826001600160a01b031614610846576108468282611bcd565b6118cf8383611c11565b6118dc60008484846118f8565b6108465760405162461bcd60e51b815260040161078e90612342565b600061190c846001600160a01b0316611cf0565b15611a0857836001600160a01b031663150b7a02611928611393565b8786866040518563ffffffff1660e01b815260040161194a9493929190612258565b602060405180830381600087803b15801561196457600080fd5b505af1925050508015611994575060408051601f3d908101601f191682019092526119919181019061202f565b60015b6119ee573d8080156119c2576040519150601f19603f3d011682016040523d82523d6000602084013e6119c7565b606091505b5080516119e65760405162461bcd60e51b815260040161078e90612342565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611482565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611a6484610e7b565b611a6e91906128b4565b600083815260076020526040902054909150808214611ac1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b06906001906128b4565b60008381526009602052604081205460088054939450909284908110611b3c57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b6b57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611bb157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611bd883610e7b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c375760405162461bcd60e51b815260040161078e906125c8565b611c4081611376565b15611c5d5760405162461bcd60e51b815260040161078e906123da565b611c696000838361183c565b6001600160a01b0382166000908152600360205260408120805460019290611c92908490612869565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611d02906128f7565b90600052602060002090601f016020900481019282611d245760008555611d6a565b82601f10611d3d57805160ff1916838001178555611d6a565b82800160010185558215611d6a579182015b82811115611d6a578251825591602001919060010190611d4f565b50611d76929150611d7a565b5090565b5b80821115611d765760008155600101611d7b565b6000611da2611d9d84612835565b61280b565b9050828152838383011115611db657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146106d057600080fd5b60008083601f840112611df5578182fd5b50813567ffffffffffffffff811115611e0c578182fd5b6020830191508360208083028501011115611e2657600080fd5b9250929050565b803580151581146106d057600080fd5b600060208284031215611e4e578081fd5b6111ce82611dcd565b60008060408385031215611e69578081fd5b611e7283611dcd565b9150611e8060208401611dcd565b90509250929050565b600080600060608486031215611e9d578081fd5b611ea684611dcd565b9250611eb460208501611dcd565b9150604084013590509250925092565b60008060008060808587031215611ed9578081fd5b611ee285611dcd565b9350611ef060208601611dcd565b925060408501359150606085013567ffffffffffffffff811115611f12578182fd5b8501601f81018713611f22578182fd5b611f3187823560208401611d8f565b91505092959194509250565b60008060408385031215611f4f578182fd5b611f5883611dcd565b9150611e8060208401611e2d565b60008060408385031215611f78578182fd5b611f8183611dcd565b946020939093013593505050565b60008060008060408587031215611fa4578384fd5b843567ffffffffffffffff80821115611fbb578586fd5b611fc788838901611de4565b90965094506020870135915080821115611fdf578384fd5b50611fec87828801611de4565b95989497509550505050565b6000806040838503121561200a578182fd5b611f8183611e2d565b600060208284031215612024578081fd5b81356111ce816129a3565b600060208284031215612040578081fd5b81516111ce816129a3565b60006020828403121561205c578081fd5b813567ffffffffffffffff811115612072578182fd5b8201601f81018413612082578182fd5b61148284823560208401611d8f565b6000602082840312156120a2578081fd5b815167ffffffffffffffff8111156120b8578182fd5b8201601f810184136120c8578182fd5b80516120d6611d9d82612835565b8181528560208385010111156120ea578384fd5b6120fb8260208301602086016128cb565b95945050505050565b600060208284031215612115578081fd5b813561ffff811681146111ce578182fd5b600060208284031215612137578081fd5b5035919050565b60006020828403121561214f578081fd5b5051919050565b6000815180845261216e8160208601602086016128cb565b601f01601f19169290920160200192915050565b6000845160206121958285838a016128cb565b8551918401916121a88184848a016128cb565b85549201918390600281046001808316806121c457607f831692505b8583108114156121e257634e487b7160e01b88526022600452602488fd5b8080156121f6576001811461220757612233565b60ff19851688528388019550612233565b6122108b61285d565b895b8581101561222b5781548a820152908401908801612212565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061228b90830184612156565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122cd578351835292840192918401916001016122b1565b50909695505050505050565b901515815260200190565b6000602082526111ce6020830184612156565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b918252602082015260400190565b60405181810167ffffffffffffffff8111828210171561282d5761282d61298d565b604052919050565b600067ffffffffffffffff82111561284f5761284f61298d565b50601f01601f191660200190565b60009081526020902090565b6000821982111561287c5761287c612961565b500190565b60008261289057612890612977565b500490565b60008160001904831182151516156128af576128af612961565b500290565b6000828210156128c6576128c6612961565b500390565b60005b838110156128e65781810151838201526020016128ce565b83811115610a865750506000910152565b60028104600182168061290b57607f821691505b6020821081141561292c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561294657612946612961565b5060010190565b60008261295c5761295c612977565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461132f57600080fdfea26469706673582212207ba90597b7b0e804296c28f2d975dbe84f49c749f29aa3d74b01e04ff51756cd64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000085065706550616c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000085065706550616c730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569617134356762633768633269613263326b6e7067737832737137636e72796766333366627a766d7073336468796162336b6276652f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): PepePals
Arg [1] : _symbol (string): PepePals
Arg [2] : _initBaseURI (string): ipfs://bafybeiaq45gbc7hc2ia2c2knpgsx2sq7cnrygf33fbzvmps3dhyab3kbve/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 5065706550616c73000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 5065706550616c73000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f62616679626569617134356762633768633269613263326b6e
Arg [9] : 7067737832737137636e72796766333366627a766d7073336468796162336b62
Arg [10] : 76652f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44790:3852:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38299:224;;;;;;;;;;-1:-1:-1;38299:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25793:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27352:221::-;;;;;;;;;;-1:-1:-1;27352:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26875:411::-;;;;;;;;;;-1:-1:-1;26875:411:0;;;;;:::i;:::-;;:::i;:::-;;45130:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44950:32::-;;;;;;;;;;;;;:::i;38939:113::-;;;;;;;;;;;;;:::i;45027:33::-;;;;;;;;;;;;;:::i;28102:339::-;;;;;;;;;;-1:-1:-1;28102:339:0;;;;;:::i;:::-;;:::i;45099:24::-;;;;;;;;;;;;;:::i;38607:256::-;;;;;;;;;;-1:-1:-1;38607:256:0;;;;;:::i;:::-;;:::i;47904:119::-;;;:::i;45578:517::-;;;;;;:::i;:::-;;:::i;28512:185::-;;;;;;;;;;-1:-1:-1;28512:185:0;;;;;:::i;:::-;;:::i;46105:392::-;;;;;;;;;;-1:-1:-1;46105:392:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47060:86::-;;;;;;;;;;-1:-1:-1;47060:86:0;;;;;:::i;:::-;;:::i;39129:233::-;;;;;;;;;;-1:-1:-1;39129:233:0;;;;;:::i;:::-;;:::i;47452:104::-;;;;;;;;;;-1:-1:-1;47452:104:0;;;;;:::i;:::-;;:::i;48204:331::-;;;;;;:::i;:::-;;:::i;45067:25::-;;;;;;;;;;;;;:::i;25487:239::-;;;;;;;;;;-1:-1:-1;25487:239:0;;;;;:::i;:::-;;:::i;44878:21::-;;;;;;;;;;;;;:::i;25217:208::-;;;;;;;;;;-1:-1:-1;25217:208:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;48031:165::-;;;;;;:::i;:::-;;:::i;47322:122::-;;;;;;;;;;-1:-1:-1;47322:122:0;;;;;:::i;:::-;;:::i;4112:87::-;;;;;;;;;;;;;:::i;25962:104::-;;;;;;;;;;;;;:::i;47154:160::-;;;;;;;;;;-1:-1:-1;47154:160:0;;;;;:::i;:::-;;:::i;27645:155::-;;;;;;;;;;-1:-1:-1;27645:155:0;;;;;:::i;:::-;;:::i;28768:328::-;;;;;;;;;;-1:-1:-1;28768:328:0;;;;;:::i;:::-;;:::i;45192:17::-;;;;;;;;;;;;;:::i;44906:37::-;;;;;;;;;;;;;:::i;46507:527::-;;;;;;;;;;-1:-1:-1;46507:527:0;;;;;:::i;:::-;;:::i;44989:31::-;;;;;;;;;;;;;:::i;47564:128::-;;;;;;;;;;-1:-1:-1;47564:128:0;;;;;:::i;:::-;;:::i;27871:164::-;;;;;;;;;;-1:-1:-1;27871:164:0;;;;;:::i;:::-;;:::i;47700:196::-;;;;;;;;;;-1:-1:-1;47700:196:0;;;;;:::i;:::-;;:::i;5021:201::-;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;48543:94::-;;;;;;;;;;;;;:::i;38299:224::-;38401:4;-1:-1:-1;;;;;;38425:50:0;;-1:-1:-1;;;38425:50:0;;:90;;;38479:36;38503:11;38479:23;:36::i;:::-;38418:97;;38299:224;;;;:::o;25793:100::-;25847:13;25880:5;25873:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25793:100;:::o;27352:221::-;27428:7;27456:16;27464:7;27456;:16::i;:::-;27448:73;;;;-1:-1:-1;;;27448:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;27541:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27541:24:0;;27352:221::o;26875:411::-;26956:13;26972:23;26987:7;26972:14;:23::i;:::-;26956:39;;27020:5;-1:-1:-1;;;;;27014:11:0;:2;-1:-1:-1;;;;;27014:11:0;;;27006:57;;;;-1:-1:-1;;;27006:57:0;;;;;;;:::i;:::-;27114:5;-1:-1:-1;;;;;27098:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;27098:21:0;;:62;;;;27123:37;27140:5;27147:12;:10;:12::i;27123:37::-;27076:168;;;;-1:-1:-1;;;27076:168:0;;;;;;;:::i;:::-;27257:21;27266:2;27270:7;27257:8;:21::i;:::-;26875:411;;;:::o;45130:23::-;;;;:::o;44950:32::-;;;;:::o;38939:113::-;39027:10;:17;38939:113;:::o;45027:33::-;;;;:::o;28102:339::-;28297:41;28316:12;:10;:12::i;:::-;28330:7;28297:18;:41::i;:::-;28289:103;;;;-1:-1:-1;;;28289:103:0;;;;;;;:::i;:::-;28405:28;28415:4;28421:2;28425:7;28405:9;:28::i;45099:24::-;;;;:::o;38607:256::-;38704:7;38740:23;38757:5;38740:16;:23::i;:::-;38732:5;:31;38724:87;;;;-1:-1:-1;;;38724:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;38829:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38607:256::o;47904:119::-;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47967:47:::1;::::0;47975:10:::1;::::0;47992:21:::1;47967:47:::0;::::1;;;::::0;::::1;::::0;;;47992:21;47975:10;47967:47;::::1;;;;;;47959:56;;;::::0;::::1;;47904:119::o:0;45578:517::-;45654:14;45671:13;:11;:13::i;:::-;45704:6;;45654:30;;-1:-1:-1;45704:6:0;;45703:7;45695:16;;;;;;45744:1;45730:11;:15;45722:24;;;;;;45780:13;;45765:11;:28;;45757:37;;;;;;45837:9;;45813:20;45822:11;45813:6;:20;:::i;:::-;:33;;45805:42;;;;;;45878:7;:5;:7::i;:::-;-1:-1:-1;;;;;45864:21:0;:10;-1:-1:-1;;;;;45864:21:0;;45860:118;;45923:12;;:42;;-1:-1:-1;;;45923:42:0;;-1:-1:-1;;;;;45923:12:0;;;;:21;;:42;;45945:6;;45953:11;;45923:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45910:9;:55;;45902:64;;;;;;46007:1;45990:94;46015:11;46010:1;:16;45990:94;;46046:26;46056:3;46061:10;46070:1;46061:6;:10;:::i;:::-;46046:9;:26::i;:::-;46028:3;;;;:::i;:::-;;;;45990:94;;;;45578:517;;;:::o;28512:185::-;28650:39;28667:4;28673:2;28677:7;28650:39;;;;;;;;;;;;:16;:39::i;46105:392::-;46192:16;46228:23;46254:17;46264:6;46254:9;:17::i;:::-;46228:43;;46282:25;46324:15;46310:30;;;;;;-1:-1:-1;;;46310:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46310:30:0;;46282:58;;46356:9;46351:111;46371:15;46367:1;:19;46351:111;;;46420:30;46440:6;46448:1;46420:19;:30::i;:::-;46406:8;46415:1;46406:11;;;;;;-1:-1:-1;;;46406:11:0;;;;;;;;;;;;;;;;;;:44;46388:3;;;;:::i;:::-;;;;46351:111;;;-1:-1:-1;46479:8:0;46105:392;-1:-1:-1;;;46105:392:0:o;47060:86::-;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47123:4:::1;:15:::0;47060:86::o;39129:233::-;39204:7;39240:30;:28;:30::i;:::-;39232:5;:38;39224:95;;;;-1:-1:-1;;;39224:95:0;;;;;;;:::i;:::-;39337:10;39348:5;39337:17;;;;;;-1:-1:-1;;;39337:17:0;;;;;;;;;;;;;;;;;39330:24;;39129:233;;;:::o;47452:104::-;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47527:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47452:104:::0;:::o;48204:331::-;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48328:9:::1;48323:205;48343:17:::0;;::::1;48323:205;;;48397:1;48386:5;;48392:1;48386:8;;;;;-1:-1:-1::0;;;48386:8:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:12;;;48382:135;;;48435:6;;48442:1;48435:9;;;;;-1:-1:-1::0;;;48435:9:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48427:23:0::1;:73;48495:4;48483:5;;48489:1;48483:8;;;;;-1:-1:-1::0;;;48483:8:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48451:41;::::0;48475:17:::1;;48451:21;:41;:::i;:::-;:48;;;;:::i;:::-;48427:73;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48419:82;;;::::0;::::1;;48362:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48323:205;;;;48204:331:::0;;;;:::o;45067:25::-;;;;;;:::o;25487:239::-;25559:7;25595:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25595:16:0;25630:19;25622:73;;;;-1:-1:-1;;;25622:73:0;;;;;;;:::i;44878:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25217:208::-;25289:7;-1:-1:-1;;;;;25317:19:0;;25309:74;;;;-1:-1:-1;;;25309:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;25401:16:0;;;;;:9;:16;;;;;;;25217:208::o;4763:103::-;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;48031:165::-:0;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48153:34:::1;::::0;-1:-1:-1;;;;;48153:25:0;::::1;::::0;:34;::::1;;;::::0;48179:7;;48153:34:::1;::::0;;;48179:7;48153:25;:34;::::1;;;;;;48145:43;;;::::0;::::1;47322:122:::0;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47403:13:::1;:33:::0;47322:122::o;4112:87::-;4185:6;;-1:-1:-1;;;;;4185:6:0;4112:87;:::o;25962:104::-;26018:13;26051:7;26044:14;;;;;:::i;47154:160::-;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47239:12:::1;:42:::0;;-1:-1:-1;;;;;;47239:42:0::1;-1:-1:-1::0;;;;;47239:42:0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;;;47292:14:0::1;-1:-1:-1::0;;;47292:14:0;::::1;;::::0;;;::::1;;::::0;;47154:160::o;27645:155::-;27740:52;27759:12;:10;:12::i;:::-;27773:8;27783;27740:18;:52::i;28768:328::-;28943:41;28962:12;:10;:12::i;:::-;28976:7;28943:18;:41::i;:::-;28935:103;;;;-1:-1:-1;;;28935:103:0;;;;;;;:::i;:::-;29049:39;29063:4;29069:2;29073:7;29082:5;29049:13;:39::i;45192:17::-;;;-1:-1:-1;;;45192:17:0;;;;;:::o;44906:37::-;;;;;;;:::i;46507:527::-;46625:13;46678:16;46686:7;46678;:16::i;:::-;46658:109;;;;-1:-1:-1;;;46658:109:0;;;;;;;:::i;:::-;46811:5;;46780:28;;-1:-1:-1;;;46811:5:0;;;;:54;;46855:10;:8;:10::i;:::-;46811:54;;;46819:12;;:33;;-1:-1:-1;;;46819:33:0;;-1:-1:-1;;;;;46819:12:0;;;;:24;;:33;;46844:7;;46819:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46819:33:0;;;;;;;;;;;;:::i;:::-;46780:85;;46914:1;46889:14;46883:28;:32;:141;;;;;;;;;;;;;;;;;46955:14;46971:18;:7;:16;:18::i;:::-;46991:13;46938:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46883:141;46876:148;46507:527;-1:-1:-1;;;46507:527:0:o;44989:31::-;;;;:::o;47564:128::-;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47651:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;27871:164::-:0;-1:-1:-1;;;;;27992:25:0;;;27968:4;27992:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27871:164::o;47700:196::-;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47787:15:::1;47775:9;:27:::0;47817:8:::1;::::0;:21;::::1;47813:50;;47841:8;:20:::0;;;47813:50:::1;-1:-1:-1::0;47873:6:0::1;:15:::0;;-1:-1:-1;;47873:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47700:196::o;5021:201::-;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;;-1:-1:-1::0;;;5102:73:0::1;;;;;;;:::i;:::-;5186:28;5205:8;5186:18;:28::i;:::-;5021:201:::0;:::o;48543:94::-;48624:4;48543:94;:::o;24848:305::-;24950:4;-1:-1:-1;;;;;;24987:40:0;;-1:-1:-1;;;24987:40:0;;:105;;-1:-1:-1;;;;;;;25044:48:0;;-1:-1:-1;;;25044:48:0;24987:105;:158;;;;25109:36;25133:11;25109:23;:36::i;30606:127::-;30671:4;30695:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30695:16:0;:30;;;30606:127::o;2836:98::-;2916:10;2836:98;:::o;34588:174::-;34663:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34663:29:0;-1:-1:-1;;;;;34663:29:0;;;;;;;;:24;;34717:23;34663:24;34717:14;:23::i;:::-;-1:-1:-1;;;;;34708:46:0;;;;;;;;;;;34588:174;;:::o;30900:348::-;30993:4;31018:16;31026:7;31018;:16::i;:::-;31010:73;;;;-1:-1:-1;;;31010:73:0;;;;;;;:::i;:::-;31094:13;31110:23;31125:7;31110:14;:23::i;:::-;31094:39;;31163:5;-1:-1:-1;;;;;31152:16:0;:7;-1:-1:-1;;;;;31152:16:0;;:51;;;;31196:7;-1:-1:-1;;;;;31172:31:0;:20;31184:7;31172:11;:20::i;:::-;-1:-1:-1;;;;;31172:31:0;;31152:51;:87;;;;31207:32;31224:5;31231:7;31207:16;:32::i;:::-;31144:96;30900:348;-1:-1:-1;;;;30900:348:0:o;33892:578::-;34051:4;-1:-1:-1;;;;;34024:31:0;:23;34039:7;34024:14;:23::i;:::-;-1:-1:-1;;;;;34024:31:0;;34016:85;;;;-1:-1:-1;;;34016:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34120:16:0;;34112:65;;;;-1:-1:-1;;;34112:65:0;;;;;;;:::i;:::-;34190:39;34211:4;34217:2;34221:7;34190:20;:39::i;:::-;34294:29;34311:1;34315:7;34294:8;:29::i;:::-;-1:-1:-1;;;;;34336:15:0;;;;;;:9;:15;;;;;:20;;34355:1;;34336:15;:20;;34355:1;;34336:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34367:13:0;;;;;;:9;:13;;;;;:18;;34384:1;;34367:13;:18;;34384:1;;34367:18;:::i;:::-;;;;-1:-1:-1;;34396:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34396:21:0;-1:-1:-1;;;;;34396:21:0;;;;;;;;;34435:27;;34396:16;;34435:27;;;;;;;33892:578;;;:::o;31590:110::-;31666:26;31676:2;31680:7;31666:26;;;;;;;;;;;;:9;:26::i;5382:191::-;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5382:191;;:::o;34904:315::-;35059:8;-1:-1:-1;;;;;35050:17:0;:5;-1:-1:-1;;;;;35050:17:0;;;35042:55;;;;-1:-1:-1;;;35042:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35108:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;35108:46:0;;;;;;;35170:41;;;;;35108:46;;35170:41;:::i;:::-;;;;;;;;34904:315;;;:::o;29978:::-;30135:28;30145:4;30151:2;30155:7;30135:9;:28::i;:::-;30182:48;30205:4;30211:2;30215:7;30224:5;30182:22;:48::i;:::-;30174:111;;;;-1:-1:-1;;;30174:111:0;;;;;;;:::i;45441:110::-;45501:13;45534:7;45527:14;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;;671:53;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;-1:-1:-1;;;900:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;-1:-1:-1;;;988:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;16544:157;-1:-1:-1;;;;;;16653:40:0;;-1:-1:-1;;;16653:40:0;16544:157;;;:::o;39975:589::-;40119:45;40146:4;40152:2;40156:7;40119:26;:45::i;:::-;-1:-1:-1;;;;;40181:18:0;;40177:187;;40216:40;40248:7;40216:31;:40::i;:::-;40177:187;;;40286:2;-1:-1:-1;;;;;40278:10:0;:4;-1:-1:-1;;;;;40278:10:0;;40274:90;;40305:47;40338:4;40344:7;40305:32;:47::i;:::-;-1:-1:-1;;;;;40378:16:0;;40374:183;;40411:45;40448:7;40411:36;:45::i;:::-;40374:183;;;40484:4;-1:-1:-1;;;;;40478:10:0;:2;-1:-1:-1;;;;;40478:10:0;;40474:83;;40505:40;40533:2;40537:7;40505:27;:40::i;31927:321::-;32057:18;32063:2;32067:7;32057:5;:18::i;:::-;32108:54;32139:1;32143:2;32147:7;32156:5;32108:22;:54::i;:::-;32086:154;;;;-1:-1:-1;;;32086:154:0;;;;;;;:::i;35784:799::-;35939:4;35960:15;:2;-1:-1:-1;;;;;35960:13:0;;:15::i;:::-;35956:620;;;36012:2;-1:-1:-1;;;;;35996:36:0;;36033:12;:10;:12::i;:::-;36047:4;36053:7;36062:5;35996:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35996:72:0;;;;;;;;-1:-1:-1;;35996:72:0;;;;;;;;;;;;:::i;:::-;;;35992:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36238:13:0;;36234:272;;36281:60;;-1:-1:-1;;;36281:60:0;;;;;;;:::i;36234:272::-;36456:6;36450:13;36441:6;36437:2;36433:15;36426:38;35992:529;-1:-1:-1;;;;;;36119:51:0;-1:-1:-1;;;36119:51:0;;-1:-1:-1;36112:58:0;;35956:620;-1:-1:-1;36560:4:0;35784:799;;;;;;:::o;41287:164::-;41391:10;:17;;41364:24;;;;:15;:24;;;;;:44;;;41419:24;;;;;;;;;;;;41287:164::o;42078:988::-;42344:22;42394:1;42369:22;42386:4;42369:16;:22::i;:::-;:26;;;;:::i;:::-;42406:18;42427:26;;;:17;:26;;;;;;42344:51;;-1:-1:-1;42560:28:0;;;42556:328;;-1:-1:-1;;;;;42627:18:0;;42605:19;42627:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42678:30;;;;;;:44;;;42795:30;;:17;:30;;;;;:43;;;42556:328;-1:-1:-1;42980:26:0;;;;:17;:26;;;;;;;;42973:33;;;-1:-1:-1;;;;;43024:18:0;;;;;:12;:18;;;;;:34;;;;;;;43017:41;42078:988::o;43361:1079::-;43639:10;:17;43614:22;;43639:21;;43659:1;;43639:21;:::i;:::-;43671:18;43692:24;;;:15;:24;;;;;;44065:10;:26;;43614:46;;-1:-1:-1;43692:24:0;;43614:46;;44065:26;;;;-1:-1:-1;;;44065:26:0;;;;;;;;;;;;;;;;;44043:48;;44129:11;44104:10;44115;44104:22;;;;;;-1:-1:-1;;;44104:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;44209:28;;;:15;:28;;;;;;;:41;;;44381:24;;;;;44374:31;44416:10;:16;;;;;-1:-1:-1;;;44416:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;43361:1079;;;;:::o;40865:221::-;40950:14;40967:20;40984:2;40967:16;:20::i;:::-;-1:-1:-1;;;;;40998:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41043:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40865:221:0:o;32584:382::-;-1:-1:-1;;;;;32664:16:0;;32656:61;;;;-1:-1:-1;;;32656:61:0;;;;;;;:::i;:::-;32737:16;32745:7;32737;:16::i;:::-;32736:17;32728:58;;;;-1:-1:-1;;;32728:58:0;;;;;;;:::i;:::-;32799:45;32828:1;32832:2;32836:7;32799:20;:45::i;:::-;-1:-1:-1;;;;;32857:13:0;;;;;;:9;:13;;;;;:18;;32874:1;;32857:13;:18;;32874:1;;32857:18;:::i;:::-;;;;-1:-1:-1;;32886:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32886:21:0;-1:-1:-1;;;;;32886:21:0;;;;;;;;32925:33;;32886:16;;;32925:33;;32886:16;;32925:33;32584:382;;:::o;6400:387::-;6723:20;6771:8;;;6400:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:339:1;;109:53;124:37;154:6;124:37;:::i;:::-;109:53;:::i;:::-;100:62;;185:6;178:5;171:21;225:3;216:6;211:3;207:16;204:25;201:2;;;242:1;239;232:12;201:2;291:6;286:3;279:4;272:5;268:16;255:43;345:1;338:4;329:6;322:5;318:18;314:29;307:40;90:263;;;;;:::o;358:175::-;428:20;;-1:-1:-1;;;;;477:31:1;;467:42;;457:2;;523:1;520;513:12;538:404;;;671:3;664:4;656:6;652:17;648:27;638:2;;696:8;686;679:26;638:2;-1:-1:-1;726:20:1;;769:18;758:30;;755:2;;;808:8;798;791:26;755:2;852:4;844:6;840:17;828:29;;915:3;908:4;900;892:6;888:17;880:6;876:30;872:41;869:50;866:2;;;932:1;929;922:12;866:2;628:314;;;;;:::o;947:162::-;1014:20;;1070:13;;1063:21;1053:32;;1043:2;;1099:1;1096;1089:12;1114:198;;1226:2;1214:9;1205:7;1201:23;1197:32;1194:2;;;1247:6;1239;1232:22;1194:2;1275:31;1296:9;1275:31;:::i;1317:274::-;;;1446:2;1434:9;1425:7;1421:23;1417:32;1414:2;;;1467:6;1459;1452:22;1414:2;1495:31;1516:9;1495:31;:::i;:::-;1485:41;;1545:40;1581:2;1570:9;1566:18;1545:40;:::i;:::-;1535:50;;1404:187;;;;;:::o;1596:342::-;;;;1742:2;1730:9;1721:7;1717:23;1713:32;1710:2;;;1763:6;1755;1748:22;1710:2;1791:31;1812:9;1791:31;:::i;:::-;1781:41;;1841:40;1877:2;1866:9;1862:18;1841:40;:::i;:::-;1831:50;;1928:2;1917:9;1913:18;1900:32;1890:42;;1700:238;;;;;:::o;1943:702::-;;;;;2115:3;2103:9;2094:7;2090:23;2086:33;2083:2;;;2137:6;2129;2122:22;2083:2;2165:31;2186:9;2165:31;:::i;:::-;2155:41;;2215:40;2251:2;2240:9;2236:18;2215:40;:::i;:::-;2205:50;;2302:2;2291:9;2287:18;2274:32;2264:42;;2357:2;2346:9;2342:18;2329:32;2384:18;2376:6;2373:30;2370:2;;;2421:6;2413;2406:22;2370:2;2449:22;;2502:4;2494:13;;2490:27;-1:-1:-1;2480:2:1;;2536:6;2528;2521:22;2480:2;2564:75;2631:7;2626:2;2613:16;2608:2;2604;2600:11;2564:75;:::i;:::-;2554:85;;;2073:572;;;;;;;:::o;2650:268::-;;;2776:2;2764:9;2755:7;2751:23;2747:32;2744:2;;;2797:6;2789;2782:22;2744:2;2825:31;2846:9;2825:31;:::i;:::-;2815:41;;2875:37;2908:2;2897:9;2893:18;2875:37;:::i;2923:266::-;;;3052:2;3040:9;3031:7;3027:23;3023:32;3020:2;;;3073:6;3065;3058:22;3020:2;3101:31;3122:9;3101:31;:::i;:::-;3091:41;3179:2;3164:18;;;;3151:32;;-1:-1:-1;;;3010:179:1:o;3194:814::-;;;;;3392:2;3380:9;3371:7;3367:23;3363:32;3360:2;;;3413:6;3405;3398:22;3360:2;3458:9;3445:23;3487:18;3528:2;3520:6;3517:14;3514:2;;;3549:6;3541;3534:22;3514:2;3593:76;3661:7;3652:6;3641:9;3637:22;3593:76;:::i;:::-;3688:8;;-1:-1:-1;3567:102:1;-1:-1:-1;3776:2:1;3761:18;;3748:32;;-1:-1:-1;3792:16:1;;;3789:2;;;3826:6;3818;3811:22;3789:2;;3870:78;3940:7;3929:8;3918:9;3914:24;3870:78;:::i;:::-;3350:658;;;;-1:-1:-1;3967:8:1;-1:-1:-1;;;;3350:658:1:o;4013:260::-;;;4139:2;4127:9;4118:7;4114:23;4110:32;4107:2;;;4160:6;4152;4145:22;4107:2;4188:28;4206:9;4188:28;:::i;4278:257::-;;4389:2;4377:9;4368:7;4364:23;4360:32;4357:2;;;4410:6;4402;4395:22;4357:2;4454:9;4441:23;4473:32;4499:5;4473:32;:::i;4540:261::-;;4662:2;4650:9;4641:7;4637:23;4633:32;4630:2;;;4683:6;4675;4668:22;4630:2;4720:9;4714:16;4739:32;4765:5;4739:32;:::i;4806:482::-;;4928:2;4916:9;4907:7;4903:23;4899:32;4896:2;;;4949:6;4941;4934:22;4896:2;4994:9;4981:23;5027:18;5019:6;5016:30;5013:2;;;5064:6;5056;5049:22;5013:2;5092:22;;5145:4;5137:13;;5133:27;-1:-1:-1;5123:2:1;;5179:6;5171;5164:22;5123:2;5207:75;5274:7;5269:2;5256:16;5251:2;5247;5243:11;5207:75;:::i;5293:676::-;;5426:2;5414:9;5405:7;5401:23;5397:32;5394:2;;;5447:6;5439;5432:22;5394:2;5485:9;5479:16;5518:18;5510:6;5507:30;5504:2;;;5555:6;5547;5540:22;5504:2;5583:22;;5636:4;5628:13;;5624:27;-1:-1:-1;5614:2:1;;5670:6;5662;5655:22;5614:2;5704;5698:9;5729:49;5744:33;5774:2;5744:33;:::i;5729:49::-;5801:2;5794:5;5787:17;5841:7;5836:2;5831;5827;5823:11;5819:20;5816:33;5813:2;;;5867:6;5859;5852:22;5813:2;5885:54;5936:2;5931;5924:5;5920:14;5915:2;5911;5907:11;5885:54;:::i;:::-;5958:5;5384:585;-1:-1:-1;;;;;5384:585:1:o;5974:292::-;;6085:2;6073:9;6064:7;6060:23;6056:32;6053:2;;;6106:6;6098;6091:22;6053:2;6150:9;6137:23;6200:6;6193:5;6189:18;6182:5;6179:29;6169:2;;6227:6;6219;6212:22;6271:190;;6383:2;6371:9;6362:7;6358:23;6354:32;6351:2;;;6404:6;6396;6389:22;6351:2;-1:-1:-1;6432:23:1;;6341:120;-1:-1:-1;6341:120:1:o;6466:194::-;;6589:2;6577:9;6568:7;6564:23;6560:32;6557:2;;;6610:6;6602;6595:22;6557:2;-1:-1:-1;6638:16:1;;6547:113;-1:-1:-1;6547:113:1:o;6665:259::-;;6746:5;6740:12;6773:6;6768:3;6761:19;6789:63;6845:6;6838:4;6833:3;6829:14;6822:4;6815:5;6811:16;6789:63;:::i;:::-;6906:2;6885:15;-1:-1:-1;;6881:29:1;6872:39;;;;6913:4;6868:50;;6716:208;-1:-1:-1;;6716:208:1:o;6929:1532::-;;7191:6;7185:13;7217:4;7230:51;7274:6;7269:3;7264:2;7256:6;7252:15;7230:51;:::i;:::-;7344:13;;7303:16;;;;7366:55;7344:13;7303:16;7388:15;;;7366:55;:::i;:::-;7512:13;;7443:20;;;7483:3;;7589:1;7574:17;;7610:1;7646:18;;;;7673:2;;7751:4;7741:8;7737:19;7725:31;;7673:2;7814;7804:8;7801:16;7781:18;7778:40;7775:2;;;-1:-1:-1;;;7841:33:1;;7897:4;7894:1;7887:15;7927:4;7848:3;7915:17;7775:2;7958:18;7985:110;;;;8109:1;8104:332;;;;7951:485;;7985:110;-1:-1:-1;;8020:24:1;;8006:39;;8065:20;;;;-1:-1:-1;7985:110:1;;8104:332;8140:39;8172:6;8140:39;:::i;:::-;8201:3;8217:169;8231:8;8228:1;8225:15;8217:169;;;8313:14;;8298:13;;;8291:37;8356:16;;;;8248:10;;8217:169;;;8221:3;;8417:8;8410:5;8406:20;8399:27;;7951:485;-1:-1:-1;8452:3:1;;7161:1300;-1:-1:-1;;;;;;;;;;;7161:1300:1:o;8466:203::-;-1:-1:-1;;;;;8630:32:1;;;;8612:51;;8600:2;8585:18;;8567:102::o;8674:490::-;-1:-1:-1;;;;;8943:15:1;;;8925:34;;8995:15;;8990:2;8975:18;;8968:43;9042:2;9027:18;;9020:34;;;9090:3;9085:2;9070:18;;9063:31;;;8674:490;;9111:47;;9138:19;;9130:6;9111:47;:::i;:::-;9103:55;8877:287;-1:-1:-1;;;;;;8877:287:1:o;9169:635::-;9340:2;9392:21;;;9462:13;;9365:18;;;9484:22;;;9169:635;;9340:2;9563:15;;;;9537:2;9522:18;;;9169:635;9609:169;9623:6;9620:1;9617:13;9609:169;;;9684:13;;9672:26;;9753:15;;;;9718:12;;;;9645:1;9638:9;9609:169;;;-1:-1:-1;9795:3:1;;9320:484;-1:-1:-1;;;;;;9320:484:1:o;9809:187::-;9974:14;;9967:22;9949:41;;9937:2;9922:18;;9904:92::o;10001:221::-;;10150:2;10139:9;10132:21;10170:46;10212:2;10201:9;10197:18;10189:6;10170:46;:::i;10227:407::-;10429:2;10411:21;;;10468:2;10448:18;;;10441:30;10507:34;10502:2;10487:18;;10480:62;-1:-1:-1;;;10573:2:1;10558:18;;10551:41;10624:3;10609:19;;10401:233::o;10639:414::-;10841:2;10823:21;;;10880:2;10860:18;;;10853:30;10919:34;10914:2;10899:18;;10892:62;-1:-1:-1;;;10985:2:1;10970:18;;10963:48;11043:3;11028:19;;10813:240::o;11058:402::-;11260:2;11242:21;;;11299:2;11279:18;;;11272:30;11338:34;11333:2;11318:18;;11311:62;-1:-1:-1;;;11404:2:1;11389:18;;11382:36;11450:3;11435:19;;11232:228::o;11465:352::-;11667:2;11649:21;;;11706:2;11686:18;;;11679:30;11745;11740:2;11725:18;;11718:58;11808:2;11793:18;;11639:178::o;11822:400::-;12024:2;12006:21;;;12063:2;12043:18;;;12036:30;12102:34;12097:2;12082:18;;12075:62;-1:-1:-1;;;12168:2:1;12153:18;;12146:34;12212:3;12197:19;;11996:226::o;12227:349::-;12429:2;12411:21;;;12468:2;12448:18;;;12441:30;12507:27;12502:2;12487:18;;12480:55;12567:2;12552:18;;12401:175::o;12581:408::-;12783:2;12765:21;;;12822:2;12802:18;;;12795:30;12861:34;12856:2;12841:18;;12834:62;-1:-1:-1;;;12927:2:1;12912:18;;12905:42;12979:3;12964:19;;12755:234::o;12994:420::-;13196:2;13178:21;;;13235:2;13215:18;;;13208:30;13274:34;13269:2;13254:18;;13247:62;13345:26;13340:2;13325:18;;13318:54;13404:3;13389:19;;13168:246::o;13419:406::-;13621:2;13603:21;;;13660:2;13640:18;;;13633:30;13699:34;13694:2;13679:18;;13672:62;-1:-1:-1;;;13765:2:1;13750:18;;13743:40;13815:3;13800:19;;13593:232::o;13830:405::-;14032:2;14014:21;;;14071:2;14051:18;;;14044:30;14110:34;14105:2;14090:18;;14083:62;-1:-1:-1;;;14176:2:1;14161:18;;14154:39;14225:3;14210:19;;14004:231::o;14240:356::-;14442:2;14424:21;;;14461:18;;;14454:30;14520:34;14515:2;14500:18;;14493:62;14587:2;14572:18;;14414:182::o;14601:408::-;14803:2;14785:21;;;14842:2;14822:18;;;14815:30;14881:34;14876:2;14861:18;;14854:62;-1:-1:-1;;;14947:2:1;14932:18;;14925:42;14999:3;14984:19;;14775:234::o;15014:356::-;15216:2;15198:21;;;15235:18;;;15228:30;15294:34;15289:2;15274:18;;15267:62;15361:2;15346:18;;15188:182::o;15375:405::-;15577:2;15559:21;;;15616:2;15596:18;;;15589:30;15655:34;15650:2;15635:18;;15628:62;-1:-1:-1;;;15721:2:1;15706:18;;15699:39;15770:3;15755:19;;15549:231::o;15785:411::-;15987:2;15969:21;;;16026:2;16006:18;;;15999:30;16065:34;16060:2;16045:18;;16038:62;-1:-1:-1;;;16131:2:1;16116:18;;16109:45;16186:3;16171:19;;15959:237::o;16201:397::-;16403:2;16385:21;;;16442:2;16422:18;;;16415:30;16481:34;16476:2;16461:18;;16454:62;-1:-1:-1;;;16547:2:1;16532:18;;16525:31;16588:3;16573:19;;16375:223::o;16603:413::-;16805:2;16787:21;;;16844:2;16824:18;;;16817:30;16883:34;16878:2;16863:18;;16856:62;-1:-1:-1;;;16949:2:1;16934:18;;16927:47;17006:3;16991:19;;16777:239::o;17021:408::-;17223:2;17205:21;;;17262:2;17242:18;;;17235:30;17301:34;17296:2;17281:18;;17274:62;-1:-1:-1;;;17367:2:1;17352:18;;17345:42;17419:3;17404:19;;17195:234::o;17434:177::-;17580:25;;;17568:2;17553:18;;17535:76::o;17616:248::-;17790:25;;;17846:2;17831:18;;17824:34;17778:2;17763:18;;17745:119::o;17869:251::-;17939:2;17933:9;17969:17;;;18016:18;18001:34;;18037:22;;;17998:62;17995:2;;;18063:18;;:::i;:::-;18099:2;18092:22;17913:207;;-1:-1:-1;17913:207:1:o;18125:190::-;;18208:18;18200:6;18197:30;18194:2;;;18230:18;;:::i;:::-;-1:-1:-1;18298:2:1;18275:17;-1:-1:-1;;18271:31:1;18304:4;18267:42;;18184:131::o;18320:129::-;;18388:17;;;18438:4;18422:21;;;18378:71::o;18454:128::-;;18525:1;18521:6;18518:1;18515:13;18512:2;;;18531:18;;:::i;:::-;-1:-1:-1;18567:9:1;;18502:80::o;18587:120::-;;18653:1;18643:2;;18658:18;;:::i;:::-;-1:-1:-1;18692:9:1;;18633:74::o;18712:168::-;;18818:1;18814;18810:6;18806:14;18803:1;18800:21;18795:1;18788:9;18781:17;18777:45;18774:2;;;18825:18;;:::i;:::-;-1:-1:-1;18865:9:1;;18764:116::o;18885:125::-;;18953:1;18950;18947:8;18944:2;;;18958:18;;:::i;:::-;-1:-1:-1;18995:9:1;;18934:76::o;19015:258::-;19087:1;19097:113;19111:6;19108:1;19105:13;19097:113;;;19187:11;;;19181:18;19168:11;;;19161:39;19133:2;19126:10;19097:113;;;19228:6;19225:1;19222:13;19219:2;;;-1:-1:-1;;19263:1:1;19245:16;;19238:27;19068:205::o;19278:380::-;19363:1;19353:12;;19410:1;19400:12;;;19421:2;;19475:4;19467:6;19463:17;19453:27;;19421:2;19528;19520:6;19517:14;19497:18;19494:38;19491:2;;;19574:10;19569:3;19565:20;19562:1;19555:31;19609:4;19606:1;19599:15;19637:4;19634:1;19627:15;19491:2;;19333:325;;;:::o;19663:135::-;;-1:-1:-1;;19723:17:1;;19720:2;;;19743:18;;:::i;:::-;-1:-1:-1;19790:1:1;19779:13;;19710:88::o;19803:112::-;;19861:1;19851:2;;19866:18;;:::i;:::-;-1:-1:-1;19900:9:1;;19841:74::o;19920:127::-;19981:10;19976:3;19972:20;19969:1;19962:31;20012:4;20009:1;20002:15;20036:4;20033:1;20026:15;20052:127;20113:10;20108:3;20104:20;20101:1;20094:31;20144:4;20141:1;20134:15;20168:4;20165:1;20158:15;20184:127;20245:10;20240:3;20236:20;20233:1;20226:31;20276:4;20273:1;20266:15;20300:4;20297:1;20290:15;20316:133;-1:-1:-1;;;;;;20392:32:1;;20382:43;;20372:2;;20439:1;20436;20429:12

Swarm Source

ipfs://7ba90597b7b0e804296c28f2d975dbe84f49c749f29aa3d74b01e04ff51756cd
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.