ETH Price: $3,363.46 (-2.35%)
Gas: 2 Gwei

Token

Omni Mosquitoes (OxMosquitoes)
 

Overview

Max Total Supply

0 OxMosquitoes

Holders

1,617

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
19921111.eth
Balance
4 OxMosquitoes
0xdE4E81A778b99e8412ea3a3F765EB6179b87f198
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:
OmniMosquitoes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0

// 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,
        uint256 _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,
        uint256 _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 (uint256 nativeFee, uint256 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,
        uint256 _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: @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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev 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 {}
}

// File: contracts/NonblockingReceiver.sol

pragma solidity ^0.8.6;

abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {
    ILayerZeroEndpoint internal endpoint;

    struct FailedMessages {
        uint256 payloadLength;
        bytes32 payloadHash;
    }

    mapping(uint16 => mapping(bytes => mapping(uint256 => 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
    ) internal virtual;

    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;
    }
}


pragma solidity ^0.8.7;

contract OmniMosquitoes is Ownable, ERC721, NonblockingReceiver {
    address public _owner;
    string private baseURI;
    uint256 nextTokenId = 6512;
    uint256 MAX_MINT_SUPPLY = 10000;

    uint256 gasForDestinationLzReceive = 350000;

    constructor(string memory baseURI_, address _layerZeroEndpoint)
        ERC721("Omni Mosquitoes", "OxMosquitoes")
    {
        _owner = msg.sender;
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        baseURI = baseURI_;
    }

    // mint function
    // you can choose from mint 1 to 3
    // mint is free, but donations are also accepted
    function mint(uint8 numTokens) external payable {
        require(numTokens < 4, "omni mosquitoes: Max 3 NFTs per transaction");
        require(
            nextTokenId + numTokens <= MAX_MINT_SUPPLY,
            "omni mosquitoes: Mint exceeds supply"
        );
        
        for (uint256 i = 1; i <= numTokens; i++) {
            _safeMint(msg.sender, ++nextTokenId);
        }
    }

    // This function transfers the nft from your address on the
    // source chain to the same address on the destination chain
    function traverseChains(uint16 _chainId, uint256 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
        (uint256 messageFee, ) = endpoint.estimateFees(
            _chainId,
            address(this),
            payload,
            false,
            adapterParams
        );

        require(
            msg.value >= messageFee,
            "omni mosquitoes: 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
        );
    }

    function setBaseURI(string memory URI) external onlyOwner {
        baseURI = URI;
    }

    function donate() external payable {
        // thank you
    }

    // This allows the devs to receive kind donations
    function withdraw(uint256 amt) external onlyOwner {
        (bool sent, ) = payable(_owner).call{value: amt}("");
        require(sent, "omni mosquitoes: Failed to withdraw Ether");
    }

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

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

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

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

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

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":"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":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":"_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":[],"name":"donate","outputs":[],"stateMutability":"payable","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":[{"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":"uint8","name":"numTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"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":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","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":"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611970600c55612710600d5562055730600e553480156200002457600080fd5b50604051620053033803806200530383398181016040528101906200004a9190620003be565b6040518060400160405280600f81526020017f4f6d6e69204d6f73717569746f657300000000000000000000000000000000008152506040518060400160405280600c81526020017f4f784d6f73717569746f65730000000000000000000000000000000000000000815250620000d6620000ca620001ad60201b60201c565b620001b560201b60201c565b8160019080519060200190620000ee92919062000279565b5080600290805190602001906200010792919062000279565b50505033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600b9080519060200190620001a492919062000279565b505050620005f6565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028790620004ed565b90600052602060002090601f016020900481019282620002ab5760008555620002f7565b82601f10620002c657805160ff1916838001178555620002f7565b82800160010185558215620002f7579182015b82811115620002f6578251825591602001919060010190620002d9565b5b5090506200030691906200030a565b5090565b5b80821115620003255760008160009055506001016200030b565b5090565b6000620003406200033a846200044d565b62000424565b9050828152602081018484840111156200035f576200035e620005bc565b5b6200036c848285620004b7565b509392505050565b6000815190506200038581620005dc565b92915050565b600082601f830112620003a357620003a2620005b7565b5b8151620003b584826020860162000329565b91505092915050565b60008060408385031215620003d857620003d7620005c6565b5b600083015167ffffffffffffffff811115620003f957620003f8620005c1565b5b62000407858286016200038b565b92505060206200041a8582860162000374565b9150509250929050565b60006200043062000443565b90506200043e828262000523565b919050565b6000604051905090565b600067ffffffffffffffff8211156200046b576200046a62000588565b5b6200047682620005cb565b9050602081019050919050565b6000620004908262000497565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004d7578082015181840152602081019050620004ba565b83811115620004e7576000848401525b50505050565b600060028204905060018216806200050657607f821691505b602082108114156200051d576200051c62000559565b5b50919050565b6200052e82620005cb565b810181811067ffffffffffffffff8211171562000550576200054f62000588565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005e78162000483565b8114620005f357600080fd5b50565b614cfd80620006066000396000f3fe6080604052600436106101c15760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610623578063eb8d72b714610660578063ed88c68e14610689578063f2fde38b14610693576101c1565b8063b88d4fde14610585578063c87b56dd146105ae578063cf89fa03146105eb578063d1deba1f14610607576101c1565b8063943fb872116100d1578063943fb872146104dd57806395d89b4114610506578063a22cb46514610531578063b2bdfa7b1461055a576101c1565b80637533d788146104375780638da5cb5b146104745780638ee749121461049f576101c1565b80632e1a7d4d116101645780636352211e1161013e5780636352211e1461038a5780636ecd2306146103c757806370a08231146103e3578063715018a614610420576101c1565b80632e1a7d4d1461030f57806342842e0e1461033857806355f804b314610361576101c1565b8063081812fc116101a0578063081812fc14610257578063095ea7b3146102945780631c37a822146102bd57806323b872dd146102e6576101c1565b80621d3567146101c657806301ffc9a7146101ef57806306fdde031461022c575b600080fd5b3480156101d257600080fd5b506101ed60048036038101906101e891906131c0565b6106bc565b005b3480156101fb57600080fd5b5061021660048036038101906102119190612f7d565b6108fe565b6040516102239190613abf565b60405180910390f35b34801561023857600080fd5b506102416109e0565b60405161024e9190613afc565b60405180910390f35b34801561026357600080fd5b5061027e6004803603810190610279919061329f565b610a72565b60405161028b9190613a2f565b60405180910390f35b3480156102a057600080fd5b506102bb60048036038101906102b69190612f3d565b610af7565b005b3480156102c957600080fd5b506102e460048036038101906102df91906131c0565b610c0f565b005b3480156102f257600080fd5b5061030d60048036038101906103089190612e27565b610c8f565b005b34801561031b57600080fd5b506103366004803603810190610331919061329f565b610cef565b005b34801561034457600080fd5b5061035f600480360381019061035a9190612e27565b610e3d565b005b34801561036d57600080fd5b5061038860048036038101906103839190612fd7565b610e5d565b005b34801561039657600080fd5b506103b160048036038101906103ac919061329f565b610ef3565b6040516103be9190613a2f565b60405180910390f35b6103e160048036038101906103dc919061330c565b610fa5565b005b3480156103ef57600080fd5b5061040a60048036038101906104059190612d7a565b611086565b6040516104179190613fbd565b60405180910390f35b34801561042c57600080fd5b5061043561113e565b005b34801561044357600080fd5b5061045e60048036038101906104599190613020565b6111c6565b60405161046b9190613ada565b60405180910390f35b34801561048057600080fd5b50610489611266565b6040516104969190613a2f565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c191906130ad565b61128f565b6040516104d4929190613fd8565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff919061329f565b6112e3565b005b34801561051257600080fd5b5061051b611369565b6040516105289190613afc565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190612efd565b6113fb565b005b34801561056657600080fd5b5061056f611411565b60405161057c9190613a2f565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190612e7a565b611437565b005b3480156105ba57600080fd5b506105d560048036038101906105d0919061329f565b611499565b6040516105e29190613afc565b60405180910390f35b6106056004803603810190610600919061325f565b611540565b005b610621600480360381019061061c919061311c565b611833565b005b34801561062f57600080fd5b5061064a60048036038101906106459190612de7565b6119d3565b6040516106579190613abf565b60405180910390f35b34801561066c57600080fd5b506106876004803603810190610682919061304d565b611a67565b005b610691611b13565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190612d7a565b611b15565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461071657600080fd5b600960008561ffff1661ffff168152602001908152602001600020805461073c906142a7565b905083511480156107825750600960008561ffff1661ffff16815260200190815260200160002060405161077091906139b3565b60405180910390208380519060200120145b6107c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b890613d1e565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b81526004016108009493929190613ef4565b600060405180830381600087803b15801561081a57600080fd5b505af192505050801561082b575060015b6108f7576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff16815260200190815260200160002084604051610875919061399c565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d848484846040516108ea9493929190613ef4565b60405180910390a16108f8565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d957506109d882611c0d565b5b9050919050565b6060600180546109ef906142a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b906142a7565b8015610a685780601f10610a3d57610100808354040283529160200191610a68565b820191906000526020600020905b815481529060010190602001808311610a4b57829003601f168201915b5050505050905090565b6000610a7d82611c77565b610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab390613cde565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0282610ef3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90613d9e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b92611ce3565b73ffffffffffffffffffffffffffffffffffffffff161480610bc15750610bc081610bbb611ce3565b6119d3565b5b610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790613c3e565b60405180910390fd5b610c0a8383611ceb565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490613c9e565b60405180910390fd5b610c8984848484611da4565b50505050565b610ca0610c9a611ce3565b82611dd1565b610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690613dbe565b60405180910390fd5b610cea838383611eaf565b505050565b610cf7611ce3565b73ffffffffffffffffffffffffffffffffffffffff16610d15611266565b73ffffffffffffffffffffffffffffffffffffffff1614610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290613cfe565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610db3906139ee565b60006040518083038185875af1925050503d8060008114610df0576040519150601f19603f3d011682016040523d82523d6000602084013e610df5565b606091505b5050905080610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090613d7e565b60405180910390fd5b5050565b610e5883838360405180602001604052806000815250611437565b505050565b610e65611ce3565b73ffffffffffffffffffffffffffffffffffffffff16610e83611266565b73ffffffffffffffffffffffffffffffffffffffff1614610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090613cfe565b60405180910390fd5b80600b9080519060200190610eef929190612a49565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390613c7e565b60405180910390fd5b80915050919050565b60048160ff1610610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290613c1e565b60405180910390fd5b600d548160ff16600c54610fff91906140eb565b1115611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790613dfe565b60405180910390fd5b6000600190505b8160ff1681116110825761106f33600c600081546110649061430a565b91905081905561210b565b808061107a9061430a565b915050611047565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90613c5e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611146611ce3565b73ffffffffffffffffffffffffffffffffffffffff16611164611266565b73ffffffffffffffffffffffffffffffffffffffff16146111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b190613cfe565b60405180910390fd5b6111c46000612129565b565b600960205280600052604060002060009150905080546111e5906142a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611211906142a7565b801561125e5780601f106112335761010080835404028352916020019161125e565b820191906000526020600020905b81548152906001019060200180831161124157829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b6112eb611ce3565b73ffffffffffffffffffffffffffffffffffffffff16611309611266565b73ffffffffffffffffffffffffffffffffffffffff161461135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690613cfe565b60405180910390fd5b80600e8190555050565b606060028054611378906142a7565b80601f01602080910402602001604051908101604052809291908181526020018280546113a4906142a7565b80156113f15780601f106113c6576101008083540402835291602001916113f1565b820191906000526020600020905b8154815290600101906020018083116113d457829003601f168201915b5050505050905090565b61140d611406611ce3565b83836121ed565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611448611442611ce3565b83611dd1565b611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e90613dbe565b60405180910390fd5b6114938484848461235a565b50505050565b60606114a482611c77565b6114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da90613d5e565b60405180910390fd5b60006114ed6123b6565b9050600081511161150d5760405180602001604052806000815250611538565b8061151784612448565b6040516020016115289291906139ca565b6040516020818303038152906040525b915050919050565b61154981610ef3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad90613bde565b60405180910390fd5b6000600960008461ffff1661ffff16815260200190815260200160002080546115de906142a7565b905011611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790613b9e565b60405180910390fd5b611629816125a9565b6000338260405160200161163e929190613a96565b6040516020818303038152906040529050600060019050600081600e5460405160200161166c929190613a03565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b81526004016116e3959493929190613e3e565b604080518083038186803b1580156116fa57600080fd5b505afa15801561170e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173291906132cc565b50905080341015611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90613e1e565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b81526004016117f996959493929190613f47565b6000604051808303818588803b15801561181257600080fd5b505af1158015611826573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff1681526020019081526020016000208560405161185e919061399c565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b816001015414156118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca90613dde565b60405180910390fd5b8060000154838390501480156119035750806001015483836040516118f9929190613983565b6040518091039020145b611942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193990613bbe565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b8152600401611999959493929190613e9f565b600060405180830381600087803b1580156119b357600080fd5b505af11580156119c7573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a6f611ce3565b73ffffffffffffffffffffffffffffffffffffffff16611a8d611266565b73ffffffffffffffffffffffffffffffffffffffff1614611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90613cfe565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611b0d929190612acf565b50505050565b565b611b1d611ce3565b73ffffffffffffffffffffffffffffffffffffffff16611b3b611266565b73ffffffffffffffffffffffffffffffffffffffff1614611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890613cfe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890613b3e565b60405180910390fd5b611c0a81612129565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d5e83610ef3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611dbb9190612da7565b91509150611dc9828261210b565b505050505050565b6000611ddc82611c77565b611e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1290613bfe565b60405180910390fd5b6000611e2683610ef3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e9557508373ffffffffffffffffffffffffffffffffffffffff16611e7d84610a72565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ea65750611ea581856119d3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ecf82610ef3565b73ffffffffffffffffffffffffffffffffffffffff1614611f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1c90613d3e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8c90613b5e565b60405180910390fd5b611fa08383836126ba565b611fab600082611ceb565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ffb9190614172565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461205291906140eb565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6121258282604051806020016040528060008152506126bf565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561225c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225390613b7e565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161234d9190613abf565b60405180910390a3505050565b612365848484611eaf565b6123718484848461271a565b6123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a790613b1e565b60405180910390fd5b50505050565b6060600b80546123c5906142a7565b80601f01602080910402602001604051908101604052809291908181526020018280546123f1906142a7565b801561243e5780601f106124135761010080835404028352916020019161243e565b820191906000526020600020905b81548152906001019060200180831161242157829003601f168201915b5050505050905090565b60606000821415612490576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125a4565b600082905060005b600082146124c25780806124ab9061430a565b915050600a826124bb9190614141565b9150612498565b60008167ffffffffffffffff8111156124de576124dd61445c565b5b6040519080825280601f01601f1916602001820160405280156125105781602001600182028036833780820191505090505b5090505b6000851461259d576001826125299190614172565b9150600a85612538919061436f565b603061254491906140eb565b60f81b81838151811061255a5761255961442d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125969190614141565b9450612514565b8093505050505b919050565b60006125b482610ef3565b90506125c2816000846126ba565b6125cd600083611ceb565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461261d9190614172565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6126c983836128b1565b6126d6600084848461271a565b612715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270c90613b1e565b60405180910390fd5b505050565b600061273b8473ffffffffffffffffffffffffffffffffffffffff16612a36565b156128a4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612764611ce3565b8786866040518563ffffffff1660e01b81526004016127869493929190613a4a565b602060405180830381600087803b1580156127a057600080fd5b505af19250505080156127d157506040513d601f19601f820116820180604052508101906127ce9190612faa565b60015b612854573d8060008114612801576040519150601f19603f3d011682016040523d82523d6000602084013e612806565b606091505b5060008151141561284c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284390613b1e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128a9565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291890613cbe565b60405180910390fd5b61292d600083836126ba565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461297d91906140eb565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a55906142a7565b90600052602060002090601f016020900481019282612a775760008555612abe565b82601f10612a9057805160ff1916838001178555612abe565b82800160010185558215612abe579182015b82811115612abd578251825591602001919060010190612aa2565b5b509050612acb9190612b55565b5090565b828054612adb906142a7565b90600052602060002090601f016020900481019282612afd5760008555612b44565b82601f10612b1657803560ff1916838001178555612b44565b82800160010185558215612b44579182015b82811115612b43578235825591602001919060010190612b28565b5b509050612b519190612b55565b5090565b5b80821115612b6e576000816000905550600101612b56565b5090565b6000612b85612b8084614026565b614001565b905082815260208101848484011115612ba157612ba061449a565b5b612bac848285614265565b509392505050565b6000612bc7612bc284614057565b614001565b905082815260208101848484011115612be357612be261449a565b5b612bee848285614265565b509392505050565b600081359050612c0581614c0f565b92915050565b600081519050612c1a81614c26565b92915050565b600081359050612c2f81614c3d565b92915050565b600081359050612c4481614c54565b92915050565b600081519050612c5981614c54565b92915050565b60008083601f840112612c7557612c74614490565b5b8235905067ffffffffffffffff811115612c9257612c9161448b565b5b602083019150836001820283011115612cae57612cad614495565b5b9250929050565b600082601f830112612cca57612cc9614490565b5b8135612cda848260208601612b72565b91505092915050565b600082601f830112612cf857612cf7614490565b5b8135612d08848260208601612bb4565b91505092915050565b600081359050612d2081614c6b565b92915050565b600081359050612d3581614c82565b92915050565b600081519050612d4a81614c82565b92915050565b600081359050612d5f81614c99565b92915050565b600081359050612d7481614cb0565b92915050565b600060208284031215612d9057612d8f6144a4565b5b6000612d9e84828501612bf6565b91505092915050565b60008060408385031215612dbe57612dbd6144a4565b5b6000612dcc85828601612c0b565b9250506020612ddd85828601612d3b565b9150509250929050565b60008060408385031215612dfe57612dfd6144a4565b5b6000612e0c85828601612bf6565b9250506020612e1d85828601612bf6565b9150509250929050565b600080600060608486031215612e4057612e3f6144a4565b5b6000612e4e86828701612bf6565b9350506020612e5f86828701612bf6565b9250506040612e7086828701612d26565b9150509250925092565b60008060008060808587031215612e9457612e936144a4565b5b6000612ea287828801612bf6565b9450506020612eb387828801612bf6565b9350506040612ec487828801612d26565b925050606085013567ffffffffffffffff811115612ee557612ee461449f565b5b612ef187828801612cb5565b91505092959194509250565b60008060408385031215612f1457612f136144a4565b5b6000612f2285828601612bf6565b9250506020612f3385828601612c20565b9150509250929050565b60008060408385031215612f5457612f536144a4565b5b6000612f6285828601612bf6565b9250506020612f7385828601612d26565b9150509250929050565b600060208284031215612f9357612f926144a4565b5b6000612fa184828501612c35565b91505092915050565b600060208284031215612fc057612fbf6144a4565b5b6000612fce84828501612c4a565b91505092915050565b600060208284031215612fed57612fec6144a4565b5b600082013567ffffffffffffffff81111561300b5761300a61449f565b5b61301784828501612ce3565b91505092915050565b600060208284031215613036576130356144a4565b5b600061304484828501612d11565b91505092915050565b600080600060408486031215613066576130656144a4565b5b600061307486828701612d11565b935050602084013567ffffffffffffffff8111156130955761309461449f565b5b6130a186828701612c5f565b92509250509250925092565b6000806000606084860312156130c6576130c56144a4565b5b60006130d486828701612d11565b935050602084013567ffffffffffffffff8111156130f5576130f461449f565b5b61310186828701612cb5565b925050604061311286828701612d26565b9150509250925092565b600080600080600060808688031215613138576131376144a4565b5b600061314688828901612d11565b955050602086013567ffffffffffffffff8111156131675761316661449f565b5b61317388828901612cb5565b945050604061318488828901612d50565b935050606086013567ffffffffffffffff8111156131a5576131a461449f565b5b6131b188828901612c5f565b92509250509295509295909350565b600080600080608085870312156131da576131d96144a4565b5b60006131e887828801612d11565b945050602085013567ffffffffffffffff8111156132095761320861449f565b5b61321587828801612cb5565b935050604061322687828801612d50565b925050606085013567ffffffffffffffff8111156132475761324661449f565b5b61325387828801612cb5565b91505092959194509250565b60008060408385031215613276576132756144a4565b5b600061328485828601612d11565b925050602061329585828601612d26565b9150509250929050565b6000602082840312156132b5576132b46144a4565b5b60006132c384828501612d26565b91505092915050565b600080604083850312156132e3576132e26144a4565b5b60006132f185828601612d3b565b925050602061330285828601612d3b565b9150509250929050565b600060208284031215613322576133216144a4565b5b600061333084828501612d65565b91505092915050565b613342816141b8565b82525050565b613351816141a6565b82525050565b613360816141ca565b82525050565b61336f816141d6565b82525050565b600061338183856140b3565b935061338e838584614265565b613397836144a9565b840190509392505050565b60006133ae83856140c4565b93506133bb838584614265565b82840190509392505050565b60006133d28261409d565b6133dc81856140b3565b93506133ec818560208601614274565b6133f5816144a9565b840191505092915050565b600061340b8261409d565b61341581856140c4565b9350613425818560208601614274565b80840191505092915050565b6000815461343e816142a7565b61344881866140b3565b945060018216600081146134635760018114613475576134a8565b60ff19831686526020860193506134a8565b61347e85614088565b60005b838110156134a057815481890152600182019150602081019050613481565b808801955050505b50505092915050565b600081546134be816142a7565b6134c881866140c4565b945060018216600081146134e357600181146134f457613527565b60ff19831686528186019350613527565b6134fd85614088565b60005b8381101561351f57815481890152600182019150602081019050613500565b838801955050505b50505092915050565b600061353b826140a8565b61354581856140cf565b9350613555818560208601614274565b61355e816144a9565b840191505092915050565b6000613574826140a8565b61357e81856140e0565b935061358e818560208601614274565b80840191505092915050565b60006135a76032836140cf565b91506135b2826144c7565b604082019050919050565b60006135ca6026836140cf565b91506135d582614516565b604082019050919050565b60006135ed6024836140cf565b91506135f882614565565b604082019050919050565b60006136106019836140cf565b915061361b826145b4565b602082019050919050565b6000613633602e836140cf565b915061363e826145dd565b604082019050919050565b6000613656601a836140cf565b91506136618261462c565b602082019050919050565b60006136796022836140cf565b915061368482614655565b604082019050919050565b600061369c602c836140cf565b91506136a7826146a4565b604082019050919050565b60006136bf602b836140cf565b91506136ca826146f3565b604082019050919050565b60006136e26038836140cf565b91506136ed82614742565b604082019050919050565b6000613705602a836140cf565b915061371082614791565b604082019050919050565b60006137286029836140cf565b9150613733826147e0565b604082019050919050565b600061374b602b836140cf565b91506137568261482f565b604082019050919050565b600061376e6020836140cf565b91506137798261487e565b602082019050919050565b6000613791602c836140cf565b915061379c826148a7565b604082019050919050565b60006137b46020836140cf565b91506137bf826148f6565b602082019050919050565b60006137d76034836140cf565b91506137e28261491f565b604082019050919050565b60006137fa6029836140cf565b91506138058261496e565b604082019050919050565b600061381d602f836140cf565b9150613828826149bd565b604082019050919050565b60006138406029836140cf565b915061384b82614a0c565b604082019050919050565b60006138636021836140cf565b915061386e82614a5b565b604082019050919050565b60006138866000836140c4565b915061389182614aaa565b600082019050919050565b60006138a96031836140cf565b91506138b482614aad565b604082019050919050565b60006138cc6026836140cf565b91506138d782614afc565b604082019050919050565b60006138ef6024836140cf565b91506138fa82614b4b565b604082019050919050565b60006139126054836140cf565b915061391d82614b9a565b606082019050919050565b6139318161420c565b82525050565b6139486139438261420c565b614353565b82525050565b6139578161423a565b82525050565b61396e6139698261423a565b614365565b82525050565b61397d81614244565b82525050565b60006139908284866133a2565b91508190509392505050565b60006139a88284613400565b915081905092915050565b60006139bf82846134b1565b915081905092915050565b60006139d68285613569565b91506139e28284613569565b91508190509392505050565b60006139f982613879565b9150819050919050565b6000613a0f8285613937565b600282019150613a1f828461395d565b6020820191508190509392505050565b6000602082019050613a446000830184613348565b92915050565b6000608082019050613a5f6000830187613348565b613a6c6020830186613348565b613a79604083018561394e565b8181036060830152613a8b81846133c7565b905095945050505050565b6000604082019050613aab6000830185613348565b613ab8602083018461394e565b9392505050565b6000602082019050613ad46000830184613357565b92915050565b60006020820190508181036000830152613af481846133c7565b905092915050565b60006020820190508181036000830152613b168184613530565b905092915050565b60006020820190508181036000830152613b378161359a565b9050919050565b60006020820190508181036000830152613b57816135bd565b9050919050565b60006020820190508181036000830152613b77816135e0565b9050919050565b60006020820190508181036000830152613b9781613603565b9050919050565b60006020820190508181036000830152613bb781613626565b9050919050565b60006020820190508181036000830152613bd781613649565b9050919050565b60006020820190508181036000830152613bf78161366c565b9050919050565b60006020820190508181036000830152613c178161368f565b9050919050565b60006020820190508181036000830152613c37816136b2565b9050919050565b60006020820190508181036000830152613c57816136d5565b9050919050565b60006020820190508181036000830152613c77816136f8565b9050919050565b60006020820190508181036000830152613c978161371b565b9050919050565b60006020820190508181036000830152613cb78161373e565b9050919050565b60006020820190508181036000830152613cd781613761565b9050919050565b60006020820190508181036000830152613cf781613784565b9050919050565b60006020820190508181036000830152613d17816137a7565b9050919050565b60006020820190508181036000830152613d37816137ca565b9050919050565b60006020820190508181036000830152613d57816137ed565b9050919050565b60006020820190508181036000830152613d7781613810565b9050919050565b60006020820190508181036000830152613d9781613833565b9050919050565b60006020820190508181036000830152613db781613856565b9050919050565b60006020820190508181036000830152613dd78161389c565b9050919050565b60006020820190508181036000830152613df7816138bf565b9050919050565b60006020820190508181036000830152613e17816138e2565b9050919050565b60006020820190508181036000830152613e3781613905565b9050919050565b600060a082019050613e536000830188613928565b613e606020830187613348565b8181036040830152613e7281866133c7565b9050613e816060830185613357565b8181036080830152613e9381846133c7565b90509695505050505050565b6000608082019050613eb46000830188613928565b8181036020830152613ec681876133c7565b9050613ed56040830186613974565b8181036060830152613ee8818486613375565b90509695505050505050565b6000608082019050613f096000830187613928565b8181036020830152613f1b81866133c7565b9050613f2a6040830185613974565b8181036060830152613f3c81846133c7565b905095945050505050565b600060c082019050613f5c6000830189613928565b8181036020830152613f6e8188613431565b90508181036040830152613f8281876133c7565b9050613f916060830186613339565b613f9e6080830185613348565b81810360a0830152613fb081846133c7565b9050979650505050505050565b6000602082019050613fd2600083018461394e565b92915050565b6000604082019050613fed600083018561394e565b613ffa6020830184613366565b9392505050565b600061400b61401c565b905061401782826142d9565b919050565b6000604051905090565b600067ffffffffffffffff8211156140415761404061445c565b5b61404a826144a9565b9050602081019050919050565b600067ffffffffffffffff8211156140725761407161445c565b5b61407b826144a9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140f68261423a565b91506141018361423a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614136576141356143a0565b5b828201905092915050565b600061414c8261423a565b91506141578361423a565b925082614167576141666143cf565b5b828204905092915050565b600061417d8261423a565b91506141888361423a565b92508282101561419b5761419a6143a0565b5b828203905092915050565b60006141b18261421a565b9050919050565b60006141c38261421a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614292578082015181840152602081019050614277565b838111156142a1576000848401525b50505050565b600060028204905060018216806142bf57607f821691505b602082108114156142d3576142d26143fe565b5b50919050565b6142e2826144a9565b810181811067ffffffffffffffff821117156143015761430061445c565b5b80604052505050565b60006143158261423a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614348576143476143a0565b5b600182019050919050565b600061435e826144ba565b9050919050565b6000819050919050565b600061437a8261423a565b91506143858361423a565b925082614395576143946143cf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6f6d6e69206d6f73717569746f65733a204d61782033204e465473207065722060008201527f7472616e73616374696f6e000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6f6d6e69206d6f73717569746f65733a204661696c656420746f20776974686460008201527f7261772045746865720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f6f6d6e69206d6f73717569746f65733a204d696e74206578636565647320737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f6f6d6e69206d6f73717569746f65733a206d73672e76616c7565206e6f74206560008201527f6e6f75676820746f20636f766572206d6573736167654665652e2053656e642060208201527f67617320666f72206d6573736167652066656573000000000000000000000000604082015250565b614c18816141a6565b8114614c2357600080fd5b50565b614c2f816141b8565b8114614c3a57600080fd5b50565b614c46816141ca565b8114614c5157600080fd5b50565b614c5d816141e0565b8114614c6857600080fd5b50565b614c748161420c565b8114614c7f57600080fd5b50565b614c8b8161423a565b8114614c9657600080fd5b50565b614ca281614244565b8114614cad57600080fd5b50565b614cb981614258565b8114614cc457600080fd5b5056fea2646970667358221220cc4743fba153d4c07e0cb7d284810577e60af8b00506e8b3936ae7c81fdab50064736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67500000000000000000000000000000000000000000000000000000000000000046970667300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c15760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610623578063eb8d72b714610660578063ed88c68e14610689578063f2fde38b14610693576101c1565b8063b88d4fde14610585578063c87b56dd146105ae578063cf89fa03146105eb578063d1deba1f14610607576101c1565b8063943fb872116100d1578063943fb872146104dd57806395d89b4114610506578063a22cb46514610531578063b2bdfa7b1461055a576101c1565b80637533d788146104375780638da5cb5b146104745780638ee749121461049f576101c1565b80632e1a7d4d116101645780636352211e1161013e5780636352211e1461038a5780636ecd2306146103c757806370a08231146103e3578063715018a614610420576101c1565b80632e1a7d4d1461030f57806342842e0e1461033857806355f804b314610361576101c1565b8063081812fc116101a0578063081812fc14610257578063095ea7b3146102945780631c37a822146102bd57806323b872dd146102e6576101c1565b80621d3567146101c657806301ffc9a7146101ef57806306fdde031461022c575b600080fd5b3480156101d257600080fd5b506101ed60048036038101906101e891906131c0565b6106bc565b005b3480156101fb57600080fd5b5061021660048036038101906102119190612f7d565b6108fe565b6040516102239190613abf565b60405180910390f35b34801561023857600080fd5b506102416109e0565b60405161024e9190613afc565b60405180910390f35b34801561026357600080fd5b5061027e6004803603810190610279919061329f565b610a72565b60405161028b9190613a2f565b60405180910390f35b3480156102a057600080fd5b506102bb60048036038101906102b69190612f3d565b610af7565b005b3480156102c957600080fd5b506102e460048036038101906102df91906131c0565b610c0f565b005b3480156102f257600080fd5b5061030d60048036038101906103089190612e27565b610c8f565b005b34801561031b57600080fd5b506103366004803603810190610331919061329f565b610cef565b005b34801561034457600080fd5b5061035f600480360381019061035a9190612e27565b610e3d565b005b34801561036d57600080fd5b5061038860048036038101906103839190612fd7565b610e5d565b005b34801561039657600080fd5b506103b160048036038101906103ac919061329f565b610ef3565b6040516103be9190613a2f565b60405180910390f35b6103e160048036038101906103dc919061330c565b610fa5565b005b3480156103ef57600080fd5b5061040a60048036038101906104059190612d7a565b611086565b6040516104179190613fbd565b60405180910390f35b34801561042c57600080fd5b5061043561113e565b005b34801561044357600080fd5b5061045e60048036038101906104599190613020565b6111c6565b60405161046b9190613ada565b60405180910390f35b34801561048057600080fd5b50610489611266565b6040516104969190613a2f565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c191906130ad565b61128f565b6040516104d4929190613fd8565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff919061329f565b6112e3565b005b34801561051257600080fd5b5061051b611369565b6040516105289190613afc565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190612efd565b6113fb565b005b34801561056657600080fd5b5061056f611411565b60405161057c9190613a2f565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190612e7a565b611437565b005b3480156105ba57600080fd5b506105d560048036038101906105d0919061329f565b611499565b6040516105e29190613afc565b60405180910390f35b6106056004803603810190610600919061325f565b611540565b005b610621600480360381019061061c919061311c565b611833565b005b34801561062f57600080fd5b5061064a60048036038101906106459190612de7565b6119d3565b6040516106579190613abf565b60405180910390f35b34801561066c57600080fd5b506106876004803603810190610682919061304d565b611a67565b005b610691611b13565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190612d7a565b611b15565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461071657600080fd5b600960008561ffff1661ffff168152602001908152602001600020805461073c906142a7565b905083511480156107825750600960008561ffff1661ffff16815260200190815260200160002060405161077091906139b3565b60405180910390208380519060200120145b6107c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b890613d1e565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b81526004016108009493929190613ef4565b600060405180830381600087803b15801561081a57600080fd5b505af192505050801561082b575060015b6108f7576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff16815260200190815260200160002084604051610875919061399c565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d848484846040516108ea9493929190613ef4565b60405180910390a16108f8565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d957506109d882611c0d565b5b9050919050565b6060600180546109ef906142a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1b906142a7565b8015610a685780601f10610a3d57610100808354040283529160200191610a68565b820191906000526020600020905b815481529060010190602001808311610a4b57829003601f168201915b5050505050905090565b6000610a7d82611c77565b610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab390613cde565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0282610ef3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90613d9e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b92611ce3565b73ffffffffffffffffffffffffffffffffffffffff161480610bc15750610bc081610bbb611ce3565b6119d3565b5b610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790613c3e565b60405180910390fd5b610c0a8383611ceb565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490613c9e565b60405180910390fd5b610c8984848484611da4565b50505050565b610ca0610c9a611ce3565b82611dd1565b610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690613dbe565b60405180910390fd5b610cea838383611eaf565b505050565b610cf7611ce3565b73ffffffffffffffffffffffffffffffffffffffff16610d15611266565b73ffffffffffffffffffffffffffffffffffffffff1614610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290613cfe565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610db3906139ee565b60006040518083038185875af1925050503d8060008114610df0576040519150601f19603f3d011682016040523d82523d6000602084013e610df5565b606091505b5050905080610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090613d7e565b60405180910390fd5b5050565b610e5883838360405180602001604052806000815250611437565b505050565b610e65611ce3565b73ffffffffffffffffffffffffffffffffffffffff16610e83611266565b73ffffffffffffffffffffffffffffffffffffffff1614610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090613cfe565b60405180910390fd5b80600b9080519060200190610eef929190612a49565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390613c7e565b60405180910390fd5b80915050919050565b60048160ff1610610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290613c1e565b60405180910390fd5b600d548160ff16600c54610fff91906140eb565b1115611040576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103790613dfe565b60405180910390fd5b6000600190505b8160ff1681116110825761106f33600c600081546110649061430a565b91905081905561210b565b808061107a9061430a565b915050611047565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ee90613c5e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611146611ce3565b73ffffffffffffffffffffffffffffffffffffffff16611164611266565b73ffffffffffffffffffffffffffffffffffffffff16146111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b190613cfe565b60405180910390fd5b6111c46000612129565b565b600960205280600052604060002060009150905080546111e5906142a7565b80601f0160208091040260200160405190810160405280929190818152602001828054611211906142a7565b801561125e5780601f106112335761010080835404028352916020019161125e565b820191906000526020600020905b81548152906001019060200180831161124157829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b6112eb611ce3565b73ffffffffffffffffffffffffffffffffffffffff16611309611266565b73ffffffffffffffffffffffffffffffffffffffff161461135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690613cfe565b60405180910390fd5b80600e8190555050565b606060028054611378906142a7565b80601f01602080910402602001604051908101604052809291908181526020018280546113a4906142a7565b80156113f15780601f106113c6576101008083540402835291602001916113f1565b820191906000526020600020905b8154815290600101906020018083116113d457829003601f168201915b5050505050905090565b61140d611406611ce3565b83836121ed565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611448611442611ce3565b83611dd1565b611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e90613dbe565b60405180910390fd5b6114938484848461235a565b50505050565b60606114a482611c77565b6114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da90613d5e565b60405180910390fd5b60006114ed6123b6565b9050600081511161150d5760405180602001604052806000815250611538565b8061151784612448565b6040516020016115289291906139ca565b6040516020818303038152906040525b915050919050565b61154981610ef3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad90613bde565b60405180910390fd5b6000600960008461ffff1661ffff16815260200190815260200160002080546115de906142a7565b905011611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790613b9e565b60405180910390fd5b611629816125a9565b6000338260405160200161163e929190613a96565b6040516020818303038152906040529050600060019050600081600e5460405160200161166c929190613a03565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b81526004016116e3959493929190613e3e565b604080518083038186803b1580156116fa57600080fd5b505afa15801561170e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173291906132cc565b50905080341015611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f90613e1e565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b81526004016117f996959493929190613f47565b6000604051808303818588803b15801561181257600080fd5b505af1158015611826573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff1681526020019081526020016000208560405161185e919061399c565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b816001015414156118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca90613dde565b60405180910390fd5b8060000154838390501480156119035750806001015483836040516118f9929190613983565b6040518091039020145b611942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193990613bbe565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b8152600401611999959493929190613e9f565b600060405180830381600087803b1580156119b357600080fd5b505af11580156119c7573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a6f611ce3565b73ffffffffffffffffffffffffffffffffffffffff16611a8d611266565b73ffffffffffffffffffffffffffffffffffffffff1614611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90613cfe565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611b0d929190612acf565b50505050565b565b611b1d611ce3565b73ffffffffffffffffffffffffffffffffffffffff16611b3b611266565b73ffffffffffffffffffffffffffffffffffffffff1614611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890613cfe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890613b3e565b60405180910390fd5b611c0a81612129565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d5e83610ef3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611dbb9190612da7565b91509150611dc9828261210b565b505050505050565b6000611ddc82611c77565b611e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1290613bfe565b60405180910390fd5b6000611e2683610ef3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e9557508373ffffffffffffffffffffffffffffffffffffffff16611e7d84610a72565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ea65750611ea581856119d3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ecf82610ef3565b73ffffffffffffffffffffffffffffffffffffffff1614611f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1c90613d3e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8c90613b5e565b60405180910390fd5b611fa08383836126ba565b611fab600082611ceb565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ffb9190614172565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461205291906140eb565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6121258282604051806020016040528060008152506126bf565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561225c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225390613b7e565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161234d9190613abf565b60405180910390a3505050565b612365848484611eaf565b6123718484848461271a565b6123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a790613b1e565b60405180910390fd5b50505050565b6060600b80546123c5906142a7565b80601f01602080910402602001604051908101604052809291908181526020018280546123f1906142a7565b801561243e5780601f106124135761010080835404028352916020019161243e565b820191906000526020600020905b81548152906001019060200180831161242157829003601f168201915b5050505050905090565b60606000821415612490576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125a4565b600082905060005b600082146124c25780806124ab9061430a565b915050600a826124bb9190614141565b9150612498565b60008167ffffffffffffffff8111156124de576124dd61445c565b5b6040519080825280601f01601f1916602001820160405280156125105781602001600182028036833780820191505090505b5090505b6000851461259d576001826125299190614172565b9150600a85612538919061436f565b603061254491906140eb565b60f81b81838151811061255a5761255961442d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125969190614141565b9450612514565b8093505050505b919050565b60006125b482610ef3565b90506125c2816000846126ba565b6125cd600083611ceb565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461261d9190614172565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6126c983836128b1565b6126d6600084848461271a565b612715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270c90613b1e565b60405180910390fd5b505050565b600061273b8473ffffffffffffffffffffffffffffffffffffffff16612a36565b156128a4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612764611ce3565b8786866040518563ffffffff1660e01b81526004016127869493929190613a4a565b602060405180830381600087803b1580156127a057600080fd5b505af19250505080156127d157506040513d601f19601f820116820180604052508101906127ce9190612faa565b60015b612854573d8060008114612801576040519150601f19603f3d011682016040523d82523d6000602084013e612806565b606091505b5060008151141561284c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284390613b1e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128a9565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291890613cbe565b60405180910390fd5b61292d600083836126ba565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461297d91906140eb565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612a55906142a7565b90600052602060002090601f016020900481019282612a775760008555612abe565b82601f10612a9057805160ff1916838001178555612abe565b82800160010185558215612abe579182015b82811115612abd578251825591602001919060010190612aa2565b5b509050612acb9190612b55565b5090565b828054612adb906142a7565b90600052602060002090601f016020900481019282612afd5760008555612b44565b82601f10612b1657803560ff1916838001178555612b44565b82800160010185558215612b44579182015b82811115612b43578235825591602001919060010190612b28565b5b509050612b519190612b55565b5090565b5b80821115612b6e576000816000905550600101612b56565b5090565b6000612b85612b8084614026565b614001565b905082815260208101848484011115612ba157612ba061449a565b5b612bac848285614265565b509392505050565b6000612bc7612bc284614057565b614001565b905082815260208101848484011115612be357612be261449a565b5b612bee848285614265565b509392505050565b600081359050612c0581614c0f565b92915050565b600081519050612c1a81614c26565b92915050565b600081359050612c2f81614c3d565b92915050565b600081359050612c4481614c54565b92915050565b600081519050612c5981614c54565b92915050565b60008083601f840112612c7557612c74614490565b5b8235905067ffffffffffffffff811115612c9257612c9161448b565b5b602083019150836001820283011115612cae57612cad614495565b5b9250929050565b600082601f830112612cca57612cc9614490565b5b8135612cda848260208601612b72565b91505092915050565b600082601f830112612cf857612cf7614490565b5b8135612d08848260208601612bb4565b91505092915050565b600081359050612d2081614c6b565b92915050565b600081359050612d3581614c82565b92915050565b600081519050612d4a81614c82565b92915050565b600081359050612d5f81614c99565b92915050565b600081359050612d7481614cb0565b92915050565b600060208284031215612d9057612d8f6144a4565b5b6000612d9e84828501612bf6565b91505092915050565b60008060408385031215612dbe57612dbd6144a4565b5b6000612dcc85828601612c0b565b9250506020612ddd85828601612d3b565b9150509250929050565b60008060408385031215612dfe57612dfd6144a4565b5b6000612e0c85828601612bf6565b9250506020612e1d85828601612bf6565b9150509250929050565b600080600060608486031215612e4057612e3f6144a4565b5b6000612e4e86828701612bf6565b9350506020612e5f86828701612bf6565b9250506040612e7086828701612d26565b9150509250925092565b60008060008060808587031215612e9457612e936144a4565b5b6000612ea287828801612bf6565b9450506020612eb387828801612bf6565b9350506040612ec487828801612d26565b925050606085013567ffffffffffffffff811115612ee557612ee461449f565b5b612ef187828801612cb5565b91505092959194509250565b60008060408385031215612f1457612f136144a4565b5b6000612f2285828601612bf6565b9250506020612f3385828601612c20565b9150509250929050565b60008060408385031215612f5457612f536144a4565b5b6000612f6285828601612bf6565b9250506020612f7385828601612d26565b9150509250929050565b600060208284031215612f9357612f926144a4565b5b6000612fa184828501612c35565b91505092915050565b600060208284031215612fc057612fbf6144a4565b5b6000612fce84828501612c4a565b91505092915050565b600060208284031215612fed57612fec6144a4565b5b600082013567ffffffffffffffff81111561300b5761300a61449f565b5b61301784828501612ce3565b91505092915050565b600060208284031215613036576130356144a4565b5b600061304484828501612d11565b91505092915050565b600080600060408486031215613066576130656144a4565b5b600061307486828701612d11565b935050602084013567ffffffffffffffff8111156130955761309461449f565b5b6130a186828701612c5f565b92509250509250925092565b6000806000606084860312156130c6576130c56144a4565b5b60006130d486828701612d11565b935050602084013567ffffffffffffffff8111156130f5576130f461449f565b5b61310186828701612cb5565b925050604061311286828701612d26565b9150509250925092565b600080600080600060808688031215613138576131376144a4565b5b600061314688828901612d11565b955050602086013567ffffffffffffffff8111156131675761316661449f565b5b61317388828901612cb5565b945050604061318488828901612d50565b935050606086013567ffffffffffffffff8111156131a5576131a461449f565b5b6131b188828901612c5f565b92509250509295509295909350565b600080600080608085870312156131da576131d96144a4565b5b60006131e887828801612d11565b945050602085013567ffffffffffffffff8111156132095761320861449f565b5b61321587828801612cb5565b935050604061322687828801612d50565b925050606085013567ffffffffffffffff8111156132475761324661449f565b5b61325387828801612cb5565b91505092959194509250565b60008060408385031215613276576132756144a4565b5b600061328485828601612d11565b925050602061329585828601612d26565b9150509250929050565b6000602082840312156132b5576132b46144a4565b5b60006132c384828501612d26565b91505092915050565b600080604083850312156132e3576132e26144a4565b5b60006132f185828601612d3b565b925050602061330285828601612d3b565b9150509250929050565b600060208284031215613322576133216144a4565b5b600061333084828501612d65565b91505092915050565b613342816141b8565b82525050565b613351816141a6565b82525050565b613360816141ca565b82525050565b61336f816141d6565b82525050565b600061338183856140b3565b935061338e838584614265565b613397836144a9565b840190509392505050565b60006133ae83856140c4565b93506133bb838584614265565b82840190509392505050565b60006133d28261409d565b6133dc81856140b3565b93506133ec818560208601614274565b6133f5816144a9565b840191505092915050565b600061340b8261409d565b61341581856140c4565b9350613425818560208601614274565b80840191505092915050565b6000815461343e816142a7565b61344881866140b3565b945060018216600081146134635760018114613475576134a8565b60ff19831686526020860193506134a8565b61347e85614088565b60005b838110156134a057815481890152600182019150602081019050613481565b808801955050505b50505092915050565b600081546134be816142a7565b6134c881866140c4565b945060018216600081146134e357600181146134f457613527565b60ff19831686528186019350613527565b6134fd85614088565b60005b8381101561351f57815481890152600182019150602081019050613500565b838801955050505b50505092915050565b600061353b826140a8565b61354581856140cf565b9350613555818560208601614274565b61355e816144a9565b840191505092915050565b6000613574826140a8565b61357e81856140e0565b935061358e818560208601614274565b80840191505092915050565b60006135a76032836140cf565b91506135b2826144c7565b604082019050919050565b60006135ca6026836140cf565b91506135d582614516565b604082019050919050565b60006135ed6024836140cf565b91506135f882614565565b604082019050919050565b60006136106019836140cf565b915061361b826145b4565b602082019050919050565b6000613633602e836140cf565b915061363e826145dd565b604082019050919050565b6000613656601a836140cf565b91506136618261462c565b602082019050919050565b60006136796022836140cf565b915061368482614655565b604082019050919050565b600061369c602c836140cf565b91506136a7826146a4565b604082019050919050565b60006136bf602b836140cf565b91506136ca826146f3565b604082019050919050565b60006136e26038836140cf565b91506136ed82614742565b604082019050919050565b6000613705602a836140cf565b915061371082614791565b604082019050919050565b60006137286029836140cf565b9150613733826147e0565b604082019050919050565b600061374b602b836140cf565b91506137568261482f565b604082019050919050565b600061376e6020836140cf565b91506137798261487e565b602082019050919050565b6000613791602c836140cf565b915061379c826148a7565b604082019050919050565b60006137b46020836140cf565b91506137bf826148f6565b602082019050919050565b60006137d76034836140cf565b91506137e28261491f565b604082019050919050565b60006137fa6029836140cf565b91506138058261496e565b604082019050919050565b600061381d602f836140cf565b9150613828826149bd565b604082019050919050565b60006138406029836140cf565b915061384b82614a0c565b604082019050919050565b60006138636021836140cf565b915061386e82614a5b565b604082019050919050565b60006138866000836140c4565b915061389182614aaa565b600082019050919050565b60006138a96031836140cf565b91506138b482614aad565b604082019050919050565b60006138cc6026836140cf565b91506138d782614afc565b604082019050919050565b60006138ef6024836140cf565b91506138fa82614b4b565b604082019050919050565b60006139126054836140cf565b915061391d82614b9a565b606082019050919050565b6139318161420c565b82525050565b6139486139438261420c565b614353565b82525050565b6139578161423a565b82525050565b61396e6139698261423a565b614365565b82525050565b61397d81614244565b82525050565b60006139908284866133a2565b91508190509392505050565b60006139a88284613400565b915081905092915050565b60006139bf82846134b1565b915081905092915050565b60006139d68285613569565b91506139e28284613569565b91508190509392505050565b60006139f982613879565b9150819050919050565b6000613a0f8285613937565b600282019150613a1f828461395d565b6020820191508190509392505050565b6000602082019050613a446000830184613348565b92915050565b6000608082019050613a5f6000830187613348565b613a6c6020830186613348565b613a79604083018561394e565b8181036060830152613a8b81846133c7565b905095945050505050565b6000604082019050613aab6000830185613348565b613ab8602083018461394e565b9392505050565b6000602082019050613ad46000830184613357565b92915050565b60006020820190508181036000830152613af481846133c7565b905092915050565b60006020820190508181036000830152613b168184613530565b905092915050565b60006020820190508181036000830152613b378161359a565b9050919050565b60006020820190508181036000830152613b57816135bd565b9050919050565b60006020820190508181036000830152613b77816135e0565b9050919050565b60006020820190508181036000830152613b9781613603565b9050919050565b60006020820190508181036000830152613bb781613626565b9050919050565b60006020820190508181036000830152613bd781613649565b9050919050565b60006020820190508181036000830152613bf78161366c565b9050919050565b60006020820190508181036000830152613c178161368f565b9050919050565b60006020820190508181036000830152613c37816136b2565b9050919050565b60006020820190508181036000830152613c57816136d5565b9050919050565b60006020820190508181036000830152613c77816136f8565b9050919050565b60006020820190508181036000830152613c978161371b565b9050919050565b60006020820190508181036000830152613cb78161373e565b9050919050565b60006020820190508181036000830152613cd781613761565b9050919050565b60006020820190508181036000830152613cf781613784565b9050919050565b60006020820190508181036000830152613d17816137a7565b9050919050565b60006020820190508181036000830152613d37816137ca565b9050919050565b60006020820190508181036000830152613d57816137ed565b9050919050565b60006020820190508181036000830152613d7781613810565b9050919050565b60006020820190508181036000830152613d9781613833565b9050919050565b60006020820190508181036000830152613db781613856565b9050919050565b60006020820190508181036000830152613dd78161389c565b9050919050565b60006020820190508181036000830152613df7816138bf565b9050919050565b60006020820190508181036000830152613e17816138e2565b9050919050565b60006020820190508181036000830152613e3781613905565b9050919050565b600060a082019050613e536000830188613928565b613e606020830187613348565b8181036040830152613e7281866133c7565b9050613e816060830185613357565b8181036080830152613e9381846133c7565b90509695505050505050565b6000608082019050613eb46000830188613928565b8181036020830152613ec681876133c7565b9050613ed56040830186613974565b8181036060830152613ee8818486613375565b90509695505050505050565b6000608082019050613f096000830187613928565b8181036020830152613f1b81866133c7565b9050613f2a6040830185613974565b8181036060830152613f3c81846133c7565b905095945050505050565b600060c082019050613f5c6000830189613928565b8181036020830152613f6e8188613431565b90508181036040830152613f8281876133c7565b9050613f916060830186613339565b613f9e6080830185613348565b81810360a0830152613fb081846133c7565b9050979650505050505050565b6000602082019050613fd2600083018461394e565b92915050565b6000604082019050613fed600083018561394e565b613ffa6020830184613366565b9392505050565b600061400b61401c565b905061401782826142d9565b919050565b6000604051905090565b600067ffffffffffffffff8211156140415761404061445c565b5b61404a826144a9565b9050602081019050919050565b600067ffffffffffffffff8211156140725761407161445c565b5b61407b826144a9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140f68261423a565b91506141018361423a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614136576141356143a0565b5b828201905092915050565b600061414c8261423a565b91506141578361423a565b925082614167576141666143cf565b5b828204905092915050565b600061417d8261423a565b91506141888361423a565b92508282101561419b5761419a6143a0565b5b828203905092915050565b60006141b18261421a565b9050919050565b60006141c38261421a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614292578082015181840152602081019050614277565b838111156142a1576000848401525b50505050565b600060028204905060018216806142bf57607f821691505b602082108114156142d3576142d26143fe565b5b50919050565b6142e2826144a9565b810181811067ffffffffffffffff821117156143015761430061445c565b5b80604052505050565b60006143158261423a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614348576143476143a0565b5b600182019050919050565b600061435e826144ba565b9050919050565b6000819050919050565b600061437a8261423a565b91506143858361423a565b925082614395576143946143cf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6f6d6e69206d6f73717569746f65733a204d61782033204e465473207065722060008201527f7472616e73616374696f6e000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6f6d6e69206d6f73717569746f65733a204661696c656420746f20776974686460008201527f7261772045746865720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f6f6d6e69206d6f73717569746f65733a204d696e74206578636565647320737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f6f6d6e69206d6f73717569746f65733a206d73672e76616c7565206e6f74206560008201527f6e6f75676820746f20636f766572206d6573736167654665652e2053656e642060208201527f67617320666f72206d6573736167652066656573000000000000000000000000604082015250565b614c18816141a6565b8114614c2357600080fd5b50565b614c2f816141b8565b8114614c3a57600080fd5b50565b614c46816141ca565b8114614c5157600080fd5b50565b614c5d816141e0565b8114614c6857600080fd5b50565b614c748161420c565b8114614c7f57600080fd5b50565b614c8b8161423a565b8114614c9657600080fd5b50565b614ca281614244565b8114614cad57600080fd5b50565b614cb981614258565b8114614cc457600080fd5b5056fea2646970667358221220cc4743fba153d4c07e0cb7d284810577e60af8b00506e8b3936ae7c81fdab50064736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67500000000000000000000000000000000000000000000000000000000000000046970667300000000000000000000000000000000000000000000000000000000

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

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


Deployed Bytecode Sourcemap

50132:4129:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46790:1098;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32855:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34024:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35717:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35240:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47896:435;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36636:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53233:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37083:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53007:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33631:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50756:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33274:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13167:103;;;;;;;;;;;;;:::i;:::-;;46589:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12516:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46480:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;53507:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34193:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36097:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50203:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37339:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34368:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51294:1705;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48991:916;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36355:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49915:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53105:65;;;:::i;:::-;;13425:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46790:1098;46995:8;;;;;;;;;;;46973:31;;:10;:31;;;46965:40;;;;;;47130:19;:32;47150:11;47130:32;;;;;;;;;;;;;;;:39;;;;;:::i;:::-;;;47108:11;:18;:61;:168;;;;;47243:19;:32;47263:11;47243:32;;;;;;;;;;;;;;;47233:43;;;;;;:::i;:::-;;;;;;;;47200:11;47190:22;;;;;;:86;47108:168;47086:270;;;;;;;;;;;;:::i;:::-;;;;;;;;;47484:4;:16;;;47501:11;47514;47527:6;47535:8;47484:60;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47480:401;;47691:101;;;;;;;;47724:8;:15;47691:101;;;;47768:8;47758:19;;;;;;47691:101;;;47640:14;:27;47655:11;47640:27;;;;;;;;;;;;;;;47668:11;47640:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;47681:6;47640:48;;;;;;;;;;;;;:152;;;;;;;;;;;;;;;;;;;47812:57;47826:11;47839;47852:6;47860:8;47812:57;;;;;;;;;:::i;:::-;;;;;;;;47480:401;;;;46790:1098;;;;:::o;32855:355::-;33002:4;33059:25;33044:40;;;:11;:40;;;;:105;;;;33116:33;33101:48;;;:11;:48;;;;33044:105;:158;;;;33166:36;33190:11;33166:23;:36::i;:::-;33044:158;33024:178;;32855:355;;;:::o;34024:100::-;34078:13;34111:5;34104:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34024:100;:::o;35717:308::-;35838:7;35885:16;35893:7;35885;:16::i;:::-;35863:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;35993:15;:24;36009:7;35993:24;;;;;;;;;;;;;;;;;;;;;35986:31;;35717:308;;;:::o;35240:411::-;35321:13;35337:23;35352:7;35337:14;:23::i;:::-;35321:39;;35385:5;35379:11;;:2;:11;;;;35371:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;35479:5;35463:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;35488:37;35505:5;35512:12;:10;:12::i;:::-;35488:16;:37::i;:::-;35463:62;35441:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;35622:21;35631:2;35635:7;35622:8;:21::i;:::-;35310:341;35240:411;;:::o;47896:435::-;48144:4;48122:27;;:10;:27;;;48100:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;48269:54;48280:11;48293;48306:6;48314:8;48269:10;:54::i;:::-;47896:435;;;;:::o;36636:376::-;36845:41;36864:12;:10;:12::i;:::-;36878:7;36845:18;:41::i;:::-;36823:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;36976:28;36986:4;36992:2;36996:7;36976:9;:28::i;:::-;36636:376;;;:::o;53233:190::-;12747:12;:10;:12::i;:::-;12736:23;;:7;:5;:7::i;:::-;:23;;;12728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53295:9:::1;53318:6;;;;;;;;;;;53310:20;;53338:3;53310:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53294:52;;;53365:4;53357:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;53283:140;53233:190:::0;:::o;37083:185::-;37221:39;37238:4;37244:2;37248:7;37221:39;;;;;;;;;;;;:16;:39::i;:::-;37083:185;;;:::o;53007:90::-;12747:12;:10;:12::i;:::-;12736:23;;:7;:5;:7::i;:::-;:23;;;12728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53086:3:::1;53076:7;:13;;;;;;;;;;;;:::i;:::-;;53007:90:::0;:::o;33631:326::-;33748:7;33773:13;33789:7;:16;33797:7;33789:16;;;;;;;;;;;;;;;;;;;;;33773:32;;33855:1;33838:19;;:5;:19;;;;33816:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;33944:5;33937:12;;;33631:326;;;:::o;50756:399::-;50835:1;50823:9;:13;;;50815:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50944:15;;50931:9;50917:23;;:11;;:23;;;;:::i;:::-;:42;;50895:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;51049:9;51061:1;51049:13;;51044:104;51069:9;51064:14;;:1;:14;51044:104;;51100:36;51110:10;51124:11;;51122:13;;;;;:::i;:::-;;;;;;;51100:9;:36::i;:::-;51080:3;;;;;:::i;:::-;;;;51044:104;;;;50756:399;:::o;33274:295::-;33391:7;33455:1;33438:19;;:5;:19;;;;33416:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;33545:9;:16;33555:5;33545:16;;;;;;;;;;;;;;;;33538:23;;33274:295;;;:::o;13167:103::-;12747:12;:10;:12::i;:::-;12736:23;;:7;:5;:7::i;:::-;:23;;;12728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13232:30:::1;13259:1;13232:18;:30::i;:::-;13167:103::o:0;46589:51::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12516:87::-;12562:7;12589:6;;;;;;;;;;;12582:13;;12516:87;:::o;46480:102::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53507:128::-;12747:12;:10;:12::i;:::-;12736:23;;:7;:5;:7::i;:::-;:23;;;12728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53621:6:::1;53592:26;:35;;;;53507:128:::0;:::o;34193:104::-;34249:13;34282:7;34275:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34193:104;:::o;36097:187::-;36224:52;36243:12;:10;:12::i;:::-;36257:8;36267;36224:18;:52::i;:::-;36097:187;;:::o;50203:21::-;;;;;;;;;;;;;:::o;37339:365::-;37528:41;37547:12;:10;:12::i;:::-;37561:7;37528:18;:41::i;:::-;37506:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;37657:39;37671:4;37677:2;37681:7;37690:5;37657:13;:39::i;:::-;37339:365;;;;:::o;34368:468::-;34486:13;34539:16;34547:7;34539;:16::i;:::-;34517:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;34643:21;34667:10;:8;:10::i;:::-;34643:34;;34732:1;34714:7;34708:21;:25;:120;;;;;;;;;;;;;;;;;34777:7;34786:18;:7;:16;:18::i;:::-;34760:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34708:120;34688:140;;;34368:468;;;:::o;51294:1705::-;51414:16;51422:7;51414;:16::i;:::-;51400:30;;:10;:30;;;51378:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;51564:1;51525:19;:29;51545:8;51525:29;;;;;;;;;;;;;;;:36;;;;;:::i;:::-;;;:40;51503:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;51719:14;51725:7;51719:5;:14::i;:::-;51807:20;51841:10;51853:7;51830:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51807:54;;51947:14;51964:1;51947:18;;51976:26;52036:7;52058:26;;52005:90;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51976:119;;52250:18;52274:8;;;;;;;;;;;:21;;;52310:8;52341:4;52361:7;52383:5;52403:13;52274:153;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52249:178;;;52475:10;52462:9;:23;;52440:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;52610:8;;;;;;;;;;;:13;;;52631:9;52656:8;52702:19;:29;52722:8;52702:29;;;;;;;;;;;;;;;52785:7;52841:10;52893:3;52951:13;52610:381;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51367:1632;;;;51294:1705;;:::o;48991:916::-;49215:32;49250:14;:27;49265:11;49250:27;;;;;;;;;;;;;;;49292:11;49250:64;;;;;;:::i;:::-;;;;;;;;;;;;;:72;49315:6;49250:72;;;;;;;;;;;;;49215:107;;49388:1;49380:10;;49355:9;:21;;;:35;;49333:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;49508:9;:23;;;49489:8;;:15;;:42;:107;;;;;49575:9;:21;;;49562:8;;49552:19;;;;;;;:::i;:::-;;;;;;;;:44;49489:107;49467:183;;;;;;;;;;;;:::i;:::-;;;;;;;;;49724:1;49698:9;:23;;:27;;;;49768:1;49760:10;;49736:9;:21;;:34;;;;49839:4;:16;;;49856:11;49869;49882:6;49890:8;;49839:60;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49159:748;48991:916;;;;;:::o;36355:214::-;36497:4;36526:18;:25;36545:5;36526:25;;;;;;;;;;;;;;;:35;36552:8;36526:35;;;;;;;;;;;;;;;;;;;;;;;;;36519:42;;36355:214;;;;:::o;49915:181::-;12747:12;:10;:12::i;:::-;12736:23;;:7;:5;:7::i;:::-;:23;;;12728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50074:14:::1;;50042:19;:29;50062:8;50042:29;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;49915:181:::0;;;:::o;53105:65::-;:::o;13425:238::-;12747:12;:10;:12::i;:::-;12736:23;;:7;:5;:7::i;:::-;:23;;;12728:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13548:1:::1;13528:22;;:8;:22;;;;13506:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;13627:28;13646:8;13627:18;:28::i;:::-;13425:238:::0;:::o;25442:207::-;25572:4;25616:25;25601:40;;;:11;:40;;;;25594:47;;25442:207;;;:::o;39251:127::-;39316:4;39368:1;39340:30;;:7;:16;39348:7;39340:16;;;;;;;;;;;;;;;;;;;;;:30;;;;39333:37;;39251:127;;;:::o;11219:98::-;11272:7;11299:10;11292:17;;11219:98;:::o;43305:174::-;43407:2;43380:15;:24;43396:7;43380:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43463:7;43459:2;43425:46;;43434:23;43449:7;43434:14;:23::i;:::-;43425:46;;;;;;;;;;;;43305:174;;:::o;53726:424::-;53922:14;53938:15;53982:8;53957:77;;;;;;;;;;;;:::i;:::-;53921:113;;;;54116:26;54126:6;54134:7;54116:9;:26::i;:::-;53891:259;;53726:424;;;;:::o;39545:452::-;39674:4;39718:16;39726:7;39718;:16::i;:::-;39696:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;39817:13;39833:23;39848:7;39833:14;:23::i;:::-;39817:39;;39886:5;39875:16;;:7;:16;;;:64;;;;39932:7;39908:31;;:20;39920:7;39908:11;:20::i;:::-;:31;;;39875:64;:113;;;;39956:32;39973:5;39980:7;39956:16;:32::i;:::-;39875:113;39867:122;;;39545:452;;;;:::o;42572:615::-;42745:4;42718:31;;:23;42733:7;42718:14;:23::i;:::-;:31;;;42696:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;42851:1;42837:16;;:2;:16;;;;42829:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;42907:39;42928:4;42934:2;42938:7;42907:20;:39::i;:::-;43011:29;43028:1;43032:7;43011:8;:29::i;:::-;43072:1;43053:9;:15;43063:4;43053:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;43101:1;43084:9;:13;43094:2;43084:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;43132:2;43113:7;:16;43121:7;43113:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;43171:7;43167:2;43152:27;;43161:4;43152:27;;;;;;;;;;;;42572:615;;;:::o;40339:110::-;40415:26;40425:2;40429:7;40415:26;;;;;;;;;;;;:9;:26::i;:::-;40339:110;;:::o;13823:191::-;13897:16;13916:6;;;;;;;;;;;13897:25;;13942:8;13933:6;;:17;;;;;;;;;;;;;;;;;;13997:8;13966:40;;13987:8;13966:40;;;;;;;;;;;;13886:128;13823:191;:::o;43621:315::-;43776:8;43767:17;;:5;:17;;;;43759:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;43863:8;43825:18;:25;43844:5;43825:25;;;;;;;;;;;;;;;:35;43851:8;43825:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;43909:8;43887:41;;43902:5;43887:41;;;43919:8;43887:41;;;;;;:::i;:::-;;;;;;;;43621:315;;;:::o;38586:352::-;38743:28;38753:4;38759:2;38763:7;38743:9;:28::i;:::-;38804:48;38827:4;38833:2;38837:7;38846:5;38804:22;:48::i;:::-;38782:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;38586:352;;;;:::o;54158:100::-;54210:13;54243:7;54236:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54158:100;:::o;8751:723::-;8807:13;9037:1;9028:5;:10;9024:53;;;9055:10;;;;;;;;;;;;;;;;;;;;;9024:53;9087:12;9102:5;9087:20;;9118:14;9143:78;9158:1;9150:4;:9;9143:78;;9176:8;;;;;:::i;:::-;;;;9207:2;9199:10;;;;;:::i;:::-;;;9143:78;;;9231:19;9263:6;9253:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9231:39;;9281:154;9297:1;9288:5;:10;9281:154;;9325:1;9315:11;;;;;:::i;:::-;;;9392:2;9384:5;:10;;;;:::i;:::-;9371:2;:24;;;;:::i;:::-;9358:39;;9341:6;9348;9341:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9421:2;9412:11;;;;;:::i;:::-;;;9281:154;;;9459:6;9445:21;;;;;8751:723;;;;:::o;41875:360::-;41935:13;41951:23;41966:7;41951:14;:23::i;:::-;41935:39;;41987:48;42008:5;42023:1;42027:7;41987:20;:48::i;:::-;42076:29;42093:1;42097:7;42076:8;:29::i;:::-;42138:1;42118:9;:16;42128:5;42118:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;42157:7;:16;42165:7;42157:16;;;;;;;;;;;;42150:23;;;;;;;;;;;42219:7;42215:1;42191:36;;42200:5;42191:36;;;;;;;;;;;;41924:311;41875:360;:::o;46053:126::-;;;;:::o;40676:321::-;40806:18;40812:2;40816:7;40806:5;:18::i;:::-;40857:54;40888:1;40892:2;40896:7;40905:5;40857:22;:54::i;:::-;40835:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;40676:321;;;:::o;44501:980::-;44656:4;44677:15;:2;:13;;;:15::i;:::-;44673:801;;;44746:2;44730:36;;;44789:12;:10;:12::i;:::-;44824:4;44851:7;44881:5;44730:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44709:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45105:1;45088:6;:13;:18;45084:320;;;45131:108;;;;;;;;;;:::i;:::-;;;;;;;;45084:320;45354:6;45348:13;45339:6;45335:2;45331:15;45324:38;44709:710;44979:41;;;44969:51;;;:6;:51;;;;44962:58;;;;;44673:801;45458:4;45451:11;;44501:980;;;;;;;:::o;41333:313::-;41427:1;41413:16;;:2;:16;;;;41405:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;41479:45;41508:1;41512:2;41516:7;41479:20;:45::i;:::-;41554:1;41537:9;:13;41547:2;41537:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;41585:2;41566:7;:16;41574:7;41566:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;41630:7;41626:2;41605:33;;41622:1;41605:33;;;;;;;;;;;;41333:313;;:::o;14839:387::-;14899:4;15107:12;15174:7;15162:20;15154:28;;15217:1;15210:4;:8;15203:15;;;14839:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:159::-;1051:5;1082:6;1076:13;1067:22;;1098:41;1133:5;1098:41;:::i;:::-;986:159;;;;:::o;1151:133::-;1194:5;1232:6;1219:20;1210:29;;1248:30;1272:5;1248:30;:::i;:::-;1151:133;;;;:::o;1290:137::-;1335:5;1373:6;1360:20;1351:29;;1389:32;1415:5;1389:32;:::i;:::-;1290:137;;;;:::o;1433:141::-;1489:5;1520:6;1514:13;1505:22;;1536:32;1562:5;1536:32;:::i;:::-;1433:141;;;;:::o;1593:552::-;1650:8;1660:6;1710:3;1703:4;1695:6;1691:17;1687:27;1677:122;;1718:79;;:::i;:::-;1677:122;1831:6;1818:20;1808:30;;1861:18;1853:6;1850:30;1847:117;;;1883:79;;:::i;:::-;1847:117;1997:4;1989:6;1985:17;1973:29;;2051:3;2043:4;2035:6;2031:17;2021:8;2017:32;2014:41;2011:128;;;2058:79;;:::i;:::-;2011:128;1593:552;;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:137::-;2913:5;2951:6;2938:20;2929:29;;2967:32;2993:5;2967:32;:::i;:::-;2868:137;;;;:::o;3011:139::-;3057:5;3095:6;3082:20;3073:29;;3111:33;3138:5;3111:33;:::i;:::-;3011:139;;;;:::o;3156:143::-;3213:5;3244:6;3238:13;3229:22;;3260:33;3287:5;3260:33;:::i;:::-;3156:143;;;;:::o;3305:137::-;3350:5;3388:6;3375:20;3366:29;;3404:32;3430:5;3404:32;:::i;:::-;3305:137;;;;:::o;3448:135::-;3492:5;3530:6;3517:20;3508:29;;3546:31;3571:5;3546:31;:::i;:::-;3448:135;;;;:::o;3589:329::-;3648:6;3697:2;3685:9;3676:7;3672:23;3668:32;3665:119;;;3703:79;;:::i;:::-;3665:119;3823:1;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3794:117;3589:329;;;;:::o;3924:523::-;4011:6;4019;4068:2;4056:9;4047:7;4043:23;4039:32;4036:119;;;4074:79;;:::i;:::-;4036:119;4194:1;4219:72;4283:7;4274:6;4263:9;4259:22;4219:72;:::i;:::-;4209:82;;4165:136;4340:2;4366:64;4422:7;4413:6;4402:9;4398:22;4366:64;:::i;:::-;4356:74;;4311:129;3924:523;;;;;:::o;4453:474::-;4521:6;4529;4578:2;4566:9;4557:7;4553:23;4549:32;4546:119;;;4584:79;;:::i;:::-;4546:119;4704:1;4729:53;4774:7;4765:6;4754:9;4750:22;4729:53;:::i;:::-;4719:63;;4675:117;4831:2;4857:53;4902:7;4893:6;4882:9;4878:22;4857:53;:::i;:::-;4847:63;;4802:118;4453:474;;;;;:::o;4933:619::-;5010:6;5018;5026;5075:2;5063:9;5054:7;5050:23;5046:32;5043:119;;;5081:79;;:::i;:::-;5043:119;5201:1;5226:53;5271:7;5262:6;5251:9;5247:22;5226:53;:::i;:::-;5216:63;;5172:117;5328:2;5354:53;5399:7;5390:6;5379:9;5375:22;5354:53;:::i;:::-;5344:63;;5299:118;5456:2;5482:53;5527:7;5518:6;5507:9;5503:22;5482:53;:::i;:::-;5472:63;;5427:118;4933:619;;;;;:::o;5558:943::-;5653:6;5661;5669;5677;5726:3;5714:9;5705:7;5701:23;5697:33;5694:120;;;5733:79;;:::i;:::-;5694:120;5853:1;5878:53;5923:7;5914:6;5903:9;5899:22;5878:53;:::i;:::-;5868:63;;5824:117;5980:2;6006:53;6051:7;6042:6;6031:9;6027:22;6006:53;:::i;:::-;5996:63;;5951:118;6108:2;6134:53;6179:7;6170:6;6159:9;6155:22;6134:53;:::i;:::-;6124:63;;6079:118;6264:2;6253:9;6249:18;6236:32;6295:18;6287:6;6284:30;6281:117;;;6317:79;;:::i;:::-;6281:117;6422:62;6476:7;6467:6;6456:9;6452:22;6422:62;:::i;:::-;6412:72;;6207:287;5558:943;;;;;;;:::o;6507:468::-;6572:6;6580;6629:2;6617:9;6608:7;6604:23;6600:32;6597:119;;;6635:79;;:::i;:::-;6597:119;6755:1;6780:53;6825:7;6816:6;6805:9;6801:22;6780:53;:::i;:::-;6770:63;;6726:117;6882:2;6908:50;6950:7;6941:6;6930:9;6926:22;6908:50;:::i;:::-;6898:60;;6853:115;6507:468;;;;;:::o;6981:474::-;7049:6;7057;7106:2;7094:9;7085:7;7081:23;7077:32;7074:119;;;7112:79;;:::i;:::-;7074:119;7232:1;7257:53;7302:7;7293:6;7282:9;7278:22;7257:53;:::i;:::-;7247:63;;7203:117;7359:2;7385:53;7430:7;7421:6;7410:9;7406:22;7385:53;:::i;:::-;7375:63;;7330:118;6981:474;;;;;:::o;7461:327::-;7519:6;7568:2;7556:9;7547:7;7543:23;7539:32;7536:119;;;7574:79;;:::i;:::-;7536:119;7694:1;7719:52;7763:7;7754:6;7743:9;7739:22;7719:52;:::i;:::-;7709:62;;7665:116;7461:327;;;;:::o;7794:349::-;7863:6;7912:2;7900:9;7891:7;7887:23;7883:32;7880:119;;;7918:79;;:::i;:::-;7880:119;8038:1;8063:63;8118:7;8109:6;8098:9;8094:22;8063:63;:::i;:::-;8053:73;;8009:127;7794:349;;;;:::o;8149:509::-;8218:6;8267:2;8255:9;8246:7;8242:23;8238:32;8235:119;;;8273:79;;:::i;:::-;8235:119;8421:1;8410:9;8406:17;8393:31;8451:18;8443:6;8440:30;8437:117;;;8473:79;;:::i;:::-;8437:117;8578:63;8633:7;8624:6;8613:9;8609:22;8578:63;:::i;:::-;8568:73;;8364:287;8149:509;;;;:::o;8664:327::-;8722:6;8771:2;8759:9;8750:7;8746:23;8742:32;8739:119;;;8777:79;;:::i;:::-;8739:119;8897:1;8922:52;8966:7;8957:6;8946:9;8942:22;8922:52;:::i;:::-;8912:62;;8868:116;8664:327;;;;:::o;8997:670::-;9075:6;9083;9091;9140:2;9128:9;9119:7;9115:23;9111:32;9108:119;;;9146:79;;:::i;:::-;9108:119;9266:1;9291:52;9335:7;9326:6;9315:9;9311:22;9291:52;:::i;:::-;9281:62;;9237:116;9420:2;9409:9;9405:18;9392:32;9451:18;9443:6;9440:30;9437:117;;;9473:79;;:::i;:::-;9437:117;9586:64;9642:7;9633:6;9622:9;9618:22;9586:64;:::i;:::-;9568:82;;;;9363:297;8997:670;;;;;:::o;9673:795::-;9758:6;9766;9774;9823:2;9811:9;9802:7;9798:23;9794:32;9791:119;;;9829:79;;:::i;:::-;9791:119;9949:1;9974:52;10018:7;10009:6;9998:9;9994:22;9974:52;:::i;:::-;9964:62;;9920:116;10103:2;10092:9;10088:18;10075:32;10134:18;10126:6;10123:30;10120:117;;;10156:79;;:::i;:::-;10120:117;10261:62;10315:7;10306:6;10295:9;10291:22;10261:62;:::i;:::-;10251:72;;10046:287;10372:2;10398:53;10443:7;10434:6;10423:9;10419:22;10398:53;:::i;:::-;10388:63;;10343:118;9673:795;;;;;:::o;10474:1137::-;10578:6;10586;10594;10602;10610;10659:3;10647:9;10638:7;10634:23;10630:33;10627:120;;;10666:79;;:::i;:::-;10627:120;10786:1;10811:52;10855:7;10846:6;10835:9;10831:22;10811:52;:::i;:::-;10801:62;;10757:116;10940:2;10929:9;10925:18;10912:32;10971:18;10963:6;10960:30;10957:117;;;10993:79;;:::i;:::-;10957:117;11098:62;11152:7;11143:6;11132:9;11128:22;11098:62;:::i;:::-;11088:72;;10883:287;11209:2;11235:52;11279:7;11270:6;11259:9;11255:22;11235:52;:::i;:::-;11225:62;;11180:117;11364:2;11353:9;11349:18;11336:32;11395:18;11387:6;11384:30;11381:117;;;11417:79;;:::i;:::-;11381:117;11530:64;11586:7;11577:6;11566:9;11562:22;11530:64;:::i;:::-;11512:82;;;;11307:297;10474:1137;;;;;;;;:::o;11617:1117::-;11719:6;11727;11735;11743;11792:3;11780:9;11771:7;11767:23;11763:33;11760:120;;;11799:79;;:::i;:::-;11760:120;11919:1;11944:52;11988:7;11979:6;11968:9;11964:22;11944:52;:::i;:::-;11934:62;;11890:116;12073:2;12062:9;12058:18;12045:32;12104:18;12096:6;12093:30;12090:117;;;12126:79;;:::i;:::-;12090:117;12231:62;12285:7;12276:6;12265:9;12261:22;12231:62;:::i;:::-;12221:72;;12016:287;12342:2;12368:52;12412:7;12403:6;12392:9;12388:22;12368:52;:::i;:::-;12358:62;;12313:117;12497:2;12486:9;12482:18;12469:32;12528:18;12520:6;12517:30;12514:117;;;12550:79;;:::i;:::-;12514:117;12655:62;12709:7;12700:6;12689:9;12685:22;12655:62;:::i;:::-;12645:72;;12440:287;11617:1117;;;;;;;:::o;12740:472::-;12807:6;12815;12864:2;12852:9;12843:7;12839:23;12835:32;12832:119;;;12870:79;;:::i;:::-;12832:119;12990:1;13015:52;13059:7;13050:6;13039:9;13035:22;13015:52;:::i;:::-;13005:62;;12961:116;13116:2;13142:53;13187:7;13178:6;13167:9;13163:22;13142:53;:::i;:::-;13132:63;;13087:118;12740:472;;;;;:::o;13218:329::-;13277:6;13326:2;13314:9;13305:7;13301:23;13297:32;13294:119;;;13332:79;;:::i;:::-;13294:119;13452:1;13477:53;13522:7;13513:6;13502:9;13498:22;13477:53;:::i;:::-;13467:63;;13423:117;13218:329;;;;:::o;13553:507::-;13632:6;13640;13689:2;13677:9;13668:7;13664:23;13660:32;13657:119;;;13695:79;;:::i;:::-;13657:119;13815:1;13840:64;13896:7;13887:6;13876:9;13872:22;13840:64;:::i;:::-;13830:74;;13786:128;13953:2;13979:64;14035:7;14026:6;14015:9;14011:22;13979:64;:::i;:::-;13969:74;;13924:129;13553:507;;;;;:::o;14066:325::-;14123:6;14172:2;14160:9;14151:7;14147:23;14143:32;14140:119;;;14178:79;;:::i;:::-;14140:119;14298:1;14323:51;14366:7;14357:6;14346:9;14342:22;14323:51;:::i;:::-;14313:61;;14269:115;14066:325;;;;:::o;14397:142::-;14500:32;14526:5;14500:32;:::i;:::-;14495:3;14488:45;14397:142;;:::o;14545:118::-;14632:24;14650:5;14632:24;:::i;:::-;14627:3;14620:37;14545:118;;:::o;14669:109::-;14750:21;14765:5;14750:21;:::i;:::-;14745:3;14738:34;14669:109;;:::o;14784:118::-;14871:24;14889:5;14871:24;:::i;:::-;14866:3;14859:37;14784:118;;:::o;14930:301::-;15026:3;15047:70;15110:6;15105:3;15047:70;:::i;:::-;15040:77;;15127:43;15163:6;15158:3;15151:5;15127:43;:::i;:::-;15195:29;15217:6;15195:29;:::i;:::-;15190:3;15186:39;15179:46;;14930:301;;;;;:::o;15259:314::-;15373:3;15394:88;15475:6;15470:3;15394:88;:::i;:::-;15387:95;;15492:43;15528:6;15523:3;15516:5;15492:43;:::i;:::-;15560:6;15555:3;15551:16;15544:23;;15259:314;;;;;:::o;15579:360::-;15665:3;15693:38;15725:5;15693:38;:::i;:::-;15747:70;15810:6;15805:3;15747:70;:::i;:::-;15740:77;;15826:52;15871:6;15866:3;15859:4;15852:5;15848:16;15826:52;:::i;:::-;15903:29;15925:6;15903:29;:::i;:::-;15898:3;15894:39;15887:46;;15669:270;15579:360;;;;:::o;15945:373::-;16049:3;16077:38;16109:5;16077:38;:::i;:::-;16131:88;16212:6;16207:3;16131:88;:::i;:::-;16124:95;;16228:52;16273:6;16268:3;16261:4;16254:5;16250:16;16228:52;:::i;:::-;16305:6;16300:3;16296:16;16289:23;;16053:265;15945:373;;;;:::o;16346:798::-;16429:3;16466:5;16460:12;16495:36;16521:9;16495:36;:::i;:::-;16547:70;16610:6;16605:3;16547:70;:::i;:::-;16540:77;;16648:1;16637:9;16633:17;16664:1;16659:135;;;;16808:1;16803:335;;;;16626:512;;16659:135;16743:4;16739:9;16728;16724:25;16719:3;16712:38;16779:4;16774:3;16770:14;16763:21;;16659:135;;16803:335;16870:37;16901:5;16870:37;:::i;:::-;16929:1;16943:154;16957:6;16954:1;16951:13;16943:154;;;17031:7;17025:14;17021:1;17016:3;17012:11;17005:35;17081:1;17072:7;17068:15;17057:26;;16979:4;16976:1;16972:12;16967:17;;16943:154;;;17126:1;17121:3;17117:11;17110:18;;16810:328;;16626:512;;16433:711;;16346:798;;;;:::o;17172:841::-;17273:3;17310:5;17304:12;17339:36;17365:9;17339:36;:::i;:::-;17391:88;17472:6;17467:3;17391:88;:::i;:::-;17384:95;;17510:1;17499:9;17495:17;17526:1;17521:137;;;;17672:1;17667:340;;;;17488:519;;17521:137;17605:4;17601:9;17590;17586:25;17581:3;17574:38;17641:6;17636:3;17632:16;17625:23;;17521:137;;17667:340;17734:37;17765:5;17734:37;:::i;:::-;17793:1;17807:154;17821:6;17818:1;17815:13;17807:154;;;17895:7;17889:14;17885:1;17880:3;17876:11;17869:35;17945:1;17936:7;17932:15;17921:26;;17843:4;17840:1;17836:12;17831:17;;17807:154;;;17990:6;17985:3;17981:16;17974:23;;17674:333;;17488:519;;17277:736;;17172:841;;;;:::o;18019:364::-;18107:3;18135:39;18168:5;18135:39;:::i;:::-;18190:71;18254:6;18249:3;18190:71;:::i;:::-;18183:78;;18270:52;18315:6;18310:3;18303:4;18296:5;18292:16;18270:52;:::i;:::-;18347:29;18369:6;18347:29;:::i;:::-;18342:3;18338:39;18331:46;;18111:272;18019:364;;;;:::o;18389:377::-;18495:3;18523:39;18556:5;18523:39;:::i;:::-;18578:89;18660:6;18655:3;18578:89;:::i;:::-;18571:96;;18676:52;18721:6;18716:3;18709:4;18702:5;18698:16;18676:52;:::i;:::-;18753:6;18748:3;18744:16;18737:23;;18499:267;18389:377;;;;:::o;18772:366::-;18914:3;18935:67;18999:2;18994:3;18935:67;:::i;:::-;18928:74;;19011:93;19100:3;19011:93;:::i;:::-;19129:2;19124:3;19120:12;19113:19;;18772:366;;;:::o;19144:::-;19286:3;19307:67;19371:2;19366:3;19307:67;:::i;:::-;19300:74;;19383:93;19472:3;19383:93;:::i;:::-;19501:2;19496:3;19492:12;19485:19;;19144:366;;;:::o;19516:::-;19658:3;19679:67;19743:2;19738:3;19679:67;:::i;:::-;19672:74;;19755:93;19844:3;19755:93;:::i;:::-;19873:2;19868:3;19864:12;19857:19;;19516:366;;;:::o;19888:::-;20030:3;20051:67;20115:2;20110:3;20051:67;:::i;:::-;20044:74;;20127:93;20216:3;20127:93;:::i;:::-;20245:2;20240:3;20236:12;20229:19;;19888:366;;;:::o;20260:::-;20402:3;20423:67;20487:2;20482:3;20423:67;:::i;:::-;20416:74;;20499:93;20588:3;20499:93;:::i;:::-;20617:2;20612:3;20608:12;20601:19;;20260:366;;;:::o;20632:::-;20774:3;20795:67;20859:2;20854:3;20795:67;:::i;:::-;20788:74;;20871:93;20960:3;20871:93;:::i;:::-;20989:2;20984:3;20980:12;20973:19;;20632:366;;;:::o;21004:::-;21146:3;21167:67;21231:2;21226:3;21167:67;:::i;:::-;21160:74;;21243:93;21332:3;21243:93;:::i;:::-;21361:2;21356:3;21352:12;21345:19;;21004:366;;;:::o;21376:::-;21518:3;21539:67;21603:2;21598:3;21539:67;:::i;:::-;21532:74;;21615:93;21704:3;21615:93;:::i;:::-;21733:2;21728:3;21724:12;21717:19;;21376:366;;;:::o;21748:::-;21890:3;21911:67;21975:2;21970:3;21911:67;:::i;:::-;21904:74;;21987:93;22076:3;21987:93;:::i;:::-;22105:2;22100:3;22096:12;22089:19;;21748:366;;;:::o;22120:::-;22262:3;22283:67;22347:2;22342:3;22283:67;:::i;:::-;22276:74;;22359:93;22448:3;22359:93;:::i;:::-;22477:2;22472:3;22468:12;22461:19;;22120:366;;;:::o;22492:::-;22634:3;22655:67;22719:2;22714:3;22655:67;:::i;:::-;22648:74;;22731:93;22820:3;22731:93;:::i;:::-;22849:2;22844:3;22840:12;22833:19;;22492:366;;;:::o;22864:::-;23006:3;23027:67;23091:2;23086:3;23027:67;:::i;:::-;23020:74;;23103:93;23192:3;23103:93;:::i;:::-;23221:2;23216:3;23212:12;23205:19;;22864:366;;;:::o;23236:::-;23378:3;23399:67;23463:2;23458:3;23399:67;:::i;:::-;23392:74;;23475:93;23564:3;23475:93;:::i;:::-;23593:2;23588:3;23584:12;23577:19;;23236:366;;;:::o;23608:::-;23750:3;23771:67;23835:2;23830:3;23771:67;:::i;:::-;23764:74;;23847:93;23936:3;23847:93;:::i;:::-;23965:2;23960:3;23956:12;23949:19;;23608:366;;;:::o;23980:::-;24122:3;24143:67;24207:2;24202:3;24143:67;:::i;:::-;24136:74;;24219:93;24308:3;24219:93;:::i;:::-;24337:2;24332:3;24328:12;24321:19;;23980:366;;;:::o;24352:::-;24494:3;24515:67;24579:2;24574:3;24515:67;:::i;:::-;24508:74;;24591:93;24680:3;24591:93;:::i;:::-;24709:2;24704:3;24700:12;24693:19;;24352:366;;;:::o;24724:::-;24866:3;24887:67;24951:2;24946:3;24887:67;:::i;:::-;24880:74;;24963:93;25052:3;24963:93;:::i;:::-;25081:2;25076:3;25072:12;25065:19;;24724:366;;;:::o;25096:::-;25238:3;25259:67;25323:2;25318:3;25259:67;:::i;:::-;25252:74;;25335:93;25424:3;25335:93;:::i;:::-;25453:2;25448:3;25444:12;25437:19;;25096:366;;;:::o;25468:::-;25610:3;25631:67;25695:2;25690:3;25631:67;:::i;:::-;25624:74;;25707:93;25796:3;25707:93;:::i;:::-;25825:2;25820:3;25816:12;25809:19;;25468:366;;;:::o;25840:::-;25982:3;26003:67;26067:2;26062:3;26003:67;:::i;:::-;25996:74;;26079:93;26168:3;26079:93;:::i;:::-;26197:2;26192:3;26188:12;26181:19;;25840:366;;;:::o;26212:::-;26354:3;26375:67;26439:2;26434:3;26375:67;:::i;:::-;26368:74;;26451:93;26540:3;26451:93;:::i;:::-;26569:2;26564:3;26560:12;26553:19;;26212:366;;;:::o;26584:398::-;26743:3;26764:83;26845:1;26840:3;26764:83;:::i;:::-;26757:90;;26856:93;26945:3;26856:93;:::i;:::-;26974:1;26969:3;26965:11;26958:18;;26584:398;;;:::o;26988:366::-;27130:3;27151:67;27215:2;27210:3;27151:67;:::i;:::-;27144:74;;27227:93;27316:3;27227:93;:::i;:::-;27345:2;27340:3;27336:12;27329:19;;26988:366;;;:::o;27360:::-;27502:3;27523:67;27587:2;27582:3;27523:67;:::i;:::-;27516:74;;27599:93;27688:3;27599:93;:::i;:::-;27717:2;27712:3;27708:12;27701:19;;27360:366;;;:::o;27732:::-;27874:3;27895:67;27959:2;27954:3;27895:67;:::i;:::-;27888:74;;27971:93;28060:3;27971:93;:::i;:::-;28089:2;28084:3;28080:12;28073:19;;27732:366;;;:::o;28104:::-;28246:3;28267:67;28331:2;28326:3;28267:67;:::i;:::-;28260:74;;28343:93;28432:3;28343:93;:::i;:::-;28461:2;28456:3;28452:12;28445:19;;28104:366;;;:::o;28476:115::-;28561:23;28578:5;28561:23;:::i;:::-;28556:3;28549:36;28476:115;;:::o;28597:153::-;28700:43;28719:23;28736:5;28719:23;:::i;:::-;28700:43;:::i;:::-;28695:3;28688:56;28597:153;;:::o;28756:118::-;28843:24;28861:5;28843:24;:::i;:::-;28838:3;28831:37;28756:118;;:::o;28880:157::-;28985:45;29005:24;29023:5;29005:24;:::i;:::-;28985:45;:::i;:::-;28980:3;28973:58;28880:157;;:::o;29043:115::-;29128:23;29145:5;29128:23;:::i;:::-;29123:3;29116:36;29043:115;;:::o;29164:291::-;29304:3;29326:103;29425:3;29416:6;29408;29326:103;:::i;:::-;29319:110;;29446:3;29439:10;;29164:291;;;;;:::o;29461:271::-;29591:3;29613:93;29702:3;29693:6;29613:93;:::i;:::-;29606:100;;29723:3;29716:10;;29461:271;;;;:::o;29738:265::-;29865:3;29887:90;29973:3;29964:6;29887:90;:::i;:::-;29880:97;;29994:3;29987:10;;29738:265;;;;:::o;30009:435::-;30189:3;30211:95;30302:3;30293:6;30211:95;:::i;:::-;30204:102;;30323:95;30414:3;30405:6;30323:95;:::i;:::-;30316:102;;30435:3;30428:10;;30009:435;;;;;:::o;30450:379::-;30634:3;30656:147;30799:3;30656:147;:::i;:::-;30649:154;;30820:3;30813:10;;30450:379;;;:::o;30835:392::-;30973:3;30988:73;31057:3;31048:6;30988:73;:::i;:::-;31086:1;31081:3;31077:11;31070:18;;31098:75;31169:3;31160:6;31098:75;:::i;:::-;31198:2;31193:3;31189:12;31182:19;;31218:3;31211:10;;30835:392;;;;;:::o;31233:222::-;31326:4;31364:2;31353:9;31349:18;31341:26;;31377:71;31445:1;31434:9;31430:17;31421:6;31377:71;:::i;:::-;31233:222;;;;:::o;31461:640::-;31656:4;31694:3;31683:9;31679:19;31671:27;;31708:71;31776:1;31765:9;31761:17;31752:6;31708:71;:::i;:::-;31789:72;31857:2;31846:9;31842:18;31833:6;31789:72;:::i;:::-;31871;31939:2;31928:9;31924:18;31915:6;31871:72;:::i;:::-;31990:9;31984:4;31980:20;31975:2;31964:9;31960:18;31953:48;32018:76;32089:4;32080:6;32018:76;:::i;:::-;32010:84;;31461:640;;;;;;;:::o;32107:332::-;32228:4;32266:2;32255:9;32251:18;32243:26;;32279:71;32347:1;32336:9;32332:17;32323:6;32279:71;:::i;:::-;32360:72;32428:2;32417:9;32413:18;32404:6;32360:72;:::i;:::-;32107:332;;;;;:::o;32445:210::-;32532:4;32570:2;32559:9;32555:18;32547:26;;32583:65;32645:1;32634:9;32630:17;32621:6;32583:65;:::i;:::-;32445:210;;;;:::o;32661:309::-;32772:4;32810:2;32799:9;32795:18;32787:26;;32859:9;32853:4;32849:20;32845:1;32834:9;32830:17;32823:47;32887:76;32958:4;32949:6;32887:76;:::i;:::-;32879:84;;32661:309;;;;:::o;32976:313::-;33089:4;33127:2;33116:9;33112:18;33104:26;;33176:9;33170:4;33166:20;33162:1;33151:9;33147:17;33140:47;33204:78;33277:4;33268:6;33204:78;:::i;:::-;33196:86;;32976:313;;;;:::o;33295:419::-;33461:4;33499:2;33488:9;33484:18;33476:26;;33548:9;33542:4;33538:20;33534:1;33523:9;33519:17;33512:47;33576:131;33702:4;33576:131;:::i;:::-;33568:139;;33295:419;;;:::o;33720:::-;33886:4;33924:2;33913:9;33909:18;33901:26;;33973:9;33967:4;33963:20;33959:1;33948:9;33944:17;33937:47;34001:131;34127:4;34001:131;:::i;:::-;33993:139;;33720:419;;;:::o;34145:::-;34311:4;34349:2;34338:9;34334:18;34326:26;;34398:9;34392:4;34388:20;34384:1;34373:9;34369:17;34362:47;34426:131;34552:4;34426:131;:::i;:::-;34418:139;;34145:419;;;:::o;34570:::-;34736:4;34774:2;34763:9;34759:18;34751:26;;34823:9;34817:4;34813:20;34809:1;34798:9;34794:17;34787:47;34851:131;34977:4;34851:131;:::i;:::-;34843:139;;34570:419;;;:::o;34995:::-;35161:4;35199:2;35188:9;35184:18;35176:26;;35248:9;35242:4;35238:20;35234:1;35223:9;35219:17;35212:47;35276:131;35402:4;35276:131;:::i;:::-;35268:139;;34995:419;;;:::o;35420:::-;35586:4;35624:2;35613:9;35609:18;35601:26;;35673:9;35667:4;35663:20;35659:1;35648:9;35644:17;35637:47;35701:131;35827:4;35701:131;:::i;:::-;35693:139;;35420:419;;;:::o;35845:::-;36011:4;36049:2;36038:9;36034:18;36026:26;;36098:9;36092:4;36088:20;36084:1;36073:9;36069:17;36062:47;36126:131;36252:4;36126:131;:::i;:::-;36118:139;;35845:419;;;:::o;36270:::-;36436:4;36474:2;36463:9;36459:18;36451:26;;36523:9;36517:4;36513:20;36509:1;36498:9;36494:17;36487:47;36551:131;36677:4;36551:131;:::i;:::-;36543:139;;36270:419;;;:::o;36695:::-;36861:4;36899:2;36888:9;36884:18;36876:26;;36948:9;36942:4;36938:20;36934:1;36923:9;36919:17;36912:47;36976:131;37102:4;36976:131;:::i;:::-;36968:139;;36695:419;;;:::o;37120:::-;37286:4;37324:2;37313:9;37309:18;37301:26;;37373:9;37367:4;37363:20;37359:1;37348:9;37344:17;37337:47;37401:131;37527:4;37401:131;:::i;:::-;37393:139;;37120:419;;;:::o;37545:::-;37711:4;37749:2;37738:9;37734:18;37726:26;;37798:9;37792:4;37788:20;37784:1;37773:9;37769:17;37762:47;37826:131;37952:4;37826:131;:::i;:::-;37818:139;;37545:419;;;:::o;37970:::-;38136:4;38174:2;38163:9;38159:18;38151:26;;38223:9;38217:4;38213:20;38209:1;38198:9;38194:17;38187:47;38251:131;38377:4;38251:131;:::i;:::-;38243:139;;37970:419;;;:::o;38395:::-;38561:4;38599:2;38588:9;38584:18;38576:26;;38648:9;38642:4;38638:20;38634:1;38623:9;38619:17;38612:47;38676:131;38802:4;38676:131;:::i;:::-;38668:139;;38395:419;;;:::o;38820:::-;38986:4;39024:2;39013:9;39009:18;39001:26;;39073:9;39067:4;39063:20;39059:1;39048:9;39044:17;39037:47;39101:131;39227:4;39101:131;:::i;:::-;39093:139;;38820:419;;;:::o;39245:::-;39411:4;39449:2;39438:9;39434:18;39426:26;;39498:9;39492:4;39488:20;39484:1;39473:9;39469:17;39462:47;39526:131;39652:4;39526:131;:::i;:::-;39518:139;;39245:419;;;:::o;39670:::-;39836:4;39874:2;39863:9;39859:18;39851:26;;39923:9;39917:4;39913:20;39909:1;39898:9;39894:17;39887:47;39951:131;40077:4;39951:131;:::i;:::-;39943:139;;39670:419;;;:::o;40095:::-;40261:4;40299:2;40288:9;40284:18;40276:26;;40348:9;40342:4;40338:20;40334:1;40323:9;40319:17;40312:47;40376:131;40502:4;40376:131;:::i;:::-;40368:139;;40095:419;;;:::o;40520:::-;40686:4;40724:2;40713:9;40709:18;40701:26;;40773:9;40767:4;40763:20;40759:1;40748:9;40744:17;40737:47;40801:131;40927:4;40801:131;:::i;:::-;40793:139;;40520:419;;;:::o;40945:::-;41111:4;41149:2;41138:9;41134:18;41126:26;;41198:9;41192:4;41188:20;41184:1;41173:9;41169:17;41162:47;41226:131;41352:4;41226:131;:::i;:::-;41218:139;;40945:419;;;:::o;41370:::-;41536:4;41574:2;41563:9;41559:18;41551:26;;41623:9;41617:4;41613:20;41609:1;41598:9;41594:17;41587:47;41651:131;41777:4;41651:131;:::i;:::-;41643:139;;41370:419;;;:::o;41795:::-;41961:4;41999:2;41988:9;41984:18;41976:26;;42048:9;42042:4;42038:20;42034:1;42023:9;42019:17;42012:47;42076:131;42202:4;42076:131;:::i;:::-;42068:139;;41795:419;;;:::o;42220:::-;42386:4;42424:2;42413:9;42409:18;42401:26;;42473:9;42467:4;42463:20;42459:1;42448:9;42444:17;42437:47;42501:131;42627:4;42501:131;:::i;:::-;42493:139;;42220:419;;;:::o;42645:::-;42811:4;42849:2;42838:9;42834:18;42826:26;;42898:9;42892:4;42888:20;42884:1;42873:9;42869:17;42862:47;42926:131;43052:4;42926:131;:::i;:::-;42918:139;;42645:419;;;:::o;43070:::-;43236:4;43274:2;43263:9;43259:18;43251:26;;43323:9;43317:4;43313:20;43309:1;43298:9;43294:17;43287:47;43351:131;43477:4;43351:131;:::i;:::-;43343:139;;43070:419;;;:::o;43495:::-;43661:4;43699:2;43688:9;43684:18;43676:26;;43748:9;43742:4;43738:20;43734:1;43723:9;43719:17;43712:47;43776:131;43902:4;43776:131;:::i;:::-;43768:139;;43495:419;;;:::o;43920:822::-;44153:4;44191:3;44180:9;44176:19;44168:27;;44205:69;44271:1;44260:9;44256:17;44247:6;44205:69;:::i;:::-;44284:72;44352:2;44341:9;44337:18;44328:6;44284:72;:::i;:::-;44403:9;44397:4;44393:20;44388:2;44377:9;44373:18;44366:48;44431:76;44502:4;44493:6;44431:76;:::i;:::-;44423:84;;44517:66;44579:2;44568:9;44564:18;44555:6;44517:66;:::i;:::-;44631:9;44625:4;44621:20;44615:3;44604:9;44600:19;44593:49;44659:76;44730:4;44721:6;44659:76;:::i;:::-;44651:84;;43920:822;;;;;;;;:::o;44748:739::-;44967:4;45005:3;44994:9;44990:19;44982:27;;45019:69;45085:1;45074:9;45070:17;45061:6;45019:69;:::i;:::-;45135:9;45129:4;45125:20;45120:2;45109:9;45105:18;45098:48;45163:76;45234:4;45225:6;45163:76;:::i;:::-;45155:84;;45249:70;45315:2;45304:9;45300:18;45291:6;45249:70;:::i;:::-;45366:9;45360:4;45356:20;45351:2;45340:9;45336:18;45329:48;45394:86;45475:4;45466:6;45458;45394:86;:::i;:::-;45386:94;;44748:739;;;;;;;;:::o;45493:719::-;45702:4;45740:3;45729:9;45725:19;45717:27;;45754:69;45820:1;45809:9;45805:17;45796:6;45754:69;:::i;:::-;45870:9;45864:4;45860:20;45855:2;45844:9;45840:18;45833:48;45898:76;45969:4;45960:6;45898:76;:::i;:::-;45890:84;;45984:70;46050:2;46039:9;46035:18;46026:6;45984:70;:::i;:::-;46101:9;46095:4;46091:20;46086:2;46075:9;46071:18;46064:48;46129:76;46200:4;46191:6;46129:76;:::i;:::-;46121:84;;45493:719;;;;;;;:::o;46218:1058::-;46516:4;46554:3;46543:9;46539:19;46531:27;;46568:69;46634:1;46623:9;46619:17;46610:6;46568:69;:::i;:::-;46684:9;46678:4;46674:20;46669:2;46658:9;46654:18;46647:48;46712:73;46780:4;46771:6;46712:73;:::i;:::-;46704:81;;46832:9;46826:4;46822:20;46817:2;46806:9;46802:18;46795:48;46860:76;46931:4;46922:6;46860:76;:::i;:::-;46852:84;;46946:88;47030:2;47019:9;47015:18;47006:6;46946:88;:::i;:::-;47044:73;47112:3;47101:9;47097:19;47088:6;47044:73;:::i;:::-;47165:9;47159:4;47155:20;47149:3;47138:9;47134:19;47127:49;47193:76;47264:4;47255:6;47193:76;:::i;:::-;47185:84;;46218:1058;;;;;;;;;:::o;47282:222::-;47375:4;47413:2;47402:9;47398:18;47390:26;;47426:71;47494:1;47483:9;47479:17;47470:6;47426:71;:::i;:::-;47282:222;;;;:::o;47510:332::-;47631:4;47669:2;47658:9;47654:18;47646:26;;47682:71;47750:1;47739:9;47735:17;47726:6;47682:71;:::i;:::-;47763:72;47831:2;47820:9;47816:18;47807:6;47763:72;:::i;:::-;47510:332;;;;;:::o;47848:129::-;47882:6;47909:20;;:::i;:::-;47899:30;;47938:33;47966:4;47958:6;47938:33;:::i;:::-;47848:129;;;:::o;47983:75::-;48016:6;48049:2;48043:9;48033:19;;47983:75;:::o;48064:307::-;48125:4;48215:18;48207:6;48204:30;48201:56;;;48237:18;;:::i;:::-;48201:56;48275:29;48297:6;48275:29;:::i;:::-;48267:37;;48359:4;48353;48349:15;48341:23;;48064:307;;;:::o;48377:308::-;48439:4;48529:18;48521:6;48518:30;48515:56;;;48551:18;;:::i;:::-;48515:56;48589:29;48611:6;48589:29;:::i;:::-;48581:37;;48673:4;48667;48663:15;48655:23;;48377:308;;;:::o;48691:140::-;48739:4;48762:3;48754:11;;48785:3;48782:1;48775:14;48819:4;48816:1;48806:18;48798:26;;48691:140;;;:::o;48837:98::-;48888:6;48922:5;48916:12;48906:22;;48837:98;;;:::o;48941:99::-;48993:6;49027:5;49021:12;49011:22;;48941:99;;;:::o;49046:168::-;49129:11;49163:6;49158:3;49151:19;49203:4;49198:3;49194:14;49179:29;;49046:168;;;;:::o;49220:147::-;49321:11;49358:3;49343:18;;49220:147;;;;:::o;49373:169::-;49457:11;49491:6;49486:3;49479:19;49531:4;49526:3;49522:14;49507:29;;49373:169;;;;:::o;49548:148::-;49650:11;49687:3;49672:18;;49548:148;;;;:::o;49702:305::-;49742:3;49761:20;49779:1;49761:20;:::i;:::-;49756:25;;49795:20;49813:1;49795:20;:::i;:::-;49790:25;;49949:1;49881:66;49877:74;49874:1;49871:81;49868:107;;;49955:18;;:::i;:::-;49868:107;49999:1;49996;49992:9;49985:16;;49702:305;;;;:::o;50013:185::-;50053:1;50070:20;50088:1;50070:20;:::i;:::-;50065:25;;50104:20;50122:1;50104:20;:::i;:::-;50099:25;;50143:1;50133:35;;50148:18;;:::i;:::-;50133:35;50190:1;50187;50183:9;50178:14;;50013:185;;;;:::o;50204:191::-;50244:4;50264:20;50282:1;50264:20;:::i;:::-;50259:25;;50298:20;50316:1;50298:20;:::i;:::-;50293:25;;50337:1;50334;50331:8;50328:34;;;50342:18;;:::i;:::-;50328:34;50387:1;50384;50380:9;50372:17;;50204:191;;;;:::o;50401:96::-;50438:7;50467:24;50485:5;50467:24;:::i;:::-;50456:35;;50401:96;;;:::o;50503:104::-;50548:7;50577:24;50595:5;50577:24;:::i;:::-;50566:35;;50503:104;;;:::o;50613:90::-;50647:7;50690:5;50683:13;50676:21;50665:32;;50613:90;;;:::o;50709:77::-;50746:7;50775:5;50764:16;;50709:77;;;:::o;50792:149::-;50828:7;50868:66;50861:5;50857:78;50846:89;;50792:149;;;:::o;50947:89::-;50983:7;51023:6;51016:5;51012:18;51001:29;;50947:89;;;:::o;51042:126::-;51079:7;51119:42;51112:5;51108:54;51097:65;;51042:126;;;:::o;51174:77::-;51211:7;51240:5;51229:16;;51174:77;;;:::o;51257:101::-;51293:7;51333:18;51326:5;51322:30;51311:41;;51257:101;;;:::o;51364:86::-;51399:7;51439:4;51432:5;51428:16;51417:27;;51364:86;;;:::o;51456:154::-;51540:6;51535:3;51530;51517:30;51602:1;51593:6;51588:3;51584:16;51577:27;51456:154;;;:::o;51616:307::-;51684:1;51694:113;51708:6;51705:1;51702:13;51694:113;;;51793:1;51788:3;51784:11;51778:18;51774:1;51769:3;51765:11;51758:39;51730:2;51727:1;51723:10;51718:15;;51694:113;;;51825:6;51822:1;51819:13;51816:101;;;51905:1;51896:6;51891:3;51887:16;51880:27;51816:101;51665:258;51616:307;;;:::o;51929:320::-;51973:6;52010:1;52004:4;52000:12;51990:22;;52057:1;52051:4;52047:12;52078:18;52068:81;;52134:4;52126:6;52122:17;52112:27;;52068:81;52196:2;52188:6;52185:14;52165:18;52162:38;52159:84;;;52215:18;;:::i;:::-;52159:84;51980:269;51929:320;;;:::o;52255:281::-;52338:27;52360:4;52338:27;:::i;:::-;52330:6;52326:40;52468:6;52456:10;52453:22;52432:18;52420:10;52417:34;52414:62;52411:88;;;52479:18;;:::i;:::-;52411:88;52519:10;52515:2;52508:22;52298:238;52255:281;;:::o;52542:233::-;52581:3;52604:24;52622:5;52604:24;:::i;:::-;52595:33;;52650:66;52643:5;52640:77;52637:103;;;52720:18;;:::i;:::-;52637:103;52767:1;52760:5;52756:13;52749:20;;52542:233;;;:::o;52781:94::-;52819:7;52848:21;52863:5;52848:21;:::i;:::-;52837:32;;52781:94;;;:::o;52881:79::-;52920:7;52949:5;52938:16;;52881:79;;;:::o;52966:176::-;52998:1;53015:20;53033:1;53015:20;:::i;:::-;53010:25;;53049:20;53067:1;53049:20;:::i;:::-;53044:25;;53088:1;53078:35;;53093:18;;:::i;:::-;53078:35;53134:1;53131;53127:9;53122:14;;52966:176;;;;:::o;53148:180::-;53196:77;53193:1;53186:88;53293:4;53290:1;53283:15;53317:4;53314:1;53307:15;53334:180;53382:77;53379:1;53372:88;53479:4;53476:1;53469:15;53503:4;53500:1;53493:15;53520:180;53568:77;53565:1;53558:88;53665:4;53662:1;53655:15;53689:4;53686:1;53679:15;53706:180;53754:77;53751:1;53744:88;53851:4;53848:1;53841:15;53875:4;53872:1;53865:15;53892:180;53940:77;53937:1;53930:88;54037:4;54034:1;54027:15;54061:4;54058:1;54051:15;54078:117;54187:1;54184;54177:12;54201:117;54310:1;54307;54300:12;54324:117;54433:1;54430;54423:12;54447:117;54556:1;54553;54546:12;54570:117;54679:1;54676;54669:12;54693:117;54802:1;54799;54792:12;54816:102;54857:6;54908:2;54904:7;54899:2;54892:5;54888:14;54884:28;54874:38;;54816:102;;;:::o;54924:96::-;54958:8;55007:5;55002:3;54998:15;54977:36;;54924:96;;;:::o;55026:237::-;55166:34;55162:1;55154:6;55150:14;55143:58;55235:20;55230:2;55222:6;55218:15;55211:45;55026:237;:::o;55269:225::-;55409:34;55405:1;55397:6;55393:14;55386:58;55478:8;55473:2;55465:6;55461:15;55454:33;55269:225;:::o;55500:223::-;55640:34;55636:1;55628:6;55624:14;55617:58;55709:6;55704:2;55696:6;55692:15;55685:31;55500:223;:::o;55729:175::-;55869:27;55865:1;55857:6;55853:14;55846:51;55729:175;:::o;55910:233::-;56050:34;56046:1;56038:6;56034:14;56027:58;56119:16;56114:2;56106:6;56102:15;56095:41;55910:233;:::o;56149:176::-;56289:28;56285:1;56277:6;56273:14;56266:52;56149:176;:::o;56331:221::-;56471:34;56467:1;56459:6;56455:14;56448:58;56540:4;56535:2;56527:6;56523:15;56516:29;56331:221;:::o;56558:231::-;56698:34;56694:1;56686:6;56682:14;56675:58;56767:14;56762:2;56754:6;56750:15;56743:39;56558:231;:::o;56795:230::-;56935:34;56931:1;56923:6;56919:14;56912:58;57004:13;56999:2;56991:6;56987:15;56980:38;56795:230;:::o;57031:243::-;57171:34;57167:1;57159:6;57155:14;57148:58;57240:26;57235:2;57227:6;57223:15;57216:51;57031:243;:::o;57280:229::-;57420:34;57416:1;57408:6;57404:14;57397:58;57489:12;57484:2;57476:6;57472:15;57465:37;57280:229;:::o;57515:228::-;57655:34;57651:1;57643:6;57639:14;57632:58;57724:11;57719:2;57711:6;57707:15;57700:36;57515:228;:::o;57749:230::-;57889:34;57885:1;57877:6;57873:14;57866:58;57958:13;57953:2;57945:6;57941:15;57934:38;57749:230;:::o;57985:182::-;58125:34;58121:1;58113:6;58109:14;58102:58;57985:182;:::o;58173:231::-;58313:34;58309:1;58301:6;58297:14;58290:58;58382:14;58377:2;58369:6;58365:15;58358:39;58173:231;:::o;58410:182::-;58550:34;58546:1;58538:6;58534:14;58527:58;58410:182;:::o;58598:239::-;58738:34;58734:1;58726:6;58722:14;58715:58;58807:22;58802:2;58794:6;58790:15;58783:47;58598:239;:::o;58843:228::-;58983:34;58979:1;58971:6;58967:14;58960:58;59052:11;59047:2;59039:6;59035:15;59028:36;58843:228;:::o;59077:234::-;59217:34;59213:1;59205:6;59201:14;59194:58;59286:17;59281:2;59273:6;59269:15;59262:42;59077:234;:::o;59317:228::-;59457:34;59453:1;59445:6;59441:14;59434:58;59526:11;59521:2;59513:6;59509:15;59502:36;59317:228;:::o;59551:220::-;59691:34;59687:1;59679:6;59675:14;59668:58;59760:3;59755:2;59747:6;59743:15;59736:28;59551:220;:::o;59777:114::-;;:::o;59897:236::-;60037:34;60033:1;60025:6;60021:14;60014:58;60106:19;60101:2;60093:6;60089:15;60082:44;59897:236;:::o;60139:225::-;60279:34;60275:1;60267:6;60263:14;60256:58;60348:8;60343:2;60335:6;60331:15;60324:33;60139:225;:::o;60370:223::-;60510:34;60506:1;60498:6;60494:14;60487:58;60579:6;60574:2;60566:6;60562:15;60555:31;60370:223;:::o;60599:308::-;60739:34;60735:1;60727:6;60723:14;60716:58;60808:34;60803:2;60795:6;60791:15;60784:59;60877:22;60872:2;60864:6;60860:15;60853:47;60599:308;:::o;60913:122::-;60986:24;61004:5;60986:24;:::i;:::-;60979:5;60976:35;60966:63;;61025:1;61022;61015:12;60966:63;60913:122;:::o;61041:138::-;61122:32;61148:5;61122:32;:::i;:::-;61115:5;61112:43;61102:71;;61169:1;61166;61159:12;61102:71;61041:138;:::o;61185:116::-;61255:21;61270:5;61255:21;:::i;:::-;61248:5;61245:32;61235:60;;61291:1;61288;61281:12;61235:60;61185:116;:::o;61307:120::-;61379:23;61396:5;61379:23;:::i;:::-;61372:5;61369:34;61359:62;;61417:1;61414;61407:12;61359:62;61307:120;:::o;61433:::-;61505:23;61522:5;61505:23;:::i;:::-;61498:5;61495:34;61485:62;;61543:1;61540;61533:12;61485:62;61433:120;:::o;61559:122::-;61632:24;61650:5;61632:24;:::i;:::-;61625:5;61622:35;61612:63;;61671:1;61668;61661:12;61612:63;61559:122;:::o;61687:120::-;61759:23;61776:5;61759:23;:::i;:::-;61752:5;61749:34;61739:62;;61797:1;61794;61787:12;61739:62;61687:120;:::o;61813:118::-;61884:22;61900:5;61884:22;:::i;:::-;61877:5;61874:33;61864:61;;61921:1;61918;61911:12;61864:61;61813:118;:::o

Swarm Source

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