ETH Price: $3,084.57 (-0.13%)
Gas: 5 Gwei

Token

Metti Landscape (MSCAPE)
 

Overview

Max Total Supply

1,923 MSCAPE

Holders

642

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 MSCAPE
0xff0C998D921394D89c5649712422622E3172480C
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Metti Landscape (MSCAPE) is a fine art banner NFT collection from artist Pumpametti. This is the genesis NFT banner collection from the artist.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MettiLandscape

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-22
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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



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



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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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



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/interfaces/IERC165.sol



pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/interfaces/IERC2981.sol



pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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



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



pragma solidity ^0.8.0;


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

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

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

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



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



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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



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/MettiLandscape.sol


// ███    ███ ███████ ████████ ████████ ██     ██       █████  ███    ██ ██████  ███████  ██████  █████  ██████  ███████ 
// ████  ████ ██         ██       ██    ██     ██      ██   ██ ████   ██ ██   ██ ██      ██      ██   ██ ██   ██ ██      
// ██ ████ ██ █████      ██       ██    ██     ██      ███████ ██ ██  ██ ██   ██ ███████ ██      ███████ ██████  █████   
// ██  ██  ██ ██         ██       ██    ██     ██      ██   ██ ██  ██ ██ ██   ██      ██ ██      ██   ██ ██      ██      
// ██      ██ ███████    ██       ██    ██     ███████ ██   ██ ██   ████ ██████  ███████  ██████ ██   ██ ██      ███████ 
//
// ██████  ██    ██ 
// ██   ██  ██  ██  
// ██████    ████   
// ██   ██    ██    
// ██████     ██    
//
// ██████  ██    ██ ███    ███ ██████   █████  ███    ███ ███████ ████████ ████████ ██ 
// ██   ██ ██    ██ ████  ████ ██   ██ ██   ██ ████  ████ ██         ██       ██    ██ 
// ██████  ██    ██ ██ ████ ██ ██████  ███████ ██ ████ ██ █████      ██       ██    ██ 
// ██      ██    ██ ██  ██  ██ ██      ██   ██ ██  ██  ██ ██         ██       ██    ██ 
// ██       ██████  ██      ██ ██      ██   ██ ██      ██ ███████    ██       ██    ██ 

//Metti Landscape (MSCAPE) is a fine art banner NFT collection from artist Pumpametti. This is the genesis NFT banner collection from the artist. 
//Reveal of Metti Landscape will happen on Oct 25th,2021, 5pm EST.

//Lifetime free mint for Pumpametti holders
//0.03 eth per mint for Pettametti holders
//0.04 eth per mint for Standametti holders

//Only 1 Metti Landscape per transaction

//For Pumpa holders please select "PumpaFirstChoiceVIPMint"
//For Petta holders please select "PettaVernissageMint"
//For Standa holders please select "StandaPrivateMint"

//No public mint, you have to own a Metti to mint a Metti Landscape
//Only mint from contract

//https://pumpametti.com/

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface PumpaInterface {
    function ownerOf(uint256 tokenId) external view returns (address owner);
    function balanceOf(address owner) external view returns (uint256 balance);
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);
}

interface PettaInterface {
    function ownerOf(uint256 tokenId) external view returns (address owner);
    function balanceOf(address owner) external view returns (uint256 balance);
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);
}

interface StandaInterface {
    function ownerOf(uint256 tokenId) external view returns (address owner);
    function balanceOf(address owner) external view returns (uint256 balance);
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);
}





contract MettiLandscape is ERC721Enumerable, Ownable, IERC2981 {
  using Strings for uint256;
  using SafeMath for uint256;
 
  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.05 ether;
  uint256 public maxPumpaSupply = 300;
  uint256 public maxPettaStandaSupply = 1700;
  uint256 public maxMintAmount = 1;
  bool public paused = false;
  bool public revealed = false;
  
  uint16 internal royalty = 700; // base 10000, 7%
  uint16 public constant BASE = 10000;

  address public PumpaAddress = 0x09646c5c1e42ede848A57d6542382C32f2877164;
  PumpaInterface PumpaContract = PumpaInterface(PumpaAddress);
  uint public PumpaOwnersSupplyMinted = 0;
  uint public PettaStandaSupplyMinted = 0;

  address public PettaAddress = 0x52474FBF6b678a280d0C69F2314d6d95548b3DAF;
  PettaInterface PettaContract = PettaInterface(PettaAddress);

  address public StandaAddress = 0xFC6Bc5D50912354e89bAd4daBf053Bca2d7Cd817;
  StandaInterface StandaContract = StandaInterface(StandaAddress);

  constructor( 
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721("Metti Landscape", "MSCAPE") {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  function PumpaFirstChoiceVIPMint(uint PumpaId) public payable {
    require(PumpaId > 0 && PumpaId <= 300, "Token ID invalid");
    require(PumpaContract.ownerOf(PumpaId) == msg.sender, "Not the owner of this Pumpa");

    _safeMint(msg.sender, PumpaId);
  }

  function PettaVernissageMint(uint PettaId, uint _mintAmount) public payable {
    require(PettaContract.ownerOf(PettaId) == msg.sender, "Not the owner of this Petta");
    require(msg.value >= 0.03 ether * _mintAmount);
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(PettaStandaSupplyMinted + _mintAmount <= maxPettaStandaSupply, "No more PettaStanda supply left");

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, maxPumpaSupply + PettaStandaSupplyMinted + i);
    }
    PettaStandaSupplyMinted = PettaStandaSupplyMinted + _mintAmount;
}

  function StandaPrivateMint(uint StandaId, uint _mintAmount) public payable {
    require(StandaContract.ownerOf(StandaId) == msg.sender, "Not the owner of this Standa");
    require(msg.value >= 0.04 ether * _mintAmount);
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(PettaStandaSupplyMinted + _mintAmount <= maxPettaStandaSupply, "No more PettaStanda supply left");

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, maxPumpaSupply + PettaStandaSupplyMinted + i);
    }
    PettaStandaSupplyMinted = PettaStandaSupplyMinted + _mintAmount;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }
  
  //onlyOwner
  
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function royaltyInfo(uint256, uint256 _salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        return (address(this), (_salePrice * royalty) / BASE);
    }

  function setRoyalty(uint16 _royalty) public virtual onlyOwner {
        require(_royalty >= 0 && _royalty <= 1000, 'Royalty must be between 0% and 10%.');

        royalty = _royalty;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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":"BASE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PettaAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PettaStandaSupplyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"PettaId","type":"uint256"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"PettaVernissageMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PumpaAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"PumpaId","type":"uint256"}],"name":"PumpaFirstChoiceVIPMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PumpaOwnersSupplyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"StandaAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"StandaId","type":"uint256"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"StandaPrivateMint","outputs":[],"stateMutability":"payable","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":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPettaStandaSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPumpaSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_royalty","type":"uint16"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620002e9565b5066b1a2bc2ec50000600e5561012c600f556106a46010556001601155601280546001600160c01b0319167709646c5c1e42ede848a57d6542382c32f287716402bc00001790819055601380546001600160a01b03640100000000909304929092166001600160a01b031992831617905560006014819055601555601680547352474fbf6b678a280d0c69f2314d6d95548b3daf908316811790915560178054831690911790556018805473fc6bc5d50912354e89bad4dabf053bca2d7cd8179083168117909155601980549092161790553480156200010757600080fd5b5060405162002e7c38038062002e7c8339810160408190526200012a916200045c565b604080518082018252600f81526e4d65747469204c616e64736361706560881b6020808301918252835180850190945260068452654d534341504560d01b9084015281519192916200017f91600091620002e9565b50805162000195906001906020840190620002e9565b505050620001b2620001ac620001d060201b60201c565b620001d4565b620001bd8262000226565b620001c8816200028e565b505062000503565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620002755760405162461bcd60e51b8152602060048201819052602482015260008051602062002e5c83398151915260448201526064015b60405180910390fd5b80516200028a90600b906020840190620002e9565b5050565b600a546001600160a01b03163314620002d95760405162461bcd60e51b8152602060048201819052602482015260008051602062002e5c83398151915260448201526064016200026c565b80516200028a90600d9060208401905b828054620002f790620004c6565b90600052602060002090601f0160209004810192826200031b576000855562000366565b82601f106200033657805160ff191683800117855562000366565b8280016001018555821562000366579182015b828111156200036657825182559160200191906001019062000349565b506200037492915062000378565b5090565b5b8082111562000374576000815560010162000379565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620003b757600080fd5b81516001600160401b0380821115620003d457620003d46200038f565b604051601f8301601f19908116603f01168101908282118183101715620003ff57620003ff6200038f565b816040528381526020925086838588010111156200041c57600080fd5b600091505b8382101562000440578582018301518183018401529082019062000421565b83821115620004525760008385830101525b9695505050505050565b600080604083850312156200047057600080fd5b82516001600160401b03808211156200048857600080fd5b6200049686838701620003a5565b93506020850151915080821115620004ad57600080fd5b50620004bc85828601620003a5565b9150509250929050565b600181811c90821680620004db57607f821691505b60208210811415620004fd57634e487b7160e01b600052602260045260246000fd5b50919050565b61294980620005136000396000f3fe6080604052600436106102725760003560e01c80635c975abb1161014f578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f146106f6578063e5c5282514610716578063e985e9c51461072c578063ec342ad014610775578063f2c4ce1e1461079e578063f2fde38b146107be57600080fd5b8063b88d4fde14610639578063bbe9a8d214610659578063c668286214610681578063c87b56dd14610696578063cf06904e146106b6578063d248b356146106d657600080fd5b806383ba5c621161011357806383ba5c62146105ab5780638da5cb5b146105be57806395d89b41146105dc578063a22cb465146105f1578063a475b5dd14610611578063ac361ff11461062657600080fd5b80635c975abb146105275780636352211e146105415780636c0360eb1461056157806370a0823114610576578063715018a61461059657600080fd5b80632d183503116101e857806344e3c550116101ac57806344e3c550146104895780634f6ccce71461049c57806351830227146104bc57806355f804b3146104db57806356c8cdd1146104fb5780635ae8932b1461051157600080fd5b80632d1835031461040b5780632f745c591461042157806336e79a5a146104415780633ccfd60b1461046157806342842e0e1461046957600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd14610381578063239c70ae1461039657806323b872dd146103ac5780632a55205a146103cc57600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b50610297610292366004612263565b6107de565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004612295565b610809565b005b3480156102da57600080fd5b506102e361084f565b6040516102a39190612308565b3480156102fc57600080fd5b5061031061030b36600461231b565b6108e1565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e3610976565b34801561034957600080fd5b506102cc610358366004612349565b610a04565b34801561036957600080fd5b50610373600e5481565b6040519081526020016102a3565b34801561038d57600080fd5b50600854610373565b3480156103a257600080fd5b5061037360115481565b3480156103b857600080fd5b506102cc6103c7366004612375565b610b1a565b3480156103d857600080fd5b506103ec6103e73660046123b6565b610b4b565b604080516001600160a01b0390931683526020830191909152016102a3565b34801561041757600080fd5b50610373600f5481565b34801561042d57600080fd5b5061037361043c366004612349565b610b82565b34801561044d57600080fd5b506102cc61045c3660046123d8565b610c18565b6102cc610cc4565b34801561047557600080fd5b506102cc610484366004612375565b610d14565b6102cc6104973660046123b6565b610d2f565b3480156104a857600080fd5b506103736104b736600461231b565b610eff565b3480156104c857600080fd5b5060125461029790610100900460ff1681565b3480156104e757600080fd5b506102cc6104f6366004612488565b610f92565b34801561050757600080fd5b5061037360145481565b34801561051d57600080fd5b5061037360155481565b34801561053357600080fd5b506012546102979060ff1681565b34801561054d57600080fd5b5061031061055c36600461231b565b610fd3565b34801561056d57600080fd5b506102e361104a565b34801561058257600080fd5b506103736105913660046124d1565b611057565b3480156105a257600080fd5b506102cc6110de565b6102cc6105b93660046123b6565b611112565b3480156105ca57600080fd5b50600a546001600160a01b0316610310565b3480156105e857600080fd5b506102e36112bd565b3480156105fd57600080fd5b506102cc61060c3660046124ee565b6112cc565b34801561061d57600080fd5b506102cc611391565b6102cc61063436600461231b565b6113cc565b34801561064557600080fd5b506102cc610654366004612523565b6114fc565b34801561066557600080fd5b506012546103109064010000000090046001600160a01b031681565b34801561068d57600080fd5b506102e3611534565b3480156106a257600080fd5b506102e36106b136600461231b565b611541565b3480156106c257600080fd5b50601854610310906001600160a01b031681565b3480156106e257600080fd5b50601654610310906001600160a01b031681565b34801561070257600080fd5b506102cc610711366004612488565b6116c0565b34801561072257600080fd5b5061037360105481565b34801561073857600080fd5b506102976107473660046125a3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078157600080fd5b5061078b61271081565b60405161ffff90911681526020016102a3565b3480156107aa57600080fd5b506102cc6107b9366004612488565b6116fd565b3480156107ca57600080fd5b506102cc6107d93660046124d1565b61173a565b60006001600160e01b0319821663780e9d6360e01b14806108035750610803826117d2565b92915050565b600a546001600160a01b0316331461083c5760405162461bcd60e51b8152600401610833906125dc565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461085e90612611565b80601f016020809104026020016040519081016040528092919081815260200182805461088a90612611565b80156108d75780601f106108ac576101008083540402835291602001916108d7565b820191906000526020600020905b8154815290600101906020018083116108ba57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661095a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610833565b506000908152600460205260409020546001600160a01b031690565b600d805461098390612611565b80601f01602080910402602001604051908101604052809291908181526020018280546109af90612611565b80156109fc5780601f106109d1576101008083540402835291602001916109fc565b820191906000526020600020905b8154815290600101906020018083116109df57829003601f168201915b505050505081565b6000610a0f82610fd3565b9050806001600160a01b0316836001600160a01b03161415610a7d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610833565b336001600160a01b0382161480610a995750610a998133610747565b610b0b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610833565b610b158383611822565b505050565b610b243382611890565b610b405760405162461bcd60e51b81526004016108339061264c565b610b15838383611987565b6012546000908190309061271090610b6d9062010000900461ffff16866126b3565b610b7791906126e8565b915091509250929050565b6000610b8d83611057565b8210610bef5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610833565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c425760405162461bcd60e51b8152600401610833906125dc565b6103e88161ffff161115610ca45760405162461bcd60e51b815260206004820152602360248201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160448201526218129760e91b6064820152608401610833565b6012805461ffff909216620100000263ffff000019909216919091179055565b600a546001600160a01b03163314610cee5760405162461bcd60e51b8152600401610833906125dc565b60405133904780156108fc02916000818181858888f19350505050610d1257600080fd5b565b610b15838383604051806020016040528060008152506114fc565b6019546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610d7357600080fd5b505afa158015610d87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dab91906126fc565b6001600160a01b031614610e015760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420746865206f776e6572206f662074686973205374616e6461000000006044820152606401610833565b610e1281668e1bc9bf0400006126b3565b341015610e1e57600080fd5b60125460ff1615610e2e57600080fd5b60008111610e3b57600080fd5b601154811115610e4a57600080fd5b60105481601554610e5b9190612719565b1115610ea95760405162461bcd60e51b815260206004820152601f60248201527f4e6f206d6f72652050657474615374616e646120737570706c79206c656674006044820152606401610833565b60015b818111610ee957610ed73382601554600f54610ec89190612719565b610ed29190612719565b611b32565b80610ee181612731565b915050610eac565b5080601554610ef89190612719565b6015555050565b6000610f0a60085490565b8210610f6d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610833565b60088281548110610f8057610f8061274c565b90600052602060002001549050919050565b600a546001600160a01b03163314610fbc5760405162461bcd60e51b8152600401610833906125dc565b8051610fcf90600b9060208401906121b4565b5050565b6000818152600260205260408120546001600160a01b0316806108035760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610833565b600b805461098390612611565b60006001600160a01b0382166110c25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610833565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111085760405162461bcd60e51b8152600401610833906125dc565b610d126000611b4c565b6017546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561115657600080fd5b505afa15801561116a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118e91906126fc565b6001600160a01b0316146111e45760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420746865206f776e6572206f66207468697320506574746100000000006044820152606401610833565b6111f581666a94d74f4300006126b3565b34101561120157600080fd5b60125460ff161561121157600080fd5b6000811161121e57600080fd5b60115481111561122d57600080fd5b6010548160155461123e9190612719565b111561128c5760405162461bcd60e51b815260206004820152601f60248201527f4e6f206d6f72652050657474615374616e646120737570706c79206c656674006044820152606401610833565b60015b818111610ee9576112ab3382601554600f54610ec89190612719565b806112b581612731565b91505061128f565b60606001805461085e90612611565b6001600160a01b0382163314156113255760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610833565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113bb5760405162461bcd60e51b8152600401610833906125dc565b6012805461ff001916610100179055565b6000811180156113de575061012c8111155b61141d5760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b6044820152606401610833565b6013546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561146157600080fd5b505afa158015611475573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149991906126fc565b6001600160a01b0316146114ef5760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420746865206f776e6572206f6620746869732050756d706100000000006044820152606401610833565b6114f93382611b32565b50565b6115063383611890565b6115225760405162461bcd60e51b81526004016108339061264c565b61152e84848484611b9e565b50505050565b600c805461098390612611565b6000818152600260205260409020546060906001600160a01b03166115c05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610833565b601254610100900460ff1661166157600d80546115dc90612611565b80601f016020809104026020016040519081016040528092919081815260200182805461160890612611565b80156116555780601f1061162a57610100808354040283529160200191611655565b820191906000526020600020905b81548152906001019060200180831161163857829003601f168201915b50505050509050919050565b600061166b611bd1565b9050600081511161168b57604051806020016040528060008152506116b9565b8061169584611be0565b600c6040516020016116a993929190612762565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116ea5760405162461bcd60e51b8152600401610833906125dc565b8051610fcf90600c9060208401906121b4565b600a546001600160a01b031633146117275760405162461bcd60e51b8152600401610833906125dc565b8051610fcf90600d9060208401906121b4565b600a546001600160a01b031633146117645760405162461bcd60e51b8152600401610833906125dc565b6001600160a01b0381166117c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610833565b6114f981611b4c565b60006001600160e01b031982166380ac58cd60e01b148061180357506001600160e01b03198216635b5e139f60e01b145b8061080357506301ffc9a760e01b6001600160e01b0319831614610803565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061185782610fd3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119095760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610833565b600061191483610fd3565b9050806001600160a01b0316846001600160a01b0316148061194f5750836001600160a01b0316611944846108e1565b6001600160a01b0316145b8061197f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661199a82610fd3565b6001600160a01b031614611a025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610833565b6001600160a01b038216611a645760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610833565b611a6f838383611cde565b611a7a600082611822565b6001600160a01b0383166000908152600360205260408120805460019290611aa3908490612826565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ad1908490612719565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610fcf828260405180602001604052806000815250611d96565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ba9848484611987565b611bb584848484611dc9565b61152e5760405162461bcd60e51b81526004016108339061283d565b6060600b805461085e90612611565b606081611c045750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c2e5780611c1881612731565b9150611c279050600a836126e8565b9150611c08565b60008167ffffffffffffffff811115611c4957611c496123fc565b6040519080825280601f01601f191660200182016040528015611c73576020820181803683370190505b5090505b841561197f57611c88600183612826565b9150611c95600a8661288f565b611ca0906030612719565b60f81b818381518110611cb557611cb561274c565b60200101906001600160f81b031916908160001a905350611cd7600a866126e8565b9450611c77565b6001600160a01b038316611d3957611d3481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d5c565b816001600160a01b0316836001600160a01b031614611d5c57611d5c8382611ed6565b6001600160a01b038216611d7357610b1581611f73565b826001600160a01b0316826001600160a01b031614610b1557610b158282612022565b611da08383612066565b611dad6000848484611dc9565b610b155760405162461bcd60e51b81526004016108339061283d565b60006001600160a01b0384163b15611ecb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e0d9033908990889088906004016128a3565b602060405180830381600087803b158015611e2757600080fd5b505af1925050508015611e57575060408051601f3d908101601f19168201909252611e54918101906128e0565b60015b611eb1573d808015611e85576040519150601f19603f3d011682016040523d82523d6000602084013e611e8a565b606091505b508051611ea95760405162461bcd60e51b81526004016108339061283d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061197f565b506001949350505050565b60006001611ee384611057565b611eed9190612826565b600083815260076020526040902054909150808214611f40576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f8590600190612826565b60008381526009602052604081205460088054939450909284908110611fad57611fad61274c565b906000526020600020015490508060088381548110611fce57611fce61274c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612006576120066128fd565b6001900381819060005260206000200160009055905550505050565b600061202d83611057565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120bc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610833565b6000818152600260205260409020546001600160a01b0316156121215760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610833565b61212d60008383611cde565b6001600160a01b0382166000908152600360205260408120805460019290612156908490612719565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121c090612611565b90600052602060002090601f0160209004810192826121e25760008555612228565b82601f106121fb57805160ff1916838001178555612228565b82800160010185558215612228579182015b8281111561222857825182559160200191906001019061220d565b50612234929150612238565b5090565b5b808211156122345760008155600101612239565b6001600160e01b0319811681146114f957600080fd5b60006020828403121561227557600080fd5b81356116b98161224d565b8035801515811461229057600080fd5b919050565b6000602082840312156122a757600080fd5b6116b982612280565b60005b838110156122cb5781810151838201526020016122b3565b8381111561152e5750506000910152565b600081518084526122f48160208601602086016122b0565b601f01601f19169290920160200192915050565b6020815260006116b960208301846122dc565b60006020828403121561232d57600080fd5b5035919050565b6001600160a01b03811681146114f957600080fd5b6000806040838503121561235c57600080fd5b823561236781612334565b946020939093013593505050565b60008060006060848603121561238a57600080fd5b833561239581612334565b925060208401356123a581612334565b929592945050506040919091013590565b600080604083850312156123c957600080fd5b50508035926020909101359150565b6000602082840312156123ea57600080fd5b813561ffff811681146116b957600080fd5b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561242d5761242d6123fc565b604051601f8501601f19908116603f01168101908282118183101715612455576124556123fc565b8160405280935085815286868601111561246e57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561249a57600080fd5b813567ffffffffffffffff8111156124b157600080fd5b8201601f810184136124c257600080fd5b61197f84823560208401612412565b6000602082840312156124e357600080fd5b81356116b981612334565b6000806040838503121561250157600080fd5b823561250c81612334565b915061251a60208401612280565b90509250929050565b6000806000806080858703121561253957600080fd5b843561254481612334565b9350602085013561255481612334565b925060408501359150606085013567ffffffffffffffff81111561257757600080fd5b8501601f8101871361258857600080fd5b61259787823560208401612412565b91505092959194509250565b600080604083850312156125b657600080fd5b82356125c181612334565b915060208301356125d181612334565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061262557607f821691505b6020821081141561264657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156126cd576126cd61269d565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826126f7576126f76126d2565b500490565b60006020828403121561270e57600080fd5b81516116b981612334565b6000821982111561272c5761272c61269d565b500190565b60006000198214156127455761274561269d565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000845160206127758285838a016122b0565b8551918401916127888184848a016122b0565b8554920191600090600181811c90808316806127a557607f831692505b8583108114156127c357634e487b7160e01b85526022600452602485fd5b8080156127d757600181146127e857612815565b60ff19851688528388019550612815565b60008b81526020902060005b8581101561280d5781548a8201529084019088016127f4565b505083880195505b50939b9a5050505050505050505050565b6000828210156128385761283861269d565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261289e5761289e6126d2565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128d6908301846122dc565b9695505050505050565b6000602082840312156128f257600080fd5b81516116b98161224d565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220fd673199c868c7816aa6b87de4102dbfc1f539e3e0633e47739f45313c87601864736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004a68747470733a2f2f697066732e696f2f697066732f516d5665426773427a59716841614650775567474435336562656f6450686b64333163316770356f4a58766152592f312e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004a68747470733a2f2f697066732e696f2f697066732f516d5665426773427a59716841614650775567474435336562656f6450686b64333163316770356f4a58766152592f312e6a736f6e00000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80635c975abb1161014f578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f146106f6578063e5c5282514610716578063e985e9c51461072c578063ec342ad014610775578063f2c4ce1e1461079e578063f2fde38b146107be57600080fd5b8063b88d4fde14610639578063bbe9a8d214610659578063c668286214610681578063c87b56dd14610696578063cf06904e146106b6578063d248b356146106d657600080fd5b806383ba5c621161011357806383ba5c62146105ab5780638da5cb5b146105be57806395d89b41146105dc578063a22cb465146105f1578063a475b5dd14610611578063ac361ff11461062657600080fd5b80635c975abb146105275780636352211e146105415780636c0360eb1461056157806370a0823114610576578063715018a61461059657600080fd5b80632d183503116101e857806344e3c550116101ac57806344e3c550146104895780634f6ccce71461049c57806351830227146104bc57806355f804b3146104db57806356c8cdd1146104fb5780635ae8932b1461051157600080fd5b80632d1835031461040b5780632f745c591461042157806336e79a5a146104415780633ccfd60b1461046157806342842e0e1461046957600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd14610381578063239c70ae1461039657806323b872dd146103ac5780632a55205a146103cc57600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b50610297610292366004612263565b6107de565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004612295565b610809565b005b3480156102da57600080fd5b506102e361084f565b6040516102a39190612308565b3480156102fc57600080fd5b5061031061030b36600461231b565b6108e1565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e3610976565b34801561034957600080fd5b506102cc610358366004612349565b610a04565b34801561036957600080fd5b50610373600e5481565b6040519081526020016102a3565b34801561038d57600080fd5b50600854610373565b3480156103a257600080fd5b5061037360115481565b3480156103b857600080fd5b506102cc6103c7366004612375565b610b1a565b3480156103d857600080fd5b506103ec6103e73660046123b6565b610b4b565b604080516001600160a01b0390931683526020830191909152016102a3565b34801561041757600080fd5b50610373600f5481565b34801561042d57600080fd5b5061037361043c366004612349565b610b82565b34801561044d57600080fd5b506102cc61045c3660046123d8565b610c18565b6102cc610cc4565b34801561047557600080fd5b506102cc610484366004612375565b610d14565b6102cc6104973660046123b6565b610d2f565b3480156104a857600080fd5b506103736104b736600461231b565b610eff565b3480156104c857600080fd5b5060125461029790610100900460ff1681565b3480156104e757600080fd5b506102cc6104f6366004612488565b610f92565b34801561050757600080fd5b5061037360145481565b34801561051d57600080fd5b5061037360155481565b34801561053357600080fd5b506012546102979060ff1681565b34801561054d57600080fd5b5061031061055c36600461231b565b610fd3565b34801561056d57600080fd5b506102e361104a565b34801561058257600080fd5b506103736105913660046124d1565b611057565b3480156105a257600080fd5b506102cc6110de565b6102cc6105b93660046123b6565b611112565b3480156105ca57600080fd5b50600a546001600160a01b0316610310565b3480156105e857600080fd5b506102e36112bd565b3480156105fd57600080fd5b506102cc61060c3660046124ee565b6112cc565b34801561061d57600080fd5b506102cc611391565b6102cc61063436600461231b565b6113cc565b34801561064557600080fd5b506102cc610654366004612523565b6114fc565b34801561066557600080fd5b506012546103109064010000000090046001600160a01b031681565b34801561068d57600080fd5b506102e3611534565b3480156106a257600080fd5b506102e36106b136600461231b565b611541565b3480156106c257600080fd5b50601854610310906001600160a01b031681565b3480156106e257600080fd5b50601654610310906001600160a01b031681565b34801561070257600080fd5b506102cc610711366004612488565b6116c0565b34801561072257600080fd5b5061037360105481565b34801561073857600080fd5b506102976107473660046125a3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078157600080fd5b5061078b61271081565b60405161ffff90911681526020016102a3565b3480156107aa57600080fd5b506102cc6107b9366004612488565b6116fd565b3480156107ca57600080fd5b506102cc6107d93660046124d1565b61173a565b60006001600160e01b0319821663780e9d6360e01b14806108035750610803826117d2565b92915050565b600a546001600160a01b0316331461083c5760405162461bcd60e51b8152600401610833906125dc565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461085e90612611565b80601f016020809104026020016040519081016040528092919081815260200182805461088a90612611565b80156108d75780601f106108ac576101008083540402835291602001916108d7565b820191906000526020600020905b8154815290600101906020018083116108ba57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661095a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610833565b506000908152600460205260409020546001600160a01b031690565b600d805461098390612611565b80601f01602080910402602001604051908101604052809291908181526020018280546109af90612611565b80156109fc5780601f106109d1576101008083540402835291602001916109fc565b820191906000526020600020905b8154815290600101906020018083116109df57829003601f168201915b505050505081565b6000610a0f82610fd3565b9050806001600160a01b0316836001600160a01b03161415610a7d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610833565b336001600160a01b0382161480610a995750610a998133610747565b610b0b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610833565b610b158383611822565b505050565b610b243382611890565b610b405760405162461bcd60e51b81526004016108339061264c565b610b15838383611987565b6012546000908190309061271090610b6d9062010000900461ffff16866126b3565b610b7791906126e8565b915091509250929050565b6000610b8d83611057565b8210610bef5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610833565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c425760405162461bcd60e51b8152600401610833906125dc565b6103e88161ffff161115610ca45760405162461bcd60e51b815260206004820152602360248201527f526f79616c7479206d757374206265206265747765656e20302520616e64203160448201526218129760e91b6064820152608401610833565b6012805461ffff909216620100000263ffff000019909216919091179055565b600a546001600160a01b03163314610cee5760405162461bcd60e51b8152600401610833906125dc565b60405133904780156108fc02916000818181858888f19350505050610d1257600080fd5b565b610b15838383604051806020016040528060008152506114fc565b6019546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610d7357600080fd5b505afa158015610d87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dab91906126fc565b6001600160a01b031614610e015760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420746865206f776e6572206f662074686973205374616e6461000000006044820152606401610833565b610e1281668e1bc9bf0400006126b3565b341015610e1e57600080fd5b60125460ff1615610e2e57600080fd5b60008111610e3b57600080fd5b601154811115610e4a57600080fd5b60105481601554610e5b9190612719565b1115610ea95760405162461bcd60e51b815260206004820152601f60248201527f4e6f206d6f72652050657474615374616e646120737570706c79206c656674006044820152606401610833565b60015b818111610ee957610ed73382601554600f54610ec89190612719565b610ed29190612719565b611b32565b80610ee181612731565b915050610eac565b5080601554610ef89190612719565b6015555050565b6000610f0a60085490565b8210610f6d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610833565b60088281548110610f8057610f8061274c565b90600052602060002001549050919050565b600a546001600160a01b03163314610fbc5760405162461bcd60e51b8152600401610833906125dc565b8051610fcf90600b9060208401906121b4565b5050565b6000818152600260205260408120546001600160a01b0316806108035760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610833565b600b805461098390612611565b60006001600160a01b0382166110c25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610833565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111085760405162461bcd60e51b8152600401610833906125dc565b610d126000611b4c565b6017546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561115657600080fd5b505afa15801561116a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118e91906126fc565b6001600160a01b0316146111e45760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420746865206f776e6572206f66207468697320506574746100000000006044820152606401610833565b6111f581666a94d74f4300006126b3565b34101561120157600080fd5b60125460ff161561121157600080fd5b6000811161121e57600080fd5b60115481111561122d57600080fd5b6010548160155461123e9190612719565b111561128c5760405162461bcd60e51b815260206004820152601f60248201527f4e6f206d6f72652050657474615374616e646120737570706c79206c656674006044820152606401610833565b60015b818111610ee9576112ab3382601554600f54610ec89190612719565b806112b581612731565b91505061128f565b60606001805461085e90612611565b6001600160a01b0382163314156113255760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610833565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113bb5760405162461bcd60e51b8152600401610833906125dc565b6012805461ff001916610100179055565b6000811180156113de575061012c8111155b61141d5760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b6044820152606401610833565b6013546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561146157600080fd5b505afa158015611475573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149991906126fc565b6001600160a01b0316146114ef5760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420746865206f776e6572206f6620746869732050756d706100000000006044820152606401610833565b6114f93382611b32565b50565b6115063383611890565b6115225760405162461bcd60e51b81526004016108339061264c565b61152e84848484611b9e565b50505050565b600c805461098390612611565b6000818152600260205260409020546060906001600160a01b03166115c05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610833565b601254610100900460ff1661166157600d80546115dc90612611565b80601f016020809104026020016040519081016040528092919081815260200182805461160890612611565b80156116555780601f1061162a57610100808354040283529160200191611655565b820191906000526020600020905b81548152906001019060200180831161163857829003601f168201915b50505050509050919050565b600061166b611bd1565b9050600081511161168b57604051806020016040528060008152506116b9565b8061169584611be0565b600c6040516020016116a993929190612762565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116ea5760405162461bcd60e51b8152600401610833906125dc565b8051610fcf90600c9060208401906121b4565b600a546001600160a01b031633146117275760405162461bcd60e51b8152600401610833906125dc565b8051610fcf90600d9060208401906121b4565b600a546001600160a01b031633146117645760405162461bcd60e51b8152600401610833906125dc565b6001600160a01b0381166117c95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610833565b6114f981611b4c565b60006001600160e01b031982166380ac58cd60e01b148061180357506001600160e01b03198216635b5e139f60e01b145b8061080357506301ffc9a760e01b6001600160e01b0319831614610803565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061185782610fd3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119095760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610833565b600061191483610fd3565b9050806001600160a01b0316846001600160a01b0316148061194f5750836001600160a01b0316611944846108e1565b6001600160a01b0316145b8061197f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661199a82610fd3565b6001600160a01b031614611a025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610833565b6001600160a01b038216611a645760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610833565b611a6f838383611cde565b611a7a600082611822565b6001600160a01b0383166000908152600360205260408120805460019290611aa3908490612826565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ad1908490612719565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610fcf828260405180602001604052806000815250611d96565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ba9848484611987565b611bb584848484611dc9565b61152e5760405162461bcd60e51b81526004016108339061283d565b6060600b805461085e90612611565b606081611c045750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c2e5780611c1881612731565b9150611c279050600a836126e8565b9150611c08565b60008167ffffffffffffffff811115611c4957611c496123fc565b6040519080825280601f01601f191660200182016040528015611c73576020820181803683370190505b5090505b841561197f57611c88600183612826565b9150611c95600a8661288f565b611ca0906030612719565b60f81b818381518110611cb557611cb561274c565b60200101906001600160f81b031916908160001a905350611cd7600a866126e8565b9450611c77565b6001600160a01b038316611d3957611d3481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d5c565b816001600160a01b0316836001600160a01b031614611d5c57611d5c8382611ed6565b6001600160a01b038216611d7357610b1581611f73565b826001600160a01b0316826001600160a01b031614610b1557610b158282612022565b611da08383612066565b611dad6000848484611dc9565b610b155760405162461bcd60e51b81526004016108339061283d565b60006001600160a01b0384163b15611ecb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e0d9033908990889088906004016128a3565b602060405180830381600087803b158015611e2757600080fd5b505af1925050508015611e57575060408051601f3d908101601f19168201909252611e54918101906128e0565b60015b611eb1573d808015611e85576040519150601f19603f3d011682016040523d82523d6000602084013e611e8a565b606091505b508051611ea95760405162461bcd60e51b81526004016108339061283d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061197f565b506001949350505050565b60006001611ee384611057565b611eed9190612826565b600083815260076020526040902054909150808214611f40576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f8590600190612826565b60008381526009602052604081205460088054939450909284908110611fad57611fad61274c565b906000526020600020015490508060088381548110611fce57611fce61274c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612006576120066128fd565b6001900381819060005260206000200160009055905550505050565b600061202d83611057565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120bc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610833565b6000818152600260205260409020546001600160a01b0316156121215760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610833565b61212d60008383611cde565b6001600160a01b0382166000908152600360205260408120805460019290612156908490612719565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121c090612611565b90600052602060002090601f0160209004810192826121e25760008555612228565b82601f106121fb57805160ff1916838001178555612228565b82800160010185558215612228579182015b8281111561222857825182559160200191906001019061220d565b50612234929150612238565b5090565b5b808211156122345760008155600101612239565b6001600160e01b0319811681146114f957600080fd5b60006020828403121561227557600080fd5b81356116b98161224d565b8035801515811461229057600080fd5b919050565b6000602082840312156122a757600080fd5b6116b982612280565b60005b838110156122cb5781810151838201526020016122b3565b8381111561152e5750506000910152565b600081518084526122f48160208601602086016122b0565b601f01601f19169290920160200192915050565b6020815260006116b960208301846122dc565b60006020828403121561232d57600080fd5b5035919050565b6001600160a01b03811681146114f957600080fd5b6000806040838503121561235c57600080fd5b823561236781612334565b946020939093013593505050565b60008060006060848603121561238a57600080fd5b833561239581612334565b925060208401356123a581612334565b929592945050506040919091013590565b600080604083850312156123c957600080fd5b50508035926020909101359150565b6000602082840312156123ea57600080fd5b813561ffff811681146116b957600080fd5b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561242d5761242d6123fc565b604051601f8501601f19908116603f01168101908282118183101715612455576124556123fc565b8160405280935085815286868601111561246e57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561249a57600080fd5b813567ffffffffffffffff8111156124b157600080fd5b8201601f810184136124c257600080fd5b61197f84823560208401612412565b6000602082840312156124e357600080fd5b81356116b981612334565b6000806040838503121561250157600080fd5b823561250c81612334565b915061251a60208401612280565b90509250929050565b6000806000806080858703121561253957600080fd5b843561254481612334565b9350602085013561255481612334565b925060408501359150606085013567ffffffffffffffff81111561257757600080fd5b8501601f8101871361258857600080fd5b61259787823560208401612412565b91505092959194509250565b600080604083850312156125b657600080fd5b82356125c181612334565b915060208301356125d181612334565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061262557607f821691505b6020821081141561264657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156126cd576126cd61269d565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826126f7576126f76126d2565b500490565b60006020828403121561270e57600080fd5b81516116b981612334565b6000821982111561272c5761272c61269d565b500190565b60006000198214156127455761274561269d565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6000845160206127758285838a016122b0565b8551918401916127888184848a016122b0565b8554920191600090600181811c90808316806127a557607f831692505b8583108114156127c357634e487b7160e01b85526022600452602485fd5b8080156127d757600181146127e857612815565b60ff19851688528388019550612815565b60008b81526020902060005b8581101561280d5781548a8201529084019088016127f4565b505083880195505b50939b9a5050505050505050505050565b6000828210156128385761283861269d565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261289e5761289e6126d2565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128d6908301846122dc565b9695505050505050565b6000602082840312156128f257600080fd5b81516116b98161224d565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220fd673199c868c7816aa6b87de4102dbfc1f539e3e0633e47739f45313c87601864736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004a68747470733a2f2f697066732e696f2f697066732f516d5665426773427a59716841614650775567474435336562656f6450686b64333163316770356f4a58766152592f312e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004a68747470733a2f2f697066732e696f2f697066732f516d5665426773427a59716841614650775567474435336562656f6450686b64333163316770356f4a58766152592f312e6a736f6e00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://ipfs.io/ipfs/QmVeBgsBzYqhAaFPwUgGD53ebeodPhkd31c1gp5oJXvaRY/1.json
Arg [1] : _initNotRevealedUri (string): https://ipfs.io/ipfs/QmVeBgsBzYqhAaFPwUgGD53ebeodPhkd31c1gp5oJXvaRY/1.json

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000004a
Arg [3] : 68747470733a2f2f697066732e696f2f697066732f516d5665426773427a5971
Arg [4] : 6841614650775567474435336562656f6450686b64333163316770356f4a5876
Arg [5] : 6152592f312e6a736f6e00000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000004a
Arg [7] : 68747470733a2f2f697066732e696f2f697066732f516d5665426773427a5971
Arg [8] : 6841614650775567474435336562656f6450686b64333163316770356f4a5876
Arg [9] : 6152592f312e6a736f6e00000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

54996:4579:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44773:224;;;;;;;;;;-1:-1:-1;44773:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;44773:224:0;;;;;;;;58932:73;;;;;;;;;;-1:-1:-1;58932:73:0;;;;;:::i;:::-;;:::i;:::-;;32665:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34224:221::-;;;;;;;;;;-1:-1:-1;34224:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;34224:221:0;1878:203:1;55196:28:0;;;;;;;;;;;;;:::i;33747:411::-;;;;;;;;;;-1:-1:-1;33747:411:0;;;;;:::i;:::-;;:::i;55229:32::-;;;;;;;;;;;;;;;;;;;2688:25:1;;;2676:2;2661:18;55229:32:0;2542:177:1;45413:113:0;;;;;;;;;;-1:-1:-1;45501:10:0;:17;45413:113;;55353:32;;;;;;;;;;;;;;;;35114:339;;;;;;;;;;-1:-1:-1;35114:339:0;;;;;:::i;:::-;;:::i;59013:236::-;;;;;;;;;;-1:-1:-1;59013:236:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3630:32:1;;;3612:51;;3694:2;3679:18;;3672:34;;;;3585:18;59013:236:0;3438:274:1;55266:35:0;;;;;;;;;;;;;;;;45081:256;;;;;;;;;;-1:-1:-1;45081:256:0;;;;;:::i;:::-;;:::i;59255:193::-;;;;;;;;;;-1:-1:-1;59255:193:0;;;;;:::i;:::-;;:::i;59454:114::-;;;:::i;35524:185::-;;;;;;;;;;-1:-1:-1;35524:185:0;;;;;:::i;:::-;;:::i;57326:643::-;;;;;;:::i;:::-;;:::i;45603:233::-;;;;;;;;;;-1:-1:-1;45603:233:0;;;;;:::i;:::-;;:::i;55421:28::-;;;;;;;;;;-1:-1:-1;55421:28:0;;;;;;;;;;;58572:98;;;;;;;;;;-1:-1:-1;58572:98:0;;;;;:::i;:::-;;:::i;55693:39::-;;;;;;;;;;;;;;;;55737;;;;;;;;;;;;;;;;55390:26;;;;;;;;;;-1:-1:-1;55390:26:0;;;;;;;;32359:239;;;;;;;;;;-1:-1:-1;32359:239:0;;;;;:::i;:::-;;:::i;55128:21::-;;;;;;;;;;;;;:::i;32089:208::-;;;;;;;;;;-1:-1:-1;32089:208:0;;;;;:::i;:::-;;:::i;11515:94::-;;;;;;;;;;;;;:::i;56681:639::-;;;;;;:::i;:::-;;:::i;10864:87::-;;;;;;;;;;-1:-1:-1;10937:6:0;;-1:-1:-1;;;;;10937:6:0;10864:87;;32834:104;;;;;;;;;;;;;:::i;34517:295::-;;;;;;;;;;-1:-1:-1;34517:295:0;;;;;:::i;:::-;;:::i;58499:65::-;;;;;;;;;;;;;:::i;56412:263::-;;;;;;:::i;:::-;;:::i;35780:328::-;;;;;;;;;;-1:-1:-1;35780:328:0;;;;;:::i;:::-;;:::i;55552:72::-;;;;;;;;;;-1:-1:-1;55552:72:0;;;;;;;-1:-1:-1;;;;;55552:72:0;;;55154:37;;;;;;;;;;;;;:::i;57975:497::-;;;;;;;;;;-1:-1:-1;57975:497:0;;;;;:::i;:::-;;:::i;55926:73::-;;;;;;;;;;-1:-1:-1;55926:73:0;;;;-1:-1:-1;;;;;55926:73:0;;;55783:72;;;;;;;;;;-1:-1:-1;55783:72:0;;;;-1:-1:-1;;;;;55783:72:0;;;58676:122;;;;;;;;;;-1:-1:-1;58676:122:0;;;;;:::i;:::-;;:::i;55306:42::-;;;;;;;;;;;;;;;;34883:164;;;;;;;;;;-1:-1:-1;34883:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35004:25:0;;;34980:4;35004:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34883:164;55510:35;;;;;;;;;;;;55540:5;55510:35;;;;;7158:6:1;7146:19;;;7128:38;;7116:2;7101:18;55510:35:0;6984:188:1;58806:120:0;;;;;;;;;;-1:-1:-1;58806:120:0;;;;;:::i;:::-;;:::i;11764:192::-;;;;;;;;;;-1:-1:-1;11764:192:0;;;;;:::i;:::-;;:::i;44773:224::-;44875:4;-1:-1:-1;;;;;;44899:50:0;;-1:-1:-1;;;44899:50:0;;:90;;;44953:36;44977:11;44953:23;:36::i;:::-;44892:97;44773:224;-1:-1:-1;;44773:224:0:o;58932:73::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;;;;;;;;;58984:6:::1;:15:::0;;-1:-1:-1;;58984:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;58932:73::o;32665:100::-;32719:13;32752:5;32745:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32665:100;:::o;34224:221::-;34300:7;37707:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37707:16:0;34320:73;;;;-1:-1:-1;;;34320:73:0;;8125:2:1;34320:73:0;;;8107:21:1;8164:2;8144:18;;;8137:30;8203:34;8183:18;;;8176:62;-1:-1:-1;;;8254:18:1;;;8247:42;8306:19;;34320:73:0;7923:408:1;34320:73:0;-1:-1:-1;34413:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34413:24:0;;34224:221::o;55196:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33747:411::-;33828:13;33844:23;33859:7;33844:14;:23::i;:::-;33828:39;;33892:5;-1:-1:-1;;;;;33886:11:0;:2;-1:-1:-1;;;;;33886:11:0;;;33878:57;;;;-1:-1:-1;;;33878:57:0;;8538:2:1;33878:57:0;;;8520:21:1;8577:2;8557:18;;;8550:30;8616:34;8596:18;;;8589:62;-1:-1:-1;;;8667:18:1;;;8660:31;8708:19;;33878:57:0;8336:397:1;33878:57:0;9732:10;-1:-1:-1;;;;;33970:21:0;;;;:62;;-1:-1:-1;33995:37:0;34012:5;9732:10;34883:164;:::i;33995:37::-;33948:168;;;;-1:-1:-1;;;33948:168:0;;8940:2:1;33948:168:0;;;8922:21:1;8979:2;8959:18;;;8952:30;9018:34;8998:18;;;8991:62;9089:26;9069:18;;;9062:54;9133:19;;33948:168:0;8738:420:1;33948:168:0;34129:21;34138:2;34142:7;34129:8;:21::i;:::-;33817:341;33747:411;;:::o;35114:339::-;35309:41;9732:10;35342:7;35309:18;:41::i;:::-;35301:103;;;;-1:-1:-1;;;35301:103:0;;;;;;;:::i;:::-;35417:28;35427:4;35433:2;35437:7;35417:9;:28::i;59013:236::-;59225:7;;59131:16;;;;59204:4;;55540:5;;59212:20;;59225:7;;;59211:29;59225:7;59212:10;:20;:::i;:::-;59211:29;;;;:::i;:::-;59188:53;;;;59013:236;;;;;:::o;45081:256::-;45178:7;45214:23;45231:5;45214:16;:23::i;:::-;45206:5;:31;45198:87;;;;-1:-1:-1;;;45198:87:0;;10345:2:1;45198:87:0;;;10327:21:1;10384:2;10364:18;;;10357:30;10423:34;10403:18;;;10396:62;-1:-1:-1;;;10474:18:1;;;10467:41;10525:19;;45198:87:0;10143:407:1;45198:87:0;-1:-1:-1;;;;;;45303:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;45081:256::o;59255:193::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;59365:4:::1;59353:8;:16;;;;59328:81;;;::::0;-1:-1:-1;;;59328:81:0;;10757:2:1;59328:81:0::1;::::0;::::1;10739:21:1::0;10796:2;10776:18;;;10769:30;10835:34;10815:18;;;10808:62;-1:-1:-1;;;10886:18:1;;;10879:33;10929:19;;59328:81:0::1;10555:399:1::0;59328:81:0::1;59422:7;:18:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;59422:18:0;;::::1;::::0;;;::::1;::::0;;59255:193::o;59454:114::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;59514:47:::1;::::0;59522:10:::1;::::0;59539:21:::1;59514:47:::0;::::1;;;::::0;::::1;::::0;;;59539:21;59522:10;59514:47;::::1;;;;;;59506:56;;;::::0;::::1;;59454:114::o:0;35524:185::-;35662:39;35679:4;35685:2;35689:7;35662:39;;;;;;;;;;;;:16;:39::i;57326:643::-;57416:14;;:32;;-1:-1:-1;;;57416:32:0;;;;;2688:25:1;;;57452:10:0;;-1:-1:-1;;;;;57416:14:0;;:22;;2661:18:1;;57416:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;57416:46:0;;57408:87;;;;-1:-1:-1;;;57408:87:0;;11417:2:1;57408:87:0;;;11399:21:1;11456:2;11436:18;;;11429:30;11495;11475:18;;;11468:58;11543:18;;57408:87:0;11215:352:1;57408:87:0;57523:24;57536:11;57523:10;:24;:::i;:::-;57510:9;:37;;57502:46;;;;;;57564:6;;;;57563:7;57555:16;;;;;;57600:1;57586:11;:15;57578:24;;;;;;57632:13;;57617:11;:28;;57609:37;;;;;;57702:20;;57687:11;57661:23;;:37;;;;:::i;:::-;:61;;57653:105;;;;-1:-1:-1;;;57653:105:0;;11907:2:1;57653:105:0;;;11889:21:1;11946:2;11926:18;;;11919:30;11985:33;11965:18;;;11958:61;12036:18;;57653:105:0;11705:355:1;57653:105:0;57784:1;57767:127;57792:11;57787:1;:16;57767:127;;57819:67;57829:10;57884:1;57858:23;;57841:14;;:40;;;;:::i;:::-;:44;;;;:::i;:::-;57819:9;:67::i;:::-;57805:3;;;;:::i;:::-;;;;57767:127;;;;57952:11;57926:23;;:37;;;;:::i;:::-;57900:23;:63;-1:-1:-1;;57326:643:0:o;45603:233::-;45678:7;45714:30;45501:10;:17;;45413:113;45714:30;45706:5;:38;45698:95;;;;-1:-1:-1;;;45698:95:0;;12407:2:1;45698:95:0;;;12389:21:1;12446:2;12426:18;;;12419:30;12485:34;12465:18;;;12458:62;-1:-1:-1;;;12536:18:1;;;12529:42;12588:19;;45698:95:0;12205:408:1;45698:95:0;45811:10;45822:5;45811:17;;;;;;;;:::i;:::-;;;;;;;;;45804:24;;45603:233;;;:::o;58572:98::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;58643:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;58572:98:::0;:::o;32359:239::-;32431:7;32467:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32467:16:0;32502:19;32494:73;;;;-1:-1:-1;;;32494:73:0;;12952:2:1;32494:73:0;;;12934:21:1;12991:2;12971:18;;;12964:30;13030:34;13010:18;;;13003:62;-1:-1:-1;;;13081:18:1;;;13074:39;13130:19;;32494:73:0;12750:405:1;55128:21:0;;;;;;;:::i;32089:208::-;32161:7;-1:-1:-1;;;;;32189:19:0;;32181:74;;;;-1:-1:-1;;;32181:74:0;;13362:2:1;32181:74:0;;;13344:21:1;13401:2;13381:18;;;13374:30;13440:34;13420:18;;;13413:62;-1:-1:-1;;;13491:18:1;;;13484:40;13541:19;;32181:74:0;13160:406:1;32181:74:0;-1:-1:-1;;;;;;32273:16:0;;;;;:9;:16;;;;;;;32089:208::o;11515:94::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;11580:21:::1;11598:1;11580:9;:21::i;56681:639::-:0;56772:13;;:30;;-1:-1:-1;;;56772:30:0;;;;;2688:25:1;;;56806:10:0;;-1:-1:-1;;;;;56772:13:0;;:21;;2661:18:1;;56772:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;56772:44:0;;56764:84;;;;-1:-1:-1;;;56764:84:0;;13773:2:1;56764:84:0;;;13755:21:1;13812:2;13792:18;;;13785:30;13851:29;13831:18;;;13824:57;13898:18;;56764:84:0;13571:351:1;56764:84:0;56876:24;56889:11;56876:10;:24;:::i;:::-;56863:9;:37;;56855:46;;;;;;56917:6;;;;56916:7;56908:16;;;;;;56953:1;56939:11;:15;56931:24;;;;;;56985:13;;56970:11;:28;;56962:37;;;;;;57055:20;;57040:11;57014:23;;:37;;;;:::i;:::-;:61;;57006:105;;;;-1:-1:-1;;;57006:105:0;;11907:2:1;57006:105:0;;;11889:21:1;11946:2;11926:18;;;11919:30;11985:33;11965:18;;;11958:61;12036:18;;57006:105:0;11705:355:1;57006:105:0;57137:1;57120:127;57145:11;57140:1;:16;57120:127;;57172:67;57182:10;57237:1;57211:23;;57194:14;;:40;;;;:::i;57172:67::-;57158:3;;;;:::i;:::-;;;;57120:127;;32834:104;32890:13;32923:7;32916:14;;;;;:::i;34517:295::-;-1:-1:-1;;;;;34620:24:0;;9732:10;34620:24;;34612:62;;;;-1:-1:-1;;;34612:62:0;;14129:2:1;34612:62:0;;;14111:21:1;14168:2;14148:18;;;14141:30;14207:27;14187:18;;;14180:55;14252:18;;34612:62:0;13927:349:1;34612:62:0;9732:10;34687:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34687:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34687:53:0;;;;;;;;;;34756:48;;540:41:1;;;34687:42:0;;9732:10;34756:48;;513:18:1;34756:48:0;;;;;;;34517:295;;:::o;58499:65::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;58543:8:::1;:15:::0;;-1:-1:-1;;58543:15:0::1;;;::::0;;58499:65::o;56412:263::-;56499:1;56489:7;:11;:29;;;;;56515:3;56504:7;:14;;56489:29;56481:58;;;;-1:-1:-1;;;56481:58:0;;14483:2:1;56481:58:0;;;14465:21:1;14522:2;14502:18;;;14495:30;-1:-1:-1;;;14541:18:1;;;14534:46;14597:18;;56481:58:0;14281:340:1;56481:58:0;56554:13;;:30;;-1:-1:-1;;;56554:30:0;;;;;2688:25:1;;;56588:10:0;;-1:-1:-1;;;;;56554:13:0;;:21;;2661:18:1;;56554:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;56554:44:0;;56546:84;;;;-1:-1:-1;;;56546:84:0;;14828:2:1;56546:84:0;;;14810:21:1;14867:2;14847:18;;;14840:30;14906:29;14886:18;;;14879:57;14953:18;;56546:84:0;14626:351:1;56546:84:0;56639:30;56649:10;56661:7;56639:9;:30::i;:::-;56412:263;:::o;35780:328::-;35955:41;9732:10;35988:7;35955:18;:41::i;:::-;35947:103;;;;-1:-1:-1;;;35947:103:0;;;;;;;:::i;:::-;36061:39;36075:4;36081:2;36085:7;36094:5;36061:13;:39::i;:::-;35780:328;;;;:::o;55154:37::-;;;;;;;:::i;57975:497::-;37683:4;37707:16;;;:7;:16;;;;;;58073:13;;-1:-1:-1;;;;;37707:16:0;58098:97;;;;-1:-1:-1;;;58098:97:0;;15184:2:1;58098:97:0;;;15166:21:1;15223:2;15203:18;;;15196:30;15262:34;15242:18;;;15235:62;-1:-1:-1;;;15313:18:1;;;15306:45;15368:19;;58098:97:0;14982:411:1;58098:97:0;58211:8;;;;;;;58208:62;;58248:14;58241:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57975:497;;;:::o;58208:62::-;58278:28;58309:10;:8;:10::i;:::-;58278:41;;58364:1;58339:14;58333:28;:32;:133;;;;;;;;;;;;;;;;;58401:14;58417:18;:7;:16;:18::i;:::-;58437:13;58384:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58333:133;58326:140;57975:497;-1:-1:-1;;;57975:497:0:o;58676:122::-;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;58759:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;58806:120::-:0;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;58888:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;11764:192::-:0;10937:6;;-1:-1:-1;;;;;10937:6:0;9732:10;11084:23;11076:68;;;;-1:-1:-1;;;11076:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11853:22:0;::::1;11845:73;;;::::0;-1:-1:-1;;;11845:73:0;;17258:2:1;11845:73:0::1;::::0;::::1;17240:21:1::0;17297:2;17277:18;;;17270:30;17336:34;17316:18;;;17309:62;-1:-1:-1;;;17387:18:1;;;17380:36;17433:19;;11845:73:0::1;17056:402:1::0;11845:73:0::1;11929:19;11939:8;11929:9;:19::i;31720:305::-:0;31822:4;-1:-1:-1;;;;;;31859:40:0;;-1:-1:-1;;;31859:40:0;;:105;;-1:-1:-1;;;;;;;31916:48:0;;-1:-1:-1;;;31916:48:0;31859:105;:158;;;-1:-1:-1;;;;;;;;;;23808:40:0;;;31981:36;23699:157;41600:174;41675:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41675:29:0;-1:-1:-1;;;;;41675:29:0;;;;;;;;:24;;41729:23;41675:24;41729:14;:23::i;:::-;-1:-1:-1;;;;;41720:46:0;;;;;;;;;;;41600:174;;:::o;37912:348::-;38005:4;37707:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37707:16:0;38022:73;;;;-1:-1:-1;;;38022:73:0;;17665:2:1;38022:73:0;;;17647:21:1;17704:2;17684:18;;;17677:30;17743:34;17723:18;;;17716:62;-1:-1:-1;;;17794:18:1;;;17787:42;17846:19;;38022:73:0;17463:408:1;38022:73:0;38106:13;38122:23;38137:7;38122:14;:23::i;:::-;38106:39;;38175:5;-1:-1:-1;;;;;38164:16:0;:7;-1:-1:-1;;;;;38164:16:0;;:51;;;;38208:7;-1:-1:-1;;;;;38184:31:0;:20;38196:7;38184:11;:20::i;:::-;-1:-1:-1;;;;;38184:31:0;;38164:51;:87;;;-1:-1:-1;;;;;;35004:25:0;;;34980:4;35004:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38219:32;38156:96;37912:348;-1:-1:-1;;;;37912:348:0:o;40904:578::-;41063:4;-1:-1:-1;;;;;41036:31:0;:23;41051:7;41036:14;:23::i;:::-;-1:-1:-1;;;;;41036:31:0;;41028:85;;;;-1:-1:-1;;;41028:85:0;;18078:2:1;41028:85:0;;;18060:21:1;18117:2;18097:18;;;18090:30;18156:34;18136:18;;;18129:62;-1:-1:-1;;;18207:18:1;;;18200:39;18256:19;;41028:85:0;17876:405:1;41028:85:0;-1:-1:-1;;;;;41132:16:0;;41124:65;;;;-1:-1:-1;;;41124:65:0;;18488:2:1;41124:65:0;;;18470:21:1;18527:2;18507:18;;;18500:30;18566:34;18546:18;;;18539:62;-1:-1:-1;;;18617:18:1;;;18610:34;18661:19;;41124:65:0;18286:400:1;41124:65:0;41202:39;41223:4;41229:2;41233:7;41202:20;:39::i;:::-;41306:29;41323:1;41327:7;41306:8;:29::i;:::-;-1:-1:-1;;;;;41348:15:0;;;;;;:9;:15;;;;;:20;;41367:1;;41348:15;:20;;41367:1;;41348:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41379:13:0;;;;;;:9;:13;;;;;:18;;41396:1;;41379:13;:18;;41396:1;;41379:18;:::i;:::-;;;;-1:-1:-1;;41408:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41408:21:0;-1:-1:-1;;;;;41408:21:0;;;;;;;;;41447:27;;41408:16;;41447:27;;;;;;;40904:578;;;:::o;38602:110::-;38678:26;38688:2;38692:7;38678:26;;;;;;;;;;;;:9;:26::i;11964:173::-;12039:6;;;-1:-1:-1;;;;;12056:17:0;;;-1:-1:-1;;;;;;12056:17:0;;;;;;;12089:40;;12039:6;;;12056:17;12039:6;;12089:40;;12020:16;;12089:40;12009:128;11964:173;:::o;36990:315::-;37147:28;37157:4;37163:2;37167:7;37147:9;:28::i;:::-;37194:48;37217:4;37223:2;37227:7;37236:5;37194:22;:48::i;:::-;37186:111;;;;-1:-1:-1;;;37186:111:0;;;;;;;:::i;56304:102::-;56364:13;56393:7;56386:14;;;;;:::i;7268:723::-;7324:13;7545:10;7541:53;;-1:-1:-1;;7572:10:0;;;;;;;;;;;;-1:-1:-1;;;7572:10:0;;;;;7268:723::o;7541:53::-;7619:5;7604:12;7660:78;7667:9;;7660:78;;7693:8;;;;:::i;:::-;;-1:-1:-1;7716:10:0;;-1:-1:-1;7724:2:0;7716:10;;:::i;:::-;;;7660:78;;;7748:19;7780:6;7770:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7770:17:0;;7748:39;;7798:154;7805:10;;7798:154;;7832:11;7842:1;7832:11;;:::i;:::-;;-1:-1:-1;7901:10:0;7909:2;7901:5;:10;:::i;:::-;7888:24;;:2;:24;:::i;:::-;7875:39;;7858:6;7865;7858:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7858:56:0;;;;;;;;-1:-1:-1;7929:11:0;7938:2;7929:11;;:::i;:::-;;;7798:154;;46449:589;-1:-1:-1;;;;;46655:18:0;;46651:187;;46690:40;46722:7;47865:10;:17;;47838:24;;;;:15;:24;;;;;:44;;;47893:24;;;;;;;;;;;;47761:164;46690:40;46651:187;;;46760:2;-1:-1:-1;;;;;46752:10:0;:4;-1:-1:-1;;;;;46752:10:0;;46748:90;;46779:47;46812:4;46818:7;46779:32;:47::i;:::-;-1:-1:-1;;;;;46852:16:0;;46848:183;;46885:45;46922:7;46885:36;:45::i;46848:183::-;46958:4;-1:-1:-1;;;;;46952:10:0;:2;-1:-1:-1;;;;;46952:10:0;;46948:83;;46979:40;47007:2;47011:7;46979:27;:40::i;38939:321::-;39069:18;39075:2;39079:7;39069:5;:18::i;:::-;39120:54;39151:1;39155:2;39159:7;39168:5;39120:22;:54::i;:::-;39098:154;;;;-1:-1:-1;;;39098:154:0;;;;;;;:::i;42339:799::-;42494:4;-1:-1:-1;;;;;42515:13:0;;13233:20;13281:8;42511:620;;42551:72;;-1:-1:-1;;;42551:72:0;;-1:-1:-1;;;;;42551:36:0;;;;;:72;;9732:10;;42602:4;;42608:7;;42617:5;;42551:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42551:72:0;;;;;;;;-1:-1:-1;;42551:72:0;;;;;;;;;;;;:::i;:::-;;;42547:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42793:13:0;;42789:272;;42836:60;;-1:-1:-1;;;42836:60:0;;;;;;;:::i;42789:272::-;43011:6;43005:13;42996:6;42992:2;42988:15;42981:38;42547:529;-1:-1:-1;;;;;;42674:51:0;-1:-1:-1;;;42674:51:0;;-1:-1:-1;42667:58:0;;42511:620;-1:-1:-1;43115:4:0;42339:799;;;;;;:::o;48552:988::-;48818:22;48868:1;48843:22;48860:4;48843:16;:22::i;:::-;:26;;;;:::i;:::-;48880:18;48901:26;;;:17;:26;;;;;;48818:51;;-1:-1:-1;49034:28:0;;;49030:328;;-1:-1:-1;;;;;49101:18:0;;49079:19;49101:18;;;:12;:18;;;;;;;;:34;;;;;;;;;49152:30;;;;;;:44;;;49269:30;;:17;:30;;;;;:43;;;49030:328;-1:-1:-1;49454:26:0;;;;:17;:26;;;;;;;;49447:33;;;-1:-1:-1;;;;;49498:18:0;;;;;:12;:18;;;;;:34;;;;;;;49491:41;48552:988::o;49835:1079::-;50113:10;:17;50088:22;;50113:21;;50133:1;;50113:21;:::i;:::-;50145:18;50166:24;;;:15;:24;;;;;;50539:10;:26;;50088:46;;-1:-1:-1;50166:24:0;;50088:46;;50539:26;;;;;;:::i;:::-;;;;;;;;;50517:48;;50603:11;50578:10;50589;50578:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;50683:28;;;:15;:28;;;;;;;:41;;;50855:24;;;;;50848:31;50890:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;49906:1008;;;49835:1079;:::o;47339:221::-;47424:14;47441:20;47458:2;47441:16;:20::i;:::-;-1:-1:-1;;;;;47472:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;47517:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;47339:221:0:o;39596:382::-;-1:-1:-1;;;;;39676:16:0;;39668:61;;;;-1:-1:-1;;;39668:61:0;;20439:2:1;39668:61:0;;;20421:21:1;;;20458:18;;;20451:30;20517:34;20497:18;;;20490:62;20569:18;;39668:61:0;20237:356:1;39668:61:0;37683:4;37707:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37707:16:0;:30;39740:58;;;;-1:-1:-1;;;39740:58:0;;20800:2:1;39740:58:0;;;20782:21:1;20839:2;20819:18;;;20812:30;20878;20858:18;;;20851:58;20926:18;;39740:58:0;20598:352:1;39740:58:0;39811:45;39840:1;39844:2;39848:7;39811:20;:45::i;:::-;-1:-1:-1;;;;;39869:13:0;;;;;;:9;:13;;;;;:18;;39886:1;;39869:13;:18;;39886:1;;39869:18;:::i;:::-;;;;-1:-1:-1;;39898:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39898:21:0;-1:-1:-1;;;;;39898:21:0;;;;;;;;39937:33;;39898:16;;;39937:33;;39898:16;;39937:33;39596:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:131::-;-1:-1:-1;;;;;2161:31:1;;2151:42;;2141:70;;2207:1;2204;2197:12;2222:315;2290:6;2298;2351:2;2339:9;2330:7;2326:23;2322:32;2319:52;;;2367:1;2364;2357:12;2319:52;2406:9;2393:23;2425:31;2450:5;2425:31;:::i;:::-;2475:5;2527:2;2512:18;;;;2499:32;;-1:-1:-1;;;2222:315:1:o;2724:456::-;2801:6;2809;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;2925:9;2912:23;2944:31;2969:5;2944:31;:::i;:::-;2994:5;-1:-1:-1;3051:2:1;3036:18;;3023:32;3064:33;3023:32;3064:33;:::i;:::-;2724:456;;3116:7;;-1:-1:-1;;;3170:2:1;3155:18;;;;3142:32;;2724:456::o;3185:248::-;3253:6;3261;3314:2;3302:9;3293:7;3289:23;3285:32;3282:52;;;3330:1;3327;3320:12;3282:52;-1:-1:-1;;3353:23:1;;;3423:2;3408:18;;;3395:32;;-1:-1:-1;3185:248:1:o;3717:272::-;3775:6;3828:2;3816:9;3807:7;3803:23;3799:32;3796:52;;;3844:1;3841;3834:12;3796:52;3883:9;3870:23;3933:6;3926:5;3922:18;3915:5;3912:29;3902:57;;3955:1;3952;3945:12;3994:127;4055:10;4050:3;4046:20;4043:1;4036:31;4086:4;4083:1;4076:15;4110:4;4107:1;4100:15;4126:632;4191:5;4221:18;4262:2;4254:6;4251:14;4248:40;;;4268:18;;:::i;:::-;4343:2;4337:9;4311:2;4397:15;;-1:-1:-1;;4393:24:1;;;4419:2;4389:33;4385:42;4373:55;;;4443:18;;;4463:22;;;4440:46;4437:72;;;4489:18;;:::i;:::-;4529:10;4525:2;4518:22;4558:6;4549:15;;4588:6;4580;4573:22;4628:3;4619:6;4614:3;4610:16;4607:25;4604:45;;;4645:1;4642;4635:12;4604:45;4695:6;4690:3;4683:4;4675:6;4671:17;4658:44;4750:1;4743:4;4734:6;4726;4722:19;4718:30;4711:41;;;;4126:632;;;;;:::o;4763:451::-;4832:6;4885:2;4873:9;4864:7;4860:23;4856:32;4853:52;;;4901:1;4898;4891:12;4853:52;4941:9;4928:23;4974:18;4966:6;4963:30;4960:50;;;5006:1;5003;4996:12;4960:50;5029:22;;5082:4;5074:13;;5070:27;-1:-1:-1;5060:55:1;;5111:1;5108;5101:12;5060:55;5134:74;5200:7;5195:2;5182:16;5177:2;5173;5169:11;5134:74;:::i;5219:247::-;5278:6;5331:2;5319:9;5310:7;5306:23;5302:32;5299:52;;;5347:1;5344;5337:12;5299:52;5386:9;5373:23;5405:31;5430:5;5405:31;:::i;5471:315::-;5536:6;5544;5597:2;5585:9;5576:7;5572:23;5568:32;5565:52;;;5613:1;5610;5603:12;5565:52;5652:9;5639:23;5671:31;5696:5;5671:31;:::i;:::-;5721:5;-1:-1:-1;5745:35:1;5776:2;5761:18;;5745:35;:::i;:::-;5735:45;;5471:315;;;;;:::o;5791:795::-;5886:6;5894;5902;5910;5963:3;5951:9;5942:7;5938:23;5934:33;5931:53;;;5980:1;5977;5970:12;5931:53;6019:9;6006:23;6038:31;6063:5;6038:31;:::i;:::-;6088:5;-1:-1:-1;6145:2:1;6130:18;;6117:32;6158:33;6117:32;6158:33;:::i;:::-;6210:7;-1:-1:-1;6264:2:1;6249:18;;6236:32;;-1:-1:-1;6319:2:1;6304:18;;6291:32;6346:18;6335:30;;6332:50;;;6378:1;6375;6368:12;6332:50;6401:22;;6454:4;6446:13;;6442:27;-1:-1:-1;6432:55:1;;6483:1;6480;6473:12;6432:55;6506:74;6572:7;6567:2;6554:16;6549:2;6545;6541:11;6506:74;:::i;:::-;6496:84;;;5791:795;;;;;;;:::o;6591:388::-;6659:6;6667;6720:2;6708:9;6699:7;6695:23;6691:32;6688:52;;;6736:1;6733;6726:12;6688:52;6775:9;6762:23;6794:31;6819:5;6794:31;:::i;:::-;6844:5;-1:-1:-1;6901:2:1;6886:18;;6873:32;6914:33;6873:32;6914:33;:::i;:::-;6966:7;6956:17;;;6591:388;;;;;:::o;7177:356::-;7379:2;7361:21;;;7398:18;;;7391:30;7457:34;7452:2;7437:18;;7430:62;7524:2;7509:18;;7177:356::o;7538:380::-;7617:1;7613:12;;;;7660;;;7681:61;;7735:4;7727:6;7723:17;7713:27;;7681:61;7788:2;7780:6;7777:14;7757:18;7754:38;7751:161;;;7834:10;7829:3;7825:20;7822:1;7815:31;7869:4;7866:1;7859:15;7897:4;7894:1;7887:15;7751:161;;7538:380;;;:::o;9163:413::-;9365:2;9347:21;;;9404:2;9384:18;;;9377:30;9443:34;9438:2;9423:18;;9416:62;-1:-1:-1;;;9509:2:1;9494:18;;9487:47;9566:3;9551:19;;9163:413::o;9581:127::-;9642:10;9637:3;9633:20;9630:1;9623:31;9673:4;9670:1;9663:15;9697:4;9694:1;9687:15;9713:168;9753:7;9819:1;9815;9811:6;9807:14;9804:1;9801:21;9796:1;9789:9;9782:17;9778:45;9775:71;;;9826:18;;:::i;:::-;-1:-1:-1;9866:9:1;;9713:168::o;9886:127::-;9947:10;9942:3;9938:20;9935:1;9928:31;9978:4;9975:1;9968:15;10002:4;9999:1;9992:15;10018:120;10058:1;10084;10074:35;;10089:18;;:::i;:::-;-1:-1:-1;10123:9:1;;10018:120::o;10959:251::-;11029:6;11082:2;11070:9;11061:7;11057:23;11053:32;11050:52;;;11098:1;11095;11088:12;11050:52;11130:9;11124:16;11149:31;11174:5;11149:31;:::i;11572:128::-;11612:3;11643:1;11639:6;11636:1;11633:13;11630:39;;;11649:18;;:::i;:::-;-1:-1:-1;11685:9:1;;11572:128::o;12065:135::-;12104:3;-1:-1:-1;;12125:17:1;;12122:43;;;12145:18;;:::i;:::-;-1:-1:-1;12192:1:1;12181:13;;12065:135::o;12618:127::-;12679:10;12674:3;12670:20;12667:1;12660:31;12710:4;12707:1;12700:15;12734:4;12731:1;12724:15;15524:1527;15748:3;15786:6;15780:13;15812:4;15825:51;15869:6;15864:3;15859:2;15851:6;15847:15;15825:51;:::i;:::-;15939:13;;15898:16;;;;15961:55;15939:13;15898:16;15983:15;;;15961:55;:::i;:::-;16105:13;;16038:20;;;16078:1;;16165;16187:18;;;;16240;;;;16267:93;;16345:4;16335:8;16331:19;16319:31;;16267:93;16408:2;16398:8;16395:16;16375:18;16372:40;16369:167;;;-1:-1:-1;;;16435:33:1;;16491:4;16488:1;16481:15;16521:4;16442:3;16509:17;16369:167;16552:18;16579:110;;;;16703:1;16698:328;;;;16545:481;;16579:110;-1:-1:-1;;16614:24:1;;16600:39;;16659:20;;;;-1:-1:-1;16579:110:1;;16698:328;15471:1;15464:14;;;15508:4;15495:18;;16793:1;16807:169;16821:8;16818:1;16815:15;16807:169;;;16903:14;;16888:13;;;16881:37;16946:16;;;;16838:10;;16807:169;;;16811:3;;17007:8;17000:5;16996:20;16989:27;;16545:481;-1:-1:-1;17042:3:1;;15524:1527;-1:-1:-1;;;;;;;;;;;15524:1527:1:o;18691:125::-;18731:4;18759:1;18756;18753:8;18750:34;;;18764:18;;:::i;:::-;-1:-1:-1;18801:9:1;;18691:125::o;18821:414::-;19023:2;19005:21;;;19062:2;19042:18;;;19035:30;19101:34;19096:2;19081:18;;19074:62;-1:-1:-1;;;19167:2:1;19152:18;;19145:48;19225:3;19210:19;;18821:414::o;19240:112::-;19272:1;19298;19288:35;;19303:18;;:::i;:::-;-1:-1:-1;19337:9:1;;19240:112::o;19357:489::-;-1:-1:-1;;;;;19626:15:1;;;19608:34;;19678:15;;19673:2;19658:18;;19651:43;19725:2;19710:18;;19703:34;;;19773:3;19768:2;19753:18;;19746:31;;;19551:4;;19794:46;;19820:19;;19812:6;19794:46;:::i;:::-;19786:54;19357:489;-1:-1:-1;;;;;;19357:489:1:o;19851:249::-;19920:6;19973:2;19961:9;19952:7;19948:23;19944:32;19941:52;;;19989:1;19986;19979:12;19941:52;20021:9;20015:16;20040:30;20064:5;20040:30;:::i;20105:127::-;20166:10;20161:3;20157:20;20154:1;20147:31;20197:4;20194:1;20187:15;20221:4;20218:1;20211:15

Swarm Source

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