ETH Price: $3,108.94 (+1.32%)
Gas: 12 Gwei

Token

omni Apes (oApes)
 

Overview

Max Total Supply

0 oApes

Holders

1,142

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*metasniper👁️minter.eth
Balance
10 oApes
0x000005a271a610964bb42658c7ff50fee2aa055a
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:
oApes

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: UNLICENSED

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

// File: contracts/oApes-eth.sol

pragma solidity ^0.8.7;

contract oApes is Ownable, ERC721, NonblockingReceiver {
    address public _owner;
    string private baseURI;
    uint256 nextTokenId = 0;
    uint256 MAX_MINT_ETHEREUM = 4000;

    uint256 gasForDestinationLzReceive = 350000;

    constructor(string memory baseURI_, address _layerZeroEndpoint)
        ERC721("omni Apes", "oApes")
    {
        _owner = msg.sender;
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        baseURI = baseURI_;
    }

    // mint function
    // you can choose to mint 1 or 2
    // mint is free, but payments are accepted
    function mint(uint8 numTokens) external payable {
        require(numTokens < 3, "omni Apes: Max 2 NFTs per transaction");
        require(
            nextTokenId + numTokens <= MAX_MINT_ETHEREUM,
            "omni Apes: Mint exceeds supply"
        );
        _safeMint(msg.sender, ++nextTokenId);
        if (numTokens == 2) {
            _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 Apes: 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 Apes: 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"}]

60806040526000600c55610fa0600d5562055730600e553480156200002357600080fd5b5060405162003a8638038062003a86833981016040819052620000469162000242565b604051806040016040528060098152602001686f6d6e69204170657360b81b815250604051806040016040528060058152602001646f4170657360d81b815250620000a06200009a6200011560201b60201c565b62000119565b8151620000b590600190602085019062000169565b508051620000cb90600290602084019062000169565b5050600a8054336001600160a01b031991821617909155600780549091166001600160a01b0384161790555081516200010c90600b90602085019062000169565b50505062000370565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001779062000333565b90600052602060002090601f0160209004810192826200019b5760008555620001e6565b82601f10620001b657805160ff1916838001178555620001e6565b82800160010185558215620001e6579182015b82811115620001e6578251825591602001919060010190620001c9565b50620001f4929150620001f8565b5090565b5b80821115620001f45760008155600101620001f9565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200023d57600080fd5b919050565b600080604083850312156200025657600080fd5b82516001600160401b03808211156200026e57600080fd5b818501915085601f8301126200028357600080fd5b8151818111156200029857620002986200020f565b604051601f8201601f19908116603f01168101908382118183101715620002c357620002c36200020f565b81604052828152602093508884848701011115620002e057600080fd5b600091505b82821015620003045784820184015181830185015290830190620002e5565b82821115620003165760008484830101525b95506200032891505085820162000225565b925050509250929050565b600181811c908216806200034857607f821691505b602082108114156200036a57634e487b7160e01b600052602260045260246000fd5b50919050565b61370680620003806000396000f3fe6080604052600436106101c15760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610558578063eb8d72b7146105ae578063ed88c68e146101e6578063f2fde38b146105ce57600080fd5b8063b88d4fde146104f2578063c87b56dd14610512578063cf89fa0314610532578063d1deba1f1461054557600080fd5b8063943fb872116100d1578063943fb8721461047057806395d89b4114610490578063a22cb465146104a5578063b2bdfa7b146104c557600080fd5b80637533d788146103ba5780638da5cb5b146103da5780638ee749121461040557600080fd5b80632e1a7d4d116101645780636352211e1161013e5780636352211e146103445780636ecd23061461036457806370a0823114610377578063715018a6146103a557600080fd5b80632e1a7d4d146102e457806342842e0e1461030457806355f804b31461032457600080fd5b8063081812fc116101a0578063081812fc1461023f578063095ea7b3146102845780631c37a822146102a457806323b872dd146102c457600080fd5b80621d3567146101c657806301ffc9a7146101e857806306fdde031461021d575b600080fd5b3480156101d257600080fd5b506101e66101e1366004612c6f565b6105ee565b005b3480156101f457600080fd5b50610208610203366004612d22565b610832565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610917565b6040516102149190612db5565b34801561024b57600080fd5b5061025f61025a366004612dc8565b6109a9565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610214565b34801561029057600080fd5b506101e661029f366004612e03565b610a83565b3480156102b057600080fd5b506101e66102bf366004612c6f565b610c10565b3480156102d057600080fd5b506101e66102df366004612e2f565b610cab565b3480156102f057600080fd5b506101e66102ff366004612dc8565b610d4c565b34801561031057600080fd5b506101e661031f366004612e2f565b610ec1565b34801561033057600080fd5b506101e661033f366004612e70565b610edc565b34801561035057600080fd5b5061025f61035f366004612dc8565b610f70565b6101e6610372366004612eb9565b611022565b34801561038357600080fd5b50610397610392366004612edc565b611170565b604051908152602001610214565b3480156103b157600080fd5b506101e661123e565b3480156103c657600080fd5b506102326103d5366004612ef9565b6112cb565b3480156103e657600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661025f565b34801561041157600080fd5b5061045b610420366004612f14565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610214565b34801561047c57600080fd5b506101e661048b366004612dc8565b611365565b34801561049c57600080fd5b506102326113eb565b3480156104b157600080fd5b506101e66104c0366004612f6b565b6113fa565b3480156104d157600080fd5b50600a5461025f9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104fe57600080fd5b506101e661050d366004612fa9565b611405565b34801561051e57600080fd5b5061023261052d366004612dc8565b6114a7565b6101e6610540366004613009565b6115b7565b6101e661055336600461306e565b611999565b34801561056457600080fd5b506102086105733660046130fa565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105ba57600080fd5b506101e66105c9366004613128565b611b8b565b3480156105da57600080fd5b506101e66105e9366004612edc565b611c2a565b60075473ffffffffffffffffffffffffffffffffffffffff16331461061257600080fd5b61ffff8416600090815260096020526040902080546106309061317b565b9050835114801561066f575061ffff841660009081526009602052604090819020905161065d91906131cf565b60405180910390208380519060200120145b610700576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a8229061074290879087908790879060040161325f565b600060405180830381600087803b15801561075c57600080fd5b505af192505050801561076d575060015b61082c576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516107b791906132a9565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d9061082390869086908690869061325f565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108c557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061091157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600180546109269061317b565b80601f01602080910402602001604051908101604052809291908181526020018280546109529061317b565b801561099f5780601f106109745761010080835404028352916020019161099f565b820191906000526020600020905b81548152906001019060200180831161098257829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610a5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106f7565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a8e82610f70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b3373ffffffffffffffffffffffffffffffffffffffff82161480610b755750610b758133610573565b610c01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f7565b610c0b8383611d57565b505050565b333014610c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e00000000000000000000000000000000000000000060648201526084016106f7565b61082c84848484611df7565b610cb53382611e24565b610d41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106f7565b610c0b838383611f94565b60005473ffffffffffffffffffffffffffffffffffffffff163314610dcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b600a5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610e27576040519150601f19603f3d011682016040523d82523d6000602084013e610e2c565b606091505b5050905080610ebd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f6f6d6e6920417065733a204661696c656420746f20776974686472617720457460448201527f686572000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b5050565b610c0b83838360405180602001604052806000815250611405565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b8051610ebd90600b906020840190612a32565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106f7565b60038160ff16106110b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f6f6d6e6920417065733a204d61782032204e46547320706572207472616e736160448201527f6374696f6e00000000000000000000000000000000000000000000000000000060648201526084016106f7565b600d548160ff16600c546110c991906132f4565b1115611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f6f6d6e6920417065733a204d696e74206578636565647320737570706c79000060448201526064016106f7565b61114e33600c600081546111449061330c565b91829055506121fb565b8060ff166002141561116d5761116d33600c600081546111449061330c565b50565b600073ffffffffffffffffffffffffffffffffffffffff8216611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106f7565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff1633146112bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b6112c96000612215565b565b600960205260009081526040902080546112e49061317b565b80601f01602080910402602001604051908101604052809291908181526020018280546113109061317b565b801561135d5780601f106113325761010080835404028352916020019161135d565b820191906000526020600020905b81548152906001019060200180831161134057829003601f168201915b505050505081565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b600e55565b6060600280546109269061317b565b610ebd33838361228a565b61140f3383611e24565b61149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106f7565b61082c848484846123b8565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff1661155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106f7565b600061156561245b565b9050600081511161158557604051806020016040528060008152506115b0565b8061158f8461246a565b6040516020016115a0929190613345565b6040516020818303038152906040525b9392505050565b6115c081610f70565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461167a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f736500000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b61ffff8216600090815260096020526040812080546116989061317b565b905011611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c00000000000000000000000000000000000060648201526084016106f7565b6117308161259c565b60408051336020820152808201839052815180820383018152606082018352600e547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526007547f40a7bb1000000000000000000000000000000000000000000000000000000000909452909260019260009173ffffffffffffffffffffffffffffffffffffffff16906340a7bb10906117f4908990309089908790899060a601613374565b6040805180830381865afa158015611810573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061183491906133d3565b509050803410156118ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604e60248201527f6f6d6e6920417065733a206d73672e76616c7565206e6f7420656e6f7567682060448201527f746f20636f766572206d6573736167654665652e2053656e642067617320666f60648201527f72206d6573736167652066656573000000000000000000000000000000000000608482015260a4016106f7565b60075461ffff871660009081526009602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9093169263c580310092349261195f928c928b913391908b906004016133f7565b6000604051808303818588803b15801561197857600080fd5b505af115801561198c573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516119ba9087906132a9565b908152604080516020928190038301902067ffffffffffffffff87166000908152925290206001810154909150611a73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f657373616765000000000000000000000000000000000000000000000000000060648201526084016106f7565b805482148015611a9d575080600101548383604051611a9392919061350f565b6040518091039020145b611b03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016106f7565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290611b51908990899089908990899060040161351f565b600060405180830381600087803b158015611b6b57600080fd5b505af1158015611b7f573d6000803e3d6000fd5b50505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b61ffff8316600090815260096020526040902061082c908383612ab6565b60005473ffffffffffffffffffffffffffffffffffffffff163314611cab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff8116611d4e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106f7565b61116d81612215565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611db182610f70565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611e0e919061359f565b91509150611e1c82826121fb565b505050505050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16611ed5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106f7565b6000611ee083610f70565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f4f57508373ffffffffffffffffffffffffffffffffffffffff16611f37846109a9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f8c575073ffffffffffffffffffffffffffffffffffffffff80821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611fb482610f70565b73ffffffffffffffffffffffffffffffffffffffff1614612057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106f7565b73ffffffffffffffffffffffffffffffffffffffff82166120f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106f7565b612104600082611d57565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260046020526040812080546001929061213a9084906135cd565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081208054600192906121759084906132f4565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ebd828260405180602001604052806000815250612669565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526006602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6123c3848484611f94565b6123cf8484848461270c565b61082c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b6060600b80546109269061317b565b6060816124aa57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156124d457806124be8161330c565b91506124cd9050600a83613613565b91506124ae565b60008167ffffffffffffffff8111156124ef576124ef612b74565b6040519080825280601f01601f191660200182016040528015612519576020820181803683370190505b5090505b8415611f8c5761252e6001836135cd565b915061253b600a86613627565b6125469060306132f4565b60f81b81838151811061255b5761255b61363b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612595600a86613613565b945061251d565b60006125a782610f70565b90506125b4600083611d57565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081208054600192906125ea9084906135cd565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61267383836128fc565b612680600084848461270c565b610c0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b600073ffffffffffffffffffffffffffffffffffffffff84163b156128f1576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061278390339089908890889060040161366a565b6020604051808303816000875af19250505080156127dc575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526127d9918101906136b3565b60015b6128a6573d80801561280a576040519150601f19603f3d011682016040523d82523d6000602084013e61280f565b606091505b50805161289e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611f8c565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8216612979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081208054600192906129af9084906132f4565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612a3e9061317b565b90600052602060002090601f016020900481019282612a605760008555612aa6565b82601f10612a7957805160ff1916838001178555612aa6565b82800160010185558215612aa6579182015b82811115612aa6578251825591602001919060010190612a8b565b50612ab2929150612b48565b5090565b828054612ac29061317b565b90600052602060002090601f016020900481019282612ae45760008555612aa6565b82601f10612b1b578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612aa6565b82800160010185558215612aa6579182015b82811115612aa6578235825591602001919060010190612b2d565b5b80821115612ab25760008155600101612b49565b803561ffff81168114612b6f57600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612bbe57612bbe612b74565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612c0457612c04612b74565b81604052809350858152868686011115612c1d57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612c4857600080fd5b6115b083833560208501612ba3565b803567ffffffffffffffff81168114612b6f57600080fd5b60008060008060808587031215612c8557600080fd5b612c8e85612b5d565b9350602085013567ffffffffffffffff80821115612cab57600080fd5b612cb788838901612c37565b9450612cc560408801612c57565b93506060870135915080821115612cdb57600080fd5b50612ce887828801612c37565b91505092959194509250565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461116d57600080fd5b600060208284031215612d3457600080fd5b81356115b081612cf4565b60005b83811015612d5a578181015183820152602001612d42565b8381111561082c5750506000910152565b60008151808452612d83816020860160208601612d3f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006115b06020830184612d6b565b600060208284031215612dda57600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461116d57600080fd5b60008060408385031215612e1657600080fd5b8235612e2181612de1565b946020939093013593505050565b600080600060608486031215612e4457600080fd5b8335612e4f81612de1565b92506020840135612e5f81612de1565b929592945050506040919091013590565b600060208284031215612e8257600080fd5b813567ffffffffffffffff811115612e9957600080fd5b8201601f81018413612eaa57600080fd5b611f8c84823560208401612ba3565b600060208284031215612ecb57600080fd5b813560ff811681146115b057600080fd5b600060208284031215612eee57600080fd5b81356115b081612de1565b600060208284031215612f0b57600080fd5b6115b082612b5d565b600080600060608486031215612f2957600080fd5b612f3284612b5d565b9250602084013567ffffffffffffffff811115612f4e57600080fd5b612f5a86828701612c37565b925050604084013590509250925092565b60008060408385031215612f7e57600080fd5b8235612f8981612de1565b915060208301358015158114612f9e57600080fd5b809150509250929050565b60008060008060808587031215612fbf57600080fd5b8435612fca81612de1565b93506020850135612fda81612de1565b925060408501359150606085013567ffffffffffffffff811115612ffd57600080fd5b612ce887828801612c37565b6000806040838503121561301c57600080fd5b612e2183612b5d565b60008083601f84011261303757600080fd5b50813567ffffffffffffffff81111561304f57600080fd5b60208301915083602082850101111561306757600080fd5b9250929050565b60008060008060006080868803121561308657600080fd5b61308f86612b5d565b9450602086013567ffffffffffffffff808211156130ac57600080fd5b6130b889838a01612c37565b95506130c660408901612c57565b945060608801359150808211156130dc57600080fd5b506130e988828901613025565b969995985093965092949392505050565b6000806040838503121561310d57600080fd5b823561311881612de1565b91506020830135612f9e81612de1565b60008060006040848603121561313d57600080fd5b61314684612b5d565b9250602084013567ffffffffffffffff81111561316257600080fd5b61316e86828701613025565b9497909650939450505050565b600181811c9082168061318f57607f821691505b602082108114156131c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60008083546131dd8161317b565b600182811680156131f5576001811461322457613253565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00841687528287019450613253565b8760005260208060002060005b8581101561324a5781548a820152908401908201613231565b50505082870194505b50929695505050505050565b61ffff8516815260806020820152600061327c6080830186612d6b565b67ffffffffffffffff85166040840152828103606084015261329e8185612d6b565b979650505050505050565b600082516132bb818460208701612d3f565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613307576133076132c5565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561333e5761333e6132c5565b5060010190565b60008351613357818460208801612d3f565b83519083019061336b818360208801612d3f565b01949350505050565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a0604082015260006133ad60a0830186612d6b565b841515606084015282810360808401526133c78185612d6b565b98975050505050505050565b600080604083850312156133e657600080fd5b505080516020909101519092909150565b61ffff871681526000602060c081840152600088546134158161317b565b8060c087015260e0600180841660008114613437576001811461346a57613498565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a015261010089019550613498565b8d6000528660002060005b858110156134905781548b8201860152908301908801613475565b8a0184019650505b505050505083810360408501526134af8189612d6b565b9150506134d4606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a08401526135028185612d6b565b9998505050505050505050565b8183823760009101908152919050565b61ffff8616815260806020820152600061353c6080830187612d6b565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b600080604083850312156135b257600080fd5b82516135bd81612de1565b6020939093015192949293505050565b6000828210156135df576135df6132c5565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613622576136226135e4565b500490565b600082613636576136366135e4565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526136a96080830184612d6b565b9695505050505050565b6000602082840312156136c557600080fd5b81516115b081612cf456fea264697066735822122037d1ed77c0fde7b586411f7afe056f43cfb4c75a5bfe03bb369a3b888d494f5364736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6f617065732d6170692e76657263656c2e6170702f6170692f00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c15760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610558578063eb8d72b7146105ae578063ed88c68e146101e6578063f2fde38b146105ce57600080fd5b8063b88d4fde146104f2578063c87b56dd14610512578063cf89fa0314610532578063d1deba1f1461054557600080fd5b8063943fb872116100d1578063943fb8721461047057806395d89b4114610490578063a22cb465146104a5578063b2bdfa7b146104c557600080fd5b80637533d788146103ba5780638da5cb5b146103da5780638ee749121461040557600080fd5b80632e1a7d4d116101645780636352211e1161013e5780636352211e146103445780636ecd23061461036457806370a0823114610377578063715018a6146103a557600080fd5b80632e1a7d4d146102e457806342842e0e1461030457806355f804b31461032457600080fd5b8063081812fc116101a0578063081812fc1461023f578063095ea7b3146102845780631c37a822146102a457806323b872dd146102c457600080fd5b80621d3567146101c657806301ffc9a7146101e857806306fdde031461021d575b600080fd5b3480156101d257600080fd5b506101e66101e1366004612c6f565b6105ee565b005b3480156101f457600080fd5b50610208610203366004612d22565b610832565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610917565b6040516102149190612db5565b34801561024b57600080fd5b5061025f61025a366004612dc8565b6109a9565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610214565b34801561029057600080fd5b506101e661029f366004612e03565b610a83565b3480156102b057600080fd5b506101e66102bf366004612c6f565b610c10565b3480156102d057600080fd5b506101e66102df366004612e2f565b610cab565b3480156102f057600080fd5b506101e66102ff366004612dc8565b610d4c565b34801561031057600080fd5b506101e661031f366004612e2f565b610ec1565b34801561033057600080fd5b506101e661033f366004612e70565b610edc565b34801561035057600080fd5b5061025f61035f366004612dc8565b610f70565b6101e6610372366004612eb9565b611022565b34801561038357600080fd5b50610397610392366004612edc565b611170565b604051908152602001610214565b3480156103b157600080fd5b506101e661123e565b3480156103c657600080fd5b506102326103d5366004612ef9565b6112cb565b3480156103e657600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661025f565b34801561041157600080fd5b5061045b610420366004612f14565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610214565b34801561047c57600080fd5b506101e661048b366004612dc8565b611365565b34801561049c57600080fd5b506102326113eb565b3480156104b157600080fd5b506101e66104c0366004612f6b565b6113fa565b3480156104d157600080fd5b50600a5461025f9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104fe57600080fd5b506101e661050d366004612fa9565b611405565b34801561051e57600080fd5b5061023261052d366004612dc8565b6114a7565b6101e6610540366004613009565b6115b7565b6101e661055336600461306e565b611999565b34801561056457600080fd5b506102086105733660046130fa565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105ba57600080fd5b506101e66105c9366004613128565b611b8b565b3480156105da57600080fd5b506101e66105e9366004612edc565b611c2a565b60075473ffffffffffffffffffffffffffffffffffffffff16331461061257600080fd5b61ffff8416600090815260096020526040902080546106309061317b565b9050835114801561066f575061ffff841660009081526009602052604090819020905161065d91906131cf565b60405180910390208380519060200120145b610700576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a8229061074290879087908790879060040161325f565b600060405180830381600087803b15801561075c57600080fd5b505af192505050801561076d575060015b61082c576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516107b791906132a9565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d9061082390869086908690869061325f565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108c557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061091157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600180546109269061317b565b80601f01602080910402602001604051908101604052809291908181526020018280546109529061317b565b801561099f5780601f106109745761010080835404028352916020019161099f565b820191906000526020600020905b81548152906001019060200180831161098257829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610a5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106f7565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a8e82610f70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b3373ffffffffffffffffffffffffffffffffffffffff82161480610b755750610b758133610573565b610c01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f7565b610c0b8383611d57565b505050565b333014610c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e00000000000000000000000000000000000000000060648201526084016106f7565b61082c84848484611df7565b610cb53382611e24565b610d41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106f7565b610c0b838383611f94565b60005473ffffffffffffffffffffffffffffffffffffffff163314610dcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b600a5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610e27576040519150601f19603f3d011682016040523d82523d6000602084013e610e2c565b606091505b5050905080610ebd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f6f6d6e6920417065733a204661696c656420746f20776974686472617720457460448201527f686572000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b5050565b610c0b83838360405180602001604052806000815250611405565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b8051610ebd90600b906020840190612a32565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106f7565b60038160ff16106110b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f6f6d6e6920417065733a204d61782032204e46547320706572207472616e736160448201527f6374696f6e00000000000000000000000000000000000000000000000000000060648201526084016106f7565b600d548160ff16600c546110c991906132f4565b1115611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f6f6d6e6920417065733a204d696e74206578636565647320737570706c79000060448201526064016106f7565b61114e33600c600081546111449061330c565b91829055506121fb565b8060ff166002141561116d5761116d33600c600081546111449061330c565b50565b600073ffffffffffffffffffffffffffffffffffffffff8216611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106f7565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff1633146112bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b6112c96000612215565b565b600960205260009081526040902080546112e49061317b565b80601f01602080910402602001604051908101604052809291908181526020018280546113109061317b565b801561135d5780601f106113325761010080835404028352916020019161135d565b820191906000526020600020905b81548152906001019060200180831161134057829003601f168201915b505050505081565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b600e55565b6060600280546109269061317b565b610ebd33838361228a565b61140f3383611e24565b61149b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106f7565b61082c848484846123b8565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff1661155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106f7565b600061156561245b565b9050600081511161158557604051806020016040528060008152506115b0565b8061158f8461246a565b6040516020016115a0929190613345565b6040516020818303038152906040525b9392505050565b6115c081610f70565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461167a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f736500000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b61ffff8216600090815260096020526040812080546116989061317b565b905011611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c00000000000000000000000000000000000060648201526084016106f7565b6117308161259c565b60408051336020820152808201839052815180820383018152606082018352600e547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526007547f40a7bb1000000000000000000000000000000000000000000000000000000000909452909260019260009173ffffffffffffffffffffffffffffffffffffffff16906340a7bb10906117f4908990309089908790899060a601613374565b6040805180830381865afa158015611810573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061183491906133d3565b509050803410156118ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604e60248201527f6f6d6e6920417065733a206d73672e76616c7565206e6f7420656e6f7567682060448201527f746f20636f766572206d6573736167654665652e2053656e642067617320666f60648201527f72206d6573736167652066656573000000000000000000000000000000000000608482015260a4016106f7565b60075461ffff871660009081526009602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9093169263c580310092349261195f928c928b913391908b906004016133f7565b6000604051808303818588803b15801561197857600080fd5b505af115801561198c573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516119ba9087906132a9565b908152604080516020928190038301902067ffffffffffffffff87166000908152925290206001810154909150611a73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f657373616765000000000000000000000000000000000000000000000000000060648201526084016106f7565b805482148015611a9d575080600101548383604051611a9392919061350f565b6040518091039020145b611b03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016106f7565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290611b51908990899089908990899060040161351f565b600060405180830381600087803b158015611b6b57600080fd5b505af1158015611b7f573d6000803e3d6000fd5b50505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b61ffff8316600090815260096020526040902061082c908383612ab6565b60005473ffffffffffffffffffffffffffffffffffffffff163314611cab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff8116611d4e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106f7565b61116d81612215565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611db182610f70565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611e0e919061359f565b91509150611e1c82826121fb565b505050505050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16611ed5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106f7565b6000611ee083610f70565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f4f57508373ffffffffffffffffffffffffffffffffffffffff16611f37846109a9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f8c575073ffffffffffffffffffffffffffffffffffffffff80821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611fb482610f70565b73ffffffffffffffffffffffffffffffffffffffff1614612057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106f7565b73ffffffffffffffffffffffffffffffffffffffff82166120f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106f7565b612104600082611d57565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260046020526040812080546001929061213a9084906135cd565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081208054600192906121759084906132f4565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ebd828260405180602001604052806000815250612669565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526006602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6123c3848484611f94565b6123cf8484848461270c565b61082c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b6060600b80546109269061317b565b6060816124aa57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156124d457806124be8161330c565b91506124cd9050600a83613613565b91506124ae565b60008167ffffffffffffffff8111156124ef576124ef612b74565b6040519080825280601f01601f191660200182016040528015612519576020820181803683370190505b5090505b8415611f8c5761252e6001836135cd565b915061253b600a86613627565b6125469060306132f4565b60f81b81838151811061255b5761255b61363b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612595600a86613613565b945061251d565b60006125a782610f70565b90506125b4600083611d57565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081208054600192906125ea9084906135cd565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61267383836128fc565b612680600084848461270c565b610c0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b600073ffffffffffffffffffffffffffffffffffffffff84163b156128f1576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061278390339089908890889060040161366a565b6020604051808303816000875af19250505080156127dc575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526127d9918101906136b3565b60015b6128a6573d80801561280a576040519150601f19603f3d011682016040523d82523d6000602084013e61280f565b606091505b50805161289e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611f8c565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8216612979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081208054600192906129af9084906132f4565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612a3e9061317b565b90600052602060002090601f016020900481019282612a605760008555612aa6565b82601f10612a7957805160ff1916838001178555612aa6565b82800160010185558215612aa6579182015b82811115612aa6578251825591602001919060010190612a8b565b50612ab2929150612b48565b5090565b828054612ac29061317b565b90600052602060002090601f016020900481019282612ae45760008555612aa6565b82601f10612b1b578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612aa6565b82800160010185558215612aa6579182015b82811115612aa6578235825591602001919060010190612b2d565b5b80821115612ab25760008155600101612b49565b803561ffff81168114612b6f57600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612bbe57612bbe612b74565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612c0457612c04612b74565b81604052809350858152868686011115612c1d57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612c4857600080fd5b6115b083833560208501612ba3565b803567ffffffffffffffff81168114612b6f57600080fd5b60008060008060808587031215612c8557600080fd5b612c8e85612b5d565b9350602085013567ffffffffffffffff80821115612cab57600080fd5b612cb788838901612c37565b9450612cc560408801612c57565b93506060870135915080821115612cdb57600080fd5b50612ce887828801612c37565b91505092959194509250565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461116d57600080fd5b600060208284031215612d3457600080fd5b81356115b081612cf4565b60005b83811015612d5a578181015183820152602001612d42565b8381111561082c5750506000910152565b60008151808452612d83816020860160208601612d3f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006115b06020830184612d6b565b600060208284031215612dda57600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461116d57600080fd5b60008060408385031215612e1657600080fd5b8235612e2181612de1565b946020939093013593505050565b600080600060608486031215612e4457600080fd5b8335612e4f81612de1565b92506020840135612e5f81612de1565b929592945050506040919091013590565b600060208284031215612e8257600080fd5b813567ffffffffffffffff811115612e9957600080fd5b8201601f81018413612eaa57600080fd5b611f8c84823560208401612ba3565b600060208284031215612ecb57600080fd5b813560ff811681146115b057600080fd5b600060208284031215612eee57600080fd5b81356115b081612de1565b600060208284031215612f0b57600080fd5b6115b082612b5d565b600080600060608486031215612f2957600080fd5b612f3284612b5d565b9250602084013567ffffffffffffffff811115612f4e57600080fd5b612f5a86828701612c37565b925050604084013590509250925092565b60008060408385031215612f7e57600080fd5b8235612f8981612de1565b915060208301358015158114612f9e57600080fd5b809150509250929050565b60008060008060808587031215612fbf57600080fd5b8435612fca81612de1565b93506020850135612fda81612de1565b925060408501359150606085013567ffffffffffffffff811115612ffd57600080fd5b612ce887828801612c37565b6000806040838503121561301c57600080fd5b612e2183612b5d565b60008083601f84011261303757600080fd5b50813567ffffffffffffffff81111561304f57600080fd5b60208301915083602082850101111561306757600080fd5b9250929050565b60008060008060006080868803121561308657600080fd5b61308f86612b5d565b9450602086013567ffffffffffffffff808211156130ac57600080fd5b6130b889838a01612c37565b95506130c660408901612c57565b945060608801359150808211156130dc57600080fd5b506130e988828901613025565b969995985093965092949392505050565b6000806040838503121561310d57600080fd5b823561311881612de1565b91506020830135612f9e81612de1565b60008060006040848603121561313d57600080fd5b61314684612b5d565b9250602084013567ffffffffffffffff81111561316257600080fd5b61316e86828701613025565b9497909650939450505050565b600181811c9082168061318f57607f821691505b602082108114156131c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60008083546131dd8161317b565b600182811680156131f5576001811461322457613253565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00841687528287019450613253565b8760005260208060002060005b8581101561324a5781548a820152908401908201613231565b50505082870194505b50929695505050505050565b61ffff8516815260806020820152600061327c6080830186612d6b565b67ffffffffffffffff85166040840152828103606084015261329e8185612d6b565b979650505050505050565b600082516132bb818460208701612d3f565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613307576133076132c5565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561333e5761333e6132c5565b5060010190565b60008351613357818460208801612d3f565b83519083019061336b818360208801612d3f565b01949350505050565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a0604082015260006133ad60a0830186612d6b565b841515606084015282810360808401526133c78185612d6b565b98975050505050505050565b600080604083850312156133e657600080fd5b505080516020909101519092909150565b61ffff871681526000602060c081840152600088546134158161317b565b8060c087015260e0600180841660008114613437576001811461346a57613498565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a015261010089019550613498565b8d6000528660002060005b858110156134905781548b8201860152908301908801613475565b8a0184019650505b505050505083810360408501526134af8189612d6b565b9150506134d4606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a08401526135028185612d6b565b9998505050505050505050565b8183823760009101908152919050565b61ffff8616815260806020820152600061353c6080830187612d6b565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b600080604083850312156135b257600080fd5b82516135bd81612de1565b6020939093015192949293505050565b6000828210156135df576135df6132c5565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613622576136226135e4565b500490565b600082613636576136366135e4565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526136a96080830184612d6b565b9695505050505050565b6000602082840312156136c557600080fd5b81516115b081612cf456fea264697066735822122037d1ed77c0fde7b586411f7afe056f43cfb4c75a5bfe03bb369a3b888d494f5364736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6f617065732d6170692e76657263656c2e6170702f6170692f00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): https://oapes-api.vercel.app/api/
Arg [1] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [3] : 68747470733a2f2f6f617065732d6170692e76657263656c2e6170702f617069
Arg [4] : 2f00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50169:4091:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46793:1098;;;;;;;;;;-1:-1:-1;46793:1098:0;;;;;:::i;:::-;;:::i;:::-;;32858:355;;;;;;;;;;-1:-1:-1;32858:355:0;;;;;:::i;:::-;;:::i;:::-;;;2749:14:1;;2742:22;2724:41;;2712:2;2697:18;32858:355:0;;;;;;;;34027:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35720:308::-;;;;;;;;;;-1:-1:-1;35720:308:0;;;;;:::i;:::-;;:::i;:::-;;;4079:42:1;4067:55;;;4049:74;;4037:2;4022:18;35720:308:0;3903:226:1;35243:411:0;;;;;;;;;;-1:-1:-1;35243:411:0;;;;;:::i;:::-;;:::i;47899:435::-;;;;;;;;;;-1:-1:-1;47899:435:0;;;;;:::i;:::-;;:::i;36639:376::-;;;;;;;;;;-1:-1:-1;36639:376:0;;;;;:::i;:::-;;:::i;53238:184::-;;;;;;;;;;-1:-1:-1;53238:184:0;;;;;:::i;:::-;;:::i;37086:185::-;;;;;;;;;;-1:-1:-1;37086:185:0;;;;;:::i;:::-;;:::i;53012:90::-;;;;;;;;;;-1:-1:-1;53012:90:0;;;;;:::i;:::-;;:::i;33634:326::-;;;;;;;;;;-1:-1:-1;33634:326:0;;;;;:::i;:::-;;:::i;50761:405::-;;;;;;:::i;:::-;;:::i;33277:295::-;;;;;;;;;;-1:-1:-1;33277:295:0;;;;;:::i;:::-;;:::i;:::-;;;6201:25:1;;;6189:2;6174:18;33277:295:0;6055:177:1;13170:103:0;;;;;;;;;;;;;:::i;46592:51::-;;;;;;;;;;-1:-1:-1;46592:51:0;;;;;:::i;:::-;;:::i;12519:87::-;;;;;;;;;;-1:-1:-1;12565:7:0;12592:6;;;12519:87;;46483:102;;;;;;;;;;-1:-1:-1;46483:102:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7288:25:1;;;7344:2;7329:18;;7322:34;;;;7261:18;46483:102:0;7114:248:1;53506:128:0;;;;;;;;;;-1:-1:-1;53506:128:0;;;;;:::i;:::-;;:::i;34196:104::-;;;;;;;;;;;;;:::i;36100:187::-;;;;;;;;;;-1:-1:-1;36100:187:0;;;;;:::i;:::-;;:::i;50231:21::-;;;;;;;;;;-1:-1:-1;50231:21:0;;;;;;;;37342:365;;;;;;;;;;-1:-1:-1;37342:365:0;;;;;:::i;:::-;;:::i;34371:468::-;;;;;;;;;;-1:-1:-1;34371:468:0;;;;;:::i;:::-;;:::i;51305:1699::-;;;;;;:::i;:::-;;:::i;48994:916::-;;;;;;:::i;:::-;;:::i;36358:214::-;;;;;;;;;;-1:-1:-1;36358:214:0;;;;;:::i;:::-;36529:25;;;;36500:4;36529:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36358:214;49918:181;;;;;;;;;;-1:-1:-1;49918:181:0;;;;;:::i;:::-;;:::i;13428:238::-;;;;;;;;;;-1:-1:-1;13428:238:0;;;;;:::i;:::-;;:::i;46793:1098::-;46998:8;;;;46976:10;:31;46968:40;;;;;;47133:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;47111:11;:18;:61;:168;;;;-1:-1:-1;47246:32:0;;;;;;;:19;:32;;;;;;;47236:43;;;;47246:32;47236:43;:::i;:::-;;;;;;;;47203:11;47193:22;;;;;;:86;47111:168;47089:270;;;;;;;12242:2:1;47089:270:0;;;12224:21:1;12281:2;12261:18;;;12254:30;12320:34;12300:18;;;12293:62;12391:22;12371:18;;;12364:50;12431:19;;47089:270:0;;;;;;;;;47487:60;;;;;:4;;:16;;:60;;47504:11;;47517;;47530:6;;47538:8;;47487:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47483:401;;47694:101;;;;;;;;47727:8;:15;47694:101;;;;47771:8;47761:19;;;;;;47694:101;;;47643:14;:27;47658:11;47643:27;;;;;;;;;;;;;;;47671:11;47643:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:48;;;;;;;;;;;;;;:152;;;;;;;;;;;;;;;47815:57;;;;47829:11;;47842;;47684:6;;47863:8;;47815:57;:::i;:::-;;;;;;;;47483:401;46793:1098;;;;:::o;32858:355::-;33005:4;33047:40;;;33062:25;33047:40;;:105;;-1:-1:-1;33104:48:0;;;33119:33;33104:48;33047:105;:158;;;-1:-1:-1;25619:25:0;25604:40;;;;33169:36;33027:178;32858:355;-1:-1:-1;;32858:355:0:o;34027:100::-;34081:13;34114:5;34107:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34027:100;:::o;35720:308::-;35841:7;39343:16;;;:7;:16;;;;;;:30;:16;35866:110;;;;;;;13504:2:1;35866:110:0;;;13486:21:1;13543:2;13523:18;;;13516:30;13582:34;13562:18;;;13555:62;13653:14;13633:18;;;13626:42;13685:19;;35866:110:0;13302:408:1;35866:110:0;-1:-1:-1;35996:24:0;;;;:15;:24;;;;;;;;;35720:308::o;35243:411::-;35324:13;35340:23;35355:7;35340:14;:23::i;:::-;35324:39;;35388:5;35382:11;;:2;:11;;;;35374:57;;;;;;;13917:2:1;35374:57:0;;;13899:21:1;13956:2;13936:18;;;13929:30;13995:34;13975:18;;;13968:62;14066:3;14046:18;;;14039:31;14087:19;;35374:57:0;13715:397:1;35374:57:0;11302:10;35466:21;;;;;:62;;-1:-1:-1;35491:37:0;35508:5;11302:10;36358:214;:::i;35491:37::-;35444:168;;;;;;;14319:2:1;35444:168:0;;;14301:21:1;14358:2;14338:18;;;14331:30;14397:34;14377:18;;;14370:62;14468:26;14448:18;;;14441:54;14512:19;;35444:168:0;14117:420:1;35444:168:0;35625:21;35634:2;35638:7;35625:8;:21::i;:::-;35313:341;35243:411;;:::o;47899:435::-;48125:10;48147:4;48125:27;48103:120;;;;;;;14744:2:1;48103:120:0;;;14726:21:1;14783:2;14763:18;;;14756:30;14822:34;14802:18;;;14795:62;14893:13;14873:18;;;14866:41;14924:19;;48103:120:0;14542:407:1;48103:120:0;48272:54;48283:11;48296;48309:6;48317:8;48272:10;:54::i;36639:376::-;36848:41;11302:10;36881:7;36848:18;:41::i;:::-;36826:140;;;;;;;15156:2:1;36826:140:0;;;15138:21:1;15195:2;15175:18;;;15168:30;15234:34;15214:18;;;15207:62;15305:19;15285:18;;;15278:47;15342:19;;36826:140:0;14954:413:1;36826:140:0;36979:28;36989:4;36995:2;36999:7;36979:9;:28::i;53238:184::-;12565:7;12592:6;12739:23;12592:6;11302:10;12739:23;12731:68;;;;;;;15574:2:1;12731:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12731:68:0;15372:356:1;12731:68:0;53323:6:::1;::::0;53315:36:::1;::::0;53300:9:::1;::::0;53323:6:::1;;::::0;53343:3;;53300:9;53315:36;53300:9;53315:36;53343:3;53323:6;53315:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53299:52;;;53370:4;53362:52;;;::::0;::::1;::::0;;16145:2:1;53362:52:0::1;::::0;::::1;16127:21:1::0;16184:2;16164:18;;;16157:30;16223:34;16203:18;;;16196:62;16294:5;16274:18;;;16267:33;16317:19;;53362:52:0::1;15943:399:1::0;53362:52:0::1;53288:134;53238:184:::0;:::o;37086:185::-;37224:39;37241:4;37247:2;37251:7;37224:39;;;;;;;;;;;;:16;:39::i;53012:90::-;12565:7;12592:6;12739:23;12592:6;11302:10;12739:23;12731:68;;;;;;;15574:2:1;12731:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12731:68:0;15372:356:1;12731:68:0;53081:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;33634:326::-:0;33751:7;33792:16;;;:7;:16;;;;;;;;33841:19;33819:110;;;;;;;16549:2:1;33819:110:0;;;16531:21:1;16588:2;16568:18;;;16561:30;16627:34;16607:18;;;16600:62;16698:11;16678:18;;;16671:39;16727:19;;33819:110:0;16347:405:1;50761::0;50840:1;50828:9;:13;;;50820:63;;;;;;;16959:2:1;50820:63:0;;;16941:21:1;16998:2;16978:18;;;16971:30;17037:34;17017:18;;;17010:62;17108:7;17088:18;;;17081:35;17133:19;;50820:63:0;16757:401:1;50820:63:0;50943:17;;50930:9;50916:23;;:11;;:23;;;;:::i;:::-;:44;;50894:124;;;;;;;17687:2:1;50894:124:0;;;17669:21:1;17726:2;17706:18;;;17699:30;17765:32;17745:18;;;17738:60;17815:18;;50894:124:0;17485:354:1;50894:124:0;51029:36;51039:10;51053:11;;51051:13;;;;;:::i;:::-;;;;;-1:-1:-1;51029:9:0;:36::i;:::-;51080:9;:14;;51093:1;51080:14;51076:83;;;51111:36;51121:10;51135:11;;51133:13;;;;;:::i;51111:36::-;50761:405;:::o;33277:295::-;33394:7;33441:19;;;33419:111;;;;;;;18246:2:1;33419:111:0;;;18228:21:1;18285:2;18265:18;;;18258:30;18324:34;18304:18;;;18297:62;18395:12;18375:18;;;18368:40;18425:19;;33419:111:0;18044:406:1;33419:111:0;-1:-1:-1;33548:16:0;;;;;;:9;:16;;;;;;;33277:295::o;13170:103::-;12565:7;12592:6;12739:23;12592:6;11302:10;12739:23;12731:68;;;;;;;15574:2:1;12731:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12731:68:0;15372:356:1;12731:68:0;13235:30:::1;13262:1;13235:18;:30::i;:::-;13170:103::o:0;46592:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53506:128::-;12565:7;12592:6;12739:23;12592:6;11302:10;12739:23;12731:68;;;;;;;15574:2:1;12731:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12731:68:0;15372:356:1;12731:68:0;53591:26:::1;:35:::0;53506:128::o;34196:104::-;34252:13;34285:7;34278:14;;;;;:::i;36100:187::-;36227:52;11302:10;36260:8;36270;36227:18;:52::i;37342:365::-;37531:41;11302:10;37564:7;37531:18;:41::i;:::-;37509:140;;;;;;;15156:2:1;37509:140:0;;;15138:21:1;15195:2;15175:18;;;15168:30;15234:34;15214:18;;;15207:62;15305:19;15285:18;;;15278:47;15342:19;;37509:140:0;14954:413:1;37509:140:0;37660:39;37674:4;37680:2;37684:7;37693:5;37660:13;:39::i;34371:468::-;39319:4;39343:16;;;:7;:16;;;;;;34489:13;;39343:30;:16;34520:113;;;;;;;18657:2:1;34520:113:0;;;18639:21:1;18696:2;18676:18;;;18669:30;18735:34;18715:18;;;18708:62;18806:17;18786:18;;;18779:45;18841:19;;34520:113:0;18455:411:1;34520:113:0;34646:21;34670:10;:8;:10::i;:::-;34646:34;;34735:1;34717:7;34711:21;:25;:120;;;;;;;;;;;;;;;;;34780:7;34789:18;:7;:16;:18::i;:::-;34763:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34711:120;34691:140;34371:468;-1:-1:-1;;;34371:468:0:o;51305:1699::-;51425:16;51433:7;51425;:16::i;:::-;51411:30;;:10;:30;;;51389:114;;;;;;;19548:2:1;51389:114:0;;;19530:21:1;19587:2;19567:18;;;19560:30;19626:34;19606:18;;;19599:62;19697:4;19677:18;;;19670:32;19719:19;;51389:114:0;19346:398:1;51389:114:0;51536:29;;;51575:1;51536:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;51514:136;;;;;;;19951:2:1;51514:136:0;;;19933:21:1;19990:2;19970:18;;;19963:30;20029:34;20009:18;;;20002:62;20100:16;20080:18;;;20073:44;20134:19;;51514:136:0;19749:410:1;51514:136:0;51730:14;51736:7;51730:5;:14::i;:::-;51841:31;;;51852:10;51841:31;;;20338:74:1;20428:18;;;20421:34;;;51841:31:0;;;;;;;;;20311:18:1;;;51841:31:0;;52069:26;;20637:16:1;52016:90:0;;;20621:102:1;20739:11;;;;20732:27;;;;52016:90:0;;;;;;;;;;20775:12:1;;;52016:90:0;;;;52285:8;;:153;;;;51841:31;;51975:1;;-1:-1:-1;;52285:8:0;;;:21;;:153;;52321:8;;52352:4;;51841:31;;-1:-1:-1;;52016:90:0;;52285:153;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52260:178;;;52486:10;52473:9;:23;;52451:151;;;;;;;21920:2:1;52451:151:0;;;21902:21:1;21959:2;21939:18;;;21932:30;21998:34;21978:18;;;21971:62;22069:34;22049:18;;;22042:62;22141:16;22120:19;;;22113:45;22175:19;;52451:151:0;21718:482:1;52451:151:0;52615:8;;52707:29;;;52615:8;52707:29;;;:19;:29;;;;;;52615:381;;;;;:8;;;;;:13;;52636:9;;52615:381;;52661:8;;52790:7;;52846:10;;52615:8;52956:13;;52615:381;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51378:1626;;;;51305:1699;;:::o;48994:916::-;49253:27;;;49218:32;49253:27;;;:14;:27;;;;;;:64;;;;49295:11;;49253:64;:::i;:::-;;;;;;;;;;;;;;;;:72;;;;;;;;;;;49358:21;;;;49253:72;;-1:-1:-1;49336:123:0;;;;;;;23954:2:1;49336:123:0;;;23936:21:1;23993:2;23973:18;;;23966:30;24032:34;24012:18;;;24005:62;24103:8;24083:18;;;24076:36;24129:19;;49336:123:0;23752:402:1;49336:123:0;49511:23;;49492:42;;:107;;;;;49578:9;:21;;;49565:8;;49555:19;;;;;;;:::i;:::-;;;;;;;;:44;49492:107;49470:183;;;;;;;24637:2:1;49470:183:0;;;24619:21:1;24676:2;24656:18;;;24649:30;24715:28;24695:18;;;24688:56;24761:18;;49470:183:0;24435:350:1;49470:183:0;49727:1;49701:27;;;49739:21;;;:34;49842:60;;;;;:4;;:16;;:60;;49859:11;;49872;;49885:6;;49893:8;;;;49842:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49162:748;48994:916;;;;;:::o;49918:181::-;12565:7;12592:6;12739:23;12592:6;11302:10;12739:23;12731:68;;;;;;;15574:2:1;12731:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12731:68:0;15372:356:1;12731:68:0;50045:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;50077:14;;50045:46:::1;:::i;13428:238::-:0;12565:7;12592:6;12739:23;12592:6;11302:10;12739:23;12731:68;;;;;;;15574:2:1;12731:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12731:68:0;15372:356:1;12731:68:0;13531:22:::1;::::0;::::1;13509:110;;;::::0;::::1;::::0;;25774:2:1;13509:110:0::1;::::0;::::1;25756:21:1::0;25813:2;25793:18;;;25786:30;25852:34;25832:18;;;25825:62;25923:8;25903:18;;;25896:36;25949:19;;13509:110:0::1;25572:402:1::0;13509:110:0::1;13630:28;13649:8;13630:18;:28::i;43308:174::-:0;43383:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;43437:23;43383:24;43437:14;:23::i;:::-;43428:46;;;;;;;;;;;;43308:174;;:::o;53725:424::-;53921:14;53937:15;53981:8;53956:77;;;;;;;;;;;;:::i;:::-;53920:113;;;;54115:26;54125:6;54133:7;54115:9;:26::i;:::-;53890:259;;53725:424;;;;:::o;39548:452::-;39677:4;39343:16;;;:7;:16;;;;;;:30;:16;39699:110;;;;;;;26506:2:1;39699:110:0;;;26488:21:1;26545:2;26525:18;;;26518:30;26584:34;26564:18;;;26557:62;26655:14;26635:18;;;26628:42;26687:19;;39699:110:0;26304:408:1;39699:110:0;39820:13;39836:23;39851:7;39836:14;:23::i;:::-;39820:39;;39889:5;39878:16;;:7;:16;;;:64;;;;39935:7;39911:31;;:20;39923:7;39911:11;:20::i;:::-;:31;;;39878:64;:113;;;-1:-1:-1;36529:25:0;;;;36500:4;36529:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39959:32;39870:122;39548:452;-1:-1:-1;;;;39548:452:0:o;42575:615::-;42748:4;42721:31;;:23;42736:7;42721:14;:23::i;:::-;:31;;;42699:122;;;;;;;26919:2:1;42699:122:0;;;26901:21:1;26958:2;26938:18;;;26931:30;26997:34;26977:18;;;26970:62;27068:11;27048:18;;;27041:39;27097:19;;42699:122:0;26717:405:1;42699:122:0;42840:16;;;42832:65;;;;;;;27329:2:1;42832:65:0;;;27311:21:1;27368:2;27348:18;;;27341:30;27407:34;27387:18;;;27380:62;27478:6;27458:18;;;27451:34;27502:19;;42832:65:0;27127:400:1;42832:65:0;43014:29;43031:1;43035:7;43014:8;:29::i;:::-;43056:15;;;;;;;:9;:15;;;;;:20;;43075:1;;43056:15;:20;;43075:1;;43056:20;:::i;:::-;;;;-1:-1:-1;;43087:13:0;;;;;;;:9;:13;;;;;:18;;43104:1;;43087:13;:18;;43104:1;;43087:18;:::i;:::-;;;;-1:-1:-1;;43116:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;43155:27;;43116:16;;43155:27;;;;;;;42575:615;;;:::o;40342:110::-;40418:26;40428:2;40432:7;40418:26;;;;;;;;;;;;:9;:26::i;13826:191::-;13900:16;13919:6;;;13936:17;;;;;;;;;;13969:40;;13919:6;;;;;;;13969:40;;13900:16;13969:40;13889:128;13826:191;:::o;43624:315::-;43779:8;43770:17;;:5;:17;;;;43762:55;;;;;;;27864:2:1;43762:55:0;;;27846:21:1;27903:2;27883:18;;;27876:30;27942:27;27922:18;;;27915:55;27987:18;;43762:55:0;27662:349:1;43762:55:0;43828:25;;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;43890:41;;2724::1;;;43890::0;;2697:18:1;43890:41:0;;;;;;;43624:315;;;:::o;38589:352::-;38746:28;38756:4;38762:2;38766:7;38746:9;:28::i;:::-;38807:48;38830:4;38836:2;38840:7;38849:5;38807:22;:48::i;:::-;38785:148;;;;;;;28218:2:1;38785:148:0;;;28200:21:1;28257:2;28237:18;;;28230:30;28296:34;28276:18;;;28269:62;28367:20;28347:18;;;28340:48;28405:19;;38785:148:0;28016:414:1;54157:100:0;54209:13;54242:7;54235:14;;;;;:::i;8754:723::-;8810:13;9031:10;9027:53;;-1:-1:-1;;9058:10:0;;;;;;;;;;;;;;;;;;8754:723::o;9027:53::-;9105:5;9090:12;9146:78;9153:9;;9146:78;;9179:8;;;;:::i;:::-;;-1:-1:-1;9202:10:0;;-1:-1:-1;9210:2:0;9202:10;;:::i;:::-;;;9146:78;;;9234:19;9266:6;9256:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9256:17:0;;9234:39;;9284:154;9291:10;;9284:154;;9318:11;9328:1;9318:11;;:::i;:::-;;-1:-1:-1;9387:10:0;9395:2;9387:5;:10;:::i;:::-;9374:24;;:2;:24;:::i;:::-;9361:39;;9344:6;9351;9344:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;9415:11:0;9424:2;9415:11;;:::i;:::-;;;9284:154;;41878:360;41938:13;41954:23;41969:7;41954:14;:23::i;:::-;41938:39;;42079:29;42096:1;42100:7;42079:8;:29::i;:::-;42121:16;;;;;;;:9;:16;;;;;:21;;42141:1;;42121:16;:21;;42141:1;;42121:21;:::i;:::-;;;;-1:-1:-1;;42160:16:0;;;;:7;:16;;;;;;42153:23;;;;;;42194:36;42168:7;;42160:16;42153:23;42194:36;;;;;42160:16;;42194:36;41927:311;41878:360;:::o;40679:321::-;40809:18;40815:2;40819:7;40809:5;:18::i;:::-;40860:54;40891:1;40895:2;40899:7;40908:5;40860:22;:54::i;:::-;40838:154;;;;;;;28218:2:1;40838:154:0;;;28200:21:1;28257:2;28237:18;;;28230:30;28296:34;28276:18;;;28269:62;28367:20;28347:18;;;28340:48;28405:19;;40838:154:0;28016:414:1;44504:980:0;44659:4;44680:13;;;15165:20;15213:8;44676:801;;44733:175;;;;;:36;;;;;;:175;;11302:10;;44827:4;;44854:7;;44884:5;;44733:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44733:175:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44712:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45091:13:0;;45087:320;;45134:108;;;;;28218:2:1;45134:108:0;;;28200:21:1;28257:2;28237:18;;;28230:30;28296:34;28276:18;;;28269:62;28367:20;28347:18;;;28340:48;28405:19;;45134:108:0;28016:414:1;45087:320:0;45357:6;45351:13;45342:6;45338:2;45334:15;45327:38;44712:710;44972:51;;44982:41;44972:51;;-1:-1:-1;44965:58:0;;44676:801;-1:-1:-1;45461:4:0;44504:980;;;;;;:::o;41336:313::-;41416:16;;;41408:61;;;;;;;30028:2:1;41408:61:0;;;30010:21:1;;;30047:18;;;30040:30;30106:34;30086:18;;;30079:62;30158:18;;41408:61:0;29826:356:1;41408:61:0;41540:13;;;;;;;:9;:13;;;;;:18;;41557:1;;41540:13;:18;;41557:1;;41540:18;:::i;:::-;;;;-1:-1:-1;;41569:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;41608:33;;41569:16;;;41608:33;;41569:16;;41608:33;41336:313;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:159:1;81:20;;141:6;130:18;;120:29;;110:57;;163:1;160;153:12;110:57;14:159;;;:::o;178:184::-;230:77;227:1;220:88;327:4;324:1;317:15;351:4;348:1;341:15;367:690;431:5;461:18;502:2;494:6;491:14;488:40;;;508:18;;:::i;:::-;642:2;636:9;708:2;696:15;;547:66;692:24;;;718:2;688:33;684:42;672:55;;;742:18;;;762:22;;;739:46;736:72;;;788:18;;:::i;:::-;828:10;824:2;817:22;857:6;848:15;;887:6;879;872:22;927:3;918:6;913:3;909:16;906:25;903:45;;;944:1;941;934:12;903:45;994:6;989:3;982:4;974:6;970:17;957:44;1049:1;1042:4;1033:6;1025;1021:19;1017:30;1010:41;;;;367:690;;;;;:::o;1062:220::-;1104:5;1157:3;1150:4;1142:6;1138:17;1134:27;1124:55;;1175:1;1172;1165:12;1124:55;1197:79;1272:3;1263:6;1250:20;1243:4;1235:6;1231:17;1197:79;:::i;1287:171::-;1354:20;;1414:18;1403:30;;1393:41;;1383:69;;1448:1;1445;1438:12;1463:684;1565:6;1573;1581;1589;1642:3;1630:9;1621:7;1617:23;1613:33;1610:53;;;1659:1;1656;1649:12;1610:53;1682:28;1700:9;1682:28;:::i;:::-;1672:38;;1761:2;1750:9;1746:18;1733:32;1784:18;1825:2;1817:6;1814:14;1811:34;;;1841:1;1838;1831:12;1811:34;1864:49;1905:7;1896:6;1885:9;1881:22;1864:49;:::i;:::-;1854:59;;1932:37;1965:2;1954:9;1950:18;1932:37;:::i;:::-;1922:47;;2022:2;2011:9;2007:18;1994:32;1978:48;;2051:2;2041:8;2038:16;2035:36;;;2067:1;2064;2057:12;2035:36;;2090:51;2133:7;2122:8;2111:9;2107:24;2090:51;:::i;:::-;2080:61;;;1463:684;;;;;;;:::o;2152:177::-;2237:66;2230:5;2226:78;2219:5;2216:89;2206:117;;2319:1;2316;2309:12;2334:245;2392:6;2445:2;2433:9;2424:7;2420:23;2416:32;2413:52;;;2461:1;2458;2451:12;2413:52;2500:9;2487:23;2519:30;2543:5;2519:30;:::i;2776:258::-;2848:1;2858:113;2872:6;2869:1;2866:13;2858:113;;;2948:11;;;2942:18;2929:11;;;2922:39;2894:2;2887:10;2858:113;;;2989:6;2986:1;2983:13;2980:48;;;-1:-1:-1;;3024:1:1;3006:16;;2999:27;2776:258::o;3039:317::-;3081:3;3119:5;3113:12;3146:6;3141:3;3134:19;3162:63;3218:6;3211:4;3206:3;3202:14;3195:4;3188:5;3184:16;3162:63;:::i;:::-;3270:2;3258:15;3275:66;3254:88;3245:98;;;;3345:4;3241:109;;3039:317;-1:-1:-1;;3039:317:1:o;3361:220::-;3510:2;3499:9;3492:21;3473:4;3530:45;3571:2;3560:9;3556:18;3548:6;3530:45;:::i;3586:180::-;3645:6;3698:2;3686:9;3677:7;3673:23;3669:32;3666:52;;;3714:1;3711;3704:12;3666:52;-1:-1:-1;3737:23:1;;3586:180;-1:-1:-1;3586:180:1:o;4134:154::-;4220:42;4213:5;4209:54;4202:5;4199:65;4189:93;;4278:1;4275;4268:12;4293:315;4361:6;4369;4422:2;4410:9;4401:7;4397:23;4393:32;4390:52;;;4438:1;4435;4428:12;4390:52;4477:9;4464:23;4496:31;4521:5;4496:31;:::i;:::-;4546:5;4598:2;4583:18;;;;4570:32;;-1:-1:-1;;;4293:315:1:o;4613:456::-;4690:6;4698;4706;4759:2;4747:9;4738:7;4734:23;4730:32;4727:52;;;4775:1;4772;4765:12;4727:52;4814:9;4801:23;4833:31;4858:5;4833:31;:::i;:::-;4883:5;-1:-1:-1;4940:2:1;4925:18;;4912:32;4953:33;4912:32;4953:33;:::i;:::-;4613:456;;5005:7;;-1:-1:-1;;;5059:2:1;5044:18;;;;5031:32;;4613:456::o;5074:450::-;5143:6;5196:2;5184:9;5175:7;5171:23;5167:32;5164:52;;;5212:1;5209;5202:12;5164:52;5252:9;5239:23;5285:18;5277:6;5274:30;5271:50;;;5317:1;5314;5307:12;5271:50;5340:22;;5393:4;5385:13;;5381:27;-1:-1:-1;5371:55:1;;5422:1;5419;5412:12;5371:55;5445:73;5510:7;5505:2;5492:16;5487:2;5483;5479:11;5445:73;:::i;5529:269::-;5586:6;5639:2;5627:9;5618:7;5614:23;5610:32;5607:52;;;5655:1;5652;5645:12;5607:52;5694:9;5681:23;5744:4;5737:5;5733:16;5726:5;5723:27;5713:55;;5764:1;5761;5754:12;5803:247;5862:6;5915:2;5903:9;5894:7;5890:23;5886:32;5883:52;;;5931:1;5928;5921:12;5883:52;5970:9;5957:23;5989:31;6014:5;5989:31;:::i;6237:184::-;6295:6;6348:2;6336:9;6327:7;6323:23;6319:32;6316:52;;;6364:1;6361;6354:12;6316:52;6387:28;6405:9;6387:28;:::i;6649:460::-;6734:6;6742;6750;6803:2;6791:9;6782:7;6778:23;6774:32;6771:52;;;6819:1;6816;6809:12;6771:52;6842:28;6860:9;6842:28;:::i;:::-;6832:38;;6921:2;6910:9;6906:18;6893:32;6948:18;6940:6;6937:30;6934:50;;;6980:1;6977;6970:12;6934:50;7003:49;7044:7;7035:6;7024:9;7020:22;7003:49;:::i;:::-;6993:59;;;7099:2;7088:9;7084:18;7071:32;7061:42;;6649:460;;;;;:::o;7367:416::-;7432:6;7440;7493:2;7481:9;7472:7;7468:23;7464:32;7461:52;;;7509:1;7506;7499:12;7461:52;7548:9;7535:23;7567:31;7592:5;7567:31;:::i;:::-;7617:5;-1:-1:-1;7674:2:1;7659:18;;7646:32;7716:15;;7709:23;7697:36;;7687:64;;7747:1;7744;7737:12;7687:64;7770:7;7760:17;;;7367:416;;;;;:::o;7788:665::-;7883:6;7891;7899;7907;7960:3;7948:9;7939:7;7935:23;7931:33;7928:53;;;7977:1;7974;7967:12;7928:53;8016:9;8003:23;8035:31;8060:5;8035:31;:::i;:::-;8085:5;-1:-1:-1;8142:2:1;8127:18;;8114:32;8155:33;8114:32;8155:33;:::i;:::-;8207:7;-1:-1:-1;8261:2:1;8246:18;;8233:32;;-1:-1:-1;8316:2:1;8301:18;;8288:32;8343:18;8332:30;;8329:50;;;8375:1;8372;8365:12;8329:50;8398:49;8439:7;8430:6;8419:9;8415:22;8398:49;:::i;8458:252::-;8525:6;8533;8586:2;8574:9;8565:7;8561:23;8557:32;8554:52;;;8602:1;8599;8592:12;8554:52;8625:28;8643:9;8625:28;:::i;8715:347::-;8766:8;8776:6;8830:3;8823:4;8815:6;8811:17;8807:27;8797:55;;8848:1;8845;8838:12;8797:55;-1:-1:-1;8871:20:1;;8914:18;8903:30;;8900:50;;;8946:1;8943;8936:12;8900:50;8983:4;8975:6;8971:17;8959:29;;9035:3;9028:4;9019:6;9011;9007:19;9003:30;9000:39;8997:59;;;9052:1;9049;9042:12;8997:59;8715:347;;;;;:::o;9067:773::-;9171:6;9179;9187;9195;9203;9256:3;9244:9;9235:7;9231:23;9227:33;9224:53;;;9273:1;9270;9263:12;9224:53;9296:28;9314:9;9296:28;:::i;:::-;9286:38;;9375:2;9364:9;9360:18;9347:32;9398:18;9439:2;9431:6;9428:14;9425:34;;;9455:1;9452;9445:12;9425:34;9478:49;9519:7;9510:6;9499:9;9495:22;9478:49;:::i;:::-;9468:59;;9546:37;9579:2;9568:9;9564:18;9546:37;:::i;:::-;9536:47;;9636:2;9625:9;9621:18;9608:32;9592:48;;9665:2;9655:8;9652:16;9649:36;;;9681:1;9678;9671:12;9649:36;;9720:60;9772:7;9761:8;9750:9;9746:24;9720:60;:::i;:::-;9067:773;;;;-1:-1:-1;9067:773:1;;-1:-1:-1;9799:8:1;;9694:86;9067:773;-1:-1:-1;;;9067:773:1:o;9845:388::-;9913:6;9921;9974:2;9962:9;9953:7;9949:23;9945:32;9942:52;;;9990:1;9987;9980:12;9942:52;10029:9;10016:23;10048:31;10073:5;10048:31;:::i;:::-;10098:5;-1:-1:-1;10155:2:1;10140:18;;10127:32;10168:33;10127:32;10168:33;:::i;10238:481::-;10316:6;10324;10332;10385:2;10373:9;10364:7;10360:23;10356:32;10353:52;;;10401:1;10398;10391:12;10353:52;10424:28;10442:9;10424:28;:::i;:::-;10414:38;;10503:2;10492:9;10488:18;10475:32;10530:18;10522:6;10519:30;10516:50;;;10562:1;10559;10552:12;10516:50;10601:58;10651:7;10642:6;10631:9;10627:22;10601:58;:::i;:::-;10238:481;;10678:8;;-1:-1:-1;10575:84:1;;-1:-1:-1;;;;10238:481:1:o;10724:437::-;10803:1;10799:12;;;;10846;;;10867:61;;10921:4;10913:6;10909:17;10899:27;;10867:61;10974:2;10966:6;10963:14;10943:18;10940:38;10937:218;;;11011:77;11008:1;11001:88;11112:4;11109:1;11102:15;11140:4;11137:1;11130:15;10937:218;;10724:437;;;:::o;11166:869::-;11292:3;11321:1;11354:6;11348:13;11384:36;11410:9;11384:36;:::i;:::-;11439:1;11456:18;;;11483:162;;;;11659:1;11654:356;;;;11449:561;;11483:162;11531:66;11520:9;11516:82;11511:3;11504:95;11628:6;11623:3;11619:16;11612:23;;11483:162;;11654:356;11685:6;11682:1;11675:17;11715:4;11760:2;11757:1;11747:16;11785:1;11799:165;11813:6;11810:1;11807:13;11799:165;;;11891:14;;11878:11;;;11871:35;11934:16;;;;11828:10;;11799:165;;;11803:3;;;11993:6;11988:3;11984:16;11977:23;;11449:561;-1:-1:-1;12026:3:1;;11166:869;-1:-1:-1;;;;;;11166:869:1:o;12461:557::-;12718:6;12710;12706:19;12695:9;12688:38;12762:3;12757:2;12746:9;12742:18;12735:31;12669:4;12789:46;12830:3;12819:9;12815:19;12807:6;12789:46;:::i;:::-;12883:18;12875:6;12871:31;12866:2;12855:9;12851:18;12844:59;12951:9;12943:6;12939:22;12934:2;12923:9;12919:18;12912:50;12979:33;13005:6;12997;12979:33;:::i;:::-;12971:41;12461:557;-1:-1:-1;;;;;;;12461:557:1:o;13023:274::-;13152:3;13190:6;13184:13;13206:53;13252:6;13247:3;13240:4;13232:6;13228:17;13206:53;:::i;:::-;13275:16;;;;;13023:274;-1:-1:-1;;13023:274:1:o;17163:184::-;17215:77;17212:1;17205:88;17312:4;17309:1;17302:15;17336:4;17333:1;17326:15;17352:128;17392:3;17423:1;17419:6;17416:1;17413:13;17410:39;;;17429:18;;:::i;:::-;-1:-1:-1;17465:9:1;;17352:128::o;17844:195::-;17883:3;17914:66;17907:5;17904:77;17901:103;;;17984:18;;:::i;:::-;-1:-1:-1;18031:1:1;18020:13;;17844:195::o;18871:470::-;19050:3;19088:6;19082:13;19104:53;19150:6;19145:3;19138:4;19130:6;19126:17;19104:53;:::i;:::-;19220:13;;19179:16;;;;19242:57;19220:13;19179:16;19276:4;19264:17;;19242:57;:::i;:::-;19315:20;;18871:470;-1:-1:-1;;;;18871:470:1:o;20798:665::-;21079:6;21071;21067:19;21056:9;21049:38;21135:42;21127:6;21123:55;21118:2;21107:9;21103:18;21096:83;21215:3;21210:2;21199:9;21195:18;21188:31;21030:4;21242:46;21283:3;21272:9;21268:19;21260:6;21242:46;:::i;:::-;21338:6;21331:14;21324:22;21319:2;21308:9;21304:18;21297:50;21396:9;21388:6;21384:22;21378:3;21367:9;21363:19;21356:51;21424:33;21450:6;21442;21424:33;:::i;:::-;21416:41;20798:665;-1:-1:-1;;;;;;;;20798:665:1:o;21468:245::-;21547:6;21555;21608:2;21596:9;21587:7;21583:23;21579:32;21576:52;;;21624:1;21621;21614:12;21576:52;-1:-1:-1;;21647:16:1;;21703:2;21688:18;;;21682:25;21647:16;;21682:25;;-1:-1:-1;21468:245:1:o;22205:1542::-;22551:6;22543;22539:19;22528:9;22521:38;22502:4;22578:2;22616:3;22611:2;22600:9;22596:18;22589:31;22640:1;22673:6;22667:13;22703:36;22729:9;22703:36;:::i;:::-;22776:6;22770:3;22759:9;22755:19;22748:35;22802:3;22824:1;22856:2;22845:9;22841:18;22873:1;22868:180;;;;23062:1;23057:354;;;;22834:577;;22868:180;22931:66;22920:9;22916:82;22911:2;22900:9;22896:18;22889:110;23034:3;23023:9;23019:19;23012:26;;22868:180;;23057:354;23088:6;23085:1;23078:17;23136:2;23133:1;23123:16;23161:1;23175:180;23189:6;23186:1;23183:13;23175:180;;;23282:14;;23258:17;;;23254:26;;23247:50;23325:16;;;;23204:10;;23175:180;;;23379:17;;23375:26;;;-1:-1:-1;;22834:577:1;;;;;;23456:9;23451:3;23447:19;23442:2;23431:9;23427:18;23420:47;23490:30;23516:3;23508:6;23490:30;:::i;:::-;23476:44;;;23529:46;23571:2;23560:9;23556:18;23548:6;3848:42;3837:54;3825:67;;3771:127;23529:46;3848:42;3837:54;;23626:3;23611:19;;3825:67;23680:9;23672:6;23668:22;23662:3;23651:9;23647:19;23640:51;23708:33;23734:6;23726;23708:33;:::i;:::-;23700:41;22205:1542;-1:-1:-1;;;;;;;;;22205:1542:1:o;24159:271::-;24342:6;24334;24329:3;24316:33;24298:3;24368:16;;24393:13;;;24368:16;24159:271;-1:-1:-1;24159:271:1:o;24790:777::-;25057:6;25049;25045:19;25034:9;25027:38;25101:3;25096:2;25085:9;25081:18;25074:31;25008:4;25128:46;25169:3;25158:9;25154:19;25146:6;25128:46;:::i;:::-;25222:18;25214:6;25210:31;25205:2;25194:9;25190:18;25183:59;25290:9;25282:6;25278:22;25273:2;25262:9;25258:18;25251:50;25325:6;25317;25310:22;25379:6;25371;25366:2;25358:6;25354:15;25341:45;25432:1;25427:2;25418:6;25410;25406:19;25402:28;25395:39;25558:2;25488:66;25483:2;25475:6;25471:15;25467:88;25459:6;25455:101;25451:110;25443:118;;;24790:777;;;;;;;;:::o;25979:320::-;26066:6;26074;26127:2;26115:9;26106:7;26102:23;26098:32;26095:52;;;26143:1;26140;26133:12;26095:52;26175:9;26169:16;26194:31;26219:5;26194:31;:::i;:::-;26289:2;26274:18;;;;26268:25;26244:5;;26268:25;;-1:-1:-1;;;25979:320:1:o;27532:125::-;27572:4;27600:1;27597;27594:8;27591:34;;;27605:18;;:::i;:::-;-1:-1:-1;27642:9:1;;27532:125::o;28435:184::-;28487:77;28484:1;28477:88;28584:4;28581:1;28574:15;28608:4;28605:1;28598:15;28624:120;28664:1;28690;28680:35;;28695:18;;:::i;:::-;-1:-1:-1;28729:9:1;;28624:120::o;28749:112::-;28781:1;28807;28797:35;;28812:18;;:::i;:::-;-1:-1:-1;28846:9:1;;28749:112::o;28866:184::-;28918:77;28915:1;28908:88;29015:4;29012:1;29005:15;29039:4;29036:1;29029:15;29055:512;29249:4;29278:42;29359:2;29351:6;29347:15;29336:9;29329:34;29411:2;29403:6;29399:15;29394:2;29383:9;29379:18;29372:43;;29451:6;29446:2;29435:9;29431:18;29424:34;29494:3;29489:2;29478:9;29474:18;29467:31;29515:46;29556:3;29545:9;29541:19;29533:6;29515:46;:::i;:::-;29507:54;29055:512;-1:-1:-1;;;;;;29055:512:1:o;29572:249::-;29641:6;29694:2;29682:9;29673:7;29669:23;29665:32;29662:52;;;29710:1;29707;29700:12;29662:52;29742:9;29736:16;29761:30;29785:5;29761:30;:::i

Swarm Source

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