ETH Price: $3,354.84 (-2.75%)
Gas: 3 Gwei

Token

GoblinWaifu (GobWaifu)
 

Overview

Max Total Supply

4,444 GobWaifu

Holders

1,483

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
prasmul.eth
Balance
6 GobWaifu
0x5ef84c9204c2888db12fc2b93f9a352c7e597a37
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:
GoblinWaifu

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
//Developer Info:

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

// 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/utils/Address.sol


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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/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/new.sol




pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = 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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @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 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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);
    }
}
    pragma solidity ^0.8.7;
    
    contract GoblinWaifu is ERC721A, Ownable {
    using Strings for uint256;


  string private uriPrefix= "ipfs://QmUMsCtPDXo3gudYdSLF16P5zgGXm6rhb5nQ8Qc2Fv56qz/";
  string private uriSuffix = ".json";


  
  

  uint256 public cost = 0.0069 ether;


  uint16 public constant maxSupply = 4444;
  uint8 public maxMintAmountPerTx = 3;
                                                             

  bool public paused = true;
 
  uint16 public freelimit = 3000;
  
  address public     proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
 mapping(address => bool) public projectProxy;
  
  
  

  constructor() ERC721A("GoblinWaifu", "GobWaifu") {
  }

  
 
  function mint(uint16 _mintAmount) external payable  {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
    require(_mintAmount <= maxMintAmountPerTx, "Exceeds max per transaction.");

    require(!paused, "The contract is paused!");
    if(totalSupply >= freelimit )
    {require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }
    _safeMint(msg.sender , _mintAmount);
     
     delete totalSupply;
     delete _mintAmount;
  }
  
  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }



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

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






  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
 

  function setPaused() external onlyOwner {
    paused = !paused;
   
  }


  
  function setFreeLimit(uint16 _limit) external onlyOwner{
      freelimit = _limit;

  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }



  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

 

  function withdraw() external onlyOwner {
     uint _balance = address(this).balance;
     payable(0x4Eb145Ecc68d8D59a34E875F1d3Ad1906D9DA8da).transfer(_balance * 46 / 100); 
     payable(0x8728ED69FBc3D6b50aa3FBAA8aDE26972D59e7e0).transfer(_balance * 27 / 100); 
     payable(0x8a17F650D8f7d2d945311d60a9864C44cEE58048).transfer(_balance * 27 / 100);   


       
  }


  function _baseURI() internal view  override returns (string memory) {
    return uriPrefix;
  }
 function isApprovedForAll(address _owner, address operator) public view override returns (bool) {
        OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == operator || projectProxy[operator]) return true;
        return super.isApprovedForAll(_owner, operator);
    }
    
     
     function flipProxyState(address proxyAddress) public onlyOwner {
        projectProxy[proxyAddress] = !projectProxy[proxyAddress];
    }
     function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner {
        proxyRegistryAddress = _proxyRegistryAddress;
    }
}
contract OwnableDelegateProxy { }
contract OpenSeaProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freelimit","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_limit","type":"uint16"}],"name":"setFreeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526036608081815290620022e460a0398051620000299160099160209091019062000170565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005891600a9162000170565b506618838370f34000600b55600c80546001600160c01b03191677a5409ec958c83c3f309868babaca7c86dcb077c10bb801031790553480156200009b57600080fd5b50604080518082018252600b81526a476f626c696e576169667560a81b602080830191825283518085019094526008845267476f62576169667560c01b908401528151919291620000ef9160029162000170565b5080516200010590600390602084019062000170565b505060016000555062000118336200011e565b62000253565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017e9062000216565b90600052602060002090601f016020900481019282620001a25760008555620001ed565b82601f10620001bd57805160ff1916838001178555620001ed565b82800160010185558215620001ed579182015b82811115620001ed578251825591602001919060010190620001d0565b50620001fb929150620001ff565b5090565b5b80821115620001fb576000815560010162000200565b600181811c908216806200022b57607f821691505b602082108114156200024d57634e487b7160e01b600052602260045260246000fd5b50919050565b61208180620002636000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063b0917a9e116100a0578063d26ea6c01161006f578063d26ea6c0146105cc578063d5abeb01146105ec578063e985e9c514610602578063f2fde38b14610622578063f73c814b1461064257600080fd5b8063b0917a9e14610530578063b88d4fde14610564578063c87b56dd14610584578063cd7c0326146105a457600080fd5b806394354fd0116100dc57806394354fd0146104af57806395d89b41146104db578063a22cb465146104f0578063aa0622901461051057600080fd5b806370a082311461043c578063715018a61461045c5780637ec4a659146104715780638da5cb5b1461049157600080fd5b80632f6f98e11161019057806344a0d68a1161015f57806344a0d68a1461038d5780635bab26e2146103ad5780635c975abb146103dd5780636352211e146103fc57806365db54741461041c57600080fd5b80632f6f98e11461032357806337a66d85146103435780633ccfd60b1461035857806342842e0e1461036d57600080fd5b806313faede6116101cc57806313faede6146102af57806318160ddd146102d357806323b872dd146102f057806323cf0a221461031057600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611c22565b610662565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b506102486106b4565b60405161022a9190611e62565b34801561026157600080fd5b50610275610270366004611cf9565b610746565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611bf6565b61078a565b005b3480156102bb57600080fd5b506102c5600b5481565b60405190815260200161022a565b3480156102df57600080fd5b5060015460005403600019016102c5565b3480156102fc57600080fd5b506102ad61030b366004611b02565b610818565b6102ad61031e366004611cc2565b610823565b34801561032f57600080fd5b506102ad61033e366004611cdd565b6109c5565b34801561034f57600080fd5b506102ad610a69565b34801561036457600080fd5b506102ad610ab0565b34801561037957600080fd5b506102ad610388366004611b02565b610be2565b34801561039957600080fd5b506102ad6103a8366004611cf9565b610bfd565b3480156103b957600080fd5b5061021e6103c8366004611aac565b600d6020526000908152604090205460ff1681565b3480156103e957600080fd5b50600c5461021e90610100900460ff1681565b34801561040857600080fd5b50610275610417366004611cf9565b610c2c565b34801561042857600080fd5b506102ad610437366004611cc2565b610c3e565b34801561044857600080fd5b506102c5610457366004611aac565b610c88565b34801561046857600080fd5b506102ad610cd7565b34801561047d57600080fd5b506102ad61048c366004611c79565b610d0d565b34801561049d57600080fd5b506008546001600160a01b0316610275565b3480156104bb57600080fd5b50600c546104c99060ff1681565b60405160ff909116815260200161022a565b3480156104e757600080fd5b50610248610d4a565b3480156104fc57600080fd5b506102ad61050b366004611bc3565b610d59565b34801561051c57600080fd5b506102ad61052b366004611d12565b610def565b34801561053c57600080fd5b50600c546105519062010000900461ffff1681565b60405161ffff909116815260200161022a565b34801561057057600080fd5b506102ad61057f366004611b43565b610e2f565b34801561059057600080fd5b5061024861059f366004611cf9565b610e80565b3480156105b057600080fd5b50600c546102759064010000000090046001600160a01b031681565b3480156105d857600080fd5b506102ad6105e7366004611aac565b610f4e565b3480156105f857600080fd5b5061055161115c81565b34801561060e57600080fd5b5061021e61061d366004611ac9565b610fa6565b34801561062e57600080fd5b506102ad61063d366004611aac565b6110a1565b34801561064e57600080fd5b506102ad61065d366004611aac565b61113c565b60006001600160e01b031982166380ac58cd60e01b148061069357506001600160e01b03198216635b5e139f60e01b145b806106ae57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106c390611f5e565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef90611f5e565b801561073c5780601f106107115761010080835404028352916020019161073c565b820191906000526020600020905b81548152906001019060200180831161071f57829003601f168201915b5050505050905090565b60006107518261118f565b61076e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079582610c2c565b9050806001600160a01b0316836001600160a01b031614156107ca5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107ea57506107e88133610fa6565b155b15610808576040516367d9dca160e11b815260040160405180910390fd5b6108138383836111c8565b505050565b610813838383611224565b60006108386001546000546000199190030190565b905061115c6108478383611eaa565b61ffff1611156108945760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b60448201526064015b60405180910390fd5b600c5460ff1661ffff831611156108ed5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e00000000604482015260640161088b565b600c54610100900460ff16156109455760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161088b565b600c5461ffff620100009091048116908216106109b3578161ffff16600b5461096e9190611efc565b3410156109b35760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161088b565b6109c1338361ffff16611414565b5050565b6008546001600160a01b031633146109ef5760405162461bcd60e51b815260040161088b90611e75565b6000610a046001546000546000199190030190565b905061115c610a138483611eaa565b61ffff161115610a5b5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640161088b565b610813828461ffff16611414565b6008546001600160a01b03163314610a935760405162461bcd60e51b815260040161088b90611e75565b600c805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610ada5760405162461bcd60e51b815260040161088b90611e75565b47734eb145ecc68d8d59a34e875f1d3ad1906d9da8da6108fc6064610b0084602e611efc565b610b0a9190611ee8565b6040518115909202916000818181858888f19350505050158015610b32573d6000803e3d6000fd5b50738728ed69fbc3d6b50aa3fbaa8ade26972d59e7e06108fc6064610b5884601b611efc565b610b629190611ee8565b6040518115909202916000818181858888f19350505050158015610b8a573d6000803e3d6000fd5b50738a17f650d8f7d2d945311d60a9864c44cee580486108fc6064610bb084601b611efc565b610bba9190611ee8565b6040518115909202916000818181858888f193505050501580156109c1573d6000803e3d6000fd5b61081383838360405180602001604052806000815250610e2f565b6008546001600160a01b03163314610c275760405162461bcd60e51b815260040161088b90611e75565b600b55565b6000610c378261142e565b5192915050565b6008546001600160a01b03163314610c685760405162461bcd60e51b815260040161088b90611e75565b600c805461ffff909216620100000263ffff000019909216919091179055565b60006001600160a01b038216610cb1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d015760405162461bcd60e51b815260040161088b90611e75565b610d0b6000611557565b565b6008546001600160a01b03163314610d375760405162461bcd60e51b815260040161088b90611e75565b80516109c1906009906020840190611986565b6060600380546106c390611f5e565b6001600160a01b038216331415610d835760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610e195760405162461bcd60e51b815260040161088b90611e75565b600c805460ff191660ff92909216919091179055565b610e3a848484611224565b6001600160a01b0383163b15158015610e5c5750610e5a848484846115a9565b155b15610e7a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e8b8261118f565b610eef5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161088b565b6000610ef96116a0565b90506000815111610f195760405180602001604052806000815250610f47565b80610f23846116af565b600a604051602001610f3793929190611d61565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610f785760405162461bcd60e51b815260040161088b90611e75565b600c80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b600c5460405163c455279160e01b81526001600160a01b038481166004830152600092640100000000900481169190841690829063c45527919060240160206040518083038186803b158015610ffb57600080fd5b505afa15801561100f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110339190611c5c565b6001600160a01b0316148061106057506001600160a01b0383166000908152600d602052604090205460ff165b1561106f5760019150506106ae565b6001600160a01b0380851660009081526007602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146110cb5760405162461bcd60e51b815260040161088b90611e75565b6001600160a01b0381166111305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088b565b61113981611557565b50565b6008546001600160a01b031633146111665760405162461bcd60e51b815260040161088b90611e75565b6001600160a01b03166000908152600d60205260409020805460ff19811660ff90911615179055565b6000816001111580156111a3575060005482105b80156106ae575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061122f8261142e565b9050836001600160a01b031681600001516001600160a01b0316146112665760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061128457506112848533610fa6565b8061129f57503361129484610746565b6001600160a01b0316145b9050806112bf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166112e657604051633a954ecd60e21b815260040160405180910390fd5b6112f2600084876111c8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166113c85760005482146113c8578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6109c18282604051806020016040528060008152506117ad565b6040805160608101825260008082526020820181905291810191909152818060011115801561145e575060005481105b1561153e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061153c5780516001600160a01b0316156114d2579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611537579392505050565b6114d2565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115de903390899088908890600401611e25565b602060405180830381600087803b1580156115f857600080fd5b505af1925050508015611628575060408051601f3d908101601f1916820190925261162591810190611c3f565b60015b611683573d808015611656576040519150601f19603f3d011682016040523d82523d6000602084013e61165b565b606091505b50805161167b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546106c390611f5e565b6060816116d35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116fd57806116e781611f99565b91506116f69050600a83611ee8565b91506116d7565b60008167ffffffffffffffff8111156117185761171861200a565b6040519080825280601f01601f191660200182016040528015611742576020820181803683370190505b5090505b841561109957611757600183611f1b565b9150611764600a86611fb4565b61176f906030611ed0565b60f81b81838151811061178457611784611ff4565b60200101906001600160f81b031916908160001a9053506117a6600a86611ee8565b9450611746565b61081383838360016000546001600160a01b0385166117de57604051622e076360e81b815260040160405180910390fd5b836117fc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156118ae57506001600160a01b0387163b15155b15611937575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118ff60008884806001019550886115a9565b61191c576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118b457826000541461193257600080fd5b61197d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611938575b5060005561140d565b82805461199290611f5e565b90600052602060002090601f0160209004810192826119b457600085556119fa565b82601f106119cd57805160ff19168380011785556119fa565b828001600101855582156119fa579182015b828111156119fa5782518255916020019190600101906119df565b50611a06929150611a0a565b5090565b5b80821115611a065760008155600101611a0b565b600067ffffffffffffffff80841115611a3a57611a3a61200a565b604051601f8501601f19908116603f01168101908282118183101715611a6257611a6261200a565b81604052809350858152868686011115611a7b57600080fd5b858560208301376000602087830101525050509392505050565b803561ffff81168114611aa757600080fd5b919050565b600060208284031215611abe57600080fd5b8135610f4781612020565b60008060408385031215611adc57600080fd5b8235611ae781612020565b91506020830135611af781612020565b809150509250929050565b600080600060608486031215611b1757600080fd5b8335611b2281612020565b92506020840135611b3281612020565b929592945050506040919091013590565b60008060008060808587031215611b5957600080fd5b8435611b6481612020565b93506020850135611b7481612020565b925060408501359150606085013567ffffffffffffffff811115611b9757600080fd5b8501601f81018713611ba857600080fd5b611bb787823560208401611a1f565b91505092959194509250565b60008060408385031215611bd657600080fd5b8235611be181612020565b915060208301358015158114611af757600080fd5b60008060408385031215611c0957600080fd5b8235611c1481612020565b946020939093013593505050565b600060208284031215611c3457600080fd5b8135610f4781612035565b600060208284031215611c5157600080fd5b8151610f4781612035565b600060208284031215611c6e57600080fd5b8151610f4781612020565b600060208284031215611c8b57600080fd5b813567ffffffffffffffff811115611ca257600080fd5b8201601f81018413611cb357600080fd5b61109984823560208401611a1f565b600060208284031215611cd457600080fd5b610f4782611a95565b60008060408385031215611cf057600080fd5b611ae783611a95565b600060208284031215611d0b57600080fd5b5035919050565b600060208284031215611d2457600080fd5b813560ff81168114610f4757600080fd5b60008151808452611d4d816020860160208601611f32565b601f01601f19169290920160200192915050565b600084516020611d748285838a01611f32565b855191840191611d878184848a01611f32565b8554920191600090600181811c9080831680611da457607f831692505b858310811415611dc257634e487b7160e01b85526022600452602485fd5b808015611dd65760018114611de757611e14565b60ff19851688528388019550611e14565b60008b81526020902060005b85811015611e0c5781548a820152908401908801611df3565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e5890830184611d35565b9695505050505050565b602081526000610f476020830184611d35565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff808316818516808303821115611ec757611ec7611fc8565b01949350505050565b60008219821115611ee357611ee3611fc8565b500190565b600082611ef757611ef7611fde565b500490565b6000816000190483118215151615611f1657611f16611fc8565b500290565b600082821015611f2d57611f2d611fc8565b500390565b60005b83811015611f4d578181015183820152602001611f35565b83811115610e7a5750506000910152565b600181811c90821680611f7257607f821691505b60208210811415611f9357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fad57611fad611fc8565b5060010190565b600082611fc357611fc3611fde565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461113957600080fd5b6001600160e01b03198116811461113957600080fdfea2646970667358221220fc20dbb20db609d50c58560ed253b448723bf1302d8e9cea02222d59a730a8e264736f6c63430008070033697066733a2f2f516d554d7343745044586f336775645964534c46313650357a6747586d36726862356e513851633246763536717a2f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063b0917a9e116100a0578063d26ea6c01161006f578063d26ea6c0146105cc578063d5abeb01146105ec578063e985e9c514610602578063f2fde38b14610622578063f73c814b1461064257600080fd5b8063b0917a9e14610530578063b88d4fde14610564578063c87b56dd14610584578063cd7c0326146105a457600080fd5b806394354fd0116100dc57806394354fd0146104af57806395d89b41146104db578063a22cb465146104f0578063aa0622901461051057600080fd5b806370a082311461043c578063715018a61461045c5780637ec4a659146104715780638da5cb5b1461049157600080fd5b80632f6f98e11161019057806344a0d68a1161015f57806344a0d68a1461038d5780635bab26e2146103ad5780635c975abb146103dd5780636352211e146103fc57806365db54741461041c57600080fd5b80632f6f98e11461032357806337a66d85146103435780633ccfd60b1461035857806342842e0e1461036d57600080fd5b806313faede6116101cc57806313faede6146102af57806318160ddd146102d357806323b872dd146102f057806323cf0a221461031057600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611c22565b610662565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b506102486106b4565b60405161022a9190611e62565b34801561026157600080fd5b50610275610270366004611cf9565b610746565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611bf6565b61078a565b005b3480156102bb57600080fd5b506102c5600b5481565b60405190815260200161022a565b3480156102df57600080fd5b5060015460005403600019016102c5565b3480156102fc57600080fd5b506102ad61030b366004611b02565b610818565b6102ad61031e366004611cc2565b610823565b34801561032f57600080fd5b506102ad61033e366004611cdd565b6109c5565b34801561034f57600080fd5b506102ad610a69565b34801561036457600080fd5b506102ad610ab0565b34801561037957600080fd5b506102ad610388366004611b02565b610be2565b34801561039957600080fd5b506102ad6103a8366004611cf9565b610bfd565b3480156103b957600080fd5b5061021e6103c8366004611aac565b600d6020526000908152604090205460ff1681565b3480156103e957600080fd5b50600c5461021e90610100900460ff1681565b34801561040857600080fd5b50610275610417366004611cf9565b610c2c565b34801561042857600080fd5b506102ad610437366004611cc2565b610c3e565b34801561044857600080fd5b506102c5610457366004611aac565b610c88565b34801561046857600080fd5b506102ad610cd7565b34801561047d57600080fd5b506102ad61048c366004611c79565b610d0d565b34801561049d57600080fd5b506008546001600160a01b0316610275565b3480156104bb57600080fd5b50600c546104c99060ff1681565b60405160ff909116815260200161022a565b3480156104e757600080fd5b50610248610d4a565b3480156104fc57600080fd5b506102ad61050b366004611bc3565b610d59565b34801561051c57600080fd5b506102ad61052b366004611d12565b610def565b34801561053c57600080fd5b50600c546105519062010000900461ffff1681565b60405161ffff909116815260200161022a565b34801561057057600080fd5b506102ad61057f366004611b43565b610e2f565b34801561059057600080fd5b5061024861059f366004611cf9565b610e80565b3480156105b057600080fd5b50600c546102759064010000000090046001600160a01b031681565b3480156105d857600080fd5b506102ad6105e7366004611aac565b610f4e565b3480156105f857600080fd5b5061055161115c81565b34801561060e57600080fd5b5061021e61061d366004611ac9565b610fa6565b34801561062e57600080fd5b506102ad61063d366004611aac565b6110a1565b34801561064e57600080fd5b506102ad61065d366004611aac565b61113c565b60006001600160e01b031982166380ac58cd60e01b148061069357506001600160e01b03198216635b5e139f60e01b145b806106ae57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106c390611f5e565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef90611f5e565b801561073c5780601f106107115761010080835404028352916020019161073c565b820191906000526020600020905b81548152906001019060200180831161071f57829003601f168201915b5050505050905090565b60006107518261118f565b61076e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079582610c2c565b9050806001600160a01b0316836001600160a01b031614156107ca5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107ea57506107e88133610fa6565b155b15610808576040516367d9dca160e11b815260040160405180910390fd5b6108138383836111c8565b505050565b610813838383611224565b60006108386001546000546000199190030190565b905061115c6108478383611eaa565b61ffff1611156108945760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b60448201526064015b60405180910390fd5b600c5460ff1661ffff831611156108ed5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e00000000604482015260640161088b565b600c54610100900460ff16156109455760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161088b565b600c5461ffff620100009091048116908216106109b3578161ffff16600b5461096e9190611efc565b3410156109b35760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161088b565b6109c1338361ffff16611414565b5050565b6008546001600160a01b031633146109ef5760405162461bcd60e51b815260040161088b90611e75565b6000610a046001546000546000199190030190565b905061115c610a138483611eaa565b61ffff161115610a5b5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640161088b565b610813828461ffff16611414565b6008546001600160a01b03163314610a935760405162461bcd60e51b815260040161088b90611e75565b600c805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610ada5760405162461bcd60e51b815260040161088b90611e75565b47734eb145ecc68d8d59a34e875f1d3ad1906d9da8da6108fc6064610b0084602e611efc565b610b0a9190611ee8565b6040518115909202916000818181858888f19350505050158015610b32573d6000803e3d6000fd5b50738728ed69fbc3d6b50aa3fbaa8ade26972d59e7e06108fc6064610b5884601b611efc565b610b629190611ee8565b6040518115909202916000818181858888f19350505050158015610b8a573d6000803e3d6000fd5b50738a17f650d8f7d2d945311d60a9864c44cee580486108fc6064610bb084601b611efc565b610bba9190611ee8565b6040518115909202916000818181858888f193505050501580156109c1573d6000803e3d6000fd5b61081383838360405180602001604052806000815250610e2f565b6008546001600160a01b03163314610c275760405162461bcd60e51b815260040161088b90611e75565b600b55565b6000610c378261142e565b5192915050565b6008546001600160a01b03163314610c685760405162461bcd60e51b815260040161088b90611e75565b600c805461ffff909216620100000263ffff000019909216919091179055565b60006001600160a01b038216610cb1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d015760405162461bcd60e51b815260040161088b90611e75565b610d0b6000611557565b565b6008546001600160a01b03163314610d375760405162461bcd60e51b815260040161088b90611e75565b80516109c1906009906020840190611986565b6060600380546106c390611f5e565b6001600160a01b038216331415610d835760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610e195760405162461bcd60e51b815260040161088b90611e75565b600c805460ff191660ff92909216919091179055565b610e3a848484611224565b6001600160a01b0383163b15158015610e5c5750610e5a848484846115a9565b155b15610e7a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610e8b8261118f565b610eef5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161088b565b6000610ef96116a0565b90506000815111610f195760405180602001604052806000815250610f47565b80610f23846116af565b600a604051602001610f3793929190611d61565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610f785760405162461bcd60e51b815260040161088b90611e75565b600c80546001600160a01b0390921664010000000002640100000000600160c01b0319909216919091179055565b600c5460405163c455279160e01b81526001600160a01b038481166004830152600092640100000000900481169190841690829063c45527919060240160206040518083038186803b158015610ffb57600080fd5b505afa15801561100f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110339190611c5c565b6001600160a01b0316148061106057506001600160a01b0383166000908152600d602052604090205460ff165b1561106f5760019150506106ae565b6001600160a01b0380851660009081526007602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146110cb5760405162461bcd60e51b815260040161088b90611e75565b6001600160a01b0381166111305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088b565b61113981611557565b50565b6008546001600160a01b031633146111665760405162461bcd60e51b815260040161088b90611e75565b6001600160a01b03166000908152600d60205260409020805460ff19811660ff90911615179055565b6000816001111580156111a3575060005482105b80156106ae575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061122f8261142e565b9050836001600160a01b031681600001516001600160a01b0316146112665760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061128457506112848533610fa6565b8061129f57503361129484610746565b6001600160a01b0316145b9050806112bf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166112e657604051633a954ecd60e21b815260040160405180910390fd5b6112f2600084876111c8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166113c85760005482146113c8578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6109c18282604051806020016040528060008152506117ad565b6040805160608101825260008082526020820181905291810191909152818060011115801561145e575060005481105b1561153e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061153c5780516001600160a01b0316156114d2579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611537579392505050565b6114d2565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115de903390899088908890600401611e25565b602060405180830381600087803b1580156115f857600080fd5b505af1925050508015611628575060408051601f3d908101601f1916820190925261162591810190611c3f565b60015b611683573d808015611656576040519150601f19603f3d011682016040523d82523d6000602084013e61165b565b606091505b50805161167b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546106c390611f5e565b6060816116d35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116fd57806116e781611f99565b91506116f69050600a83611ee8565b91506116d7565b60008167ffffffffffffffff8111156117185761171861200a565b6040519080825280601f01601f191660200182016040528015611742576020820181803683370190505b5090505b841561109957611757600183611f1b565b9150611764600a86611fb4565b61176f906030611ed0565b60f81b81838151811061178457611784611ff4565b60200101906001600160f81b031916908160001a9053506117a6600a86611ee8565b9450611746565b61081383838360016000546001600160a01b0385166117de57604051622e076360e81b815260040160405180910390fd5b836117fc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156118ae57506001600160a01b0387163b15155b15611937575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46118ff60008884806001019550886115a9565b61191c576040516368d2bf6b60e11b815260040160405180910390fd5b808214156118b457826000541461193257600080fd5b61197d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611938575b5060005561140d565b82805461199290611f5e565b90600052602060002090601f0160209004810192826119b457600085556119fa565b82601f106119cd57805160ff19168380011785556119fa565b828001600101855582156119fa579182015b828111156119fa5782518255916020019190600101906119df565b50611a06929150611a0a565b5090565b5b80821115611a065760008155600101611a0b565b600067ffffffffffffffff80841115611a3a57611a3a61200a565b604051601f8501601f19908116603f01168101908282118183101715611a6257611a6261200a565b81604052809350858152868686011115611a7b57600080fd5b858560208301376000602087830101525050509392505050565b803561ffff81168114611aa757600080fd5b919050565b600060208284031215611abe57600080fd5b8135610f4781612020565b60008060408385031215611adc57600080fd5b8235611ae781612020565b91506020830135611af781612020565b809150509250929050565b600080600060608486031215611b1757600080fd5b8335611b2281612020565b92506020840135611b3281612020565b929592945050506040919091013590565b60008060008060808587031215611b5957600080fd5b8435611b6481612020565b93506020850135611b7481612020565b925060408501359150606085013567ffffffffffffffff811115611b9757600080fd5b8501601f81018713611ba857600080fd5b611bb787823560208401611a1f565b91505092959194509250565b60008060408385031215611bd657600080fd5b8235611be181612020565b915060208301358015158114611af757600080fd5b60008060408385031215611c0957600080fd5b8235611c1481612020565b946020939093013593505050565b600060208284031215611c3457600080fd5b8135610f4781612035565b600060208284031215611c5157600080fd5b8151610f4781612035565b600060208284031215611c6e57600080fd5b8151610f4781612020565b600060208284031215611c8b57600080fd5b813567ffffffffffffffff811115611ca257600080fd5b8201601f81018413611cb357600080fd5b61109984823560208401611a1f565b600060208284031215611cd457600080fd5b610f4782611a95565b60008060408385031215611cf057600080fd5b611ae783611a95565b600060208284031215611d0b57600080fd5b5035919050565b600060208284031215611d2457600080fd5b813560ff81168114610f4757600080fd5b60008151808452611d4d816020860160208601611f32565b601f01601f19169290920160200192915050565b600084516020611d748285838a01611f32565b855191840191611d878184848a01611f32565b8554920191600090600181811c9080831680611da457607f831692505b858310811415611dc257634e487b7160e01b85526022600452602485fd5b808015611dd65760018114611de757611e14565b60ff19851688528388019550611e14565b60008b81526020902060005b85811015611e0c5781548a820152908401908801611df3565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e5890830184611d35565b9695505050505050565b602081526000610f476020830184611d35565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff808316818516808303821115611ec757611ec7611fc8565b01949350505050565b60008219821115611ee357611ee3611fc8565b500190565b600082611ef757611ef7611fde565b500490565b6000816000190483118215151615611f1657611f16611fc8565b500290565b600082821015611f2d57611f2d611fc8565b500390565b60005b83811015611f4d578181015183820152602001611f35565b83811115610e7a5750506000910152565b600181811c90821680611f7257607f821691505b60208210811415611f9357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fad57611fad611fc8565b5060010190565b600082611fc357611fc3611fde565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461113957600080fd5b6001600160e01b03198116811461113957600080fdfea2646970667358221220fc20dbb20db609d50c58560ed253b448723bf1302d8e9cea02222d59a730a8e264736f6c63430008070033

Deployed Bytecode Sourcemap

44136:3684:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24460:305;;;;;;;;;;-1:-1:-1;24460:305:0;;;;;:::i;:::-;;:::i;:::-;;;8336:14:1;;8329:22;8311:41;;8299:2;8284:18;24460:305:0;;;;;;;;27573:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29076:204::-;;;;;;;;;;-1:-1:-1;29076:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7634:32:1;;;7616:51;;7604:2;7589:18;29076:204:0;7470:203:1;28639:371:0;;;;;;;;;;-1:-1:-1;28639:371:0;;;;;:::i;:::-;;:::i;:::-;;44358:34;;;;;;;;;;;;;;;;;;;11515:25:1;;;11503:2;11488:18;44358:34:0;11369:177:1;23709:303:0;;;;;;;;;;-1:-1:-1;23566:1:0;23963:12;23753:7;23947:13;:28;-1:-1:-1;;23947:46:0;23709:303;;29941:170;;;;;;;;;;-1:-1:-1;29941:170:0;;;;;:::i;:::-;;:::i;44841:532::-;;;;;;:::i;:::-;;:::i;45381:326::-;;;;;;;;;;-1:-1:-1;45381:326:0;;;;;:::i;:::-;;:::i;46281:74::-;;;;;;;;;;;;;:::i;46667:375::-;;;;;;;;;;;;;:::i;30182:185::-;;;;;;;;;;-1:-1:-1;30182:185:0;;;;;:::i;:::-;;:::i;46463:76::-;;;;;;;;;;-1:-1:-1;46463:76:0;;;;;:::i;:::-;;:::i;44710:44::-;;;;;;;;;;-1:-1:-1;44710:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;44550:25;;;;;;;;;;-1:-1:-1;44550:25:0;;;;;;;;;;;27381:125;;;;;;;;;;-1:-1:-1;27381:125:0;;;;;:::i;:::-;;:::i;46367:90::-;;;;;;;;;;-1:-1:-1;46367:90:0;;;;;:::i;:::-;;:::i;24829:206::-;;;;;;;;;;-1:-1:-1;24829:206:0;;;;;:::i;:::-;;:::i;43282:103::-;;;;;;;;;;;;;:::i;46170:102::-;;;;;;;;;;-1:-1:-1;46170:102:0;;;;;:::i;:::-;;:::i;42630:87::-;;;;;;;;;;-1:-1:-1;42703:6:0;;-1:-1:-1;;;;;42703:6:0;42630:87;;44445:35;;;;;;;;;;-1:-1:-1;44445:35:0;;;;;;;;;;;11723:4:1;11711:17;;;11693:36;;11681:2;11666:18;44445:35:0;11551:184:1;27742:104:0;;;;;;;;;;;;;:::i;29352:287::-;;;;;;;;;;-1:-1:-1;29352:287:0;;;;;:::i;:::-;;:::i;46549:107::-;;;;;;;;;;-1:-1:-1;46549:107:0;;;;;:::i;:::-;;:::i;44583:30::-;;;;;;;;;;-1:-1:-1;44583:30:0;;;;;;;;;;;;;;11350:6:1;11338:19;;;11320:38;;11308:2;11293:18;44583:30:0;11176:188:1;30438:369:0;;;;;;;;;;-1:-1:-1;30438:369:0;;;;;:::i;:::-;;:::i;45722:432::-;;;;;;;;;;-1:-1:-1;45722:432:0;;;;;:::i;:::-;;:::i;44622:84::-;;;;;;;;;;-1:-1:-1;44622:84:0;;;;;;;-1:-1:-1;;;;;44622:84:0;;;47671:146;;;;;;;;;;-1:-1:-1;47671:146:0;;;;;:::i;:::-;;:::i;44401:39::-;;;;;;;;;;;;44436:4;44401:39;;47150:356;;;;;;;;;;-1:-1:-1;47150:356:0;;;;;:::i;:::-;;:::i;43540:201::-;;;;;;;;;;-1:-1:-1;43540:201:0;;;;;:::i;:::-;;:::i;47526:138::-;;;;;;;;;;-1:-1:-1;47526:138:0;;;;;:::i;:::-;;:::i;24460:305::-;24562:4;-1:-1:-1;;;;;;24599:40:0;;-1:-1:-1;;;24599:40:0;;:105;;-1:-1:-1;;;;;;;24656:48:0;;-1:-1:-1;;;24656:48:0;24599:105;:158;;;-1:-1:-1;;;;;;;;;;14494:40:0;;;24721:36;24579:178;24460:305;-1:-1:-1;;24460:305:0:o;27573:100::-;27627:13;27660:5;27653:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27573:100;:::o;29076:204::-;29144:7;29169:16;29177:7;29169;:16::i;:::-;29164:64;;29194:34;;-1:-1:-1;;;29194:34:0;;;;;;;;;;;29164:64;-1:-1:-1;29248:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29248:24:0;;29076:204::o;28639:371::-;28712:13;28728:24;28744:7;28728:15;:24::i;:::-;28712:40;;28773:5;-1:-1:-1;;;;;28767:11:0;:2;-1:-1:-1;;;;;28767:11:0;;28763:48;;;28787:24;;-1:-1:-1;;;28787:24:0;;;;;;;;;;;28763:48;2935:10;-1:-1:-1;;;;;28828:21:0;;;;;;:63;;-1:-1:-1;28854:37:0;28871:5;2935:10;47150:356;:::i;28854:37::-;28853:38;28828:63;28824:138;;;28915:35;;-1:-1:-1;;;28915:35:0;;;;;;;;;;;28824:138;28974:28;28983:2;28987:7;28996:5;28974:8;:28::i;:::-;28701:309;28639:371;;:::o;29941:170::-;30075:28;30085:4;30091:2;30095:7;30075:9;:28::i;44841:532::-;44901:18;44929:13;23566:1;23963:12;23753:7;23947:13;-1:-1:-1;;23947:28:0;;;:46;;23709:303;44929:13;44901:42;-1:-1:-1;44436:4:0;44958:25;44972:11;44901:42;44958:25;:::i;:::-;:38;;;;44950:70;;;;-1:-1:-1;;;44950:70:0;;10325:2:1;44950:70:0;;;10307:21:1;10364:2;10344:18;;;10337:30;-1:-1:-1;;;10383:18:1;;;10376:49;10442:18;;44950:70:0;;;;;;;;;45050:18;;;;45035:33;;;;;45027:74;;;;-1:-1:-1;;;45027:74:0;;10673:2:1;45027:74:0;;;10655:21:1;10712:2;10692:18;;;10685:30;10751;10731:18;;;10724:58;10799:18;;45027:74:0;10471:352:1;45027:74:0;45119:6;;;;;;;45118:7;45110:43;;;;-1:-1:-1;;;45110:43:0;;9557:2:1;45110:43:0;;;9539:21:1;9596:2;9576:18;;;9569:30;9635:25;9615:18;;;9608:53;9678:18;;45110:43:0;9355:347:1;45110:43:0;45178:9;;;;;;;;;45163:24;;;;45160:107;;45224:11;45217:18;;:4;;:18;;;;:::i;:::-;45204:9;:31;;45196:63;;;;-1:-1:-1;;;45196:63:0;;11030:2:1;45196:63:0;;;11012:21:1;11069:2;11049:18;;;11042:30;-1:-1:-1;;;11088:18:1;;;11081:49;11147:18;;45196:63:0;10828:343:1;45196:63:0;45273:35;45283:10;45296:11;45273:35;;:9;:35::i;:::-;-1:-1:-1;;44841:532:0:o;45381:326::-;42703:6;;-1:-1:-1;;;;;42703:6:0;2935:10;42850:23;42842:69;;;;-1:-1:-1;;;42842:69:0;;;;;;;:::i;:::-;45464:18:::1;45492:13;23566:1:::0;23963:12;23753:7;23947:13;-1:-1:-1;;23947:28:0;;;:46;;23709:303;45492:13:::1;45464:42:::0;-1:-1:-1;44436:4:0::1;45521:25;45535:11:::0;45464:42;45521:25:::1;:::i;:::-;:38;;;;45513:70;;;::::0;-1:-1:-1;;;45513:70:0;;10325:2:1;45513:70:0::1;::::0;::::1;10307:21:1::0;10364:2;10344:18;;;10337:30;-1:-1:-1;;;10383:18:1;;;10376:49;10442:18;;45513:70:0::1;10123:343:1::0;45513:70:0::1;45591:34;45601:9;45613:11;45591:34;;:9;:34::i;46281:74::-:0;42703:6;;-1:-1:-1;;;;;42703:6:0;2935:10;42850:23;42842:69;;;;-1:-1:-1;;;42842:69:0;;;;;;;:::i;:::-;46338:6:::1;::::0;;-1:-1:-1;;46328:16:0;::::1;46338:6;::::0;;;::::1;;;46337:7;46328:16:::0;;::::1;;::::0;;46281:74::o;46667:375::-;42703:6;;-1:-1:-1;;;;;42703:6:0;2935:10;42850:23;42842:69;;;;-1:-1:-1;;;42842:69:0;;;;;;;:::i;:::-;46730:21:::1;46767:42;46759:81;46836:3;46820:13;46730:21:::0;46831:2:::1;46820:13;:::i;:::-;:19;;;;:::i;:::-;46759:81;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;46857:42:0::1;46849:81;46926:3;46910:13;:8:::0;46921:2:::1;46910:13;:::i;:::-;:19;;;;:::i;:::-;46849:81;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;46947:42:0::1;46939:81;47016:3;47000:13;:8:::0;47011:2:::1;47000:13;:::i;:::-;:19;;;;:::i;:::-;46939:81;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;30182:185:::0;30320:39;30337:4;30343:2;30347:7;30320:39;;;;;;;;;;;;:16;:39::i;46463:76::-;42703:6;;-1:-1:-1;;;;;42703:6:0;2935:10;42850:23;42842:69;;;;-1:-1:-1;;;42842:69:0;;;;;;;:::i;:::-;46519:4:::1;:12:::0;46463:76::o;27381:125::-;27445:7;27472:21;27485:7;27472:12;:21::i;:::-;:26;;27381:125;-1:-1:-1;;27381:125:0:o;46367:90::-;42703:6;;-1:-1:-1;;;;;42703:6:0;2935:10;42850:23;42842:69;;;;-1:-1:-1;;;42842:69:0;;;;;;;:::i;:::-;46431:9:::1;:18:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;46431:18:0;;::::1;::::0;;;::::1;::::0;;46367:90::o;24829:206::-;24893:7;-1:-1:-1;;;;;24917:19:0;;24913:60;;24945:28;;-1:-1:-1;;;24945:28:0;;;;;;;;;;;24913:60;-1:-1:-1;;;;;;24999:19:0;;;;;:12;:19;;;;;:27;;;;24829:206::o;43282:103::-;42703:6;;-1:-1:-1;;;;;42703:6:0;2935:10;42850:23;42842:69;;;;-1:-1:-1;;;42842:69:0;;;;;;;:::i;:::-;43347:30:::1;43374:1;43347:18;:30::i;:::-;43282:103::o:0;46170:102::-;42703:6;;-1:-1:-1;;;;;42703:6:0;2935:10;42850:23;42842:69;;;;-1:-1:-1;;;42842:69:0;;;;;;;:::i;:::-;46244:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27742:104::-:0;27798:13;27831:7;27824:14;;;;;:::i;29352:287::-;-1:-1:-1;;;;;29451:24:0;;2935:10;29451:24;29447:54;;;29484:17;;-1:-1:-1;;;29484:17:0;;;;;;;;;;;29447:54;2935:10;29514:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29514:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29514:53:0;;;;;;;;;;29583:48;;8311:41:1;;;29514:42:0;;2935:10;29583:48;;8284:18:1;29583:48:0;;;;;;;29352:287;;:::o;46549:107::-;42703:6;;-1:-1:-1;;;;;42703:6:0;2935:10;42850:23;42842:69;;;;-1:-1:-1;;;42842:69:0;;;;;;;:::i;:::-;46621:18:::1;:27:::0;;-1:-1:-1;;46621:27:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;46549:107::o;30438:369::-;30605:28;30615:4;30621:2;30625:7;30605:9;:28::i;:::-;-1:-1:-1;;;;;30648:13:0;;4597:19;:23;;30648:76;;;;;30668:56;30699:4;30705:2;30709:7;30718:5;30668:30;:56::i;:::-;30667:57;30648:76;30644:156;;;30748:40;;-1:-1:-1;;;30748:40:0;;;;;;;;;;;30644:156;30438:369;;;;:::o;45722:432::-;45821:13;45862:17;45870:8;45862:7;:17::i;:::-;45846:98;;;;-1:-1:-1;;;45846:98:0;;9909:2:1;45846:98:0;;;9891:21:1;9948:2;9928:18;;;9921:30;9987:34;9967:18;;;9960:62;-1:-1:-1;;;10038:18:1;;;10031:45;10093:19;;45846:98:0;9707:411:1;45846:98:0;45963:28;45994:10;:8;:10::i;:::-;45963:41;;46049:1;46024:14;46018:28;:32;:130;;;;;;;;;;;;;;;;;46086:14;46102:19;:8;:17;:19::i;:::-;46123:9;46069:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46018:130;46011:137;45722:432;-1:-1:-1;;;45722:432:0:o;47671:146::-;42703:6;;-1:-1:-1;;;;;42703:6:0;2935:10;42850:23;42842:69;;;;-1:-1:-1;;;42842:69:0;;;;;;;:::i;:::-;47765:20:::1;:44:::0;;-1:-1:-1;;;;;47765:44:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;47765:44:0;;::::1;::::0;;;::::1;::::0;;47671:146::o;47150:356::-;47315:20;;47359:29;;-1:-1:-1;;;47359:29:0;;-1:-1:-1;;;;;7634:32:1;;;47315:20:0;47359:29;;7616:51:1;47240:4:0;;47315:20;;;;;;47351:50;;;;47315:20;;47359:21;;7589:18:1;;47359:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;47351:50:0;;:76;;;-1:-1:-1;;;;;;47405:22:0;;;;;;:12;:22;;;;;;;;47351:76;47347:93;;;47436:4;47429:11;;;;;47347:93;-1:-1:-1;;;;;29831:25:0;;;29807:4;29831:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;47458:40;47451:47;47150:356;-1:-1:-1;;;;47150:356:0:o;43540:201::-;42703:6;;-1:-1:-1;;;;;42703:6:0;2935:10;42850:23;42842:69;;;;-1:-1:-1;;;42842:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43629:22:0;::::1;43621:73;;;::::0;-1:-1:-1;;;43621:73:0;;8789:2:1;43621:73:0::1;::::0;::::1;8771:21:1::0;8828:2;8808:18;;;8801:30;8867:34;8847:18;;;8840:62;-1:-1:-1;;;8918:18:1;;;8911:36;8964:19;;43621:73:0::1;8587:402:1::0;43621:73:0::1;43705:28;43724:8;43705:18;:28::i;:::-;43540:201:::0;:::o;47526:138::-;42703:6;;-1:-1:-1;;;;;42703:6:0;2935:10;42850:23;42842:69;;;;-1:-1:-1;;;42842:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47630:26:0::1;;::::0;;;:12:::1;:26;::::0;;;;;;-1:-1:-1;;47600:56:0;::::1;47630:26;::::0;;::::1;47629:27;47600:56;::::0;;47526:138::o;31062:187::-;31119:4;31162:7;23566:1;31143:26;;:53;;;;;31183:13;;31173:7;:23;31143:53;:98;;;;-1:-1:-1;;31214:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31214:27:0;;;;31213:28;;31062:187::o;39232:196::-;39347:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39347:29:0;-1:-1:-1;;;;;39347:29:0;;;;;;;;;39392:28;;39347:24;;39392:28;;;;;;;39232:196;;;:::o;34175:2130::-;34290:35;34328:21;34341:7;34328:12;:21::i;:::-;34290:59;;34388:4;-1:-1:-1;;;;;34366:26:0;:13;:18;;;-1:-1:-1;;;;;34366:26:0;;34362:67;;34401:28;;-1:-1:-1;;;34401:28:0;;;;;;;;;;;34362:67;34442:22;2935:10;-1:-1:-1;;;;;34468:20:0;;;;:73;;-1:-1:-1;34505:36:0;34522:4;2935:10;47150:356;:::i;34505:36::-;34468:126;;;-1:-1:-1;2935:10:0;34558:20;34570:7;34558:11;:20::i;:::-;-1:-1:-1;;;;;34558:36:0;;34468:126;34442:153;;34613:17;34608:66;;34639:35;;-1:-1:-1;;;34639:35:0;;;;;;;;;;;34608:66;-1:-1:-1;;;;;34689:16:0;;34685:52;;34714:23;;-1:-1:-1;;;34714:23:0;;;;;;;;;;;34685:52;34858:35;34875:1;34879:7;34888:4;34858:8;:35::i;:::-;-1:-1:-1;;;;;35189:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35189:31:0;;;;;;;-1:-1:-1;;35189:31:0;;;;;;;35235:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35235:29:0;;;;;;;;;;;35315:20;;;:11;:20;;;;;;35350:18;;-1:-1:-1;;;;;;35383:49:0;;;;-1:-1:-1;;;35416:15:0;35383:49;;;;;;;;;;35706:11;;35766:24;;;;;35809:13;;35315:20;;35766:24;;35809:13;35805:384;;36019:13;;36004:11;:28;36000:174;;36057:20;;36126:28;;;;36100:54;;-1:-1:-1;;;36100:54:0;-1:-1:-1;;;;;;36100:54:0;;;-1:-1:-1;;;;;36057:20:0;;36100:54;;;;36000:174;35164:1036;;;36236:7;36232:2;-1:-1:-1;;;;;36217:27:0;36226:4;-1:-1:-1;;;;;36217:27:0;;;;;;;;;;;36255:42;34279:2026;;34175:2130;;;:::o;31257:104::-;31326:27;31336:2;31340:8;31326:27;;;;;;;;;;;;:9;:27::i;26210:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26321:7:0;;23566:1;26370:23;;:47;;;;;26404:13;;26397:4;:20;26370:47;26366:886;;;26438:31;26472:17;;;:11;:17;;;;;;;;;26438:51;;;;;;;;;-1:-1:-1;;;;;26438:51:0;;;;-1:-1:-1;;;26438:51:0;;;;;;;;;;;-1:-1:-1;;;26438:51:0;;;;;;;;;;;;;;26508:729;;26558:14;;-1:-1:-1;;;;;26558:28:0;;26554:101;;26622:9;26210:1109;-1:-1:-1;;;26210:1109:0:o;26554:101::-;-1:-1:-1;;;26997:6:0;27042:17;;;;:11;:17;;;;;;;;;27030:29;;;;;;;;;-1:-1:-1;;;;;27030:29:0;;;;;-1:-1:-1;;;27030:29:0;;;;;;;;;;;-1:-1:-1;;;27030:29:0;;;;;;;;;;;;;27090:28;27086:109;;27158:9;26210:1109;-1:-1:-1;;;26210:1109:0:o;27086:109::-;26957:261;;;26419:833;26366:886;27280:31;;-1:-1:-1;;;27280:31:0;;;;;;;;;;;43901:191;43994:6;;;-1:-1:-1;;;;;44011:17:0;;;-1:-1:-1;;;;;;44011:17:0;;;;;;;44044:40;;43994:6;;;44011:17;43994:6;;44044:40;;43975:16;;44044:40;43964:128;43901:191;:::o;39920:667::-;40104:72;;-1:-1:-1;;;40104:72:0;;40083:4;;-1:-1:-1;;;;;40104:36:0;;;;;:72;;2935:10;;40155:4;;40161:7;;40170:5;;40104:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40104:72:0;;;;;;;;-1:-1:-1;;40104:72:0;;;;;;;;;;;;:::i;:::-;;;40100:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40338:13:0;;40334:235;;40384:40;;-1:-1:-1;;;40384:40:0;;;;;;;;;;;40334:235;40527:6;40521:13;40512:6;40508:2;40504:15;40497:38;40100:480;-1:-1:-1;;;;;;40223:55:0;-1:-1:-1;;;40223:55:0;;-1:-1:-1;39920:667:0;;;;;;:::o;47050:97::-;47103:13;47132:9;47125:16;;;;;:::i;417:723::-;473:13;694:10;690:53;;-1:-1:-1;;721:10:0;;;;;;;;;;;;-1:-1:-1;;;721:10:0;;;;;417:723::o;690:53::-;768:5;753:12;809:78;816:9;;809:78;;842:8;;;;:::i;:::-;;-1:-1:-1;865:10:0;;-1:-1:-1;873:2:0;865:10;;:::i;:::-;;;809:78;;;897:19;929:6;919:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;919:17:0;;897:39;;947:154;954:10;;947:154;;981:11;991:1;981:11;;:::i;:::-;;-1:-1:-1;1050:10:0;1058:2;1050:5;:10;:::i;:::-;1037:24;;:2;:24;:::i;:::-;1024:39;;1007:6;1014;1007:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1007:56:0;;;;;;;;-1:-1:-1;1078:11:0;1087:2;1078:11;;:::i;:::-;;;947:154;;31724:163;31847:32;31853:2;31857:8;31867:5;31874:4;32285:20;32308:13;-1:-1:-1;;;;;32336:16:0;;32332:48;;32361:19;;-1:-1:-1;;;32361:19:0;;;;;;;;;;;32332:48;32395:13;32391:44;;32417:18;;-1:-1:-1;;;32417:18:0;;;;;;;;;;;32391:44;-1:-1:-1;;;;;32786:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32845:49:0;;32786:44;;;;;;;;32845:49;;;;-1:-1:-1;;32786:44:0;;;;;;32845:49;;;;;;;;;;;;;;;;32911:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32961:66:0;;;;-1:-1:-1;;;33011:15:0;32961:66;;;;;;;;;;32911:25;33108:23;;;33152:4;:23;;;;-1:-1:-1;;;;;;33160:13:0;;4597:19;:23;;33160:15;33148:641;;;33196:314;33227:38;;33252:12;;-1:-1:-1;;;;;33227:38:0;;;33244:1;;33227:38;;33244:1;;33227:38;33293:69;33332:1;33336:2;33340:14;;;;;;33356:5;33293:30;:69::i;:::-;33288:174;;33398:40;;-1:-1:-1;;;33398:40:0;;;;;;;;;;;33288:174;33505:3;33489:12;:19;;33196:314;;33591:12;33574:13;;:29;33570:43;;33605:8;;;33570:43;33148:641;;;33654:120;33685:40;;33710:14;;;;;-1:-1:-1;;;;;33685:40:0;;;33702:1;;33685:40;;33702:1;;33685:40;33769:3;33753:12;:19;;33654:120;;33148:641;-1:-1:-1;33803:13:0;:28;33853:60;30438:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:159::-;717:20;;777:6;766:18;;756:29;;746:57;;799:1;796;789:12;746:57;650:159;;;:::o;814:247::-;873:6;926:2;914:9;905:7;901:23;897:32;894:52;;;942:1;939;932:12;894:52;981:9;968:23;1000:31;1025:5;1000:31;:::i;1066:388::-;1134:6;1142;1195:2;1183:9;1174:7;1170:23;1166:32;1163:52;;;1211:1;1208;1201:12;1163:52;1250:9;1237:23;1269:31;1294:5;1269:31;:::i;:::-;1319:5;-1:-1:-1;1376:2:1;1361:18;;1348:32;1389:33;1348:32;1389:33;:::i;:::-;1441:7;1431:17;;;1066:388;;;;;:::o;1459:456::-;1536:6;1544;1552;1605:2;1593:9;1584:7;1580:23;1576:32;1573:52;;;1621:1;1618;1611:12;1573:52;1660:9;1647:23;1679:31;1704:5;1679:31;:::i;:::-;1729:5;-1:-1:-1;1786:2:1;1771:18;;1758:32;1799:33;1758:32;1799:33;:::i;:::-;1459:456;;1851:7;;-1:-1:-1;;;1905:2:1;1890:18;;;;1877:32;;1459:456::o;1920:794::-;2015:6;2023;2031;2039;2092:3;2080:9;2071:7;2067:23;2063:33;2060:53;;;2109:1;2106;2099:12;2060:53;2148:9;2135:23;2167:31;2192:5;2167:31;:::i;:::-;2217:5;-1:-1:-1;2274:2:1;2259:18;;2246:32;2287:33;2246:32;2287:33;:::i;:::-;2339:7;-1:-1:-1;2393:2:1;2378:18;;2365:32;;-1:-1:-1;2448:2:1;2433:18;;2420:32;2475:18;2464:30;;2461:50;;;2507:1;2504;2497:12;2461:50;2530:22;;2583:4;2575:13;;2571:27;-1:-1:-1;2561:55:1;;2612:1;2609;2602:12;2561:55;2635:73;2700:7;2695:2;2682:16;2677:2;2673;2669:11;2635:73;:::i;:::-;2625:83;;;1920:794;;;;;;;:::o;2719:416::-;2784:6;2792;2845:2;2833:9;2824:7;2820:23;2816:32;2813:52;;;2861:1;2858;2851:12;2813:52;2900:9;2887:23;2919:31;2944:5;2919:31;:::i;:::-;2969:5;-1:-1:-1;3026:2:1;3011:18;;2998:32;3068:15;;3061:23;3049:36;;3039:64;;3099:1;3096;3089:12;3140:315;3208:6;3216;3269:2;3257:9;3248:7;3244:23;3240:32;3237:52;;;3285:1;3282;3275:12;3237:52;3324:9;3311:23;3343:31;3368:5;3343:31;:::i;:::-;3393:5;3445:2;3430:18;;;;3417:32;;-1:-1:-1;;;3140:315:1:o;3460:245::-;3518:6;3571:2;3559:9;3550:7;3546:23;3542:32;3539:52;;;3587:1;3584;3577:12;3539:52;3626:9;3613:23;3645:30;3669:5;3645:30;:::i;3710:249::-;3779:6;3832:2;3820:9;3811:7;3807:23;3803:32;3800:52;;;3848:1;3845;3838:12;3800:52;3880:9;3874:16;3899:30;3923:5;3899:30;:::i;3964:280::-;4063:6;4116:2;4104:9;4095:7;4091:23;4087:32;4084:52;;;4132:1;4129;4122:12;4084:52;4164:9;4158:16;4183:31;4208:5;4183:31;:::i;4249:450::-;4318:6;4371:2;4359:9;4350:7;4346:23;4342:32;4339:52;;;4387:1;4384;4377:12;4339:52;4427:9;4414:23;4460:18;4452:6;4449:30;4446:50;;;4492:1;4489;4482:12;4446:50;4515:22;;4568:4;4560:13;;4556:27;-1:-1:-1;4546:55:1;;4597:1;4594;4587:12;4546:55;4620:73;4685:7;4680:2;4667:16;4662:2;4658;4654:11;4620:73;:::i;4704:184::-;4762:6;4815:2;4803:9;4794:7;4790:23;4786:32;4783:52;;;4831:1;4828;4821:12;4783:52;4854:28;4872:9;4854:28;:::i;4893:319::-;4960:6;4968;5021:2;5009:9;5000:7;4996:23;4992:32;4989:52;;;5037:1;5034;5027:12;4989:52;5060:28;5078:9;5060:28;:::i;5217:180::-;5276:6;5329:2;5317:9;5308:7;5304:23;5300:32;5297:52;;;5345:1;5342;5335:12;5297:52;-1:-1:-1;5368:23:1;;5217:180;-1:-1:-1;5217:180:1:o;5402:269::-;5459:6;5512:2;5500:9;5491:7;5487:23;5483:32;5480:52;;;5528:1;5525;5518:12;5480:52;5567:9;5554:23;5617:4;5610:5;5606:16;5599:5;5596:27;5586:55;;5637:1;5634;5627:12;5676:257;5717:3;5755:5;5749:12;5782:6;5777:3;5770:19;5798:63;5854:6;5847:4;5842:3;5838:14;5831:4;5824:5;5820:16;5798:63;:::i;:::-;5915:2;5894:15;-1:-1:-1;;5890:29:1;5881:39;;;;5922:4;5877:50;;5676:257;-1:-1:-1;;5676:257:1:o;5938:1527::-;6162:3;6200:6;6194:13;6226:4;6239:51;6283:6;6278:3;6273:2;6265:6;6261:15;6239:51;:::i;:::-;6353:13;;6312:16;;;;6375:55;6353:13;6312:16;6397:15;;;6375:55;:::i;:::-;6519:13;;6452:20;;;6492:1;;6579;6601:18;;;;6654;;;;6681:93;;6759:4;6749:8;6745:19;6733:31;;6681:93;6822:2;6812:8;6809:16;6789:18;6786:40;6783:167;;;-1:-1:-1;;;6849:33:1;;6905:4;6902:1;6895:15;6935:4;6856:3;6923:17;6783:167;6966:18;6993:110;;;;7117:1;7112:328;;;;6959:481;;6993:110;-1:-1:-1;;7028:24:1;;7014:39;;7073:20;;;;-1:-1:-1;6993:110:1;;7112:328;11813:1;11806:14;;;11850:4;11837:18;;7207:1;7221:169;7235:8;7232:1;7229:15;7221:169;;;7317:14;;7302:13;;;7295:37;7360:16;;;;7252:10;;7221:169;;;7225:3;;7421:8;7414:5;7410:20;7403:27;;6959:481;-1:-1:-1;7456:3:1;;5938:1527;-1:-1:-1;;;;;;;;;;;5938:1527:1:o;7678:488::-;-1:-1:-1;;;;;7947:15:1;;;7929:34;;7999:15;;7994:2;7979:18;;7972:43;8046:2;8031:18;;8024:34;;;8094:3;8089:2;8074:18;;8067:31;;;7872:4;;8115:45;;8140:19;;8132:6;8115:45;:::i;:::-;8107:53;7678:488;-1:-1:-1;;;;;;7678:488:1:o;8363:219::-;8512:2;8501:9;8494:21;8475:4;8532:44;8572:2;8561:9;8557:18;8549:6;8532:44;:::i;8994:356::-;9196:2;9178:21;;;9215:18;;;9208:30;9274:34;9269:2;9254:18;;9247:62;9341:2;9326:18;;8994:356::o;11866:224::-;11905:3;11933:6;11966:2;11963:1;11959:10;11996:2;11993:1;11989:10;12027:3;12023:2;12019:12;12014:3;12011:21;12008:47;;;12035:18;;:::i;:::-;12071:13;;11866:224;-1:-1:-1;;;;11866:224:1:o;12095:128::-;12135:3;12166:1;12162:6;12159:1;12156:13;12153:39;;;12172:18;;:::i;:::-;-1:-1:-1;12208:9:1;;12095:128::o;12228:120::-;12268:1;12294;12284:35;;12299:18;;:::i;:::-;-1:-1:-1;12333:9:1;;12228:120::o;12353:168::-;12393:7;12459:1;12455;12451:6;12447:14;12444:1;12441:21;12436:1;12429:9;12422:17;12418:45;12415:71;;;12466:18;;:::i;:::-;-1:-1:-1;12506:9:1;;12353:168::o;12526:125::-;12566:4;12594:1;12591;12588:8;12585:34;;;12599:18;;:::i;:::-;-1:-1:-1;12636:9:1;;12526:125::o;12656:258::-;12728:1;12738:113;12752:6;12749:1;12746:13;12738:113;;;12828:11;;;12822:18;12809:11;;;12802:39;12774:2;12767:10;12738:113;;;12869:6;12866:1;12863:13;12860:48;;;-1:-1:-1;;12904:1:1;12886:16;;12879:27;12656:258::o;12919:380::-;12998:1;12994:12;;;;13041;;;13062:61;;13116:4;13108:6;13104:17;13094:27;;13062:61;13169:2;13161:6;13158:14;13138:18;13135:38;13132:161;;;13215:10;13210:3;13206:20;13203:1;13196:31;13250:4;13247:1;13240:15;13278:4;13275:1;13268:15;13132:161;;12919:380;;;:::o;13304:135::-;13343:3;-1:-1:-1;;13364:17:1;;13361:43;;;13384:18;;:::i;:::-;-1:-1:-1;13431:1:1;13420:13;;13304:135::o;13444:112::-;13476:1;13502;13492:35;;13507:18;;:::i;:::-;-1:-1:-1;13541:9:1;;13444:112::o;13561:127::-;13622:10;13617:3;13613:20;13610:1;13603:31;13653:4;13650:1;13643:15;13677:4;13674:1;13667:15;13693:127;13754:10;13749:3;13745:20;13742:1;13735:31;13785:4;13782:1;13775:15;13809:4;13806:1;13799:15;13825:127;13886:10;13881:3;13877:20;13874:1;13867:31;13917:4;13914:1;13907:15;13941:4;13938:1;13931:15;13957:127;14018:10;14013:3;14009:20;14006:1;13999:31;14049:4;14046:1;14039:15;14073:4;14070:1;14063:15;14089:131;-1:-1:-1;;;;;14164:31:1;;14154:42;;14144:70;;14210:1;14207;14200:12;14225:131;-1:-1:-1;;;;;;14299:32:1;;14289:43;;14279:71;;14346:1;14343;14336:12

Swarm Source

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