ETH Price: $3,481.54 (-1.52%)
Gas: 2 Gwei

Token

METAHERMIA (HERMIA)
 

Overview

Max Total Supply

600 HERMIA

Holders

231

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 HERMIA
0xef59700f14de94fda0639135cf47622f74ddfa6c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

MetaHermia is a battle royale play-to-earn game, with Ultra-realistic graphics & cinematics, using Unreal Engine where top 1 player/team of each game, can earn $HERMIA which can be used for: staking and in-game purchases, or can be swapped for other cryptocurrencies.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
METAHERMIA

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/METAHERMIA.sol



pragma solidity ^0.8.7;



/**

███╗░░░███╗███████╗████████╗░█████╗░██╗░░██╗███████╗██████╗░███╗░░░███╗██╗░█████╗░

████╗░████║██╔════╝╚══██╔══╝██╔══██╗██║░░██║██╔════╝██╔══██╗████╗░████║██║██╔══██╗

██╔████╔██║█████╗░░░░░██║░░░███████║███████║█████╗░░██████╔╝██╔████╔██║██║███████║

██║╚██╔╝██║██╔══╝░░░░░██║░░░██╔══██║██╔══██║██╔══╝░░██╔══██╗██║╚██╔╝██║██║██╔══██║

██║░╚═╝░██║███████╗░░░██║░░░██║░░██║██║░░██║███████╗██║░░██║██║░╚═╝░██║██║██║░░██║

╚═╝░░░░░╚═╝╚══════╝░░░╚═╝░░░╚═╝░░╚═╝╚═╝░░╚═╝╚══════╝╚═╝░░╚═╝╚═╝░░░░░╚═╝╚═╝╚═╝░░╚═╝

**/








contract METAHERMIA is ERC721Enumerable, Ownable, ReentrancyGuard {



    //To increment the id of the NFTs

    using Counters for Counters.Counter;

    //To concatenate the URL of an NFT

    using Strings for uint256;

    //Id of the next NFT to mint

    Counters.Counter private _nftIdCounter;

    //Number of NFTs in the collection

    uint public constant MAX_SUPPLY = 7777;

    //Number of NFTs presale one

    uint public constant MAX_SUPPLY_PRESALEONE = 1000;

    //Number of NFTs presale two

    uint public constant MAX_SUPPLY_PRESALETWO = 4000;

    //Maximum number of NFTs an address can mint

    uint public max_mint_allowed = 100;

    //Price of one NFT in presale1

    uint public pricePresaleOne = 0.05 ether;

    //Price of one NFT in presale2

    uint public pricePresaleTwo = 0.1 ether;

    //Price of one NFT in sale

    uint public priceSale = 0.2 ether;

    uint256 public nftPerAddressLimit = 100;

    //Is the contract paused ?

    bool public paused = false;

    //whiteslited condition

    bool public onlyWhitelisted = true;

    //Whitelisted Addresses

    address[] public whitelistedAddresses;

    //Mapping Address Minted Balance

    mapping(address => uint256) public addressMintedBalance;

    //URI of the NFTs when revealed

    string public baseURI;

    //The extension of the file containing the Metadatas of the NFTs

    string public baseExtension = ".json";







    //The different stages of selling the collection

    enum Steps {

        Before,

        PresaleOne,

        PauseOne,

        PresaleTwo,

        PauseTwo,

        Sale,

        SoldOut

    }



    Steps public sellingStep;

    

    //Owner of the smart contract

    address private _owner;





    //Constructor of the collection

    constructor(string memory _theBaseURI) ERC721("METAHERMIA", "HERMIA") {

        _nftIdCounter.increment();

        transferOwnership(msg.sender);

        sellingStep = Steps.Before;

        baseURI = _theBaseURI;

    }



    /** 

    * @param _paused True or false if you want the contract to be paused or not

    **/

    function setPaused(bool _paused) external onlyOwner {

        paused = _paused;

    }



    /** 

    * @param _maxMintAllowed The number of NFTs that an address can mint

    **/

    function changeMaxMintAllowed(uint _maxMintAllowed) external onlyOwner {

        max_mint_allowed = _maxMintAllowed;

    }



    /** Change nftPerAddressLimit **/

    function setNftPerAddressLimit(uint256 _limit) public onlyOwner {

    nftPerAddressLimit = _limit;

    }



    /** Change setOnlyWhitelisted state **/

    function setOnlyWhitelisted(bool _state) public onlyOwner {

    onlyWhitelisted = _state;

    }

  

    /** Change setOnlyWhitelisted state **/

    function whitelistUsers(address[] calldata _users) public onlyOwner {

    delete whitelistedAddresses;

    whitelistedAddresses = _users;

     }





    /**

    * @param _priceSale The new price of one NFT for the sale

    **/

    function changePriceSale(uint _priceSale) external onlyOwner {

        priceSale = _priceSale;

    }



    /**

    * @param _newBaseURI The new base URI

    **/

    function setBaseUri(string memory _newBaseURI) external onlyOwner {

        baseURI = _newBaseURI;

    }



    /**

    * @return The URI of the NFTs

    **/

    function _baseURI() internal view virtual override returns (string memory) {

            return baseURI;

    }



    /**

    * @param _baseExtension the new extension of the metadatas files

    **/

    function setBaseExtension(string memory _baseExtension) external onlyOwner {

        baseExtension = _baseExtension;

    }



    /** 

    * @notice Allows to change the sellinStep to PresaleOne

    **/

    function setUpPresaleOne() external onlyOwner {

        sellingStep = Steps.PresaleOne;

    }



    /** 

    * @notice Allows to change the sellinStep to PauseOne

    **/

    function setUpPauseOne() external onlyOwner {

        sellingStep = Steps.PauseOne;

    }



    /** 

    * @notice Allows to change the sellinStep to PauseTwo

    **/

    function setUpPauseTwo() external onlyOwner {

        sellingStep = Steps.PauseTwo;

    }



    /** 

    * @notice Allows to change the sellinStep to PresaleTwo

    **/

    function setUpPresaleTwo() external onlyOwner {

        sellingStep = Steps.PresaleTwo;

    }



    /** 

    * @notice Allows to change the sellinStep to Sale

    **/

    function setUpSale() external onlyOwner {

        sellingStep = Steps.Sale;

    }



    /** 

    * @notice Allows to change the sellinStep to SodlOut

    **/

    function setUpSoldOut() external onlyOwner {

        sellingStep = Steps.SoldOut;

    }



    /**MINTING**/

    function mint(uint256 _mintAmount) external payable nonReentrant {

    require(!paused, "the contract is paused");

    uint256 supply = totalSupply();

    require(_mintAmount > 0, "need to mint at least 1 NFT");

    require(_mintAmount <= max_mint_allowed, "max mint amount per session exceeded");

    require(sellingStep != Steps.Before, "Presale 1 has not started yet.");

    require(sellingStep != Steps.PauseOne, "Sorry, Presale 1 SOLDOUT, please wait for Presale 2, FEB 18th.");

    require(sellingStep != Steps.PauseTwo, "Sorry, Presale 2 SOLDOUT, please wait for Public sale, FEB 21st.");

    require(sellingStep != Steps.SoldOut, "Sorry, MINTING SOLDOUT, please buy from the secondary market on OPENSEA.");  

    require(supply + _mintAmount <= MAX_SUPPLY, "Sorry, don't have enought NFTs left");     

    if(sellingStep == Steps.PresaleOne){

        uint256 price = pricePresaleOne;

        require(msg.value >= price * _mintAmount, "insufficient funds");

        if(onlyWhitelisted == true) {

            uint256 ownerMintedCount = addressMintedBalance[msg.sender];

            require(isWhitelisted(msg.sender), "You are not whitelisted");

            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "MAX NFT per address exceeded");

            require(supply + _mintAmount <= MAX_SUPPLY_PRESALEONE, "Presale 1 is almost done, and we don't have enought NFTs left.");

            if(supply + _mintAmount == MAX_SUPPLY_PRESALEONE) {

            sellingStep = Steps.PauseOne;   

                }

            }

        }

    

    if(sellingStep == Steps.PresaleTwo){

        uint256 price = pricePresaleTwo;

        require(msg.value >= price * _mintAmount, "insufficient funds");

        if(onlyWhitelisted == true) {

            uint256 ownerMintedCount = addressMintedBalance[msg.sender];

            require(isWhitelisted(msg.sender), "You are not whitelisted");

            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "MAX NFT per address exceeded");

            require(supply + _mintAmount <= MAX_SUPPLY_PRESALETWO, "Presale 2 is almost done, and we don't have enought NFTs left.");

            if(supply + _mintAmount == MAX_SUPPLY_PRESALETWO) {

            sellingStep = Steps.PauseTwo;   

         }

        }

    }



    if(sellingStep == Steps.Sale){

        uint256 price = priceSale;

        uint256 ownerMintedCount = addressMintedBalance[msg.sender];

        require(msg.value >= price * _mintAmount, "insufficient funds");

        require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "MAX NFT per address exceeded");

        require(supply + _mintAmount <= MAX_SUPPLY, "Sale is almost done, and we don't have enought NFTs left.");

        

        if(supply + _mintAmount == MAX_SUPPLY) {

            sellingStep = Steps.SoldOut;   

         }

    }

    



    for (uint256 i = 1; i <= _mintAmount; i++) {

        addressMintedBalance[msg.sender]++;

      _safeMint(msg.sender, supply + i);

    }

   }

  

  function isWhitelisted(address _user) public view returns (bool) {

    for (uint i = 0; i < whitelistedAddresses.length; i++) {

      if (whitelistedAddresses[i] == _user) {

          return true;

      }

    }

    return false;

  }





    /**

    * @notice Allows to gift one NFT to an address

    *

    * @param _account The account of the happy new owner of one NFT

    **/

    function gift(address _account) external onlyOwner {

        uint supply = totalSupply();

        require(supply + 1 <= MAX_SUPPLY, "Sold out");

        _safeMint(_account, supply + 1);

    }





    /**

    * @return The token URI of the NFT which has _nftId Id

    **/

    function tokenURI(uint _nftId) public view override(ERC721) returns (string memory) {

        require(_exists(_nftId), "This NFT doesn't exist.");

        string memory currentBaseURI = _baseURI();

        return 

            bytes(currentBaseURI).length > 0 

            ? string(abi.encodePacked(currentBaseURI, _nftId.toString(), baseExtension))

            : "";

    }

    

    /**Withdraw function**/

    function withdraw() public payable onlyOwner {

    (bool os, ) = payable(owner()).call{value: address(this).balance}("");

    require(os);

  }



}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_theBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_PRESALEONE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_PRESALETWO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAllowed","type":"uint256"}],"name":"changeMaxMintAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_priceSale","type":"uint256"}],"name":"changePriceSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_mint_allowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePresaleOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePresaleTwo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"sellingStep","outputs":[{"internalType":"enum METAHERMIA.Steps","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpPauseOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpPauseTwo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpPresaleOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpPresaleTwo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpSoldOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6064600d81905566b1a2bc2ec50000600e5567016345785d8a0000600f556702c68af0bb1400006010556011556012805461ffff191661010017905560c06040526005608081905264173539b7b760d91b60a09081526200006491601691906200029d565b503480156200007257600080fd5b50604051620035d2380380620035d2833981016040819052620000959162000343565b604080518082018252600a8152694d4554414845524d494160b01b6020808301918252835180850190945260068452654845524d494160d01b908401528151919291620000e5916000916200029d565b508051620000fb9060019060208401906200029d565b50505062000118620001126200016960201b60201c565b6200016d565b6001600b8190555062000137600c620001bf60201b62001dfd1760201c565b6200014233620001c8565b6017805460ff191690558051620001619060159060208401906200029d565b505062000472565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b600a546001600160a01b03163314620002285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b0381166200028f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200021f565b6200029a816200016d565b50565b828054620002ab906200041f565b90600052602060002090601f016020900481019282620002cf57600085556200031a565b82601f10620002ea57805160ff19168380011785556200031a565b828001600101855582156200031a579182015b828111156200031a578251825591602001919060010190620002fd565b50620003289291506200032c565b5090565b5b808211156200032857600081556001016200032d565b600060208083850312156200035757600080fd5b82516001600160401b03808211156200036f57600080fd5b818501915085601f8301126200038457600080fd5b8151818111156200039957620003996200045c565b604051601f8201601f19908116603f01168101908382118183101715620003c457620003c46200045c565b816040528281528886848701011115620003dd57600080fd5b600093505b82841015620004015784840186015181850187015292850192620003e2565b82841115620004135760008684830101525b98975050505050505050565b600181811c908216806200043457607f821691505b602082108114156200045657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61315080620004826000396000f3fe6080604052600436106102ff5760003560e01c80636ec80de911610190578063ba4e5c49116100dc578063cf8f298511610095578063e4717b4f1161006f578063e4717b4f14610867578063e985e9c51461087c578063edec5f27146108c5578063f2fde38b146108e557600080fd5b8063cf8f298514610812578063d0eb26b014610827578063da3ef23f1461084757600080fd5b8063ba4e5c4914610760578063ba7d2c7614610780578063c668286214610796578063c87b56dd146107ab578063cbccefb2146107cb578063cbfc4bce146107f257600080fd5b806395d89b4111610149578063a0bcfc7f11610123578063a0bcfc7f146106ea578063a22cb4651461070a578063b88d4fde1461072a578063ba0c60c91461074a57600080fd5b806395d89b41146106a35780639c70b512146106b8578063a0712d68146106d757600080fd5b80636ec80de91461060f57806370a0823114610625578063715018a61461064557806373f1fb9b1461065a57806381a7927e1461066f5780638da5cb5b1461068557600080fd5b806332cb6b0c1161024f57806343722ae911610208578063549df2df116101e2578063549df2df146105a05780635c975abb146105c05780636352211e146105da5780636c0360eb146105fa57600080fd5b806343722ae9146105555780634927f3611461056a5780634f6ccce71461058057600080fd5b806332cb6b0c146104c15780633ac22a01146104d75780633af32abf146104ed5780633c9527641461050d5780633ccfd60b1461052d57806342842e0e1461053557600080fd5b806318160ddd116102bc5780631f2898c3116102965780631f2898c31461045657806323b872dd1461046b5780632f6fa5081461048b5780632f745c59146104a157600080fd5b806318160ddd146103ea57806318cae269146104095780631dcfab391461043657600080fd5b806301ffc9a7146103045780630346854b1461033957806306fdde0314610350578063081812fc14610372578063095ea7b3146103aa57806316c38b3c146103ca575b600080fd5b34801561031057600080fd5b5061032461031f366004612c49565b610905565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b5061034e610930565b005b34801561035c57600080fd5b5061036561097a565b6040516103309190612e3a565b34801561037e57600080fd5b5061039261038d366004612ccc565b610a0c565b6040516001600160a01b039091168152602001610330565b3480156103b657600080fd5b5061034e6103c5366004612b8f565b610aa1565b3480156103d657600080fd5b5061034e6103e5366004612c2e565b610bb7565b3480156103f657600080fd5b506008545b604051908152602001610330565b34801561041557600080fd5b506103fb610424366004612a5f565b60146020526000908152604090205481565b34801561044257600080fd5b5061034e610451366004612ccc565b610bf4565b34801561046257600080fd5b5061034e610c23565b34801561047757600080fd5b5061034e610486366004612aad565b610c61565b34801561049757600080fd5b506103fb600f5481565b3480156104ad57600080fd5b506103fb6104bc366004612b8f565b610c92565b3480156104cd57600080fd5b506103fb611e6181565b3480156104e357600080fd5b506103fb6103e881565b3480156104f957600080fd5b50610324610508366004612a5f565b610d28565b34801561051957600080fd5b5061034e610528366004612c2e565b610d92565b61034e610dd6565b34801561054157600080fd5b5061034e610550366004612aad565b610e74565b34801561056157600080fd5b5061034e610e8f565b34801561057657600080fd5b506103fb610fa081565b34801561058c57600080fd5b506103fb61059b366004612ccc565b610ecc565b3480156105ac57600080fd5b5061034e6105bb366004612ccc565b610f5f565b3480156105cc57600080fd5b506012546103249060ff1681565b3480156105e657600080fd5b506103926105f5366004612ccc565b610f8e565b34801561060657600080fd5b50610365611005565b34801561061b57600080fd5b506103fb600e5481565b34801561063157600080fd5b506103fb610640366004612a5f565b611093565b34801561065157600080fd5b5061034e61111a565b34801561066657600080fd5b5061034e611150565b34801561067b57600080fd5b506103fb60105481565b34801561069157600080fd5b50600a546001600160a01b0316610392565b3480156106af57600080fd5b5061036561118e565b3480156106c457600080fd5b5060125461032490610100900460ff1681565b61034e6106e5366004612ccc565b61119d565b3480156106f657600080fd5b5061034e610705366004612c83565b611a2d565b34801561071657600080fd5b5061034e610725366004612b65565b611a6e565b34801561073657600080fd5b5061034e610745366004612ae9565b611a79565b34801561075657600080fd5b506103fb600d5481565b34801561076c57600080fd5b5061039261077b366004612ccc565b611ab1565b34801561078c57600080fd5b506103fb60115481565b3480156107a257600080fd5b50610365611adb565b3480156107b757600080fd5b506103656107c6366004612ccc565b611ae8565b3480156107d757600080fd5b506017546107e59060ff1681565b6040516103309190612e12565b3480156107fe57600080fd5b5061034e61080d366004612a5f565b611bae565b34801561081e57600080fd5b5061034e611c3b565b34801561083357600080fd5b5061034e610842366004612ccc565b611c79565b34801561085357600080fd5b5061034e610862366004612c83565b611ca8565b34801561087357600080fd5b5061034e611ce5565b34801561088857600080fd5b50610324610897366004612a7a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108d157600080fd5b5061034e6108e0366004612bb9565b611d23565b3480156108f157600080fd5b5061034e610900366004612a5f565b611d65565b60006001600160e01b0319821663780e9d6360e01b148061092a575061092a82611e06565b92915050565b600a546001600160a01b031633146109635760405162461bcd60e51b815260040161095a90612ed6565b60405180910390fd5b601780546006919060ff19166001835b0217905550565b60606000805461098990613016565b80601f01602080910402602001604051908101604052809291908181526020018280546109b590613016565b8015610a025780601f106109d757610100808354040283529160200191610a02565b820191906000526020600020905b8154815290600101906020018083116109e557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161095a565b506000908152600460205260409020546001600160a01b031690565b6000610aac82610f8e565b9050806001600160a01b0316836001600160a01b03161415610b1a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161095a565b336001600160a01b0382161480610b365750610b368133610897565b610ba85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161095a565b610bb28383611e56565b505050565b600a546001600160a01b03163314610be15760405162461bcd60e51b815260040161095a90612ed6565b6012805460ff1916911515919091179055565b600a546001600160a01b03163314610c1e5760405162461bcd60e51b815260040161095a90612ed6565b601055565b600a546001600160a01b03163314610c4d5760405162461bcd60e51b815260040161095a90612ed6565b601780546005919060ff1916600183610973565b610c6b3382611ec4565b610c875760405162461bcd60e51b815260040161095a90612f37565b610bb2838383611fbb565b6000610c9d83611093565b8210610cff5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161095a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610d8957826001600160a01b031660138281548110610d5357610d536130d8565b6000918252602090912001546001600160a01b03161415610d775750600192915050565b80610d8181613051565b915050610d2c565b50600092915050565b600a546001600160a01b03163314610dbc5760405162461bcd60e51b815260040161095a90612ed6565b601280549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314610e005760405162461bcd60e51b815260040161095a90612ed6565b6000610e14600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e5e576040519150601f19603f3d011682016040523d82523d6000602084013e610e63565b606091505b5050905080610e7157600080fd5b50565b610bb283838360405180602001604052806000815250611a79565b600a546001600160a01b03163314610eb95760405162461bcd60e51b815260040161095a90612ed6565b601780546001919060ff19168280610973565b6000610ed760085490565b8210610f3a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161095a565b60088281548110610f4d57610f4d6130d8565b90600052602060002001549050919050565b600a546001600160a01b03163314610f895760405162461bcd60e51b815260040161095a90612ed6565b600d55565b6000818152600260205260408120546001600160a01b03168061092a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161095a565b6015805461101290613016565b80601f016020809104026020016040519081016040528092919081815260200182805461103e90613016565b801561108b5780601f106110605761010080835404028352916020019161108b565b820191906000526020600020905b81548152906001019060200180831161106e57829003601f168201915b505050505081565b60006001600160a01b0382166110fe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161095a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111445760405162461bcd60e51b815260040161095a90612ed6565b61114e6000612162565b565b600a546001600160a01b0316331461117a5760405162461bcd60e51b815260040161095a90612ed6565b601780546002919060ff1916600183610973565b60606001805461098990613016565b6002600b5414156111f05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161095a565b6002600b5560125460ff16156112415760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161095a565b600061124c60085490565b90506000821161129e5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161095a565b600d548211156112fc5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161095a565b600060175460ff166006811115611315576113156130ac565b14156113635760405162461bcd60e51b815260206004820152601e60248201527f50726573616c65203120686173206e6f742073746172746564207965742e0000604482015260640161095a565b600260175460ff16600681111561137c5761137c6130ac565b14156113f05760405162461bcd60e51b815260206004820152603e60248201527f536f7272792c2050726573616c65203120534f4c444f55542c20706c6561736560448201527f207761697420666f722050726573616c6520322c2046454220313874682e0000606482015260840161095a565b600460175460ff166006811115611409576114096130ac565b141561147f576040805162461bcd60e51b81526020600482015260248101919091527f536f7272792c2050726573616c65203220534f4c444f55542c20706c6561736560448201527f207761697420666f72205075626c69632073616c652c2046454220323173742e606482015260840161095a565b600660175460ff166006811115611498576114986130ac565b141561151d5760405162461bcd60e51b815260206004820152604860248201527f536f7272792c204d494e54494e4720534f4c444f55542c20706c65617365206260448201527f75792066726f6d20746865207365636f6e64617279206d61726b6574206f6e2060648201526727a822a729a2a09760c11b608482015260a40161095a565b611e6161152a8383612f88565b11156115845760405162461bcd60e51b815260206004820152602360248201527f536f7272792c20646f6e2774206861766520656e6f75676874204e465473206c60448201526219599d60ea1b606482015260840161095a565b600160175460ff16600681111561159d5761159d6130ac565b141561171657600e546115b08382612fb4565b3410156115cf5760405162461bcd60e51b815260040161095a90612f0b565b60125460ff610100909104161515600114156117145733600081815260146020526040902054906115ff90610d28565b6116455760405162461bcd60e51b8152602060048201526017602482015276165bdd48185c99481b9bdd081dda1a5d195b1a5cdd1959604a1b604482015260640161095a565b6011546116528583612f88565b11156116705760405162461bcd60e51b815260040161095a90612e9f565b6103e861167d8585612f88565b11156116f15760405162461bcd60e51b815260206004820152603e60248201527f50726573616c65203120697320616c6d6f737420646f6e652c20616e6420776560448201527f20646f6e2774206861766520656e6f75676874204e465473206c6566742e0000606482015260840161095a565b6103e86116fe8585612f88565b1415611712576017805460ff191660021790555b505b505b600360175460ff16600681111561172f5761172f6130ac565b14156118a857600f546117428382612fb4565b3410156117615760405162461bcd60e51b815260040161095a90612f0b565b60125460ff610100909104161515600114156118a657336000818152601460205260409020549061179190610d28565b6117d75760405162461bcd60e51b8152602060048201526017602482015276165bdd48185c99481b9bdd081dda1a5d195b1a5cdd1959604a1b604482015260640161095a565b6011546117e48583612f88565b11156118025760405162461bcd60e51b815260040161095a90612e9f565b610fa061180f8585612f88565b11156118835760405162461bcd60e51b815260206004820152603e60248201527f50726573616c65203220697320616c6d6f737420646f6e652c20616e6420776560448201527f20646f6e2774206861766520656e6f75676874204e465473206c6566742e0000606482015260840161095a565b610fa06118908585612f88565b14156118a4576017805460ff191660041790555b505b505b600560175460ff1660068111156118c1576118c16130ac565b14156119d357601054336000908152601460205260409020546118e48483612fb4565b3410156119035760405162461bcd60e51b815260040161095a90612f0b565b6011546119108583612f88565b111561192e5760405162461bcd60e51b815260040161095a90612e9f565b611e6161193b8585612f88565b11156119af5760405162461bcd60e51b815260206004820152603960248201527f53616c6520697320616c6d6f737420646f6e652c20616e6420776520646f6e2760448201527f74206861766520656e6f75676874204e465473206c6566742e00000000000000606482015260840161095a565b611e616119bc8585612f88565b14156119d0576017805460ff191660061790555b50505b60015b828111611a23573360009081526014602052604081208054916119f883613051565b90915550611a11905033611a0c8385612f88565b6121b4565b80611a1b81613051565b9150506119d6565b50506001600b5550565b600a546001600160a01b03163314611a575760405162461bcd60e51b815260040161095a90612ed6565b8051611a6a9060159060208401906128b3565b5050565b611a6a3383836121ce565b611a833383611ec4565b611a9f5760405162461bcd60e51b815260040161095a90612f37565b611aab8484848461229d565b50505050565b60138181548110611ac157600080fd5b6000918252602090912001546001600160a01b0316905081565b6016805461101290613016565b6000818152600260205260409020546060906001600160a01b0316611b4f5760405162461bcd60e51b815260206004820152601760248201527f54686973204e465420646f65736e27742065786973742e000000000000000000604482015260640161095a565b6000611b596122d0565b90506000815111611b795760405180602001604052806000815250611ba7565b80611b83846122df565b6016604051602001611b9793929190612d11565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611bd85760405162461bcd60e51b815260040161095a90612ed6565b6000611be360085490565b9050611e61611bf3826001612f88565b1115611c2c5760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b604482015260640161095a565b611a6a82611a0c836001612f88565b600a546001600160a01b03163314611c655760405162461bcd60e51b815260040161095a90612ed6565b601780546003919060ff1916600183610973565b600a546001600160a01b03163314611ca35760405162461bcd60e51b815260040161095a90612ed6565b601155565b600a546001600160a01b03163314611cd25760405162461bcd60e51b815260040161095a90612ed6565b8051611a6a9060169060208401906128b3565b600a546001600160a01b03163314611d0f5760405162461bcd60e51b815260040161095a90612ed6565b601780546004919060ff1916600183610973565b600a546001600160a01b03163314611d4d5760405162461bcd60e51b815260040161095a90612ed6565b611d5960136000612937565b610bb260138383612955565b600a546001600160a01b03163314611d8f5760405162461bcd60e51b815260040161095a90612ed6565b6001600160a01b038116611df45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095a565b610e7181612162565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b1480611e3757506001600160e01b03198216635b5e139f60e01b145b8061092a57506301ffc9a760e01b6001600160e01b031983161461092a565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e8b82610f8e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611f3d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161095a565b6000611f4883610f8e565b9050806001600160a01b0316846001600160a01b03161480611f835750836001600160a01b0316611f7884610a0c565b6001600160a01b0316145b80611fb357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611fce82610f8e565b6001600160a01b0316146120325760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161095a565b6001600160a01b0382166120945760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161095a565b61209f8383836123dd565b6120aa600082611e56565b6001600160a01b03831660009081526003602052604081208054600192906120d3908490612fd3565b90915550506001600160a01b0382166000908152600360205260408120805460019290612101908490612f88565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611a6a828260405180602001604052806000815250612495565b816001600160a01b0316836001600160a01b031614156122305760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161095a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122a8848484611fbb565b6122b4848484846124c8565b611aab5760405162461bcd60e51b815260040161095a90612e4d565b60606015805461098990613016565b6060816123035750506040805180820190915260018152600360fc1b602082015290565b8160005b811561232d578061231781613051565b91506123269050600a83612fa0565b9150612307565b60008167ffffffffffffffff811115612348576123486130ee565b6040519080825280601f01601f191660200182016040528015612372576020820181803683370190505b5090505b8415611fb357612387600183612fd3565b9150612394600a8661306c565b61239f906030612f88565b60f81b8183815181106123b4576123b46130d8565b60200101906001600160f81b031916908160001a9053506123d6600a86612fa0565b9450612376565b6001600160a01b0383166124385761243381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61245b565b816001600160a01b0316836001600160a01b03161461245b5761245b83826125d5565b6001600160a01b03821661247257610bb281612672565b826001600160a01b0316826001600160a01b031614610bb257610bb28282612721565b61249f8383612765565b6124ac60008484846124c8565b610bb25760405162461bcd60e51b815260040161095a90612e4d565b60006001600160a01b0384163b156125ca57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061250c903390899088908890600401612dd5565b602060405180830381600087803b15801561252657600080fd5b505af1925050508015612556575060408051601f3d908101601f1916820190925261255391810190612c66565b60015b6125b0573d808015612584576040519150601f19603f3d011682016040523d82523d6000602084013e612589565b606091505b5080516125a85760405162461bcd60e51b815260040161095a90612e4d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fb3565b506001949350505050565b600060016125e284611093565b6125ec9190612fd3565b60008381526007602052604090205490915080821461263f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061268490600190612fd3565b600083815260096020526040812054600880549394509092849081106126ac576126ac6130d8565b9060005260206000200154905080600883815481106126cd576126cd6130d8565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612705576127056130c2565b6001900381819060005260206000200160009055905550505050565b600061272c83611093565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166127bb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161095a565b6000818152600260205260409020546001600160a01b0316156128205760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161095a565b61282c600083836123dd565b6001600160a01b0382166000908152600360205260408120805460019290612855908490612f88565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546128bf90613016565b90600052602060002090601f0160209004810192826128e15760008555612927565b82601f106128fa57805160ff1916838001178555612927565b82800160010185558215612927579182015b8281111561292757825182559160200191906001019061290c565b506129339291506129a8565b5090565b5080546000825590600052602060002090810190610e7191906129a8565b828054828255906000526020600020908101928215612927579160200282015b828111156129275781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612975565b5b8082111561293357600081556001016129a9565b600067ffffffffffffffff808411156129d8576129d86130ee565b604051601f8501601f19908116603f01168101908282118183101715612a0057612a006130ee565b81604052809350858152868686011115612a1957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612a4a57600080fd5b919050565b80358015158114612a4a57600080fd5b600060208284031215612a7157600080fd5b611ba782612a33565b60008060408385031215612a8d57600080fd5b612a9683612a33565b9150612aa460208401612a33565b90509250929050565b600080600060608486031215612ac257600080fd5b612acb84612a33565b9250612ad960208501612a33565b9150604084013590509250925092565b60008060008060808587031215612aff57600080fd5b612b0885612a33565b9350612b1660208601612a33565b925060408501359150606085013567ffffffffffffffff811115612b3957600080fd5b8501601f81018713612b4a57600080fd5b612b59878235602084016129bd565b91505092959194509250565b60008060408385031215612b7857600080fd5b612b8183612a33565b9150612aa460208401612a4f565b60008060408385031215612ba257600080fd5b612bab83612a33565b946020939093013593505050565b60008060208385031215612bcc57600080fd5b823567ffffffffffffffff80821115612be457600080fd5b818501915085601f830112612bf857600080fd5b813581811115612c0757600080fd5b8660208260051b8501011115612c1c57600080fd5b60209290920196919550909350505050565b600060208284031215612c4057600080fd5b611ba782612a4f565b600060208284031215612c5b57600080fd5b8135611ba781613104565b600060208284031215612c7857600080fd5b8151611ba781613104565b600060208284031215612c9557600080fd5b813567ffffffffffffffff811115612cac57600080fd5b8201601f81018413612cbd57600080fd5b611fb3848235602084016129bd565b600060208284031215612cde57600080fd5b5035919050565b60008151808452612cfd816020860160208601612fea565b601f01601f19169290920160200192915050565b600084516020612d248285838a01612fea565b855191840191612d378184848a01612fea565b8554920191600090600181811c9080831680612d5457607f831692505b858310811415612d7257634e487b7160e01b85526022600452602485fd5b808015612d865760018114612d9757612dc4565b60ff19851688528388019550612dc4565b60008b81526020902060005b85811015612dbc5781548a820152908401908801612da3565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e0890830184612ce5565b9695505050505050565b6020810160078310612e3457634e487b7160e01b600052602160045260246000fd5b91905290565b602081526000611ba76020830184612ce5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4d4158204e465420706572206164647265737320657863656564656400000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612f9b57612f9b613080565b500190565b600082612faf57612faf613096565b500490565b6000816000190483118215151615612fce57612fce613080565b500290565b600082821015612fe557612fe5613080565b500390565b60005b83811015613005578181015183820152602001612fed565b83811115611aab5750506000910152565b600181811c9082168061302a57607f821691505b6020821081141561304b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561306557613065613080565b5060010190565b60008261307b5761307b613096565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e7157600080fdfea264697066735822122081f707ee9ddbe4fd6b7af777f2d8484fa003b409b63a1f5aea394c8826c7a9ae64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d645539703831654c743550636a586d6662554d6d616e5454515272666531425666663442436a5967313545592f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c80636ec80de911610190578063ba4e5c49116100dc578063cf8f298511610095578063e4717b4f1161006f578063e4717b4f14610867578063e985e9c51461087c578063edec5f27146108c5578063f2fde38b146108e557600080fd5b8063cf8f298514610812578063d0eb26b014610827578063da3ef23f1461084757600080fd5b8063ba4e5c4914610760578063ba7d2c7614610780578063c668286214610796578063c87b56dd146107ab578063cbccefb2146107cb578063cbfc4bce146107f257600080fd5b806395d89b4111610149578063a0bcfc7f11610123578063a0bcfc7f146106ea578063a22cb4651461070a578063b88d4fde1461072a578063ba0c60c91461074a57600080fd5b806395d89b41146106a35780639c70b512146106b8578063a0712d68146106d757600080fd5b80636ec80de91461060f57806370a0823114610625578063715018a61461064557806373f1fb9b1461065a57806381a7927e1461066f5780638da5cb5b1461068557600080fd5b806332cb6b0c1161024f57806343722ae911610208578063549df2df116101e2578063549df2df146105a05780635c975abb146105c05780636352211e146105da5780636c0360eb146105fa57600080fd5b806343722ae9146105555780634927f3611461056a5780634f6ccce71461058057600080fd5b806332cb6b0c146104c15780633ac22a01146104d75780633af32abf146104ed5780633c9527641461050d5780633ccfd60b1461052d57806342842e0e1461053557600080fd5b806318160ddd116102bc5780631f2898c3116102965780631f2898c31461045657806323b872dd1461046b5780632f6fa5081461048b5780632f745c59146104a157600080fd5b806318160ddd146103ea57806318cae269146104095780631dcfab391461043657600080fd5b806301ffc9a7146103045780630346854b1461033957806306fdde0314610350578063081812fc14610372578063095ea7b3146103aa57806316c38b3c146103ca575b600080fd5b34801561031057600080fd5b5061032461031f366004612c49565b610905565b60405190151581526020015b60405180910390f35b34801561034557600080fd5b5061034e610930565b005b34801561035c57600080fd5b5061036561097a565b6040516103309190612e3a565b34801561037e57600080fd5b5061039261038d366004612ccc565b610a0c565b6040516001600160a01b039091168152602001610330565b3480156103b657600080fd5b5061034e6103c5366004612b8f565b610aa1565b3480156103d657600080fd5b5061034e6103e5366004612c2e565b610bb7565b3480156103f657600080fd5b506008545b604051908152602001610330565b34801561041557600080fd5b506103fb610424366004612a5f565b60146020526000908152604090205481565b34801561044257600080fd5b5061034e610451366004612ccc565b610bf4565b34801561046257600080fd5b5061034e610c23565b34801561047757600080fd5b5061034e610486366004612aad565b610c61565b34801561049757600080fd5b506103fb600f5481565b3480156104ad57600080fd5b506103fb6104bc366004612b8f565b610c92565b3480156104cd57600080fd5b506103fb611e6181565b3480156104e357600080fd5b506103fb6103e881565b3480156104f957600080fd5b50610324610508366004612a5f565b610d28565b34801561051957600080fd5b5061034e610528366004612c2e565b610d92565b61034e610dd6565b34801561054157600080fd5b5061034e610550366004612aad565b610e74565b34801561056157600080fd5b5061034e610e8f565b34801561057657600080fd5b506103fb610fa081565b34801561058c57600080fd5b506103fb61059b366004612ccc565b610ecc565b3480156105ac57600080fd5b5061034e6105bb366004612ccc565b610f5f565b3480156105cc57600080fd5b506012546103249060ff1681565b3480156105e657600080fd5b506103926105f5366004612ccc565b610f8e565b34801561060657600080fd5b50610365611005565b34801561061b57600080fd5b506103fb600e5481565b34801561063157600080fd5b506103fb610640366004612a5f565b611093565b34801561065157600080fd5b5061034e61111a565b34801561066657600080fd5b5061034e611150565b34801561067b57600080fd5b506103fb60105481565b34801561069157600080fd5b50600a546001600160a01b0316610392565b3480156106af57600080fd5b5061036561118e565b3480156106c457600080fd5b5060125461032490610100900460ff1681565b61034e6106e5366004612ccc565b61119d565b3480156106f657600080fd5b5061034e610705366004612c83565b611a2d565b34801561071657600080fd5b5061034e610725366004612b65565b611a6e565b34801561073657600080fd5b5061034e610745366004612ae9565b611a79565b34801561075657600080fd5b506103fb600d5481565b34801561076c57600080fd5b5061039261077b366004612ccc565b611ab1565b34801561078c57600080fd5b506103fb60115481565b3480156107a257600080fd5b50610365611adb565b3480156107b757600080fd5b506103656107c6366004612ccc565b611ae8565b3480156107d757600080fd5b506017546107e59060ff1681565b6040516103309190612e12565b3480156107fe57600080fd5b5061034e61080d366004612a5f565b611bae565b34801561081e57600080fd5b5061034e611c3b565b34801561083357600080fd5b5061034e610842366004612ccc565b611c79565b34801561085357600080fd5b5061034e610862366004612c83565b611ca8565b34801561087357600080fd5b5061034e611ce5565b34801561088857600080fd5b50610324610897366004612a7a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108d157600080fd5b5061034e6108e0366004612bb9565b611d23565b3480156108f157600080fd5b5061034e610900366004612a5f565b611d65565b60006001600160e01b0319821663780e9d6360e01b148061092a575061092a82611e06565b92915050565b600a546001600160a01b031633146109635760405162461bcd60e51b815260040161095a90612ed6565b60405180910390fd5b601780546006919060ff19166001835b0217905550565b60606000805461098990613016565b80601f01602080910402602001604051908101604052809291908181526020018280546109b590613016565b8015610a025780601f106109d757610100808354040283529160200191610a02565b820191906000526020600020905b8154815290600101906020018083116109e557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161095a565b506000908152600460205260409020546001600160a01b031690565b6000610aac82610f8e565b9050806001600160a01b0316836001600160a01b03161415610b1a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161095a565b336001600160a01b0382161480610b365750610b368133610897565b610ba85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161095a565b610bb28383611e56565b505050565b600a546001600160a01b03163314610be15760405162461bcd60e51b815260040161095a90612ed6565b6012805460ff1916911515919091179055565b600a546001600160a01b03163314610c1e5760405162461bcd60e51b815260040161095a90612ed6565b601055565b600a546001600160a01b03163314610c4d5760405162461bcd60e51b815260040161095a90612ed6565b601780546005919060ff1916600183610973565b610c6b3382611ec4565b610c875760405162461bcd60e51b815260040161095a90612f37565b610bb2838383611fbb565b6000610c9d83611093565b8210610cff5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161095a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610d8957826001600160a01b031660138281548110610d5357610d536130d8565b6000918252602090912001546001600160a01b03161415610d775750600192915050565b80610d8181613051565b915050610d2c565b50600092915050565b600a546001600160a01b03163314610dbc5760405162461bcd60e51b815260040161095a90612ed6565b601280549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314610e005760405162461bcd60e51b815260040161095a90612ed6565b6000610e14600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e5e576040519150601f19603f3d011682016040523d82523d6000602084013e610e63565b606091505b5050905080610e7157600080fd5b50565b610bb283838360405180602001604052806000815250611a79565b600a546001600160a01b03163314610eb95760405162461bcd60e51b815260040161095a90612ed6565b601780546001919060ff19168280610973565b6000610ed760085490565b8210610f3a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161095a565b60088281548110610f4d57610f4d6130d8565b90600052602060002001549050919050565b600a546001600160a01b03163314610f895760405162461bcd60e51b815260040161095a90612ed6565b600d55565b6000818152600260205260408120546001600160a01b03168061092a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161095a565b6015805461101290613016565b80601f016020809104026020016040519081016040528092919081815260200182805461103e90613016565b801561108b5780601f106110605761010080835404028352916020019161108b565b820191906000526020600020905b81548152906001019060200180831161106e57829003601f168201915b505050505081565b60006001600160a01b0382166110fe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161095a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111445760405162461bcd60e51b815260040161095a90612ed6565b61114e6000612162565b565b600a546001600160a01b0316331461117a5760405162461bcd60e51b815260040161095a90612ed6565b601780546002919060ff1916600183610973565b60606001805461098990613016565b6002600b5414156111f05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161095a565b6002600b5560125460ff16156112415760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161095a565b600061124c60085490565b90506000821161129e5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161095a565b600d548211156112fc5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161095a565b600060175460ff166006811115611315576113156130ac565b14156113635760405162461bcd60e51b815260206004820152601e60248201527f50726573616c65203120686173206e6f742073746172746564207965742e0000604482015260640161095a565b600260175460ff16600681111561137c5761137c6130ac565b14156113f05760405162461bcd60e51b815260206004820152603e60248201527f536f7272792c2050726573616c65203120534f4c444f55542c20706c6561736560448201527f207761697420666f722050726573616c6520322c2046454220313874682e0000606482015260840161095a565b600460175460ff166006811115611409576114096130ac565b141561147f576040805162461bcd60e51b81526020600482015260248101919091527f536f7272792c2050726573616c65203220534f4c444f55542c20706c6561736560448201527f207761697420666f72205075626c69632073616c652c2046454220323173742e606482015260840161095a565b600660175460ff166006811115611498576114986130ac565b141561151d5760405162461bcd60e51b815260206004820152604860248201527f536f7272792c204d494e54494e4720534f4c444f55542c20706c65617365206260448201527f75792066726f6d20746865207365636f6e64617279206d61726b6574206f6e2060648201526727a822a729a2a09760c11b608482015260a40161095a565b611e6161152a8383612f88565b11156115845760405162461bcd60e51b815260206004820152602360248201527f536f7272792c20646f6e2774206861766520656e6f75676874204e465473206c60448201526219599d60ea1b606482015260840161095a565b600160175460ff16600681111561159d5761159d6130ac565b141561171657600e546115b08382612fb4565b3410156115cf5760405162461bcd60e51b815260040161095a90612f0b565b60125460ff610100909104161515600114156117145733600081815260146020526040902054906115ff90610d28565b6116455760405162461bcd60e51b8152602060048201526017602482015276165bdd48185c99481b9bdd081dda1a5d195b1a5cdd1959604a1b604482015260640161095a565b6011546116528583612f88565b11156116705760405162461bcd60e51b815260040161095a90612e9f565b6103e861167d8585612f88565b11156116f15760405162461bcd60e51b815260206004820152603e60248201527f50726573616c65203120697320616c6d6f737420646f6e652c20616e6420776560448201527f20646f6e2774206861766520656e6f75676874204e465473206c6566742e0000606482015260840161095a565b6103e86116fe8585612f88565b1415611712576017805460ff191660021790555b505b505b600360175460ff16600681111561172f5761172f6130ac565b14156118a857600f546117428382612fb4565b3410156117615760405162461bcd60e51b815260040161095a90612f0b565b60125460ff610100909104161515600114156118a657336000818152601460205260409020549061179190610d28565b6117d75760405162461bcd60e51b8152602060048201526017602482015276165bdd48185c99481b9bdd081dda1a5d195b1a5cdd1959604a1b604482015260640161095a565b6011546117e48583612f88565b11156118025760405162461bcd60e51b815260040161095a90612e9f565b610fa061180f8585612f88565b11156118835760405162461bcd60e51b815260206004820152603e60248201527f50726573616c65203220697320616c6d6f737420646f6e652c20616e6420776560448201527f20646f6e2774206861766520656e6f75676874204e465473206c6566742e0000606482015260840161095a565b610fa06118908585612f88565b14156118a4576017805460ff191660041790555b505b505b600560175460ff1660068111156118c1576118c16130ac565b14156119d357601054336000908152601460205260409020546118e48483612fb4565b3410156119035760405162461bcd60e51b815260040161095a90612f0b565b6011546119108583612f88565b111561192e5760405162461bcd60e51b815260040161095a90612e9f565b611e6161193b8585612f88565b11156119af5760405162461bcd60e51b815260206004820152603960248201527f53616c6520697320616c6d6f737420646f6e652c20616e6420776520646f6e2760448201527f74206861766520656e6f75676874204e465473206c6566742e00000000000000606482015260840161095a565b611e616119bc8585612f88565b14156119d0576017805460ff191660061790555b50505b60015b828111611a23573360009081526014602052604081208054916119f883613051565b90915550611a11905033611a0c8385612f88565b6121b4565b80611a1b81613051565b9150506119d6565b50506001600b5550565b600a546001600160a01b03163314611a575760405162461bcd60e51b815260040161095a90612ed6565b8051611a6a9060159060208401906128b3565b5050565b611a6a3383836121ce565b611a833383611ec4565b611a9f5760405162461bcd60e51b815260040161095a90612f37565b611aab8484848461229d565b50505050565b60138181548110611ac157600080fd5b6000918252602090912001546001600160a01b0316905081565b6016805461101290613016565b6000818152600260205260409020546060906001600160a01b0316611b4f5760405162461bcd60e51b815260206004820152601760248201527f54686973204e465420646f65736e27742065786973742e000000000000000000604482015260640161095a565b6000611b596122d0565b90506000815111611b795760405180602001604052806000815250611ba7565b80611b83846122df565b6016604051602001611b9793929190612d11565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611bd85760405162461bcd60e51b815260040161095a90612ed6565b6000611be360085490565b9050611e61611bf3826001612f88565b1115611c2c5760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b604482015260640161095a565b611a6a82611a0c836001612f88565b600a546001600160a01b03163314611c655760405162461bcd60e51b815260040161095a90612ed6565b601780546003919060ff1916600183610973565b600a546001600160a01b03163314611ca35760405162461bcd60e51b815260040161095a90612ed6565b601155565b600a546001600160a01b03163314611cd25760405162461bcd60e51b815260040161095a90612ed6565b8051611a6a9060169060208401906128b3565b600a546001600160a01b03163314611d0f5760405162461bcd60e51b815260040161095a90612ed6565b601780546004919060ff1916600183610973565b600a546001600160a01b03163314611d4d5760405162461bcd60e51b815260040161095a90612ed6565b611d5960136000612937565b610bb260138383612955565b600a546001600160a01b03163314611d8f5760405162461bcd60e51b815260040161095a90612ed6565b6001600160a01b038116611df45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095a565b610e7181612162565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b1480611e3757506001600160e01b03198216635b5e139f60e01b145b8061092a57506301ffc9a760e01b6001600160e01b031983161461092a565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e8b82610f8e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611f3d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161095a565b6000611f4883610f8e565b9050806001600160a01b0316846001600160a01b03161480611f835750836001600160a01b0316611f7884610a0c565b6001600160a01b0316145b80611fb357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611fce82610f8e565b6001600160a01b0316146120325760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161095a565b6001600160a01b0382166120945760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161095a565b61209f8383836123dd565b6120aa600082611e56565b6001600160a01b03831660009081526003602052604081208054600192906120d3908490612fd3565b90915550506001600160a01b0382166000908152600360205260408120805460019290612101908490612f88565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611a6a828260405180602001604052806000815250612495565b816001600160a01b0316836001600160a01b031614156122305760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161095a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122a8848484611fbb565b6122b4848484846124c8565b611aab5760405162461bcd60e51b815260040161095a90612e4d565b60606015805461098990613016565b6060816123035750506040805180820190915260018152600360fc1b602082015290565b8160005b811561232d578061231781613051565b91506123269050600a83612fa0565b9150612307565b60008167ffffffffffffffff811115612348576123486130ee565b6040519080825280601f01601f191660200182016040528015612372576020820181803683370190505b5090505b8415611fb357612387600183612fd3565b9150612394600a8661306c565b61239f906030612f88565b60f81b8183815181106123b4576123b46130d8565b60200101906001600160f81b031916908160001a9053506123d6600a86612fa0565b9450612376565b6001600160a01b0383166124385761243381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61245b565b816001600160a01b0316836001600160a01b03161461245b5761245b83826125d5565b6001600160a01b03821661247257610bb281612672565b826001600160a01b0316826001600160a01b031614610bb257610bb28282612721565b61249f8383612765565b6124ac60008484846124c8565b610bb25760405162461bcd60e51b815260040161095a90612e4d565b60006001600160a01b0384163b156125ca57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061250c903390899088908890600401612dd5565b602060405180830381600087803b15801561252657600080fd5b505af1925050508015612556575060408051601f3d908101601f1916820190925261255391810190612c66565b60015b6125b0573d808015612584576040519150601f19603f3d011682016040523d82523d6000602084013e612589565b606091505b5080516125a85760405162461bcd60e51b815260040161095a90612e4d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fb3565b506001949350505050565b600060016125e284611093565b6125ec9190612fd3565b60008381526007602052604090205490915080821461263f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061268490600190612fd3565b600083815260096020526040812054600880549394509092849081106126ac576126ac6130d8565b9060005260206000200154905080600883815481106126cd576126cd6130d8565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612705576127056130c2565b6001900381819060005260206000200160009055905550505050565b600061272c83611093565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166127bb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161095a565b6000818152600260205260409020546001600160a01b0316156128205760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161095a565b61282c600083836123dd565b6001600160a01b0382166000908152600360205260408120805460019290612855908490612f88565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546128bf90613016565b90600052602060002090601f0160209004810192826128e15760008555612927565b82601f106128fa57805160ff1916838001178555612927565b82800160010185558215612927579182015b8281111561292757825182559160200191906001019061290c565b506129339291506129a8565b5090565b5080546000825590600052602060002090810190610e7191906129a8565b828054828255906000526020600020908101928215612927579160200282015b828111156129275781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612975565b5b8082111561293357600081556001016129a9565b600067ffffffffffffffff808411156129d8576129d86130ee565b604051601f8501601f19908116603f01168101908282118183101715612a0057612a006130ee565b81604052809350858152868686011115612a1957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612a4a57600080fd5b919050565b80358015158114612a4a57600080fd5b600060208284031215612a7157600080fd5b611ba782612a33565b60008060408385031215612a8d57600080fd5b612a9683612a33565b9150612aa460208401612a33565b90509250929050565b600080600060608486031215612ac257600080fd5b612acb84612a33565b9250612ad960208501612a33565b9150604084013590509250925092565b60008060008060808587031215612aff57600080fd5b612b0885612a33565b9350612b1660208601612a33565b925060408501359150606085013567ffffffffffffffff811115612b3957600080fd5b8501601f81018713612b4a57600080fd5b612b59878235602084016129bd565b91505092959194509250565b60008060408385031215612b7857600080fd5b612b8183612a33565b9150612aa460208401612a4f565b60008060408385031215612ba257600080fd5b612bab83612a33565b946020939093013593505050565b60008060208385031215612bcc57600080fd5b823567ffffffffffffffff80821115612be457600080fd5b818501915085601f830112612bf857600080fd5b813581811115612c0757600080fd5b8660208260051b8501011115612c1c57600080fd5b60209290920196919550909350505050565b600060208284031215612c4057600080fd5b611ba782612a4f565b600060208284031215612c5b57600080fd5b8135611ba781613104565b600060208284031215612c7857600080fd5b8151611ba781613104565b600060208284031215612c9557600080fd5b813567ffffffffffffffff811115612cac57600080fd5b8201601f81018413612cbd57600080fd5b611fb3848235602084016129bd565b600060208284031215612cde57600080fd5b5035919050565b60008151808452612cfd816020860160208601612fea565b601f01601f19169290920160200192915050565b600084516020612d248285838a01612fea565b855191840191612d378184848a01612fea565b8554920191600090600181811c9080831680612d5457607f831692505b858310811415612d7257634e487b7160e01b85526022600452602485fd5b808015612d865760018114612d9757612dc4565b60ff19851688528388019550612dc4565b60008b81526020902060005b85811015612dbc5781548a820152908401908801612da3565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e0890830184612ce5565b9695505050505050565b6020810160078310612e3457634e487b7160e01b600052602160045260246000fd5b91905290565b602081526000611ba76020830184612ce5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4d4158204e465420706572206164647265737320657863656564656400000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612f9b57612f9b613080565b500190565b600082612faf57612faf613096565b500490565b6000816000190483118215151615612fce57612fce613080565b500290565b600082821015612fe557612fe5613080565b500390565b60005b83811015613005578181015183820152602001612fed565b83811115611aab5750506000910152565b600181811c9082168061302a57607f821691505b6020821081141561304b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561306557613065613080565b5060010190565b60008261307b5761307b613096565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e7157600080fdfea264697066735822122081f707ee9ddbe4fd6b7af777f2d8484fa003b409b63a1f5aea394c8826c7a9ae64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d645539703831654c743550636a586d6662554d6d616e5454515272666531425666663442436a5967313545592f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _theBaseURI (string): https://gateway.pinata.cloud/ipfs/QmdU9p81eLt5PcjXmfbUMmanTTQRrfe1BVff4BCjYg15EY/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d645539703831654c743550636a586d6662554d6d616e545451527266
Arg [4] : 6531425666663442436a5967313545592f000000000000000000000000000000


Deployed Bytecode Sourcemap

51286:9586:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43538:224;;;;;;;;;;-1:-1:-1;43538:224:0;;;;;:::i;:::-;;:::i;:::-;;;7790:14:1;;7783:22;7765:41;;7753:2;7738:18;43538:224:0;;;;;;;;56276:93;;;;;;;;;;;;;:::i;:::-;;30358:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31917:221::-;;;;;;;;;;-1:-1:-1;31917:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7088:32:1;;;7070:51;;7058:2;7043:18;31917:221:0;6924:203:1;31440:411:0;;;;;;;;;;-1:-1:-1;31440:411:0;;;;;:::i;:::-;;:::i;53540:91::-;;;;;;;;;;-1:-1:-1;53540:91:0;;;;;:::i;:::-;;:::i;44178:113::-;;;;;;;;;;-1:-1:-1;44266:10:0;:17;44178:113;;;21929:25:1;;;21917:2;21902:18;44178:113:0;21783:177:1;52538:55:0;;;;;;;;;;-1:-1:-1;52538:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;54510:106;;;;;;;;;;-1:-1:-1;54510:106:0;;;;;:::i;:::-;;:::i;56094:87::-;;;;;;;;;;;;;:::i;32667:339::-;;;;;;;;;;-1:-1:-1;32667:339:0;;;;;:::i;:::-;;:::i;52106:39::-;;;;;;;;;;;;;;;;43846:256;;;;;;;;;;-1:-1:-1;43846:256:0;;;;;:::i;:::-;;:::i;51651:38::-;;;;;;;;;;;;51685:4;51651:38;;51734:49;;;;;;;;;;;;51779:4;51734:49;;59544:253;;;;;;;;;;-1:-1:-1;59544:253:0;;;;;:::i;:::-;;:::i;54092:101::-;;;;;;;;;;-1:-1:-1;54092:101:0;;;;;:::i;:::-;;:::i;60712:151::-;;;:::i;33077:185::-;;;;;;;;;;-1:-1:-1;33077:185:0;;;;;:::i;:::-;;:::i;55324:99::-;;;;;;;;;;;;;:::i;51828:49::-;;;;;;;;;;;;51873:4;51828:49;;44368:233;;;;;;;;;;-1:-1:-1;44368:233:0;;;;;:::i;:::-;;:::i;53742:128::-;;;;;;;;;;-1:-1:-1;53742:128:0;;;;;:::i;:::-;;:::i;52312:26::-;;;;;;;;;;-1:-1:-1;52312:26:0;;;;;;;;30052:239;;;;;;;;;;-1:-1:-1;30052:239:0;;;;;:::i;:::-;;:::i;52641:21::-;;;;;;;;;;;;;:::i;52019:40::-;;;;;;;;;;;;;;;;29782:208;;;;;;;;;;-1:-1:-1;29782:208:0;;;;;:::i;:::-;;:::i;8954:103::-;;;;;;;;;;;;;:::i;55519:95::-;;;;;;;;;;;;;:::i;52188:33::-;;;;;;;;;;;;;;;;8303:87;;;;;;;;;;-1:-1:-1;8376:6:0;;-1:-1:-1;;;;;8376:6:0;8303:87;;30527:104;;;;;;;;;;;;;:::i;52378:34::-;;;;;;;;;;-1:-1:-1;52378:34:0;;;;;;;;;;;56402:3130;;;;;;:::i;:::-;;:::i;54695:110::-;;;;;;;;;;-1:-1:-1;54695:110:0;;;;;:::i;:::-;;:::i;32210:155::-;;;;;;;;;;-1:-1:-1;32210:155:0;;;;;:::i;:::-;;:::i;33333:328::-;;;;;;;;;;-1:-1:-1;33333:328:0;;;;;:::i;:::-;;:::i;51938:34::-;;;;;;;;;;;;;;;;52452:37;;;;;;;;;;-1:-1:-1;52452:37:0;;;;;:::i;:::-;;:::i;52230:39::-;;;;;;;;;;;;;;;;52743:37;;;;;;;;;;;;;:::i;60272:393::-;;;;;;;;;;-1:-1:-1;60272:393:0;;;;;:::i;:::-;;:::i;53033:24::-;;;;;;;;;;-1:-1:-1;53033:24:0;;;;;;;;;;;;;;;:::i;59969:203::-;;;;;;;;;;-1:-1:-1;59969:203:0;;;;;:::i;:::-;;:::i;55903:99::-;;;;;;;;;;;;;:::i;53923:110::-;;;;;;;;;;-1:-1:-1;53923:110:0;;;;;:::i;:::-;;:::i;55098:128::-;;;;;;;;;;-1:-1:-1;55098:128:0;;;;;:::i;:::-;;:::i;55710:95::-;;;;;;;;;;;;;:::i;32436:164::-;;;;;;;;;;-1:-1:-1;32436:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32557:25:0;;;32533:4;32557:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32436:164;54254:153;;;;;;;;;;-1:-1:-1;54254:153:0;;;;;:::i;:::-;;:::i;9212:201::-;;;;;;;;;;-1:-1:-1;9212:201:0;;;;;:::i;:::-;;:::i;43538:224::-;43640:4;-1:-1:-1;;;;;;43664:50:0;;-1:-1:-1;;;43664:50:0;;:90;;;43718:36;43742:11;43718:23;:36::i;:::-;43657:97;43538:224;-1:-1:-1;;43538:224:0:o;56276:93::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;;;;;;;;;56332:11:::1;:27:::0;;56346:13:::1;::::0;56332:11;-1:-1:-1;;56332:27:0::1;::::0;56346:13;56332:27:::1;;;;;;56276:93::o:0;30358:100::-;30412:13;30445:5;30438:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30358:100;:::o;31917:221::-;31993:7;35260:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35260:16:0;32013:73;;;;-1:-1:-1;;;32013:73:0;;17007:2:1;32013:73:0;;;16989:21:1;17046:2;17026:18;;;17019:30;17085:34;17065:18;;;17058:62;-1:-1:-1;;;17136:18:1;;;17129:42;17188:19;;32013:73:0;16805:408:1;32013:73:0;-1:-1:-1;32106:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32106:24:0;;31917:221::o;31440:411::-;31521:13;31537:23;31552:7;31537:14;:23::i;:::-;31521:39;;31585:5;-1:-1:-1;;;;;31579:11:0;:2;-1:-1:-1;;;;;31579:11:0;;;31571:57;;;;-1:-1:-1;;;31571:57:0;;18563:2:1;31571:57:0;;;18545:21:1;18602:2;18582:18;;;18575:30;18641:34;18621:18;;;18614:62;-1:-1:-1;;;18692:18:1;;;18685:31;18733:19;;31571:57:0;18361:397:1;31571:57:0;7107:10;-1:-1:-1;;;;;31663:21:0;;;;:62;;-1:-1:-1;31688:37:0;31705:5;7107:10;32436:164;:::i;31688:37::-;31641:168;;;;-1:-1:-1;;;31641:168:0;;13853:2:1;31641:168:0;;;13835:21:1;13892:2;13872:18;;;13865:30;13931:34;13911:18;;;13904:62;14002:26;13982:18;;;13975:54;14046:19;;31641:168:0;13651:420:1;31641:168:0;31822:21;31831:2;31835:7;31822:8;:21::i;:::-;31510:341;31440:411;;:::o;53540:91::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;53605:6:::1;:16:::0;;-1:-1:-1;;53605:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53540:91::o;54510:106::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;54584:9:::1;:22:::0;54510:106::o;56094:87::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;56147:11:::1;:24:::0;;56161:10:::1;::::0;56147:11;-1:-1:-1;;56147:24:0::1;::::0;56161:10;56147:24:::1;::::0;32667:339;32862:41;7107:10;32895:7;32862:18;:41::i;:::-;32854:103;;;;-1:-1:-1;;;32854:103:0;;;;;;;:::i;:::-;32970:28;32980:4;32986:2;32990:7;32970:9;:28::i;43846:256::-;43943:7;43979:23;43996:5;43979:16;:23::i;:::-;43971:5;:31;43963:87;;;;-1:-1:-1;;;43963:87:0;;9017:2:1;43963:87:0;;;8999:21:1;9056:2;9036:18;;;9029:30;9095:34;9075:18;;;9068:62;-1:-1:-1;;;9146:18:1;;;9139:41;9197:19;;43963:87:0;8815:407:1;43963:87:0;-1:-1:-1;;;;;;44068:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43846:256::o;59544:253::-;59603:4;;59618:151;59639:20;:27;59635:31;;59618:151;;;59715:5;-1:-1:-1;;;;;59688:32:0;:20;59709:1;59688:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;59688:23:0;:32;59684:76;;;-1:-1:-1;59744:4:0;;59544:253;-1:-1:-1;;59544:253:0:o;59684:76::-;59668:3;;;;:::i;:::-;;;;59618:151;;;-1:-1:-1;59784:5:0;;59544:253;-1:-1:-1;;59544:253:0:o;54092:101::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;54159:15:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;54159:24:0;;::::1;::::0;;;::::1;::::0;;54092:101::o;60712:151::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;60767:7:::1;60788;8376:6:::0;;-1:-1:-1;;;;;8376:6:0;;8303:87;60788:7:::1;-1:-1:-1::0;;;;;60780:21:0::1;60809;60780:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60766:69;;;60852:2;60844:11;;;::::0;::::1;;60757:106;60712:151::o:0;33077:185::-;33215:39;33232:4;33238:2;33242:7;33215:39;;;;;;;;;;;;:16;:39::i;55324:99::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;55383:11:::1;:30:::0;;55397:16:::1;::::0;55383:11;-1:-1:-1;;55383:30:0::1;55397:16:::0;;55383:30:::1;::::0;44368:233;44443:7;44479:30;44266:10;:17;;44178:113;44479:30;44471:5;:38;44463:95;;;;-1:-1:-1;;;44463:95:0;;20425:2:1;44463:95:0;;;20407:21:1;20464:2;20444:18;;;20437:30;20503:34;20483:18;;;20476:62;-1:-1:-1;;;20554:18:1;;;20547:42;20606:19;;44463:95:0;20223:408:1;44463:95:0;44576:10;44587:5;44576:17;;;;;;;;:::i;:::-;;;;;;;;;44569:24;;44368:233;;;:::o;53742:128::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;53826:16:::1;:34:::0;53742:128::o;30052:239::-;30124:7;30160:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30160:16:0;30195:19;30187:73;;;;-1:-1:-1;;;30187:73:0;;14689:2:1;30187:73:0;;;14671:21:1;14728:2;14708:18;;;14701:30;14767:34;14747:18;;;14740:62;-1:-1:-1;;;14818:18:1;;;14811:39;14867:19;;30187:73:0;14487:405:1;52641:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29782:208::-;29854:7;-1:-1:-1;;;;;29882:19:0;;29874:74;;;;-1:-1:-1;;;29874:74:0;;14278:2:1;29874:74:0;;;14260:21:1;14317:2;14297:18;;;14290:30;14356:34;14336:18;;;14329:62;-1:-1:-1;;;14407:18:1;;;14400:40;14457:19;;29874:74:0;14076:406:1;29874:74:0;-1:-1:-1;;;;;;29966:16:0;;;;;:9;:16;;;;;;;29782:208::o;8954:103::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;9019:30:::1;9046:1;9019:18;:30::i;:::-;8954:103::o:0;55519:95::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;55576:11:::1;:28:::0;;55590:14:::1;::::0;55576:11;-1:-1:-1;;55576:28:0::1;::::0;55590:14;55576:28:::1;::::0;30527:104;30583:13;30616:7;30609:14;;;;;:::i;56402:3130::-;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;21269:2:1;2402:63:0;;;21251:21:1;21308:2;21288:18;;;21281:30;21347:33;21327:18;;;21320:61;21398:18;;2402:63:0;21067:355:1;2402:63:0;1812:1;2543:7;:18;56485:6:::1;::::0;::::1;;56484:7;56476:42;;;::::0;-1:-1:-1;;;56476:42:0;;17781:2:1;56476:42:0::1;::::0;::::1;17763:21:1::0;17820:2;17800:18;;;17793:30;-1:-1:-1;;;17839:18:1;;;17832:52;17901:18;;56476:42:0::1;17579:346:1::0;56476:42:0::1;56527:14;56544:13;44266:10:::0;:17;;44178:113;56544:13:::1;56527:30;;56588:1;56574:11;:15;56566:55;;;::::0;-1:-1:-1;;;56566:55:0;;21629:2:1;56566:55:0::1;::::0;::::1;21611:21:1::0;21668:2;21648:18;;;21641:30;21707:29;21687:18;;;21680:57;21754:18;;56566:55:0::1;21427:351:1::0;56566:55:0::1;56653:16;;56638:11;:31;;56630:80;;;::::0;-1:-1:-1;;;56630:80:0;;15099:2:1;56630:80:0::1;::::0;::::1;15081:21:1::0;15138:2;15118:18;;;15111:30;15177:34;15157:18;;;15150:62;-1:-1:-1;;;15228:18:1;;;15221:34;15272:19;;56630:80:0::1;14897:400:1::0;56630:80:0::1;56742:12;56727:11;::::0;::::1;;:27;::::0;::::1;;;;;;:::i;:::-;;;56719:70;;;::::0;-1:-1:-1;;;56719:70:0;;19312:2:1;56719:70:0::1;::::0;::::1;19294:21:1::0;19351:2;19331:18;;;19324:30;19390:32;19370:18;;;19363:60;19440:18;;56719:70:0::1;19110:354:1::0;56719:70:0::1;56821:14;56806:11;::::0;::::1;;:29;::::0;::::1;;;;;;:::i;:::-;;;56798:104;;;::::0;-1:-1:-1;;;56798:104:0;;20838:2:1;56798:104:0::1;::::0;::::1;20820:21:1::0;20877:2;20857:18;;;20850:30;20916:34;20896:18;;;20889:62;20987:32;20967:18;;;20960:60;21037:19;;56798:104:0::1;20636:426:1::0;56798:104:0::1;56934:14;56919:11;::::0;::::1;;:29;::::0;::::1;;;;;;:::i;:::-;;;56911:106;;;::::0;;-1:-1:-1;;;56911:106:0;;15861:2:1;56911:106:0::1;::::0;::::1;15843:21:1::0;15880:18;;;15873:30;;;;15939:34;15919:18;;;15912:62;16010:34;15990:18;;;15983:62;16062:19;;56911:106:0::1;15659:428:1::0;56911:106:0::1;57049:13;57034:11;::::0;::::1;;:28;::::0;::::1;;;;;;:::i;:::-;;;57026:113;;;::::0;-1:-1:-1;;;57026:113:0;;11370:2:1;57026:113:0::1;::::0;::::1;11352:21:1::0;11409:2;11389:18;;;11382:30;11448:34;11428:18;;;11421:62;11519:34;11499:18;;;11492:62;-1:-1:-1;;;11570:19:1;;;11563:39;11619:19;;57026:113:0::1;11168:476:1::0;57026:113:0::1;51685:4;57158:20;57167:11:::0;57158:6;:20:::1;:::i;:::-;:34;;57150:82;;;::::0;-1:-1:-1;;;57150:82:0;;13449:2:1;57150:82:0::1;::::0;::::1;13431:21:1::0;13488:2;13468:18;;;13461:30;13527:34;13507:18;;;13500:62;-1:-1:-1;;;13578:18:1;;;13571:33;13621:19;;57150:82:0::1;13247:399:1::0;57150:82:0::1;57264:16;57249:11;::::0;::::1;;:31;::::0;::::1;;;;;;:::i;:::-;;57246:764;;;57310:15;::::0;57359:19:::1;57367:11:::0;57310:15;57359:19:::1;:::i;:::-;57346:9;:32;;57338:63;;;;-1:-1:-1::0;;;57338:63:0::1;;;;;;;:::i;:::-;57417:15;::::0;::::1;;::::0;;::::1;;:23;;:15;:23;57414:583;;;57507:10;57459:24;57486:32:::0;;;:20:::1;:32;::::0;;;;;;57543:25:::1;::::0;:13:::1;:25::i;:::-;57535:61;;;::::0;-1:-1:-1;;;57535:61:0;;16655:2:1;57535:61:0::1;::::0;::::1;16637:21:1::0;16694:2;16674:18;;;16667:30;-1:-1:-1;;;16713:18:1;;;16706:53;16776:18;;57535:61:0::1;16453:347:1::0;57535:61:0::1;57655:18;::::0;57621:30:::1;57640:11:::0;57621:16;:30:::1;:::i;:::-;:52;;57613:93;;;;-1:-1:-1::0;;;57613:93:0::1;;;;;;;:::i;:::-;51779:4;57731:20;57740:11:::0;57731:6;:20:::1;:::i;:::-;:45;;57723:120;;;::::0;-1:-1:-1;;;57723:120:0;;8586:2:1;57723:120:0::1;::::0;::::1;8568:21:1::0;8625:2;8605:18;;;8598:30;8664:34;8644:18;;;8637:62;8735:32;8715:18;;;8708:60;8785:19;;57723:120:0::1;8384:426:1::0;57723:120:0::1;51779:4;57863:20;57872:11:::0;57863:6;:20:::1;:::i;:::-;:45;57860:120;;;57927:11;:28:::0;;-1:-1:-1;;57927:28:0::1;57941:14;57927:28;::::0;;57860:120:::1;57442:555;57414:583;57281:729;57246:764;58044:16;58029:11;::::0;::::1;;:31;::::0;::::1;;;;;;:::i;:::-;;58026:749;;;58090:15;::::0;58139:19:::1;58147:11:::0;58090:15;58139:19:::1;:::i;:::-;58126:9;:32;;58118:63;;;;-1:-1:-1::0;;;58118:63:0::1;;;;;;;:::i;:::-;58197:15;::::0;::::1;;::::0;;::::1;;:23;;:15;:23;58194:572;;;58287:10;58239:24;58266:32:::0;;;:20:::1;:32;::::0;;;;;;58323:25:::1;::::0;:13:::1;:25::i;:::-;58315:61;;;::::0;-1:-1:-1;;;58315:61:0;;16655:2:1;58315:61:0::1;::::0;::::1;16637:21:1::0;16694:2;16674:18;;;16667:30;-1:-1:-1;;;16713:18:1;;;16706:53;16776:18;;58315:61:0::1;16453:347:1::0;58315:61:0::1;58435:18;::::0;58401:30:::1;58420:11:::0;58401:16;:30:::1;:::i;:::-;:52;;58393:93;;;;-1:-1:-1::0;;;58393:93:0::1;;;;;;;:::i;:::-;51873:4;58511:20;58520:11:::0;58511:6;:20:::1;:::i;:::-;:45;;58503:120;;;::::0;-1:-1:-1;;;58503:120:0;;18132:2:1;58503:120:0::1;::::0;::::1;18114:21:1::0;18171:2;18151:18;;;18144:30;18210:34;18190:18;;;18183:62;18281:32;18261:18;;;18254:60;18331:19;;58503:120:0::1;17930:426:1::0;58503:120:0::1;51873:4;58643:20;58652:11:::0;58643:6;:20:::1;:::i;:::-;:45;58640:113;;;58707:11;:28:::0;;-1:-1:-1;;58707:28:0::1;58721:14;58707:28;::::0;;58640:113:::1;58222:544;58194:572;58061:714;58026:749;58805:10;58790:11;::::0;::::1;;:25;::::0;::::1;;;;;;:::i;:::-;;58787:573;;;58845:9;::::0;58915:10:::1;58829:13;58894:32:::0;;;:20:::1;:32;::::0;;;;;58960:19:::1;58968:11:::0;58845:9;58960:19:::1;:::i;:::-;58947:9;:32;;58939:63;;;;-1:-1:-1::0;;;58939:63:0::1;;;;;;;:::i;:::-;59057:18;::::0;59023:30:::1;59042:11:::0;59023:16;:30:::1;:::i;:::-;:52;;59015:93;;;;-1:-1:-1::0;;;59015:93:0::1;;;;;;;:::i;:::-;51685:4;59129:20;59138:11:::0;59129:6;:20:::1;:::i;:::-;:34;;59121:104;;;::::0;-1:-1:-1;;;59121:104:0;;13023:2:1;59121:104:0::1;::::0;::::1;13005:21:1::0;13062:2;13042:18;;;13035:30;13101:34;13081:18;;;13074:62;13172:27;13152:18;;;13145:55;13217:19;;59121:104:0::1;12821:421:1::0;59121:104:0::1;51685:4;59253:20;59262:11:::0;59253:6;:20:::1;:::i;:::-;:34;59250:101;;;59306:11;:27:::0;;-1:-1:-1;;59306:27:0::1;59320:13;59306:27;::::0;;59250:101:::1;58816:544;;58787:573;59397:1;59380:144;59405:11;59400:1;:16;59380:144;;59457:10;59436:32;::::0;;;:20:::1;:32;::::0;;;;:34;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;59481:33:0::1;::::0;-1:-1:-1;59491:10:0::1;59503;59512:1:::0;59503:6;:10:::1;:::i;:::-;59481:9;:33::i;:::-;59418:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59380:144;;;-1:-1:-1::0;;1768:1:0;2722:7;:22;-1:-1:-1;56402:3130:0:o;54695:110::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;54774:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54695:110:::0;:::o;32210:155::-;32305:52;7107:10;32338:8;32348;32305:18;:52::i;33333:328::-;33508:41;7107:10;33541:7;33508:18;:41::i;:::-;33500:103;;;;-1:-1:-1;;;33500:103:0;;;;;;;:::i;:::-;33614:39;33628:4;33634:2;33638:7;33647:5;33614:13;:39::i;:::-;33333:328;;;;:::o;52452:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52452:37:0;;-1:-1:-1;52452:37:0;:::o;52743:::-;;;;;;;:::i;60272:393::-;35236:4;35260:16;;;:7;:16;;;;;;60341:13;;-1:-1:-1;;;;;35260:16:0;60369:51;;;;-1:-1:-1;;;60369:51:0;;10255:2:1;60369:51:0;;;10237:21:1;10294:2;10274:18;;;10267:30;10333:25;10313:18;;;10306:53;10376:18;;60369:51:0;10053:347:1;60369:51:0;60433:28;60464:10;:8;:10::i;:::-;60433:41;;60541:1;60516:14;60510:28;:32;:145;;;;;;;;;;;;;;;;;60585:14;60601:17;:6;:15;:17::i;:::-;60620:13;60568:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60510:145;60487:168;60272:393;-1:-1:-1;;;60272:393:0:o;59969:203::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;60033:11:::1;60047:13;44266:10:::0;:17;;44178:113;60047:13:::1;60033:27:::0;-1:-1:-1;51685:4:0::1;60081:10;60033:27:::0;60090:1:::1;60081:10;:::i;:::-;:24;;60073:45;;;::::0;-1:-1:-1;;;60073:45:0;;20089:2:1;60073:45:0::1;::::0;::::1;20071:21:1::0;20128:1;20108:18;;;20101:29;-1:-1:-1;;;20146:18:1;;;20139:38;20194:18;;60073:45:0::1;19887:331:1::0;60073:45:0::1;60131:31;60141:8:::0;60151:10:::1;:6:::0;60160:1:::1;60151:10;:::i;55903:99::-:0;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;55962:11:::1;:30:::0;;55976:16:::1;::::0;55962:11;-1:-1:-1;;55962:30:0::1;::::0;55976:16;55962:30:::1;::::0;53923:110;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;53996:18:::1;:27:::0;53923:110::o;55098:128::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;55186:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;55710:95::-:0;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;55767:11:::1;:28:::0;;55781:14:::1;::::0;55767:11;-1:-1:-1;;55767:28:0::1;::::0;55781:14;55767:28:::1;::::0;54254:153;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;54331:27:::1;54338:20;;54331:27;:::i;:::-;54367:29;:20;54390:6:::0;;54367:29:::1;:::i;9212:201::-:0;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9301:22:0;::::1;9293:73;;;::::0;-1:-1:-1;;;9293:73:0;;9848:2:1;9293:73:0::1;::::0;::::1;9830:21:1::0;9887:2;9867:18;;;9860:30;9926:34;9906:18;;;9899:62;-1:-1:-1;;;9977:18:1;;;9970:36;10023:19;;9293:73:0::1;9646:402:1::0;9293:73:0::1;9377:28;9396:8;9377:18;:28::i;3753:127::-:0;3842:19;;3860:1;3842:19;;;3753:127::o;29413:305::-;29515:4;-1:-1:-1;;;;;;29552:40:0;;-1:-1:-1;;;29552:40:0;;:105;;-1:-1:-1;;;;;;;29609:48:0;;-1:-1:-1;;;29609:48:0;29552:105;:158;;;-1:-1:-1;;;;;;;;;;21196:40:0;;;29674:36;21087:157;39317:174;39392:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39392:29:0;-1:-1:-1;;;;;39392:29:0;;;;;;;;:24;;39446:23;39392:24;39446:14;:23::i;:::-;-1:-1:-1;;;;;39437:46:0;;;;;;;;;;;39317:174;;:::o;35465:348::-;35558:4;35260:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35260:16:0;35575:73;;;;-1:-1:-1;;;35575:73:0;;12610:2:1;35575:73:0;;;12592:21:1;12649:2;12629:18;;;12622:30;12688:34;12668:18;;;12661:62;-1:-1:-1;;;12739:18:1;;;12732:42;12791:19;;35575:73:0;12408:408:1;35575:73:0;35659:13;35675:23;35690:7;35675:14;:23::i;:::-;35659:39;;35728:5;-1:-1:-1;;;;;35717:16:0;:7;-1:-1:-1;;;;;35717:16:0;;:51;;;;35761:7;-1:-1:-1;;;;;35737:31:0;:20;35749:7;35737:11;:20::i;:::-;-1:-1:-1;;;;;35737:31:0;;35717:51;:87;;;-1:-1:-1;;;;;;32557:25:0;;;32533:4;32557:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35772:32;35709:96;35465:348;-1:-1:-1;;;;35465:348:0:o;38574:625::-;38733:4;-1:-1:-1;;;;;38706:31:0;:23;38721:7;38706:14;:23::i;:::-;-1:-1:-1;;;;;38706:31:0;;38698:81;;;;-1:-1:-1;;;38698:81:0;;10607:2:1;38698:81:0;;;10589:21:1;10646:2;10626:18;;;10619:30;10685:34;10665:18;;;10658:62;-1:-1:-1;;;10736:18:1;;;10729:35;10781:19;;38698:81:0;10405:401:1;38698:81:0;-1:-1:-1;;;;;38798:16:0;;38790:65;;;;-1:-1:-1;;;38790:65:0;;11851:2:1;38790:65:0;;;11833:21:1;11890:2;11870:18;;;11863:30;11929:34;11909:18;;;11902:62;-1:-1:-1;;;11980:18:1;;;11973:34;12024:19;;38790:65:0;11649:400:1;38790:65:0;38868:39;38889:4;38895:2;38899:7;38868:20;:39::i;:::-;38972:29;38989:1;38993:7;38972:8;:29::i;:::-;-1:-1:-1;;;;;39014:15:0;;;;;;:9;:15;;;;;:20;;39033:1;;39014:15;:20;;39033:1;;39014:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39045:13:0;;;;;;:9;:13;;;;;:18;;39062:1;;39045:13;:18;;39062:1;;39045:18;:::i;:::-;;;;-1:-1:-1;;39074:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39074:21:0;-1:-1:-1;;;;;39074:21:0;;;;;;;;;39113:27;;39074:16;;39113:27;;;;;;;31510:341;31440:411;;:::o;9573:191::-;9666:6;;;-1:-1:-1;;;;;9683:17:0;;;-1:-1:-1;;;;;;9683:17:0;;;;;;;9716:40;;9666:6;;;9683:17;9666:6;;9716:40;;9647:16;;9716:40;9636:128;9573:191;:::o;36155:110::-;36231:26;36241:2;36245:7;36231:26;;;;;;;;;;;;:9;:26::i;39633:315::-;39788:8;-1:-1:-1;;;;;39779:17:0;:5;-1:-1:-1;;;;;39779:17:0;;;39771:55;;;;-1:-1:-1;;;39771:55:0;;12256:2:1;39771:55:0;;;12238:21:1;12295:2;12275:18;;;12268:30;12334:27;12314:18;;;12307:55;12379:18;;39771:55:0;12054:349:1;39771:55:0;-1:-1:-1;;;;;39837:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39837:46:0;;;;;;;;;;39899:41;;7765::1;;;39899::0;;7738:18:1;39899:41:0;;;;;;;39633:315;;;:::o;34543:::-;34700:28;34710:4;34716:2;34720:7;34700:9;:28::i;:::-;34747:48;34770:4;34776:2;34780:7;34789:5;34747:22;:48::i;:::-;34739:111;;;;-1:-1:-1;;;34739:111:0;;;;;;;:::i;54876:116::-;54936:13;54975:7;54968:14;;;;;:::i;4589:723::-;4645:13;4866:10;4862:53;;-1:-1:-1;;4893:10:0;;;;;;;;;;;;-1:-1:-1;;;4893:10:0;;;;;4589:723::o;4862:53::-;4940:5;4925:12;4981:78;4988:9;;4981:78;;5014:8;;;;:::i;:::-;;-1:-1:-1;5037:10:0;;-1:-1:-1;5045:2:0;5037:10;;:::i;:::-;;;4981:78;;;5069:19;5101:6;5091:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5091:17:0;;5069:39;;5119:154;5126:10;;5119:154;;5153:11;5163:1;5153:11;;:::i;:::-;;-1:-1:-1;5222:10:0;5230:2;5222:5;:10;:::i;:::-;5209:24;;:2;:24;:::i;:::-;5196:39;;5179:6;5186;5179:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5179:56:0;;;;;;;;-1:-1:-1;5250:11:0;5259:2;5250:11;;:::i;:::-;;;5119:154;;45214:589;-1:-1:-1;;;;;45420:18:0;;45416:187;;45455:40;45487:7;46630:10;:17;;46603:24;;;;:15;:24;;;;;:44;;;46658:24;;;;;;;;;;;;46526:164;45455:40;45416:187;;;45525:2;-1:-1:-1;;;;;45517:10:0;:4;-1:-1:-1;;;;;45517:10:0;;45513:90;;45544:47;45577:4;45583:7;45544:32;:47::i;:::-;-1:-1:-1;;;;;45617:16:0;;45613:183;;45650:45;45687:7;45650:36;:45::i;45613:183::-;45723:4;-1:-1:-1;;;;;45717:10:0;:2;-1:-1:-1;;;;;45717:10:0;;45713:83;;45744:40;45772:2;45776:7;45744:27;:40::i;36492:321::-;36622:18;36628:2;36632:7;36622:5;:18::i;:::-;36673:54;36704:1;36708:2;36712:7;36721:5;36673:22;:54::i;:::-;36651:154;;;;-1:-1:-1;;;36651:154:0;;;;;;;:::i;40513:799::-;40668:4;-1:-1:-1;;;;;40689:13:0;;11299:19;:23;40685:620;;40725:72;;-1:-1:-1;;;40725:72:0;;-1:-1:-1;;;;;40725:36:0;;;;;:72;;7107:10;;40776:4;;40782:7;;40791:5;;40725:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40725:72:0;;;;;;;;-1:-1:-1;;40725:72:0;;;;;;;;;;;;:::i;:::-;;;40721:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40967:13:0;;40963:272;;41010:60;;-1:-1:-1;;;41010:60:0;;;;;;;:::i;40963:272::-;41185:6;41179:13;41170:6;41166:2;41162:15;41155:38;40721:529;-1:-1:-1;;;;;;40848:51:0;-1:-1:-1;;;40848:51:0;;-1:-1:-1;40841:58:0;;40685:620;-1:-1:-1;41289:4:0;40513:799;;;;;;:::o;47317:988::-;47583:22;47633:1;47608:22;47625:4;47608:16;:22::i;:::-;:26;;;;:::i;:::-;47645:18;47666:26;;;:17;:26;;;;;;47583:51;;-1:-1:-1;47799:28:0;;;47795:328;;-1:-1:-1;;;;;47866:18:0;;47844:19;47866:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47917:30;;;;;;:44;;;48034:30;;:17;:30;;;;;:43;;;47795:328;-1:-1:-1;48219:26:0;;;;:17;:26;;;;;;;;48212:33;;;-1:-1:-1;;;;;48263:18:0;;;;;:12;:18;;;;;:34;;;;;;;48256:41;47317:988::o;48600:1079::-;48878:10;:17;48853:22;;48878:21;;48898:1;;48878:21;:::i;:::-;48910:18;48931:24;;;:15;:24;;;;;;49304:10;:26;;48853:46;;-1:-1:-1;48931:24:0;;48853:46;;49304:26;;;;;;:::i;:::-;;;;;;;;;49282:48;;49368:11;49343:10;49354;49343:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;49448:28;;;:15;:28;;;;;;;:41;;;49620:24;;;;;49613:31;49655:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48671:1008;;;48600:1079;:::o;46104:221::-;46189:14;46206:20;46223:2;46206:16;:20::i;:::-;-1:-1:-1;;;;;46237:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;46282:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;46104:221:0:o;37149:439::-;-1:-1:-1;;;;;37229:16:0;;37221:61;;;;-1:-1:-1;;;37221:61:0;;16294:2:1;37221:61:0;;;16276:21:1;;;16313:18;;;16306:30;16372:34;16352:18;;;16345:62;16424:18;;37221:61:0;16092:356:1;37221:61:0;35236:4;35260:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35260:16:0;:30;37293:58;;;;-1:-1:-1;;;37293:58:0;;11013:2:1;37293:58:0;;;10995:21:1;11052:2;11032:18;;;11025:30;11091;11071:18;;;11064:58;11139:18;;37293:58:0;10811:352:1;37293:58:0;37364:45;37393:1;37397:2;37401:7;37364:20;:45::i;:::-;-1:-1:-1;;;;;37422:13:0;;;;;;:9;:13;;;;;:18;;37439:1;;37422:13;:18;;37439:1;;37422:18;:::i;:::-;;;;-1:-1:-1;;37451:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37451:21:0;-1:-1:-1;;;;;37451:21:0;;;;;;;;37490:33;;37451:16;;;37490:33;;37451:16;;37490:33;54774:21:::1;54695:110:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:257::-;4961:3;4999:5;4993:12;5026:6;5021:3;5014:19;5042:63;5098:6;5091:4;5086:3;5082:14;5075:4;5068:5;5064:16;5042:63;:::i;:::-;5159:2;5138:15;-1:-1:-1;;5134:29:1;5125:39;;;;5166:4;5121:50;;4920:257;-1:-1:-1;;4920:257:1:o;5182:1527::-;5406:3;5444:6;5438:13;5470:4;5483:51;5527:6;5522:3;5517:2;5509:6;5505:15;5483:51;:::i;:::-;5597:13;;5556:16;;;;5619:55;5597:13;5556:16;5641:15;;;5619:55;:::i;:::-;5763:13;;5696:20;;;5736:1;;5823;5845:18;;;;5898;;;;5925:93;;6003:4;5993:8;5989:19;5977:31;;5925:93;6066:2;6056:8;6053:16;6033:18;6030:40;6027:167;;;-1:-1:-1;;;6093:33:1;;6149:4;6146:1;6139:15;6179:4;6100:3;6167:17;6027:167;6210:18;6237:110;;;;6361:1;6356:328;;;;6203:481;;6237:110;-1:-1:-1;;6272:24:1;;6258:39;;6317:20;;;;-1:-1:-1;6237:110:1;;6356:328;22038:1;22031:14;;;22075:4;22062:18;;6451:1;6465:169;6479:8;6476:1;6473:15;6465:169;;;6561:14;;6546:13;;;6539:37;6604:16;;;;6496:10;;6465:169;;;6469:3;;6665:8;6658:5;6654:20;6647:27;;6203:481;-1:-1:-1;6700:3:1;;5182:1527;-1:-1:-1;;;;;;;;;;;5182:1527:1:o;7132:488::-;-1:-1:-1;;;;;7401:15:1;;;7383:34;;7453:15;;7448:2;7433:18;;7426:43;7500:2;7485:18;;7478:34;;;7548:3;7543:2;7528:18;;7521:31;;;7326:4;;7569:45;;7594:19;;7586:6;7569:45;:::i;:::-;7561:53;7132:488;-1:-1:-1;;;;;;7132:488:1:o;7817:338::-;7959:2;7944:18;;7992:1;7981:13;;7971:144;;8037:10;8032:3;8028:20;8025:1;8018:31;8072:4;8069:1;8062:15;8100:4;8097:1;8090:15;7971:144;8124:25;;;7817:338;:::o;8160:219::-;8309:2;8298:9;8291:21;8272:4;8329:44;8369:2;8358:9;8354:18;8346:6;8329:44;:::i;9227:414::-;9429:2;9411:21;;;9468:2;9448:18;;;9441:30;9507:34;9502:2;9487:18;;9480:62;-1:-1:-1;;;9573:2:1;9558:18;;9551:48;9631:3;9616:19;;9227:414::o;15302:352::-;15504:2;15486:21;;;15543:2;15523:18;;;15516:30;15582;15577:2;15562:18;;15555:58;15645:2;15630:18;;15302:352::o;17218:356::-;17420:2;17402:21;;;17439:18;;;17432:30;17498:34;17493:2;17478:18;;17471:62;17565:2;17550:18;;17218:356::o;18763:342::-;18965:2;18947:21;;;19004:2;18984:18;;;18977:30;-1:-1:-1;;;19038:2:1;19023:18;;19016:48;19096:2;19081:18;;18763:342::o;19469:413::-;19671:2;19653:21;;;19710:2;19690:18;;;19683:30;19749:34;19744:2;19729:18;;19722:62;-1:-1:-1;;;19815:2:1;19800:18;;19793:47;19872:3;19857:19;;19469:413::o;22091:128::-;22131:3;22162:1;22158:6;22155:1;22152:13;22149:39;;;22168:18;;:::i;:::-;-1:-1:-1;22204:9:1;;22091:128::o;22224:120::-;22264:1;22290;22280:35;;22295:18;;:::i;:::-;-1:-1:-1;22329:9:1;;22224:120::o;22349:168::-;22389:7;22455:1;22451;22447:6;22443:14;22440:1;22437:21;22432:1;22425:9;22418:17;22414:45;22411:71;;;22462:18;;:::i;:::-;-1:-1:-1;22502:9:1;;22349:168::o;22522:125::-;22562:4;22590:1;22587;22584:8;22581:34;;;22595:18;;:::i;:::-;-1:-1:-1;22632:9:1;;22522:125::o;22652:258::-;22724:1;22734:113;22748:6;22745:1;22742:13;22734:113;;;22824:11;;;22818:18;22805:11;;;22798:39;22770:2;22763:10;22734:113;;;22865:6;22862:1;22859:13;22856:48;;;-1:-1:-1;;22900:1:1;22882:16;;22875:27;22652:258::o;22915:380::-;22994:1;22990:12;;;;23037;;;23058:61;;23112:4;23104:6;23100:17;23090:27;;23058:61;23165:2;23157:6;23154:14;23134:18;23131:38;23128:161;;;23211:10;23206:3;23202:20;23199:1;23192:31;23246:4;23243:1;23236:15;23274:4;23271:1;23264:15;23128:161;;22915:380;;;:::o;23300:135::-;23339:3;-1:-1:-1;;23360:17:1;;23357:43;;;23380:18;;:::i;:::-;-1:-1:-1;23427:1:1;23416:13;;23300:135::o;23440:112::-;23472:1;23498;23488:35;;23503:18;;:::i;:::-;-1:-1:-1;23537:9:1;;23440:112::o;23557:127::-;23618:10;23613:3;23609:20;23606:1;23599:31;23649:4;23646:1;23639:15;23673:4;23670:1;23663:15;23689:127;23750:10;23745:3;23741:20;23738:1;23731:31;23781:4;23778:1;23771:15;23805:4;23802:1;23795:15;23821:127;23882:10;23877:3;23873:20;23870:1;23863:31;23913:4;23910:1;23903:15;23937:4;23934:1;23927:15;23953:127;24014:10;24009:3;24005:20;24002:1;23995:31;24045:4;24042:1;24035:15;24069:4;24066:1;24059:15;24085:127;24146:10;24141:3;24137:20;24134:1;24127:31;24177:4;24174:1;24167:15;24201:4;24198:1;24191:15;24217:127;24278:10;24273:3;24269:20;24266:1;24259:31;24309:4;24306:1;24299:15;24333:4;24330:1;24323:15;24349:131;-1:-1:-1;;;;;;24423:32:1;;24413:43;;24403:71;;24470:1;24467;24460:12

Swarm Source

ipfs://81f707ee9ddbe4fd6b7af777f2d8484fa003b409b63a1f5aea394c8826c7a9ae
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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