ETH Price: $2,753.07 (-0.67%)

Token

WeSeeGhosts Genesis Collection (GHOST)
 

Overview

Max Total Supply

173 GHOST

Holders

92

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GHOST
0x27017e401a67ba3a92cad5ee8f4b3621d6bdfd75
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:
WeSeeGhosts

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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 subtraction 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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/interfaces/ILayerZeroUserApplicationConfig.sol



pragma solidity >=0.5.0;

interface ILayerZeroUserApplicationConfig {
    // @notice set the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _configType - type of configuration. every messaging library has its own convention.
    // @param _config - configuration in the bytes. can encode arbitrary content.
    function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external;

    // @notice set the send() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setSendVersion(uint16 _version) external;

    // @notice set the lzReceive() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setReceiveVersion(uint16 _version) external;

    // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload
    // @param _srcChainId - the chainId of the source chain
    // @param _srcAddress - the contract address of the source contract at the source chain
    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external;
}


// File: contracts/interfaces/ILayerZeroEndpoint.sol



pragma solidity >=0.5.0;


interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig {
    // @notice send a LayerZero message to the specified address at a LayerZero endpoint.
    // @param _dstChainId - the destination chain identifier
    // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains
    // @param _payload - a custom bytes payload to send to the destination contract
    // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address
    // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction
    // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination
    function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable;

    // @notice used by the messaging library to publish verified payload
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source contract (as bytes) at the source chain
    // @param _dstAddress - the address on destination chain
    // @param _nonce - the unbound message ordering nonce
    // @param _gasLimit - the gas limit for external contract execution
    // @param _payload - verified payload to send to the destination contract
    function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external;

    // @notice get the inboundNonce of a receiver from a source chain which could be EVM or non-EVM chain
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64);

    // @notice get the outboundNonce from this source chain which, consequently, is always an EVM
    // @param _srcAddress - the source chain contract address
    function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64);

    // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery
    // @param _dstChainId - the destination chain identifier
    // @param _userApplication - the user app address on this EVM chain
    // @param _payload - the custom message to send over LayerZero
    // @param _payInZRO - if false, user app pays the protocol fee in native token
    // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain
    function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee);

    // @notice get this Endpoint's immutable source identifier
    function getChainId() external view returns (uint16);

    // @notice the interface to retry failed message on this Endpoint destination
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    // @param _payload - the payload to be retried
    function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external;

    // @notice query if any STORED payload (message blocking) at the endpoint.
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool);

    // @notice query if the _libraryAddress is valid for sending msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getSendLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the _libraryAddress is valid for receiving msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getReceiveLibraryAddress(address _userApplication) external view returns (address);

    // @notice query if the non-reentrancy guard for send() is on
    // @return true if the guard is on. false otherwise
    function isSendingPayload() external view returns (bool);

    // @notice query if the non-reentrancy guard for receive() is on
    // @return true if the guard is on. false otherwise
    function isReceivingPayload() external view returns (bool);

    // @notice get the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _userApplication - the contract address of the user application
    // @param _configType - type of configuration. every messaging library has its own convention.
    function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory);

    // @notice get the send() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getSendVersion(address _userApplication) external view returns (uint16);

    // @notice get the lzReceive() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getReceiveVersion(address _userApplication) external view returns (uint16);
}


// File: contracts/interfaces/ILayerZeroReceiver.sol



pragma solidity >=0.5.0;

interface ILayerZeroReceiver {
    // @notice LayerZero endpoint will invoke this function to deliver the message on the destination
    // @param _srcChainId - the source endpoint identifier
    // @param _srcAddress - the source sending contract address from the source chain
    // @param _nonce - the ordered message nonce
    // @param _payload - the signed payload is the UA bytes has encoded to be sent
    function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external;
}


// File: contracts/NonblockingReceiver.sol


pragma solidity ^0.8.6;




abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {

    ILayerZeroEndpoint internal endpoint;

    struct FailedMessages {
        uint payloadLength;
        bytes32 payloadHash;
    }

    mapping(uint16 => mapping(bytes => mapping(uint => FailedMessages))) public failedMessages;
    mapping(uint16 => bytes) public trustedRemoteLookup;

    event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload);

    function lzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) external override {
        require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security
        require(_srcAddress.length == trustedRemoteLookup[_srcChainId].length && keccak256(_srcAddress) == keccak256(trustedRemoteLookup[_srcChainId]), 
            "NonblockingReceiver: invalid source sending contract");

        // try-catch all errors/exceptions
        // having failed messages does not block messages passing
        try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) {
            // do nothing
        } catch {
            // error / exception
            failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages(_payload.length, keccak256(_payload));
            emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload);
        }
    }

    function onLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) public {
        // only internal transaction
        require(msg.sender == address(this), "NonblockingReceiver: caller must be Bridge.");

        // handle incoming message
        _LzReceive( _srcChainId, _srcAddress, _nonce, _payload);
    }

    // abstract function
    function _LzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) virtual internal;

    function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _txParam) internal {
        endpoint.send{value: msg.value}(_dstChainId, trustedRemoteLookup[_dstChainId], _payload, _refundAddress, _zroPaymentAddress, _txParam);
    }

    function retryMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes calldata _payload) external payable {
        // assert there is message to retry
        FailedMessages storage failedMsg = failedMessages[_srcChainId][_srcAddress][_nonce];
        require(failedMsg.payloadHash != bytes32(0), "NonblockingReceiver: no stored message");
        require(_payload.length == failedMsg.payloadLength && keccak256(_payload) == failedMsg.payloadHash, "LayerZero: invalid payload");
        // clear the stored message
        failedMsg.payloadLength = 0;
        failedMsg.payloadHash = bytes32(0);
        // execute the message. revert if it fails again
        this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    function setTrustedRemote(uint16 _chainId, bytes calldata _trustedRemote) external onlyOwner {
        trustedRemoteLookup[_chainId] = _trustedRemote;
    }
}


// File: contracts/WeSeeGhosts.sol


pragma solidity ^0.8.0;


// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&              .,*&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&                  .*,*&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&#,,,,*,     &&&&&&&&&&&
// &&&&&&&&&&&&&&##*                    /&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&,,,,,,,               *%&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&##*       (########&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&%,,               *###.    (&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&(       %&&&&&&&&&&&&&&&&&&&&,         .,/&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&%,        (###&&&&&&.    %&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&(       &&&&&&&&&&&&&&&&&&&&&&%##          %&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&*        %&&&&&&&&&.  .#&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&(       (&&&&&&&&&&&&&&&&&&&&&&&.     #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&*        %&&&&&&&&&  ,%&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&%       (&&&&&&&&&&&&&&&&&&&&&&&.     #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&*        %&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&%       #&&&&&&&&&&&&&&&&&&&&&&&.     #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(.,,,./&&&&&&&&&&&&&(.,,,,,,,,     /&&&&*        %&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&%        *&&&&&&&&&&&&&&&&&&&&&&.     #&&&&&#.,,,,,,,,,,,,.(&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&,         .&&&&&&&&&#       ,%##&&&&&&&&&*         %&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&%        *&&&&&&&&&&&&&&&&&&&&&&.     #&&&%.      .%#######%&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(    *&&&&&/    /&&&&&&&&*     *&&&&&&&&&&&&.         .,,,,     %&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&.      /&&&&&&&&&&&&&&&&&&&&&&.     #&&&&&/     ,&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&,     %&&&&&&&&   ,&&&&&&&&/     *&&&&&&&&&&&&.              (%###&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&.       .&&&&&&&&&&&&*/&&&&&&&.     #&&&&&&(     ,&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&%      #&&&&&&&%   ,&&&&&&&.       ..&&&&&&&&&&.         (%%&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&.        ,&&&&&&&&%.    ,&&&&&.     #&&&&&&#      ......#&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&%.    %&&&&&&&&&&%%&&&&&&&.           ,&&&&&&&.         %&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&%,        %&&&&&/          (&.      #&&&&&&#            #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/    /&&&&&&&&&&&&&&&&&.     (&&&&&&&&&&&&&.         %&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&*        &&&%.                     #&&&&&&#      &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&%.   .%&&&&&&&&&&&&&&.     (&&&&&&&&&&&&&.         %&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&*         ..        #(             #&&&&&&#      &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/    /&&&&&&&&&&&&.     (&&&&&&&&&&&&&.       .%&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&*                  %&&#            #&&&&&&#      &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&%  (&&&&&&&%.   .%&&&&&&&%      %&&&&&&&&&&&&&&.       .&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&/               .&&&&&&%,        #&&&&&&&&&      #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&%   ,&&&&&&&&/    /&&&&&&%      %&&&&&&&&&&&&%         .&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&(              *&&&&&&&&&/       &&&&&&&&&&      #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&%   ,&&&&&&&&*    (&&&&&&&       #&&&&&&&&&&&%         .&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&(             (&&&&&&&&&&&(      &&&&&&&&&&       (&&&&&&&&&&&&&&&&&&&&%.. (&&&&&&&&&&&%    ,&&&&&&*     /&&&&/                  %&&%         .&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&(            %&&&&&&&&&&&&&%     &&&&&&&(                  #&&&&&&&&&*       ,&&&&&&&&&&%.     #%      %&&&&&&&&&&&&&&&&&&&&&&&&&&&&&          ...        #%&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&#         .&&&&&&&&&&&&&&&&&,   &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&           %&&&&&&&&&&&(        *&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/        #&%%%%%&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&%        *&&&&&&&&&&&&&&&&&&&&%%&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&#             /&&&&&&&&&&&&&.   %&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&%       (&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/               ,&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&%      %&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&*   %&*     .&&.  .&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&%  *&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&* .  %&&&&, ,&&&&#   /&&&&/  &&&&&. . .&&&&&&&&&&&&&&&&&&&&&&&&%. .... (&&&&&&&&&&&&&&&(.&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&#              ,&&&&#   /&&&&/              (&&&&&&&&&&&&&&&&&&&&&&       (&&&&&&&&&&&&&&&( &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&#              ,&&&&#   /&&&&/              /&&&&&&&&&&&&&&&&&&&&(       %&&&&&&&&&&&&&&&* .&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&              .&&/     *&&,              #&&&&&&&&&&&#     .&&&#       %&&&&&&&&&&&&&&,  .&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&%    ,&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&*               ,&&&*               ,&&&&&&&&&&&&&&&&&&&&%              .&&&&&&&&&%    .&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&.          #&&&&&&&&&&&&&&* ,&&&&&&&&&%  #&#             /&&&&&#             /&&&&&&&&,     (&&&&&&&&&&(       #&&%     &&&&%    .&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(     .&&&/     ,&&&&&&&&&%    ,&&&&&&&*    #&&&            /&&&&&#            #&&&&&&#          .&&&&&&&&(       %&&&&&&&&&&&(     .&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&.     (&&&&&&&&.    &&&&&&*      ,&&&&#       #&&&&,          /&&&&&#           %&&&&&,    #&&&&&*    (&&&&&(       %&&&&&&&&&&*      .&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(       %&&&&&&&&&.     #&&&&&/     ,&&&&&%      #&&&&,          /&&&&&#           &&&#     .&&&&&&&&#    ,&&&&(       %&&&&&&&%            (&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&,        %&&&&&&&&&      #&&&&&/     ,&&&&&&      #&&&&&/         /&&&&&#         ,&&&&#     .&&&&&&&&(    ,&&&&(       %&&&&&*    (&&&&&&%    .&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&*        %&&&&&&&&&&&/   #&&&&&/     ,&&&&&&      #&&&&&/                         ,&&&&&%    .&&&&&&&&&&&&*,&&&&(       %&&&&.    %&&&&&&&&&.    %&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&*        %&&# %&&&&&&&&& (&&&&&/     ,&&&&&&      #&&&&&&#                       /&&&&&&&&&*    (&&&&&&&&&&&&&&*      .&&&&&&.    %&&&&&&&&&.    %&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&*        %&&#  #&&&&&&&&&&&&&&&&#      &&&&&&,     /&&&&&#                       /&&&&&&&&&&&%    .&&&&&&&&&&&&*      .&&&&%      %&&&&&&&&&&*   %&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&,        %&&#             /&&&&&#      &&&&&       /&&&&&#                       /&&&&&&&&&&&&&&*    (&&&&&&&&&*      .&&&&%      %&&&&&&&&&&&&% %&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(        #&&&.            ,&&&&#      &&/         /&&&&&#                       /&&&&/ .&&&&&&&&&%    .&&&&&&&*      .&&&&&&.      *&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(        #&&&&&&&&&&/     ,&&&&#                  /&&&&&&&                     #&&&&&/    /&&&&&&&&&*    (&&&&*      .&&&&&&&&(       %&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(        #&&&&&&&&&&/     ,&&&&#         ,&&,     /&&&&&&&                     #&&&&&/    /&&&&&&&&&*    (&&&&*      .&&&&&&&&&&&.      *&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(        (&&&&&&&&&&/     ,&&&&#       #&&&&,     /&&&&&&&                     #&&&&&*    /&&&&&&&&.    %&&&&.      *&&&&&&&&&&&&&&(       %&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(        #&&&&&&&&&&/     ,&&&&&&      #&&&&&/     ,&&&&&&                     #&&&&&&#     .&&&(     .&&&&&&.      *&&&*,&&&&&&&&&&&&.      *&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(        #&&&&&&&&&&/     ,&&&&&&      #&&&&&/     ,&&&&&&                     #&&&&&&&&&,          (&&&&&&&&.      *&&&*   %&&&&&&&&&&*      .&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&%        *&&&&&&&&&&#      &&&&&        ,&&&/     ,&&&&&&                     #&&&&&&&&&&&#     .&&&&&&&&&&&&&&&&&&&&&&*    (&&&&&&&&&&(     .&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&%        *&&&&&&&&&&#      &&&&&        ,&&&/       &&&&&                     #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&*    (&&&&&&&&&&(     .&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&%        *&&&&&&&&&&#      &&&#    ,&&&&&&&&/       %&&&&&,                  &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&*    (&&&&&&&&&&(     .&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&%        *&&&&&&&&&&#      &&&&&&&&&&&&&&&&&&&&&&/    /&&&,                 .&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&*    (&&&&&&&&&*     *&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&.      *&&&&&&&&&&#      &&&&&&&&&&&&&&&&&&&&&&&&&&&/ .&&/               ,&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&*    (&&&&&&&&&*     *&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(       %&&&&&&/     ,&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&#             /&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&*     ,&&&&&&&.      *&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&.               #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&           %&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&      #&(       %&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(          ,&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&,       .&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/          *&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&.       ,&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/     ,&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&%      %&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(     ,&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&#    *&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&%    ,&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&.  ,&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/    (&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(    *&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(,&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&.   &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(  %&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&.     (&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&* ,&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&#   (&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&**&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
// &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&




contract WeSeeGhosts is ERC721Enumerable, Ownable, NonblockingReceiver  {
    using SafeMath for uint256;
    using SafeMath for uint128;
    using SafeMath for uint16;
    using Address for address;
    using Strings for uint256;

    event PresaleMint(address minter, uint256 numberOfGhosts, uint256 etherAmount, uint256 blockNumber);
    event SaleMint(address minter, uint256 numberOfGhosts, uint256 etherAmount, uint256 blockNumber);
    event DevMint(address recipient, uint256 numberOfGhosts);

    struct Coupon {
        bytes32 r;
        bytes32 s;
        uint8 v;
    }

    enum CouponType {
        FREE,
        REDUCED,
        WHITELIST,
        CLAIM,
        INVALID
    }

    uint128 public constant GHOST_PRICE = .08 ether;
    uint128 public constant DISCOUNT_GHOST_PRICE = .066 ether;
    uint16 public constant MAX_GHOSTS = 444;
    uint16 public constant MAX_DEV_GHOSTS = 45;
    uint16 public constant MAX_PURCHASABLE_GHOSTS = 4;
    uint16 public nextTokenId = 1;
    uint gasForDestinationLzReceive = 350000;
    uint16 public totalDevGhosts;
    bool private saleIsActive;
    bool private presaleIsActive; 
    address payable public treasury;
    address wsgSigner;
    string private _baseURIExtended;

    address public _owner;

    mapping(address => uint16) public purchased;

    constructor(string memory baseURI_, address _layerZeroEndpoint) ERC721('WeSeeGhosts Genesis Collection', 'GHOST') {
        _owner = msg.sender;
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        _baseURIExtended = baseURI_;
    }

    function flipSaleState() public onlyOwner {
        require(!presaleIsActive, "WeSeeGhosts: Sale and Presale cannot be active at the same time");
        
        saleIsActive = !saleIsActive;
    }

    function flipPresaleState() public onlyOwner {
        require(!saleIsActive, "WeSeeGhosts: Presale and Sale cannot be active at the same time");
        require(wsgSigner != address(0), "WeSeeGhosts: Signer has not been set");
        presaleIsActive = !presaleIsActive;
    }

    function setWSGSigner(address _wsgSigner) external onlyOwner {
        require(_wsgSigner != address(0), "WeSeeGhosts: Must use valid address for WeSeeGhosts game signer");
        
        wsgSigner = _wsgSigner;
    }

    // Sets base URI for all tokens, only able to be called by contract owner
    function updateBaseUri(string memory newBaseURI) external onlyOwner {
        _baseURIExtended = newBaseURI;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIExtended;
    }
    
    function setTreasury(address payable _treasury) external onlyOwner {
        treasury = _treasury;
    }

    // Non Presale Regular Mint
    function mint(uint256 numberOfGhosts) public payable {
        uint16 _nextTokenId = nextTokenId;
        uint256 totalCost;

        require(treasury != address(0), "WeSeeGhosts: Treasury has not been set");
        require(numberOfGhosts > 0, "WeSeeGhosts: Number of Ghosts can not be less than or equal to 0");
        require(saleIsActive, "WeSeeGhosts: Can only mint during public sale");
        require(_nextTokenId.add(numberOfGhosts-1) < MAX_GHOSTS, "WeSeeGhosts: Purchase would exceed max supply");
        require((numberOfGhosts-1) < MAX_PURCHASABLE_GHOSTS, "WeSeeGhosts: Number of Ghosts requested exceeds max number of Ghosts per address");
        require(purchased[msg.sender].add(numberOfGhosts-1) < MAX_PURCHASABLE_GHOSTS, 'WeSeeGhosts: Purchase would exceed max Ghosts purchasable per address');
        
        totalCost = GHOST_PRICE.mul(numberOfGhosts);
        
        require(msg.value == totalCost, "WeSeeGhosts: Sent ether value is incorrect");
        purchased[msg.sender] = uint16(purchased[msg.sender].add(numberOfGhosts));
        treasury.transfer(msg.value);

        for (uint i = 0; i < numberOfGhosts; i++) {
            _safeMint(msg.sender, _nextTokenId.add(i));
        }

        nextTokenId = uint16(_nextTokenId.add(numberOfGhosts));
        
        emit SaleMint(msg.sender, numberOfGhosts, msg.value, block.number);
    }

     // Presale and Discounted Mint
    function mintCoupon(uint256 numberOfGhosts,
        Coupon memory discountCoupon, 
        Coupon memory whitelistCoupon,
        uint _type
        ) public payable {
        uint16 _nextTokenId = nextTokenId;
        uint256 totalCost;

        require(treasury != address(0), "WeSeeGhosts: Treasury has not been set");
        require(numberOfGhosts > 0, "WeSeeGhosts: Number of Ghosts can not be less than or equal to 0");
        require(presaleIsActive || saleIsActive, "WeSeeGhosts: Can only mint during an active sale");
        require(_nextTokenId.add(numberOfGhosts-1) < MAX_GHOSTS, "WeSeeGhosts: Purchase would exceed max supply");
        require((numberOfGhosts-1) < MAX_PURCHASABLE_GHOSTS, "WeSeeGhosts: Number of Ghosts requested exceeds max number of Ghosts per address");
        require(purchased[msg.sender].add(numberOfGhosts-1) < MAX_PURCHASABLE_GHOSTS, 'WeSeeGhosts: Purchase would exceed max Ghosts purchasable per address');
        require((_type == 0) || (_type == 1) || (_type == 2), "WeSeeGhosts: CouponType not accepted");
        require(wsgSigner != address(0), "WeSeeGhosts: Signer has not been set");

        // validate whitelist
        if (presaleIsActive) {            
            bool isWhitelisted = _isValidCoupon(whitelistCoupon, msg.sender, 2);
            require(isWhitelisted, "WeSeeGhosts: The wallet address is not whitelisted");
        } 
        
        bool isValid = _isValidCoupon(discountCoupon, msg.sender, _type);        
        require(isValid, "WeSeeGhosts: This is not a valid coupon");

        if(_type == uint(CouponType.FREE)){
            uint256 freeQty = 1;
            // if user attempts to reuse a free coupon set, act as a reucedCoupon
            if (purchased[msg.sender] != 0)
                freeQty = 0;
            totalCost = DISCOUNT_GHOST_PRICE.mul(numberOfGhosts - freeQty);
        } else if(_type == uint(CouponType.REDUCED)){
            totalCost = DISCOUNT_GHOST_PRICE.mul(numberOfGhosts);
        } else {
            totalCost = GHOST_PRICE.mul(numberOfGhosts);
        }

        require(msg.value == totalCost, "WeSeeGhosts: Sent ether value is incorrect");
        purchased[msg.sender] = uint16(purchased[msg.sender].add(numberOfGhosts));
        treasury.transfer(msg.value);

        for (uint i = 0; i < numberOfGhosts; i++) {
            _safeMint(msg.sender, _nextTokenId.add(i));
        }

        nextTokenId = uint16(_nextTokenId.add(numberOfGhosts));

        if (presaleIsActive) {
            emit PresaleMint(msg.sender, numberOfGhosts, msg.value, block.number);
        } else {
            emit SaleMint(msg.sender, numberOfGhosts, msg.value, block.number);
        }
    }

    function mintDev(address recipient, uint256 numberOfGhosts) external onlyOwner {
        uint16 _nextTokenId = nextTokenId;

        require(treasury != address(0), "Treasury not set");
        require(recipient != address(0), "Cannot mint dev supply to zero address");
        require(_nextTokenId.add(numberOfGhosts-1) < MAX_GHOSTS, "WeSeeGhosts: Purchase would exceed max supply");
        require(totalDevGhosts.add(numberOfGhosts-1) < MAX_DEV_GHOSTS, "WeSeeGhosts: Purchase would exceed max dev supply");
        
        for (uint i = 0; i < numberOfGhosts; i++) {
            _safeMint(recipient, _nextTokenId.add(i));
        }
        nextTokenId = uint16(_nextTokenId.add(numberOfGhosts));
        totalDevGhosts = uint16(totalDevGhosts.add(numberOfGhosts));

        emit DevMint(recipient, numberOfGhosts);
    }

    // This function transfers the nft from your address on the 
    // source chain to the same address on the destination chain
    function traverseChains(uint16 _chainId, uint tokenId) public payable {
        require(msg.sender == ownerOf(tokenId), "You must own the token to traverse");
        require(trustedRemoteLookup[_chainId].length > 0, "This chain is currently unavailable for travel");

        // burn NFT, eliminating it from circulation on src chain
        _burn(tokenId);

        // abi.encode() the payload with the values to send
        bytes memory payload = abi.encode(msg.sender, tokenId);

        // encode adapterParams to specify more gas for the destination
        uint16 version = 1;
        bytes memory adapterParams = abi.encodePacked(version, gasForDestinationLzReceive);

        // get the fees we need to pay to LayerZero + Relayer to cover message delivery
        // you will be refunded for extra gas paid
        (uint messageFee, ) = endpoint.estimateFees(_chainId, address(this), payload, false, adapterParams);
        
        require(msg.value >= messageFee, "WSG: msg.value not enough to cover messageFee. Send gas for message fees");

        endpoint.send{value: msg.value}(
            _chainId,                           // destination chainId
            trustedRemoteLookup[_chainId],      // destination address of nft contract
            payload,                            // abi.encoded()'ed bytes
            payable(msg.sender),                // refund address
            address(0x0),                       // 'zroPaymentAddress' unused for this
            adapterParams                       // txParameters 
        );
    }

    // just in case this fixed variable limits us from future integrations
    function setGasForDestinationLzReceive(uint newVal) external onlyOwner {
        gasForDestinationLzReceive = newVal;
    }

    function totalDevMints() external view onlyOwner returns (uint16) {
        return totalDevGhosts;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    // ------------------
    // Internal Functions
    // ------------------

    

    function _isValidCoupon(Coupon memory coupon, address userAddress, uint _type)
        internal
        view
        returns (bool)
    {
        CouponType couponType; 
        bytes memory prefix = "\x19Ethereum Signed Message:\n32";

        if(_type == uint(CouponType.FREE)){
            couponType = CouponType.FREE;
        }else if (_type == uint(CouponType.REDUCED)){
            couponType = CouponType.REDUCED;
        }else if (_type == uint(CouponType.WHITELIST)){
            couponType = CouponType.WHITELIST;
        }
        
        bytes32 baseMsg = keccak256(abi.encode(couponType, userAddress));
        bytes32 prefixedMsg = keccak256(abi.encodePacked(prefix, baseMsg));
        address decodedSigner = ecrecover(prefixedMsg, coupon.v, coupon.r, coupon.s);

        if(decodedSigner != address(0) && decodedSigner == wsgSigner){
            return true;
        }

        return false;
    }

    function _LzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) override internal {
        // decode
        (address toAddr, uint tokenId) = abi.decode(_payload, (address, uint));

        // mint the tokens back into existence on destination chain
        _safeMint(toAddr, tokenId);
    }
    

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"numberOfGhosts","type":"uint256"}],"name":"DevMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"numberOfGhosts","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etherAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"PresaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"numberOfGhosts","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"etherAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"SaleMint","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":"DISCOUNT_GHOST_PRICE","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GHOST_PRICE","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_DEV_GHOSTS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_GHOSTS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASABLE_GHOSTS","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfGhosts","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfGhosts","type":"uint256"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"internalType":"struct WeSeeGhosts.Coupon","name":"discountCoupon","type":"tuple"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"internalType":"struct WeSeeGhosts.Coupon","name":"whitelistCoupon","type":"tuple"},{"internalType":"uint256","name":"_type","type":"uint256"}],"name":"mintCoupon","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"numberOfGhosts","type":"uint256"}],"name":"mintDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","outputs":[],"stateMutability":"nonpayable","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":"address","name":"","type":"address"}],"name":"purchased","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wsgSigner","type":"address"}],"name":"setWSGSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDevGhosts","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDevMints","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"updateBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600e805461ffff1916600117905562055730600f553480156200002657600080fd5b5060405162005eb738038062005eb783398101604081905262000049916200023e565b604080518082018252601e81527f576553656547686f7374732047656e6573697320436f6c6c656374696f6e000060208083019182528351808501909452600584526411d213d4d560da1b908401528151919291620000ab916000916200017b565b508051620000c19060019060208401906200017b565b505050620000de620000d86200012560201b60201c565b62000129565b60138054336001600160a01b031991821617909155600b80549091166001600160a01b03831617905581516200011c9060129060208501906200017b565b50505062000382565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000189906200032f565b90600052602060002090601f016020900481019282620001ad5760008555620001f8565b82601f10620001c857805160ff1916838001178555620001f8565b82800160010185558215620001f8579182015b82811115620001f8578251825591602001919060010190620001db565b50620002069291506200020a565b5090565b5b808211156200020657600081556001016200020b565b80516001600160a01b03811681146200023957600080fd5b919050565b600080604083850312156200025257600080fd5b82516001600160401b03808211156200026a57600080fd5b818501915085601f8301126200027f57600080fd5b8151818111156200029457620002946200036c565b604051601f8201601f19908116603f01168101908382118183101715620002bf57620002bf6200036c565b81604052828152602093508884848701011115620002dc57600080fd5b600091505b82821015620003005784820184015181830185015290830190620002e1565b82821115620003125760008484830101525b95506200032491505085820162000221565b925050509250929050565b600181811c908216806200034457607f821691505b602082108114156200036657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b615b2580620003926000396000f3fe6080604052600436106103075760003560e01c8063715018a61161019a578063b88d4fde116100e1578063eb8d72b71161008a578063f6cb7a7511610064578063f6cb7a7514610929578063f81227d41461093e578063ff2b5e591461095357600080fd5b8063eb8d72b7146108c9578063f0f44260146108e9578063f2fde38b1461090957600080fd5b8063cf89fa03116100bb578063cf89fa031461084d578063d1deba1f14610860578063e985e9c51461087357600080fd5b8063b88d4fde146107f1578063c87b56dd14610811578063c8eae8811461083157600080fd5b8063943fb87211610143578063a22cb4651161011d578063a22cb4651461078f578063a58ae6bb146107af578063b2bdfa7b146107c457600080fd5b8063943fb8721461074757806395d89b4114610767578063a0712d681461077c57600080fd5b80638bd93e5f116101745780638bd93e5f146106965780638da5cb5b146106b15780638ee74912146106dc57600080fd5b8063715018a6146106465780637533d7881461065b57806375794a3c1461067b57600080fd5b806334918dfd1161025e578063522fe98e11610207578063627c21e8116101e1578063627c21e8146105f15780636352211e1461060657806370a082311461062657600080fd5b8063522fe98e146105625780635e2297ff146105a657806361d027b3146105bc57600080fd5b80634029800e116102385780634029800e146104e657806342842e0e146105225780634f6ccce71461054257600080fd5b806334918dfd1461049c57806339f7e37f146104b15780633ccfd60b146104d157600080fd5b806318160ddd116102c057806323b872dd1161029a57806323b872dd1461043c5780632f745c591461045c578063324c6adc1461047c57600080fd5b806318160ddd146103ea5780631b59f244146104095780631c37a8221461041c57600080fd5b806306fdde03116102f157806306fdde0314610363578063081812fc14610385578063095ea7b3146103ca57600080fd5b80621d35671461030c57806301ffc9a71461032e575b600080fd5b34801561031857600080fd5b5061032c6103273660046152fa565b610973565b005b34801561033a57600080fd5b5061034e610349366004615126565b610bb7565b60405190151581526020015b60405180910390f35b34801561036f57600080fd5b50610378610c13565b60405161035a91906155b3565b34801561039157600080fd5b506103a56103a036600461538f565b610ca5565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161035a565b3480156103d657600080fd5b5061032c6103e53660046150fa565b610d7f565b3480156103f657600080fd5b506008545b60405190815260200161035a565b61032c6104173660046153a8565b610f0c565b34801561042857600080fd5b5061032c6104373660046152fa565b6118bc565b34801561044857600080fd5b5061032c61045736600461501a565b611957565b34801561046857600080fd5b506103fb6104773660046150fa565b6119f8565b34801561048857600080fd5b5061032c6104973660046150fa565b611ac7565b3480156104a857600080fd5b5061032c611ed2565b3480156104bd57600080fd5b5061032c6104cc366004615160565b612028565b3480156104dd57600080fd5b5061032c6120c0565b3480156104f257600080fd5b5061050166ea7aa67b2d000081565b6040516fffffffffffffffffffffffffffffffff909116815260200161035a565b34801561052e57600080fd5b5061032c61053d36600461501a565b612170565b34801561054e57600080fd5b506103fb61055d36600461538f565b61218b565b34801561056e57600080fd5b5061059361057d366004614f96565b60146020526000908152604090205461ffff1681565b60405161ffff909116815260200161035a565b3480156105b257600080fd5b506105936101bc81565b3480156105c857600080fd5b506010546103a590640100000000900473ffffffffffffffffffffffffffffffffffffffff1681565b3480156105fd57600080fd5b50610593612249565b34801561061257600080fd5b506103a561062136600461538f565b6122d8565b34801561063257600080fd5b506103fb610641366004614f96565b61238a565b34801561065257600080fd5b5061032c612458565b34801561066757600080fd5b506103786106763660046151a9565b6124e5565b34801561068757600080fd5b50600e546105939061ffff1681565b3480156106a257600080fd5b506010546105939061ffff1681565b3480156106bd57600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff166103a5565b3480156106e857600080fd5b506107326106f7366004615217565b600c60209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b6040805192835260208301919091520161035a565b34801561075357600080fd5b5061032c61076236600461538f565b61257f565b34801561077357600080fd5b50610378612605565b61032c61078a36600461538f565b612614565b34801561079b57600080fd5b5061032c6107aa3660046150c7565b612c23565b3480156107bb57600080fd5b50610593600481565b3480156107d057600080fd5b506013546103a59073ffffffffffffffffffffffffffffffffffffffff1681565b3480156107fd57600080fd5b5061032c61080c36600461505b565b612c2e565b34801561081d57600080fd5b5061037861082c36600461538f565b612cd0565b34801561083d57600080fd5b5061050167011c37937e08000081565b61032c61085b366004615373565b612de0565b61032c61086e36600461526e565b6131d1565b34801561087f57600080fd5b5061034e61088e366004614fe1565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108d557600080fd5b5061032c6108e43660046151c4565b6133c3565b3480156108f557600080fd5b5061032c610904366004614f96565b613462565b34801561091557600080fd5b5061032c610924366004614f96565b613532565b34801561093557600080fd5b50610593602d81565b34801561094a57600080fd5b5061032c613662565b34801561095f57600080fd5b5061032c61096e366004614f96565b61385c565b600b5473ffffffffffffffffffffffffffffffffffffffff16331461099757600080fd5b61ffff84166000908152600d6020526040902080546109b590615913565b905083511480156109f4575061ffff84166000908152600d60205260409081902090516109e291906154ab565b60405180910390208380519060200120145b610a85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290610ac7908790879087908790600401615705565b600060405180830381600087803b158015610ae157600080fd5b505af1925050508015610af2575060015b610bb1576040518060400160405280825181526020018280519060200120815250600c60008661ffff1661ffff16815260200190815260200160002084604051610b3c919061546d565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d90610ba8908690869086908690615705565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610c0d5750610c0d826139c7565b92915050565b606060008054610c2290615913565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4e90615913565b8015610c9b5780601f10610c7057610100808354040283529160200191610c9b565b820191906000526020600020905b815481529060010190602001808311610c7e57829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610d56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a7c565b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610d8a826122d8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a7c565b3373ffffffffffffffffffffffffffffffffffffffff82161480610e715750610e71813361088e565b610efd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a7c565b610f078383613aaa565b505050565b600e5460105461ffff90911690600090640100000000900473ffffffffffffffffffffffffffffffffffffffff16610fc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f576553656547686f7374733a20547265617375727920686173206e6f7420626560448201527f656e2073657400000000000000000000000000000000000000000000000000006064820152608401610a7c565b6000861161105857604080517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482015260248101919091527f576553656547686f7374733a204e756d626572206f662047686f73747320636160448201527f6e206e6f74206265206c657373207468616e206f7220657175616c20746f20306064820152608401610a7c565b6010546301000000900460ff1680611078575060105462010000900460ff165b611104576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f576553656547686f7374733a2043616e206f6e6c79206d696e7420647572696e60448201527f6720616e206163746976652073616c65000000000000000000000000000000006064820152608401610a7c565b6101bc6111206111156001896158d0565b61ffff851690613b4a565b106111ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f576553656547686f7374733a20507572636861736520776f756c64206578636560448201527f6564206d617820737570706c79000000000000000000000000000000000000006064820152608401610a7c565b60046111ba6001886158d0565b1061126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152605060248201527f576553656547686f7374733a204e756d626572206f662047686f73747320726560448201527f717565737465642065786365656473206d6178206e756d626572206f6620476860648201527f6f73747320706572206164647265737300000000000000000000000000000000608482015260a401610a7c565b600461129761127d6001896158d0565b3360009081526014602052604090205461ffff1690613b4a565b1061134a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604560248201527f576553656547686f7374733a20507572636861736520776f756c64206578636560448201527f6564206d61782047686f737473207075726368617361626c652070657220616460648201527f6472657373000000000000000000000000000000000000000000000000000000608482015260a401610a7c565b8215806113575750826001145b806113625750826002145b6113ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f576553656547686f7374733a20436f75706f6e54797065206e6f74206163636560448201527f70746564000000000000000000000000000000000000000000000000000000006064820152608401610a7c565b60115473ffffffffffffffffffffffffffffffffffffffff16611491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f576553656547686f7374733a205369676e657220686173206e6f74206265656e60448201527f20736574000000000000000000000000000000000000000000000000000000006064820152608401610a7c565b6010546301000000900460ff16156115425760006114b185336002613b56565b905080611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f576553656547686f7374733a205468652077616c6c657420616464726573732060448201527f6973206e6f742077686974656c697374656400000000000000000000000000006064820152608401610a7c565b505b600061154f863386613b56565b9050806115de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f576553656547686f7374733a2054686973206973206e6f7420612076616c696460448201527f20636f75706f6e000000000000000000000000000000000000000000000000006064820152608401610a7c565b83611626573360009081526014602052604090205460019061ffff1615611603575060005b61161e611610828a6158d0565b66ea7aa67b2d000090613d0f565b92505061165c565b60018414156116475761164066ea7aa67b2d000088613d0f565b915061165c565b61165967011c37937e08000088613d0f565b91505b8134146116eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f576553656547686f7374733a2053656e742065746865722076616c756520697360448201527f20696e636f7272656374000000000000000000000000000000000000000000006064820152608401610a7c565b336000908152601460205260409020546117099061ffff1688613b4a565b33600090815260146020526040808220805461ffff949094167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000090941693909317909255601054915164010000000090920473ffffffffffffffffffffffffffffffffffffffff16913480156108fc0292909190818181858888f1935050505015801561179a573d6000803e3d6000fd5b5060005b878110156117cf576117bd336117b861ffff871684613b4a565b613d1b565b806117c781615967565b91505061179e565b506117de61ffff841688613b4a565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661ffff929092169190911790556010546301000000900460ff161561186d576040805133815260208101899052348183015243606082015290517f597f62707fb7db9daf13c1150187d3d5a460952b85588a6f94d5b526e65bb4269181900360800190a16118b3565b6040805133815260208101899052348183015243606082015290517f705c72919c330b55359ad663596999fce8b0dbfe5dc8616ecf5b447b192b7b119181900360800190a15b50505050505050565b33301461194b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e0000000000000000000000000000000000000000006064820152608401610a7c565b610bb184848484613d35565b6119613382613d62565b6119ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a7c565b610f07838383613ed2565b6000611a038361238a565b8210611a91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610a7c565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611b48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b600e5460105461ffff90911690640100000000900473ffffffffffffffffffffffffffffffffffffffff16611bd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5472656173757279206e6f7420736574000000000000000000000000000000006044820152606401610a7c565b73ffffffffffffffffffffffffffffffffffffffff8316611c7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f43616e6e6f74206d696e742064657620737570706c7920746f207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a7c565b6101bc611c98611c8d6001856158d0565b61ffff841690613b4a565b10611d25576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f576553656547686f7374733a20507572636861736520776f756c64206578636560448201527f6564206d617820737570706c79000000000000000000000000000000000000006064820152608401610a7c565b602d611d42611d356001856158d0565b60105461ffff1690613b4a565b10611dcf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f576553656547686f7374733a20507572636861736520776f756c64206578636560448201527f6564206d61782064657620737570706c790000000000000000000000000000006064820152608401610a7c565b60005b82811015611dfe57611dec846117b861ffff851684613b4a565b80611df681615967565b915050611dd2565b50611e0d61ffff821683613b4a565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661ffff928316179055601054611e4a911683613b4a565b601080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661ffff929092169190911790556040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018490527f7d8400f0e58ae2e14f85b63f3afb0ca5b29328d8f48046b205fc7f174cf9b5ed91015b60405180910390a1505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611f53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b6010546301000000900460ff1615611fed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f576553656547686f7374733a2053616c6520616e642050726573616c6520636160448201527f6e6e6f7420626520616374697665206174207468652073616d652074696d65006064820152608401610a7c565b601080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff8116620100009182900460ff1615909102179055565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146120a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b80516120bc906012906020840190614cd3565b5050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314612141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b6040514790339082156108fc029083906000818181858888f193505050501580156120bc573d6000803e3d6000fd5b610f0783838360405180602001604052806000815250612c2e565b600061219660085490565b8210612224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a7c565b6008828154811061223757612237615a41565b90600052602060002001549050919050565b600a5460009073ffffffffffffffffffffffffffffffffffffffff1633146122cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b5060105461ffff1690565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610c0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a7c565b600073ffffffffffffffffffffffffffffffffffffffff821661242f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a7c565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146124d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b6124e36000614144565b565b600d60205260009081526040902080546124fe90615913565b80601f016020809104026020016040519081016040528092919081815260200182805461252a90615913565b80156125775780601f1061254c57610100808354040283529160200191612577565b820191906000526020600020905b81548152906001019060200180831161255a57829003601f168201915b505050505081565b600a5473ffffffffffffffffffffffffffffffffffffffff163314612600576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b600f55565b606060018054610c2290615913565b600e5460105461ffff90911690600090640100000000900473ffffffffffffffffffffffffffffffffffffffff166126ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f576553656547686f7374733a20547265617375727920686173206e6f7420626560448201527f656e2073657400000000000000000000000000000000000000000000000000006064820152608401610a7c565b6000831161276057604080517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482015260248101919091527f576553656547686f7374733a204e756d626572206f662047686f73747320636160448201527f6e206e6f74206265206c657373207468616e206f7220657175616c20746f20306064820152608401610a7c565b60105462010000900460ff166127f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f576553656547686f7374733a2043616e206f6e6c79206d696e7420647572696e60448201527f67207075626c69632073616c65000000000000000000000000000000000000006064820152608401610a7c565b6101bc6128096111156001866158d0565b10612896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f576553656547686f7374733a20507572636861736520776f756c64206578636560448201527f6564206d617820737570706c79000000000000000000000000000000000000006064820152608401610a7c565b60046128a36001856158d0565b10612956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152605060248201527f576553656547686f7374733a204e756d626572206f662047686f73747320726560448201527f717565737465642065786365656473206d6178206e756d626572206f6620476860648201527f6f73747320706572206164647265737300000000000000000000000000000000608482015260a401610a7c565b600461296661127d6001866158d0565b10612a19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604560248201527f576553656547686f7374733a20507572636861736520776f756c64206578636560448201527f6564206d61782047686f737473207075726368617361626c652070657220616460648201527f6472657373000000000000000000000000000000000000000000000000000000608482015260a401610a7c565b612a2b67011c37937e08000084613d0f565b9050803414612abc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f576553656547686f7374733a2053656e742065746865722076616c756520697360448201527f20696e636f7272656374000000000000000000000000000000000000000000006064820152608401610a7c565b33600090815260146020526040902054612ada9061ffff1684613b4a565b33600090815260146020526040808220805461ffff949094167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000090941693909317909255601054915164010000000090920473ffffffffffffffffffffffffffffffffffffffff16913480156108fc0292909190818181858888f19350505050158015612b6b573d6000803e3d6000fd5b5060005b83811015612b9b57612b89336117b861ffff861684613b4a565b80612b9381615967565b915050612b6f565b50612baa61ffff831684613b4a565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661ffff92909216919091179055604080513381526020810185905234918101919091524360608201527f705c72919c330b55359ad663596999fce8b0dbfe5dc8616ecf5b447b192b7b1190608001611ec5565b6120bc3383836141bb565b612c383383613d62565b612cc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a7c565b610bb1848484846142e9565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16612d84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a7c565b6000612d8e61438c565b90506000815111612dae5760405180602001604052806000815250612dd9565b80612db88461439b565b604051602001612dc992919061553b565b6040516020818303038152906040525b9392505050565b612de9816122d8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612ea3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f73650000000000000000000000000000000000000000000000000000000000006064820152608401610a7c565b61ffff82166000908152600d602052604081208054612ec190615913565b905011612f50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c0000000000000000000000000000000000006064820152608401610a7c565b612f59816144cd565b60408051336020820152808201839052815180820383018152606082018352600f547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a2830193849052600b547f40a7bb1000000000000000000000000000000000000000000000000000000000909452909260019260009173ffffffffffffffffffffffffffffffffffffffff16906340a7bb109061301d908990309089908790899060a601615626565b604080518083038186803b15801561303457600080fd5b505afa158015613048573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061306c91906153ef565b50905080341015613125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604860248201527f5753473a206d73672e76616c7565206e6f7420656e6f75676820746f20636f7660448201527f6572206d6573736167654665652e2053656e642067617320666f72206d65737360648201527f6167652066656573000000000000000000000000000000000000000000000000608482015260a401610a7c565b600b5461ffff87166000908152600d602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9093169263c5803100923492613197928c928b913391908b9060040161574f565b6000604051808303818588803b1580156131b057600080fd5b505af11580156131c4573d6000803e3d6000fd5b5050505050505050505050565b61ffff85166000908152600c602052604080822090516131f290879061546d565b908152604080516020928190038301902067ffffffffffffffff871660009081529252902060018101549091506132ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f65737361676500000000000000000000000000000000000000000000000000006064820152608401610a7c565b8054821480156132d55750806001015483836040516132cb92919061545d565b6040518091039020145b61333b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000006044820152606401610a7c565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a822906133899089908990899089908990600401615685565b600060405180830381600087803b1580156133a357600080fd5b505af11580156133b7573d6000803e3d6000fd5b50505050505050505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314613444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b61ffff83166000908152600d60205260409020610bb1908383614d57565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146134e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b6010805473ffffffffffffffffffffffffffffffffffffffff909216640100000000027fffffffffffffffff0000000000000000000000000000000000000000ffffffff909216919091179055565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146135b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b73ffffffffffffffffffffffffffffffffffffffff8116613656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a7c565b61365f81614144565b50565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146136e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b60105462010000900460ff161561377c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f576553656547686f7374733a2050726573616c6520616e642053616c6520636160448201527f6e6e6f7420626520616374697665206174207468652073616d652074696d65006064820152608401610a7c565b60115473ffffffffffffffffffffffffffffffffffffffff16613820576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f576553656547686f7374733a205369676e657220686173206e6f74206265656e60448201527f20736574000000000000000000000000000000000000000000000000000000006064820152608401610a7c565b601080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff811663010000009182900460ff1615909102179055565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146138dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b73ffffffffffffffffffffffffffffffffffffffff8116613980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f576553656547686f7374733a204d757374207573652076616c6964206164647260448201527f65737320666f7220576553656547686f7374732067616d65207369676e6572006064820152608401610a7c565b601180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480613a5a57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610c0d57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610c0d565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190613b04826122d8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612dd98284615867565b60408051808201909152601c81527f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152600090819083613b9d5760009150613bbd565b6001841415613baf5760019150613bbd565b6002841415613bbd57600291505b60008286604051602001613bd29291906155c6565b60405160208183030381529060405280519060200120905060008282604051602001613bff929190615489565b60405160208183030381529060405280519060200120905060006001828a604001518b600001518c6020015160405160008152602001604052604051613c61949392919093845260ff9290921660208401526040830152606082015260800190565b6020604051602081039080840390855afa158015613c83573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811615801590613ced575060115473ffffffffffffffffffffffffffffffffffffffff8281169116145b15613d0057600195505050505050612dd9565b50600098975050505050505050565b6000612dd98284615893565b6120bc8282604051806020016040528060008152506145a6565b60008082806020019051810190613d4c9190614fb3565b91509150613d5a8282613d1b565b505050505050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16613e13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a7c565b6000613e1e836122d8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613e8c575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b80613eca57508373ffffffffffffffffffffffffffffffffffffffff16613eb284610ca5565b73ffffffffffffffffffffffffffffffffffffffff16145b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16613ef2826122d8565b73ffffffffffffffffffffffffffffffffffffffff1614613f95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610a7c565b73ffffffffffffffffffffffffffffffffffffffff8216614037576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a7c565b614042838383614649565b61404d600082613aaa565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602052604081208054600192906140839084906158d0565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054600192906140be908490615867565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415614251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a7c565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6142f4848484613ed2565b6143008484848461474f565b610bb1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a7c565b606060128054610c2290615913565b6060816143db57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561440557806143ef81615967565b91506143fe9050600a8361587f565b91506143df565b60008167ffffffffffffffff81111561442057614420615a70565b6040519080825280601f01601f19166020018201604052801561444a576020820181803683370190505b5090505b8415613eca5761445f6001836158d0565b915061446c600a866159a0565b614477906030615867565b60f81b81838151811061448c5761448c615a41565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506144c6600a8661587f565b945061444e565b60006144d8826122d8565b90506144e681600084614649565b6144f1600083613aaa565b73ffffffffffffffffffffffffffffffffffffffff811660009081526003602052604081208054600192906145279084906158d0565b909155505060008281526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6145b0838361494e565b6145bd600084848461474f565b610f07576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a7c565b73ffffffffffffffffffffffffffffffffffffffff83166146b1576146ac81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6146ee565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146146ee576146ee8382614b1c565b73ffffffffffffffffffffffffffffffffffffffff821661471257610f0781614bd3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610f0757610f078282614c82565b600073ffffffffffffffffffffffffffffffffffffffff84163b15614943576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906147c690339089908890889060040161556a565b602060405180830381600087803b1580156147e057600080fd5b505af192505050801561482e575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261482b91810190615143565b60015b6148f8573d80801561485c576040519150601f19603f3d011682016040523d82523d6000602084013e614861565b606091505b5080516148f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a7c565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050613eca565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff82166149cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a7c565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615614a57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a7c565b614a6360008383614649565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290614a99908490615867565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001614b298461238a565b614b3391906158d0565b600083815260076020526040902054909150808214614b935773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b600854600090614be5906001906158d0565b60008381526009602052604081205460088054939450909284908110614c0d57614c0d615a41565b906000526020600020015490508060088381548110614c2e57614c2e615a41565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480614c6657614c66615a12565b6001900381819060005260206000200160009055905550505050565b6000614c8d8361238a565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054614cdf90615913565b90600052602060002090601f016020900481019282614d015760008555614d47565b82601f10614d1a57805160ff1916838001178555614d47565b82800160010185558215614d47579182015b82811115614d47578251825591602001919060010190614d2c565b50614d53929150614de9565b5090565b828054614d6390615913565b90600052602060002090601f016020900481019282614d855760008555614d47565b82601f10614dbc578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555614d47565b82800160010185558215614d47579182015b82811115614d47578235825591602001919060010190614dce565b5b80821115614d535760008155600101614dea565b600067ffffffffffffffff80841115614e1957614e19615a70565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715614e5f57614e5f615a70565b81604052809350858152868686011115614e7857600080fd5b858560208301376000602087830101525050509392505050565b60008083601f840112614ea457600080fd5b50813567ffffffffffffffff811115614ebc57600080fd5b602083019150836020828501011115614ed457600080fd5b9250929050565b600082601f830112614eec57600080fd5b612dd983833560208501614dfe565b600060608284031215614f0d57600080fd5b6040516060810181811067ffffffffffffffff82111715614f3057614f30615a70565b80604052508091508235815260208301356020820152604083013560ff81168114614f5a57600080fd5b6040919091015292915050565b803561ffff81168114614f7957600080fd5b919050565b803567ffffffffffffffff81168114614f7957600080fd5b600060208284031215614fa857600080fd5b8135612dd981615a9f565b60008060408385031215614fc657600080fd5b8251614fd181615a9f565b6020939093015192949293505050565b60008060408385031215614ff457600080fd5b8235614fff81615a9f565b9150602083013561500f81615a9f565b809150509250929050565b60008060006060848603121561502f57600080fd5b833561503a81615a9f565b9250602084013561504a81615a9f565b929592945050506040919091013590565b6000806000806080858703121561507157600080fd5b843561507c81615a9f565b9350602085013561508c81615a9f565b925060408501359150606085013567ffffffffffffffff8111156150af57600080fd5b6150bb87828801614edb565b91505092959194509250565b600080604083850312156150da57600080fd5b82356150e581615a9f565b91506020830135801515811461500f57600080fd5b6000806040838503121561510d57600080fd5b823561511881615a9f565b946020939093013593505050565b60006020828403121561513857600080fd5b8135612dd981615ac1565b60006020828403121561515557600080fd5b8151612dd981615ac1565b60006020828403121561517257600080fd5b813567ffffffffffffffff81111561518957600080fd5b8201601f8101841361519a57600080fd5b613eca84823560208401614dfe565b6000602082840312156151bb57600080fd5b612dd982614f67565b6000806000604084860312156151d957600080fd5b6151e284614f67565b9250602084013567ffffffffffffffff8111156151fe57600080fd5b61520a86828701614e92565b9497909650939450505050565b60008060006060848603121561522c57600080fd5b61523584614f67565b9250602084013567ffffffffffffffff81111561525157600080fd5b61525d86828701614edb565b925050604084013590509250925092565b60008060008060006080868803121561528657600080fd5b61528f86614f67565b9450602086013567ffffffffffffffff808211156152ac57600080fd5b6152b889838a01614edb565b95506152c660408901614f7e565b945060608801359150808211156152dc57600080fd5b506152e988828901614e92565b969995985093965092949392505050565b6000806000806080858703121561531057600080fd5b61531985614f67565b9350602085013567ffffffffffffffff8082111561533657600080fd5b61534288838901614edb565b945061535060408801614f7e565b9350606087013591508082111561536657600080fd5b506150bb87828801614edb565b6000806040838503121561538657600080fd5b61511883614f67565b6000602082840312156153a157600080fd5b5035919050565b60008060008061010085870312156153bf57600080fd5b843593506153d08660208701614efb565b92506153df8660808701614efb565b9396929550929360e00135925050565b6000806040838503121561540257600080fd5b505080516020909101519092909150565b6000815180845261542b8160208601602086016158e7565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b8183823760009101908152919050565b6000825161547f8184602087016158e7565b9190910192915050565b6000835161549b8184602088016158e7565b9190910191825250602001919050565b60008083546154b981615913565b600182811680156154d157600181146155005761552f565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752828701945061552f565b8760005260208060002060005b858110156155265781548a82015290840190820161550d565b50505082870194505b50929695505050505050565b6000835161554d8184602088016158e7565b8351908301906155618183602088016158e7565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526155a96080830184615413565b9695505050505050565b602081526000612dd96020830184615413565b6040810160058410615601577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b92815273ffffffffffffffffffffffffffffffffffffffff9190911660209091015290565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a06040820152600061565f60a0830186615413565b841515606084015282810360808401526156798185615413565b98975050505050505050565b61ffff861681526080602082015260006156a26080830187615413565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b61ffff851681526080602082015260006157226080830186615413565b67ffffffffffffffff8516604084015282810360608401526157448185615413565b979650505050505050565b61ffff871681526000602060c0818401526000885461576d81615913565b8060c087015260e060018084166000811461578f57600181146157c2576157f0565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a0152610100890195506157f0565b8d6000528660002060005b858110156157e85781548b82018601529083019088016157cd565b8a0184019650505b505050505083810360408501526158078189615413565b91505061582c606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a084015261585a8185615413565b9998505050505050505050565b6000821982111561587a5761587a6159b4565b500190565b60008261588e5761588e6159e3565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156158cb576158cb6159b4565b500290565b6000828210156158e2576158e26159b4565b500390565b60005b838110156159025781810151838201526020016158ea565b83811115610bb15750506000910152565b600181811c9082168061592757607f821691505b60208210811415615961577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615999576159996159b4565b5060010190565b6000826159af576159af6159e3565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff8116811461365f57600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461365f57600080fdfea264697066735822122054aaa4e4d51d255cd7ca6ef6f43fe531e2b2de6267df5ab6295a6711ec772f8b64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67500000000000000000000000000000000000000000000000000000000000000012f00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103075760003560e01c8063715018a61161019a578063b88d4fde116100e1578063eb8d72b71161008a578063f6cb7a7511610064578063f6cb7a7514610929578063f81227d41461093e578063ff2b5e591461095357600080fd5b8063eb8d72b7146108c9578063f0f44260146108e9578063f2fde38b1461090957600080fd5b8063cf89fa03116100bb578063cf89fa031461084d578063d1deba1f14610860578063e985e9c51461087357600080fd5b8063b88d4fde146107f1578063c87b56dd14610811578063c8eae8811461083157600080fd5b8063943fb87211610143578063a22cb4651161011d578063a22cb4651461078f578063a58ae6bb146107af578063b2bdfa7b146107c457600080fd5b8063943fb8721461074757806395d89b4114610767578063a0712d681461077c57600080fd5b80638bd93e5f116101745780638bd93e5f146106965780638da5cb5b146106b15780638ee74912146106dc57600080fd5b8063715018a6146106465780637533d7881461065b57806375794a3c1461067b57600080fd5b806334918dfd1161025e578063522fe98e11610207578063627c21e8116101e1578063627c21e8146105f15780636352211e1461060657806370a082311461062657600080fd5b8063522fe98e146105625780635e2297ff146105a657806361d027b3146105bc57600080fd5b80634029800e116102385780634029800e146104e657806342842e0e146105225780634f6ccce71461054257600080fd5b806334918dfd1461049c57806339f7e37f146104b15780633ccfd60b146104d157600080fd5b806318160ddd116102c057806323b872dd1161029a57806323b872dd1461043c5780632f745c591461045c578063324c6adc1461047c57600080fd5b806318160ddd146103ea5780631b59f244146104095780631c37a8221461041c57600080fd5b806306fdde03116102f157806306fdde0314610363578063081812fc14610385578063095ea7b3146103ca57600080fd5b80621d35671461030c57806301ffc9a71461032e575b600080fd5b34801561031857600080fd5b5061032c6103273660046152fa565b610973565b005b34801561033a57600080fd5b5061034e610349366004615126565b610bb7565b60405190151581526020015b60405180910390f35b34801561036f57600080fd5b50610378610c13565b60405161035a91906155b3565b34801561039157600080fd5b506103a56103a036600461538f565b610ca5565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161035a565b3480156103d657600080fd5b5061032c6103e53660046150fa565b610d7f565b3480156103f657600080fd5b506008545b60405190815260200161035a565b61032c6104173660046153a8565b610f0c565b34801561042857600080fd5b5061032c6104373660046152fa565b6118bc565b34801561044857600080fd5b5061032c61045736600461501a565b611957565b34801561046857600080fd5b506103fb6104773660046150fa565b6119f8565b34801561048857600080fd5b5061032c6104973660046150fa565b611ac7565b3480156104a857600080fd5b5061032c611ed2565b3480156104bd57600080fd5b5061032c6104cc366004615160565b612028565b3480156104dd57600080fd5b5061032c6120c0565b3480156104f257600080fd5b5061050166ea7aa67b2d000081565b6040516fffffffffffffffffffffffffffffffff909116815260200161035a565b34801561052e57600080fd5b5061032c61053d36600461501a565b612170565b34801561054e57600080fd5b506103fb61055d36600461538f565b61218b565b34801561056e57600080fd5b5061059361057d366004614f96565b60146020526000908152604090205461ffff1681565b60405161ffff909116815260200161035a565b3480156105b257600080fd5b506105936101bc81565b3480156105c857600080fd5b506010546103a590640100000000900473ffffffffffffffffffffffffffffffffffffffff1681565b3480156105fd57600080fd5b50610593612249565b34801561061257600080fd5b506103a561062136600461538f565b6122d8565b34801561063257600080fd5b506103fb610641366004614f96565b61238a565b34801561065257600080fd5b5061032c612458565b34801561066757600080fd5b506103786106763660046151a9565b6124e5565b34801561068757600080fd5b50600e546105939061ffff1681565b3480156106a257600080fd5b506010546105939061ffff1681565b3480156106bd57600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff166103a5565b3480156106e857600080fd5b506107326106f7366004615217565b600c60209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b6040805192835260208301919091520161035a565b34801561075357600080fd5b5061032c61076236600461538f565b61257f565b34801561077357600080fd5b50610378612605565b61032c61078a36600461538f565b612614565b34801561079b57600080fd5b5061032c6107aa3660046150c7565b612c23565b3480156107bb57600080fd5b50610593600481565b3480156107d057600080fd5b506013546103a59073ffffffffffffffffffffffffffffffffffffffff1681565b3480156107fd57600080fd5b5061032c61080c36600461505b565b612c2e565b34801561081d57600080fd5b5061037861082c36600461538f565b612cd0565b34801561083d57600080fd5b5061050167011c37937e08000081565b61032c61085b366004615373565b612de0565b61032c61086e36600461526e565b6131d1565b34801561087f57600080fd5b5061034e61088e366004614fe1565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108d557600080fd5b5061032c6108e43660046151c4565b6133c3565b3480156108f557600080fd5b5061032c610904366004614f96565b613462565b34801561091557600080fd5b5061032c610924366004614f96565b613532565b34801561093557600080fd5b50610593602d81565b34801561094a57600080fd5b5061032c613662565b34801561095f57600080fd5b5061032c61096e366004614f96565b61385c565b600b5473ffffffffffffffffffffffffffffffffffffffff16331461099757600080fd5b61ffff84166000908152600d6020526040902080546109b590615913565b905083511480156109f4575061ffff84166000908152600d60205260409081902090516109e291906154ab565b60405180910390208380519060200120145b610a85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290610ac7908790879087908790600401615705565b600060405180830381600087803b158015610ae157600080fd5b505af1925050508015610af2575060015b610bb1576040518060400160405280825181526020018280519060200120815250600c60008661ffff1661ffff16815260200190815260200160002084604051610b3c919061546d565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d90610ba8908690869086908690615705565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610c0d5750610c0d826139c7565b92915050565b606060008054610c2290615913565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4e90615913565b8015610c9b5780601f10610c7057610100808354040283529160200191610c9b565b820191906000526020600020905b815481529060010190602001808311610c7e57829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610d56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a7c565b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610d8a826122d8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a7c565b3373ffffffffffffffffffffffffffffffffffffffff82161480610e715750610e71813361088e565b610efd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a7c565b610f078383613aaa565b505050565b600e5460105461ffff90911690600090640100000000900473ffffffffffffffffffffffffffffffffffffffff16610fc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f576553656547686f7374733a20547265617375727920686173206e6f7420626560448201527f656e2073657400000000000000000000000000000000000000000000000000006064820152608401610a7c565b6000861161105857604080517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482015260248101919091527f576553656547686f7374733a204e756d626572206f662047686f73747320636160448201527f6e206e6f74206265206c657373207468616e206f7220657175616c20746f20306064820152608401610a7c565b6010546301000000900460ff1680611078575060105462010000900460ff165b611104576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f576553656547686f7374733a2043616e206f6e6c79206d696e7420647572696e60448201527f6720616e206163746976652073616c65000000000000000000000000000000006064820152608401610a7c565b6101bc6111206111156001896158d0565b61ffff851690613b4a565b106111ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f576553656547686f7374733a20507572636861736520776f756c64206578636560448201527f6564206d617820737570706c79000000000000000000000000000000000000006064820152608401610a7c565b60046111ba6001886158d0565b1061126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152605060248201527f576553656547686f7374733a204e756d626572206f662047686f73747320726560448201527f717565737465642065786365656473206d6178206e756d626572206f6620476860648201527f6f73747320706572206164647265737300000000000000000000000000000000608482015260a401610a7c565b600461129761127d6001896158d0565b3360009081526014602052604090205461ffff1690613b4a565b1061134a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604560248201527f576553656547686f7374733a20507572636861736520776f756c64206578636560448201527f6564206d61782047686f737473207075726368617361626c652070657220616460648201527f6472657373000000000000000000000000000000000000000000000000000000608482015260a401610a7c565b8215806113575750826001145b806113625750826002145b6113ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f576553656547686f7374733a20436f75706f6e54797065206e6f74206163636560448201527f70746564000000000000000000000000000000000000000000000000000000006064820152608401610a7c565b60115473ffffffffffffffffffffffffffffffffffffffff16611491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f576553656547686f7374733a205369676e657220686173206e6f74206265656e60448201527f20736574000000000000000000000000000000000000000000000000000000006064820152608401610a7c565b6010546301000000900460ff16156115425760006114b185336002613b56565b905080611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f576553656547686f7374733a205468652077616c6c657420616464726573732060448201527f6973206e6f742077686974656c697374656400000000000000000000000000006064820152608401610a7c565b505b600061154f863386613b56565b9050806115de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f576553656547686f7374733a2054686973206973206e6f7420612076616c696460448201527f20636f75706f6e000000000000000000000000000000000000000000000000006064820152608401610a7c565b83611626573360009081526014602052604090205460019061ffff1615611603575060005b61161e611610828a6158d0565b66ea7aa67b2d000090613d0f565b92505061165c565b60018414156116475761164066ea7aa67b2d000088613d0f565b915061165c565b61165967011c37937e08000088613d0f565b91505b8134146116eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f576553656547686f7374733a2053656e742065746865722076616c756520697360448201527f20696e636f7272656374000000000000000000000000000000000000000000006064820152608401610a7c565b336000908152601460205260409020546117099061ffff1688613b4a565b33600090815260146020526040808220805461ffff949094167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000090941693909317909255601054915164010000000090920473ffffffffffffffffffffffffffffffffffffffff16913480156108fc0292909190818181858888f1935050505015801561179a573d6000803e3d6000fd5b5060005b878110156117cf576117bd336117b861ffff871684613b4a565b613d1b565b806117c781615967565b91505061179e565b506117de61ffff841688613b4a565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661ffff929092169190911790556010546301000000900460ff161561186d576040805133815260208101899052348183015243606082015290517f597f62707fb7db9daf13c1150187d3d5a460952b85588a6f94d5b526e65bb4269181900360800190a16118b3565b6040805133815260208101899052348183015243606082015290517f705c72919c330b55359ad663596999fce8b0dbfe5dc8616ecf5b447b192b7b119181900360800190a15b50505050505050565b33301461194b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e0000000000000000000000000000000000000000006064820152608401610a7c565b610bb184848484613d35565b6119613382613d62565b6119ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a7c565b610f07838383613ed2565b6000611a038361238a565b8210611a91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610a7c565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611b48576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b600e5460105461ffff90911690640100000000900473ffffffffffffffffffffffffffffffffffffffff16611bd9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5472656173757279206e6f7420736574000000000000000000000000000000006044820152606401610a7c565b73ffffffffffffffffffffffffffffffffffffffff8316611c7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f43616e6e6f74206d696e742064657620737570706c7920746f207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a7c565b6101bc611c98611c8d6001856158d0565b61ffff841690613b4a565b10611d25576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f576553656547686f7374733a20507572636861736520776f756c64206578636560448201527f6564206d617820737570706c79000000000000000000000000000000000000006064820152608401610a7c565b602d611d42611d356001856158d0565b60105461ffff1690613b4a565b10611dcf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f576553656547686f7374733a20507572636861736520776f756c64206578636560448201527f6564206d61782064657620737570706c790000000000000000000000000000006064820152608401610a7c565b60005b82811015611dfe57611dec846117b861ffff851684613b4a565b80611df681615967565b915050611dd2565b50611e0d61ffff821683613b4a565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661ffff928316179055601054611e4a911683613b4a565b601080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661ffff929092169190911790556040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018490527f7d8400f0e58ae2e14f85b63f3afb0ca5b29328d8f48046b205fc7f174cf9b5ed91015b60405180910390a1505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611f53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b6010546301000000900460ff1615611fed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f576553656547686f7374733a2053616c6520616e642050726573616c6520636160448201527f6e6e6f7420626520616374697665206174207468652073616d652074696d65006064820152608401610a7c565b601080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff8116620100009182900460ff1615909102179055565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146120a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b80516120bc906012906020840190614cd3565b5050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314612141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b6040514790339082156108fc029083906000818181858888f193505050501580156120bc573d6000803e3d6000fd5b610f0783838360405180602001604052806000815250612c2e565b600061219660085490565b8210612224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a7c565b6008828154811061223757612237615a41565b90600052602060002001549050919050565b600a5460009073ffffffffffffffffffffffffffffffffffffffff1633146122cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b5060105461ffff1690565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610c0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a7c565b600073ffffffffffffffffffffffffffffffffffffffff821661242f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a7c565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146124d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b6124e36000614144565b565b600d60205260009081526040902080546124fe90615913565b80601f016020809104026020016040519081016040528092919081815260200182805461252a90615913565b80156125775780601f1061254c57610100808354040283529160200191612577565b820191906000526020600020905b81548152906001019060200180831161255a57829003601f168201915b505050505081565b600a5473ffffffffffffffffffffffffffffffffffffffff163314612600576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b600f55565b606060018054610c2290615913565b600e5460105461ffff90911690600090640100000000900473ffffffffffffffffffffffffffffffffffffffff166126ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f576553656547686f7374733a20547265617375727920686173206e6f7420626560448201527f656e2073657400000000000000000000000000000000000000000000000000006064820152608401610a7c565b6000831161276057604080517f08c379a00000000000000000000000000000000000000000000000000000000081526020600482015260248101919091527f576553656547686f7374733a204e756d626572206f662047686f73747320636160448201527f6e206e6f74206265206c657373207468616e206f7220657175616c20746f20306064820152608401610a7c565b60105462010000900460ff166127f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f576553656547686f7374733a2043616e206f6e6c79206d696e7420647572696e60448201527f67207075626c69632073616c65000000000000000000000000000000000000006064820152608401610a7c565b6101bc6128096111156001866158d0565b10612896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f576553656547686f7374733a20507572636861736520776f756c64206578636560448201527f6564206d617820737570706c79000000000000000000000000000000000000006064820152608401610a7c565b60046128a36001856158d0565b10612956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152605060248201527f576553656547686f7374733a204e756d626572206f662047686f73747320726560448201527f717565737465642065786365656473206d6178206e756d626572206f6620476860648201527f6f73747320706572206164647265737300000000000000000000000000000000608482015260a401610a7c565b600461296661127d6001866158d0565b10612a19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604560248201527f576553656547686f7374733a20507572636861736520776f756c64206578636560448201527f6564206d61782047686f737473207075726368617361626c652070657220616460648201527f6472657373000000000000000000000000000000000000000000000000000000608482015260a401610a7c565b612a2b67011c37937e08000084613d0f565b9050803414612abc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f576553656547686f7374733a2053656e742065746865722076616c756520697360448201527f20696e636f7272656374000000000000000000000000000000000000000000006064820152608401610a7c565b33600090815260146020526040902054612ada9061ffff1684613b4a565b33600090815260146020526040808220805461ffff949094167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000090941693909317909255601054915164010000000090920473ffffffffffffffffffffffffffffffffffffffff16913480156108fc0292909190818181858888f19350505050158015612b6b573d6000803e3d6000fd5b5060005b83811015612b9b57612b89336117b861ffff861684613b4a565b80612b9381615967565b915050612b6f565b50612baa61ffff831684613b4a565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661ffff92909216919091179055604080513381526020810185905234918101919091524360608201527f705c72919c330b55359ad663596999fce8b0dbfe5dc8616ecf5b447b192b7b1190608001611ec5565b6120bc3383836141bb565b612c383383613d62565b612cc4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a7c565b610bb1848484846142e9565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16612d84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a7c565b6000612d8e61438c565b90506000815111612dae5760405180602001604052806000815250612dd9565b80612db88461439b565b604051602001612dc992919061553b565b6040516020818303038152906040525b9392505050565b612de9816122d8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612ea3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f73650000000000000000000000000000000000000000000000000000000000006064820152608401610a7c565b61ffff82166000908152600d602052604081208054612ec190615913565b905011612f50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c0000000000000000000000000000000000006064820152608401610a7c565b612f59816144cd565b60408051336020820152808201839052815180820383018152606082018352600f547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a2830193849052600b547f40a7bb1000000000000000000000000000000000000000000000000000000000909452909260019260009173ffffffffffffffffffffffffffffffffffffffff16906340a7bb109061301d908990309089908790899060a601615626565b604080518083038186803b15801561303457600080fd5b505afa158015613048573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061306c91906153ef565b50905080341015613125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604860248201527f5753473a206d73672e76616c7565206e6f7420656e6f75676820746f20636f7660448201527f6572206d6573736167654665652e2053656e642067617320666f72206d65737360648201527f6167652066656573000000000000000000000000000000000000000000000000608482015260a401610a7c565b600b5461ffff87166000908152600d602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9093169263c5803100923492613197928c928b913391908b9060040161574f565b6000604051808303818588803b1580156131b057600080fd5b505af11580156131c4573d6000803e3d6000fd5b5050505050505050505050565b61ffff85166000908152600c602052604080822090516131f290879061546d565b908152604080516020928190038301902067ffffffffffffffff871660009081529252902060018101549091506132ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f65737361676500000000000000000000000000000000000000000000000000006064820152608401610a7c565b8054821480156132d55750806001015483836040516132cb92919061545d565b6040518091039020145b61333b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000006044820152606401610a7c565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a822906133899089908990899089908990600401615685565b600060405180830381600087803b1580156133a357600080fd5b505af11580156133b7573d6000803e3d6000fd5b50505050505050505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314613444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b61ffff83166000908152600d60205260409020610bb1908383614d57565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146134e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b6010805473ffffffffffffffffffffffffffffffffffffffff909216640100000000027fffffffffffffffff0000000000000000000000000000000000000000ffffffff909216919091179055565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146135b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b73ffffffffffffffffffffffffffffffffffffffff8116613656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a7c565b61365f81614144565b50565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146136e3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b60105462010000900460ff161561377c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f576553656547686f7374733a2050726573616c6520616e642053616c6520636160448201527f6e6e6f7420626520616374697665206174207468652073616d652074696d65006064820152608401610a7c565b60115473ffffffffffffffffffffffffffffffffffffffff16613820576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f576553656547686f7374733a205369676e657220686173206e6f74206265656e60448201527f20736574000000000000000000000000000000000000000000000000000000006064820152608401610a7c565b601080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff811663010000009182900460ff1615909102179055565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146138dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a7c565b73ffffffffffffffffffffffffffffffffffffffff8116613980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f576553656547686f7374733a204d757374207573652076616c6964206164647260448201527f65737320666f7220576553656547686f7374732067616d65207369676e6572006064820152608401610a7c565b601180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480613a5a57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610c0d57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610c0d565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190613b04826122d8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612dd98284615867565b60408051808201909152601c81527f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152600090819083613b9d5760009150613bbd565b6001841415613baf5760019150613bbd565b6002841415613bbd57600291505b60008286604051602001613bd29291906155c6565b60405160208183030381529060405280519060200120905060008282604051602001613bff929190615489565b60405160208183030381529060405280519060200120905060006001828a604001518b600001518c6020015160405160008152602001604052604051613c61949392919093845260ff9290921660208401526040830152606082015260800190565b6020604051602081039080840390855afa158015613c83573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811615801590613ced575060115473ffffffffffffffffffffffffffffffffffffffff8281169116145b15613d0057600195505050505050612dd9565b50600098975050505050505050565b6000612dd98284615893565b6120bc8282604051806020016040528060008152506145a6565b60008082806020019051810190613d4c9190614fb3565b91509150613d5a8282613d1b565b505050505050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16613e13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a7c565b6000613e1e836122d8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613e8c575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b80613eca57508373ffffffffffffffffffffffffffffffffffffffff16613eb284610ca5565b73ffffffffffffffffffffffffffffffffffffffff16145b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16613ef2826122d8565b73ffffffffffffffffffffffffffffffffffffffff1614613f95576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610a7c565b73ffffffffffffffffffffffffffffffffffffffff8216614037576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a7c565b614042838383614649565b61404d600082613aaa565b73ffffffffffffffffffffffffffffffffffffffff831660009081526003602052604081208054600192906140839084906158d0565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054600192906140be908490615867565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415614251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a7c565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6142f4848484613ed2565b6143008484848461474f565b610bb1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a7c565b606060128054610c2290615913565b6060816143db57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561440557806143ef81615967565b91506143fe9050600a8361587f565b91506143df565b60008167ffffffffffffffff81111561442057614420615a70565b6040519080825280601f01601f19166020018201604052801561444a576020820181803683370190505b5090505b8415613eca5761445f6001836158d0565b915061446c600a866159a0565b614477906030615867565b60f81b81838151811061448c5761448c615a41565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506144c6600a8661587f565b945061444e565b60006144d8826122d8565b90506144e681600084614649565b6144f1600083613aaa565b73ffffffffffffffffffffffffffffffffffffffff811660009081526003602052604081208054600192906145279084906158d0565b909155505060008281526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6145b0838361494e565b6145bd600084848461474f565b610f07576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a7c565b73ffffffffffffffffffffffffffffffffffffffff83166146b1576146ac81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6146ee565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146146ee576146ee8382614b1c565b73ffffffffffffffffffffffffffffffffffffffff821661471257610f0781614bd3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610f0757610f078282614c82565b600073ffffffffffffffffffffffffffffffffffffffff84163b15614943576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906147c690339089908890889060040161556a565b602060405180830381600087803b1580156147e057600080fd5b505af192505050801561482e575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261482b91810190615143565b60015b6148f8573d80801561485c576040519150601f19603f3d011682016040523d82523d6000602084013e614861565b606091505b5080516148f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a7c565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050613eca565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff82166149cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a7c565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615614a57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a7c565b614a6360008383614649565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290614a99908490615867565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001614b298461238a565b614b3391906158d0565b600083815260076020526040902054909150808214614b935773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b600854600090614be5906001906158d0565b60008381526009602052604081205460088054939450909284908110614c0d57614c0d615a41565b906000526020600020015490508060088381548110614c2e57614c2e615a41565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480614c6657614c66615a12565b6001900381819060005260206000200160009055905550505050565b6000614c8d8361238a565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054614cdf90615913565b90600052602060002090601f016020900481019282614d015760008555614d47565b82601f10614d1a57805160ff1916838001178555614d47565b82800160010185558215614d47579182015b82811115614d47578251825591602001919060010190614d2c565b50614d53929150614de9565b5090565b828054614d6390615913565b90600052602060002090601f016020900481019282614d855760008555614d47565b82601f10614dbc578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555614d47565b82800160010185558215614d47579182015b82811115614d47578235825591602001919060010190614dce565b5b80821115614d535760008155600101614dea565b600067ffffffffffffffff80841115614e1957614e19615a70565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715614e5f57614e5f615a70565b81604052809350858152868686011115614e7857600080fd5b858560208301376000602087830101525050509392505050565b60008083601f840112614ea457600080fd5b50813567ffffffffffffffff811115614ebc57600080fd5b602083019150836020828501011115614ed457600080fd5b9250929050565b600082601f830112614eec57600080fd5b612dd983833560208501614dfe565b600060608284031215614f0d57600080fd5b6040516060810181811067ffffffffffffffff82111715614f3057614f30615a70565b80604052508091508235815260208301356020820152604083013560ff81168114614f5a57600080fd5b6040919091015292915050565b803561ffff81168114614f7957600080fd5b919050565b803567ffffffffffffffff81168114614f7957600080fd5b600060208284031215614fa857600080fd5b8135612dd981615a9f565b60008060408385031215614fc657600080fd5b8251614fd181615a9f565b6020939093015192949293505050565b60008060408385031215614ff457600080fd5b8235614fff81615a9f565b9150602083013561500f81615a9f565b809150509250929050565b60008060006060848603121561502f57600080fd5b833561503a81615a9f565b9250602084013561504a81615a9f565b929592945050506040919091013590565b6000806000806080858703121561507157600080fd5b843561507c81615a9f565b9350602085013561508c81615a9f565b925060408501359150606085013567ffffffffffffffff8111156150af57600080fd5b6150bb87828801614edb565b91505092959194509250565b600080604083850312156150da57600080fd5b82356150e581615a9f565b91506020830135801515811461500f57600080fd5b6000806040838503121561510d57600080fd5b823561511881615a9f565b946020939093013593505050565b60006020828403121561513857600080fd5b8135612dd981615ac1565b60006020828403121561515557600080fd5b8151612dd981615ac1565b60006020828403121561517257600080fd5b813567ffffffffffffffff81111561518957600080fd5b8201601f8101841361519a57600080fd5b613eca84823560208401614dfe565b6000602082840312156151bb57600080fd5b612dd982614f67565b6000806000604084860312156151d957600080fd5b6151e284614f67565b9250602084013567ffffffffffffffff8111156151fe57600080fd5b61520a86828701614e92565b9497909650939450505050565b60008060006060848603121561522c57600080fd5b61523584614f67565b9250602084013567ffffffffffffffff81111561525157600080fd5b61525d86828701614edb565b925050604084013590509250925092565b60008060008060006080868803121561528657600080fd5b61528f86614f67565b9450602086013567ffffffffffffffff808211156152ac57600080fd5b6152b889838a01614edb565b95506152c660408901614f7e565b945060608801359150808211156152dc57600080fd5b506152e988828901614e92565b969995985093965092949392505050565b6000806000806080858703121561531057600080fd5b61531985614f67565b9350602085013567ffffffffffffffff8082111561533657600080fd5b61534288838901614edb565b945061535060408801614f7e565b9350606087013591508082111561536657600080fd5b506150bb87828801614edb565b6000806040838503121561538657600080fd5b61511883614f67565b6000602082840312156153a157600080fd5b5035919050565b60008060008061010085870312156153bf57600080fd5b843593506153d08660208701614efb565b92506153df8660808701614efb565b9396929550929360e00135925050565b6000806040838503121561540257600080fd5b505080516020909101519092909150565b6000815180845261542b8160208601602086016158e7565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b8183823760009101908152919050565b6000825161547f8184602087016158e7565b9190910192915050565b6000835161549b8184602088016158e7565b9190910191825250602001919050565b60008083546154b981615913565b600182811680156154d157600181146155005761552f565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752828701945061552f565b8760005260208060002060005b858110156155265781548a82015290840190820161550d565b50505082870194505b50929695505050505050565b6000835161554d8184602088016158e7565b8351908301906155618183602088016158e7565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526155a96080830184615413565b9695505050505050565b602081526000612dd96020830184615413565b6040810160058410615601577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b92815273ffffffffffffffffffffffffffffffffffffffff9190911660209091015290565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a06040820152600061565f60a0830186615413565b841515606084015282810360808401526156798185615413565b98975050505050505050565b61ffff861681526080602082015260006156a26080830187615413565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b61ffff851681526080602082015260006157226080830186615413565b67ffffffffffffffff8516604084015282810360608401526157448185615413565b979650505050505050565b61ffff871681526000602060c0818401526000885461576d81615913565b8060c087015260e060018084166000811461578f57600181146157c2576157f0565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a0152610100890195506157f0565b8d6000528660002060005b858110156157e85781548b82018601529083019088016157cd565b8a0184019650505b505050505083810360408501526158078189615413565b91505061582c606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a084015261585a8185615413565b9998505050505050505050565b6000821982111561587a5761587a6159b4565b500190565b60008261588e5761588e6159e3565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156158cb576158cb6159b4565b500290565b6000828210156158e2576158e26159b4565b500390565b60005b838110156159025781810151838201526020016158ea565b83811115610bb15750506000910152565b600181811c9082168061592757607f821691505b60208210811415615961577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615999576159996159b4565b5060010190565b6000826159af576159af6159e3565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff8116811461365f57600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461365f57600080fdfea264697066735822122054aaa4e4d51d255cd7ca6ef6f43fe531e2b2de6267df5ab6295a6711ec772f8b64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67500000000000000000000000000000000000000000000000000000000000000012f00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): /
Arg [1] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 2f00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

77691:11449:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60952:949;;;;;;;;;;-1:-1:-1;60952:949:0;;;;;:::i;:::-;;:::i;:::-;;46427:224;;;;;;;;;;-1:-1:-1;46427:224:0;;;;;:::i;:::-;;:::i;:::-;;;15087:14:1;;15080:22;15062:41;;15050:2;15035:18;46427:224:0;;;;;;;;33246:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34806:221::-;;;;;;;;;;-1:-1:-1;34806:221:0;;;;;:::i;:::-;;:::i;:::-;;;13357:42:1;13345:55;;;13327:74;;13315:2;13300:18;34806:221:0;13181:226:1;34329:411:0;;;;;;;;;;-1:-1:-1;34329:411:0;;;;;:::i;:::-;;:::i;47067:113::-;;;;;;;;;;-1:-1:-1;47155:10:0;:17;47067:113;;;38283:25:1;;;38271:2;38256:18;47067:113:0;38137:177:1;81957:2737:0;;;;;;:::i;:::-;;:::i;61909:356::-;;;;;;;;;;-1:-1:-1;61909:356:0;;;;;:::i;:::-;;:::i;35556:339::-;;;;;;;;;;-1:-1:-1;35556:339:0;;;;;:::i;:::-;;:::i;46735:256::-;;;;;;;;;;-1:-1:-1;46735:256:0;;;;;:::i;:::-;;:::i;84702:839::-;;;;;;;;;;-1:-1:-1;84702:839:0;;;;;:::i;:::-;;:::i;79311:202::-;;;;;;;;;;;;;:::i;80120:116::-;;;;;;;;;;-1:-1:-1;80120:116:0;;;;;:::i;:::-;;:::i;87601:143::-;;;;;;;;;;;;;:::i;78468:57::-;;;;;;;;;;;;78515:10;78468:57;;;;;34327:34:1;34315:47;;;34297:66;;34285:2;34270:18;78468:57:0;34151:218:1;35966:185:0;;;;;;;;;;-1:-1:-1;35966:185:0;;;;;:::i;:::-;;:::i;47257:233::-;;;;;;;;;;-1:-1:-1;47257:233:0;;;;;:::i;:::-;;:::i;79001:43::-;;;;;;;;;;-1:-1:-1;79001:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34548:6:1;34536:19;;;34518:38;;34506:2;34491:18;79001:43:0;34374:188:1;78532:39:0;;;;;;;;;;;;78568:3;78532:39;;78869:31;;;;;;;;;;-1:-1:-1;78869:31:0;;;;;;;;;;;87487:106;;;;;;;;;;;;;:::i;32940:239::-;;;;;;;;;;-1:-1:-1;32940:239:0;;;;;:::i;:::-;;:::i;32670:208::-;;;;;;;;;;-1:-1:-1;32670:208:0;;;;;:::i;:::-;;:::i;11804:103::-;;;;;;;;;;;;;:::i;60794:51::-;;;;;;;;;;-1:-1:-1;60794:51:0;;;;;:::i;:::-;;:::i;78683:29::-;;;;;;;;;;-1:-1:-1;78683:29:0;;;;;;;;78766:28;;;;;;;;;;-1:-1:-1;78766:28:0;;;;;;;;11153:87;;;;;;;;;;-1:-1:-1;11226:6:0;;;;11153:87;;60697:90;;;;;;;;;;-1:-1:-1;60697:90:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38493:25:1;;;38549:2;38534:18;;38527:34;;;;38466:18;60697:90:0;38319:248:1;87354:125:0;;;;;;;;;;-1:-1:-1;87354:125:0;;;;;:::i;:::-;;:::i;33415:104::-;;;;;;;;;;;;;:::i;80520:1392::-;;;;;;:::i;:::-;;:::i;35099:155::-;;;;;;;;;;-1:-1:-1;35099:155:0;;;;;:::i;:::-;;:::i;78627:49::-;;;;;;;;;;;;78675:1;78627:49;;78971:21;;;;;;;;;;-1:-1:-1;78971:21:0;;;;;;;;36222:328;;;;;;;;;;-1:-1:-1;36222:328:0;;;;;:::i;:::-;;:::i;33590:334::-;;;;;;;;;;-1:-1:-1;33590:334:0;;;;;:::i;:::-;;:::i;78414:47::-;;;;;;;;;;;;78452:9;78414:47;;85681:1589;;;;;;:::i;:::-;;:::i;62741:758::-;;;;;;:::i;:::-;;:::i;35325:164::-;;;;;;;;;;-1:-1:-1;35325:164:0;;;;;:::i;:::-;35446:25;;;;35422:4;35446:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35325:164;63507:158;;;;;;;;;;-1:-1:-1;63507:158:0;;;;;:::i;:::-;;:::i;80373:106::-;;;;;;;;;;-1:-1:-1;80373:106:0;;;;;:::i;:::-;;:::i;12062:201::-;;;;;;;;;;-1:-1:-1;12062:201:0;;;;;:::i;:::-;;:::i;78578:42::-;;;;;;;;;;;;78618:2;78578:42;;79521:281;;;;;;;;;;;;;:::i;79810:223::-;;;;;;;;;;-1:-1:-1;79810:223:0;;;;;:::i;:::-;;:::i;60952:949::-;61114:8;;;;61092:10;:31;61084:40;;;;;;61235:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;61213:11;:18;:61;:134;;;;-1:-1:-1;61314:32:0;;;;;;;:19;:32;;;;;;;61304:43;;;;61314:32;61304:43;:::i;:::-;;;;;;;;61288:11;61278:22;;;;;;:69;61213:134;61205:213;;;;;;;27569:2:1;61205:213:0;;;27551:21:1;27608:2;27588:18;;;27581:30;27647:34;27627:18;;;27620:62;27718:22;27698:18;;;27691:50;27758:19;;61205:213:0;;;;;;;;;61546:60;;;;;:4;;:16;;:60;;61563:11;;61576;;61589:6;;61597:8;;61546:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61542:352;;61753:52;;;;;;;;61768:8;:15;61753:52;;;;61795:8;61785:19;;;;;;61753:52;;;61702:14;:27;61717:11;61702:27;;;;;;;;;;;;;;;61730:11;61702:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:48;;;;;;;;;;;;;;:103;;;;;;;;;;;;;;;61825:57;;;;61839:11;;61852;;61743:6;;61873:8;;61825:57;:::i;:::-;;;;;;;;61542:352;60952:949;;;;:::o;46427:224::-;46529:4;46553:50;;;46568:35;46553:50;;:90;;;46607:36;46631:11;46607:23;:36::i;:::-;46546:97;46427:224;-1:-1:-1;;46427:224:0:o;33246:100::-;33300:13;33333:5;33326:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33246:100;:::o;34806:221::-;34882:7;38149:16;;;:7;:16;;;;;;:30;:16;34902:73;;;;;;;25974:2:1;34902:73:0;;;25956:21:1;26013:2;25993:18;;;25986:30;26052:34;26032:18;;;26025:62;26123:14;26103:18;;;26096:42;26155:19;;34902:73:0;25772:408:1;34902:73:0;-1:-1:-1;34995:24:0;;;;:15;:24;;;;;;;;;34806:221::o;34329:411::-;34410:13;34426:23;34441:7;34426:14;:23::i;:::-;34410:39;;34474:5;34468:11;;:2;:11;;;;34460:57;;;;;;;30063:2:1;34460:57:0;;;30045:21:1;30102:2;30082:18;;;30075:30;30141:34;30121:18;;;30114:62;30212:3;30192:18;;;30185:31;30233:19;;34460:57:0;29861:397:1;34460:57:0;9957:10;34552:21;;;;;:62;;-1:-1:-1;34577:37:0;34594:5;9957:10;35325:164;:::i;34577:37::-;34530:168;;;;;;;22664:2:1;34530:168:0;;;22646:21:1;22703:2;22683:18;;;22676:30;22742:34;22722:18;;;22715:62;22813:26;22793:18;;;22786:54;22857:19;;34530:168:0;22462:420:1;34530:168:0;34711:21;34720:2;34724:7;34711:8;:21::i;:::-;34399:341;34329:411;;:::o;81957:2737::-;82160:11;;82220:8;;82160:11;;;;;82138:19;;82220:8;;;:22;:8;82212:73;;;;;;;27990:2:1;82212:73:0;;;27972:21:1;28029:2;28009:18;;;28002:30;28068:34;28048:18;;;28041:62;28139:8;28119:18;;;28112:36;28165:19;;82212:73:0;27788:402:1;82212:73:0;82321:1;82304:14;:18;82296:95;;;;;;;;19468:2:1;82296:95:0;;;19450:21:1;19487:18;;;19480:30;;;;19546:34;19526:18;;;19519:62;19617:34;19597:18;;;19590:62;19669:19;;82296:95:0;19266:428:1;82296:95:0;82410:15;;;;;;;;:31;;-1:-1:-1;82429:12:0;;;;;;;82410:31;82402:92;;;;;;;29227:2:1;82402:92:0;;;29209:21:1;29266:2;29246:18;;;29239:30;29305:34;29285:18;;;29278:62;29376:18;29356;;;29349:46;29412:19;;82402:92:0;29025:412:1;82402:92:0;78568:3;82513:34;82530:16;82545:1;82530:14;:16;:::i;:::-;82513;;;;;:34::i;:::-;:47;82505:105;;;;;;;28397:2:1;82505:105:0;;;28379:21:1;28436:2;28416:18;;;28409:30;28475:34;28455:18;;;28448:62;28546:15;28526:18;;;28519:43;28579:19;;82505:105:0;28195:409:1;82505:105:0;78675:1;82630:16;82645:1;82630:14;:16;:::i;:::-;82629:43;82621:136;;;;;;;30465:2:1;82621:136:0;;;30447:21:1;30504:2;30484:18;;;30477:30;30543:34;30523:18;;;30516:62;30614:34;30594:18;;;30587:62;30686:18;30665:19;;;30658:47;30722:19;;82621:136:0;30263:484:1;82621:136:0;78675:1;82776:43;82802:16;82817:1;82802:14;:16;:::i;:::-;82786:10;82776:21;;;;:9;:21;;;;;;;;;:25;:43::i;:::-;:68;82768:150;;;;;;;24730:2:1;82768:150:0;;;24712:21:1;24769:2;24749:18;;;24742:30;24808:34;24788:18;;;24781:62;24879:34;24859:18;;;24852:62;24951:7;24930:19;;;24923:36;24976:19;;82768:150:0;24528:473:1;82768:150:0;82938:10;;;82937:28;;;82954:5;82963:1;82954:10;82937:28;:44;;;;82970:5;82979:1;82970:10;82937:44;82929:93;;;;;;;25569:2:1;82929:93:0;;;25551:21:1;25608:2;25588:18;;;25581:30;25647:34;25627:18;;;25620:62;25718:6;25698:18;;;25691:34;25742:19;;82929:93:0;25367:400:1;82929:93:0;83041:9;;:23;:9;83033:72;;;;;;;33948:2:1;83033:72:0;;;33930:21:1;33987:2;33967:18;;;33960:30;34026:34;34006:18;;;33999:62;34097:6;34077:18;;;34070:34;34121:19;;83033:72:0;33746:400:1;83033:72:0;83153:15;;;;;;;83149:218;;;83197:18;83218:46;83233:15;83250:10;83262:1;83218:14;:46::i;:::-;83197:67;;83287:13;83279:76;;;;;;;29644:2:1;83279:76:0;;;29626:21:1;29683:2;29663:18;;;29656:30;29722:34;29702:18;;;29695:62;29793:20;29773:18;;;29766:48;29831:19;;83279:76:0;29442:414:1;83279:76:0;83170:197;83149:218;83388:12;83403:49;83418:14;83434:10;83446:5;83403:14;:49::i;:::-;83388:64;;83479:7;83471:59;;;;;;;23910:2:1;83471:59:0;;;23892:21:1;23949:2;23929:18;;;23922:30;23988:34;23968:18;;;23961:62;24059:9;24039:18;;;24032:37;24086:19;;83471:59:0;23708:403:1;83471:59:0;83546:30;83543:513;;83723:10;83592:15;83713:21;;;:9;:21;;;;;;83610:1;;83713:21;;:26;83709:60;;-1:-1:-1;83768:1:0;83709:60;83796:50;83821:24;83838:7;83821:14;:24;:::i;:::-;78515:10;;83796:24;:50::i;:::-;83784:62;;83577:281;83543:513;;;83881:18;83867:5;:33;83864:192;;;83928:40;78515:10;83953:14;83928:24;:40::i;:::-;83916:52;;83864:192;;;84013:31;78452:9;84029:14;84013:15;:31::i;:::-;84001:43;;83864:192;84089:9;84076;:22;84068:77;;;;;;;33130:2:1;84068:77:0;;;33112:21:1;33169:2;33149:18;;;33142:30;33208:34;33188:18;;;33181:62;33279:12;33259:18;;;33252:40;33309:19;;84068:77:0;32928:406:1;84068:77:0;84197:10;84187:21;;;;:9;:21;;;;;;:41;;:21;;84213:14;84187:25;:41::i;:::-;84166:10;84156:21;;;;:9;:21;;;;;;:73;;;;;;;;;;;;;;;;;;84240:8;;:28;;:8;;;;84156:21;84240:8;;84258:9;84240:28;;;;;84258:9;;84240:28;;84156:21;84240:28;84258:9;84240:8;:28;;;;;;;;;;;;;;;;;;;;;84286:6;84281:111;84302:14;84298:1;:18;84281:111;;;84338:42;84348:10;84360:19;:16;;;84377:1;84360:16;:19::i;:::-;84338:9;:42::i;:::-;84318:3;;;;:::i;:::-;;;;84281:111;;;-1:-1:-1;84425:32:0;:16;;;84442:14;84425:16;:32::i;:::-;84404:11;:54;;;;;;;;;;;;;;;84475:15;;;;;;;84471:216;;;84512:64;;;84524:10;14708:74:1;;14813:2;14798:18;;14791:34;;;84552:9:0;14841:18:1;;;14834:34;84563:12:0;14899:2:1;14884:18;;14877:34;84512:64:0;;;;;;;14695:3:1;84512:64:0;;;84471:216;;;84614:61;;;84623:10;14708:74:1;;14813:2;14798:18;;14791:34;;;84651:9:0;14841:18:1;;;14834:34;84662:12:0;14899:2:1;14884:18;;14877:34;84614:61:0;;;;;;;14695:3:1;84614:61:0;;;84471:216;82127:2567;;;81957:2737;;;;:::o;61909:356::-;62078:10;62100:4;62078:27;62070:83;;;;;;;24318:2:1;62070:83:0;;;24300:21:1;24357:2;24337:18;;;24330:30;24396:34;24376:18;;;24369:62;24467:13;24447:18;;;24440:41;24498:19;;62070:83:0;24116:407:1;62070:83:0;62202:55;62214:11;62227;62240:6;62248:8;62202:10;:55::i;35556:339::-;35751:41;9957:10;35784:7;35751:18;:41::i;:::-;35743:103;;;;;;;30954:2:1;35743:103:0;;;30936:21:1;30993:2;30973:18;;;30966:30;31032:34;31012:18;;;31005:62;31103:19;31083:18;;;31076:47;31140:19;;35743:103:0;30752:413:1;35743:103:0;35859:28;35869:4;35875:2;35879:7;35859:9;:28::i;46735:256::-;46832:7;46868:23;46885:5;46868:16;:23::i;:::-;46860:5;:31;46852:87;;;;;;;17467:2:1;46852:87:0;;;17449:21:1;17506:2;17486:18;;;17479:30;17545:34;17525:18;;;17518:62;17616:13;17596:18;;;17589:41;17647:19;;46852:87:0;17265:407:1;46852:87:0;-1:-1:-1;46957:19:0;;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;46735:256::o;84702:839::-;11226:6;;11373:23;11226:6;9957:10;11373:23;11365:68;;;;;;;27208:2:1;11365:68:0;;;27190:21:1;;;27227:18;;;27220:30;27286:34;27266:18;;;27259:62;27338:18;;11365:68:0;27006:356:1;11365:68:0;84814:11:::1;::::0;84846:8:::1;::::0;84814:11:::1;::::0;;::::1;::::0;84846:8;;::::1;:22;:8;84838:51;;;::::0;::::1;::::0;;16690:2:1;84838:51:0::1;::::0;::::1;16672:21:1::0;16729:2;16709:18;;;16702:30;16768:18;16748;;;16741:46;16804:18;;84838:51:0::1;16488:340:1::0;84838:51:0::1;84908:23;::::0;::::1;84900:74;;;::::0;::::1;::::0;;26801:2:1;84900:74:0::1;::::0;::::1;26783:21:1::0;26840:2;26820:18;;;26813:30;26879:34;26859:18;;;26852:62;26950:8;26930:18;;;26923:36;26976:19;;84900:74:0::1;26599:402:1::0;84900:74:0::1;78568:3;84993:34;85010:16;85025:1;85010:14:::0;:16:::1;:::i;:::-;84993;::::0;::::1;::::0;::::1;:34::i;:::-;:47;84985:105;;;::::0;::::1;::::0;;28397:2:1;84985:105:0::1;::::0;::::1;28379:21:1::0;28436:2;28416:18;;;28409:30;28475:34;28455:18;;;28448:62;28546:15;28526:18;;;28519:43;28579:19;;84985:105:0::1;28195:409:1::0;84985:105:0::1;78618:2;85109:36;85128:16;85143:1;85128:14:::0;:16:::1;:::i;:::-;85109:14;::::0;::::1;;::::0;:18:::1;:36::i;:::-;:53;85101:115;;;::::0;::::1;::::0;;19901:2:1;85101:115:0::1;::::0;::::1;19883:21:1::0;19940:2;19920:18;;;19913:30;19979:34;19959:18;;;19952:62;20050:19;20030:18;;;20023:47;20087:19;;85101:115:0::1;19699:413:1::0;85101:115:0::1;85242:6;85237:110;85258:14;85254:1;:18;85237:110;;;85294:41;85304:9:::0;85315:19:::1;:16;::::0;::::1;85332:1:::0;85315:16:::1;:19::i;85294:41::-;85274:3:::0;::::1;::::0;::::1;:::i;:::-;;;;85237:110;;;-1:-1:-1::0;85378:32:0::1;:16;::::0;::::1;85395:14:::0;85378:16:::1;:32::i;:::-;85357:11;:54:::0;;;::::1;;::::0;;::::1;;::::0;;85446:14:::1;::::0;:34:::1;::::0;:14:::1;85465::::0;85446:18:::1;:34::i;:::-;85422:14;:59:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;85499:34:::1;::::0;;14379:42:1;14367:55;;14349:74;;14454:2;14439:18;;14432:34;;;85499::0::1;::::0;14322:18:1;85499:34:0::1;;;;;;;;84781:760;84702:839:::0;;:::o;79311:202::-;11226:6;;11373:23;11226:6;9957:10;11373:23;11365:68;;;;;;;27208:2:1;11365:68:0;;;27190:21:1;;;27227:18;;;27220:30;27286:34;27266:18;;;27259:62;27338:18;;11365:68:0;27006:356:1;11365:68:0;79373:15:::1;::::0;;;::::1;;;79372:16;79364:92;;;::::0;::::1;::::0;;32217:2:1;79364:92:0::1;::::0;::::1;32199:21:1::0;32256:2;32236:18;;;32229:30;32295:34;32275:18;;;32268:62;32366:33;32346:18;;;32339:61;32417:19;;79364:92:0::1;32015:427:1::0;79364:92:0::1;79493:12;::::0;;79477:28;;::::1;79493:12:::0;;;;::::1;;;79492:13;79477:28:::0;;::::1;;::::0;;79311:202::o;80120:116::-;11226:6;;11373:23;11226:6;9957:10;11373:23;11365:68;;;;;;;27208:2:1;11365:68:0;;;27190:21:1;;;27227:18;;;27220:30;27286:34;27266:18;;;27259:62;27338:18;;11365:68:0;27006:356:1;11365:68:0;80199:29;;::::1;::::0;:16:::1;::::0;:29:::1;::::0;::::1;::::0;::::1;:::i;:::-;;80120:116:::0;:::o;87601:143::-;11226:6;;11373:23;11226:6;9957:10;11373:23;11365:68;;;;;;;27208:2:1;11365:68:0;;;27190:21:1;;;27227:18;;;27220:30;27286:34;27266:18;;;27259:62;27338:18;;11365:68:0;27006:356:1;11365:68:0;87699:37:::1;::::0;87667:21:::1;::::0;87707:10:::1;::::0;87699:37;::::1;;;::::0;87667:21;;87649:15:::1;87699:37:::0;87649:15;87699:37;87667:21;87707:10;87699:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;35966:185:::0;36104:39;36121:4;36127:2;36131:7;36104:39;;;;;;;;;;;;:16;:39::i;47257:233::-;47332:7;47368:30;47155:10;:17;;47067:113;47368:30;47360:5;:38;47352:95;;;;;;;31804:2:1;47352:95:0;;;31786:21:1;31843:2;31823:18;;;31816:30;31882:34;31862:18;;;31855:62;31953:14;31933:18;;;31926:42;31985:19;;47352:95:0;31602:408:1;47352:95:0;47465:10;47476:5;47465:17;;;;;;;;:::i;:::-;;;;;;;;;47458:24;;47257:233;;;:::o;87487:106::-;11226:6;;87545;;11373:23;11226:6;9957:10;11373:23;11365:68;;;;;;;27208:2:1;11365:68:0;;;27190:21:1;;;27227:18;;;27220:30;27286:34;27266:18;;;27259:62;27338:18;;11365:68:0;27006:356:1;11365:68:0;-1:-1:-1;87571:14:0::1;::::0;::::1;;87487:106:::0;:::o;32940:239::-;33012:7;33048:16;;;:7;:16;;;;;;;;33083:19;33075:73;;;;;;;23500:2:1;33075:73:0;;;23482:21:1;23539:2;23519:18;;;23512:30;23578:34;23558:18;;;23551:62;23649:11;23629:18;;;23622:39;23678:19;;33075:73:0;23298:405:1;32670:208:0;32742:7;32770:19;;;32762:74;;;;;;;23089:2:1;32762:74:0;;;23071:21:1;23128:2;23108:18;;;23101:30;23167:34;23147:18;;;23140:62;23238:12;23218:18;;;23211:40;23268:19;;32762:74:0;22887:406:1;32762:74:0;-1:-1:-1;32854:16:0;;;;;;:9;:16;;;;;;;32670:208::o;11804:103::-;11226:6;;11373:23;11226:6;9957:10;11373:23;11365:68;;;;;;;27208:2:1;11365:68:0;;;27190:21:1;;;27227:18;;;27220:30;27286:34;27266:18;;;27259:62;27338:18;;11365:68:0;27006:356:1;11365:68:0;11869:30:::1;11896:1;11869:18;:30::i;:::-;11804:103::o:0;60794:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;87354:125::-;11226:6;;11373:23;11226:6;9957:10;11373:23;11365:68;;;;;;;27208:2:1;11365:68:0;;;27190:21:1;;;27227:18;;;27220:30;27286:34;27266:18;;;27259:62;27338:18;;11365:68:0;27006:356:1;11365:68:0;87436:26:::1;:35:::0;87354:125::o;33415:104::-;33471:13;33504:7;33497:14;;;;;:::i;80520:1392::-;80606:11;;80666:8;;80606:11;;;;;80584:19;;80666:8;;;:22;:8;80658:73;;;;;;;27990:2:1;80658:73:0;;;27972:21:1;28029:2;28009:18;;;28002:30;28068:34;28048:18;;;28041:62;28139:8;28119:18;;;28112:36;28165:19;;80658:73:0;27788:402:1;80658:73:0;80767:1;80750:14;:18;80742:95;;;;;;;;19468:2:1;80742:95:0;;;19450:21:1;19487:18;;;19480:30;;;;19546:34;19526:18;;;19519:62;19617:34;19597:18;;;19590:62;19669:19;;80742:95:0;19266:428:1;80742:95:0;80856:12;;;;;;;80848:70;;;;;;;26387:2:1;80848:70:0;;;26369:21:1;26426:2;26406:18;;;26399:30;26465:34;26445:18;;;26438:62;26536:15;26516:18;;;26509:43;26569:19;;80848:70:0;26185:409:1;80848:70:0;78568:3;80937:34;80954:16;80969:1;80954:14;:16;:::i;80937:34::-;:47;80929:105;;;;;;;28397:2:1;80929:105:0;;;28379:21:1;28436:2;28416:18;;;28409:30;28475:34;28455:18;;;28448:62;28546:15;28526:18;;;28519:43;28579:19;;80929:105:0;28195:409:1;80929:105:0;78675:1;81054:16;81069:1;81054:14;:16;:::i;:::-;81053:43;81045:136;;;;;;;30465:2:1;81045:136:0;;;30447:21:1;30504:2;30484:18;;;30477:30;30543:34;30523:18;;;30516:62;30614:34;30594:18;;;30587:62;30686:18;30665:19;;;30658:47;30722:19;;81045:136:0;30263:484:1;81045:136:0;78675:1;81200:43;81226:16;81241:1;81226:14;:16;:::i;81200:43::-;:68;81192:150;;;;;;;24730:2:1;81192:150:0;;;24712:21:1;24769:2;24749:18;;;24742:30;24808:34;24788:18;;;24781:62;24879:34;24859:18;;;24852:62;24951:7;24930:19;;;24923:36;24976:19;;81192:150:0;24528:473:1;81192:150:0;81375:31;78452:9;81391:14;81375:15;:31::i;:::-;81363:43;;81448:9;81435;:22;81427:77;;;;;;;33130:2:1;81427:77:0;;;33112:21:1;33169:2;33149:18;;;33142:30;33208:34;33188:18;;;33181:62;33279:12;33259:18;;;33252:40;33309:19;;81427:77:0;32928:406:1;81427:77:0;81556:10;81546:21;;;;:9;:21;;;;;;:41;;:21;;81572:14;81546:25;:41::i;:::-;81525:10;81515:21;;;;:9;:21;;;;;;:73;;;;;;;;;;;;;;;;;;81599:8;;:28;;:8;;;;81515:21;81599:8;;81617:9;81599:28;;;;;81617:9;;81599:28;;81515:21;81599:28;81617:9;81599:8;:28;;;;;;;;;;;;;;;;;;;;;81645:6;81640:111;81661:14;81657:1;:18;81640:111;;;81697:42;81707:10;81719:19;:16;;;81736:1;81719:16;:19::i;81697:42::-;81677:3;;;;:::i;:::-;;;;81640:111;;;-1:-1:-1;81784:32:0;:16;;;81801:14;81784:16;:32::i;:::-;81763:11;:54;;;;;;;;;;;;;;;81843:61;;;81852:10;14708:74:1;;14813:2;14798:18;;14791:34;;;81880:9:0;14841:18:1;;;14834:34;;;;81891:12:0;14899:2:1;14884:18;;14877:34;81843:61:0;;14695:3:1;14680:19;81843:61:0;14477:440:1;35099:155:0;35194:52;9957:10;35227:8;35237;35194:18;:52::i;36222:328::-;36397:41;9957:10;36430:7;36397:18;:41::i;:::-;36389:103;;;;;;;30954:2:1;36389:103:0;;;30936:21:1;30993:2;30973:18;;;30966:30;31032:34;31012:18;;;31005:62;31103:19;31083:18;;;31076:47;31140:19;;36389:103:0;30752:413:1;36389:103:0;36503:39;36517:4;36523:2;36527:7;36536:5;36503:13;:39::i;33590:334::-;38125:4;38149:16;;;:7;:16;;;;;;33663:13;;38149:30;:16;33689:76;;;;;;;28811:2:1;33689:76:0;;;28793:21:1;28850:2;28830:18;;;28823:30;28889:34;28869:18;;;28862:62;28960:17;28940:18;;;28933:45;28995:19;;33689:76:0;28609:411:1;33689:76:0;33778:21;33802:10;:8;:10::i;:::-;33778:34;;33854:1;33836:7;33830:21;:25;:86;;;;;;;;;;;;;;;;;33882:7;33891:18;:7;:16;:18::i;:::-;33865:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33830:86;33823:93;33590:334;-1:-1:-1;;;33590:334:0:o;85681:1589::-;85784:16;85792:7;85784;:16::i;:::-;85770:30;;:10;:30;;;85762:77;;;;;;;21848:2:1;85762:77:0;;;21830:21:1;21887:2;21867:18;;;21860:30;21926:34;21906:18;;;21899:62;21997:4;21977:18;;;21970:32;22019:19;;85762:77:0;21646:398:1;85762:77:0;85858:29;;;85897:1;85858:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;85850:99;;;;;;;21078:2:1;85850:99:0;;;21060:21:1;21117:2;21097:18;;;21090:30;21156:34;21136:18;;;21129:62;21227:16;21207:18;;;21200:44;21261:19;;85850:99:0;20876:410:1;85850:99:0;86029:14;86035:7;86029:5;:14::i;:::-;86140:31;;;86151:10;86140:31;;;14349:74:1;14439:18;;;14432:34;;;86140:31:0;;;;;;;;;14322:18:1;;;86140:31:0;;86341:26;;13020:16:1;86315:53:0;;;13004:102:1;13122:11;;;;13115:27;;;;86315:53:0;;;;;;;;;;13158:12:1;;;86315:53:0;;;;86544:8;;:77;;;;86140:31;;86274:1;;-1:-1:-1;;86544:8:0;;;:21;;:77;;86566:8;;86584:4;;86140:31;;-1:-1:-1;;86315:53:0;;86544:77;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;86522:99;;;86663:10;86650:9;:23;;86642:108;;;;;;;32649:2:1;86642:108:0;;;32631:21:1;32688:2;32668:18;;;32661:30;32727:34;32707:18;;;32700:62;32798:34;32778:18;;;32771:62;32870:10;32849:19;;;32842:39;32898:19;;86642:108:0;32447:476:1;86642:108:0;86763:8;;86881:29;;;86763:8;86881:29;;;:19;:29;;;;;;86763:499;;;;;:8;;;;;:13;;86784:9;;86763:499;;86809:8;;86969:7;;87052:10;;86763:8;87199:13;;86763:499;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85751:1519;;;;85681:1589;;:::o;62741:758::-;62957:27;;;62922:32;62957:27;;;:14;:27;;;;;;:40;;;;62985:11;;62957:40;:::i;:::-;;;;;;;;;;;;;;;;:48;;;;;;;;;;;63024:21;;;;62957:48;;-1:-1:-1;63016:86:0;;;;;;;33541:2:1;63016:86:0;;;33523:21:1;33580:2;33560:18;;;33553:30;33619:34;33599:18;;;33592:62;33690:8;33670:18;;;33663:36;33716:19;;63016:86:0;33339:402:1;63016:86:0;63140:23;;63121:42;;:90;;;;;63190:9;:21;;;63177:8;;63167:19;;;;;;;:::i;:::-;;;;;;;;:44;63121:90;63113:129;;;;;;;21493:2:1;63113:129:0;;;21475:21:1;21532:2;21512:18;;;21505:30;21571:28;21551:18;;;21544:56;21617:18;;63113:129:0;21291:350:1;63113:129:0;63316:1;63290:27;;;63328:21;;;:34;63431:60;;;;;:4;;:16;;:60;;63448:11;;63461;;63474:6;;63482:8;;;;63431:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62866:633;62741:758;;;;;:::o;63507:158::-;11226:6;;11373:23;11226:6;9957:10;11373:23;11365:68;;;;;;;27208:2:1;11365:68:0;;;27190:21:1;;;27227:18;;;27220:30;27286:34;27266:18;;;27259:62;27338:18;;11365:68:0;27006:356:1;11365:68:0;63611:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;63643:14;;63611:46:::1;:::i;80373:106::-:0;11226:6;;11373:23;11226:6;9957:10;11373:23;11365:68;;;;;;;27208:2:1;11365:68:0;;;27190:21:1;;;27227:18;;;27220:30;27286:34;27266:18;;;27259:62;27338:18;;11365:68:0;27006:356:1;11365:68:0;80451:8:::1;:20:::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;80373:106::o;12062:201::-;11226:6;;11373:23;11226:6;9957:10;11373:23;11365:68;;;;;;;27208:2:1;11365:68:0;;;27190:21:1;;;27227:18;;;27220:30;27286:34;27266:18;;;27259:62;27338:18;;11365:68:0;27006:356:1;11365:68:0;12151:22:::1;::::0;::::1;12143:73;;;::::0;::::1;::::0;;18298:2:1;12143:73:0::1;::::0;::::1;18280:21:1::0;18337:2;18317:18;;;18310:30;18376:34;18356:18;;;18349:62;18447:8;18427:18;;;18420:36;18473:19;;12143:73:0::1;18096:402:1::0;12143:73:0::1;12227:28;12246:8;12227:18;:28::i;:::-;12062:201:::0;:::o;79521:281::-;11226:6;;11373:23;11226:6;9957:10;11373:23;11365:68;;;;;;;27208:2:1;11365:68:0;;;27190:21:1;;;27227:18;;;27220:30;27286:34;27266:18;;;27259:62;27338:18;;11365:68:0;27006:356:1;11365:68:0;79586:12:::1;::::0;;;::::1;;;79585:13;79577:89;;;::::0;::::1;::::0;;17035:2:1;79577:89:0::1;::::0;::::1;17017:21:1::0;17074:2;17054:18;;;17047:30;17113:34;17093:18;;;17086:62;17184:33;17164:18;;;17157:61;17235:19;;79577:89:0::1;16833:427:1::0;79577:89:0::1;79685:9;::::0;:23:::1;:9;79677:72;;;::::0;::::1;::::0;;33948:2:1;79677:72:0::1;::::0;::::1;33930:21:1::0;33987:2;33967:18;;;33960:30;34026:34;34006:18;;;33999:62;34097:6;34077:18;;;34070:34;34121:19;;79677:72:0::1;33746:400:1::0;79677:72:0::1;79779:15;::::0;;79760:34;;::::1;79779:15:::0;;;;::::1;;;79778:16;79760:34:::0;;::::1;;::::0;;79521:281::o;79810:223::-;11226:6;;11373:23;11226:6;9957:10;11373:23;11365:68;;;;;;;27208:2:1;11365:68:0;;;27190:21:1;;;27227:18;;;27220:30;27286:34;27266:18;;;27259:62;27338:18;;11365:68:0;27006:356:1;11365:68:0;79890:24:::1;::::0;::::1;79882:100;;;::::0;::::1;::::0;;31372:2:1;79882:100:0::1;::::0;::::1;31354:21:1::0;31411:2;31391:18;;;31384:30;31450:34;31430:18;;;31423:62;31521:33;31501:18;;;31494:61;31572:19;;79882:100:0::1;31170:427:1::0;79882:100:0::1;80003:9;:22:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;79810:223::o;32301:305::-;32403:4;32440:40;;;32455:25;32440:40;;:105;;-1:-1:-1;32497:48:0;;;32512:33;32497:48;32440:105;:158;;;-1:-1:-1;24084:25:0;24069:40;;;;32562:36;23960:157;42206:174;42281:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;42335:23;42281:24;42335:14;:23::i;:::-;42326:46;;;;;;;;;;;;42206:174;;:::o;2909:98::-;2967:7;2994:5;2998:1;2994;:5;:::i;87843:940::-;88027:56;;;;;;;;;;;;;;;;;-1:-1:-1;;;;88099:30:0;88096:295;;88158:15;88145:28;;88096:295;;;88208:18;88194:5;:33;88190:201;;;88256:18;88243:31;;88190:201;;;88309:20;88295:5;:35;88291:100;;;88359:20;88346:33;;88291:100;88411:15;88450:10;88462:11;88439:35;;;;;;;;;:::i;:::-;;;;;;;;;;;;;88429:46;;;;;;88411:64;;88486:19;88535:6;88543:7;88518:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;88508:44;;;;;;88486:66;;88563:21;88587:52;88597:11;88610:6;:8;;;88620:6;:8;;;88630:6;:8;;;88587:52;;;;;;;;;;;;;;;;;15341:25:1;;;15414:4;15402:17;;;;15397:2;15382:18;;15375:45;15451:2;15436:18;;15429:34;15494:2;15479:18;;15472:34;15328:3;15313:19;;15114:398;88587:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;88587:52:0;;;;;;-1:-1:-1;;88655:27:0;;;;;;;:57;;-1:-1:-1;88703:9:0;;;88686:26;;;88703:9;;88686:26;88655:57;88652:99;;;88735:4;88728:11;;;;;;;;;88652:99;-1:-1:-1;88770:5:0;;87843:940;-1:-1:-1;;;;;;;;87843:940:0:o;3647:98::-;3705:7;3732:5;3736:1;3732;:5;:::i;39044:110::-;39120:26;39130:2;39134:7;39120:26;;;;;;;;;;;;:9;:26::i;88791:338::-;88944:14;88960:12;88987:8;88976:37;;;;;;;;;;;;:::i;:::-;88943:70;;;;89095:26;89105:6;89113:7;89095:9;:26::i;:::-;88913:216;;88791:338;;;;:::o;38354:348::-;38447:4;38149:16;;;:7;:16;;;;;;:30;:16;38464:73;;;;;;;22251:2:1;38464:73:0;;;22233:21:1;22290:2;22270:18;;;22263:30;22329:34;22309:18;;;22302:62;22400:14;22380:18;;;22373:42;22432:19;;38464:73:0;22049:408:1;38464:73:0;38548:13;38564:23;38579:7;38564:14;:23::i;:::-;38548:39;;38617:5;38606:16;;:7;:16;;;:52;;;-1:-1:-1;35446:25:0;;;;35422:4;35446:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38626:32;38606:87;;;;38686:7;38662:31;;:20;38674:7;38662:11;:20::i;:::-;:31;;;38606:87;38598:96;38354:348;-1:-1:-1;;;;38354:348:0:o;41463:625::-;41622:4;41595:31;;:23;41610:7;41595:14;:23::i;:::-;:31;;;41587:81;;;;;;;18705:2:1;41587:81:0;;;18687:21:1;18744:2;18724:18;;;18717:30;18783:34;18763:18;;;18756:62;18854:7;18834:18;;;18827:35;18879:19;;41587:81:0;18503:401:1;41587:81:0;41687:16;;;41679:65;;;;;;;20319:2:1;41679:65:0;;;20301:21:1;20358:2;20338:18;;;20331:30;20397:34;20377:18;;;20370:62;20468:6;20448:18;;;20441:34;20492:19;;41679:65:0;20117:400:1;41679:65:0;41757:39;41778:4;41784:2;41788:7;41757:20;:39::i;:::-;41861:29;41878:1;41882:7;41861:8;:29::i;:::-;41903:15;;;;;;;:9;:15;;;;;:20;;41922:1;;41903:15;:20;;41922:1;;41903:20;:::i;:::-;;;;-1:-1:-1;;41934:13:0;;;;;;;:9;:13;;;;;:18;;41951:1;;41934:13;:18;;41951:1;;41934:18;:::i;:::-;;;;-1:-1:-1;;41963:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;42002:27;;41963:16;;42002:27;;;;;;;34399:341;34329:411;;:::o;12423:191::-;12516:6;;;;12533:17;;;;;;;;;;;12566:40;;12516:6;;;12533:17;12516:6;;12566:40;;12497:16;;12566:40;12486:128;12423:191;:::o;42522:315::-;42677:8;42668:17;;:5;:17;;;;42660:55;;;;;;;20724:2:1;42660:55:0;;;20706:21:1;20763:2;20743:18;;;20736:30;20802:27;20782:18;;;20775:55;20847:18;;42660:55:0;20522:349:1;42660:55:0;42726:25;;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;42788:41;;15062::1;;;42788::0;;15035:18:1;42788:41:0;;;;;;;42522:315;;;:::o;37432:::-;37589:28;37599:4;37605:2;37609:7;37589:9;:28::i;:::-;37636:48;37659:4;37665:2;37669:7;37678:5;37636:22;:48::i;:::-;37628:111;;;;;;;17879:2:1;37628:111:0;;;17861:21:1;17918:2;17898:18;;;17891:30;17957:34;17937:18;;;17930:62;18028:20;18008:18;;;18001:48;18066:19;;37628:111:0;17677:414:1;80244:117:0;80304:13;80337:16;80330:23;;;;;:::i;7439:723::-;7495:13;7716:10;7712:53;;-1:-1:-1;;7743:10:0;;;;;;;;;;;;;;;;;;7439:723::o;7712:53::-;7790:5;7775:12;7831:78;7838:9;;7831:78;;7864:8;;;;:::i;:::-;;-1:-1:-1;7887:10:0;;-1:-1:-1;7895:2:0;7887:10;;:::i;:::-;;;7831:78;;;7919:19;7951:6;7941:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7941:17:0;;7919:39;;7969:154;7976:10;;7969:154;;8003:11;8013:1;8003:11;;:::i;:::-;;-1:-1:-1;8072:10:0;8080:2;8072:5;:10;:::i;:::-;8059:24;;:2;:24;:::i;:::-;8046:39;;8029:6;8036;8029:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;8100:11:0;8109:2;8100:11;;:::i;:::-;;;7969:154;;40706:420;40766:13;40782:23;40797:7;40782:14;:23::i;:::-;40766:39;;40818:48;40839:5;40854:1;40858:7;40818:20;:48::i;:::-;40907:29;40924:1;40928:7;40907:8;:29::i;:::-;40949:16;;;;;;;:9;:16;;;;;:21;;40969:1;;40949:16;:21;;40969:1;;40949:21;:::i;:::-;;;;-1:-1:-1;;40988:16:0;;;;:7;:16;;;;;;40981:23;;;;;;41022:36;40996:7;;40988:16;40981:23;41022:36;;;;;40988:16;;41022:36;80199:29:::1;80120:116:::0;:::o;39381:321::-;39511:18;39517:2;39521:7;39511:5;:18::i;:::-;39562:54;39593:1;39597:2;39601:7;39610:5;39562:22;:54::i;:::-;39540:154;;;;;;;17879:2:1;39540:154:0;;;17861:21:1;17918:2;17898:18;;;17891:30;17957:34;17937:18;;;17930:62;18028:20;18008:18;;;18001:48;18066:19;;39540:154:0;17677:414:1;48103:589:0;48309:18;;;48305:187;;48344:40;48376:7;49519:10;:17;;49492:24;;;;:15;:24;;;;;:44;;;49547:24;;;;;;;;;;;;49415:164;48344:40;48305:187;;;48414:2;48406:10;;:4;:10;;;48402:90;;48433:47;48466:4;48472:7;48433:32;:47::i;:::-;48506:16;;;48502:183;;48539:45;48576:7;48539:36;:45::i;48502:183::-;48612:4;48606:10;;:2;:10;;;48602:83;;48633:40;48661:2;48665:7;48633:27;:40::i;43402:799::-;43557:4;43578:13;;;14149:19;:23;43574:620;;43614:72;;;;;:36;;;;;;:72;;9957:10;;43665:4;;43671:7;;43680:5;;43614:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43614:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43610:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43856:13:0;;43852:272;;43899:60;;;;;17879:2:1;43899:60:0;;;17861:21:1;17918:2;17898:18;;;17891:30;17957:34;17937:18;;;17930:62;18028:20;18008:18;;;18001:48;18066:19;;43899:60:0;17677:414:1;43852:272:0;44074:6;44068:13;44059:6;44055:2;44051:15;44044:38;43610:529;43737:51;;43747:41;43737:51;;-1:-1:-1;43730:58:0;;43574:620;-1:-1:-1;44178:4:0;43402:799;;;;;;:::o;40038:439::-;40118:16;;;40110:61;;;;;;;25208:2:1;40110:61:0;;;25190:21:1;;;25227:18;;;25220:30;25286:34;25266:18;;;25259:62;25338:18;;40110:61:0;25006:356:1;40110:61:0;38125:4;38149:16;;;:7;:16;;;;;;:30;:16;:30;40182:58;;;;;;;19111:2:1;40182:58:0;;;19093:21:1;19150:2;19130:18;;;19123:30;19189;19169:18;;;19162:58;19237:18;;40182:58:0;18909:352:1;40182:58:0;40253:45;40282:1;40286:2;40290:7;40253:20;:45::i;:::-;40311:13;;;;;;;:9;:13;;;;;:18;;40328:1;;40311:13;:18;;40328:1;;40311:18;:::i;:::-;;;;-1:-1:-1;;40340:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;40379:33;;40340:16;;;40379:33;;40340:16;;40379:33;80199:29:::1;80120:116:::0;:::o;50206:988::-;50472:22;50522:1;50497:22;50514:4;50497:16;:22::i;:::-;:26;;;;:::i;:::-;50534:18;50555:26;;;:17;:26;;;;;;50472:51;;-1:-1:-1;50688:28:0;;;50684:328;;50755:18;;;50733:19;50755:18;;;:12;:18;;;;;;;;:34;;;;;;;;;50806:30;;;;;;:44;;;50923:30;;:17;:30;;;;;:43;;;50684:328;-1:-1:-1;51108:26:0;;;;:17;:26;;;;;;;;51101:33;;;51152:18;;;;;;:12;:18;;;;;:34;;;;;;;51145:41;50206:988::o;51489:1079::-;51767:10;:17;51742:22;;51767:21;;51787:1;;51767:21;:::i;:::-;51799:18;51820:24;;;:15;:24;;;;;;52193:10;:26;;51742:46;;-1:-1:-1;51820:24:0;;51742:46;;52193:26;;;;;;:::i;:::-;;;;;;;;;52171:48;;52257:11;52232:10;52243;52232:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;52337:28;;;:15;:28;;;;;;;:41;;;52509:24;;;;;52502:31;52544:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;51560:1008;;;51489:1079;:::o;48993:221::-;49078:14;49095:20;49112:2;49095:16;:20::i;:::-;49126:16;;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;49171:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48993:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:690:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;289:2;283:9;355:2;343:15;;194:66;339:24;;;365:2;335:33;331:42;319:55;;;389:18;;;409:22;;;386:46;383:72;;;435:18;;:::i;:::-;475:10;471:2;464:22;504:6;495:15;;534:6;526;519:22;574:3;565:6;560:3;556:16;553:25;550:45;;;591:1;588;581:12;550:45;641:6;636:3;629:4;621:6;617:17;604:44;696:1;689:4;680:6;672;668:19;664:30;657:41;;;;14:690;;;;;:::o;709:347::-;760:8;770:6;824:3;817:4;809:6;805:17;801:27;791:55;;842:1;839;832:12;791:55;-1:-1:-1;865:20:1;;908:18;897:30;;894:50;;;940:1;937;930:12;894:50;977:4;969:6;965:17;953:29;;1029:3;1022:4;1013:6;1005;1001:19;997:30;994:39;991:59;;;1046:1;1043;1036:12;991:59;709:347;;;;;:::o;1061:220::-;1103:5;1156:3;1149:4;1141:6;1137:17;1133:27;1123:55;;1174:1;1171;1164:12;1123:55;1196:79;1271:3;1262:6;1249:20;1242:4;1234:6;1230:17;1196:79;:::i;1286:636::-;1339:5;1387:4;1375:9;1370:3;1366:19;1362:30;1359:50;;;1405:1;1402;1395:12;1359:50;1438:2;1432:9;1480:4;1472:6;1468:17;1551:6;1539:10;1536:22;1515:18;1503:10;1500:34;1497:62;1494:88;;;1562:18;;:::i;:::-;1602:10;1598:2;1591:22;;1631:6;1622:15;;1674:9;1661:23;1653:6;1646:39;1746:2;1735:9;1731:18;1718:32;1713:2;1705:6;1701:15;1694:57;1803:2;1792:9;1788:18;1775:32;1851:4;1842:7;1838:18;1829:7;1826:31;1816:59;;1871:1;1868;1861:12;1816:59;1903:2;1891:15;;;;1884:32;1286:636;;-1:-1:-1;;1286:636:1:o;1927:159::-;1994:20;;2054:6;2043:18;;2033:29;;2023:57;;2076:1;2073;2066:12;2023:57;1927:159;;;:::o;2091:171::-;2158:20;;2218:18;2207:30;;2197:41;;2187:69;;2252:1;2249;2242:12;2267:247;2326:6;2379:2;2367:9;2358:7;2354:23;2350:32;2347:52;;;2395:1;2392;2385:12;2347:52;2434:9;2421:23;2453:31;2478:5;2453:31;:::i;2779:320::-;2866:6;2874;2927:2;2915:9;2906:7;2902:23;2898:32;2895:52;;;2943:1;2940;2933:12;2895:52;2975:9;2969:16;2994:31;3019:5;2994:31;:::i;:::-;3089:2;3074:18;;;;3068:25;3044:5;;3068:25;;-1:-1:-1;;;2779:320:1:o;3104:388::-;3172:6;3180;3233:2;3221:9;3212:7;3208:23;3204:32;3201:52;;;3249:1;3246;3239:12;3201:52;3288:9;3275:23;3307:31;3332:5;3307:31;:::i;:::-;3357:5;-1:-1:-1;3414:2:1;3399:18;;3386:32;3427:33;3386:32;3427:33;:::i;:::-;3479:7;3469:17;;;3104:388;;;;;:::o;3497:456::-;3574:6;3582;3590;3643:2;3631:9;3622:7;3618:23;3614:32;3611:52;;;3659:1;3656;3649:12;3611:52;3698:9;3685:23;3717:31;3742:5;3717:31;:::i;:::-;3767:5;-1:-1:-1;3824:2:1;3809:18;;3796:32;3837:33;3796:32;3837:33;:::i;:::-;3497:456;;3889:7;;-1:-1:-1;;;3943:2:1;3928:18;;;;3915:32;;3497:456::o;3958:665::-;4053:6;4061;4069;4077;4130:3;4118:9;4109:7;4105:23;4101:33;4098:53;;;4147:1;4144;4137:12;4098:53;4186:9;4173:23;4205:31;4230:5;4205:31;:::i;:::-;4255:5;-1:-1:-1;4312:2:1;4297:18;;4284:32;4325:33;4284:32;4325:33;:::i;:::-;4377:7;-1:-1:-1;4431:2:1;4416:18;;4403:32;;-1:-1:-1;4486:2:1;4471:18;;4458:32;4513:18;4502:30;;4499:50;;;4545:1;4542;4535:12;4499:50;4568:49;4609:7;4600:6;4589:9;4585:22;4568:49;:::i;:::-;4558:59;;;3958:665;;;;;;;:::o;4628:416::-;4693:6;4701;4754:2;4742:9;4733:7;4729:23;4725:32;4722:52;;;4770:1;4767;4760:12;4722:52;4809:9;4796:23;4828:31;4853:5;4828:31;:::i;:::-;4878:5;-1:-1:-1;4935:2:1;4920:18;;4907:32;4977:15;;4970:23;4958:36;;4948:64;;5008:1;5005;4998:12;5049:315;5117:6;5125;5178:2;5166:9;5157:7;5153:23;5149:32;5146:52;;;5194:1;5191;5184:12;5146:52;5233:9;5220:23;5252:31;5277:5;5252:31;:::i;:::-;5302:5;5354:2;5339:18;;;;5326:32;;-1:-1:-1;;;5049:315:1:o;5369:245::-;5427:6;5480:2;5468:9;5459:7;5455:23;5451:32;5448:52;;;5496:1;5493;5486:12;5448:52;5535:9;5522:23;5554:30;5578:5;5554:30;:::i;5619:249::-;5688:6;5741:2;5729:9;5720:7;5716:23;5712:32;5709:52;;;5757:1;5754;5747:12;5709:52;5789:9;5783:16;5808:30;5832:5;5808:30;:::i;5873:450::-;5942:6;5995:2;5983:9;5974:7;5970:23;5966:32;5963:52;;;6011:1;6008;6001:12;5963:52;6051:9;6038:23;6084:18;6076:6;6073:30;6070:50;;;6116:1;6113;6106:12;6070:50;6139:22;;6192:4;6184:13;;6180:27;-1:-1:-1;6170:55:1;;6221:1;6218;6211:12;6170:55;6244:73;6309:7;6304:2;6291:16;6286:2;6282;6278:11;6244:73;:::i;6328:184::-;6386:6;6439:2;6427:9;6418:7;6414:23;6410:32;6407:52;;;6455:1;6452;6445:12;6407:52;6478:28;6496:9;6478:28;:::i;6517:481::-;6595:6;6603;6611;6664:2;6652:9;6643:7;6639:23;6635:32;6632:52;;;6680:1;6677;6670:12;6632:52;6703:28;6721:9;6703:28;:::i;:::-;6693:38;;6782:2;6771:9;6767:18;6754:32;6809:18;6801:6;6798:30;6795:50;;;6841:1;6838;6831:12;6795:50;6880:58;6930:7;6921:6;6910:9;6906:22;6880:58;:::i;:::-;6517:481;;6957:8;;-1:-1:-1;6854:84:1;;-1:-1:-1;;;;6517:481:1:o;7003:460::-;7088:6;7096;7104;7157:2;7145:9;7136:7;7132:23;7128:32;7125:52;;;7173:1;7170;7163:12;7125:52;7196:28;7214:9;7196:28;:::i;:::-;7186:38;;7275:2;7264:9;7260:18;7247:32;7302:18;7294:6;7291:30;7288:50;;;7334:1;7331;7324:12;7288:50;7357:49;7398:7;7389:6;7378:9;7374:22;7357:49;:::i;:::-;7347:59;;;7453:2;7442:9;7438:18;7425:32;7415:42;;7003:460;;;;;:::o;7468:773::-;7572:6;7580;7588;7596;7604;7657:3;7645:9;7636:7;7632:23;7628:33;7625:53;;;7674:1;7671;7664:12;7625:53;7697:28;7715:9;7697:28;:::i;:::-;7687:38;;7776:2;7765:9;7761:18;7748:32;7799:18;7840:2;7832:6;7829:14;7826:34;;;7856:1;7853;7846:12;7826:34;7879:49;7920:7;7911:6;7900:9;7896:22;7879:49;:::i;:::-;7869:59;;7947:37;7980:2;7969:9;7965:18;7947:37;:::i;:::-;7937:47;;8037:2;8026:9;8022:18;8009:32;7993:48;;8066:2;8056:8;8053:16;8050:36;;;8082:1;8079;8072:12;8050:36;;8121:60;8173:7;8162:8;8151:9;8147:24;8121:60;:::i;:::-;7468:773;;;;-1:-1:-1;7468:773:1;;-1:-1:-1;8200:8:1;;8095:86;7468:773;-1:-1:-1;;;7468:773:1:o;8246:684::-;8348:6;8356;8364;8372;8425:3;8413:9;8404:7;8400:23;8396:33;8393:53;;;8442:1;8439;8432:12;8393:53;8465:28;8483:9;8465:28;:::i;:::-;8455:38;;8544:2;8533:9;8529:18;8516:32;8567:18;8608:2;8600:6;8597:14;8594:34;;;8624:1;8621;8614:12;8594:34;8647:49;8688:7;8679:6;8668:9;8664:22;8647:49;:::i;:::-;8637:59;;8715:37;8748:2;8737:9;8733:18;8715:37;:::i;:::-;8705:47;;8805:2;8794:9;8790:18;8777:32;8761:48;;8834:2;8824:8;8821:16;8818:36;;;8850:1;8847;8840:12;8818:36;;8873:51;8916:7;8905:8;8894:9;8890:24;8873:51;:::i;8935:252::-;9002:6;9010;9063:2;9051:9;9042:7;9038:23;9034:32;9031:52;;;9079:1;9076;9069:12;9031:52;9102:28;9120:9;9102:28;:::i;9192:180::-;9251:6;9304:2;9292:9;9283:7;9279:23;9275:32;9272:52;;;9320:1;9317;9310:12;9272:52;-1:-1:-1;9343:23:1;;9192:180;-1:-1:-1;9192:180:1:o;9377:477::-;9511:6;9519;9527;9535;9588:3;9576:9;9567:7;9563:23;9559:33;9556:53;;;9605:1;9602;9595:12;9556:53;9641:9;9628:23;9618:33;;9670:53;9715:7;9710:2;9699:9;9695:18;9670:53;:::i;:::-;9660:63;;9742:54;9788:7;9782:3;9771:9;9767:19;9742:54;:::i;:::-;9377:477;;;;-1:-1:-1;9732:64:1;;9843:3;9828:19;9815:33;;-1:-1:-1;;9377:477:1:o;9859:245::-;9938:6;9946;9999:2;9987:9;9978:7;9974:23;9970:32;9967:52;;;10015:1;10012;10005:12;9967:52;-1:-1:-1;;10038:16:1;;10094:2;10079:18;;;10073:25;10038:16;;10073:25;;-1:-1:-1;9859:245:1:o;10249:316::-;10290:3;10328:5;10322:12;10355:6;10350:3;10343:19;10371:63;10427:6;10420:4;10415:3;10411:14;10404:4;10397:5;10393:16;10371:63;:::i;:::-;10479:2;10467:15;10484:66;10463:88;10454:98;;;;10554:4;10450:109;;10249:316;-1:-1:-1;;10249:316:1:o;10570:271::-;10753:6;10745;10740:3;10727:33;10709:3;10779:16;;10804:13;;;10779:16;10570:271;-1:-1:-1;10570:271:1:o;10846:274::-;10975:3;11013:6;11007:13;11029:53;11075:6;11070:3;11063:4;11055:6;11051:17;11029:53;:::i;:::-;11098:16;;;;;10846:274;-1:-1:-1;;10846:274:1:o;11125:370::-;11282:3;11320:6;11314:13;11336:53;11382:6;11377:3;11370:4;11362:6;11358:17;11336:53;:::i;:::-;11411:16;;;;11436:21;;;-1:-1:-1;11484:4:1;11473:16;;11125:370;-1:-1:-1;11125:370:1:o;11500:869::-;11626:3;11655:1;11688:6;11682:13;11718:36;11744:9;11718:36;:::i;:::-;11773:1;11790:18;;;11817:162;;;;11993:1;11988:356;;;;11783:561;;11817:162;11865:66;11854:9;11850:82;11845:3;11838:95;11962:6;11957:3;11953:16;11946:23;;11817:162;;11988:356;12019:6;12016:1;12009:17;12049:4;12094:2;12091:1;12081:16;12119:1;12133:165;12147:6;12144:1;12141:13;12133:165;;;12225:14;;12212:11;;;12205:35;12268:16;;;;12162:10;;12133:165;;;12137:3;;;12327:6;12322:3;12318:16;12311:23;;11783:561;-1:-1:-1;12360:3:1;;11500:869;-1:-1:-1;;;;;;11500:869:1:o;12374:470::-;12553:3;12591:6;12585:13;12607:53;12653:6;12648:3;12641:4;12633:6;12629:17;12607:53;:::i;:::-;12723:13;;12682:16;;;;12745:57;12723:13;12682:16;12779:4;12767:17;;12745:57;:::i;:::-;12818:20;;12374:470;-1:-1:-1;;;;12374:470:1:o;13659:511::-;13853:4;13882:42;13963:2;13955:6;13951:15;13940:9;13933:34;14015:2;14007:6;14003:15;13998:2;13987:9;13983:18;13976:43;;14055:6;14050:2;14039:9;14035:18;14028:34;14098:3;14093:2;14082:9;14078:18;14071:31;14119:45;14159:3;14148:9;14144:19;14136:6;14119:45;:::i;:::-;14111:53;13659:511;-1:-1:-1;;;;;;13659:511:1:o;15517:217::-;15664:2;15653:9;15646:21;15627:4;15684:44;15724:2;15713:9;15709:18;15701:6;15684:44;:::i;15739:520::-;15914:2;15899:18;;15947:1;15936:13;;15926:201;;15983:77;15980:1;15973:88;16084:4;16081:1;16074:15;16112:4;16109:1;16102:15;15926:201;16136:25;;;16209:42;16197:55;;;;16192:2;16177:18;;;16170:83;15739:520;:::o;34567:663::-;34848:6;34840;34836:19;34825:9;34818:38;34904:42;34896:6;34892:55;34887:2;34876:9;34872:18;34865:83;34984:3;34979:2;34968:9;34964:18;34957:31;34799:4;35011:45;35051:3;35040:9;35036:19;35028:6;35011:45;:::i;:::-;35106:6;35099:14;35092:22;35087:2;35076:9;35072:18;35065:50;35164:9;35156:6;35152:22;35146:3;35135:9;35131:19;35124:51;35192:32;35217:6;35209;35192:32;:::i;:::-;35184:40;34567:663;-1:-1:-1;;;;;;;;34567:663:1:o;35235:776::-;35502:6;35494;35490:19;35479:9;35472:38;35546:3;35541:2;35530:9;35526:18;35519:31;35453:4;35573:45;35613:3;35602:9;35598:19;35590:6;35573:45;:::i;:::-;35666:18;35658:6;35654:31;35649:2;35638:9;35634:18;35627:59;35734:9;35726:6;35722:22;35717:2;35706:9;35702:18;35695:50;35769:6;35761;35754:22;35823:6;35815;35810:2;35802:6;35798:15;35785:45;35876:1;35871:2;35862:6;35854;35850:19;35846:28;35839:39;36002:2;35932:66;35927:2;35919:6;35915:15;35911:88;35903:6;35899:101;35895:110;35887:118;;;35235:776;;;;;;;;:::o;36016:555::-;36273:6;36265;36261:19;36250:9;36243:38;36317:3;36312:2;36301:9;36297:18;36290:31;36224:4;36344:45;36384:3;36373:9;36369:19;36361:6;36344:45;:::i;:::-;36437:18;36429:6;36425:31;36420:2;36409:9;36405:18;36398:59;36505:9;36497:6;36493:22;36488:2;36477:9;36473:18;36466:50;36533:32;36558:6;36550;36533:32;:::i;:::-;36525:40;36016:555;-1:-1:-1;;;;;;;36016:555:1:o;36576:1556::-;36922:6;36914;36910:19;36899:9;36892:38;36873:4;36949:2;36987:3;36982:2;36971:9;36967:18;36960:31;37011:1;37044:6;37038:13;37074:36;37100:9;37074:36;:::i;:::-;37147:6;37141:3;37130:9;37126:19;37119:35;37173:3;37195:1;37227:2;37216:9;37212:18;37244:1;37239:180;;;;37433:1;37428:354;;;;37205:577;;37239:180;37302:66;37291:9;37287:82;37282:2;37271:9;37267:18;37260:110;37405:3;37394:9;37390:19;37383:26;;37239:180;;37428:354;37459:6;37456:1;37449:17;37507:2;37504:1;37494:16;37532:1;37546:180;37560:6;37557:1;37554:13;37546:180;;;37653:14;;37629:17;;;37625:26;;37618:50;37696:16;;;;37575:10;;37546:180;;;37750:17;;37746:26;;;-1:-1:-1;;37205:577:1;;;;;;37827:9;37822:3;37818:19;37813:2;37802:9;37798:18;37791:47;37861:29;37886:3;37878:6;37861:29;:::i;:::-;37847:43;;;37899:54;37949:2;37938:9;37934:18;37926:6;10194:42;10183:54;10171:67;;10109:135;37899:54;10194:42;10183:54;;38012:3;37997:19;;10171:67;38066:9;38058:6;38054:22;38048:3;38037:9;38033:19;38026:51;38094:32;38119:6;38111;38094:32;:::i;:::-;38086:40;36576:1556;-1:-1:-1;;;;;;;;;36576:1556:1:o;38572:128::-;38612:3;38643:1;38639:6;38636:1;38633:13;38630:39;;;38649:18;;:::i;:::-;-1:-1:-1;38685:9:1;;38572:128::o;38705:120::-;38745:1;38771;38761:35;;38776:18;;:::i;:::-;-1:-1:-1;38810:9:1;;38705:120::o;38830:228::-;38870:7;38996:1;38928:66;38924:74;38921:1;38918:81;38913:1;38906:9;38899:17;38895:105;38892:131;;;39003:18;;:::i;:::-;-1:-1:-1;39043:9:1;;38830:228::o;39063:125::-;39103:4;39131:1;39128;39125:8;39122:34;;;39136:18;;:::i;:::-;-1:-1:-1;39173:9:1;;39063:125::o;39193:258::-;39265:1;39275:113;39289:6;39286:1;39283:13;39275:113;;;39365:11;;;39359:18;39346:11;;;39339:39;39311:2;39304:10;39275:113;;;39406:6;39403:1;39400:13;39397:48;;;-1:-1:-1;;39441:1:1;39423:16;;39416:27;39193:258::o;39456:437::-;39535:1;39531:12;;;;39578;;;39599:61;;39653:4;39645:6;39641:17;39631:27;;39599:61;39706:2;39698:6;39695:14;39675:18;39672:38;39669:218;;;39743:77;39740:1;39733:88;39844:4;39841:1;39834:15;39872:4;39869:1;39862:15;39669:218;;39456:437;;;:::o;39898:195::-;39937:3;39968:66;39961:5;39958:77;39955:103;;;40038:18;;:::i;:::-;-1:-1:-1;40085:1:1;40074:13;;39898:195::o;40098:112::-;40130:1;40156;40146:35;;40161:18;;:::i;:::-;-1:-1:-1;40195:9:1;;40098:112::o;40215:184::-;40267:77;40264:1;40257:88;40364:4;40361:1;40354:15;40388:4;40385:1;40378:15;40404:184;40456:77;40453:1;40446:88;40553:4;40550:1;40543:15;40577:4;40574:1;40567:15;40782:184;40834:77;40831:1;40824:88;40931:4;40928:1;40921:15;40955:4;40952:1;40945:15;40971:184;41023:77;41020:1;41013:88;41120:4;41117:1;41110:15;41144:4;41141:1;41134:15;41160:184;41212:77;41209:1;41202:88;41309:4;41306:1;41299:15;41333:4;41330:1;41323:15;41349:154;41435:42;41428:5;41424:54;41417:5;41414:65;41404:93;;41493:1;41490;41483:12;41508:177;41593:66;41586:5;41582:78;41575:5;41572:89;41562:117;;41675:1;41672;41665:12

Swarm Source

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