ETH Price: $2,941.09 (-6.06%)
Gas: 8 Gwei

Token

WenGoblin (wengoblin)
 

Overview

Max Total Supply

293 wengoblin

Holders

25

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
aydex.eth
Balance
10 wengoblin
0x9b0890ad3342d4d8fbee64dd4bc9797cfb4bde73
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:
WenGoblin

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-03
*/

// SPDX-License-Identifier: MIT
// Creator: Chiru Labs


// OpenZeppelin Contracts v4.4.1 (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.1 (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.1 (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.1 (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.1 (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.1 (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.1 (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.1 (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.1 (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.1 (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: contracts/LowerGas.sol


// Creator: Chiru Labs


pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, 'ERC721A: max batch size must be nonzero');
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity <= maxBatchSize, 'ERC721A: quantity to mint too high');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

pragma solidity ^0.8.14;

contract WenGoblin is ERC721A, Ownable {
  using Strings for uint256;
  
  uint256 public mintPrice = 0.01 ether;

  uint256 public mintMany1Price = 0;
  uint256 public mintMany1Qty = 1;

  uint256 public mintMany2Price = 0.0211 ether;
  uint256 public mintMany2Qty = 4;

  uint256 public mintMany3Price = 0.0411 ether;
  uint256 public mintMany3Qty = 10;

  uint256 public maxSupply = 12121;
  uint256 public maxFreeMint = 3000;
  uint256 public freeMintPerWallet = 9;
  uint256 public oneFreeX = 0;

  string public baseTokenURI = "https://gateway.pinata.cloud/ipfs/Qmck6GhGAFFMq3E1zFrRQFPMSjpCjoWPeyoemyNFa6ryCk/";
  string public hiddenURI = "";

  bool public openMint = true;
  bool public revealed = true;

  mapping(address => uint256) public addressMintedBalance;

  constructor() ERC721A("WenGoblin", "wengoblin", 100) {  }

  function mint(uint256 _mintAmount) external payable {
    require(openMint, "The contract is not open to mint yet!");
    uint256 _mintPrice = currentMintPrice();

    if(currentIndex < maxFreeMint) {
        require(balanceOf(_msgSender()) < freeMintPerWallet, "Max free mint exceeded!");
        _mintAmount = freeMintPerWallet;
    }
    require(msg.value >= _mintPrice * _mintAmount, "Insufficient funds!");

    if(currentIndex >= maxFreeMint && oneFreeX > 0) {
        _mintAmount = _mintAmount * oneFreeX;
    }
    require(currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!");

    _safeMint(msg.sender, _mintAmount);
  }
  
  function mintMany(uint256 _mintManySet) external payable {
    require(openMint, "The contract is not open to mint yet!");

    uint256 _mintPrice = mintMany1Price;
    uint256 _mintAmount = mintMany1Qty;

    if(_mintManySet == 2) {
        _mintPrice = mintMany2Price;
        _mintAmount = mintMany2Qty;
    }
    else if(_mintManySet == 3) {
        _mintPrice = mintMany3Price;
        _mintAmount = mintMany3Qty;
    }

    require(msg.value >= _mintPrice, "Insufficient funds!");
    require(currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!");

    _safeMint(msg.sender, _mintAmount);
  }

  function mintManyPrice(uint256 _mintManySet) public view virtual returns (uint256)
  {
    uint256 _mintPrice = mintMany1Price;

    if(_mintManySet == 2) {
        _mintPrice = mintMany2Price;
    }
    else if(_mintManySet == 3) {
        _mintPrice = mintMany3Price;
    }

    return _mintPrice;
  }

  function currentMintPrice() public view virtual returns (uint256)
  {
    uint256 _mintPrice = mintPrice;

    if(currentIndex < maxFreeMint){
       _mintPrice = 0;
    }

    return _mintPrice;
  }

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

    if (revealed == false) {
      return hiddenURI;
    }

    return string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId), ".json"));
  }

  function withdraw() external onlyOwner {
    payable(owner()).transfer(address(this).balance);
  }


  function setMintMany(uint256 _mintManySet, uint256 _mintprice, uint256 _mintQty) public onlyOwner {
    if(_mintManySet == 1) {
        mintMany1Price = _mintprice;
        mintMany1Qty = _mintQty;
    }
    else if(_mintManySet == 2) {
        mintMany2Price = _mintprice;
        mintMany2Qty = _mintQty;
    }
  }

  function setMaxFreeMint(uint256 _maxFreeMint) public onlyOwner {
    maxFreeMint = _maxFreeMint;
  }
  function setFreeMintPerWallet(uint256 _freeMintPerWallet) public onlyOwner {
    freeMintPerWallet = _freeMintPerWallet;
  }
  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }
  function setOneFreeX(uint256 _oneFreeX) public onlyOwner {
    oneFreeX = _oneFreeX;
  }

  function setOpenMint(bool _state) public onlyOwner {
    openMint = _state;
  }

  function setPrice(uint256 _price) public onlyOwner {
    mintPrice = _price;
  }

  function setBaseUri(string memory _uri) external onlyOwner {
    baseTokenURI = _uri;
  }
  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }
  function setHiddenUri(string memory _uri) external onlyOwner {
    hiddenURI = _uri;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintPerWallet","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":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintManySet","type":"uint256"}],"name":"mintMany","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintMany1Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintMany1Qty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintMany2Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintMany2Qty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintMany3Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintMany3Qty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintManySet","type":"uint256"}],"name":"mintManyPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","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":"oneFreeX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMint","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintPerWallet","type":"uint256"}],"name":"setFreeMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMint","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintManySet","type":"uint256"},{"internalType":"uint256","name":"_mintprice","type":"uint256"},{"internalType":"uint256","name":"_mintQty","type":"uint256"}],"name":"setMintMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_oneFreeX","type":"uint256"}],"name":"setOneFreeX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOpenMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000808055662386f26fc1000060085560098181556001600a908155664af65694c2c000600b556004600c556692043b7444c000600d55600e55612f59600f55610bb8601055601155601255610120604052605160a08181529062002c5460c03980516200007691601391602090910190620001f5565b506040805160208101918290526000908190526200009791601491620001f5565b506015805461ffff1916610101179055348015620000b457600080fd5b50604051806040016040528060098152602001682bb2b723b7b13634b760b91b815250604051806040016040528060098152602001683bb2b733b7b13634b760b91b815250606460008111620001605760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b825162000175906001906020860190620001f5565b5081516200018b906002906020850190620001f5565b50608052506200019d905033620001a3565b620002d7565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000203906200029b565b90600052602060002090601f01602090048101928262000227576000855562000272565b82601f106200024257805160ff191683800117855562000272565b8280016001018555821562000272579182015b828111156200027257825182559160200191906001019062000255565b506200028092915062000284565b5090565b5b8082111562000280576000815560010162000285565b600181811c90821680620002b057607f821691505b602082108103620002d157634e487b7160e01b600052602260045260246000fd5b50919050565b6080516129536200030160003960008181611b3401528181611b5e0152611f6e01526129536000f3fe6080604052600436106102c95760003560e01c80638cc54e7f11610175578063c1ab22ec116100dc578063e0a8085311610095578063e70dd3b71161006f578063e70dd3b714610806578063e985e9c51461081c578063ec0909a214610865578063f2fde38b1461088557600080fd5b8063e0a80853146107b0578063e19a5dc4146107d0578063e2af30f4146107e657600080fd5b8063c1ab22ec14610719578063c65778ca1461072f578063c87b56dd14610745578063d547cfb714610765578063d5abeb011461077a578063dff2ec671461079057600080fd5b8063a0bcfc7f1161012e578063a0bcfc7f14610673578063a22cb46514610693578063a591252d146106b3578063ac9014da146106c9578063b88d4fde146106df578063bce6d672146106ff57600080fd5b80638cc54e7f146105e25780638da5cb5b146105f75780638f3fc1671461061557806391b7f5ed1461062b57806395d89b411461064b578063a0712d681461066057600080fd5b80632f745c591161023457806351830227116101ed5780636f8b44b0116101c75780636f8b44b01461056d57806370a082311461058d578063715018a6146105ad578063742a4c9b146105c257600080fd5b806351830227146105185780636352211e146105375780636817c76c1461055757600080fd5b80632f745c591461046d5780633ba22ff61461048d5780633ccfd60b146104a357806342842e0e146104b8578063491764e3146104d85780634f6ccce7146104f857600080fd5b8063095ea7b311610286578063095ea7b3146103b55780631067fcc7146103d557806318160ddd146103f557806318cae2691461040a5780631afc4ecd1461043757806323b872dd1461044d57600080fd5b806301ffc9a7146102ce5780630426c1fa146103035780630561942a14610325578063059513a61461034857806306fdde031461035b578063081812fc1461037d575b600080fd5b3480156102da57600080fd5b506102ee6102e936600461228e565b6108a5565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b5061032361031e3660046122b2565b610912565b005b34801561033157600080fd5b5061033a61094a565b6040519081526020016102fa565b6103236103563660046122b2565b610967565b34801561036757600080fd5b50610370610a61565b6040516102fa9190612323565b34801561038957600080fd5b5061039d6103983660046122b2565b610af3565b6040516001600160a01b0390911681526020016102fa565b3480156103c157600080fd5b506103236103d036600461234d565b610b7e565b3480156103e157600080fd5b506103236103f0366004612403565b610c90565b34801561040157600080fd5b5060005461033a565b34801561041657600080fd5b5061033a61042536600461244c565b60166020526000908152604090205481565b34801561044357600080fd5b5061033a600e5481565b34801561045957600080fd5b50610323610468366004612467565b610cd1565b34801561047957600080fd5b5061033a61048836600461234d565b610cdc565b34801561049957600080fd5b5061033a600a5481565b3480156104af57600080fd5b50610323610e48565b3480156104c457600080fd5b506103236104d3366004612467565b610eae565b3480156104e457600080fd5b5061033a6104f33660046122b2565b610ec9565b34801561050457600080fd5b5061033a6105133660046122b2565b610ef3565b34801561052457600080fd5b506015546102ee90610100900460ff1681565b34801561054357600080fd5b5061039d6105523660046122b2565b610f55565b34801561056357600080fd5b5061033a60085481565b34801561057957600080fd5b506103236105883660046122b2565b610f67565b34801561059957600080fd5b5061033a6105a836600461244c565b610f96565b3480156105b957600080fd5b50610323611027565b3480156105ce57600080fd5b506103236105dd3660046122b2565b61105d565b3480156105ee57600080fd5b5061037061108c565b34801561060357600080fd5b506007546001600160a01b031661039d565b34801561062157600080fd5b5061033a60125481565b34801561063757600080fd5b506103236106463660046122b2565b61111a565b34801561065757600080fd5b50610370611149565b61032361066e3660046122b2565b611158565b34801561067f57600080fd5b5061032361068e366004612403565b6112cb565b34801561069f57600080fd5b506103236106ae3660046124b3565b611308565b3480156106bf57600080fd5b5061033a60105481565b3480156106d557600080fd5b5061033a600b5481565b3480156106eb57600080fd5b506103236106fa3660046124e6565b6113cc565b34801561070b57600080fd5b506015546102ee9060ff1681565b34801561072557600080fd5b5061033a60115481565b34801561073b57600080fd5b5061033a60095481565b34801561075157600080fd5b506103706107603660046122b2565b611405565b34801561077157600080fd5b5061037061154e565b34801561078657600080fd5b5061033a600f5481565b34801561079c57600080fd5b506103236107ab3660046122b2565b61155b565b3480156107bc57600080fd5b506103236107cb366004612562565b61158a565b3480156107dc57600080fd5b5061033a600d5481565b3480156107f257600080fd5b50610323610801366004612562565b6115ce565b34801561081257600080fd5b5061033a600c5481565b34801561082857600080fd5b506102ee61083736600461257d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561087157600080fd5b506103236108803660046125a7565b61160b565b34801561089157600080fd5b506103236108a036600461244c565b61165d565b60006001600160e01b031982166380ac58cd60e01b14806108d657506001600160e01b03198216635b5e139f60e01b145b806108f157506001600160e01b0319821663780e9d6360e01b145b8061090c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146109455760405162461bcd60e51b815260040161093c906125d3565b60405180910390fd5b601155565b60008060085490506010546000541015610962575060005b919050565b60155460ff166109895760405162461bcd60e51b815260040161093c90612608565b600954600a5460028390036109a5575050600b54600c546109b6565b826003036109b6575050600d54600e545b813410156109fc5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161093c565b600f5481600054610a0d9190612663565b1115610a525760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161093c565b610a5c33826116f5565b505050565b606060018054610a709061267b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9c9061267b565b8015610ae95780601f10610abe57610100808354040283529160200191610ae9565b820191906000526020600020905b815481529060010190602001808311610acc57829003601f168201915b5050505050905090565b6000610b00826000541190565b610b625760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161093c565b506000908152600560205260409020546001600160a01b031690565b6000610b8982610f55565b9050806001600160a01b0316836001600160a01b031603610bf75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161093c565b336001600160a01b0382161480610c135750610c138133610837565b610c855760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161093c565b610a5c83838361170f565b6007546001600160a01b03163314610cba5760405162461bcd60e51b815260040161093c906125d3565b8051610ccd9060149060208401906121e8565b5050565b610a5c83838361176b565b6000610ce783610f96565b8210610d405760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161093c565b600080549080805b83811015610de8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d9b57805192505b876001600160a01b0316836001600160a01b031603610dd557868403610dc75750935061090c92505050565b83610dd1816126b5565b9450505b5080610de0816126b5565b915050610d48565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161093c565b6007546001600160a01b03163314610e725760405162461bcd60e51b815260040161093c906125d3565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610eab573d6000803e3d6000fd5b50565b610a5c838383604051806020016040528060008152506113cc565b6009546000906002839003610ee15750600b5461090c565b8260030361090c5750600d5492915050565b600080548210610f515760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161093c565b5090565b6000610f6082611ab2565b5192915050565b6007546001600160a01b03163314610f915760405162461bcd60e51b815260040161093c906125d3565b600f55565b60006001600160a01b0382166110025760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161093c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146110515760405162461bcd60e51b815260040161093c906125d3565b61105b6000611c5c565b565b6007546001600160a01b031633146110875760405162461bcd60e51b815260040161093c906125d3565b601055565b601480546110999061267b565b80601f01602080910402602001604051908101604052809291908181526020018280546110c59061267b565b80156111125780601f106110e757610100808354040283529160200191611112565b820191906000526020600020905b8154815290600101906020018083116110f557829003601f168201915b505050505081565b6007546001600160a01b031633146111445760405162461bcd60e51b815260040161093c906125d3565b600855565b606060028054610a709061267b565b60155460ff1661117a5760405162461bcd60e51b815260040161093c90612608565b600061118461094a565b905060105460005410156111f15760115461119e33610f96565b106111eb5760405162461bcd60e51b815260206004820152601760248201527f4d61782066726565206d696e7420657863656564656421000000000000000000604482015260640161093c565b60115491505b6111fb82826126ce565b3410156112405760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161093c565b6010546000541015801561125657506000601254115b1561126b5760125461126890836126ce565b91505b600f548260005461127c9190612663565b11156112c15760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161093c565b610ccd33836116f5565b6007546001600160a01b031633146112f55760405162461bcd60e51b815260040161093c906125d3565b8051610ccd9060139060208401906121e8565b336001600160a01b038316036113605760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161093c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113d784848461176b565b6113e384848484611cae565b6113ff5760405162461bcd60e51b815260040161093c906126ed565b50505050565b6060611412826000541190565b6114765760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093c565b601554610100900460ff16151560000361151c57601480546114979061267b565b80601f01602080910402602001604051908101604052809291908181526020018280546114c39061267b565b80156115105780601f106114e557610100808354040283529160200191611510565b820191906000526020600020905b8154815290600101906020018083116114f357829003601f168201915b50505050509050919050565b601361152783611db0565b60405160200161153892919061275c565b6040516020818303038152906040529050919050565b601380546110999061267b565b6007546001600160a01b031633146115855760405162461bcd60e51b815260040161093c906125d3565b601255565b6007546001600160a01b031633146115b45760405162461bcd60e51b815260040161093c906125d3565b601580549115156101000261ff0019909216919091179055565b6007546001600160a01b031633146115f85760405162461bcd60e51b815260040161093c906125d3565b6015805460ff1916911515919091179055565b6007546001600160a01b031633146116355760405162461bcd60e51b815260040161093c906125d3565b8260010361164957600991909155600a5550565b82600203610a5c57600b91909155600c5550565b6007546001600160a01b031633146116875760405162461bcd60e51b815260040161093c906125d3565b6001600160a01b0381166116ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093c565b610eab81611c5c565b610ccd828260405180602001604052806000815250611eb1565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061177682611ab2565b80519091506000906001600160a01b0316336001600160a01b031614806117ad5750336117a284610af3565b6001600160a01b0316145b806117bf575081516117bf9033610837565b9050806118295760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161093c565b846001600160a01b031682600001516001600160a01b03161461189d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161093c565b6001600160a01b0384166119015760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161093c565b611911600084846000015161170f565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906119d6908590612663565b6000818152600360205260409020549091506001600160a01b0316611a6857611a00816000541190565b15611a685760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611ad1826000541190565b611b305760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161093c565b60007f00000000000000000000000000000000000000000000000000000000000000008310611b9157611b837f000000000000000000000000000000000000000000000000000000000000000084612816565b611b8e906001612663565b90505b825b818110611bfb576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611be857949350505050565b5080611bf38161282d565b915050611b93565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161093c565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611da457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cf2903390899088908890600401612844565b6020604051808303816000875af1925050508015611d2d575060408051601f3d908101601f19168201909252611d2a91810190612881565b60015b611d8a573d808015611d5b576040519150601f19603f3d011682016040523d82523d6000602084013e611d60565b606091505b508051600003611d825760405162461bcd60e51b815260040161093c906126ed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611da8565b5060015b949350505050565b606081600003611dd75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e015780611deb816126b5565b9150611dfa9050600a836128b4565b9150611ddb565b60008167ffffffffffffffff811115611e1c57611e1c612377565b6040519080825280601f01601f191660200182016040528015611e46576020820181803683370190505b5090505b8415611da857611e5b600183612816565b9150611e68600a866128c8565b611e73906030612663565b60f81b818381518110611e8857611e886128dc565b60200101906001600160f81b031916908160001a905350611eaa600a866128b4565b9450611e4a565b6000546001600160a01b038416611f145760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161093c565b611f1f816000541190565b15611f6c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161093c565b7f0000000000000000000000000000000000000000000000000000000000000000831115611fe75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161093c565b600083116120435760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b606482015260840161093c565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061209f9087906128f2565b6001600160801b031681526020018583602001516120bd91906128f2565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121dd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121a16000888488611cae565b6121bd5760405162461bcd60e51b815260040161093c906126ed565b816121c7816126b5565b92505080806121d5906126b5565b915050612154565b506000819055611aaa565b8280546121f49061267b565b90600052602060002090601f016020900481019282612216576000855561225c565b82601f1061222f57805160ff191683800117855561225c565b8280016001018555821561225c579182015b8281111561225c578251825591602001919060010190612241565b50610f519291505b80821115610f515760008155600101612264565b6001600160e01b031981168114610eab57600080fd5b6000602082840312156122a057600080fd5b81356122ab81612278565b9392505050565b6000602082840312156122c457600080fd5b5035919050565b60005b838110156122e65781810151838201526020016122ce565b838111156113ff5750506000910152565b6000815180845261230f8160208601602086016122cb565b601f01601f19169290920160200192915050565b6020815260006122ab60208301846122f7565b80356001600160a01b038116811461096257600080fd5b6000806040838503121561236057600080fd5b61236983612336565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123a8576123a8612377565b604051601f8501601f19908116603f011681019082821181831017156123d0576123d0612377565b816040528093508581528686860111156123e957600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561241557600080fd5b813567ffffffffffffffff81111561242c57600080fd5b8201601f8101841361243d57600080fd5b611da88482356020840161238d565b60006020828403121561245e57600080fd5b6122ab82612336565b60008060006060848603121561247c57600080fd5b61248584612336565b925061249360208501612336565b9150604084013590509250925092565b8035801515811461096257600080fd5b600080604083850312156124c657600080fd5b6124cf83612336565b91506124dd602084016124a3565b90509250929050565b600080600080608085870312156124fc57600080fd5b61250585612336565b935061251360208601612336565b925060408501359150606085013567ffffffffffffffff81111561253657600080fd5b8501601f8101871361254757600080fd5b6125568782356020840161238d565b91505092959194509250565b60006020828403121561257457600080fd5b6122ab826124a3565b6000806040838503121561259057600080fd5b61259983612336565b91506124dd60208401612336565b6000806000606084860312156125bc57600080fd5b505081359360208301359350604090920135919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f54686520636f6e7472616374206973206e6f74206f70656e20746f206d696e74604082015264207965742160d81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156126765761267661264d565b500190565b600181811c9082168061268f57607f821691505b6020821081036126af57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600182016126c7576126c761264d565b5060010190565b60008160001904831182151516156126e8576126e861264d565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516127528185602086016122cb565b9290920192915050565b600080845481600182811c91508083168061277857607f831692505b6020808410820361279757634e487b7160e01b86526022600452602486fd5b8180156127ab57600181146127bc576127e9565b60ff198616895284890196506127e9565b60008b81526020902060005b868110156127e15781548b8201529085019083016127c8565b505084890196505b50505050505061280d6127fc8286612740565b64173539b7b760d91b815260050190565b95945050505050565b6000828210156128285761282861264d565b500390565b60008161283c5761283c61264d565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612877908301846122f7565b9695505050505050565b60006020828403121561289357600080fd5b81516122ab81612278565b634e487b7160e01b600052601260045260246000fd5b6000826128c3576128c361289e565b500490565b6000826128d7576128d761289e565b500690565b634e487b7160e01b600052603260045260246000fd5b60006001600160801b038083168185168083038211156129145761291461264d565b0194935050505056fea2646970667358221220dc9e225c9cdd024ce0fc9d5d19c54e37386ee576f8b51621eac6edcc27ba7f2064736f6c634300080e003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d636b364768474146464d713345317a4672525146504d536a70436a6f575065796f656d794e4661367279436b2f

Deployed Bytecode

0x6080604052600436106102c95760003560e01c80638cc54e7f11610175578063c1ab22ec116100dc578063e0a8085311610095578063e70dd3b71161006f578063e70dd3b714610806578063e985e9c51461081c578063ec0909a214610865578063f2fde38b1461088557600080fd5b8063e0a80853146107b0578063e19a5dc4146107d0578063e2af30f4146107e657600080fd5b8063c1ab22ec14610719578063c65778ca1461072f578063c87b56dd14610745578063d547cfb714610765578063d5abeb011461077a578063dff2ec671461079057600080fd5b8063a0bcfc7f1161012e578063a0bcfc7f14610673578063a22cb46514610693578063a591252d146106b3578063ac9014da146106c9578063b88d4fde146106df578063bce6d672146106ff57600080fd5b80638cc54e7f146105e25780638da5cb5b146105f75780638f3fc1671461061557806391b7f5ed1461062b57806395d89b411461064b578063a0712d681461066057600080fd5b80632f745c591161023457806351830227116101ed5780636f8b44b0116101c75780636f8b44b01461056d57806370a082311461058d578063715018a6146105ad578063742a4c9b146105c257600080fd5b806351830227146105185780636352211e146105375780636817c76c1461055757600080fd5b80632f745c591461046d5780633ba22ff61461048d5780633ccfd60b146104a357806342842e0e146104b8578063491764e3146104d85780634f6ccce7146104f857600080fd5b8063095ea7b311610286578063095ea7b3146103b55780631067fcc7146103d557806318160ddd146103f557806318cae2691461040a5780631afc4ecd1461043757806323b872dd1461044d57600080fd5b806301ffc9a7146102ce5780630426c1fa146103035780630561942a14610325578063059513a61461034857806306fdde031461035b578063081812fc1461037d575b600080fd5b3480156102da57600080fd5b506102ee6102e936600461228e565b6108a5565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b5061032361031e3660046122b2565b610912565b005b34801561033157600080fd5b5061033a61094a565b6040519081526020016102fa565b6103236103563660046122b2565b610967565b34801561036757600080fd5b50610370610a61565b6040516102fa9190612323565b34801561038957600080fd5b5061039d6103983660046122b2565b610af3565b6040516001600160a01b0390911681526020016102fa565b3480156103c157600080fd5b506103236103d036600461234d565b610b7e565b3480156103e157600080fd5b506103236103f0366004612403565b610c90565b34801561040157600080fd5b5060005461033a565b34801561041657600080fd5b5061033a61042536600461244c565b60166020526000908152604090205481565b34801561044357600080fd5b5061033a600e5481565b34801561045957600080fd5b50610323610468366004612467565b610cd1565b34801561047957600080fd5b5061033a61048836600461234d565b610cdc565b34801561049957600080fd5b5061033a600a5481565b3480156104af57600080fd5b50610323610e48565b3480156104c457600080fd5b506103236104d3366004612467565b610eae565b3480156104e457600080fd5b5061033a6104f33660046122b2565b610ec9565b34801561050457600080fd5b5061033a6105133660046122b2565b610ef3565b34801561052457600080fd5b506015546102ee90610100900460ff1681565b34801561054357600080fd5b5061039d6105523660046122b2565b610f55565b34801561056357600080fd5b5061033a60085481565b34801561057957600080fd5b506103236105883660046122b2565b610f67565b34801561059957600080fd5b5061033a6105a836600461244c565b610f96565b3480156105b957600080fd5b50610323611027565b3480156105ce57600080fd5b506103236105dd3660046122b2565b61105d565b3480156105ee57600080fd5b5061037061108c565b34801561060357600080fd5b506007546001600160a01b031661039d565b34801561062157600080fd5b5061033a60125481565b34801561063757600080fd5b506103236106463660046122b2565b61111a565b34801561065757600080fd5b50610370611149565b61032361066e3660046122b2565b611158565b34801561067f57600080fd5b5061032361068e366004612403565b6112cb565b34801561069f57600080fd5b506103236106ae3660046124b3565b611308565b3480156106bf57600080fd5b5061033a60105481565b3480156106d557600080fd5b5061033a600b5481565b3480156106eb57600080fd5b506103236106fa3660046124e6565b6113cc565b34801561070b57600080fd5b506015546102ee9060ff1681565b34801561072557600080fd5b5061033a60115481565b34801561073b57600080fd5b5061033a60095481565b34801561075157600080fd5b506103706107603660046122b2565b611405565b34801561077157600080fd5b5061037061154e565b34801561078657600080fd5b5061033a600f5481565b34801561079c57600080fd5b506103236107ab3660046122b2565b61155b565b3480156107bc57600080fd5b506103236107cb366004612562565b61158a565b3480156107dc57600080fd5b5061033a600d5481565b3480156107f257600080fd5b50610323610801366004612562565b6115ce565b34801561081257600080fd5b5061033a600c5481565b34801561082857600080fd5b506102ee61083736600461257d565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561087157600080fd5b506103236108803660046125a7565b61160b565b34801561089157600080fd5b506103236108a036600461244c565b61165d565b60006001600160e01b031982166380ac58cd60e01b14806108d657506001600160e01b03198216635b5e139f60e01b145b806108f157506001600160e01b0319821663780e9d6360e01b145b8061090c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146109455760405162461bcd60e51b815260040161093c906125d3565b60405180910390fd5b601155565b60008060085490506010546000541015610962575060005b919050565b60155460ff166109895760405162461bcd60e51b815260040161093c90612608565b600954600a5460028390036109a5575050600b54600c546109b6565b826003036109b6575050600d54600e545b813410156109fc5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161093c565b600f5481600054610a0d9190612663565b1115610a525760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161093c565b610a5c33826116f5565b505050565b606060018054610a709061267b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9c9061267b565b8015610ae95780601f10610abe57610100808354040283529160200191610ae9565b820191906000526020600020905b815481529060010190602001808311610acc57829003601f168201915b5050505050905090565b6000610b00826000541190565b610b625760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b606482015260840161093c565b506000908152600560205260409020546001600160a01b031690565b6000610b8982610f55565b9050806001600160a01b0316836001600160a01b031603610bf75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161093c565b336001600160a01b0382161480610c135750610c138133610837565b610c855760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161093c565b610a5c83838361170f565b6007546001600160a01b03163314610cba5760405162461bcd60e51b815260040161093c906125d3565b8051610ccd9060149060208401906121e8565b5050565b610a5c83838361176b565b6000610ce783610f96565b8210610d405760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161093c565b600080549080805b83811015610de8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d9b57805192505b876001600160a01b0316836001600160a01b031603610dd557868403610dc75750935061090c92505050565b83610dd1816126b5565b9450505b5080610de0816126b5565b915050610d48565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161093c565b6007546001600160a01b03163314610e725760405162461bcd60e51b815260040161093c906125d3565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610eab573d6000803e3d6000fd5b50565b610a5c838383604051806020016040528060008152506113cc565b6009546000906002839003610ee15750600b5461090c565b8260030361090c5750600d5492915050565b600080548210610f515760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161093c565b5090565b6000610f6082611ab2565b5192915050565b6007546001600160a01b03163314610f915760405162461bcd60e51b815260040161093c906125d3565b600f55565b60006001600160a01b0382166110025760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161093c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146110515760405162461bcd60e51b815260040161093c906125d3565b61105b6000611c5c565b565b6007546001600160a01b031633146110875760405162461bcd60e51b815260040161093c906125d3565b601055565b601480546110999061267b565b80601f01602080910402602001604051908101604052809291908181526020018280546110c59061267b565b80156111125780601f106110e757610100808354040283529160200191611112565b820191906000526020600020905b8154815290600101906020018083116110f557829003601f168201915b505050505081565b6007546001600160a01b031633146111445760405162461bcd60e51b815260040161093c906125d3565b600855565b606060028054610a709061267b565b60155460ff1661117a5760405162461bcd60e51b815260040161093c90612608565b600061118461094a565b905060105460005410156111f15760115461119e33610f96565b106111eb5760405162461bcd60e51b815260206004820152601760248201527f4d61782066726565206d696e7420657863656564656421000000000000000000604482015260640161093c565b60115491505b6111fb82826126ce565b3410156112405760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161093c565b6010546000541015801561125657506000601254115b1561126b5760125461126890836126ce565b91505b600f548260005461127c9190612663565b11156112c15760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161093c565b610ccd33836116f5565b6007546001600160a01b031633146112f55760405162461bcd60e51b815260040161093c906125d3565b8051610ccd9060139060208401906121e8565b336001600160a01b038316036113605760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161093c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113d784848461176b565b6113e384848484611cae565b6113ff5760405162461bcd60e51b815260040161093c906126ed565b50505050565b6060611412826000541190565b6114765760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093c565b601554610100900460ff16151560000361151c57601480546114979061267b565b80601f01602080910402602001604051908101604052809291908181526020018280546114c39061267b565b80156115105780601f106114e557610100808354040283529160200191611510565b820191906000526020600020905b8154815290600101906020018083116114f357829003601f168201915b50505050509050919050565b601361152783611db0565b60405160200161153892919061275c565b6040516020818303038152906040529050919050565b601380546110999061267b565b6007546001600160a01b031633146115855760405162461bcd60e51b815260040161093c906125d3565b601255565b6007546001600160a01b031633146115b45760405162461bcd60e51b815260040161093c906125d3565b601580549115156101000261ff0019909216919091179055565b6007546001600160a01b031633146115f85760405162461bcd60e51b815260040161093c906125d3565b6015805460ff1916911515919091179055565b6007546001600160a01b031633146116355760405162461bcd60e51b815260040161093c906125d3565b8260010361164957600991909155600a5550565b82600203610a5c57600b91909155600c5550565b6007546001600160a01b031633146116875760405162461bcd60e51b815260040161093c906125d3565b6001600160a01b0381166116ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093c565b610eab81611c5c565b610ccd828260405180602001604052806000815250611eb1565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061177682611ab2565b80519091506000906001600160a01b0316336001600160a01b031614806117ad5750336117a284610af3565b6001600160a01b0316145b806117bf575081516117bf9033610837565b9050806118295760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161093c565b846001600160a01b031682600001516001600160a01b03161461189d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161093c565b6001600160a01b0384166119015760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161093c565b611911600084846000015161170f565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906119d6908590612663565b6000818152600360205260409020549091506001600160a01b0316611a6857611a00816000541190565b15611a685760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611ad1826000541190565b611b305760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161093c565b60007f00000000000000000000000000000000000000000000000000000000000000648310611b9157611b837f000000000000000000000000000000000000000000000000000000000000006484612816565b611b8e906001612663565b90505b825b818110611bfb576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611be857949350505050565b5080611bf38161282d565b915050611b93565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161093c565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611da457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cf2903390899088908890600401612844565b6020604051808303816000875af1925050508015611d2d575060408051601f3d908101601f19168201909252611d2a91810190612881565b60015b611d8a573d808015611d5b576040519150601f19603f3d011682016040523d82523d6000602084013e611d60565b606091505b508051600003611d825760405162461bcd60e51b815260040161093c906126ed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611da8565b5060015b949350505050565b606081600003611dd75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e015780611deb816126b5565b9150611dfa9050600a836128b4565b9150611ddb565b60008167ffffffffffffffff811115611e1c57611e1c612377565b6040519080825280601f01601f191660200182016040528015611e46576020820181803683370190505b5090505b8415611da857611e5b600183612816565b9150611e68600a866128c8565b611e73906030612663565b60f81b818381518110611e8857611e886128dc565b60200101906001600160f81b031916908160001a905350611eaa600a866128b4565b9450611e4a565b6000546001600160a01b038416611f145760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161093c565b611f1f816000541190565b15611f6c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161093c565b7f0000000000000000000000000000000000000000000000000000000000000064831115611fe75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161093c565b600083116120435760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b606482015260840161093c565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061209f9087906128f2565b6001600160801b031681526020018583602001516120bd91906128f2565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121dd5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121a16000888488611cae565b6121bd5760405162461bcd60e51b815260040161093c906126ed565b816121c7816126b5565b92505080806121d5906126b5565b915050612154565b506000819055611aaa565b8280546121f49061267b565b90600052602060002090601f016020900481019282612216576000855561225c565b82601f1061222f57805160ff191683800117855561225c565b8280016001018555821561225c579182015b8281111561225c578251825591602001919060010190612241565b50610f519291505b80821115610f515760008155600101612264565b6001600160e01b031981168114610eab57600080fd5b6000602082840312156122a057600080fd5b81356122ab81612278565b9392505050565b6000602082840312156122c457600080fd5b5035919050565b60005b838110156122e65781810151838201526020016122ce565b838111156113ff5750506000910152565b6000815180845261230f8160208601602086016122cb565b601f01601f19169290920160200192915050565b6020815260006122ab60208301846122f7565b80356001600160a01b038116811461096257600080fd5b6000806040838503121561236057600080fd5b61236983612336565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123a8576123a8612377565b604051601f8501601f19908116603f011681019082821181831017156123d0576123d0612377565b816040528093508581528686860111156123e957600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561241557600080fd5b813567ffffffffffffffff81111561242c57600080fd5b8201601f8101841361243d57600080fd5b611da88482356020840161238d565b60006020828403121561245e57600080fd5b6122ab82612336565b60008060006060848603121561247c57600080fd5b61248584612336565b925061249360208501612336565b9150604084013590509250925092565b8035801515811461096257600080fd5b600080604083850312156124c657600080fd5b6124cf83612336565b91506124dd602084016124a3565b90509250929050565b600080600080608085870312156124fc57600080fd5b61250585612336565b935061251360208601612336565b925060408501359150606085013567ffffffffffffffff81111561253657600080fd5b8501601f8101871361254757600080fd5b6125568782356020840161238d565b91505092959194509250565b60006020828403121561257457600080fd5b6122ab826124a3565b6000806040838503121561259057600080fd5b61259983612336565b91506124dd60208401612336565b6000806000606084860312156125bc57600080fd5b505081359360208301359350604090920135919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f54686520636f6e7472616374206973206e6f74206f70656e20746f206d696e74604082015264207965742160d81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156126765761267661264d565b500190565b600181811c9082168061268f57607f821691505b6020821081036126af57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600182016126c7576126c761264d565b5060010190565b60008160001904831182151516156126e8576126e861264d565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516127528185602086016122cb565b9290920192915050565b600080845481600182811c91508083168061277857607f831692505b6020808410820361279757634e487b7160e01b86526022600452602486fd5b8180156127ab57600181146127bc576127e9565b60ff198616895284890196506127e9565b60008b81526020902060005b868110156127e15781548b8201529085019083016127c8565b505084890196505b50505050505061280d6127fc8286612740565b64173539b7b760d91b815260050190565b95945050505050565b6000828210156128285761282861264d565b500390565b60008161283c5761283c61264d565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612877908301846122f7565b9695505050505050565b60006020828403121561289357600080fd5b81516122ab81612278565b634e487b7160e01b600052601260045260246000fd5b6000826128c3576128c361289e565b500490565b6000826128d7576128d761289e565b500690565b634e487b7160e01b600052603260045260246000fd5b60006001600160801b038083168185168083038211156129145761291461264d565b0194935050505056fea2646970667358221220dc9e225c9cdd024ce0fc9d5d19c54e37386ee576f8b51621eac6edcc27ba7f2064736f6c634300080e0033

Deployed Bytecode Sourcemap

39389:4406:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27113:372;;;;;;;;;;-1:-1:-1;27113:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27113:372:0;;;;;;;;43023:126;;;;;;;;;;-1:-1:-1;43023:126:0;;;;;:::i;:::-;;:::i;:::-;;41875:208;;;;;;;;;;;;;:::i;:::-;;;923:25:1;;;911:2;896:18;41875:208:0;777:177:1;40920:628:0;;;;;;:::i;:::-;;:::i;28918:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30479:214::-;;;;;;;;;;-1:-1:-1;30479:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1896:32:1;;;1878:51;;1866:2;1851:18;30479:214:0;1732:203:1;30000:413:0;;;;;;;;;;-1:-1:-1;30000:413:0;;;;;:::i;:::-;;:::i;43702:90::-;;;;;;;;;;-1:-1:-1;43702:90:0;;;;;:::i;:::-;;:::i;25554:100::-;;;;;;;;;;-1:-1:-1;25607:7:0;25634:12;25554:100;;40130:55;;;;;;;;;;-1:-1:-1;40130:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;39723:32;;;;;;;;;;;;;;;;31355:162;;;;;;;;;;-1:-1:-1;31355:162:0;;;;;:::i;:::-;;:::i;26218:823::-;;;;;;;;;;-1:-1:-1;26218:823:0;;;;;:::i;:::-;;:::i;39549:31::-;;;;;;;;;;;;;;;;42478:100;;;;;;;;;;;;;:::i;31588:177::-;;;;;;;;;;-1:-1:-1;31588:177:0;;;;;:::i;:::-;;:::i;41554:315::-;;;;;;;;;;-1:-1:-1;41554:315:0;;;;;:::i;:::-;;:::i;25731:187::-;;;;;;;;;;-1:-1:-1;25731:187:0;;;;;:::i;:::-;;:::i;40096:27::-;;;;;;;;;;-1:-1:-1;40096:27:0;;;;;;;;;;;28727:124;;;;;;;;;;-1:-1:-1;28727:124:0;;;;;:::i;:::-;;:::i;39467:37::-;;;;;;;;;;;;;;;;43153:94;;;;;;;;;;-1:-1:-1;43153:94:0;;;;;:::i;:::-;;:::i;27549:221::-;;;;;;;;;;-1:-1:-1;27549:221:0;;;;;:::i;:::-;;:::i;4735:103::-;;;;;;;;;;;;;:::i;42917:102::-;;;;;;;;;;-1:-1:-1;42917:102:0;;;;;:::i;:::-;;:::i;40029:28::-;;;;;;;;;;;;;:::i;4084:87::-;;;;;;;;;;-1:-1:-1;4157:6:0;;-1:-1:-1;;;;;4157:6:0;4084:87;;39878:27;;;;;;;;;;;;;;;;43434:82;;;;;;;;;;-1:-1:-1;43434:82:0;;;;;:::i;:::-;;:::i;29087:104::-;;;;;;;;;;;;;:::i;40255:657::-;;;;;;:::i;:::-;;:::i;43522:91::-;;;;;;;;;;-1:-1:-1;43522:91:0;;;;;:::i;:::-;;:::i;30765:288::-;;;;;;;;;;-1:-1:-1;30765:288:0;;;;;:::i;:::-;;:::i;39799:33::-;;;;;;;;;;;;;;;;39587:44;;;;;;;;;;;;;;;;31836:355;;;;;;;;;;-1:-1:-1;31836:355:0;;;;;:::i;:::-;;:::i;40064:27::-;;;;;;;;;;-1:-1:-1;40064:27:0;;;;;;;;39837:36;;;;;;;;;;;;;;;;39511:33;;;;;;;;;;;;;;;;42089:383;;;;;;;;;;-1:-1:-1;42089:383:0;;;;;:::i;:::-;;:::i;39912:112::-;;;;;;;;;;;;;:::i;39762:32::-;;;;;;;;;;;;;;;;43251:90;;;;;;;;;;-1:-1:-1;43251:90:0;;;;;:::i;:::-;;:::i;43617:81::-;;;;;;;;;;-1:-1:-1;43617:81:0;;;;;:::i;:::-;;:::i;39674:44::-;;;;;;;;;;;;;;;;43347:81;;;;;;;;;;-1:-1:-1;43347:81:0;;;;;:::i;:::-;;:::i;39636:31::-;;;;;;;;;;;;;;;;31124:164;;;;;;;;;;-1:-1:-1;31124:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31245:25:0;;;31221:4;31245:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31124:164;42586:325;;;;;;;;;;-1:-1:-1;42586:325:0;;;;;:::i;:::-;;:::i;4993:201::-;;;;;;;;;;-1:-1:-1;4993:201:0;;;;;:::i;:::-;;:::i;27113:372::-;27215:4;-1:-1:-1;;;;;;27252:40:0;;-1:-1:-1;;;27252:40:0;;:105;;-1:-1:-1;;;;;;;27309:48:0;;-1:-1:-1;;;27309:48:0;27252:105;:172;;;-1:-1:-1;;;;;;;27374:50:0;;-1:-1:-1;;;27374:50:0;27252:172;:225;;;-1:-1:-1;;;;;;;;;;16625:40:0;;;27441:36;27232:245;27113:372;-1:-1:-1;;27113:372:0:o;43023:126::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;;;;;;;;;43105:17:::1;:38:::0;43023:126::o;41875:208::-;41932:7;41951:18;41972:9;;41951:30;;42008:11;;41993:12;;:26;41990:62;;;-1:-1:-1;42043:1:0;41990:62;42067:10;41875:208;-1:-1:-1;41875:208:0:o;40920:628::-;40992:8;;;;40984:58;;;;-1:-1:-1;;;40984:58:0;;;;;;;:::i;:::-;41072:14;;41115:12;;41155:1;41139:17;;;41136:221;;-1:-1:-1;;41182:14:0;;41221:12;;41136:221;;;41255:12;41271:1;41255:17;41252:105;;-1:-1:-1;;41298:14:0;;41337:12;;41252:105;41386:10;41373:9;:23;;41365:55;;;;-1:-1:-1;;;41365:55:0;;6962:2:1;41365:55:0;;;6944:21:1;7001:2;6981:18;;;6974:30;-1:-1:-1;;;7020:18:1;;;7013:49;7079:18;;41365:55:0;6760:343:1;41365:55:0;41465:9;;41450:11;41435:12;;:26;;;;:::i;:::-;:39;;41427:72;;;;-1:-1:-1;;;41427:72:0;;7575:2:1;41427:72:0;;;7557:21:1;7614:2;7594:18;;;7587:30;-1:-1:-1;;;7633:18:1;;;7626:50;7693:18;;41427:72:0;7373:344:1;41427:72:0;41508:34;41518:10;41530:11;41508:9;:34::i;:::-;40977:571;;40920:628;:::o;28918:100::-;28972:13;29005:5;28998:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28918:100;:::o;30479:214::-;30547:7;30575:16;30583:7;32503:4;32537:12;-1:-1:-1;32527:22:0;32446:111;30575:16;30567:74;;;;-1:-1:-1;;;30567:74:0;;8309:2:1;30567:74:0;;;8291:21:1;8348:2;8328:18;;;8321:30;8387:34;8367:18;;;8360:62;-1:-1:-1;;;8438:18:1;;;8431:43;8491:19;;30567:74:0;8107:409:1;30567:74:0;-1:-1:-1;30661:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30661:24:0;;30479:214::o;30000:413::-;30073:13;30089:24;30105:7;30089:15;:24::i;:::-;30073:40;;30138:5;-1:-1:-1;;;;;30132:11:0;:2;-1:-1:-1;;;;;30132:11:0;;30124:58;;;;-1:-1:-1;;;30124:58:0;;8723:2:1;30124:58:0;;;8705:21:1;8762:2;8742:18;;;8735:30;8801:34;8781:18;;;8774:62;-1:-1:-1;;;8852:18:1;;;8845:32;8894:19;;30124:58:0;8521:398:1;30124:58:0;2888:10;-1:-1:-1;;;;;30217:21:0;;;;:62;;-1:-1:-1;30242:37:0;30259:5;2888:10;31124:164;:::i;30242:37::-;30195:169;;;;-1:-1:-1;;;30195:169:0;;9126:2:1;30195:169:0;;;9108:21:1;9165:2;9145:18;;;9138:30;9204:34;9184:18;;;9177:62;9275:27;9255:18;;;9248:55;9320:19;;30195:169:0;8924:421:1;30195:169:0;30377:28;30386:2;30390:7;30399:5;30377:8;:28::i;43702:90::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;43770:16;;::::1;::::0;:9:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43702:90:::0;:::o;31355:162::-;31481:28;31491:4;31497:2;31501:7;31481:9;:28::i;26218:823::-;26307:7;26343:16;26353:5;26343:9;:16::i;:::-;26335:5;:24;26327:71;;;;-1:-1:-1;;;26327:71:0;;9552:2:1;26327:71:0;;;9534:21:1;9591:2;9571:18;;;9564:30;9630:34;9610:18;;;9603:62;-1:-1:-1;;;9681:18:1;;;9674:32;9723:19;;26327:71:0;9350:398:1;26327:71:0;26409:22;25634:12;;;26409:22;;26541:426;26565:14;26561:1;:18;26541:426;;;26601:31;26635:14;;;:11;:14;;;;;;;;;26601:48;;;;;;;;;-1:-1:-1;;;;;26601:48:0;;;;;-1:-1:-1;;;26601:48:0;;;;;;;;;;;;26668:28;26664:103;;26737:14;;;-1:-1:-1;26664:103:0;26806:5;-1:-1:-1;;;;;26785:26:0;:17;-1:-1:-1;;;;;26785:26:0;;26781:175;;26851:5;26836:11;:20;26832:77;;-1:-1:-1;26888:1:0;-1:-1:-1;26881:8:0;;-1:-1:-1;;;26881:8:0;26832:77;26927:13;;;;:::i;:::-;;;;26781:175;-1:-1:-1;26581:3:0;;;;:::i;:::-;;;;26541:426;;;-1:-1:-1;26977:56:0;;-1:-1:-1;;;26977:56:0;;10095:2:1;26977:56:0;;;10077:21:1;10134:2;10114:18;;;10107:30;10173:34;10153:18;;;10146:62;-1:-1:-1;;;10224:18:1;;;10217:44;10278:19;;26977:56:0;9893:410:1;42478:100:0;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;4157:6;;42524:48:::1;::::0;-1:-1:-1;;;;;4157:6:0;;;;42550:21:::1;42524:48:::0;::::1;;;::::0;::::1;::::0;;;42550:21;4157:6;42524:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;42478:100::o:0;31588:177::-;31718:39;31735:4;31741:2;31745:7;31718:39;;;;;;;;;;;;:16;:39::i;41554:315::-;41668:14;;41628:7;;41710:1;41694:17;;;41691:147;;-1:-1:-1;41737:14:0;;41691:147;;;41773:12;41789:1;41773:17;41770:68;;-1:-1:-1;41816:14:0;;41853:10;41554:315;-1:-1:-1;;41554:315:0:o;25731:187::-;25798:7;25634:12;;25826:5;:21;25818:69;;;;-1:-1:-1;;;25818:69:0;;10510:2:1;25818:69:0;;;10492:21:1;10549:2;10529:18;;;10522:30;10588:34;10568:18;;;10561:62;-1:-1:-1;;;10639:18:1;;;10632:33;10682:19;;25818:69:0;10308:399:1;25818:69:0;-1:-1:-1;25905:5:0;25731:187::o;28727:124::-;28791:7;28818:20;28830:7;28818:11;:20::i;:::-;:25;;28727:124;-1:-1:-1;;28727:124:0:o;43153:94::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;43219:9:::1;:22:::0;43153:94::o;27549:221::-;27613:7;-1:-1:-1;;;;;27641:19:0;;27633:75;;;;-1:-1:-1;;;27633:75:0;;10914:2:1;27633:75:0;;;10896:21:1;10953:2;10933:18;;;10926:30;10992:34;10972:18;;;10965:62;-1:-1:-1;;;11043:18:1;;;11036:41;11094:19;;27633:75:0;10712:407:1;27633:75:0;-1:-1:-1;;;;;;27734:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27734:27:0;;27549:221::o;4735:103::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;4800:30:::1;4827:1;4800:18;:30::i;:::-;4735:103::o:0;42917:102::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;42987:11:::1;:26:::0;42917:102::o;40029:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43434:82::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;43492:9:::1;:18:::0;43434:82::o;29087:104::-;29143:13;29176:7;29169:14;;;;;:::i;40255:657::-;40322:8;;;;40314:58;;;;-1:-1:-1;;;40314:58:0;;;;;;;:::i;:::-;40379:18;40400;:16;:18::i;:::-;40379:39;;40445:11;;40430:12;;:26;40427:171;;;40503:17;;40477:23;2888:10;27549:221;:::i;40477:23::-;:43;40469:79;;;;-1:-1:-1;;;40469:79:0;;11326:2:1;40469:79:0;;;11308:21:1;11365:2;11345:18;;;11338:30;11404:25;11384:18;;;11377:53;11447:18;;40469:79:0;11124:347:1;40469:79:0;40573:17;;40559:31;;40427:171;40625:24;40638:11;40625:10;:24;:::i;:::-;40612:9;:37;;40604:69;;;;-1:-1:-1;;;40604:69:0;;6962:2:1;40604:69:0;;;6944:21:1;7001:2;6981:18;;;6974:30;-1:-1:-1;;;7020:18:1;;;7013:49;7079:18;;40604:69:0;6760:343:1;40604:69:0;40701:11;;40685:12;;:27;;:43;;;;;40727:1;40716:8;;:12;40685:43;40682:103;;;40769:8;;40755:22;;:11;:22;:::i;:::-;40741:36;;40682:103;40829:9;;40814:11;40799:12;;:26;;;;:::i;:::-;:39;;40791:72;;;;-1:-1:-1;;;40791:72:0;;7575:2:1;40791:72:0;;;7557:21:1;7614:2;7594:18;;;7587:30;-1:-1:-1;;;7633:18:1;;;7626:50;7693:18;;40791:72:0;7373:344:1;40791:72:0;40872:34;40882:10;40894:11;40872:9;:34::i;43522:91::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;43588:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;30765:288::-:0;2888:10;-1:-1:-1;;;;;30860:24:0;;;30852:63;;;;-1:-1:-1;;;30852:63:0;;11851:2:1;30852:63:0;;;11833:21:1;11890:2;11870:18;;;11863:30;11929:28;11909:18;;;11902:56;11975:18;;30852:63:0;11649:350:1;30852:63:0;2888:10;30928:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30928:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30928:53:0;;;;;;;;;;30997:48;;540:41:1;;;30928:42:0;;2888:10;30997:48;;513:18:1;30997:48:0;;;;;;;30765:288;;:::o;31836:355::-;31995:28;32005:4;32011:2;32015:7;31995:9;:28::i;:::-;32056:48;32079:4;32085:2;32089:7;32098:5;32056:22;:48::i;:::-;32034:149;;;;-1:-1:-1;;;32034:149:0;;;;;;;:::i;:::-;31836:355;;;;:::o;42089:383::-;42188:13;42229:17;42237:8;32503:4;32537:12;-1:-1:-1;32527:22:0;32446:111;42229:17;42213:98;;;;-1:-1:-1;;;42213:98:0;;12626:2:1;42213:98:0;;;12608:21:1;12665:2;12645:18;;;12638:30;12704:34;12684:18;;;12677:62;-1:-1:-1;;;12755:18:1;;;12748:45;12810:19;;42213:98:0;12424:411:1;42213:98:0;42324:8;;;;;;;:17;;42336:5;42324:17;42320:56;;42359:9;42352:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42089:383;;;:::o;42320:56::-;42415:12;42429:26;42446:8;42429:16;:26::i;:::-;42398:67;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42384:82;;42089:383;;;:::o;39912:112::-;;;;;;;:::i;43251:90::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;43315:8:::1;:20:::0;43251:90::o;43617:81::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;43675:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;43675:17:0;;::::1;::::0;;;::::1;::::0;;43617:81::o;43347:::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;43405:8:::1;:17:::0;;-1:-1:-1;;43405:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43347:81::o;42586:325::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;42694:12:::1;42710:1;42694:17:::0;42691:215:::1;;42724:14;:27:::0;;;;42762:12:::1;:23:::0;-1:-1:-1;40920:628:0:o;42691:215::-:1;42807:12;42823:1;42807:17:::0;42804:102:::1;;42837:14;:27:::0;;;;42875:12:::1;:23:::0;-1:-1:-1;42586:325:0:o;4993:201::-;4157:6;;-1:-1:-1;;;;;4157:6:0;2888:10;4304:23;4296:68;;;;-1:-1:-1;;;4296:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5082:22:0;::::1;5074:73;;;::::0;-1:-1:-1;;;5074:73:0;;14782:2:1;5074:73:0::1;::::0;::::1;14764:21:1::0;14821:2;14801:18;;;14794:30;14860:34;14840:18;;;14833:62;-1:-1:-1;;;14911:18:1;;;14904:36;14957:19;;5074:73:0::1;14580:402:1::0;5074:73:0::1;5158:28;5177:8;5158:18;:28::i;32565:104::-:0;32634:27;32644:2;32648:8;32634:27;;;;;;;;;;;;:9;:27::i;36572:196::-;36687:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36687:29:0;-1:-1:-1;;;;;36687:29:0;;;;;;;;;36732:28;;36687:24;;36732:28;;;;;;;36572:196;;;:::o;34671:1783::-;34786:35;34824:20;34836:7;34824:11;:20::i;:::-;34899:18;;34786:58;;-1:-1:-1;34857:22:0;;-1:-1:-1;;;;;34883:34:0;2888:10;-1:-1:-1;;;;;34883:34:0;;:87;;;-1:-1:-1;2888:10:0;34934:20;34946:7;34934:11;:20::i;:::-;-1:-1:-1;;;;;34934:36:0;;34883:87;:154;;;-1:-1:-1;35004:18:0;;34987:50;;2888:10;31124:164;:::i;34987:50::-;34857:181;;35059:17;35051:80;;;;-1:-1:-1;;;35051:80:0;;15189:2:1;35051:80:0;;;15171:21:1;15228:2;15208:18;;;15201:30;15267:34;15247:18;;;15240:62;-1:-1:-1;;;15318:18:1;;;15311:48;15376:19;;35051:80:0;14987:414:1;35051:80:0;35174:4;-1:-1:-1;;;;;35152:26:0;:13;:18;;;-1:-1:-1;;;;;35152:26:0;;35144:77;;;;-1:-1:-1;;;35144:77:0;;15608:2:1;35144:77:0;;;15590:21:1;15647:2;15627:18;;;15620:30;15686:34;15666:18;;;15659:62;-1:-1:-1;;;15737:18:1;;;15730:36;15783:19;;35144:77:0;15406:402:1;35144:77:0;-1:-1:-1;;;;;35240:16:0;;35232:66;;;;-1:-1:-1;;;35232:66:0;;16015:2:1;35232:66:0;;;15997:21:1;16054:2;16034:18;;;16027:30;16093:34;16073:18;;;16066:62;-1:-1:-1;;;16144:18:1;;;16137:35;16189:19;;35232:66:0;15813:401:1;35232:66:0;35419:49;35436:1;35440:7;35449:13;:18;;;35419:8;:49::i;:::-;-1:-1:-1;;;;;35673:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35673:31:0;;;-1:-1:-1;;;;;35673:31:0;;;-1:-1:-1;;35673:31:0;;;;;;;35719:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35719:29:0;;;;;;;;;;;;;35795:43;;;;;;;;;;35821:15;35795:43;;;;;;;;;;35772:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;35772:66:0;;;;;;;-1:-1:-1;;;35772:66:0;;;;;;;;;;;;35673:18;36100:11;;35772:20;;36100:11;:::i;:::-;36167:1;36126:24;;;:11;:24;;;;;:29;36078:33;;-1:-1:-1;;;;;;36126:29:0;36122:227;;36190:20;36198:11;32503:4;32537:12;-1:-1:-1;32527:22:0;32446:111;36190:20;36186:152;;;36258:64;;;;;;;;36273:18;;-1:-1:-1;;;;;36258:64:0;;;;;;36293:28;;;;36258:64;;;;;;;;;;-1:-1:-1;36231:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;36231:91:0;-1:-1:-1;;;;;;36231:91:0;;;;;;;;;;;;36186:152;36385:7;36381:2;-1:-1:-1;;;;;36366:27:0;36375:4;-1:-1:-1;;;;;36366:27:0;;;;;;;;;;;36404:42;34775:1679;;;34671:1783;;;:::o;28015:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;28118:16:0;28126:7;32503:4;32537:12;-1:-1:-1;32527:22:0;32446:111;28118:16;28110:71;;;;-1:-1:-1;;;28110:71:0;;16421:2:1;28110:71:0;;;16403:21:1;16460:2;16440:18;;;16433:30;16499:34;16479:18;;;16472:62;-1:-1:-1;;;16550:18:1;;;16543:40;16600:19;;28110:71:0;16219:406:1;28110:71:0;28194:26;28246:12;28235:7;:23;28231:103;;28296:22;28306:12;28296:7;:22;:::i;:::-;:26;;28321:1;28296:26;:::i;:::-;28275:47;;28231:103;28366:7;28346:242;28383:18;28375:4;:26;28346:242;;28426:31;28460:17;;;:11;:17;;;;;;;;;28426:51;;;;;;;;;-1:-1:-1;;;;;28426:51:0;;;;;-1:-1:-1;;;28426:51:0;;;;;;;;;;;;28496:28;28492:85;;28552:9;28015:650;-1:-1:-1;;;;28015:650:0:o;28492:85::-;-1:-1:-1;28403:6:0;;;;:::i;:::-;;;;28346:242;;;-1:-1:-1;28600:57:0;;-1:-1:-1;;;28600:57:0;;17103:2:1;28600:57:0;;;17085:21:1;17142:2;17122:18;;;17115:30;17181:34;17161:18;;;17154:62;-1:-1:-1;;;17232:18:1;;;17225:45;17287:19;;28600:57:0;16901:411:1;5354:191:0;5447:6;;;-1:-1:-1;;;;;5464:17:0;;;-1:-1:-1;;;;;;5464:17:0;;;;;;;5497:40;;5447:6;;;5464:17;5447:6;;5497:40;;5428:16;;5497:40;5417:128;5354:191;:::o;37333:804::-;37488:4;-1:-1:-1;;;;;37509:13:0;;6695:20;6743:8;37505:625;;37545:72;;-1:-1:-1;;;37545:72:0;;-1:-1:-1;;;;;37545:36:0;;;;;:72;;2888:10;;37596:4;;37602:7;;37611:5;;37545:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37545:72:0;;;;;;;;-1:-1:-1;;37545:72:0;;;;;;;;;;;;:::i;:::-;;;37541:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37791:6;:13;37808:1;37791:18;37787:273;;37834:61;;-1:-1:-1;;;37834:61:0;;;;;;;:::i;37787:273::-;38010:6;38004:13;37995:6;37991:2;37987:15;37980:38;37541:534;-1:-1:-1;;;;;;37668:55:0;-1:-1:-1;;;37668:55:0;;-1:-1:-1;37661:62:0;;37505:625;-1:-1:-1;38114:4:0;37505:625;37333:804;;;;;;:::o;370:723::-;426:13;647:5;656:1;647:10;643:53;;-1:-1:-1;;674:10:0;;;;;;;;;;;;-1:-1:-1;;;674:10:0;;;;;370:723::o;643:53::-;721:5;706:12;762:78;769:9;;762:78;;795:8;;;;:::i;:::-;;-1:-1:-1;818:10:0;;-1:-1:-1;826:2:0;818:10;;:::i;:::-;;;762:78;;;850:19;882:6;872:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;872:17:0;;850:39;;900:154;907:10;;900:154;;934:11;944:1;934:11;;:::i;:::-;;-1:-1:-1;1003:10:0;1011:2;1003:5;:10;:::i;:::-;990:24;;:2;:24;:::i;:::-;977:39;;960:6;967;960:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;960:56:0;;;;;;;;-1:-1:-1;1031:11:0;1040:2;1031:11;;:::i;:::-;;;900:154;;32946:1471;33069:20;33092:12;-1:-1:-1;;;;;33123:16:0;;33115:62;;;;-1:-1:-1;;;33115:62:0;;18784:2:1;33115:62:0;;;18766:21:1;18823:2;18803:18;;;18796:30;18862:34;18842:18;;;18835:62;-1:-1:-1;;;18913:18:1;;;18906:31;18954:19;;33115:62:0;18582:397:1;33115:62:0;33322:21;33330:12;32503:4;32537:12;-1:-1:-1;32527:22:0;32446:111;33322:21;33321:22;33313:64;;;;-1:-1:-1;;;33313:64:0;;19186:2:1;33313:64:0;;;19168:21:1;19225:2;19205:18;;;19198:30;19264:31;19244:18;;;19237:59;19313:18;;33313:64:0;18984:353:1;33313:64:0;33408:12;33396:8;:24;;33388:71;;;;-1:-1:-1;;;33388:71:0;;19544:2:1;33388:71:0;;;19526:21:1;19583:2;19563:18;;;19556:30;19622:34;19602:18;;;19595:62;-1:-1:-1;;;19673:18:1;;;19666:32;19715:19;;33388:71:0;19342:398:1;33388:71:0;33489:1;33478:8;:12;33470:60;;;;-1:-1:-1;;;33470:60:0;;19947:2:1;33470:60:0;;;19929:21:1;19986:2;19966:18;;;19959:30;20025:34;20005:18;;;19998:62;-1:-1:-1;;;20076:18:1;;;20069:33;20119:19;;33470:60:0;19745:399:1;33470:60:0;-1:-1:-1;;;;;33650:16:0;;33617:30;33650:16;;;:12;:16;;;;;;;;;33617:49;;;;;;;;;-1:-1:-1;;;;;33617:49:0;;;;;-1:-1:-1;;;33617:49:0;;;;;;;;;;;33696:135;;;;;;;;33722:19;;33617:49;;33696:135;;;33722:39;;33752:8;;33722:39;:::i;:::-;-1:-1:-1;;;;;33696:135:0;;;;;33811:8;33776:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33696:135:0;;;;;;-1:-1:-1;;;;;33677:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;33677:154:0;;;;;;;;;;;;33870:43;;;;;;;;;;;33896:15;33870:43;;;;;;;;33842:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33842:71:0;-1:-1:-1;;;;;;33842:71:0;;;;;;;;;;;;;;;;;;33854:12;;33974:325;33998:8;33994:1;:12;33974:325;;;34033:38;;34058:12;;-1:-1:-1;;;;;34033:38:0;;;34050:1;;34033:38;;34050:1;;34033:38;34112:59;34143:1;34147:2;34151:12;34165:5;34112:22;:59::i;:::-;34086:172;;;;-1:-1:-1;;;34086:172:0;;;;;;;:::i;:::-;34273:14;;;;:::i;:::-;;;;34008:3;;;;;:::i;:::-;;;;33974:325;;;-1:-1:-1;34311:12:0;:27;;;34349:60;31836:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:1;;592:180;-1:-1:-1;592:180:1:o;959:258::-;1031:1;1041:113;1055:6;1052:1;1049:13;1041:113;;;1131:11;;;1125:18;1112:11;;;1105:39;1077:2;1070:10;1041:113;;;1172:6;1169:1;1166:13;1163:48;;;-1:-1:-1;;1207:1:1;1189:16;;1182:27;959:258::o;1222:269::-;1275:3;1313:5;1307:12;1340:6;1335:3;1328:19;1356:63;1412:6;1405:4;1400:3;1396:14;1389:4;1382:5;1378:16;1356:63;:::i;:::-;1473:2;1452:15;-1:-1:-1;;1448:29:1;1439:39;;;;1480:4;1435:50;;1222:269;-1:-1:-1;;1222:269:1:o;1496:231::-;1645:2;1634:9;1627:21;1608:4;1665:56;1717:2;1706:9;1702:18;1694:6;1665:56;:::i;1940:173::-;2008:20;;-1:-1:-1;;;;;2057:31:1;;2047:42;;2037:70;;2103:1;2100;2093:12;2118:254;2186:6;2194;2247:2;2235:9;2226:7;2222:23;2218:32;2215:52;;;2263:1;2260;2253:12;2215:52;2286:29;2305:9;2286:29;:::i;:::-;2276:39;2362:2;2347:18;;;;2334:32;;-1:-1:-1;;;2118:254:1:o;2377:127::-;2438:10;2433:3;2429:20;2426:1;2419:31;2469:4;2466:1;2459:15;2493:4;2490:1;2483:15;2509:632;2574:5;2604:18;2645:2;2637:6;2634:14;2631:40;;;2651:18;;:::i;:::-;2726:2;2720:9;2694:2;2780:15;;-1:-1:-1;;2776:24:1;;;2802:2;2772:33;2768:42;2756:55;;;2826:18;;;2846:22;;;2823:46;2820:72;;;2872:18;;:::i;:::-;2912:10;2908:2;2901:22;2941:6;2932:15;;2971:6;2963;2956:22;3011:3;3002:6;2997:3;2993:16;2990:25;2987:45;;;3028:1;3025;3018:12;2987:45;3078:6;3073:3;3066:4;3058:6;3054:17;3041:44;3133:1;3126:4;3117:6;3109;3105:19;3101:30;3094:41;;;;2509:632;;;;;:::o;3146:451::-;3215:6;3268:2;3256:9;3247:7;3243:23;3239:32;3236:52;;;3284:1;3281;3274:12;3236:52;3324:9;3311:23;3357:18;3349:6;3346:30;3343:50;;;3389:1;3386;3379:12;3343:50;3412:22;;3465:4;3457:13;;3453:27;-1:-1:-1;3443:55:1;;3494:1;3491;3484:12;3443:55;3517:74;3583:7;3578:2;3565:16;3560:2;3556;3552:11;3517:74;:::i;3602:186::-;3661:6;3714:2;3702:9;3693:7;3689:23;3685:32;3682:52;;;3730:1;3727;3720:12;3682:52;3753:29;3772:9;3753:29;:::i;3793:328::-;3870:6;3878;3886;3939:2;3927:9;3918:7;3914:23;3910:32;3907:52;;;3955:1;3952;3945:12;3907:52;3978:29;3997:9;3978:29;:::i;:::-;3968:39;;4026:38;4060:2;4049:9;4045:18;4026:38;:::i;:::-;4016:48;;4111:2;4100:9;4096:18;4083:32;4073:42;;3793:328;;;;;:::o;4126:160::-;4191:20;;4247:13;;4240:21;4230:32;;4220:60;;4276:1;4273;4266:12;4291:254;4356:6;4364;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4456:29;4475:9;4456:29;:::i;:::-;4446:39;;4504:35;4535:2;4524:9;4520:18;4504:35;:::i;:::-;4494:45;;4291:254;;;;;:::o;4550:667::-;4645:6;4653;4661;4669;4722:3;4710:9;4701:7;4697:23;4693:33;4690:53;;;4739:1;4736;4729:12;4690:53;4762:29;4781:9;4762:29;:::i;:::-;4752:39;;4810:38;4844:2;4833:9;4829:18;4810:38;:::i;:::-;4800:48;;4895:2;4884:9;4880:18;4867:32;4857:42;;4950:2;4939:9;4935:18;4922:32;4977:18;4969:6;4966:30;4963:50;;;5009:1;5006;4999:12;4963:50;5032:22;;5085:4;5077:13;;5073:27;-1:-1:-1;5063:55:1;;5114:1;5111;5104:12;5063:55;5137:74;5203:7;5198:2;5185:16;5180:2;5176;5172:11;5137:74;:::i;:::-;5127:84;;;4550:667;;;;;;;:::o;5222:180::-;5278:6;5331:2;5319:9;5310:7;5306:23;5302:32;5299:52;;;5347:1;5344;5337:12;5299:52;5370:26;5386:9;5370:26;:::i;5407:260::-;5475:6;5483;5536:2;5524:9;5515:7;5511:23;5507:32;5504:52;;;5552:1;5549;5542:12;5504:52;5575:29;5594:9;5575:29;:::i;:::-;5565:39;;5623:38;5657:2;5646:9;5642:18;5623:38;:::i;5672:316::-;5749:6;5757;5765;5818:2;5806:9;5797:7;5793:23;5789:32;5786:52;;;5834:1;5831;5824:12;5786:52;-1:-1:-1;;5857:23:1;;;5927:2;5912:18;;5899:32;;-1:-1:-1;5978:2:1;5963:18;;;5950:32;;5672:316;-1:-1:-1;5672:316:1:o;5993:356::-;6195:2;6177:21;;;6214:18;;;6207:30;6273:34;6268:2;6253:18;;6246:62;6340:2;6325:18;;5993:356::o;6354:401::-;6556:2;6538:21;;;6595:2;6575:18;;;6568:30;6634:34;6629:2;6614:18;;6607:62;-1:-1:-1;;;6700:2:1;6685:18;;6678:35;6745:3;6730:19;;6354:401::o;7108:127::-;7169:10;7164:3;7160:20;7157:1;7150:31;7200:4;7197:1;7190:15;7224:4;7221:1;7214:15;7240:128;7280:3;7311:1;7307:6;7304:1;7301:13;7298:39;;;7317:18;;:::i;:::-;-1:-1:-1;7353:9:1;;7240:128::o;7722:380::-;7801:1;7797:12;;;;7844;;;7865:61;;7919:4;7911:6;7907:17;7897:27;;7865:61;7972:2;7964:6;7961:14;7941:18;7938:38;7935:161;;8018:10;8013:3;8009:20;8006:1;7999:31;8053:4;8050:1;8043:15;8081:4;8078:1;8071:15;7935:161;;7722:380;;;:::o;9753:135::-;9792:3;9813:17;;;9810:43;;9833:18;;:::i;:::-;-1:-1:-1;9880:1:1;9869:13;;9753:135::o;11476:168::-;11516:7;11582:1;11578;11574:6;11570:14;11567:1;11564:21;11559:1;11552:9;11545:17;11541:45;11538:71;;;11589:18;;:::i;:::-;-1:-1:-1;11629:9:1;;11476:168::o;12004:415::-;12206:2;12188:21;;;12245:2;12225:18;;;12218:30;12284:34;12279:2;12264:18;;12257:62;-1:-1:-1;;;12350:2:1;12335:18;;12328:49;12409:3;12394:19;;12004:415::o;12966:185::-;13008:3;13046:5;13040:12;13061:52;13106:6;13101:3;13094:4;13087:5;13083:16;13061:52;:::i;:::-;13129:16;;;;;12966:185;-1:-1:-1;;12966:185:1:o;13274:1301::-;13551:3;13580:1;13613:6;13607:13;13643:3;13665:1;13693:9;13689:2;13685:18;13675:28;;13753:2;13742:9;13738:18;13775;13765:61;;13819:4;13811:6;13807:17;13797:27;;13765:61;13845:2;13893;13885:6;13882:14;13862:18;13859:38;13856:165;;-1:-1:-1;;;13920:33:1;;13976:4;13973:1;13966:15;14006:4;13927:3;13994:17;13856:165;14037:18;14064:104;;;;14182:1;14177:320;;;;14030:467;;14064:104;-1:-1:-1;;14097:24:1;;14085:37;;14142:16;;;;-1:-1:-1;14064:104:1;;14177:320;12913:1;12906:14;;;12950:4;12937:18;;14272:1;14286:165;14300:6;14297:1;14294:13;14286:165;;;14378:14;;14365:11;;;14358:35;14421:16;;;;14315:10;;14286:165;;;14290:3;;14480:6;14475:3;14471:16;14464:23;;14030:467;;;;;;;14513:56;14538:30;14564:3;14556:6;14538:30;:::i;:::-;-1:-1:-1;;;13216:20:1;;13261:1;13252:11;;13156:113;14513:56;14506:63;13274:1301;-1:-1:-1;;;;;13274:1301:1:o;16630:125::-;16670:4;16698:1;16695;16692:8;16689:34;;;16703:18;;:::i;:::-;-1:-1:-1;16740:9:1;;16630:125::o;16760:136::-;16799:3;16827:5;16817:39;;16836:18;;:::i;:::-;-1:-1:-1;;;16872:18:1;;16760:136::o;17317:500::-;-1:-1:-1;;;;;17586:15:1;;;17568:34;;17638:15;;17633:2;17618:18;;17611:43;17685:2;17670:18;;17663:34;;;17733:3;17728:2;17713:18;;17706:31;;;17511:4;;17754:57;;17791:19;;17783:6;17754:57;:::i;:::-;17746:65;17317:500;-1:-1:-1;;;;;;17317:500:1:o;17822:249::-;17891:6;17944:2;17932:9;17923:7;17919:23;17915:32;17912:52;;;17960:1;17957;17950:12;17912:52;17992:9;17986:16;18011:30;18035:5;18011:30;:::i;18076:127::-;18137:10;18132:3;18128:20;18125:1;18118:31;18168:4;18165:1;18158:15;18192:4;18189:1;18182:15;18208:120;18248:1;18274;18264:35;;18279:18;;:::i;:::-;-1:-1:-1;18313:9:1;;18208:120::o;18333:112::-;18365:1;18391;18381:35;;18396:18;;:::i;:::-;-1:-1:-1;18430:9:1;;18333:112::o;18450:127::-;18511:10;18506:3;18502:20;18499:1;18492:31;18542:4;18539:1;18532:15;18566:4;18563:1;18556:15;20149:253;20189:3;-1:-1:-1;;;;;20278:2:1;20275:1;20271:10;20308:2;20305:1;20301:10;20339:3;20335:2;20331:12;20326:3;20323:21;20320:47;;;20347:18;;:::i;:::-;20383:13;;20149:253;-1:-1:-1;;;;20149:253:1:o

Swarm Source

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