ETH Price: $3,456.29 (+1.50%)
Gas: 10 Gwei

Token

Gogoz (Gogoz)
 

Overview

Max Total Supply

4,444 Gogoz

Holders

2,031

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 Gogoz
0xb4b1bb4c914d710bf712c25673a1cfcb4dd4238e
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:
Gogoz

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-14
*/

// SPDX-License-Identifier: MIT
// File: contracts/cogoz.sol


// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// ██████╗  ██████╗  ██████╗  ██████╗ ███████╗
//██╔════╝ ██╔═══██╗██╔════╝ ██╔═══██╗╚══███╔╝
//██║  ███╗██║   ██║██║  ███╗██║   ██║  ███╔╝ 
//██║   ██║██║   ██║██║   ██║██║   ██║ ███╔╝  
//╚██████╔╝╚██████╔╝╚██████╔╝╚██████╔╝███████╗
// ╚═════╝  ╚═════╝  ╚═════╝  ╚═════╝ ╚══════╝
  

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

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.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 (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @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/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/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 1;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     * `collectionSize_` refers to how many tokens are in the collection.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_,
        uint256 collectionSize_
    ) {
        require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply");
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

        uint256 updatedIndex = startTokenId;

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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


// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/contract.sol



pragma solidity ^0.8.0;

// ██████╗  ██████╗  ██████╗  ██████╗ ███████╗
//██╔════╝ ██╔═══██╗██╔════╝ ██╔═══██╗╚══███╔╝
//██║  ███╗██║   ██║██║  ███╗██║   ██║  ███╔╝ 
//██║   ██║██║   ██║██║   ██║██║   ██║ ███╔╝  
//╚██████╔╝╚██████╔╝╚██████╔╝╚██████╔╝███████╗
// ╚═════╝  ╚═════╝  ╚═════╝  ╚═════╝ ╚══════╝


contract Gogoz is ERC721A, Ownable {
    enum Status {
        Pending,
        Freemint,
        PublicSale
        
    }

    Status public status;
    string public baseURI;
    uint256 public immutable maxFreeMint;
    uint256 public immutable maxPublicMint;
    uint256 public immutable maxSupply;
    uint256 public immutable maxfreesupply = 4444;
    uint256 public  FreeMintPrice = 0 ether;
     uint256 public constant PRICE = 0.02 ether;

    event Minted(address minter, uint256 amount);
    event StatusChanged(Status status);
    event BaseURIChanged(string newBaseURI);

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Contract is not allowed to mint.");
        _;
    }

    constructor(
        string memory initBaseURI,
        uint256 _maxFreeMint,
        uint256 _maxPublicMint,
        uint256 _maxSupply
    )
        ERC721A(
            "Gogoz",
            "Gogoz",
            _maxFreeMint > _maxPublicMint ? _maxFreeMint : _maxPublicMint,
            _maxSupply
        )
    {
        baseURI = initBaseURI;
        maxFreeMint = _maxFreeMint;
        maxPublicMint = _maxPublicMint;
        maxSupply = _maxSupply;
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        string memory uri = super.tokenURI(tokenId);
        return
            bytes(uri).length > 0 ? string(abi.encodePacked(uri, ".json")) : "";
    }

   
    function Freemint(uint256 amount)
        external
        payable
        callerIsUser
    {
        require(status == Status.Freemint, "Freemint is not active.");
         require(msg.value >= FreeMintPrice * amount, "Not enought funds.");
         require(amount <= maxFreeMint, "You can't mint more than 2 tokens");
         require(totalSupply() + amount <= maxfreesupply, "Max supply exceeded." );
        _safeMint(msg.sender, amount );
        emit Minted(msg.sender, amount);
    }

    function mint(uint256 amount) external payable callerIsUser {
        require(status == Status.PublicSale, "Public sale is not active.");
        require(amount <= maxPublicMint, "You can't mint more than 10 tokens");
        require(msg.value >= PRICE * amount, "Not enought funds.");
        require(totalSupply() + amount <= maxSupply, "Max supply exceeded." );
        _safeMint(msg.sender, amount);
        emit Minted(msg.sender, amount);
    }


    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
        emit BaseURIChanged(newBaseURI);
    }

    function setStatus(Status _status) external onlyOwner {
        status = _status;
        emit StatusChanged(_status);
    }

    function setOwnersExplicit(uint256 quantity) external onlyOwner {
        _setOwnersExplicit(quantity);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

      function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success, "Withdrawal of funds failed");
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"uint256","name":"_maxFreeMint","type":"uint256"},{"internalType":"uint256","name":"_maxPublicMint","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":false,"internalType":"enum Gogoz.Status","name":"status","type":"uint8"}],"name":"StatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FreeMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Freemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxfreesupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Gogoz.Status","name":"_status","type":"uint8"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum Gogoz.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

61014060405260016000908155600781905561115c61012052600a553480156200002857600080fd5b5060405162002fbd38038062002fbd8339810160408190526200004b9162000228565b6040518060400160405280600581526020016423b7b3b7bd60d91b8152506040518060400160405280600581526020016423b7b3b7bd60d91b81525083851162000096578362000098565b845b8360008111620001065760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001685760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000fd565b6001620001768582620003a6565b506002620001858482620003a6565b5060a091909152608052506200019d905033620001c0565b6009620001ab8582620003a6565b5060c09290925260e052610100525062000472565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156200023f57600080fd5b84516001600160401b03808211156200025757600080fd5b818701915087601f8301126200026c57600080fd5b81518181111562000281576200028162000212565b604051601f8201601f19908116603f01168101908382118183101715620002ac57620002ac62000212565b81604052828152602093508a84848701011115620002c957600080fd5b600091505b82821015620002ed5784820184015181830185015290830190620002ce565b60009281018401929092525090870151604088015160609098015191999098509095509350505050565b600181811c908216806200032c57607f821691505b6020821081036200034d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003a157600081815260208120601f850160051c810160208610156200037c5750805b601f850160051c820191505b818110156200039d5782815560010162000388565b5050505b505050565b81516001600160401b03811115620003c257620003c262000212565b620003da81620003d3845462000317565b8462000353565b602080601f831160018114620004125760008415620003f95750858301515b600019600386901b1c1916600185901b1785556200039d565b600085815260208120601f198616915b82811015620004435788860151825594840194600190910190840162000422565b5085821015620004625787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c05160e0516101005161012051612aca620004f36000396000818161035e015261145901526000818161063b01526110c50152600081816106070152610ff501526000818161059301526113df015260008181611b7501528181611b9f015261202001526000818161197a01526119ac0152612aca6000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba01461065d578063d984fed814610673578063dc33e68114610686578063e985e9c5146106a6578063f2fde38b146106ef57600080fd5b8063b88d4fde146105b5578063c87b56dd146105d5578063cabadaa0146105f5578063d5abeb011461062957600080fd5b80639231ab2a116100e75780639231ab2a146104eb57806395d89b4114610539578063a0712d681461054e578063a22cb46514610561578063a591252d1461058157600080fd5b806370a082311461047d578063715018a61461049d5780638d859f3e146104b25780638da5cb5b146104cd57600080fd5b80632d20fb601161019b57806342842e0e1161016a57806342842e0e146103e85780634f6ccce71461040857806355f804b3146104285780636352211e146104485780636c0360eb1461046857600080fd5b80632d20fb60146103805780632e49d78b146103a05780632f745c59146103c05780633ccfd60b146103e057600080fd5b806311632a44116101e257806311632a44146102c557806318160ddd146102e9578063200d2ed2146102fe57806323b872dd1461032c5780632d12912c1461034c57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612364565b61070f565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e61077c565b60405161024091906123d1565b34801561027757600080fd5b5061028b6102863660046123e4565b61080e565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612419565b61089e565b005b3480156102d157600080fd5b506102db600a5481565b604051908152602001610240565b3480156102f557600080fd5b506000546102db565b34801561030a57600080fd5b5060085461031f90600160a01b900460ff1681565b6040516102409190612459565b34801561033857600080fd5b506102c3610347366004612481565b6109b5565b34801561035857600080fd5b506102db7f000000000000000000000000000000000000000000000000000000000000000081565b34801561038c57600080fd5b506102c361039b3660046123e4565b6109c0565b3480156103ac57600080fd5b506102c36103bb3660046124bd565b6109f6565b3480156103cc57600080fd5b506102db6103db366004612419565b610a84565b6102c3610bf0565b3480156103f457600080fd5b506102c3610403366004612481565b610cb2565b34801561041457600080fd5b506102db6104233660046123e4565b610ccd565b34801561043457600080fd5b506102c36104433660046124de565b610d2f565b34801561045457600080fd5b5061028b6104633660046123e4565b610da4565b34801561047457600080fd5b5061025e610db6565b34801561048957600080fd5b506102db610498366004612550565b610e44565b3480156104a957600080fd5b506102c3610ed5565b3480156104be57600080fd5b506102db66470de4df82000081565b3480156104d957600080fd5b506008546001600160a01b031661028b565b3480156104f757600080fd5b5061050b6105063660046123e4565b610f0b565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610240565b34801561054557600080fd5b5061025e610f28565b6102c361055c3660046123e4565b610f37565b34801561056d57600080fd5b506102c361057c36600461256b565b61117d565b34801561058d57600080fd5b506102db7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105c157600080fd5b506102c36105d03660046125bd565b611241565b3480156105e157600080fd5b5061025e6105f03660046123e4565b61127a565b34801561060157600080fd5b506102db7f000000000000000000000000000000000000000000000000000000000000000081565b34801561063557600080fd5b506102db7f000000000000000000000000000000000000000000000000000000000000000081565b34801561066957600080fd5b506102db60075481565b6102c36106813660046123e4565b6112cf565b34801561069257600080fd5b506102db6106a1366004612550565b611482565b3480156106b257600080fd5b506102346106c1366004612699565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106fb57600080fd5b506102c361070a366004612550565b61148d565b60006001600160e01b031982166380ac58cd60e01b148061074057506001600160e01b03198216635b5e139f60e01b145b8061075b57506001600160e01b0319821663780e9d6360e01b145b8061077657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461078b906126cc565b80601f01602080910402602001604051908101604052809291908181526020018280546107b7906126cc565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081b826000541190565b6108825760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108a982610da4565b9050806001600160a01b0316836001600160a01b0316036109175760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610879565b336001600160a01b0382161480610933575061093381336106c1565b6109a55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610879565b6109b0838383611525565b505050565b6109b0838383611581565b6008546001600160a01b031633146109ea5760405162461bcd60e51b815260040161087990612706565b6109f381611909565b50565b6008546001600160a01b03163314610a205760405162461bcd60e51b815260040161087990612706565b6008805482919060ff60a01b1916600160a01b836002811115610a4557610a45612443565b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e81604051610a799190612459565b60405180910390a150565b6000610a8f83610e44565b8210610ae85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610879565b600080549080805b83811015610b90576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b4357805192505b876001600160a01b0316836001600160a01b031603610b7d57868403610b6f5750935061077692505050565b83610b7981612751565b9450505b5080610b8881612751565b915050610af0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610879565b6008546001600160a01b03163314610c1a5760405162461bcd60e51b815260040161087990612706565b604051600090339047908381818185875af1925050503d8060008114610c5c576040519150601f19603f3d011682016040523d82523d6000602084013e610c61565b606091505b50509050806109f35760405162461bcd60e51b815260206004820152601a60248201527f5769746864726177616c206f662066756e6473206661696c65640000000000006044820152606401610879565b6109b083838360405180602001604052806000815250611241565b600080548210610d2b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610879565b5090565b6008546001600160a01b03163314610d595760405162461bcd60e51b815260040161087990612706565b6009610d668284836127b0565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610d98929190612871565b60405180910390a15050565b6000610daf82611af3565b5192915050565b60098054610dc3906126cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610def906126cc565b8015610e3c5780601f10610e1157610100808354040283529160200191610e3c565b820191906000526020600020905b815481529060010190602001808311610e1f57829003601f168201915b505050505081565b60006001600160a01b038216610eb05760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610879565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610eff5760405162461bcd60e51b815260040161087990612706565b610f096000611c9d565b565b604080518082019091526000808252602082015261077682611af3565b60606002805461078b906126cc565b323314610f865760405162461bcd60e51b815260206004820181905260248201527f436f6e7472616374206973206e6f7420616c6c6f77656420746f206d696e742e6044820152606401610879565b6002600854600160a01b900460ff166002811115610fa657610fa6612443565b14610ff35760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206973206e6f74206163746976652e0000000000006044820152606401610879565b7f000000000000000000000000000000000000000000000000000000000000000081111561106e5760405162461bcd60e51b815260206004820152602260248201527f596f752063616e2774206d696e74206d6f7265207468616e20313020746f6b656044820152616e7360f01b6064820152608401610879565b61107f8166470de4df8200006128a0565b3410156110c35760405162461bcd60e51b81526020600482015260126024820152712737ba1032b737bab3b43a10333ab732399760711b6044820152606401610879565b7f0000000000000000000000000000000000000000000000000000000000000000816110ee60005490565b6110f891906128b7565b111561113d5760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b6044820152606401610879565b6111473382611cef565b60408051338152602081018390527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe9101610a79565b336001600160a01b038316036111d55760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610879565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61124c848484611581565b61125884848484611d0d565b6112745760405162461bcd60e51b8152600401610879906128ca565b50505050565b6060600061128783611e0f565b905060008151116112a757604051806020016040528060008152506112c8565b806040516020016112b8919061291d565b6040516020818303038152906040525b9392505050565b32331461131e5760405162461bcd60e51b815260206004820181905260248201527f436f6e7472616374206973206e6f7420616c6c6f77656420746f206d696e742e6044820152606401610879565b6001600854600160a01b900460ff16600281111561133e5761133e612443565b1461138b5760405162461bcd60e51b815260206004820152601760248201527f467265656d696e74206973206e6f74206163746976652e0000000000000000006044820152606401610879565b80600a5461139991906128a0565b3410156113dd5760405162461bcd60e51b81526020600482015260126024820152712737ba1032b737bab3b43a10333ab732399760711b6044820152606401610879565b7f00000000000000000000000000000000000000000000000000000000000000008111156114575760405162461bcd60e51b815260206004820152602160248201527f596f752063616e2774206d696e74206d6f7265207468616e203220746f6b656e6044820152607360f81b6064820152608401610879565b7f0000000000000000000000000000000000000000000000000000000000000000816110ee60005490565b600061077682611ec5565b6008546001600160a01b031633146114b75760405162461bcd60e51b815260040161087990612706565b6001600160a01b03811661151c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610879565b6109f381611c9d565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061158c82611af3565b80519091506000906001600160a01b0316336001600160a01b031614806115c35750336115b88461080e565b6001600160a01b0316145b806115d5575081516115d590336106c1565b90508061163f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610879565b846001600160a01b031682600001516001600160a01b0316146116b35760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610879565b6001600160a01b0384166117175760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610879565b6117276000848460000151611525565b6001600160a01b03851660009081526004602052604081208054600192906117599084906001600160801b0316612946565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926117a59185911661296d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561182d8460016128b7565b6000818152600360205260409020549091506001600160a01b03166118bf57611857816000541190565b156118bf5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600754816119595760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610879565b6000600161196784846128b7565b611971919061298d565b905061199e60017f000000000000000000000000000000000000000000000000000000000000000061298d565b8111156119d3576119d060017f000000000000000000000000000000000000000000000000000000000000000061298d565b90505b6119de816000541190565b611a395760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610879565b815b818111611adf576000818152600360205260409020546001600160a01b0316611acd576000611a6982611af3565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611ad781612751565b915050611a3b565b50611aeb8160016128b7565b600755505050565b6040805180820190915260008082526020820152611b12826000541190565b611b715760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610879565b60007f00000000000000000000000000000000000000000000000000000000000000008310611bd257611bc47f00000000000000000000000000000000000000000000000000000000000000008461298d565b611bcf9060016128b7565b90505b825b818110611c3c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c2957949350505050565b5080611c34816129a0565b915050611bd4565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610879565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d09828260405180602001604052806000815250611f63565b5050565b60006001600160a01b0384163b15611e0357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d519033908990889088906004016129b7565b6020604051808303816000875af1925050508015611d8c575060408051601f3d908101601f19168201909252611d89918101906129f4565b60015b611de9573d808015611dba576040519150601f19603f3d011682016040523d82523d6000602084013e611dbf565b606091505b508051600003611de15760405162461bcd60e51b8152600401610879906128ca565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e07565b5060015b949350505050565b6060611e1c826000541190565b611e805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610879565b6000611e8a61223e565b90506000815111611eaa57604051806020016040528060008152506112c8565b80611eb48461224d565b6040516020016112b8929190612a11565b60006001600160a01b038216611f375760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610879565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b038416611fc65760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610879565b611fd1816000541190565b1561201e5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610879565b7f00000000000000000000000000000000000000000000000000000000000000008311156120995760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610879565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906120f590879061296d565b6001600160801b03168152602001858360200151612113919061296d565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122335760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121f76000888488611d0d565b6122135760405162461bcd60e51b8152600401610879906128ca565b8161221d81612751565b925050808061222b90612751565b9150506121aa565b506000819055611901565b60606009805461078b906126cc565b6060816000036122745750506040805180820190915260018152600360fc1b602082015290565b8160005b811561229e578061228881612751565b91506122979050600a83612a56565b9150612278565b60008167ffffffffffffffff8111156122b9576122b96125a7565b6040519080825280601f01601f1916602001820160405280156122e3576020820181803683370190505b5090505b8415611e07576122f860018361298d565b9150612305600a86612a6a565b6123109060306128b7565b60f81b81838151811061232557612325612a7e565b60200101906001600160f81b031916908160001a905350612347600a86612a56565b94506122e7565b6001600160e01b0319811681146109f357600080fd5b60006020828403121561237657600080fd5b81356112c88161234e565b60005b8381101561239c578181015183820152602001612384565b50506000910152565b600081518084526123bd816020860160208601612381565b601f01601f19169290920160200192915050565b6020815260006112c860208301846123a5565b6000602082840312156123f657600080fd5b5035919050565b80356001600160a01b038116811461241457600080fd5b919050565b6000806040838503121561242c57600080fd5b612435836123fd565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b602081016003831061247b57634e487b7160e01b600052602160045260246000fd5b91905290565b60008060006060848603121561249657600080fd5b61249f846123fd565b92506124ad602085016123fd565b9150604084013590509250925092565b6000602082840312156124cf57600080fd5b8135600381106112c857600080fd5b600080602083850312156124f157600080fd5b823567ffffffffffffffff8082111561250957600080fd5b818501915085601f83011261251d57600080fd5b81358181111561252c57600080fd5b86602082850101111561253e57600080fd5b60209290920196919550909350505050565b60006020828403121561256257600080fd5b6112c8826123fd565b6000806040838503121561257e57600080fd5b612587836123fd565b91506020830135801515811461259c57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156125d357600080fd5b6125dc856123fd565b93506125ea602086016123fd565b925060408501359150606085013567ffffffffffffffff8082111561260e57600080fd5b818701915087601f83011261262257600080fd5b813581811115612634576126346125a7565b604051601f8201601f19908116603f0116810190838211818310171561265c5761265c6125a7565b816040528281528a602084870101111561267557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156126ac57600080fd5b6126b5836123fd565b91506126c3602084016123fd565b90509250929050565b600181811c908216806126e057607f821691505b60208210810361270057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016127635761276361273b565b5060010190565b601f8211156109b057600081815260208120601f850160051c810160208610156127915750805b601f850160051c820191505b818110156119015782815560010161279d565b67ffffffffffffffff8311156127c8576127c86125a7565b6127dc836127d683546126cc565b8361276a565b6000601f84116001811461281057600085156127f85750838201355b600019600387901b1c1916600186901b17835561286a565b600083815260209020601f19861690835b828110156128415786850135825560209485019460019092019101612821565b508682101561285e5760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b80820281158282048414176107765761077661273b565b808201808211156107765761077661273b565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000825161292f818460208701612381565b64173539b7b760d91b920191825250600501919050565b6001600160801b038281168282160390808211156129665761296661273b565b5092915050565b6001600160801b038181168382160190808211156129665761296661273b565b818103818111156107765761077661273b565b6000816129af576129af61273b565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129ea908301846123a5565b9695505050505050565b600060208284031215612a0657600080fd5b81516112c88161234e565b60008351612a23818460208801612381565b835190830190612a37818360208801612381565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b600082612a6557612a65612a40565b500490565b600082612a7957612a79612a40565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220e6cffeaf03ddf37cd85a34b6423c26efc329911d5dd73f100363bdef02e89ee664736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000115c0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59696a526e6365615a4153354b594e6868706133694755567234784b4d4247795a624552654843366763754d2f00000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806370a0823111610118578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba01461065d578063d984fed814610673578063dc33e68114610686578063e985e9c5146106a6578063f2fde38b146106ef57600080fd5b8063b88d4fde146105b5578063c87b56dd146105d5578063cabadaa0146105f5578063d5abeb011461062957600080fd5b80639231ab2a116100e75780639231ab2a146104eb57806395d89b4114610539578063a0712d681461054e578063a22cb46514610561578063a591252d1461058157600080fd5b806370a082311461047d578063715018a61461049d5780638d859f3e146104b25780638da5cb5b146104cd57600080fd5b80632d20fb601161019b57806342842e0e1161016a57806342842e0e146103e85780634f6ccce71461040857806355f804b3146104285780636352211e146104485780636c0360eb1461046857600080fd5b80632d20fb60146103805780632e49d78b146103a05780632f745c59146103c05780633ccfd60b146103e057600080fd5b806311632a44116101e257806311632a44146102c557806318160ddd146102e9578063200d2ed2146102fe57806323b872dd1461032c5780632d12912c1461034c57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612364565b61070f565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e61077c565b60405161024091906123d1565b34801561027757600080fd5b5061028b6102863660046123e4565b61080e565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612419565b61089e565b005b3480156102d157600080fd5b506102db600a5481565b604051908152602001610240565b3480156102f557600080fd5b506000546102db565b34801561030a57600080fd5b5060085461031f90600160a01b900460ff1681565b6040516102409190612459565b34801561033857600080fd5b506102c3610347366004612481565b6109b5565b34801561035857600080fd5b506102db7f000000000000000000000000000000000000000000000000000000000000115c81565b34801561038c57600080fd5b506102c361039b3660046123e4565b6109c0565b3480156103ac57600080fd5b506102c36103bb3660046124bd565b6109f6565b3480156103cc57600080fd5b506102db6103db366004612419565b610a84565b6102c3610bf0565b3480156103f457600080fd5b506102c3610403366004612481565b610cb2565b34801561041457600080fd5b506102db6104233660046123e4565b610ccd565b34801561043457600080fd5b506102c36104433660046124de565b610d2f565b34801561045457600080fd5b5061028b6104633660046123e4565b610da4565b34801561047457600080fd5b5061025e610db6565b34801561048957600080fd5b506102db610498366004612550565b610e44565b3480156104a957600080fd5b506102c3610ed5565b3480156104be57600080fd5b506102db66470de4df82000081565b3480156104d957600080fd5b506008546001600160a01b031661028b565b3480156104f757600080fd5b5061050b6105063660046123e4565b610f0b565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610240565b34801561054557600080fd5b5061025e610f28565b6102c361055c3660046123e4565b610f37565b34801561056d57600080fd5b506102c361057c36600461256b565b61117d565b34801561058d57600080fd5b506102db7f000000000000000000000000000000000000000000000000000000000000000281565b3480156105c157600080fd5b506102c36105d03660046125bd565b611241565b3480156105e157600080fd5b5061025e6105f03660046123e4565b61127a565b34801561060157600080fd5b506102db7f000000000000000000000000000000000000000000000000000000000000000a81565b34801561063557600080fd5b506102db7f000000000000000000000000000000000000000000000000000000000000115c81565b34801561066957600080fd5b506102db60075481565b6102c36106813660046123e4565b6112cf565b34801561069257600080fd5b506102db6106a1366004612550565b611482565b3480156106b257600080fd5b506102346106c1366004612699565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106fb57600080fd5b506102c361070a366004612550565b61148d565b60006001600160e01b031982166380ac58cd60e01b148061074057506001600160e01b03198216635b5e139f60e01b145b8061075b57506001600160e01b0319821663780e9d6360e01b145b8061077657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461078b906126cc565b80601f01602080910402602001604051908101604052809291908181526020018280546107b7906126cc565b80156108045780601f106107d957610100808354040283529160200191610804565b820191906000526020600020905b8154815290600101906020018083116107e757829003601f168201915b5050505050905090565b600061081b826000541190565b6108825760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108a982610da4565b9050806001600160a01b0316836001600160a01b0316036109175760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610879565b336001600160a01b0382161480610933575061093381336106c1565b6109a55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610879565b6109b0838383611525565b505050565b6109b0838383611581565b6008546001600160a01b031633146109ea5760405162461bcd60e51b815260040161087990612706565b6109f381611909565b50565b6008546001600160a01b03163314610a205760405162461bcd60e51b815260040161087990612706565b6008805482919060ff60a01b1916600160a01b836002811115610a4557610a45612443565b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e81604051610a799190612459565b60405180910390a150565b6000610a8f83610e44565b8210610ae85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610879565b600080549080805b83811015610b90576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b4357805192505b876001600160a01b0316836001600160a01b031603610b7d57868403610b6f5750935061077692505050565b83610b7981612751565b9450505b5080610b8881612751565b915050610af0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610879565b6008546001600160a01b03163314610c1a5760405162461bcd60e51b815260040161087990612706565b604051600090339047908381818185875af1925050503d8060008114610c5c576040519150601f19603f3d011682016040523d82523d6000602084013e610c61565b606091505b50509050806109f35760405162461bcd60e51b815260206004820152601a60248201527f5769746864726177616c206f662066756e6473206661696c65640000000000006044820152606401610879565b6109b083838360405180602001604052806000815250611241565b600080548210610d2b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610879565b5090565b6008546001600160a01b03163314610d595760405162461bcd60e51b815260040161087990612706565b6009610d668284836127b0565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610d98929190612871565b60405180910390a15050565b6000610daf82611af3565b5192915050565b60098054610dc3906126cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610def906126cc565b8015610e3c5780601f10610e1157610100808354040283529160200191610e3c565b820191906000526020600020905b815481529060010190602001808311610e1f57829003601f168201915b505050505081565b60006001600160a01b038216610eb05760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610879565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610eff5760405162461bcd60e51b815260040161087990612706565b610f096000611c9d565b565b604080518082019091526000808252602082015261077682611af3565b60606002805461078b906126cc565b323314610f865760405162461bcd60e51b815260206004820181905260248201527f436f6e7472616374206973206e6f7420616c6c6f77656420746f206d696e742e6044820152606401610879565b6002600854600160a01b900460ff166002811115610fa657610fa6612443565b14610ff35760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206973206e6f74206163746976652e0000000000006044820152606401610879565b7f000000000000000000000000000000000000000000000000000000000000000a81111561106e5760405162461bcd60e51b815260206004820152602260248201527f596f752063616e2774206d696e74206d6f7265207468616e20313020746f6b656044820152616e7360f01b6064820152608401610879565b61107f8166470de4df8200006128a0565b3410156110c35760405162461bcd60e51b81526020600482015260126024820152712737ba1032b737bab3b43a10333ab732399760711b6044820152606401610879565b7f000000000000000000000000000000000000000000000000000000000000115c816110ee60005490565b6110f891906128b7565b111561113d5760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b6044820152606401610879565b6111473382611cef565b60408051338152602081018390527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe9101610a79565b336001600160a01b038316036111d55760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610879565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61124c848484611581565b61125884848484611d0d565b6112745760405162461bcd60e51b8152600401610879906128ca565b50505050565b6060600061128783611e0f565b905060008151116112a757604051806020016040528060008152506112c8565b806040516020016112b8919061291d565b6040516020818303038152906040525b9392505050565b32331461131e5760405162461bcd60e51b815260206004820181905260248201527f436f6e7472616374206973206e6f7420616c6c6f77656420746f206d696e742e6044820152606401610879565b6001600854600160a01b900460ff16600281111561133e5761133e612443565b1461138b5760405162461bcd60e51b815260206004820152601760248201527f467265656d696e74206973206e6f74206163746976652e0000000000000000006044820152606401610879565b80600a5461139991906128a0565b3410156113dd5760405162461bcd60e51b81526020600482015260126024820152712737ba1032b737bab3b43a10333ab732399760711b6044820152606401610879565b7f00000000000000000000000000000000000000000000000000000000000000028111156114575760405162461bcd60e51b815260206004820152602160248201527f596f752063616e2774206d696e74206d6f7265207468616e203220746f6b656e6044820152607360f81b6064820152608401610879565b7f000000000000000000000000000000000000000000000000000000000000115c816110ee60005490565b600061077682611ec5565b6008546001600160a01b031633146114b75760405162461bcd60e51b815260040161087990612706565b6001600160a01b03811661151c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610879565b6109f381611c9d565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061158c82611af3565b80519091506000906001600160a01b0316336001600160a01b031614806115c35750336115b88461080e565b6001600160a01b0316145b806115d5575081516115d590336106c1565b90508061163f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610879565b846001600160a01b031682600001516001600160a01b0316146116b35760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610879565b6001600160a01b0384166117175760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610879565b6117276000848460000151611525565b6001600160a01b03851660009081526004602052604081208054600192906117599084906001600160801b0316612946565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926117a59185911661296d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561182d8460016128b7565b6000818152600360205260409020549091506001600160a01b03166118bf57611857816000541190565b156118bf5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600754816119595760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610879565b6000600161196784846128b7565b611971919061298d565b905061199e60017f000000000000000000000000000000000000000000000000000000000000115c61298d565b8111156119d3576119d060017f000000000000000000000000000000000000000000000000000000000000115c61298d565b90505b6119de816000541190565b611a395760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610879565b815b818111611adf576000818152600360205260409020546001600160a01b0316611acd576000611a6982611af3565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611ad781612751565b915050611a3b565b50611aeb8160016128b7565b600755505050565b6040805180820190915260008082526020820152611b12826000541190565b611b715760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610879565b60007f000000000000000000000000000000000000000000000000000000000000000a8310611bd257611bc47f000000000000000000000000000000000000000000000000000000000000000a8461298d565b611bcf9060016128b7565b90505b825b818110611c3c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c2957949350505050565b5080611c34816129a0565b915050611bd4565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610879565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d09828260405180602001604052806000815250611f63565b5050565b60006001600160a01b0384163b15611e0357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d519033908990889088906004016129b7565b6020604051808303816000875af1925050508015611d8c575060408051601f3d908101601f19168201909252611d89918101906129f4565b60015b611de9573d808015611dba576040519150601f19603f3d011682016040523d82523d6000602084013e611dbf565b606091505b508051600003611de15760405162461bcd60e51b8152600401610879906128ca565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e07565b5060015b949350505050565b6060611e1c826000541190565b611e805760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610879565b6000611e8a61223e565b90506000815111611eaa57604051806020016040528060008152506112c8565b80611eb48461224d565b6040516020016112b8929190612a11565b60006001600160a01b038216611f375760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610879565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b038416611fc65760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610879565b611fd1816000541190565b1561201e5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610879565b7f000000000000000000000000000000000000000000000000000000000000000a8311156120995760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610879565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906120f590879061296d565b6001600160801b03168152602001858360200151612113919061296d565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122335760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121f76000888488611d0d565b6122135760405162461bcd60e51b8152600401610879906128ca565b8161221d81612751565b925050808061222b90612751565b9150506121aa565b506000819055611901565b60606009805461078b906126cc565b6060816000036122745750506040805180820190915260018152600360fc1b602082015290565b8160005b811561229e578061228881612751565b91506122979050600a83612a56565b9150612278565b60008167ffffffffffffffff8111156122b9576122b96125a7565b6040519080825280601f01601f1916602001820160405280156122e3576020820181803683370190505b5090505b8415611e07576122f860018361298d565b9150612305600a86612a6a565b6123109060306128b7565b60f81b81838151811061232557612325612a7e565b60200101906001600160f81b031916908160001a905350612347600a86612a56565b94506122e7565b6001600160e01b0319811681146109f357600080fd5b60006020828403121561237657600080fd5b81356112c88161234e565b60005b8381101561239c578181015183820152602001612384565b50506000910152565b600081518084526123bd816020860160208601612381565b601f01601f19169290920160200192915050565b6020815260006112c860208301846123a5565b6000602082840312156123f657600080fd5b5035919050565b80356001600160a01b038116811461241457600080fd5b919050565b6000806040838503121561242c57600080fd5b612435836123fd565b946020939093013593505050565b634e487b7160e01b600052602160045260246000fd5b602081016003831061247b57634e487b7160e01b600052602160045260246000fd5b91905290565b60008060006060848603121561249657600080fd5b61249f846123fd565b92506124ad602085016123fd565b9150604084013590509250925092565b6000602082840312156124cf57600080fd5b8135600381106112c857600080fd5b600080602083850312156124f157600080fd5b823567ffffffffffffffff8082111561250957600080fd5b818501915085601f83011261251d57600080fd5b81358181111561252c57600080fd5b86602082850101111561253e57600080fd5b60209290920196919550909350505050565b60006020828403121561256257600080fd5b6112c8826123fd565b6000806040838503121561257e57600080fd5b612587836123fd565b91506020830135801515811461259c57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156125d357600080fd5b6125dc856123fd565b93506125ea602086016123fd565b925060408501359150606085013567ffffffffffffffff8082111561260e57600080fd5b818701915087601f83011261262257600080fd5b813581811115612634576126346125a7565b604051601f8201601f19908116603f0116810190838211818310171561265c5761265c6125a7565b816040528281528a602084870101111561267557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156126ac57600080fd5b6126b5836123fd565b91506126c3602084016123fd565b90509250929050565b600181811c908216806126e057607f821691505b60208210810361270057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016127635761276361273b565b5060010190565b601f8211156109b057600081815260208120601f850160051c810160208610156127915750805b601f850160051c820191505b818110156119015782815560010161279d565b67ffffffffffffffff8311156127c8576127c86125a7565b6127dc836127d683546126cc565b8361276a565b6000601f84116001811461281057600085156127f85750838201355b600019600387901b1c1916600186901b17835561286a565b600083815260209020601f19861690835b828110156128415786850135825560209485019460019092019101612821565b508682101561285e5760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b80820281158282048414176107765761077661273b565b808201808211156107765761077661273b565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000825161292f818460208701612381565b64173539b7b760d91b920191825250600501919050565b6001600160801b038281168282160390808211156129665761296661273b565b5092915050565b6001600160801b038181168382160190808211156129665761296661273b565b818103818111156107765761077661273b565b6000816129af576129af61273b565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129ea908301846123a5565b9695505050505050565b600060208284031215612a0657600080fd5b81516112c88161234e565b60008351612a23818460208801612381565b835190830190612a37818360208801612381565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b600082612a6557612a65612a40565b500490565b600082612a7957612a79612a40565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220e6cffeaf03ddf37cd85a34b6423c26efc329911d5dd73f100363bdef02e89ee664736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000115c0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59696a526e6365615a4153354b594e6868706133694755567234784b4d4247795a624552654843366763754d2f00000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://QmYijRnceaZAS5KYNhhpa3iGUVr4xKMBGyZbEReHC6gcuM/
Arg [1] : _maxFreeMint (uint256): 2
Arg [2] : _maxPublicMint (uint256): 10
Arg [3] : _maxSupply (uint256): 4444

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 000000000000000000000000000000000000000000000000000000000000115c
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [5] : 697066733a2f2f516d59696a526e6365615a4153354b594e6868706133694755
Arg [6] : 567234784b4d4247795a624552654843366763754d2f00000000000000000000


Deployed Bytecode Sourcemap

60564:3521:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35714:422;;;;;;;;;;-1:-1:-1;35714:422:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35714:422:0;;;;;;;;37675:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39370:292::-;;;;;;;;;;-1:-1:-1;39370:292:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;39370:292:0;1533:203:1;38891:413:0;;;;;;;;;;-1:-1:-1;38891:413:0;;;;;:::i;:::-;;:::i;:::-;;60937:39;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;60937:39:0;2178:177:1;34070:100:0;;;;;;;;;;-1:-1:-1;34123:7:0;34150:12;34070:100;;60701:20;;;;;;;;;;-1:-1:-1;60701:20:0;;;;-1:-1:-1;;;60701:20:0;;;;;;;;;;;;;:::i;40397:162::-;;;;;;;;;;-1:-1:-1;40397:162:0;;;;;:::i;:::-;;:::i;60885:45::-;;;;;;;;;;;;;;;63477:111;;;;;;;;;;-1:-1:-1;63477:111:0;;;;;:::i;:::-;;:::i;63342:127::-;;;;;;;;;;-1:-1:-1;63342:127:0;;;;;:::i;:::-;;:::i;34778:864::-;;;;;;;;;;-1:-1:-1;34778:864:0;;;;;:::i;:::-;;:::i;63894:188::-;;;:::i;40630:177::-;;;;;;;;;;-1:-1:-1;40630:177:0;;;;;:::i;:::-;;:::i;34247:228::-;;;;;;;;;;-1:-1:-1;34247:228:0;;;;;:::i;:::-;;:::i;63186:148::-;;;;;;;;;;-1:-1:-1;63186:148:0;;;;;:::i;:::-;;:::i;37484:124::-;;;;;;;;;;-1:-1:-1;37484:124:0;;;;;:::i;:::-;;:::i;60728:21::-;;;;;;;;;;;;;:::i;36200:258::-;;;;;;;;;;-1:-1:-1;36200:258:0;;;;;:::i;:::-;;:::i;58953:103::-;;;;;;;;;;;;;:::i;60984:42::-;;;;;;;;;;;;61016:10;60984:42;;58302:87;;;;;;;;;;-1:-1:-1;58375:6:0;;-1:-1:-1;;;;;58375:6:0;58302:87;;63717:167;;;;;;;;;;-1:-1:-1;63717:167:0;;;;;:::i;:::-;;:::i;:::-;;;;4461:13:1;;-1:-1:-1;;;;;4457:39:1;4439:58;;4557:4;4545:17;;;4539:24;4565:18;4535:49;4513:20;;;4506:79;;;;4412:18;63717:167:0;4229:362:1;37844:104:0;;;;;;;;;;;;;:::i;62719:457::-;;;;;;:::i;:::-;;:::i;39734:311::-;;;;;;;;;;-1:-1:-1;39734:311:0;;;;;:::i;:::-;;:::i;60756:36::-;;;;;;;;;;;;;;;40878:355;;;;;;;;;;-1:-1:-1;40878:355:0;;;;;:::i;:::-;;:::i;61899:298::-;;;;;;;;;;-1:-1:-1;61899:298:0;;;;;:::i;:::-;;:::i;60799:38::-;;;;;;;;;;;;;;;60844:34;;;;;;;;;;;;;;;45759:43;;;;;;;;;;;;;;;;62210:501;;;;;;:::i;:::-;;:::i;63596:113::-;;;;;;;;;;-1:-1:-1;63596:113:0;;;;;:::i;:::-;;:::i;40116:214::-;;;;;;;;;;-1:-1:-1;40116:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;40287:25:0;;;40258:4;40287:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40116:214;59211:201;;;;;;;;;;-1:-1:-1;59211:201:0;;;;;:::i;:::-;;:::i;35714:422::-;35861:4;-1:-1:-1;;;;;;35903:40:0;;-1:-1:-1;;;35903:40:0;;:105;;-1:-1:-1;;;;;;;35960:48:0;;-1:-1:-1;;;35960:48:0;35903:105;:172;;;-1:-1:-1;;;;;;;36025:50:0;;-1:-1:-1;;;36025:50:0;35903:172;:225;;;-1:-1:-1;;;;;;;;;;3738:40:0;;;36092:36;35883:245;35714:422;-1:-1:-1;;35714:422:0:o;37675:100::-;37729:13;37762:5;37755:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37675:100;:::o;39370:292::-;39474:7;39521:16;39529:7;41545:4;41579:12;-1:-1:-1;41569:22:0;41488:111;39521:16;39499:111;;;;-1:-1:-1;;;39499:111:0;;7075:2:1;39499:111:0;;;7057:21:1;7114:2;7094:18;;;7087:30;7153:34;7133:18;;;7126:62;-1:-1:-1;;;7204:18:1;;;7197:43;7257:19;;39499:111:0;;;;;;;;;-1:-1:-1;39630:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39630:24:0;;39370:292::o;38891:413::-;38964:13;38980:24;38996:7;38980:15;:24::i;:::-;38964:40;;39029:5;-1:-1:-1;;;;;39023:11:0;:2;-1:-1:-1;;;;;39023:11:0;;39015:58;;;;-1:-1:-1;;;39015:58:0;;7489:2:1;39015:58:0;;;7471:21:1;7528:2;7508:18;;;7501:30;7567:34;7547:18;;;7540:62;-1:-1:-1;;;7618:18:1;;;7611:32;7660:19;;39015:58:0;7287:398:1;39015:58:0;31506:10;-1:-1:-1;;;;;39108:21:0;;;;:62;;-1:-1:-1;39133:37:0;39150:5;31506:10;40116:214;:::i;39133:37::-;39086:169;;;;-1:-1:-1;;;39086:169:0;;7892:2:1;39086:169:0;;;7874:21:1;7931:2;7911:18;;;7904:30;7970:34;7950:18;;;7943:62;8041:27;8021:18;;;8014:55;8086:19;;39086:169:0;7690:421:1;39086:169:0;39268:28;39277:2;39281:7;39290:5;39268:8;:28::i;:::-;38953:351;38891:413;;:::o;40397:162::-;40523:28;40533:4;40539:2;40543:7;40523:9;:28::i;63477:111::-;58375:6;;-1:-1:-1;;;;;58375:6:0;31506:10;58522:23;58514:68;;;;-1:-1:-1;;;58514:68:0;;;;;;;:::i;:::-;63552:28:::1;63571:8;63552:18;:28::i;:::-;63477:111:::0;:::o;63342:127::-;58375:6;;-1:-1:-1;;;;;58375:6:0;31506:10;58522:23;58514:68;;;;-1:-1:-1;;;58514:68:0;;;;;;;:::i;:::-;63407:6:::1;:16:::0;;63416:7;;63407:6;-1:-1:-1;;;;63407:16:0::1;-1:-1:-1::0;;;63416:7:0;63407:16:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;63439:22;63453:7;63439:22;;;;;;:::i;:::-;;;;;;;;63342:127:::0;:::o;34778:864::-;34903:7;34944:16;34954:5;34944:9;:16::i;:::-;34936:5;:24;34928:71;;;;-1:-1:-1;;;34928:71:0;;8679:2:1;34928:71:0;;;8661:21:1;8718:2;8698:18;;;8691:30;8757:34;8737:18;;;8730:62;-1:-1:-1;;;8808:18:1;;;8801:32;8850:19;;34928:71:0;8477:398:1;34928:71:0;35010:22;34150:12;;;35010:22;;35142:426;35166:14;35162:1;:18;35142:426;;;35202:31;35236:14;;;:11;:14;;;;;;;;;35202:48;;;;;;;;;-1:-1:-1;;;;;35202:48:0;;;;;-1:-1:-1;;;35202:48:0;;;;;;;;;;;;35269:28;35265:103;;35338:14;;;-1:-1:-1;35265:103:0;35407:5;-1:-1:-1;;;;;35386:26:0;:17;-1:-1:-1;;;;;35386:26:0;;35382:175;;35452:5;35437:11;:20;35433:77;;-1:-1:-1;35489:1:0;-1:-1:-1;35482:8:0;;-1:-1:-1;;;35482:8:0;35433:77;35528:13;;;;:::i;:::-;;;;35382:175;-1:-1:-1;35182:3:0;;;;:::i;:::-;;;;35142:426;;;-1:-1:-1;35578:56:0;;-1:-1:-1;;;35578:56:0;;9354:2:1;35578:56:0;;;9336:21:1;9393:2;9373:18;;;9366:30;9432:34;9412:18;;;9405:62;-1:-1:-1;;;9483:18:1;;;9476:44;9537:19;;35578:56:0;9152:410:1;63894:188:0;58375:6;;-1:-1:-1;;;;;58375:6:0;31506:10;58522:23;58514:68;;;;-1:-1:-1;;;58514:68:0;;;;;;;:::i;:::-;63965:58:::1;::::0;63947:12:::1;::::0;63973:10:::1;::::0;63997:21:::1;::::0;63947:12;63965:58;63947:12;63965:58;63997:21;63973:10;63965:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63946:77;;;64038:7;64030:46;;;::::0;-1:-1:-1;;;64030:46:0;;9979:2:1;64030:46:0::1;::::0;::::1;9961:21:1::0;10018:2;9998:18;;;9991:30;10057:28;10037:18;;;10030:56;10103:18;;64030:46:0::1;9777:350:1::0;40630:177:0;40760:39;40777:4;40783:2;40787:7;40760:39;;;;;;;;;;;;:16;:39::i;34247:228::-;34350:7;34150:12;;34383:5;:21;34375:69;;;;-1:-1:-1;;;34375:69:0;;10334:2:1;34375:69:0;;;10316:21:1;10373:2;10353:18;;;10346:30;10412:34;10392:18;;;10385:62;-1:-1:-1;;;10463:18:1;;;10456:33;10506:19;;34375:69:0;10132:399:1;34375:69:0;-1:-1:-1;34462:5:0;34247:228::o;63186:148::-;58375:6;;-1:-1:-1;;;;;58375:6:0;31506:10;58522:23;58514:68;;;;-1:-1:-1;;;58514:68:0;;;;;;;:::i;:::-;63264:7:::1;:20;63274:10:::0;;63264:7;:20:::1;:::i;:::-;;63300:26;63315:10;;63300:26;;;;;;;:::i;:::-;;;;;;;;63186:148:::0;;:::o;37484:124::-;37548:7;37575:20;37587:7;37575:11;:20::i;:::-;:25;;37484:124;-1:-1:-1;;37484:124:0:o;60728:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36200:258::-;36264:7;-1:-1:-1;;;;;36306:19:0;;36284:112;;;;-1:-1:-1;;;36284:112:0;;13191:2:1;36284:112:0;;;13173:21:1;13230:2;13210:18;;;13203:30;13269:34;13249:18;;;13242:62;-1:-1:-1;;;13320:18:1;;;13313:41;13371:19;;36284:112:0;12989:407:1;36284:112:0;-1:-1:-1;;;;;;36422:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;36422:27:0;;36200:258::o;58953:103::-;58375:6;;-1:-1:-1;;;;;58375:6:0;31506:10;58522:23;58514:68;;;;-1:-1:-1;;;58514:68:0;;;;;;;:::i;:::-;59018:30:::1;59045:1;59018:18;:30::i;:::-;58953:103::o:0;63717:167::-;-1:-1:-1;;;;;;;;;;;;;;;;;63856:20:0;63868:7;63856:11;:20::i;37844:104::-;37900:13;37933:7;37926:14;;;;;:::i;62719:457::-;61218:9;61231:10;61218:23;61210:68;;;;-1:-1:-1;;;61210:68:0;;13603:2:1;61210:68:0;;;13585:21:1;;;13622:18;;;13615:30;13681:34;13661:18;;;13654:62;13733:18;;61210:68:0;13401:356:1;61210:68:0;62808:17:::1;62798:6;::::0;-1:-1:-1;;;62798:6:0;::::1;;;:27;::::0;::::1;;;;;;:::i;:::-;;62790:66;;;::::0;-1:-1:-1;;;62790:66:0;;13964:2:1;62790:66:0::1;::::0;::::1;13946:21:1::0;14003:2;13983:18;;;13976:30;14042:28;14022:18;;;14015:56;14088:18;;62790:66:0::1;13762:350:1::0;62790:66:0::1;62885:13;62875:6;:23;;62867:70;;;::::0;-1:-1:-1;;;62867:70:0;;14319:2:1;62867:70:0::1;::::0;::::1;14301:21:1::0;14358:2;14338:18;;;14331:30;14397:34;14377:18;;;14370:62;-1:-1:-1;;;14448:18:1;;;14441:32;14490:19;;62867:70:0::1;14117:398:1::0;62867:70:0::1;62969:14;62977:6:::0;61016:10:::1;62969:14;:::i;:::-;62956:9;:27;;62948:58;;;::::0;-1:-1:-1;;;62948:58:0;;14895:2:1;62948:58:0::1;::::0;::::1;14877:21:1::0;14934:2;14914:18;;;14907:30;-1:-1:-1;;;14953:18:1;;;14946:48;15011:18;;62948:58:0::1;14693:342:1::0;62948:58:0::1;63051:9;63041:6;63025:13;34123:7:::0;34150:12;;34070:100;63025:13:::1;:22;;;;:::i;:::-;:35;;63017:69;;;::::0;-1:-1:-1;;;63017:69:0;;15372:2:1;63017:69:0::1;::::0;::::1;15354:21:1::0;15411:2;15391:18;;;15384:30;-1:-1:-1;;;15430:18:1;;;15423:50;15490:18;;63017:69:0::1;15170:344:1::0;63017:69:0::1;63097:29;63107:10;63119:6;63097:9;:29::i;:::-;63142:26;::::0;;63149:10:::1;15693:51:1::0;;15775:2;15760:18;;15753:34;;;63142:26:0::1;::::0;15666:18:1;63142:26:0::1;15519:274:1::0;39734:311:0;31506:10;-1:-1:-1;;;;;39852:24:0;;;39844:63;;;;-1:-1:-1;;;39844:63:0;;16000:2:1;39844:63:0;;;15982:21:1;16039:2;16019:18;;;16012:30;16078:28;16058:18;;;16051:56;16124:18;;39844:63:0;15798:350:1;39844:63:0;31506:10;39920:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39920:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39920:53:0;;;;;;;;;;39989:48;;540:41:1;;;39920:42:0;;31506:10;39989:48;;513:18:1;39989:48:0;;;;;;;39734:311;;:::o;40878:355::-;41037:28;41047:4;41053:2;41057:7;41037:9;:28::i;:::-;41098:48;41121:4;41127:2;41131:7;41140:5;41098:22;:48::i;:::-;41076:149;;;;-1:-1:-1;;;41076:149:0;;;;;;;:::i;:::-;40878:355;;;;:::o;61899:298::-;62017:13;62048:17;62068:23;62083:7;62068:14;:23::i;:::-;62048:43;;62142:1;62128:3;62122:17;:21;:67;;;;;;;;;;;;;;;;;62170:3;62153:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;62122:67;62102:87;61899:298;-1:-1:-1;;;61899:298:0:o;62210:501::-;61218:9;61231:10;61218:23;61210:68;;;;-1:-1:-1;;;61210:68:0;;13603:2:1;61210:68:0;;;13585:21:1;;;13622:18;;;13615:30;13681:34;13661:18;;;13654:62;13733:18;;61210:68:0;13401:356:1;61210:68:0;62335:15:::1;62325:6;::::0;-1:-1:-1;;;62325:6:0;::::1;;;:25;::::0;::::1;;;;;;:::i;:::-;;62317:61;;;::::0;-1:-1:-1;;;62317:61:0;;17236:2:1;62317:61:0::1;::::0;::::1;17218:21:1::0;17275:2;17255:18;;;17248:30;17314:25;17294:18;;;17287:53;17357:18;;62317:61:0::1;17034:347:1::0;62317:61:0::1;62427:6;62411:13;;:22;;;;:::i;:::-;62398:9;:35;;62390:66;;;::::0;-1:-1:-1;;;62390:66:0;;14895:2:1;62390:66:0::1;::::0;::::1;14877:21:1::0;14934:2;14914:18;;;14907:30;-1:-1:-1;;;14953:18:1;;;14946:48;15011:18;;62390:66:0::1;14693:342:1::0;62390:66:0::1;62486:11;62476:6;:21;;62468:67;;;::::0;-1:-1:-1;;;62468:67:0;;17588:2:1;62468:67:0::1;::::0;::::1;17570:21:1::0;17627:2;17607:18;;;17600:30;17666:34;17646:18;;;17639:62;-1:-1:-1;;;17717:18:1;;;17710:31;17758:19;;62468:67:0::1;17386:397:1::0;62468:67:0::1;62581:13;62571:6;62555:13;34123:7:::0;34150:12;;34070:100;63596:113;63654:7;63681:20;63695:5;63681:13;:20::i;59211:201::-;58375:6;;-1:-1:-1;;;;;58375:6:0;31506:10;58522:23;58514:68;;;;-1:-1:-1;;;58514:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;59300:22:0;::::1;59292:73;;;::::0;-1:-1:-1;;;59292:73:0;;17990:2:1;59292:73:0::1;::::0;::::1;17972:21:1::0;18029:2;18009:18;;;18002:30;18068:34;18048:18;;;18041:62;-1:-1:-1;;;18119:18:1;;;18112:36;18165:19;;59292:73:0::1;17788:402:1::0;59292:73:0::1;59376:28;59395:8;59376:18;:28::i;45555:196::-:0;45670:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45670:29:0;-1:-1:-1;;;;;45670:29:0;;;;;;;;;45715:28;;45670:24;;45715:28;;;;;;;45555:196;;;:::o;43728:1709::-;43843:35;43881:20;43893:7;43881:11;:20::i;:::-;43956:18;;43843:58;;-1:-1:-1;43914:22:0;;-1:-1:-1;;;;;43940:34:0;31506:10;-1:-1:-1;;;;;43940:34:0;;:87;;;-1:-1:-1;31506:10:0;43991:20;44003:7;43991:11;:20::i;:::-;-1:-1:-1;;;;;43991:36:0;;43940:87;:154;;;-1:-1:-1;44061:18:0;;44044:50;;31506:10;40116:214;:::i;44044:50::-;43914:181;;44130:17;44108:117;;;;-1:-1:-1;;;44108:117:0;;18397:2:1;44108:117:0;;;18379:21:1;18436:2;18416:18;;;18409:30;18475:34;18455:18;;;18448:62;-1:-1:-1;;;18526:18:1;;;18519:48;18584:19;;44108:117:0;18195:414:1;44108:117:0;44282:4;-1:-1:-1;;;;;44260:26:0;:13;:18;;;-1:-1:-1;;;;;44260:26:0;;44238:114;;;;-1:-1:-1;;;44238:114:0;;18816:2:1;44238:114:0;;;18798:21:1;18855:2;18835:18;;;18828:30;18894:34;18874:18;;;18867:62;-1:-1:-1;;;18945:18:1;;;18938:36;18991:19;;44238:114:0;18614:402:1;44238:114:0;-1:-1:-1;;;;;44371:16:0;;44363:66;;;;-1:-1:-1;;;44363:66:0;;19223:2:1;44363:66:0;;;19205:21:1;19262:2;19242:18;;;19235:30;19301:34;19281:18;;;19274:62;-1:-1:-1;;;19352:18:1;;;19345:35;19397:19;;44363:66:0;19021:401:1;44363:66:0;44550:49;44567:1;44571:7;44580:13;:18;;;44550:8;:49::i;:::-;-1:-1:-1;;;;;44612:18:0;;;;;;:12;:18;;;;;:31;;44642:1;;44612:18;:31;;44642:1;;-1:-1:-1;;;;;44612:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;44612:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;44654:16:0;;-1:-1:-1;44654:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;44654:16:0;;:29;;-1:-1:-1;;44654:29:0;;:::i;:::-;;;-1:-1:-1;;;;;44654:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44717:43:0;;;;;;;;-1:-1:-1;;;;;44717:43:0;;;;;;44743:15;44717:43;;;;;;;;;-1:-1:-1;44694:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;44694:66:0;-1:-1:-1;;;;;;44694:66:0;;;;;;;;;;;45022:11;44706:7;-1:-1:-1;45022:11:0;:::i;:::-;45089:1;45048:24;;;:11;:24;;;;;:29;45000:33;;-1:-1:-1;;;;;;45048:29:0;45044:288;;45112:20;45120:11;41545:4;41579:12;-1:-1:-1;41569:22:0;41488:111;45112:20;45108:213;;;45180:125;;;;;;;;45217:18;;-1:-1:-1;;;;;45180:125:0;;;;;;45258:28;;;;45180:125;;;;;;;;;;-1:-1:-1;45153:24:0;;;:11;:24;;;;;;;:152;;;;;;;;;-1:-1:-1;;;45153:152:0;-1:-1:-1;;;;;;45153:152:0;;;;;;;;;;;;45108:213;45368:7;45364:2;-1:-1:-1;;;;;45349:27:0;45358:4;-1:-1:-1;;;;;45349:27:0;;;;;;;;;;;45387:42;43832:1605;;;43728:1709;;;:::o;45915:950::-;46009:24;;46052:12;46044:49;;;;-1:-1:-1;;;46044:49:0;;20036:2:1;46044:49:0;;;20018:21:1;20075:2;20055:18;;;20048:30;20114:26;20094:18;;;20087:54;20158:18;;46044:49:0;19834:348:1;46044:49:0;46104:16;46154:1;46123:28;46143:8;46123:17;:28;:::i;:::-;:32;;;;:::i;:::-;46104:51;-1:-1:-1;46181:18:0;46198:1;46181:14;:18;:::i;:::-;46170:8;:29;46166:91;;;46227:18;46244:1;46227:14;:18;:::i;:::-;46216:29;;46166:91;46380:17;46388:8;41545:4;41579:12;-1:-1:-1;41569:22:0;41488:111;46380:17;46372:68;;;;-1:-1:-1;;;46372:68:0;;20522:2:1;46372:68:0;;;20504:21:1;20561:2;20541:18;;;20534:30;20600:34;20580:18;;;20573:62;-1:-1:-1;;;20651:18:1;;;20644:36;20697:19;;46372:68:0;20320:402:1;46372:68:0;46468:17;46451:357;46492:8;46487:1;:13;46451:357;;46557:1;46526:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;46526:19:0;46522:275;;46580:31;46614:14;46626:1;46614:11;:14::i;:::-;46664:117;;;;;;;;46701:14;;-1:-1:-1;;;;;46664:117:0;;;;;;46738:24;;;;46664:117;;;;;;;;;;-1:-1:-1;46647:14:0;;;:11;:14;;;;;;;:134;;;;;;;;;-1:-1:-1;;;46647:134:0;-1:-1:-1;;;;;;46647:134:0;;;;;;;;;;;;-1:-1:-1;46522:275:0;46502:3;;;;:::i;:::-;;;;46451:357;;;-1:-1:-1;46845:12:0;:8;46856:1;46845:12;:::i;:::-;46818:24;:39;-1:-1:-1;;;45915:950:0:o;36740:682::-;-1:-1:-1;;;;;;;;;;;;;;;;;36875:16:0;36883:7;41545:4;41579:12;-1:-1:-1;41569:22:0;41488:111;36875:16;36867:71;;;;-1:-1:-1;;;36867:71:0;;20929:2:1;36867:71:0;;;20911:21:1;20968:2;20948:18;;;20941:30;21007:34;20987:18;;;20980:62;-1:-1:-1;;;21058:18:1;;;21051:40;21108:19;;36867:71:0;20727:406:1;36867:71:0;36951:26;37003:12;36992:7;:23;36988:103;;37053:22;37063:12;37053:7;:22;:::i;:::-;:26;;37078:1;37053:26;:::i;:::-;37032:47;;36988:103;37123:7;37103:242;37140:18;37132:4;:26;37103:242;;37183:31;37217:17;;;:11;:17;;;;;;;;;37183:51;;;;;;;;;-1:-1:-1;;;;;37183:51:0;;;;;-1:-1:-1;;;37183:51:0;;;;;;;;;;;;37253:28;37249:85;;37309:9;36740:682;-1:-1:-1;;;;36740:682:0:o;37249:85::-;-1:-1:-1;37160:6:0;;;;:::i;:::-;;;;37103:242;;;-1:-1:-1;37357:57:0;;-1:-1:-1;;;37357:57:0;;21481:2:1;37357:57:0;;;21463:21:1;21520:2;21500:18;;;21493:30;21559:34;21539:18;;;21532:62;-1:-1:-1;;;21610:18:1;;;21603:45;21665:19;;37357:57:0;21279:411:1;59572:191:0;59665:6;;;-1:-1:-1;;;;;59682:17:0;;;-1:-1:-1;;;;;;59682:17:0;;;;;;;59715:40;;59665:6;;;59682:17;59665:6;;59715:40;;59646:16;;59715:40;59635:128;59572:191;:::o;41607:104::-;41676:27;41686:2;41690:8;41676:27;;;;;;;;;;;;:9;:27::i;:::-;41607:104;;:::o;47430:985::-;47585:4;-1:-1:-1;;;;;47606:13:0;;14215:19;:23;47602:806;;47659:175;;-1:-1:-1;;;47659:175:0;;-1:-1:-1;;;;;47659:36:0;;;;;:175;;31506:10;;47753:4;;47780:7;;47810:5;;47659:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47659:175:0;;;;;;;;-1:-1:-1;;47659:175:0;;;;;;;;;;;;:::i;:::-;;;47638:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48021:6;:13;48038:1;48021:18;48017:321;;48064:109;;-1:-1:-1;;;48064:109:0;;;;;;;:::i;48017:321::-;48288:6;48282:13;48273:6;48269:2;48265:15;48258:38;47638:715;-1:-1:-1;;;;;;47898:55:0;-1:-1:-1;;;47898:55:0;;-1:-1:-1;47891:62:0;;47602:806;-1:-1:-1;48392:4:0;47602:806;47430:985;;;;;;:::o;38019:468::-;38137:13;38190:16;38198:7;41545:4;41579:12;-1:-1:-1;41569:22:0;41488:111;38190:16;38168:113;;;;-1:-1:-1;;;38168:113:0;;22645:2:1;38168:113:0;;;22627:21:1;22684:2;22664:18;;;22657:30;22723:34;22703:18;;;22696:62;-1:-1:-1;;;22774:18:1;;;22767:45;22829:19;;38168:113:0;22443:411:1;38168:113:0;38294:21;38318:10;:8;:10::i;:::-;38294:34;;38383:1;38365:7;38359:21;:25;:120;;;;;;;;;;;;;;;;;38428:7;38437:18;:7;:16;:18::i;:::-;38411:45;;;;;;;;;:::i;36466:266::-;36527:7;-1:-1:-1;;;;;36569:19:0;;36547:118;;;;-1:-1:-1;;;36547:118:0;;23562:2:1;36547:118:0;;;23544:21:1;23601:2;23581:18;;;23574:30;23640:34;23620:18;;;23613:62;-1:-1:-1;;;23691:18:1;;;23684:47;23748:19;;36547:118:0;23360:413:1;36547:118:0;-1:-1:-1;;;;;;36691:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;36691:32:0;;-1:-1:-1;;;;;36691:32:0;;36466:266::o;42074:1400::-;42197:20;42220:12;-1:-1:-1;;;;;42251:16:0;;42243:62;;;;-1:-1:-1;;;42243:62:0;;23980:2:1;42243:62:0;;;23962:21:1;24019:2;23999:18;;;23992:30;24058:34;24038:18;;;24031:62;-1:-1:-1;;;24109:18:1;;;24102:31;24150:19;;42243:62:0;23778:397:1;42243:62:0;42450:21;42458:12;41545:4;41579:12;-1:-1:-1;41569:22:0;41488:111;42450:21;42449:22;42441:64;;;;-1:-1:-1;;;42441:64:0;;24382:2:1;42441:64:0;;;24364:21:1;24421:2;24401:18;;;24394:30;24460:31;24440:18;;;24433:59;24509:18;;42441:64:0;24180:353:1;42441:64:0;42536:12;42524:8;:24;;42516:71;;;;-1:-1:-1;;;42516:71:0;;24740:2:1;42516:71:0;;;24722:21:1;24779:2;24759:18;;;24752:30;24818:34;24798:18;;;24791:62;-1:-1:-1;;;24869:18:1;;;24862:32;24911:19;;42516:71:0;24538:398:1;42516:71:0;-1:-1:-1;;;;;42707:16:0;;42674:30;42707:16;;;:12;:16;;;;;;;;;42674:49;;;;;;;;;-1:-1:-1;;;;;42674:49:0;;;;;-1:-1:-1;;;42674:49:0;;;;;;;;;;;42753:135;;;;;;;;42779:19;;42674:49;;42753:135;;;42779:39;;42809:8;;42779:39;:::i;:::-;-1:-1:-1;;;;;42753:135:0;;;;;42868:8;42833:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;42753:135:0;;;;;;-1:-1:-1;;;;;42734:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;42734:154:0;;;;;;;;;;;;42927:43;;;;;;;;;;;42953:15;42927:43;;;;;;;;42899:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;42899:71:0;-1:-1:-1;;;;;;42899:71:0;;;;;;;;;;;;;;;;;;42911:12;;43031:325;43055:8;43051:1;:12;43031:325;;;43090:38;;43115:12;;-1:-1:-1;;;;;43090:38:0;;;43107:1;;43090:38;;43107:1;;43090:38;43169:59;43200:1;43204:2;43208:12;43222:5;43169:22;:59::i;:::-;43143:172;;;;-1:-1:-1;;;43143:172:0;;;;;;;:::i;:::-;43330:14;;;;:::i;:::-;;;;43065:3;;;;;:::i;:::-;;;;43031:325;;;-1:-1:-1;43368:12:0;:27;;;43406:60;40878:355;61791:100;61843:13;61876:7;61869:14;;;;;:::i;10928:723::-;10984:13;11205:5;11214:1;11205:10;11201:53;;-1:-1:-1;;11232:10:0;;;;;;;;;;;;-1:-1:-1;;;11232:10:0;;;;;10928:723::o;11201:53::-;11279:5;11264:12;11320:78;11327:9;;11320:78;;11353:8;;;;:::i;:::-;;-1:-1:-1;11376:10:0;;-1:-1:-1;11384:2:0;11376:10;;:::i;:::-;;;11320:78;;;11408:19;11440:6;11430:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11430:17:0;;11408:39;;11458:154;11465:10;;11458:154;;11492:11;11502:1;11492:11;;:::i;:::-;;-1:-1:-1;11561:10:0;11569:2;11561:5;:10;:::i;:::-;11548:24;;:2;:24;:::i;:::-;11535:39;;11518:6;11525;11518:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;11518:56:0;;;;;;;;-1:-1:-1;11589:11:0;11598:2;11589:11;;:::i;:::-;;;11458:154;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:127::-;2421:10;2416:3;2412:20;2409:1;2402:31;2452:4;2449:1;2442:15;2476:4;2473:1;2466:15;2492:339;2635:2;2620:18;;2668:1;2657:13;;2647:144;;2713:10;2708:3;2704:20;2701:1;2694:31;2748:4;2745:1;2738:15;2776:4;2773:1;2766:15;2647:144;2800:25;;;2492:339;:::o;2836:328::-;2913:6;2921;2929;2982:2;2970:9;2961:7;2957:23;2953:32;2950:52;;;2998:1;2995;2988:12;2950:52;3021:29;3040:9;3021:29;:::i;:::-;3011:39;;3069:38;3103:2;3092:9;3088:18;3069:38;:::i;:::-;3059:48;;3154:2;3143:9;3139:18;3126:32;3116:42;;2836:328;;;;;:::o;3169:267::-;3239:6;3292:2;3280:9;3271:7;3267:23;3263:32;3260:52;;;3308:1;3305;3298:12;3260:52;3347:9;3334:23;3386:1;3379:5;3376:12;3366:40;;3402:1;3399;3392:12;3441:592;3512:6;3520;3573:2;3561:9;3552:7;3548:23;3544:32;3541:52;;;3589:1;3586;3579:12;3541:52;3629:9;3616:23;3658:18;3699:2;3691:6;3688:14;3685:34;;;3715:1;3712;3705:12;3685:34;3753:6;3742:9;3738:22;3728:32;;3798:7;3791:4;3787:2;3783:13;3779:27;3769:55;;3820:1;3817;3810:12;3769:55;3860:2;3847:16;3886:2;3878:6;3875:14;3872:34;;;3902:1;3899;3892:12;3872:34;3947:7;3942:2;3933:6;3929:2;3925:15;3921:24;3918:37;3915:57;;;3968:1;3965;3958:12;3915:57;3999:2;3991:11;;;;;4021:6;;-1:-1:-1;3441:592:1;;-1:-1:-1;;;;3441:592:1:o;4038:186::-;4097:6;4150:2;4138:9;4129:7;4125:23;4121:32;4118:52;;;4166:1;4163;4156:12;4118:52;4189:29;4208:9;4189:29;:::i;4596:347::-;4661:6;4669;4722:2;4710:9;4701:7;4697:23;4693:32;4690:52;;;4738:1;4735;4728:12;4690:52;4761:29;4780:9;4761:29;:::i;:::-;4751:39;;4840:2;4829:9;4825:18;4812:32;4887:5;4880:13;4873:21;4866:5;4863:32;4853:60;;4909:1;4906;4899:12;4853:60;4932:5;4922:15;;;4596:347;;;;;:::o;4948:127::-;5009:10;5004:3;5000:20;4997:1;4990:31;5040:4;5037:1;5030:15;5064:4;5061:1;5054:15;5080:1138;5175:6;5183;5191;5199;5252:3;5240:9;5231:7;5227:23;5223:33;5220:53;;;5269:1;5266;5259:12;5220:53;5292:29;5311:9;5292:29;:::i;:::-;5282:39;;5340:38;5374:2;5363:9;5359:18;5340:38;:::i;:::-;5330:48;;5425:2;5414:9;5410:18;5397:32;5387:42;;5480:2;5469:9;5465:18;5452:32;5503:18;5544:2;5536:6;5533:14;5530:34;;;5560:1;5557;5550:12;5530:34;5598:6;5587:9;5583:22;5573:32;;5643:7;5636:4;5632:2;5628:13;5624:27;5614:55;;5665:1;5662;5655:12;5614:55;5701:2;5688:16;5723:2;5719;5716:10;5713:36;;;5729:18;;:::i;:::-;5804:2;5798:9;5772:2;5858:13;;-1:-1:-1;;5854:22:1;;;5878:2;5850:31;5846:40;5834:53;;;5902:18;;;5922:22;;;5899:46;5896:72;;;5948:18;;:::i;:::-;5988:10;5984:2;5977:22;6023:2;6015:6;6008:18;6063:7;6058:2;6053;6049;6045:11;6041:20;6038:33;6035:53;;;6084:1;6081;6074:12;6035:53;6140:2;6135;6131;6127:11;6122:2;6114:6;6110:15;6097:46;6185:1;6180:2;6175;6167:6;6163:15;6159:24;6152:35;6206:6;6196:16;;;;;;;5080:1138;;;;;;;:::o;6223:260::-;6291:6;6299;6352:2;6340:9;6331:7;6327:23;6323:32;6320:52;;;6368:1;6365;6358:12;6320:52;6391:29;6410:9;6391:29;:::i;:::-;6381:39;;6439:38;6473:2;6462:9;6458:18;6439:38;:::i;:::-;6429:48;;6223:260;;;;;:::o;6488:380::-;6567:1;6563:12;;;;6610;;;6631:61;;6685:4;6677:6;6673:17;6663:27;;6631:61;6738:2;6730:6;6727:14;6707:18;6704:38;6701:161;;6784:10;6779:3;6775:20;6772:1;6765:31;6819:4;6816:1;6809:15;6847:4;6844:1;6837:15;6701:161;;6488:380;;;:::o;8116:356::-;8318:2;8300:21;;;8337:18;;;8330:30;8396:34;8391:2;8376:18;;8369:62;8463:2;8448:18;;8116:356::o;8880:127::-;8941:10;8936:3;8932:20;8929:1;8922:31;8972:4;8969:1;8962:15;8996:4;8993:1;8986:15;9012:135;9051:3;9072:17;;;9069:43;;9092:18;;:::i;:::-;-1:-1:-1;9139:1:1;9128:13;;9012:135::o;10662:545::-;10764:2;10759:3;10756:11;10753:448;;;10800:1;10825:5;10821:2;10814:17;10870:4;10866:2;10856:19;10940:2;10928:10;10924:19;10921:1;10917:27;10911:4;10907:38;10976:4;10964:10;10961:20;10958:47;;;-1:-1:-1;10999:4:1;10958:47;11054:2;11049:3;11045:12;11042:1;11038:20;11032:4;11028:31;11018:41;;11109:82;11127:2;11120:5;11117:13;11109:82;;;11172:17;;;11153:1;11142:13;11109:82;;11383:1206;11507:18;11502:3;11499:27;11496:53;;;11529:18;;:::i;:::-;11558:94;11648:3;11608:38;11640:4;11634:11;11608:38;:::i;:::-;11602:4;11558:94;:::i;:::-;11678:1;11703:2;11698:3;11695:11;11720:1;11715:616;;;;12375:1;12392:3;12389:93;;;-1:-1:-1;12448:19:1;;;12435:33;12389:93;-1:-1:-1;;11340:1:1;11336:11;;;11332:24;11328:29;11318:40;11364:1;11360:11;;;11315:57;12495:78;;11688:895;;11715:616;10609:1;10602:14;;;10646:4;10633:18;;-1:-1:-1;;11751:17:1;;;11852:9;11874:229;11888:7;11885:1;11882:14;11874:229;;;11977:19;;;11964:33;11949:49;;12084:4;12069:20;;;;12037:1;12025:14;;;;11904:12;11874:229;;;11878:3;12131;12122:7;12119:16;12116:159;;;12255:1;12251:6;12245:3;12239;12236:1;12232:11;12228:21;12224:34;12220:39;12207:9;12202:3;12198:19;12185:33;12181:79;12173:6;12166:95;12116:159;;;12318:1;12312:3;12309:1;12305:11;12301:19;12295:4;12288:33;11688:895;;;11383:1206;;;:::o;12594:390::-;12753:2;12742:9;12735:21;12792:6;12787:2;12776:9;12772:18;12765:34;12849:6;12841;12836:2;12825:9;12821:18;12808:48;12905:1;12876:22;;;12900:2;12872:31;;;12865:42;;;;12968:2;12947:15;;;-1:-1:-1;;12943:29:1;12928:45;12924:54;;12594:390;-1:-1:-1;12594:390:1:o;14520:168::-;14593:9;;;14624;;14641:15;;;14635:22;;14621:37;14611:71;;14662:18;;:::i;15040:125::-;15105:9;;;15126:10;;;15123:36;;;15139:18;;:::i;16153:415::-;16355:2;16337:21;;;16394:2;16374:18;;;16367:30;16433:34;16428:2;16413:18;;16406:62;-1:-1:-1;;;16499:2:1;16484:18;;16477:49;16558:3;16543:19;;16153:415::o;16573:456::-;16805:3;16843:6;16837:13;16859:66;16918:6;16913:3;16906:4;16898:6;16894:17;16859:66;:::i;:::-;-1:-1:-1;;;16947:16:1;;16972:22;;;-1:-1:-1;17021:1:1;17010:13;;16573:456;-1:-1:-1;16573:456:1:o;19427:200::-;-1:-1:-1;;;;;19563:10:1;;;19551;;;19547:27;;19586:12;;;19583:38;;;19601:18;;:::i;:::-;19583:38;19427:200;;;;:::o;19632:197::-;-1:-1:-1;;;;;19754:10:1;;;19766;;;19750:27;;19789:11;;;19786:37;;;19803:18;;:::i;20187:128::-;20254:9;;;20275:11;;;20272:37;;;20289:18;;:::i;21138:136::-;21177:3;21205:5;21195:39;;21214:18;;:::i;:::-;-1:-1:-1;;;21250:18:1;;21138:136::o;21695:489::-;-1:-1:-1;;;;;21964:15:1;;;21946:34;;22016:15;;22011:2;21996:18;;21989:43;22063:2;22048:18;;22041:34;;;22111:3;22106:2;22091:18;;22084:31;;;21889:4;;22132:46;;22158:19;;22150:6;22132:46;:::i;:::-;22124:54;21695:489;-1:-1:-1;;;;;;21695:489:1:o;22189:249::-;22258:6;22311:2;22299:9;22290:7;22286:23;22282:32;22279:52;;;22327:1;22324;22317:12;22279:52;22359:9;22353:16;22378:30;22402:5;22378:30;:::i;22859:496::-;23038:3;23076:6;23070:13;23092:66;23151:6;23146:3;23139:4;23131:6;23127:17;23092:66;:::i;:::-;23221:13;;23180:16;;;;23243:70;23221:13;23180:16;23290:4;23278:17;;23243:70;:::i;:::-;23329:20;;22859:496;-1:-1:-1;;;;22859:496:1:o;24941:127::-;25002:10;24997:3;24993:20;24990:1;24983:31;25033:4;25030:1;25023:15;25057:4;25054:1;25047:15;25073:120;25113:1;25139;25129:35;;25144:18;;:::i;:::-;-1:-1:-1;25178:9:1;;25073:120::o;25198:112::-;25230:1;25256;25246:35;;25261:18;;:::i;:::-;-1:-1:-1;25295:9:1;;25198:112::o;25315:127::-;25376:10;25371:3;25367:20;25364:1;25357:31;25407:4;25404:1;25397:15;25431:4;25428:1;25421:15

Swarm Source

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