ETH Price: $3,364.56 (+0.28%)
Gas: 7 Gwei

Token

Proper Parrot Tree Club (PPTC)
 

Overview

Max Total Supply

10,000 PPTC

Holders

1,141

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 PPTC
0xd563bb51ff55eff701569b9abe6f8f188bdc25ff
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ProperParrotTreeClub

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: PPTC_flat.sol


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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 generally not needed starting with Solidity 0.8, since 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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.10;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 1;

  uint256 public immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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



//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel



pragma solidity >=0.7.0 <0.9.0;






contract ProperParrotTreeClub is ERC721A, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.05 ether;
  uint256 public wlcost = 0.04 ether;
  uint256 public maxSupply = 10000;
  uint256 public WlSupply = 5000;
  uint256 public MaxperWallet = 20;
  uint256 public MaxperWalletWl = 20;
  uint256 public MaxperTxWl = 20;
  uint256 public maxsize = 20 ; // max mint per tx
  bool public paused = true;
  bool public revealed = false;
  bool public preSale = true;
  bool public publicSale = false;
  bytes32 public merkleRoot = 0x7d47dd9d8fd212164c3a9e8d23f89077455d468a3e287590d7f66b9c5ed8dcfd;

  constructor(
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721A("Proper Parrot Tree Club", "PPTC", maxsize) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // public
  function mint(uint256 tokens) public payable {
    require(!paused, "PPTC: Oops contract is paused");
    require(publicSale, "PPTC: Sale Hasn't started yet");
    uint256 supply = totalSupply();
    uint256 ownerTokenCount = balanceOf(_msgSender());
    require(tokens > 0, "PPTC: need to mint at least 1 NFT");
    require(tokens <= maxsize, "PPTC: max mint amount per tx exceeded");
    require(supply + tokens <= maxSupply, "PPTC: We Soldout");
    require(ownerTokenCount + tokens <= MaxperWallet, "PPTC: Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "PPTC: insufficient funds");

      _safeMint(_msgSender(), tokens);
    
  }

    function presalemint(uint256 tokens, bytes32[] calldata merkleProof) public payable  {
    require(!paused, "PPTC: Oops contract is paused");
    require(preSale, "PPTC: Presale Hasn't started yet");
    require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "PPTC: You are not eligible for the presale");
    uint256 supply = totalSupply();
    uint256 ownerTokenCount = balanceOf(_msgSender());
    require(ownerTokenCount + tokens <= MaxperWalletWl, "PPTC: Max NFT Per Wallet exceeded");
    require(tokens > 0, "PPTC: need to mint at least 1 NFT");
    require(tokens <= maxsize, "PPTC: max mint per Tx exceeded");
    require(supply + tokens <= WlSupply, "PPTC: WL Supply exceeded");
    require(msg.value >= wlcost * tokens, "insufficient funds");

      _safeMint(_msgSender(), tokens);
    
  }




  /// @dev use it for giveaway and mint for yourself
     function gift(uint256 _mintAmount, address destination) public onlyOwner {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
    
  }

  


  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: 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))
        : "";
  }

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }

      function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }
  
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

    function setWlMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWalletWl = _limit;
  }

  function setmaxsize(uint256 _maxsize) public onlyOwner {
    maxsize = _maxsize;
  }

    function setWLMaxpertx(uint256 _maxpertx) public onlyOwner {
    MaxperTxWl = _maxpertx;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

    function setWlCost(uint256 _newWlCost) public onlyOwner {
    wlcost = _newWlCost;
  }

    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

    function setwlsupply(uint256 _newsupply) public onlyOwner {
    WlSupply = _newsupply;
  }

  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 togglepreSale(bool _state) external onlyOwner {
        preSale = _state;
    }

    function togglepublicSale(bool _state) external onlyOwner {
        publicSale = _state;
    }
  
 
  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

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":"MaxperTxWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxsize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"presalemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSale","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":"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":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxpertx","type":"uint256"}],"name":"setWLMaxpertx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWlCost","type":"uint256"}],"name":"setWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWlMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxsize","type":"uint256"}],"name":"setmaxsize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setwlsupply","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":"bool","name":"_state","type":"bool"}],"name":"togglepreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepublicSale","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6001600090815560075560e0604052600560a081905264173539b7b760d91b60c09081526200003291600a9190620002f7565b5066b1a2bc2ec50000600c55668e1bc9bf040000600d55612710600e55611388600f5560146010819055601181905560128190556013819055805463ffffffff1916620100011790557f7d47dd9d8fd212164c3a9e8d23f89077455d468a3e287590d7f66b9c5ed8dcfd601555348015620000ac57600080fd5b506040516200378a3803806200378a833981016040819052620000cf916200046a565b6040518060400160405280601781526020017f50726f70657220506172726f74205472656520436c7562000000000000000000815250604051806040016040528060048152602001635050544360e01b815250601354600081116200018b5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b8251620001a0906001906020860190620002f7565b508151620001b6906002906020850190620002f7565b5060805250620001c8905033620001e6565b620001d38262000238565b620001de816200029c565b505062000511565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620002835760405162461bcd60e51b815260206004820181905260248201526000805160206200376a833981519152604482015260640162000182565b805162000298906009906020840190620002f7565b5050565b6008546001600160a01b03163314620002e75760405162461bcd60e51b815260206004820181905260248201526000805160206200376a833981519152604482015260640162000182565b80516200029890600b9060208401905b8280546200030590620004d4565b90600052602060002090601f01602090048101928262000329576000855562000374565b82601f106200034457805160ff191683800117855562000374565b8280016001018555821562000374579182015b828111156200037457825182559160200191906001019062000357565b506200038292915062000386565b5090565b5b8082111562000382576000815560010162000387565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620003c557600080fd5b81516001600160401b0380821115620003e257620003e26200039d565b604051601f8301601f19908116603f011681019082821181831017156200040d576200040d6200039d565b816040528381526020925086838588010111156200042a57600080fd5b600091505b838210156200044e57858201830151818301840152908201906200042f565b83821115620004605760008385830101525b9695505050505050565b600080604083850312156200047e57600080fd5b82516001600160401b03808211156200049657600080fd5b620004a486838701620003b3565b93506020850151915080821115620004bb57600080fd5b50620004ca85828601620003b3565b9150509250929050565b600181811c90821680620004e957607f821691505b602082108114156200050b57634e487b7160e01b600052602260045260246000fd5b50919050565b6080516132286200054260003960008181610555015281816122e20152818161230c015261279101526132286000f3fe6080604052600436106103805760003560e01c80636c0360eb116101d1578063bde0608a11610102578063da3ef23f116100a0578063f2c4ce1e1161006f578063f2c4ce1e146109e3578063f2fde38b14610a03578063f3257cdd14610a23578063fea0e05814610a4357600080fd5b8063da3ef23f1461093a578063e268e4d31461095a578063e985e9c51461097a578063f12f6d5d146109c357600080fd5b8063ca6b7ef5116100dc578063ca6b7ef5146108d8578063d5abeb01146108f8578063d7224ba01461090e578063d8ed370c1461092457600080fd5b8063bde0608a14610883578063c6682862146108a3578063c87b56dd146108b857600080fd5b80638da5cb5b1161016f578063a22cb46511610149578063a22cb46514610818578063a475b5dd14610838578063b88d4fde1461084d578063bd7a19981461086d57600080fd5b80638da5cb5b146107d257806395d89b41146107f0578063a0712d681461080557600080fd5b806370a08231116101ab57806370a082311461075d578063715018a61461077d5780637cb647591461079257806383a076be146107b257600080fd5b80636c0360eb1461071c5780636c2d3c4f146107315780636c6e927e1461074757600080fd5b80632913daa0116102b657806344a0d68a1161025457806355f804b31161022357806355f804b3146106a25780635a7adf7f146106c25780635c975abb146106e25780636352211e146106fc57600080fd5b806344a0d68a14610623578063458c4f9e146106435780634f6ccce714610663578063518302271461068357600080fd5b806333bc1c5c1161029057806333bc1c5c146105ad5780633ccfd60b146105ce57806342842e0e146105d6578063438b6300146105f657600080fd5b80632913daa0146105435780632eb4a7ab146105775780632f745c591461058d57600080fd5b8063095ea7b311610323578063149835a0116102fd578063149835a0146104ce57806318160ddd146104ee5780631866756c1461050357806323b872dd1461052357600080fd5b8063095ea7b3146104825780630bddb613146104a257806313faede6146104b857600080fd5b8063036e4cb51161035f578063036e4cb51461040057806306fdde0314610413578063081812fc14610435578063081c8c441461046d57600080fd5b806277ec051461038557806301ffc9a7146103ae57806302329a29146103de575b600080fd5b34801561039157600080fd5b5061039b60115481565b6040519081526020015b60405180910390f35b3480156103ba57600080fd5b506103ce6103c9366004612a55565b610a63565b60405190151581526020016103a5565b3480156103ea57600080fd5b506103fe6103f9366004612a87565b610ad0565b005b6103fe61040e366004612aa2565b610b16565b34801561041f57600080fd5b50610428610e0a565b6040516103a59190612b79565b34801561044157600080fd5b50610455610450366004612b8c565b610e9c565b6040516001600160a01b0390911681526020016103a5565b34801561047957600080fd5b50610428610f27565b34801561048e57600080fd5b506103fe61049d366004612bbc565b610fb5565b3480156104ae57600080fd5b5061039b600f5481565b3480156104c457600080fd5b5061039b600c5481565b3480156104da57600080fd5b506103fe6104e9366004612b8c565b6110cd565b3480156104fa57600080fd5b5061039b6110fc565b34801561050f57600080fd5b506103fe61051e366004612b8c565b611112565b34801561052f57600080fd5b506103fe61053e366004612be6565b611141565b34801561054f57600080fd5b5061039b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561058357600080fd5b5061039b60155481565b34801561059957600080fd5b5061039b6105a8366004612bbc565b61114c565b3480156105b957600080fd5b506014546103ce906301000000900460ff1681565b6103fe6112c4565b3480156105e257600080fd5b506103fe6105f1366004612be6565b611346565b34801561060257600080fd5b50610616610611366004612c22565b611361565b6040516103a59190612c3d565b34801561062f57600080fd5b506103fe61063e366004612b8c565b611403565b34801561064f57600080fd5b506103fe61065e366004612b8c565b611432565b34801561066f57600080fd5b5061039b61067e366004612b8c565b611461565b34801561068f57600080fd5b506014546103ce90610100900460ff1681565b3480156106ae57600080fd5b506103fe6106bd366004612d0d565b6114c9565b3480156106ce57600080fd5b506014546103ce9062010000900460ff1681565b3480156106ee57600080fd5b506014546103ce9060ff1681565b34801561070857600080fd5b50610455610717366004612b8c565b61150a565b34801561072857600080fd5b5061042861151c565b34801561073d57600080fd5b5061039b600d5481565b34801561075357600080fd5b5061039b60135481565b34801561076957600080fd5b5061039b610778366004612c22565b611529565b34801561078957600080fd5b506103fe6115ba565b34801561079e57600080fd5b506103fe6107ad366004612b8c565b6115f0565b3480156107be57600080fd5b506103fe6107cd366004612d56565b61161f565b3480156107de57600080fd5b506008546001600160a01b0316610455565b3480156107fc57600080fd5b50610428611704565b6103fe610813366004612b8c565b611713565b34801561082457600080fd5b506103fe610833366004612d82565b611938565b34801561084457600080fd5b506103fe6119fd565b34801561085957600080fd5b506103fe610868366004612dac565b611a38565b34801561087957600080fd5b5061039b60105481565b34801561088f57600080fd5b506103fe61089e366004612b8c565b611a71565b3480156108af57600080fd5b50610428611aa0565b3480156108c457600080fd5b506104286108d3366004612b8c565b611aad565b3480156108e457600080fd5b506103fe6108f3366004612b8c565b611c1f565b34801561090457600080fd5b5061039b600e5481565b34801561091a57600080fd5b5061039b60075481565b34801561093057600080fd5b5061039b60125481565b34801561094657600080fd5b506103fe610955366004612d0d565b611c4e565b34801561096657600080fd5b506103fe610975366004612b8c565b611c8b565b34801561098657600080fd5b506103ce610995366004612e28565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156109cf57600080fd5b506103fe6109de366004612b8c565b611cba565b3480156109ef57600080fd5b506103fe6109fe366004612d0d565b611ce9565b348015610a0f57600080fd5b506103fe610a1e366004612c22565b611d26565b348015610a2f57600080fd5b506103fe610a3e366004612a87565b611dbe565b348015610a4f57600080fd5b506103fe610a5e366004612a87565b611e06565b60006001600160e01b031982166380ac58cd60e01b1480610a9457506001600160e01b03198216635b5e139f60e01b145b80610aaf57506001600160e01b0319821663780e9d6360e01b145b80610aca57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610b035760405162461bcd60e51b8152600401610afa90612e52565b60405180910390fd5b6014805460ff1916911515919091179055565b60145460ff1615610b695760405162461bcd60e51b815260206004820152601d60248201527f505054433a204f6f707320636f6e7472616374206973207061757365640000006044820152606401610afa565b60145462010000900460ff16610bc15760405162461bcd60e51b815260206004820181905260248201527f505054433a2050726573616c65204861736e27742073746172746564207965746044820152606401610afa565b610c36828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611e4c565b610c955760405162461bcd60e51b815260206004820152602a60248201527f505054433a20596f7520617265206e6f7420656c696769626c6520666f72207460448201526968652070726573616c6560b01b6064820152608401610afa565b6000610c9f6110fc565b90506000610cac33611529565b601154909150610cbc8683612e9d565b1115610cda5760405162461bcd60e51b8152600401610afa90612eb5565b60008511610cfa5760405162461bcd60e51b8152600401610afa90612ef6565b601354851115610d4c5760405162461bcd60e51b815260206004820152601e60248201527f505054433a206d6178206d696e742070657220547820657863656564656400006044820152606401610afa565b600f54610d598684612e9d565b1115610da75760405162461bcd60e51b815260206004820152601860248201527f505054433a20574c20537570706c7920657863656564656400000000000000006044820152606401610afa565b84600d54610db59190612f37565b341015610df95760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610afa565b610e033386611e62565b5050505050565b606060018054610e1990612f56565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4590612f56565b8015610e925780601f10610e6757610100808354040283529160200191610e92565b820191906000526020600020905b815481529060010190602001808311610e7557829003601f168201915b5050505050905090565b6000610ea9826000541190565b610f0b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610afa565b506000908152600560205260409020546001600160a01b031690565b600b8054610f3490612f56565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6090612f56565b8015610fad5780601f10610f8257610100808354040283529160200191610fad565b820191906000526020600020905b815481529060010190602001808311610f9057829003601f168201915b505050505081565b6000610fc08261150a565b9050806001600160a01b0316836001600160a01b0316141561102f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610afa565b336001600160a01b038216148061104b575061104b8133610995565b6110bd5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610afa565b6110c8838383611e7c565b505050565b6008546001600160a01b031633146110f75760405162461bcd60e51b8152600401610afa90612e52565b600e55565b6000600160005461110d9190612f91565b905090565b6008546001600160a01b0316331461113c5760405162461bcd60e51b8152600401610afa90612e52565b601255565b6110c8838383611ed8565b600061115783611529565b82106111b05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610afa565b60006111ba6110fc565b905060008060005b83811015611264576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561121557805192505b876001600160a01b0316836001600160a01b03161415611251578684141561124357509350610aca92505050565b8361124d81612fa8565b9450505b508061125c81612fa8565b9150506111c2565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610afa565b6008546001600160a01b031633146112ee5760405162461bcd60e51b8152600401610afa90612e52565b604051600090339047908381818185875af1925050503d8060008114611330576040519150601f19603f3d011682016040523d82523d6000602084013e611335565b606091505b505090508061134357600080fd5b50565b6110c883838360405180602001604052806000815250611a38565b6060600061136e83611529565b905060008167ffffffffffffffff81111561138b5761138b612c81565b6040519080825280602002602001820160405280156113b4578160200160208202803683370190505b50905060005b828110156113fb576113cc858261114c565b8282815181106113de576113de612fc3565b6020908102919091010152806113f381612fa8565b9150506113ba565b509392505050565b6008546001600160a01b0316331461142d5760405162461bcd60e51b8152600401610afa90612e52565b600c55565b6008546001600160a01b0316331461145c5760405162461bcd60e51b8152600401610afa90612e52565b600f55565b600061146b6110fc565b82106114c55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610afa565b5090565b6008546001600160a01b031633146114f35760405162461bcd60e51b8152600401610afa90612e52565b80516115069060099060208401906129af565b5050565b600061151582612260565b5192915050565b60098054610f3490612f56565b60006001600160a01b0382166115955760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610afa565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146115e45760405162461bcd60e51b8152600401610afa90612e52565b6115ee600061240a565b565b6008546001600160a01b0316331461161a5760405162461bcd60e51b8152600401610afa90612e52565b601555565b6008546001600160a01b031633146116495760405162461bcd60e51b8152600401610afa90612e52565b600082116116995760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610afa565b60006116a36110fc565b600e549091506116b38483612e9d565b11156116fa5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610afa565b6110c88284611e62565b606060028054610e1990612f56565b60145460ff16156117665760405162461bcd60e51b815260206004820152601d60248201527f505054433a204f6f707320636f6e7472616374206973207061757365640000006044820152606401610afa565b6014546301000000900460ff166117bf5760405162461bcd60e51b815260206004820152601d60248201527f505054433a2053616c65204861736e27742073746172746564207965740000006044820152606401610afa565b60006117c96110fc565b905060006117d633611529565b9050600083116117f85760405162461bcd60e51b8152600401610afa90612ef6565b6013548311156118585760405162461bcd60e51b815260206004820152602560248201527f505054433a206d6178206d696e7420616d6f756e742070657220747820657863604482015264195959195960da1b6064820152608401610afa565b600e546118658484612e9d565b11156118a65760405162461bcd60e51b815260206004820152601060248201526f14141510ce8815d94814dbdb191bdd5d60821b6044820152606401610afa565b6010546118b38483612e9d565b11156118d15760405162461bcd60e51b8152600401610afa90612eb5565b82600c546118df9190612f37565b34101561192e5760405162461bcd60e51b815260206004820152601860248201527f505054433a20696e73756666696369656e742066756e647300000000000000006044820152606401610afa565b6110c83384611e62565b6001600160a01b0382163314156119915760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610afa565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314611a275760405162461bcd60e51b8152600401610afa90612e52565b6014805461ff001916610100179055565b611a43848484611ed8565b611a4f8484848461245c565b611a6b5760405162461bcd60e51b8152600401610afa90612fd9565b50505050565b6008546001600160a01b03163314611a9b5760405162461bcd60e51b8152600401610afa90612e52565b601155565b600a8054610f3490612f56565b6060611aba826000541190565b611b1f5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610afa565b601454610100900460ff16611bc057600b8054611b3b90612f56565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6790612f56565b8015611bb45780601f10611b8957610100808354040283529160200191611bb4565b820191906000526020600020905b815481529060010190602001808311611b9757829003601f168201915b50505050509050919050565b6000611bca61255b565b90506000815111611bea5760405180602001604052806000815250611c18565b80611bf48461256a565b600a604051602001611c089392919061302c565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611c495760405162461bcd60e51b8152600401610afa90612e52565b601355565b6008546001600160a01b03163314611c785760405162461bcd60e51b8152600401610afa90612e52565b805161150690600a9060208401906129af565b6008546001600160a01b03163314611cb55760405162461bcd60e51b8152600401610afa90612e52565b601055565b6008546001600160a01b03163314611ce45760405162461bcd60e51b8152600401610afa90612e52565b600d55565b6008546001600160a01b03163314611d135760405162461bcd60e51b8152600401610afa90612e52565b805161150690600b9060208401906129af565b6008546001600160a01b03163314611d505760405162461bcd60e51b8152600401610afa90612e52565b6001600160a01b038116611db55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afa565b6113438161240a565b6008546001600160a01b03163314611de85760405162461bcd60e51b8152600401610afa90612e52565b6014805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b03163314611e305760405162461bcd60e51b8152600401610afa90612e52565b60148054911515620100000262ff000019909216919091179055565b600082611e598584612668565b14949350505050565b6115068282604051806020016040528060008152506126d4565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ee382612260565b80519091506000906001600160a01b0316336001600160a01b03161480611f1a575033611f0f84610e9c565b6001600160a01b0316145b80611f2c57508151611f2c9033610995565b905080611f965760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610afa565b846001600160a01b031682600001516001600160a01b03161461200a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610afa565b6001600160a01b03841661206e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610afa565b61207e6000848460000151611e7c565b6001600160a01b03851660009081526004602052604081208054600192906120b09084906001600160801b03166130f0565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926120fc91859116613118565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612184846001612e9d565b6000818152600360205260409020549091506001600160a01b0316612216576121ae816000541190565b156122165760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261227f826000541190565b6122de5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610afa565b60007f0000000000000000000000000000000000000000000000000000000000000000831061233f576123317f000000000000000000000000000000000000000000000000000000000000000084612f91565b61233c906001612e9d565b90505b825b8181106123a9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561239657949350505050565b50806123a181613143565b915050612341565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610afa565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561254f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124a090339089908890889060040161315a565b6020604051808303816000875af19250505080156124db575060408051601f3d908101601f191682019092526124d891810190613197565b60015b612535573d808015612509576040519150601f19603f3d011682016040523d82523d6000602084013e61250e565b606091505b50805161252d5760405162461bcd60e51b8152600401610afa90612fd9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612553565b5060015b949350505050565b606060098054610e1990612f56565b60608161258e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125b857806125a281612fa8565b91506125b19050600a836131ca565b9150612592565b60008167ffffffffffffffff8111156125d3576125d3612c81565b6040519080825280601f01601f1916602001820160405280156125fd576020820181803683370190505b5090505b841561255357612612600183612f91565b915061261f600a866131de565b61262a906030612e9d565b60f81b81838151811061263f5761263f612fc3565b60200101906001600160f81b031916908160001a905350612661600a866131ca565b9450612601565b600081815b84518110156113fb57600085828151811061268a5761268a612fc3565b602002602001015190508083116126b057600083815260208290526040902092506126c1565b600081815260208490526040902092505b50806126cc81612fa8565b91505061266d565b6000546001600160a01b0384166127375760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610afa565b612742816000541190565b1561278f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610afa565b7f000000000000000000000000000000000000000000000000000000000000000083111561280a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610afa565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612866908790613118565b6001600160801b031681526020018583602001516128849190613118565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156129a45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612968600088848861245c565b6129845760405162461bcd60e51b8152600401610afa90612fd9565b8161298e81612fa8565b925050808061299c90612fa8565b91505061291b565b506000819055612258565b8280546129bb90612f56565b90600052602060002090601f0160209004810192826129dd5760008555612a23565b82601f106129f657805160ff1916838001178555612a23565b82800160010185558215612a23579182015b82811115612a23578251825591602001919060010190612a08565b506114c59291505b808211156114c55760008155600101612a2b565b6001600160e01b03198116811461134357600080fd5b600060208284031215612a6757600080fd5b8135611c1881612a3f565b80358015158114612a8257600080fd5b919050565b600060208284031215612a9957600080fd5b611c1882612a72565b600080600060408486031215612ab757600080fd5b83359250602084013567ffffffffffffffff80821115612ad657600080fd5b818601915086601f830112612aea57600080fd5b813581811115612af957600080fd5b8760208260051b8501011115612b0e57600080fd5b6020830194508093505050509250925092565b60005b83811015612b3c578181015183820152602001612b24565b83811115611a6b5750506000910152565b60008151808452612b65816020860160208601612b21565b601f01601f19169290920160200192915050565b602081526000611c186020830184612b4d565b600060208284031215612b9e57600080fd5b5035919050565b80356001600160a01b0381168114612a8257600080fd5b60008060408385031215612bcf57600080fd5b612bd883612ba5565b946020939093013593505050565b600080600060608486031215612bfb57600080fd5b612c0484612ba5565b9250612c1260208501612ba5565b9150604084013590509250925092565b600060208284031215612c3457600080fd5b611c1882612ba5565b6020808252825182820181905260009190848201906040850190845b81811015612c7557835183529284019291840191600101612c59565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612cb257612cb2612c81565b604051601f8501601f19908116603f01168101908282118183101715612cda57612cda612c81565b81604052809350858152868686011115612cf357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612d1f57600080fd5b813567ffffffffffffffff811115612d3657600080fd5b8201601f81018413612d4757600080fd5b61255384823560208401612c97565b60008060408385031215612d6957600080fd5b82359150612d7960208401612ba5565b90509250929050565b60008060408385031215612d9557600080fd5b612d9e83612ba5565b9150612d7960208401612a72565b60008060008060808587031215612dc257600080fd5b612dcb85612ba5565b9350612dd960208601612ba5565b925060408501359150606085013567ffffffffffffffff811115612dfc57600080fd5b8501601f81018713612e0d57600080fd5b612e1c87823560208401612c97565b91505092959194509250565b60008060408385031215612e3b57600080fd5b612e4483612ba5565b9150612d7960208401612ba5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612eb057612eb0612e87565b500190565b60208082526021908201527f505054433a204d6178204e4654205065722057616c6c657420657863656564656040820152601960fa1b606082015260800190565b60208082526021908201527f505054433a206e65656420746f206d696e74206174206c656173742031204e466040820152601560fa1b606082015260800190565b6000816000190483118215151615612f5157612f51612e87565b500290565b600181811c90821680612f6a57607f821691505b60208210811415612f8b57634e487b7160e01b600052602260045260246000fd5b50919050565b600082821015612fa357612fa3612e87565b500390565b6000600019821415612fbc57612fbc612e87565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008451602061303f8285838a01612b21565b8551918401916130528184848a01612b21565b8554920191600090600181811c908083168061306f57607f831692505b85831081141561308d57634e487b7160e01b85526022600452602485fd5b8080156130a157600181146130b2576130df565b60ff198516885283880195506130df565b60008b81526020902060005b858110156130d75781548a8201529084019088016130be565b505083880195505b50939b9a5050505050505050505050565b60006001600160801b038381169083168181101561311057613110612e87565b039392505050565b60006001600160801b0380831681851680830382111561313a5761313a612e87565b01949350505050565b60008161315257613152612e87565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061318d90830184612b4d565b9695505050505050565b6000602082840312156131a957600080fd5b8151611c1881612a3f565b634e487b7160e01b600052601260045260246000fd5b6000826131d9576131d96131b4565b500490565b6000826131ed576131ed6131b4565b50069056fea2646970667358221220b1adebfbed98c5ae7ab7e2cf0099708545a2597e49511bcc8bdd5016b271ffa664736f6c634300080c00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52374d73724861324d416d4e747a4c526a596e4a414d32636438567a594e325859457176597050676836454c2f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d553934556a636839664c77686a594232455a677268397a5962706a7435346e48336a455241793746613562622f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103805760003560e01c80636c0360eb116101d1578063bde0608a11610102578063da3ef23f116100a0578063f2c4ce1e1161006f578063f2c4ce1e146109e3578063f2fde38b14610a03578063f3257cdd14610a23578063fea0e05814610a4357600080fd5b8063da3ef23f1461093a578063e268e4d31461095a578063e985e9c51461097a578063f12f6d5d146109c357600080fd5b8063ca6b7ef5116100dc578063ca6b7ef5146108d8578063d5abeb01146108f8578063d7224ba01461090e578063d8ed370c1461092457600080fd5b8063bde0608a14610883578063c6682862146108a3578063c87b56dd146108b857600080fd5b80638da5cb5b1161016f578063a22cb46511610149578063a22cb46514610818578063a475b5dd14610838578063b88d4fde1461084d578063bd7a19981461086d57600080fd5b80638da5cb5b146107d257806395d89b41146107f0578063a0712d681461080557600080fd5b806370a08231116101ab57806370a082311461075d578063715018a61461077d5780637cb647591461079257806383a076be146107b257600080fd5b80636c0360eb1461071c5780636c2d3c4f146107315780636c6e927e1461074757600080fd5b80632913daa0116102b657806344a0d68a1161025457806355f804b31161022357806355f804b3146106a25780635a7adf7f146106c25780635c975abb146106e25780636352211e146106fc57600080fd5b806344a0d68a14610623578063458c4f9e146106435780634f6ccce714610663578063518302271461068357600080fd5b806333bc1c5c1161029057806333bc1c5c146105ad5780633ccfd60b146105ce57806342842e0e146105d6578063438b6300146105f657600080fd5b80632913daa0146105435780632eb4a7ab146105775780632f745c591461058d57600080fd5b8063095ea7b311610323578063149835a0116102fd578063149835a0146104ce57806318160ddd146104ee5780631866756c1461050357806323b872dd1461052357600080fd5b8063095ea7b3146104825780630bddb613146104a257806313faede6146104b857600080fd5b8063036e4cb51161035f578063036e4cb51461040057806306fdde0314610413578063081812fc14610435578063081c8c441461046d57600080fd5b806277ec051461038557806301ffc9a7146103ae57806302329a29146103de575b600080fd5b34801561039157600080fd5b5061039b60115481565b6040519081526020015b60405180910390f35b3480156103ba57600080fd5b506103ce6103c9366004612a55565b610a63565b60405190151581526020016103a5565b3480156103ea57600080fd5b506103fe6103f9366004612a87565b610ad0565b005b6103fe61040e366004612aa2565b610b16565b34801561041f57600080fd5b50610428610e0a565b6040516103a59190612b79565b34801561044157600080fd5b50610455610450366004612b8c565b610e9c565b6040516001600160a01b0390911681526020016103a5565b34801561047957600080fd5b50610428610f27565b34801561048e57600080fd5b506103fe61049d366004612bbc565b610fb5565b3480156104ae57600080fd5b5061039b600f5481565b3480156104c457600080fd5b5061039b600c5481565b3480156104da57600080fd5b506103fe6104e9366004612b8c565b6110cd565b3480156104fa57600080fd5b5061039b6110fc565b34801561050f57600080fd5b506103fe61051e366004612b8c565b611112565b34801561052f57600080fd5b506103fe61053e366004612be6565b611141565b34801561054f57600080fd5b5061039b7f000000000000000000000000000000000000000000000000000000000000001481565b34801561058357600080fd5b5061039b60155481565b34801561059957600080fd5b5061039b6105a8366004612bbc565b61114c565b3480156105b957600080fd5b506014546103ce906301000000900460ff1681565b6103fe6112c4565b3480156105e257600080fd5b506103fe6105f1366004612be6565b611346565b34801561060257600080fd5b50610616610611366004612c22565b611361565b6040516103a59190612c3d565b34801561062f57600080fd5b506103fe61063e366004612b8c565b611403565b34801561064f57600080fd5b506103fe61065e366004612b8c565b611432565b34801561066f57600080fd5b5061039b61067e366004612b8c565b611461565b34801561068f57600080fd5b506014546103ce90610100900460ff1681565b3480156106ae57600080fd5b506103fe6106bd366004612d0d565b6114c9565b3480156106ce57600080fd5b506014546103ce9062010000900460ff1681565b3480156106ee57600080fd5b506014546103ce9060ff1681565b34801561070857600080fd5b50610455610717366004612b8c565b61150a565b34801561072857600080fd5b5061042861151c565b34801561073d57600080fd5b5061039b600d5481565b34801561075357600080fd5b5061039b60135481565b34801561076957600080fd5b5061039b610778366004612c22565b611529565b34801561078957600080fd5b506103fe6115ba565b34801561079e57600080fd5b506103fe6107ad366004612b8c565b6115f0565b3480156107be57600080fd5b506103fe6107cd366004612d56565b61161f565b3480156107de57600080fd5b506008546001600160a01b0316610455565b3480156107fc57600080fd5b50610428611704565b6103fe610813366004612b8c565b611713565b34801561082457600080fd5b506103fe610833366004612d82565b611938565b34801561084457600080fd5b506103fe6119fd565b34801561085957600080fd5b506103fe610868366004612dac565b611a38565b34801561087957600080fd5b5061039b60105481565b34801561088f57600080fd5b506103fe61089e366004612b8c565b611a71565b3480156108af57600080fd5b50610428611aa0565b3480156108c457600080fd5b506104286108d3366004612b8c565b611aad565b3480156108e457600080fd5b506103fe6108f3366004612b8c565b611c1f565b34801561090457600080fd5b5061039b600e5481565b34801561091a57600080fd5b5061039b60075481565b34801561093057600080fd5b5061039b60125481565b34801561094657600080fd5b506103fe610955366004612d0d565b611c4e565b34801561096657600080fd5b506103fe610975366004612b8c565b611c8b565b34801561098657600080fd5b506103ce610995366004612e28565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156109cf57600080fd5b506103fe6109de366004612b8c565b611cba565b3480156109ef57600080fd5b506103fe6109fe366004612d0d565b611ce9565b348015610a0f57600080fd5b506103fe610a1e366004612c22565b611d26565b348015610a2f57600080fd5b506103fe610a3e366004612a87565b611dbe565b348015610a4f57600080fd5b506103fe610a5e366004612a87565b611e06565b60006001600160e01b031982166380ac58cd60e01b1480610a9457506001600160e01b03198216635b5e139f60e01b145b80610aaf57506001600160e01b0319821663780e9d6360e01b145b80610aca57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b03163314610b035760405162461bcd60e51b8152600401610afa90612e52565b60405180910390fd5b6014805460ff1916911515919091179055565b60145460ff1615610b695760405162461bcd60e51b815260206004820152601d60248201527f505054433a204f6f707320636f6e7472616374206973207061757365640000006044820152606401610afa565b60145462010000900460ff16610bc15760405162461bcd60e51b815260206004820181905260248201527f505054433a2050726573616c65204861736e27742073746172746564207965746044820152606401610afa565b610c36828280806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611e4c565b610c955760405162461bcd60e51b815260206004820152602a60248201527f505054433a20596f7520617265206e6f7420656c696769626c6520666f72207460448201526968652070726573616c6560b01b6064820152608401610afa565b6000610c9f6110fc565b90506000610cac33611529565b601154909150610cbc8683612e9d565b1115610cda5760405162461bcd60e51b8152600401610afa90612eb5565b60008511610cfa5760405162461bcd60e51b8152600401610afa90612ef6565b601354851115610d4c5760405162461bcd60e51b815260206004820152601e60248201527f505054433a206d6178206d696e742070657220547820657863656564656400006044820152606401610afa565b600f54610d598684612e9d565b1115610da75760405162461bcd60e51b815260206004820152601860248201527f505054433a20574c20537570706c7920657863656564656400000000000000006044820152606401610afa565b84600d54610db59190612f37565b341015610df95760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610afa565b610e033386611e62565b5050505050565b606060018054610e1990612f56565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4590612f56565b8015610e925780601f10610e6757610100808354040283529160200191610e92565b820191906000526020600020905b815481529060010190602001808311610e7557829003601f168201915b5050505050905090565b6000610ea9826000541190565b610f0b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610afa565b506000908152600560205260409020546001600160a01b031690565b600b8054610f3490612f56565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6090612f56565b8015610fad5780601f10610f8257610100808354040283529160200191610fad565b820191906000526020600020905b815481529060010190602001808311610f9057829003601f168201915b505050505081565b6000610fc08261150a565b9050806001600160a01b0316836001600160a01b0316141561102f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610afa565b336001600160a01b038216148061104b575061104b8133610995565b6110bd5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610afa565b6110c8838383611e7c565b505050565b6008546001600160a01b031633146110f75760405162461bcd60e51b8152600401610afa90612e52565b600e55565b6000600160005461110d9190612f91565b905090565b6008546001600160a01b0316331461113c5760405162461bcd60e51b8152600401610afa90612e52565b601255565b6110c8838383611ed8565b600061115783611529565b82106111b05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610afa565b60006111ba6110fc565b905060008060005b83811015611264576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561121557805192505b876001600160a01b0316836001600160a01b03161415611251578684141561124357509350610aca92505050565b8361124d81612fa8565b9450505b508061125c81612fa8565b9150506111c2565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610afa565b6008546001600160a01b031633146112ee5760405162461bcd60e51b8152600401610afa90612e52565b604051600090339047908381818185875af1925050503d8060008114611330576040519150601f19603f3d011682016040523d82523d6000602084013e611335565b606091505b505090508061134357600080fd5b50565b6110c883838360405180602001604052806000815250611a38565b6060600061136e83611529565b905060008167ffffffffffffffff81111561138b5761138b612c81565b6040519080825280602002602001820160405280156113b4578160200160208202803683370190505b50905060005b828110156113fb576113cc858261114c565b8282815181106113de576113de612fc3565b6020908102919091010152806113f381612fa8565b9150506113ba565b509392505050565b6008546001600160a01b0316331461142d5760405162461bcd60e51b8152600401610afa90612e52565b600c55565b6008546001600160a01b0316331461145c5760405162461bcd60e51b8152600401610afa90612e52565b600f55565b600061146b6110fc565b82106114c55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610afa565b5090565b6008546001600160a01b031633146114f35760405162461bcd60e51b8152600401610afa90612e52565b80516115069060099060208401906129af565b5050565b600061151582612260565b5192915050565b60098054610f3490612f56565b60006001600160a01b0382166115955760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610afa565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146115e45760405162461bcd60e51b8152600401610afa90612e52565b6115ee600061240a565b565b6008546001600160a01b0316331461161a5760405162461bcd60e51b8152600401610afa90612e52565b601555565b6008546001600160a01b031633146116495760405162461bcd60e51b8152600401610afa90612e52565b600082116116995760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610afa565b60006116a36110fc565b600e549091506116b38483612e9d565b11156116fa5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610afa565b6110c88284611e62565b606060028054610e1990612f56565b60145460ff16156117665760405162461bcd60e51b815260206004820152601d60248201527f505054433a204f6f707320636f6e7472616374206973207061757365640000006044820152606401610afa565b6014546301000000900460ff166117bf5760405162461bcd60e51b815260206004820152601d60248201527f505054433a2053616c65204861736e27742073746172746564207965740000006044820152606401610afa565b60006117c96110fc565b905060006117d633611529565b9050600083116117f85760405162461bcd60e51b8152600401610afa90612ef6565b6013548311156118585760405162461bcd60e51b815260206004820152602560248201527f505054433a206d6178206d696e7420616d6f756e742070657220747820657863604482015264195959195960da1b6064820152608401610afa565b600e546118658484612e9d565b11156118a65760405162461bcd60e51b815260206004820152601060248201526f14141510ce8815d94814dbdb191bdd5d60821b6044820152606401610afa565b6010546118b38483612e9d565b11156118d15760405162461bcd60e51b8152600401610afa90612eb5565b82600c546118df9190612f37565b34101561192e5760405162461bcd60e51b815260206004820152601860248201527f505054433a20696e73756666696369656e742066756e647300000000000000006044820152606401610afa565b6110c83384611e62565b6001600160a01b0382163314156119915760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610afa565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314611a275760405162461bcd60e51b8152600401610afa90612e52565b6014805461ff001916610100179055565b611a43848484611ed8565b611a4f8484848461245c565b611a6b5760405162461bcd60e51b8152600401610afa90612fd9565b50505050565b6008546001600160a01b03163314611a9b5760405162461bcd60e51b8152600401610afa90612e52565b601155565b600a8054610f3490612f56565b6060611aba826000541190565b611b1f5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610afa565b601454610100900460ff16611bc057600b8054611b3b90612f56565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6790612f56565b8015611bb45780601f10611b8957610100808354040283529160200191611bb4565b820191906000526020600020905b815481529060010190602001808311611b9757829003601f168201915b50505050509050919050565b6000611bca61255b565b90506000815111611bea5760405180602001604052806000815250611c18565b80611bf48461256a565b600a604051602001611c089392919061302c565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314611c495760405162461bcd60e51b8152600401610afa90612e52565b601355565b6008546001600160a01b03163314611c785760405162461bcd60e51b8152600401610afa90612e52565b805161150690600a9060208401906129af565b6008546001600160a01b03163314611cb55760405162461bcd60e51b8152600401610afa90612e52565b601055565b6008546001600160a01b03163314611ce45760405162461bcd60e51b8152600401610afa90612e52565b600d55565b6008546001600160a01b03163314611d135760405162461bcd60e51b8152600401610afa90612e52565b805161150690600b9060208401906129af565b6008546001600160a01b03163314611d505760405162461bcd60e51b8152600401610afa90612e52565b6001600160a01b038116611db55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afa565b6113438161240a565b6008546001600160a01b03163314611de85760405162461bcd60e51b8152600401610afa90612e52565b6014805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b03163314611e305760405162461bcd60e51b8152600401610afa90612e52565b60148054911515620100000262ff000019909216919091179055565b600082611e598584612668565b14949350505050565b6115068282604051806020016040528060008152506126d4565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ee382612260565b80519091506000906001600160a01b0316336001600160a01b03161480611f1a575033611f0f84610e9c565b6001600160a01b0316145b80611f2c57508151611f2c9033610995565b905080611f965760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610afa565b846001600160a01b031682600001516001600160a01b03161461200a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610afa565b6001600160a01b03841661206e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610afa565b61207e6000848460000151611e7c565b6001600160a01b03851660009081526004602052604081208054600192906120b09084906001600160801b03166130f0565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926120fc91859116613118565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612184846001612e9d565b6000818152600360205260409020549091506001600160a01b0316612216576121ae816000541190565b156122165760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261227f826000541190565b6122de5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610afa565b60007f0000000000000000000000000000000000000000000000000000000000000014831061233f576123317f000000000000000000000000000000000000000000000000000000000000001484612f91565b61233c906001612e9d565b90505b825b8181106123a9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561239657949350505050565b50806123a181613143565b915050612341565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610afa565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561254f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124a090339089908890889060040161315a565b6020604051808303816000875af19250505080156124db575060408051601f3d908101601f191682019092526124d891810190613197565b60015b612535573d808015612509576040519150601f19603f3d011682016040523d82523d6000602084013e61250e565b606091505b50805161252d5760405162461bcd60e51b8152600401610afa90612fd9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612553565b5060015b949350505050565b606060098054610e1990612f56565b60608161258e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125b857806125a281612fa8565b91506125b19050600a836131ca565b9150612592565b60008167ffffffffffffffff8111156125d3576125d3612c81565b6040519080825280601f01601f1916602001820160405280156125fd576020820181803683370190505b5090505b841561255357612612600183612f91565b915061261f600a866131de565b61262a906030612e9d565b60f81b81838151811061263f5761263f612fc3565b60200101906001600160f81b031916908160001a905350612661600a866131ca565b9450612601565b600081815b84518110156113fb57600085828151811061268a5761268a612fc3565b602002602001015190508083116126b057600083815260208290526040902092506126c1565b600081815260208490526040902092505b50806126cc81612fa8565b91505061266d565b6000546001600160a01b0384166127375760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610afa565b612742816000541190565b1561278f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610afa565b7f000000000000000000000000000000000000000000000000000000000000001483111561280a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610afa565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612866908790613118565b6001600160801b031681526020018583602001516128849190613118565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156129a45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612968600088848861245c565b6129845760405162461bcd60e51b8152600401610afa90612fd9565b8161298e81612fa8565b925050808061299c90612fa8565b91505061291b565b506000819055612258565b8280546129bb90612f56565b90600052602060002090601f0160209004810192826129dd5760008555612a23565b82601f106129f657805160ff1916838001178555612a23565b82800160010185558215612a23579182015b82811115612a23578251825591602001919060010190612a08565b506114c59291505b808211156114c55760008155600101612a2b565b6001600160e01b03198116811461134357600080fd5b600060208284031215612a6757600080fd5b8135611c1881612a3f565b80358015158114612a8257600080fd5b919050565b600060208284031215612a9957600080fd5b611c1882612a72565b600080600060408486031215612ab757600080fd5b83359250602084013567ffffffffffffffff80821115612ad657600080fd5b818601915086601f830112612aea57600080fd5b813581811115612af957600080fd5b8760208260051b8501011115612b0e57600080fd5b6020830194508093505050509250925092565b60005b83811015612b3c578181015183820152602001612b24565b83811115611a6b5750506000910152565b60008151808452612b65816020860160208601612b21565b601f01601f19169290920160200192915050565b602081526000611c186020830184612b4d565b600060208284031215612b9e57600080fd5b5035919050565b80356001600160a01b0381168114612a8257600080fd5b60008060408385031215612bcf57600080fd5b612bd883612ba5565b946020939093013593505050565b600080600060608486031215612bfb57600080fd5b612c0484612ba5565b9250612c1260208501612ba5565b9150604084013590509250925092565b600060208284031215612c3457600080fd5b611c1882612ba5565b6020808252825182820181905260009190848201906040850190845b81811015612c7557835183529284019291840191600101612c59565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612cb257612cb2612c81565b604051601f8501601f19908116603f01168101908282118183101715612cda57612cda612c81565b81604052809350858152868686011115612cf357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612d1f57600080fd5b813567ffffffffffffffff811115612d3657600080fd5b8201601f81018413612d4757600080fd5b61255384823560208401612c97565b60008060408385031215612d6957600080fd5b82359150612d7960208401612ba5565b90509250929050565b60008060408385031215612d9557600080fd5b612d9e83612ba5565b9150612d7960208401612a72565b60008060008060808587031215612dc257600080fd5b612dcb85612ba5565b9350612dd960208601612ba5565b925060408501359150606085013567ffffffffffffffff811115612dfc57600080fd5b8501601f81018713612e0d57600080fd5b612e1c87823560208401612c97565b91505092959194509250565b60008060408385031215612e3b57600080fd5b612e4483612ba5565b9150612d7960208401612ba5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612eb057612eb0612e87565b500190565b60208082526021908201527f505054433a204d6178204e4654205065722057616c6c657420657863656564656040820152601960fa1b606082015260800190565b60208082526021908201527f505054433a206e65656420746f206d696e74206174206c656173742031204e466040820152601560fa1b606082015260800190565b6000816000190483118215151615612f5157612f51612e87565b500290565b600181811c90821680612f6a57607f821691505b60208210811415612f8b57634e487b7160e01b600052602260045260246000fd5b50919050565b600082821015612fa357612fa3612e87565b500390565b6000600019821415612fbc57612fbc612e87565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008451602061303f8285838a01612b21565b8551918401916130528184848a01612b21565b8554920191600090600181811c908083168061306f57607f831692505b85831081141561308d57634e487b7160e01b85526022600452602485fd5b8080156130a157600181146130b2576130df565b60ff198516885283880195506130df565b60008b81526020902060005b858110156130d75781548a8201529084019088016130be565b505083880195505b50939b9a5050505050505050505050565b60006001600160801b038381169083168181101561311057613110612e87565b039392505050565b60006001600160801b0380831681851680830382111561313a5761313a612e87565b01949350505050565b60008161315257613152612e87565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061318d90830184612b4d565b9695505050505050565b6000602082840312156131a957600080fd5b8151611c1881612a3f565b634e487b7160e01b600052601260045260246000fd5b6000826131d9576131d96131b4565b500490565b6000826131ed576131ed6131b4565b50069056fea2646970667358221220b1adebfbed98c5ae7ab7e2cf0099708545a2597e49511bcc8bdd5016b271ffa664736f6c634300080c0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52374d73724861324d416d4e747a4c526a596e4a414d32636438567a594e325859457176597050676836454c2f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d553934556a636839664c77686a594232455a677268397a5962706a7435346e48336a455241793746613562622f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmR7MsrHa2MAmNtzLRjYnJAM2cd8VzYN2XYEqvYpPgh6EL/
Arg [1] : _initNotRevealedUri (string): ipfs://QmU94Ujch9fLwhjYB2EZgrh9zYbpjt54nH3jERAy7Fa5bb/hidden.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d52374d73724861324d416d4e747a4c526a596e4a414d32
Arg [4] : 636438567a594e325859457176597050676836454c2f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [6] : 697066733a2f2f516d553934556a636839664c77686a594232455a677268397a
Arg [7] : 5962706a7435346e48336a455241793746613562622f68696464656e2e6a736f
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48947:5671:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49320:34;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;49320:34:0;;;;;;;;36590:370;;;;;;;;;;-1:-1:-1;36590:370:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;36590:370:0;582:187:1;54169:73:0;;;;;;;;;;-1:-1:-1;54169:73:0;;;;;:::i;:::-;;:::i;:::-;;50721:855;;;;;;:::i;:::-;;:::i;38316:94::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39841:204::-;;;;;;;;;;-1:-1:-1;39841:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2912:32:1;;;2894:51;;2882:2;2867:18;39841:204:0;2748:203:1;49102:28:0;;;;;;;;;;;;;:::i;39404:379::-;;;;;;;;;;-1:-1:-1;39404:379:0;;;;;:::i;:::-;;:::i;49248:30::-;;;;;;;;;;;;;;;;49135:32;;;;;;;;;;;;;;;;53609:94;;;;;;;;;;-1:-1:-1;53609:94:0;;;;;:::i;:::-;;:::i;35150:98::-;;;;;;;;;;;;;:::i;53323:94::-;;;;;;;;;;-1:-1:-1;53323:94:0;;;;;:::i;:::-;;:::i;40691:142::-;;;;;;;;;;-1:-1:-1;40691:142:0;;;;;:::i;:::-;;:::i;34028:37::-;;;;;;;;;;;;;;;49575:94;;;;;;;;;;;;;;;;35782:744;;;;;;;;;;-1:-1:-1;35782:744:0;;;;;:::i;:::-;;:::i;49540:30::-;;;;;;;;;;-1:-1:-1;49540:30:0;;;;;;;;;;;54457:158;;;:::i;40896:157::-;;;;;;;;;;-1:-1:-1;40896:157:0;;;;;:::i;:::-;;:::i;51964:348::-;;;;;;;;;;-1:-1:-1;51964:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53425:80::-;;;;;;;;;;-1:-1:-1;53425:80:0;;;;;:::i;:::-;;:::i;53711:92::-;;;;;;;;;;-1:-1:-1;53711:92:0;;;;;:::i;:::-;;:::i;35317:177::-;;;;;;;;;;-1:-1:-1;35317:177:0;;;;;:::i;:::-;;:::i;49476:28::-;;;;;;;;;;-1:-1:-1;49476:28:0;;;;;;;;;;;53809:98;;;;;;;;;;-1:-1:-1;53809:98:0;;;;;:::i;:::-;;:::i;49509:26::-;;;;;;;;;;-1:-1:-1;49509:26:0;;;;;;;;;;;49446:25;;;;;;;;;;-1:-1:-1;49446:25:0;;;;;;;;38139:118;;;;;;;;;;-1:-1:-1;38139:118:0;;;;;:::i;:::-;;:::i;49034:21::-;;;;;;;;;;;;;:::i;49172:34::-;;;;;;;;;;;;;;;;49394:27;;;;;;;;;;;;;;;;37016:211;;;;;;;;;;-1:-1:-1;37016:211:0;;;;;:::i;:::-;;:::i;14174:103::-;;;;;;;;;;;;;:::i;52913:106::-;;;;;;;;;;-1:-1:-1;52913:106:0;;;;;:::i;:::-;;:::i;51645:305::-;;;;;;;;;;-1:-1:-1;51645:305:0;;;;;:::i;:::-;;:::i;13523:87::-;;;;;;;;;;-1:-1:-1;13596:6:0;;-1:-1:-1;;;;;13596:6:0;13523:87;;38471:98;;;;;;;;;;;;;:::i;50042:671::-;;;;;;:::i;:::-;;:::i;40109:274::-;;;;;;;;;;-1:-1:-1;40109:274:0;;;;;:::i;:::-;;:::i;52838:65::-;;;;;;;;;;;;;:::i;41116:311::-;;;;;;;;;;-1:-1:-1;41116:311:0;;;;;:::i;:::-;;:::i;49283:32::-;;;;;;;;;;;;;;;;53127:96;;;;;;;;;;-1:-1:-1;53127:96:0;;;;;:::i;:::-;;:::i;49060:37::-;;;;;;;;;;;;;:::i;52318:498::-;;;;;;;;;;-1:-1:-1;52318:498:0;;;;;:::i;:::-;;:::i;53229:86::-;;;;;;;;;;-1:-1:-1;53229:86:0;;;;;:::i;:::-;;:::i;49211:32::-;;;;;;;;;;;;;;;;45447:43;;;;;;;;;;;;;;;;49359:30;;;;;;;;;;;;;;;;53913:122;;;;;;;;;;-1:-1:-1;53913:122:0;;;;;:::i;:::-;;:::i;53027:92::-;;;;;;;;;;-1:-1:-1;53027:92:0;;;;;:::i;:::-;;:::i;40446:186::-;;;;;;;;;;-1:-1:-1;40446:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;40591:25:0;;;40568:4;40591:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40446:186;53513:88;;;;;;;;;;-1:-1:-1;53513:88:0;;;;;:::i;:::-;;:::i;54043:120::-;;;;;;;;;;-1:-1:-1;54043:120:0;;;;;:::i;:::-;;:::i;14432:201::-;;;;;;;;;;-1:-1:-1;14432:201:0;;;;;:::i;:::-;;:::i;54350:96::-;;;;;;;;;;-1:-1:-1;54350:96:0;;;;;:::i;:::-;;:::i;54252:90::-;;;;;;;;;;-1:-1:-1;54252:90:0;;;;;:::i;:::-;;:::i;36590:370::-;36717:4;-1:-1:-1;;;;;;36747:40:0;;-1:-1:-1;;;36747:40:0;;:99;;-1:-1:-1;;;;;;;36798:48:0;;-1:-1:-1;;;36798:48:0;36747:99;:160;;;-1:-1:-1;;;;;;;36857:50:0;;-1:-1:-1;;;36857:50:0;36747:160;:207;;;-1:-1:-1;;;;;;;;;;26416:40:0;;;36918:36;36733:221;36590:370;-1:-1:-1;;36590:370:0:o;54169:73::-;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;;;;;;;;;54221:6:::1;:15:::0;;-1:-1:-1;;54221:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54169:73::o;50721:855::-;50822:6;;;;50821:7;50813:49;;;;-1:-1:-1;;;50813:49:0;;8164:2:1;50813:49:0;;;8146:21:1;8203:2;8183:18;;;8176:30;8242:31;8222:18;;;8215:59;8291:18;;50813:49:0;7962:353:1;50813:49:0;50877:7;;;;;;;50869:52;;;;-1:-1:-1;;;50869:52:0;;8522:2:1;50869:52:0;;;8504:21:1;;;8541:18;;;8534:30;8600:34;8580:18;;;8573:62;8652:18;;50869:52:0;8320:356:1;50869:52:0;50936:84;50955:11;;50936:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50968:10:0;;50990:28;;-1:-1:-1;;51007:10:0;8830:2:1;8826:15;8822:53;50990:28:0;;;8810:66:1;50968:10:0;;-1:-1:-1;8892:12:1;;;-1:-1:-1;50990:28:0;;;;;;;;;;;;50980:39;;;;;;50936:18;:84::i;:::-;50928:139;;;;-1:-1:-1;;;50928:139:0;;9117:2:1;50928:139:0;;;9099:21:1;9156:2;9136:18;;;9129:30;9195:34;9175:18;;;9168:62;-1:-1:-1;;;9246:18:1;;;9239:40;9296:19;;50928:139:0;8915:406:1;50928:139:0;51074:14;51091:13;:11;:13::i;:::-;51074:30;-1:-1:-1;51111:23:0;51137;12327:10;37016:211;:::i;51137:23::-;51203:14;;51111:49;;-1:-1:-1;51175:24:0;51193:6;51111:49;51175:24;:::i;:::-;:42;;51167:88;;;;-1:-1:-1;;;51167:88:0;;;;;;;:::i;:::-;51279:1;51270:6;:10;51262:56;;;;-1:-1:-1;;;51262:56:0;;;;;;;:::i;:::-;51343:7;;51333:6;:17;;51325:60;;;;-1:-1:-1;;;51325:60:0;;10597:2:1;51325:60:0;;;10579:21:1;10636:2;10616:18;;;10609:30;10675:32;10655:18;;;10648:60;10725:18;;51325:60:0;10395:354:1;51325:60:0;51419:8;;51400:15;51409:6;51400;:15;:::i;:::-;:27;;51392:64;;;;-1:-1:-1;;;51392:64:0;;10956:2:1;51392:64:0;;;10938:21:1;10995:2;10975:18;;;10968:30;11034:26;11014:18;;;11007:54;11078:18;;51392:64:0;10754:348:1;51392:64:0;51493:6;51484;;:15;;;;:::i;:::-;51471:9;:28;;51463:59;;;;-1:-1:-1;;;51463:59:0;;11482:2:1;51463:59:0;;;11464:21:1;11521:2;11501:18;;;11494:30;-1:-1:-1;;;11540:18:1;;;11533:48;11598:18;;51463:59:0;11280:342:1;51463:59:0;51533:31;12327:10;51557:6;51533:9;:31::i;:::-;50806:770;;50721:855;;;:::o;38316:94::-;38370:13;38399:5;38392:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38316:94;:::o;39841:204::-;39909:7;39933:16;39941:7;41723:4;41753:12;-1:-1:-1;41743:22:0;41666:105;39933:16;39925:74;;;;-1:-1:-1;;;39925:74:0;;12214:2:1;39925:74:0;;;12196:21:1;12253:2;12233:18;;;12226:30;12292:34;12272:18;;;12265:62;-1:-1:-1;;;12343:18:1;;;12336:43;12396:19;;39925:74:0;12012:409:1;39925:74:0;-1:-1:-1;40015:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40015:24:0;;39841:204::o;49102:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39404:379::-;39473:13;39489:24;39505:7;39489:15;:24::i;:::-;39473:40;;39534:5;-1:-1:-1;;;;;39528:11:0;:2;-1:-1:-1;;;;;39528:11:0;;;39520:58;;;;-1:-1:-1;;;39520:58:0;;12628:2:1;39520:58:0;;;12610:21:1;12667:2;12647:18;;;12640:30;12706:34;12686:18;;;12679:62;-1:-1:-1;;;12757:18:1;;;12750:32;12799:19;;39520:58:0;12426:398:1;39520:58:0;12327:10;-1:-1:-1;;;;;39603:21:0;;;;:62;;-1:-1:-1;39628:37:0;39645:5;12327:10;40446:186;:::i;39628:37::-;39587:153;;;;-1:-1:-1;;;39587:153:0;;13031:2:1;39587:153:0;;;13013:21:1;13070:2;13050:18;;;13043:30;13109:34;13089:18;;;13082:62;13180:27;13160:18;;;13153:55;13225:19;;39587:153:0;12829:421:1;39587:153:0;39749:28;39758:2;39762:7;39771:5;39749:8;:28::i;:::-;39466:317;39404:379;;:::o;53609:94::-;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;53675:9:::1;:22:::0;53609:94::o;35150:98::-;35203:7;35241:1;35226:12;;:16;;;;:::i;:::-;35219:23;;35150:98;:::o;53323:94::-;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;53389:10:::1;:22:::0;53323:94::o;40691:142::-;40799:28;40809:4;40815:2;40819:7;40799:9;:28::i;35782:744::-;35891:7;35926:16;35936:5;35926:9;:16::i;:::-;35918:5;:24;35910:71;;;;-1:-1:-1;;;35910:71:0;;13587:2:1;35910:71:0;;;13569:21:1;13626:2;13606:18;;;13599:30;13665:34;13645:18;;;13638:62;-1:-1:-1;;;13716:18:1;;;13709:32;13758:19;;35910:71:0;13385:398:1;35910:71:0;35988:22;36013:13;:11;:13::i;:::-;35988:38;;36033:19;36063:25;36113:9;36108:350;36132:14;36128:1;:18;36108:350;;;36162:31;36196:14;;;:11;:14;;;;;;;;;36162:48;;;;;;;;;-1:-1:-1;;;;;36162:48:0;;;;;-1:-1:-1;;;36162:48:0;;;;;;;;;;;;36223:28;36219:89;;36284:14;;;-1:-1:-1;36219:89:0;36341:5;-1:-1:-1;;;;;36320:26:0;:17;-1:-1:-1;;;;;36320:26:0;;36316:135;;;36378:5;36363:11;:20;36359:59;;;-1:-1:-1;36405:1:0;-1:-1:-1;36398:8:0;;-1:-1:-1;;;36398:8:0;36359:59;36428:13;;;;:::i;:::-;;;;36316:135;-1:-1:-1;36148:3:0;;;;:::i;:::-;;;;36108:350;;;-1:-1:-1;36464:56:0;;-1:-1:-1;;;36464:56:0;;14130:2:1;36464:56:0;;;14112:21:1;14169:2;14149:18;;;14142:30;14208:34;14188:18;;;14181:62;-1:-1:-1;;;14259:18:1;;;14252:44;14313:19;;36464:56:0;13928:410:1;54457:158:0;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;54528:58:::1;::::0;54510:12:::1;::::0;54536:10:::1;::::0;54560:21:::1;::::0;54510:12;54528:58;54510:12;54528:58;54560:21;54536:10;54528:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54509:77;;;54601:7;54593:16;;;::::0;::::1;;54502:113;54457:158::o:0;40896:157::-;41008:39;41025:4;41031:2;41035:7;41008:39;;;;;;;;;;;;:16;:39::i;51964:348::-;52039:16;52067:23;52093:17;52103:6;52093:9;:17::i;:::-;52067:43;;52117:25;52159:15;52145:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52145:30:0;;52117:58;;52187:9;52182:103;52202:15;52198:1;:19;52182:103;;;52247:30;52267:6;52275:1;52247:19;:30::i;:::-;52233:8;52242:1;52233:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;52219:3;;;;:::i;:::-;;;;52182:103;;;-1:-1:-1;52298:8:0;51964:348;-1:-1:-1;;;51964:348:0:o;53425:80::-;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;53484:4:::1;:15:::0;53425:80::o;53711:92::-;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;53776:8:::1;:21:::0;53711:92::o;35317:177::-;35384:7;35416:13;:11;:13::i;:::-;35408:5;:21;35400:69;;;;-1:-1:-1;;;35400:69:0;;14887:2:1;35400:69:0;;;14869:21:1;14926:2;14906:18;;;14899:30;14965:34;14945:18;;;14938:62;-1:-1:-1;;;15016:18:1;;;15009:33;15059:19;;35400:69:0;14685:399:1;35400:69:0;-1:-1:-1;35483:5:0;35317:177::o;53809:98::-;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;53880:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53809:98:::0;:::o;38139:118::-;38203:7;38226:20;38238:7;38226:11;:20::i;:::-;:25;;38139:118;-1:-1:-1;;38139:118:0:o;49034:21::-;;;;;;;:::i;37016:211::-;37080:7;-1:-1:-1;;;;;37104:19:0;;37096:75;;;;-1:-1:-1;;;37096:75:0;;15291:2:1;37096:75:0;;;15273:21:1;15330:2;15310:18;;;15303:30;15369:34;15349:18;;;15342:62;-1:-1:-1;;;15420:18:1;;;15413:41;15471:19;;37096:75:0;15089:407:1;37096:75:0;-1:-1:-1;;;;;;37193:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37193:27:0;;37016:211::o;14174:103::-;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;14239:30:::1;14266:1;14239:18;:30::i;:::-;14174:103::o:0;52913:106::-;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;52987:10:::1;:24:::0;52913:106::o;51645:305::-;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;51747:1:::1;51733:11;:15;51725:55;;;::::0;-1:-1:-1;;;51725:55:0;;15703:2:1;51725:55:0::1;::::0;::::1;15685:21:1::0;15742:2;15722:18;;;15715:30;15781:29;15761:18;;;15754:57;15828:18;;51725:55:0::1;15501:351:1::0;51725:55:0::1;51787:14;51804:13;:11;:13::i;:::-;51856:9;::::0;51787:30;;-1:-1:-1;51832:20:0::1;51841:11:::0;51787:30;51832:20:::1;:::i;:::-;:33;;51824:68;;;::::0;-1:-1:-1;;;51824:68:0;;16059:2:1;51824:68:0::1;::::0;::::1;16041:21:1::0;16098:2;16078:18;;;16071:30;-1:-1:-1;;;16117:18:1;;;16110:52;16179:18;;51824:68:0::1;15857:346:1::0;51824:68:0::1;51903:35;51913:11;51926;51903:9;:35::i;38471:98::-:0;38527:13;38556:7;38549:14;;;;;:::i;50042:671::-;50103:6;;;;50102:7;50094:49;;;;-1:-1:-1;;;50094:49:0;;8164:2:1;50094:49:0;;;8146:21:1;8203:2;8183:18;;;8176:30;8242:31;8222:18;;;8215:59;8291:18;;50094:49:0;7962:353:1;50094:49:0;50158:10;;;;;;;50150:52;;;;-1:-1:-1;;;50150:52:0;;16410:2:1;50150:52:0;;;16392:21:1;16449:2;16429:18;;;16422:30;16488:31;16468:18;;;16461:59;16537:18;;50150:52:0;16208:353:1;50150:52:0;50209:14;50226:13;:11;:13::i;:::-;50209:30;-1:-1:-1;50246:23:0;50272;12327:10;37016:211;:::i;50272:23::-;50246:49;;50319:1;50310:6;:10;50302:56;;;;-1:-1:-1;;;50302:56:0;;;;;;;:::i;:::-;50383:7;;50373:6;:17;;50365:67;;;;-1:-1:-1;;;50365:67:0;;16768:2:1;50365:67:0;;;16750:21:1;16807:2;16787:18;;;16780:30;16846:34;16826:18;;;16819:62;-1:-1:-1;;;16897:18:1;;;16890:35;16942:19;;50365:67:0;16566:401:1;50365:67:0;50466:9;;50447:15;50456:6;50447;:15;:::i;:::-;:28;;50439:57;;;;-1:-1:-1;;;50439:57:0;;17174:2:1;50439:57:0;;;17156:21:1;17213:2;17193:18;;;17186:30;-1:-1:-1;;;17232:18:1;;;17225:46;17288:18;;50439:57:0;16972:340:1;50439:57:0;50539:12;;50511:24;50529:6;50511:15;:24;:::i;:::-;:40;;50503:86;;;;-1:-1:-1;;;50503:86:0;;;;;;;:::i;:::-;50624:6;50617:4;;:13;;;;:::i;:::-;50604:9;:26;;50596:63;;;;-1:-1:-1;;;50596:63:0;;17519:2:1;50596:63:0;;;17501:21:1;17558:2;17538:18;;;17531:30;17597:26;17577:18;;;17570:54;17641:18;;50596:63:0;17317:348:1;50596:63:0;50670:31;12327:10;50694:6;50670:9;:31::i;40109:274::-;-1:-1:-1;;;;;40200:24:0;;12327:10;40200:24;;40192:63;;;;-1:-1:-1;;;40192:63:0;;17872:2:1;40192:63:0;;;17854:21:1;17911:2;17891:18;;;17884:30;17950:28;17930:18;;;17923:56;17996:18;;40192:63:0;17670:350:1;40192:63:0;12327:10;40264:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40264:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40264:53:0;;;;;;;;;;40329:48;;722:41:1;;;40264:42:0;;12327:10;40329:48;;695:18:1;40329:48:0;;;;;;;40109:274;;:::o;52838:65::-;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;52882:8:::1;:15:::0;;-1:-1:-1;;52882:15:0::1;;;::::0;;52838:65::o;41116:311::-;41253:28;41263:4;41269:2;41273:7;41253:9;:28::i;:::-;41304:48;41327:4;41333:2;41337:7;41346:5;41304:22;:48::i;:::-;41288:133;;;;-1:-1:-1;;;41288:133:0;;;;;;;:::i;:::-;41116:311;;;;:::o;53127:96::-;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;53194:14:::1;:23:::0;53127:96::o;49060:37::-;;;;;;;:::i;52318:498::-;52416:13;52457:16;52465:7;41723:4;41753:12;-1:-1:-1;41743:22:0;41666:105;52457:16;52441:98;;;;-1:-1:-1;;;52441:98:0;;18647:2:1;52441:98:0;;;18629:21:1;18686:2;18666:18;;;18659:30;18725:34;18705:18;;;18698:62;-1:-1:-1;;;18776:18:1;;;18769:46;18832:19;;52441:98:0;18445:412:1;52441:98:0;52555:8;;;;;;;52552:62;;52592:14;52585:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52318:498;;;:::o;52552:62::-;52622:28;52653:10;:8;:10::i;:::-;52622:41;;52708:1;52683:14;52677:28;:32;:133;;;;;;;;;;;;;;;;;52745:14;52761:18;:7;:16;:18::i;:::-;52781:13;52728:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52677:133;52670:140;52318:498;-1:-1:-1;;;52318:498:0:o;53229:86::-;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;53291:7:::1;:18:::0;53229:86::o;53913:122::-;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;53996:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;53027:92::-:0;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;53092:12:::1;:21:::0;53027:92::o;53513:88::-;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;53576:6:::1;:19:::0;53513:88::o;54043:120::-;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;54125:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;14432:201::-:0;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14521:22:0;::::1;14513:73;;;::::0;-1:-1:-1;;;14513:73:0;;20722:2:1;14513:73:0::1;::::0;::::1;20704:21:1::0;20761:2;20741:18;;;20734:30;20800:34;20780:18;;;20773:62;-1:-1:-1;;;20851:18:1;;;20844:36;20897:19;;14513:73:0::1;20520:402:1::0;14513:73:0::1;14597:28;14616:8;14597:18;:28::i;54350:96::-:0;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;54419:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;54419:19:0;;::::1;::::0;;;::::1;::::0;;54350:96::o;54252:90::-;13596:6;;-1:-1:-1;;;;;13596:6:0;12327:10;13743:23;13735:68;;;;-1:-1:-1;;;13735:68:0;;;;;;;:::i;:::-;54318:7:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;54318:16:0;;::::1;::::0;;;::::1;::::0;;54252:90::o;951:190::-;1076:4;1129;1100:25;1113:5;1120:4;1100:12;:25::i;:::-;:33;;951:190;-1:-1:-1;;;;951:190:0:o;41777:98::-;41842:27;41852:2;41856:8;41842:27;;;;;;;;;;;;:9;:27::i;45269:172::-;45366:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45366:29:0;-1:-1:-1;;;;;45366:29:0;;;;;;;;;45407:28;;45366:24;;45407:28;;;;;;;45269:172;;;:::o;43634:1529::-;43731:35;43769:20;43781:7;43769:11;:20::i;:::-;43840:18;;43731:58;;-1:-1:-1;43798:22:0;;-1:-1:-1;;;;;43824:34:0;12327:10;-1:-1:-1;;;;;43824:34:0;;:81;;;-1:-1:-1;12327:10:0;43869:20;43881:7;43869:11;:20::i;:::-;-1:-1:-1;;;;;43869:36:0;;43824:81;:142;;;-1:-1:-1;43933:18:0;;43916:50;;12327:10;40446:186;:::i;43916:50::-;43798:169;;43992:17;43976:101;;;;-1:-1:-1;;;43976:101:0;;21129:2:1;43976:101:0;;;21111:21:1;21168:2;21148:18;;;21141:30;21207:34;21187:18;;;21180:62;-1:-1:-1;;;21258:18:1;;;21251:48;21316:19;;43976:101:0;20927:414:1;43976:101:0;44124:4;-1:-1:-1;;;;;44102:26:0;:13;:18;;;-1:-1:-1;;;;;44102:26:0;;44086:98;;;;-1:-1:-1;;;44086:98:0;;21548:2:1;44086:98:0;;;21530:21:1;21587:2;21567:18;;;21560:30;21626:34;21606:18;;;21599:62;-1:-1:-1;;;21677:18:1;;;21670:36;21723:19;;44086:98:0;21346:402:1;44086:98:0;-1:-1:-1;;;;;44199:16:0;;44191:66;;;;-1:-1:-1;;;44191:66:0;;21955:2:1;44191:66:0;;;21937:21:1;21994:2;21974:18;;;21967:30;22033:34;22013:18;;;22006:62;-1:-1:-1;;;22084:18:1;;;22077:35;22129:19;;44191:66:0;21753:401:1;44191:66:0;44366:49;44383:1;44387:7;44396:13;:18;;;44366:8;:49::i;:::-;-1:-1:-1;;;;;44424:18:0;;;;;;:12;:18;;;;;:31;;44454:1;;44424:18;:31;;44454:1;;-1:-1:-1;;;;;44424:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;44424:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;44462:16:0;;-1:-1:-1;44462:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;44462:16:0;;:29;;-1:-1:-1;;44462:29:0;;:::i;:::-;;;-1:-1:-1;;;;;44462:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44521:43:0;;;;;;;;-1:-1:-1;;;;;44521:43:0;;;;;;44547:15;44521:43;;;;;;;;;-1:-1:-1;44498:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;44498:66:0;-1:-1:-1;;;;;;44498:66:0;;;;;;;;;;;44814:11;44510:7;-1:-1:-1;44814:11:0;:::i;:::-;44877:1;44836:24;;;:11;:24;;;;;:29;44792:33;;-1:-1:-1;;;;;;44836:29:0;44832:236;;44894:20;44902:11;41723:4;41753:12;-1:-1:-1;41743:22:0;41666:105;44894:20;44890:171;;;44954:97;;;;;;;;44981:18;;-1:-1:-1;;;;;44954:97:0;;;;;;45012:28;;;;44954:97;;;;;;;;;;-1:-1:-1;44927:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;44927:124:0;-1:-1:-1;;;;;;44927:124:0;;;;;;;;;;;;44890:171;45100:7;45096:2;-1:-1:-1;;;;;45081:27:0;45090:4;-1:-1:-1;;;;;45081:27:0;;;;;;;;;;;45115:42;43724:1439;;;43634:1529;;;:::o;37479:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;37596:16:0;37604:7;41723:4;41753:12;-1:-1:-1;41743:22:0;41666:105;37596:16;37588:71;;;;-1:-1:-1;;;37588:71:0;;22870:2:1;37588:71:0;;;22852:21:1;22909:2;22889:18;;;22882:30;22948:34;22928:18;;;22921:62;-1:-1:-1;;;22999:18:1;;;22992:40;23049:19;;37588:71:0;22668:406:1;37588:71:0;37668:26;37716:12;37705:7;:23;37701:93;;37760:22;37770:12;37760:7;:22;:::i;:::-;:26;;37785:1;37760:26;:::i;:::-;37739:47;;37701:93;37822:7;37802:212;37839:18;37831:4;:26;37802:212;;37876:31;37910:17;;;:11;:17;;;;;;;;;37876:51;;;;;;;;;-1:-1:-1;;;;;37876:51:0;;;;;-1:-1:-1;;;37876:51:0;;;;;;;;;;;;37940:28;37936:71;;37988:9;37479:606;-1:-1:-1;;;;37479:606:0:o;37936:71::-;-1:-1:-1;37859:6:0;;;;:::i;:::-;;;;37802:212;;;-1:-1:-1;38022:57:0;;-1:-1:-1;;;38022:57:0;;23422:2:1;38022:57:0;;;23404:21:1;23461:2;23441:18;;;23434:30;23500:34;23480:18;;;23473:62;-1:-1:-1;;;23551:18:1;;;23544:45;23606:19;;38022:57:0;23220:411:1;14793:191:0;14886:6;;;-1:-1:-1;;;;;14903:17:0;;;-1:-1:-1;;;;;;14903:17:0;;;;;;;14936:40;;14886:6;;;14903:17;14886:6;;14936:40;;14867:16;;14936:40;14856:128;14793:191;:::o;46980:690::-;47117:4;-1:-1:-1;;;;;47134:13:0;;16519:19;:23;47130:535;;47173:72;;-1:-1:-1;;;47173:72:0;;-1:-1:-1;;;;;47173:36:0;;;;;:72;;12327:10;;47224:4;;47230:7;;47239:5;;47173:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47173:72:0;;;;;;;;-1:-1:-1;;47173:72:0;;;;;;;;;;;;:::i;:::-;;;47160:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47404:13:0;;47400:215;;47437:61;;-1:-1:-1;;;47437:61:0;;;;;;;:::i;47400:215::-;47583:6;47577:13;47568:6;47564:2;47560:15;47553:38;47160:464;-1:-1:-1;;;;;;47295:55:0;-1:-1:-1;;;47295:55:0;;-1:-1:-1;47288:62:0;;47130:535;-1:-1:-1;47653:4:0;47130:535;46980:690;;;;;;:::o;49921:102::-;49981:13;50010:7;50003:14;;;;;:::i;9809:723::-;9865:13;10086:10;10082:53;;-1:-1:-1;;10113:10:0;;;;;;;;;;;;-1:-1:-1;;;10113:10:0;;;;;9809:723::o;10082:53::-;10160:5;10145:12;10201:78;10208:9;;10201:78;;10234:8;;;;:::i;:::-;;-1:-1:-1;10257:10:0;;-1:-1:-1;10265:2:0;10257:10;;:::i;:::-;;;10201:78;;;10289:19;10321:6;10311:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10311:17:0;;10289:39;;10339:154;10346:10;;10339:154;;10373:11;10383:1;10373:11;;:::i;:::-;;-1:-1:-1;10442:10:0;10450:2;10442:5;:10;:::i;:::-;10429:24;;:2;:24;:::i;:::-;10416:39;;10399:6;10406;10399:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10399:56:0;;;;;;;;-1:-1:-1;10470:11:0;10479:2;10470:11;;:::i;:::-;;;10339:154;;1503:675;1586:7;1629:4;1586:7;1644:497;1668:5;:12;1664:1;:16;1644:497;;;1702:20;1725:5;1731:1;1725:8;;;;;;;;:::i;:::-;;;;;;;1702:31;;1768:12;1752;:28;1748:382;;2254:13;2304:15;;;2340:4;2333:15;;;2387:4;2371:21;;1880:57;;1748:382;;;2254:13;2304:15;;;2340:4;2333:15;;;2387:4;2371:21;;2057:57;;1748:382;-1:-1:-1;1682:3:0;;;;:::i;:::-;;;;1644:497;;42130:1272;42235:20;42258:12;-1:-1:-1;;;;;42285:16:0;;42277:62;;;;-1:-1:-1;;;42277:62:0;;24960:2:1;42277:62:0;;;24942:21:1;24999:2;24979:18;;;24972:30;25038:34;25018:18;;;25011:62;-1:-1:-1;;;25089:18:1;;;25082:31;25130:19;;42277:62:0;24758:397:1;42277:62:0;42476:21;42484:12;41723:4;41753:12;-1:-1:-1;41743:22:0;41666:105;42476:21;42475:22;42467:64;;;;-1:-1:-1;;;42467:64:0;;25362:2:1;42467:64:0;;;25344:21:1;25401:2;25381:18;;;25374:30;25440:31;25420:18;;;25413:59;25489:18;;42467:64:0;25160:353:1;42467:64:0;42558:12;42546:8;:24;;42538:71;;;;-1:-1:-1;;;42538:71:0;;25720:2:1;42538:71:0;;;25702:21:1;25759:2;25739:18;;;25732:30;25798:34;25778:18;;;25771:62;-1:-1:-1;;;25849:18:1;;;25842:32;25891:19;;42538:71:0;25518:398:1;42538:71:0;-1:-1:-1;;;;;42721:16:0;;42688:30;42721:16;;;:12;:16;;;;;;;;;42688:49;;;;;;;;;-1:-1:-1;;;;;42688:49:0;;;;;-1:-1:-1;;;42688:49:0;;;;;;;;;;;42763:119;;;;;;;;42783:19;;42688:49;;42763:119;;;42783:39;;42813:8;;42783:39;:::i;:::-;-1:-1:-1;;;;;42763:119:0;;;;;42866:8;42831:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;42763:119:0;;;;;;-1:-1:-1;;;;;42744:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;42744:138:0;;;;;;;;;;;;42917:43;;;;;;;;;;;42943:15;42917:43;;;;;;;;42889:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;42889:71:0;-1:-1:-1;;;;;;42889:71:0;;;;;;;;;;;;;;;;;;42901:12;;43013:281;43037:8;43033:1;:12;43013:281;;;43066:38;;43091:12;;-1:-1:-1;;;;;43066:38:0;;;43083:1;;43066:38;;43083:1;;43066:38;43131:59;43162:1;43166:2;43170:12;43184:5;43131:22;:59::i;:::-;43113:150;;;;-1:-1:-1;;;43113:150:0;;;;;;;:::i;:::-;43272:14;;;;:::i;:::-;;;;43047:3;;;;;:::i;:::-;;;;43013:281;;;-1:-1:-1;43302:12:0;:27;;;43336:60;41116:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:160::-;839:20;;895:13;;888:21;878:32;;868:60;;924:1;921;914:12;868:60;774:160;;;:::o;939:180::-;995:6;1048:2;1036:9;1027:7;1023:23;1019:32;1016:52;;;1064:1;1061;1054:12;1016:52;1087:26;1103:9;1087:26;:::i;1124:683::-;1219:6;1227;1235;1288:2;1276:9;1267:7;1263:23;1259:32;1256:52;;;1304:1;1301;1294:12;1256:52;1340:9;1327:23;1317:33;;1401:2;1390:9;1386:18;1373:32;1424:18;1465:2;1457:6;1454:14;1451:34;;;1481:1;1478;1471:12;1451:34;1519:6;1508:9;1504:22;1494:32;;1564:7;1557:4;1553:2;1549:13;1545:27;1535:55;;1586:1;1583;1576:12;1535:55;1626:2;1613:16;1652:2;1644:6;1641:14;1638:34;;;1668:1;1665;1658:12;1638:34;1721:7;1716:2;1706:6;1703:1;1699:14;1695:2;1691:23;1687:32;1684:45;1681:65;;;1742:1;1739;1732:12;1681:65;1773:2;1769;1765:11;1755:21;;1795:6;1785:16;;;;;1124:683;;;;;:::o;1812:258::-;1884:1;1894:113;1908:6;1905:1;1902:13;1894:113;;;1984:11;;;1978:18;1965:11;;;1958:39;1930:2;1923:10;1894:113;;;2025:6;2022:1;2019:13;2016:48;;;-1:-1:-1;;2060:1:1;2042:16;;2035:27;1812:258::o;2075:::-;2117:3;2155:5;2149:12;2182:6;2177:3;2170:19;2198:63;2254:6;2247:4;2242:3;2238:14;2231:4;2224:5;2220:16;2198:63;:::i;:::-;2315:2;2294:15;-1:-1:-1;;2290:29:1;2281:39;;;;2322:4;2277:50;;2075:258;-1:-1:-1;;2075:258:1:o;2338:220::-;2487:2;2476:9;2469:21;2450:4;2507:45;2548:2;2537:9;2533:18;2525:6;2507:45;:::i;2563:180::-;2622:6;2675:2;2663:9;2654:7;2650:23;2646:32;2643:52;;;2691:1;2688;2681:12;2643:52;-1:-1:-1;2714:23:1;;2563:180;-1:-1:-1;2563:180:1:o;2956:173::-;3024:20;;-1:-1:-1;;;;;3073:31:1;;3063:42;;3053:70;;3119:1;3116;3109:12;3134:254;3202:6;3210;3263:2;3251:9;3242:7;3238:23;3234:32;3231:52;;;3279:1;3276;3269:12;3231:52;3302:29;3321:9;3302:29;:::i;:::-;3292:39;3378:2;3363:18;;;;3350:32;;-1:-1:-1;;;3134:254:1:o;3393:328::-;3470:6;3478;3486;3539:2;3527:9;3518:7;3514:23;3510:32;3507:52;;;3555:1;3552;3545:12;3507:52;3578:29;3597:9;3578:29;:::i;:::-;3568:39;;3626:38;3660:2;3649:9;3645:18;3626:38;:::i;:::-;3616:48;;3711:2;3700:9;3696:18;3683:32;3673:42;;3393:328;;;;;:::o;3908:186::-;3967:6;4020:2;4008:9;3999:7;3995:23;3991:32;3988:52;;;4036:1;4033;4026:12;3988:52;4059:29;4078:9;4059:29;:::i;4099:632::-;4270:2;4322:21;;;4392:13;;4295:18;;;4414:22;;;4241:4;;4270:2;4493:15;;;;4467:2;4452:18;;;4241:4;4536:169;4550:6;4547:1;4544:13;4536:169;;;4611:13;;4599:26;;4680:15;;;;4645:12;;;;4572:1;4565:9;4536:169;;;-1:-1:-1;4722:3:1;;4099:632;-1:-1:-1;;;;;;4099:632:1:o;4736:127::-;4797:10;4792:3;4788:20;4785:1;4778:31;4828:4;4825:1;4818:15;4852:4;4849:1;4842:15;4868:632;4933:5;4963:18;5004:2;4996:6;4993:14;4990:40;;;5010:18;;:::i;:::-;5085:2;5079:9;5053:2;5139:15;;-1:-1:-1;;5135:24:1;;;5161:2;5131:33;5127:42;5115:55;;;5185:18;;;5205:22;;;5182:46;5179:72;;;5231:18;;:::i;:::-;5271:10;5267:2;5260:22;5300:6;5291:15;;5330:6;5322;5315:22;5370:3;5361:6;5356:3;5352:16;5349:25;5346:45;;;5387:1;5384;5377:12;5346:45;5437:6;5432:3;5425:4;5417:6;5413:17;5400:44;5492:1;5485:4;5476:6;5468;5464:19;5460:30;5453:41;;;;4868:632;;;;;:::o;5505:451::-;5574:6;5627:2;5615:9;5606:7;5602:23;5598:32;5595:52;;;5643:1;5640;5633:12;5595:52;5683:9;5670:23;5716:18;5708:6;5705:30;5702:50;;;5748:1;5745;5738:12;5702:50;5771:22;;5824:4;5816:13;;5812:27;-1:-1:-1;5802:55:1;;5853:1;5850;5843:12;5802:55;5876:74;5942:7;5937:2;5924:16;5919:2;5915;5911:11;5876:74;:::i;6146:254::-;6214:6;6222;6275:2;6263:9;6254:7;6250:23;6246:32;6243:52;;;6291:1;6288;6281:12;6243:52;6327:9;6314:23;6304:33;;6356:38;6390:2;6379:9;6375:18;6356:38;:::i;:::-;6346:48;;6146:254;;;;;:::o;6405:::-;6470:6;6478;6531:2;6519:9;6510:7;6506:23;6502:32;6499:52;;;6547:1;6544;6537:12;6499:52;6570:29;6589:9;6570:29;:::i;:::-;6560:39;;6618:35;6649:2;6638:9;6634:18;6618:35;:::i;6664:667::-;6759:6;6767;6775;6783;6836:3;6824:9;6815:7;6811:23;6807:33;6804:53;;;6853:1;6850;6843:12;6804:53;6876:29;6895:9;6876:29;:::i;:::-;6866:39;;6924:38;6958:2;6947:9;6943:18;6924:38;:::i;:::-;6914:48;;7009:2;6998:9;6994:18;6981:32;6971:42;;7064:2;7053:9;7049:18;7036:32;7091:18;7083:6;7080:30;7077:50;;;7123:1;7120;7113:12;7077:50;7146:22;;7199:4;7191:13;;7187:27;-1:-1:-1;7177:55:1;;7228:1;7225;7218:12;7177:55;7251:74;7317:7;7312:2;7299:16;7294:2;7290;7286:11;7251:74;:::i;:::-;7241:84;;;6664:667;;;;;;;:::o;7336:260::-;7404:6;7412;7465:2;7453:9;7444:7;7440:23;7436:32;7433:52;;;7481:1;7478;7471:12;7433:52;7504:29;7523:9;7504:29;:::i;:::-;7494:39;;7552:38;7586:2;7575:9;7571:18;7552:38;:::i;7601:356::-;7803:2;7785:21;;;7822:18;;;7815:30;7881:34;7876:2;7861:18;;7854:62;7948:2;7933:18;;7601:356::o;9326:127::-;9387:10;9382:3;9378:20;9375:1;9368:31;9418:4;9415:1;9408:15;9442:4;9439:1;9432:15;9458:128;9498:3;9529:1;9525:6;9522:1;9519:13;9516:39;;;9535:18;;:::i;:::-;-1:-1:-1;9571:9:1;;9458:128::o;9591:397::-;9793:2;9775:21;;;9832:2;9812:18;;;9805:30;9871:34;9866:2;9851:18;;9844:62;-1:-1:-1;;;9937:2:1;9922:18;;9915:31;9978:3;9963:19;;9591:397::o;9993:::-;10195:2;10177:21;;;10234:2;10214:18;;;10207:30;10273:34;10268:2;10253:18;;10246:62;-1:-1:-1;;;10339:2:1;10324:18;;10317:31;10380:3;10365:19;;9993:397::o;11107:168::-;11147:7;11213:1;11209;11205:6;11201:14;11198:1;11195:21;11190:1;11183:9;11176:17;11172:45;11169:71;;;11220:18;;:::i;:::-;-1:-1:-1;11260:9:1;;11107:168::o;11627:380::-;11706:1;11702:12;;;;11749;;;11770:61;;11824:4;11816:6;11812:17;11802:27;;11770:61;11877:2;11869:6;11866:14;11846:18;11843:38;11840:161;;;11923:10;11918:3;11914:20;11911:1;11904:31;11958:4;11955:1;11948:15;11986:4;11983:1;11976:15;11840:161;;11627:380;;;:::o;13255:125::-;13295:4;13323:1;13320;13317:8;13314:34;;;13328:18;;:::i;:::-;-1:-1:-1;13365:9:1;;13255:125::o;13788:135::-;13827:3;-1:-1:-1;;13848:17:1;;13845:43;;;13868:18;;:::i;:::-;-1:-1:-1;13915:1:1;13904:13;;13788:135::o;14553:127::-;14614:10;14609:3;14605:20;14602:1;14595:31;14645:4;14642:1;14635:15;14669:4;14666:1;14659:15;18025:415;18227:2;18209:21;;;18266:2;18246:18;;;18239:30;18305:34;18300:2;18285:18;;18278:62;-1:-1:-1;;;18371:2:1;18356:18;;18349:49;18430:3;18415:19;;18025:415::o;18988:1527::-;19212:3;19250:6;19244:13;19276:4;19289:51;19333:6;19328:3;19323:2;19315:6;19311:15;19289:51;:::i;:::-;19403:13;;19362:16;;;;19425:55;19403:13;19362:16;19447:15;;;19425:55;:::i;:::-;19569:13;;19502:20;;;19542:1;;19629;19651:18;;;;19704;;;;19731:93;;19809:4;19799:8;19795:19;19783:31;;19731:93;19872:2;19862:8;19859:16;19839:18;19836:40;19833:167;;;-1:-1:-1;;;19899:33:1;;19955:4;19952:1;19945:15;19985:4;19906:3;19973:17;19833:167;20016:18;20043:110;;;;20167:1;20162:328;;;;20009:481;;20043:110;-1:-1:-1;;20078:24:1;;20064:39;;20123:20;;;;-1:-1:-1;20043:110:1;;20162:328;18935:1;18928:14;;;18972:4;18959:18;;20257:1;20271:169;20285:8;20282:1;20279:15;20271:169;;;20367:14;;20352:13;;;20345:37;20410:16;;;;20302:10;;20271:169;;;20275:3;;20471:8;20464:5;20460:20;20453:27;;20009:481;-1:-1:-1;20506:3:1;;18988:1527;-1:-1:-1;;;;;;;;;;;18988:1527:1:o;22159:246::-;22199:4;-1:-1:-1;;;;;22312:10:1;;;;22282;;22334:12;;;22331:38;;;22349:18;;:::i;:::-;22386:13;;22159:246;-1:-1:-1;;;22159:246:1:o;22410:253::-;22450:3;-1:-1:-1;;;;;22539:2:1;22536:1;22532:10;22569:2;22566:1;22562:10;22600:3;22596:2;22592:12;22587:3;22584:21;22581:47;;;22608:18;;:::i;:::-;22644:13;;22410:253;-1:-1:-1;;;;22410:253:1:o;23079:136::-;23118:3;23146:5;23136:39;;23155:18;;:::i;:::-;-1:-1:-1;;;23191:18:1;;23079:136::o;23636:489::-;-1:-1:-1;;;;;23905:15:1;;;23887:34;;23957:15;;23952:2;23937:18;;23930:43;24004:2;23989:18;;23982:34;;;24052:3;24047:2;24032:18;;24025:31;;;23830:4;;24073:46;;24099:19;;24091:6;24073:46;:::i;:::-;24065:54;23636:489;-1:-1:-1;;;;;;23636:489:1:o;24130:249::-;24199:6;24252:2;24240:9;24231:7;24227:23;24223:32;24220:52;;;24268:1;24265;24258:12;24220:52;24300:9;24294:16;24319:30;24343:5;24319:30;:::i;24384:127::-;24445:10;24440:3;24436:20;24433:1;24426:31;24476:4;24473:1;24466:15;24500:4;24497:1;24490:15;24516:120;24556:1;24582;24572:35;;24587:18;;:::i;:::-;-1:-1:-1;24621:9:1;;24516:120::o;24641:112::-;24673:1;24699;24689:35;;24704:18;;:::i;:::-;-1:-1:-1;24738:9:1;;24641:112::o

Swarm Source

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