ETH Price: $2,973.36 (-0.69%)
Gas: 7 Gwei

Token

Punks Unchained (PU)
 

Overview

Max Total Supply

0 PU

Holders

654

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
bellx.eth
Balance
2 PU
0x83fd7410158a17e97d9753a54240521f8afc973d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

First 10k cc0 Punks Omnichain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PunksUnchained

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
*/

// 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/punk-eth.sol

pragma solidity ^0.8.7;

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

    uint256 gasForDestinationLzReceive = 350000;

    constructor(string memory baseURI_, address _layerZeroEndpoint)
        ERC721("Punks Unchained", "PU")
    {
        _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, "PunksUnchained: Max 2 NFTs per transaction");
        require(
            nextTokenId + numTokens <= MAX_MINT_ETHEREUM,
            "PunksUnchained: 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,
            "PunksUnchained: 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, "PunksUnchained: 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"}]

6080604052611970600c55612710600d5562055730600e553480156200002457600080fd5b5060405162003ab038038062003ab0833981016040819052620000479162000246565b6040518060400160405280600f81526020016e141d5b9adcc8155b98da185a5b9959608a1b81525060405180604001604052806002815260200161505560f01b815250620000a46200009e6200011960201b60201c565b6200011d565b8151620000b99060019060208501906200016d565b508051620000cf9060029060208401906200016d565b5050600a8054336001600160a01b031991821617909155600780549091166001600160a01b0384161790555081516200011090600b9060208501906200016d565b50505062000374565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200017b9062000337565b90600052602060002090601f0160209004810192826200019f5760008555620001ea565b82601f10620001ba57805160ff1916838001178555620001ea565b82800160010185558215620001ea579182015b82811115620001ea578251825591602001919060010190620001cd565b50620001f8929150620001fc565b5090565b5b80821115620001f85760008155600101620001fd565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200024157600080fd5b919050565b600080604083850312156200025a57600080fd5b82516001600160401b03808211156200027257600080fd5b818501915085601f8301126200028757600080fd5b8151818111156200029c576200029c62000213565b604051601f8201601f19908116603f01168101908382118183101715620002c757620002c762000213565b81604052828152602093508884848701011115620002e457600080fd5b600091505b82821015620003085784820184015181830185015290830190620002e9565b828211156200031a5760008484830101525b95506200032c91505085820162000229565b925050509250929050565b600181811c908216806200034c57607f821691505b602082108114156200036e57634e487b7160e01b600052602260045260246000fd5b50919050565b61372c80620003846000396000f3fe6080604052600436106101c15760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610558578063eb8d72b7146105ae578063ed88c68e146101e6578063f2fde38b146105ce57600080fd5b8063b88d4fde146104f2578063c87b56dd14610512578063cf89fa0314610532578063d1deba1f1461054557600080fd5b8063943fb872116100d1578063943fb8721461047057806395d89b4114610490578063a22cb465146104a5578063b2bdfa7b146104c557600080fd5b80637533d788146103ba5780638da5cb5b146103da5780638ee749121461040557600080fd5b80632e1a7d4d116101645780636352211e1161013e5780636352211e146103445780636ecd23061461036457806370a0823114610377578063715018a6146103a557600080fd5b80632e1a7d4d146102e457806342842e0e1461030457806355f804b31461032457600080fd5b8063081812fc116101a0578063081812fc1461023f578063095ea7b3146102845780631c37a822146102a457806323b872dd146102c457600080fd5b80621d3567146101c657806301ffc9a7146101e857806306fdde031461021d575b600080fd5b3480156101d257600080fd5b506101e66101e1366004612c95565b6105ee565b005b3480156101f457600080fd5b50610208610203366004612d48565b610832565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610917565b6040516102149190612ddb565b34801561024b57600080fd5b5061025f61025a366004612dee565b6109a9565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610214565b34801561029057600080fd5b506101e661029f366004612e29565b610a83565b3480156102b057600080fd5b506101e66102bf366004612c95565b610c10565b3480156102d057600080fd5b506101e66102df366004612e55565b610cab565b3480156102f057600080fd5b506101e66102ff366004612dee565b610d4c565b34801561031057600080fd5b506101e661031f366004612e55565b610ec1565b34801561033057600080fd5b506101e661033f366004612e96565b610edc565b34801561035057600080fd5b5061025f61035f366004612dee565b610f70565b6101e6610372366004612edf565b611022565b34801561038357600080fd5b50610397610392366004612f02565b611196565b604051908152602001610214565b3480156103b157600080fd5b506101e6611264565b3480156103c657600080fd5b506102326103d5366004612f1f565b6112f1565b3480156103e657600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661025f565b34801561041157600080fd5b5061045b610420366004612f3a565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610214565b34801561047c57600080fd5b506101e661048b366004612dee565b61138b565b34801561049c57600080fd5b50610232611411565b3480156104b157600080fd5b506101e66104c0366004612f91565b611420565b3480156104d157600080fd5b50600a5461025f9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104fe57600080fd5b506101e661050d366004612fcf565b61142b565b34801561051e57600080fd5b5061023261052d366004612dee565b6114cd565b6101e661054036600461302f565b6115dd565b6101e6610553366004613094565b6119bf565b34801561056457600080fd5b50610208610573366004613120565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105ba57600080fd5b506101e66105c936600461314e565b611bb1565b3480156105da57600080fd5b506101e66105e9366004612f02565b611c50565b60075473ffffffffffffffffffffffffffffffffffffffff16331461061257600080fd5b61ffff841660009081526009602052604090208054610630906131a1565b9050835114801561066f575061ffff841660009081526009602052604090819020905161065d91906131f5565b60405180910390208380519060200120145b610700576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290610742908790879087908790600401613285565b600060405180830381600087803b15801561075c57600080fd5b505af192505050801561076d575060015b61082c576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516107b791906132cf565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d90610823908690869086908690613285565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108c557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061091157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060018054610926906131a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610952906131a1565b801561099f5780601f106109745761010080835404028352916020019161099f565b820191906000526020600020905b81548152906001019060200180831161098257829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610a5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106f7565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a8e82610f70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b3373ffffffffffffffffffffffffffffffffffffffff82161480610b755750610b758133610573565b610c01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f7565b610c0b8383611d7d565b505050565b333014610c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e00000000000000000000000000000000000000000060648201526084016106f7565b61082c84848484611e1d565b610cb53382611e4a565b610d41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106f7565b610c0b838383611fba565b60005473ffffffffffffffffffffffffffffffffffffffff163314610dcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b600a5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610e27576040519150601f19603f3d011682016040523d82523d6000602084013e610e2c565b606091505b5050905080610ebd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f50756e6b73556e636861696e65643a204661696c656420746f2077697468647260448201527f617720457468657200000000000000000000000000000000000000000000000060648201526084016106f7565b5050565b610c0b8383836040518060200160405280600081525061142b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b8051610ebd90600b906020840190612a58565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106f7565b60038160ff16106110b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f50756e6b73556e636861696e65643a204d61782032204e46547320706572207460448201527f72616e73616374696f6e0000000000000000000000000000000000000000000060648201526084016106f7565b600d548160ff16600c546110c9919061331a565b1115611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f50756e6b73556e636861696e65643a204d696e7420657863656564732073757060448201527f706c79000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b61117433600c6000815461116a90613332565b9182905550612221565b8060ff16600214156111935761119333600c6000815461116a90613332565b50565b600073ffffffffffffffffffffffffffffffffffffffff821661123b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106f7565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff1633146112e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b6112ef600061223b565b565b6009602052600090815260409020805461130a906131a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611336906131a1565b80156113835780601f1061135857610100808354040283529160200191611383565b820191906000526020600020905b81548152906001019060200180831161136657829003601f168201915b505050505081565b60005473ffffffffffffffffffffffffffffffffffffffff16331461140c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b600e55565b606060028054610926906131a1565b610ebd3383836122b0565b6114353383611e4a565b6114c1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106f7565b61082c848484846123de565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106f7565b600061158b612481565b905060008151116115ab57604051806020016040528060008152506115d6565b806115b584612490565b6040516020016115c692919061336b565b6040516020818303038152906040525b9392505050565b6115e681610f70565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f736500000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b61ffff8216600090815260096020526040812080546116be906131a1565b90501161174d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c00000000000000000000000000000000000060648201526084016106f7565b611756816125c2565b60408051336020820152808201839052815180820383018152606082018352600e547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526007547f40a7bb1000000000000000000000000000000000000000000000000000000000909452909260019260009173ffffffffffffffffffffffffffffffffffffffff16906340a7bb109061181a908990309089908790899060a60161339a565b6040805180830381865afa158015611836573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185a91906133f9565b50905080341015611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152605360248201527f50756e6b73556e636861696e65643a206d73672e76616c7565206e6f7420656e60448201527f6f75676820746f20636f766572206d6573736167654665652e2053656e64206760648201527f617320666f72206d657373616765206665657300000000000000000000000000608482015260a4016106f7565b60075461ffff871660009081526009602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9093169263c5803100923492611985928c928b913391908b9060040161341d565b6000604051808303818588803b15801561199e57600080fd5b505af11580156119b2573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516119e09087906132cf565b908152604080516020928190038301902067ffffffffffffffff87166000908152925290206001810154909150611a99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f657373616765000000000000000000000000000000000000000000000000000060648201526084016106f7565b805482148015611ac3575080600101548383604051611ab9929190613535565b6040518091039020145b611b29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016106f7565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290611b779089908990899089908990600401613545565b600060405180830381600087803b158015611b9157600080fd5b505af1158015611ba5573d6000803e3d6000fd5b50505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b61ffff8316600090815260096020526040902061082c908383612adc565b60005473ffffffffffffffffffffffffffffffffffffffff163314611cd1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff8116611d74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106f7565b6111938161223b565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611dd782610f70565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611e3491906135c5565b91509150611e428282612221565b505050505050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16611efb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106f7565b6000611f0683610f70565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f7557508373ffffffffffffffffffffffffffffffffffffffff16611f5d846109a9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fb2575073ffffffffffffffffffffffffffffffffffffffff80821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611fda82610f70565b73ffffffffffffffffffffffffffffffffffffffff161461207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106f7565b73ffffffffffffffffffffffffffffffffffffffff821661211f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106f7565b61212a600082611d7d565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604081208054600192906121609084906135f3565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260046020526040812080546001929061219b90849061331a565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ebd82826040518060200160405280600081525061268f565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526006602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6123e9848484611fba565b6123f584848484612732565b61082c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b6060600b8054610926906131a1565b6060816124d057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156124fa57806124e481613332565b91506124f39050600a83613639565b91506124d4565b60008167ffffffffffffffff81111561251557612515612b9a565b6040519080825280601f01601f19166020018201604052801561253f576020820181803683370190505b5090505b8415611fb2576125546001836135f3565b9150612561600a8661364d565b61256c90603061331a565b60f81b81838151811061258157612581613661565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506125bb600a86613639565b9450612543565b60006125cd82610f70565b90506125da600083611d7d565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081208054600192906126109084906135f3565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6126998383612922565b6126a66000848484612732565b610c0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612917576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906127a9903390899088908890600401613690565b6020604051808303816000875af1925050508015612802575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526127ff918101906136d9565b60015b6128cc573d808015612830576040519150601f19603f3d011682016040523d82523d6000602084013e612835565b606091505b5080516128c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611fb2565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff821661299f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081208054600192906129d590849061331a565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612a64906131a1565b90600052602060002090601f016020900481019282612a865760008555612acc565b82601f10612a9f57805160ff1916838001178555612acc565b82800160010185558215612acc579182015b82811115612acc578251825591602001919060010190612ab1565b50612ad8929150612b6e565b5090565b828054612ae8906131a1565b90600052602060002090601f016020900481019282612b0a5760008555612acc565b82601f10612b41578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612acc565b82800160010185558215612acc579182015b82811115612acc578235825591602001919060010190612b53565b5b80821115612ad85760008155600101612b6f565b803561ffff81168114612b9557600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612be457612be4612b9a565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612c2a57612c2a612b9a565b81604052809350858152868686011115612c4357600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612c6e57600080fd5b6115d683833560208501612bc9565b803567ffffffffffffffff81168114612b9557600080fd5b60008060008060808587031215612cab57600080fd5b612cb485612b83565b9350602085013567ffffffffffffffff80821115612cd157600080fd5b612cdd88838901612c5d565b9450612ceb60408801612c7d565b93506060870135915080821115612d0157600080fd5b50612d0e87828801612c5d565b91505092959194509250565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461119357600080fd5b600060208284031215612d5a57600080fd5b81356115d681612d1a565b60005b83811015612d80578181015183820152602001612d68565b8381111561082c5750506000910152565b60008151808452612da9816020860160208601612d65565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006115d66020830184612d91565b600060208284031215612e0057600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461119357600080fd5b60008060408385031215612e3c57600080fd5b8235612e4781612e07565b946020939093013593505050565b600080600060608486031215612e6a57600080fd5b8335612e7581612e07565b92506020840135612e8581612e07565b929592945050506040919091013590565b600060208284031215612ea857600080fd5b813567ffffffffffffffff811115612ebf57600080fd5b8201601f81018413612ed057600080fd5b611fb284823560208401612bc9565b600060208284031215612ef157600080fd5b813560ff811681146115d657600080fd5b600060208284031215612f1457600080fd5b81356115d681612e07565b600060208284031215612f3157600080fd5b6115d682612b83565b600080600060608486031215612f4f57600080fd5b612f5884612b83565b9250602084013567ffffffffffffffff811115612f7457600080fd5b612f8086828701612c5d565b925050604084013590509250925092565b60008060408385031215612fa457600080fd5b8235612faf81612e07565b915060208301358015158114612fc457600080fd5b809150509250929050565b60008060008060808587031215612fe557600080fd5b8435612ff081612e07565b9350602085013561300081612e07565b925060408501359150606085013567ffffffffffffffff81111561302357600080fd5b612d0e87828801612c5d565b6000806040838503121561304257600080fd5b612e4783612b83565b60008083601f84011261305d57600080fd5b50813567ffffffffffffffff81111561307557600080fd5b60208301915083602082850101111561308d57600080fd5b9250929050565b6000806000806000608086880312156130ac57600080fd5b6130b586612b83565b9450602086013567ffffffffffffffff808211156130d257600080fd5b6130de89838a01612c5d565b95506130ec60408901612c7d565b9450606088013591508082111561310257600080fd5b5061310f8882890161304b565b969995985093965092949392505050565b6000806040838503121561313357600080fd5b823561313e81612e07565b91506020830135612fc481612e07565b60008060006040848603121561316357600080fd5b61316c84612b83565b9250602084013567ffffffffffffffff81111561318857600080fd5b6131948682870161304b565b9497909650939450505050565b600181811c908216806131b557607f821691505b602082108114156131ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000808354613203816131a1565b6001828116801561321b576001811461324a57613279565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00841687528287019450613279565b8760005260208060002060005b858110156132705781548a820152908401908201613257565b50505082870194505b50929695505050505050565b61ffff851681526080602082015260006132a26080830186612d91565b67ffffffffffffffff8516604084015282810360608401526132c48185612d91565b979650505050505050565b600082516132e1818460208701612d65565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561332d5761332d6132eb565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613364576133646132eb565b5060010190565b6000835161337d818460208801612d65565b835190830190613391818360208801612d65565b01949350505050565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a0604082015260006133d360a0830186612d91565b841515606084015282810360808401526133ed8185612d91565b98975050505050505050565b6000806040838503121561340c57600080fd5b505080516020909101519092909150565b61ffff871681526000602060c0818401526000885461343b816131a1565b8060c087015260e060018084166000811461345d5760018114613490576134be565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a0152610100890195506134be565b8d6000528660002060005b858110156134b65781548b820186015290830190880161349b565b8a0184019650505b505050505083810360408501526134d58189612d91565b9150506134fa606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a08401526135288185612d91565b9998505050505050505050565b8183823760009101908152919050565b61ffff861681526080602082015260006135626080830187612d91565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b600080604083850312156135d857600080fd5b82516135e381612e07565b6020939093015192949293505050565b600082821015613605576136056132eb565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826136485761364861360a565b500490565b60008261365c5761365c61360a565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526136cf6080830184612d91565b9695505050505050565b6000602082840312156136eb57600080fd5b81516115d681612d1a56fea2646970667358221220f78123394259f368ef6d1532903892134dc5bca51a2a79f775b90986a5c0e5d664736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e504d4438337365317146536234506f783755676f4e436d4b4c6f6b756a347a43347646785472577a62555a2f00000000000000000000

Deployed Bytecode

0x6080604052600436106101c15760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610558578063eb8d72b7146105ae578063ed88c68e146101e6578063f2fde38b146105ce57600080fd5b8063b88d4fde146104f2578063c87b56dd14610512578063cf89fa0314610532578063d1deba1f1461054557600080fd5b8063943fb872116100d1578063943fb8721461047057806395d89b4114610490578063a22cb465146104a5578063b2bdfa7b146104c557600080fd5b80637533d788146103ba5780638da5cb5b146103da5780638ee749121461040557600080fd5b80632e1a7d4d116101645780636352211e1161013e5780636352211e146103445780636ecd23061461036457806370a0823114610377578063715018a6146103a557600080fd5b80632e1a7d4d146102e457806342842e0e1461030457806355f804b31461032457600080fd5b8063081812fc116101a0578063081812fc1461023f578063095ea7b3146102845780631c37a822146102a457806323b872dd146102c457600080fd5b80621d3567146101c657806301ffc9a7146101e857806306fdde031461021d575b600080fd5b3480156101d257600080fd5b506101e66101e1366004612c95565b6105ee565b005b3480156101f457600080fd5b50610208610203366004612d48565b610832565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610917565b6040516102149190612ddb565b34801561024b57600080fd5b5061025f61025a366004612dee565b6109a9565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610214565b34801561029057600080fd5b506101e661029f366004612e29565b610a83565b3480156102b057600080fd5b506101e66102bf366004612c95565b610c10565b3480156102d057600080fd5b506101e66102df366004612e55565b610cab565b3480156102f057600080fd5b506101e66102ff366004612dee565b610d4c565b34801561031057600080fd5b506101e661031f366004612e55565b610ec1565b34801561033057600080fd5b506101e661033f366004612e96565b610edc565b34801561035057600080fd5b5061025f61035f366004612dee565b610f70565b6101e6610372366004612edf565b611022565b34801561038357600080fd5b50610397610392366004612f02565b611196565b604051908152602001610214565b3480156103b157600080fd5b506101e6611264565b3480156103c657600080fd5b506102326103d5366004612f1f565b6112f1565b3480156103e657600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661025f565b34801561041157600080fd5b5061045b610420366004612f3a565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610214565b34801561047c57600080fd5b506101e661048b366004612dee565b61138b565b34801561049c57600080fd5b50610232611411565b3480156104b157600080fd5b506101e66104c0366004612f91565b611420565b3480156104d157600080fd5b50600a5461025f9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104fe57600080fd5b506101e661050d366004612fcf565b61142b565b34801561051e57600080fd5b5061023261052d366004612dee565b6114cd565b6101e661054036600461302f565b6115dd565b6101e6610553366004613094565b6119bf565b34801561056457600080fd5b50610208610573366004613120565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105ba57600080fd5b506101e66105c936600461314e565b611bb1565b3480156105da57600080fd5b506101e66105e9366004612f02565b611c50565b60075473ffffffffffffffffffffffffffffffffffffffff16331461061257600080fd5b61ffff841660009081526009602052604090208054610630906131a1565b9050835114801561066f575061ffff841660009081526009602052604090819020905161065d91906131f5565b60405180910390208380519060200120145b610700576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290610742908790879087908790600401613285565b600060405180830381600087803b15801561075c57600080fd5b505af192505050801561076d575060015b61082c576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516107b791906132cf565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d90610823908690869086908690613285565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108c557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061091157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060018054610926906131a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610952906131a1565b801561099f5780601f106109745761010080835404028352916020019161099f565b820191906000526020600020905b81548152906001019060200180831161098257829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610a5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106f7565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a8e82610f70565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b3373ffffffffffffffffffffffffffffffffffffffff82161480610b755750610b758133610573565b610c01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f7565b610c0b8383611d7d565b505050565b333014610c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e00000000000000000000000000000000000000000060648201526084016106f7565b61082c84848484611e1d565b610cb53382611e4a565b610d41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106f7565b610c0b838383611fba565b60005473ffffffffffffffffffffffffffffffffffffffff163314610dcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b600a5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610e27576040519150601f19603f3d011682016040523d82523d6000602084013e610e2c565b606091505b5050905080610ebd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f50756e6b73556e636861696e65643a204661696c656420746f2077697468647260448201527f617720457468657200000000000000000000000000000000000000000000000060648201526084016106f7565b5050565b610c0b8383836040518060200160405280600081525061142b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b8051610ebd90600b906020840190612a58565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106f7565b60038160ff16106110b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f50756e6b73556e636861696e65643a204d61782032204e46547320706572207460448201527f72616e73616374696f6e0000000000000000000000000000000000000000000060648201526084016106f7565b600d548160ff16600c546110c9919061331a565b1115611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f50756e6b73556e636861696e65643a204d696e7420657863656564732073757060448201527f706c79000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b61117433600c6000815461116a90613332565b9182905550612221565b8060ff16600214156111935761119333600c6000815461116a90613332565b50565b600073ffffffffffffffffffffffffffffffffffffffff821661123b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106f7565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff1633146112e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b6112ef600061223b565b565b6009602052600090815260409020805461130a906131a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611336906131a1565b80156113835780601f1061135857610100808354040283529160200191611383565b820191906000526020600020905b81548152906001019060200180831161136657829003601f168201915b505050505081565b60005473ffffffffffffffffffffffffffffffffffffffff16331461140c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b600e55565b606060028054610926906131a1565b610ebd3383836122b0565b6114353383611e4a565b6114c1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106f7565b61082c848484846123de565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106f7565b600061158b612481565b905060008151116115ab57604051806020016040528060008152506115d6565b806115b584612490565b6040516020016115c692919061336b565b6040516020818303038152906040525b9392505050565b6115e681610f70565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f736500000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b61ffff8216600090815260096020526040812080546116be906131a1565b90501161174d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c00000000000000000000000000000000000060648201526084016106f7565b611756816125c2565b60408051336020820152808201839052815180820383018152606082018352600e547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526007547f40a7bb1000000000000000000000000000000000000000000000000000000000909452909260019260009173ffffffffffffffffffffffffffffffffffffffff16906340a7bb109061181a908990309089908790899060a60161339a565b6040805180830381865afa158015611836573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185a91906133f9565b50905080341015611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152605360248201527f50756e6b73556e636861696e65643a206d73672e76616c7565206e6f7420656e60448201527f6f75676820746f20636f766572206d6573736167654665652e2053656e64206760648201527f617320666f72206d657373616765206665657300000000000000000000000000608482015260a4016106f7565b60075461ffff871660009081526009602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9093169263c5803100923492611985928c928b913391908b9060040161341d565b6000604051808303818588803b15801561199e57600080fd5b505af11580156119b2573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516119e09087906132cf565b908152604080516020928190038301902067ffffffffffffffff87166000908152925290206001810154909150611a99576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f657373616765000000000000000000000000000000000000000000000000000060648201526084016106f7565b805482148015611ac3575080600101548383604051611ab9929190613535565b6040518091039020145b611b29576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016106f7565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290611b779089908990899089908990600401613545565b600060405180830381600087803b158015611b9157600080fd5b505af1158015611ba5573d6000803e3d6000fd5b50505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b61ffff8316600090815260096020526040902061082c908383612adc565b60005473ffffffffffffffffffffffffffffffffffffffff163314611cd1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff8116611d74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106f7565b6111938161223b565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611dd782610f70565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611e3491906135c5565b91509150611e428282612221565b505050505050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16611efb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106f7565b6000611f0683610f70565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f7557508373ffffffffffffffffffffffffffffffffffffffff16611f5d846109a9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fb2575073ffffffffffffffffffffffffffffffffffffffff80821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611fda82610f70565b73ffffffffffffffffffffffffffffffffffffffff161461207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106f7565b73ffffffffffffffffffffffffffffffffffffffff821661211f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106f7565b61212a600082611d7d565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604081208054600192906121609084906135f3565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260046020526040812080546001929061219b90849061331a565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ebd82826040518060200160405280600081525061268f565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526006602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6123e9848484611fba565b6123f584848484612732565b61082c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b6060600b8054610926906131a1565b6060816124d057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156124fa57806124e481613332565b91506124f39050600a83613639565b91506124d4565b60008167ffffffffffffffff81111561251557612515612b9a565b6040519080825280601f01601f19166020018201604052801561253f576020820181803683370190505b5090505b8415611fb2576125546001836135f3565b9150612561600a8661364d565b61256c90603061331a565b60f81b81838151811061258157612581613661565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506125bb600a86613639565b9450612543565b60006125cd82610f70565b90506125da600083611d7d565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081208054600192906126109084906135f3565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6126998383612922565b6126a66000848484612732565b610c0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612917576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906127a9903390899088908890600401613690565b6020604051808303816000875af1925050508015612802575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526127ff918101906136d9565b60015b6128cc573d808015612830576040519150601f19603f3d011682016040523d82523d6000602084013e612835565b606091505b5080516128c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611fb2565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff821661299f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081208054600192906129d590849061331a565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612a64906131a1565b90600052602060002090601f016020900481019282612a865760008555612acc565b82601f10612a9f57805160ff1916838001178555612acc565b82800160010185558215612acc579182015b82811115612acc578251825591602001919060010190612ab1565b50612ad8929150612b6e565b5090565b828054612ae8906131a1565b90600052602060002090601f016020900481019282612b0a5760008555612acc565b82601f10612b41578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612acc565b82800160010185558215612acc579182015b82811115612acc578235825591602001919060010190612b53565b5b80821115612ad85760008155600101612b6f565b803561ffff81168114612b9557600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612be457612be4612b9a565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612c2a57612c2a612b9a565b81604052809350858152868686011115612c4357600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612c6e57600080fd5b6115d683833560208501612bc9565b803567ffffffffffffffff81168114612b9557600080fd5b60008060008060808587031215612cab57600080fd5b612cb485612b83565b9350602085013567ffffffffffffffff80821115612cd157600080fd5b612cdd88838901612c5d565b9450612ceb60408801612c7d565b93506060870135915080821115612d0157600080fd5b50612d0e87828801612c5d565b91505092959194509250565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461119357600080fd5b600060208284031215612d5a57600080fd5b81356115d681612d1a565b60005b83811015612d80578181015183820152602001612d68565b8381111561082c5750506000910152565b60008151808452612da9816020860160208601612d65565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006115d66020830184612d91565b600060208284031215612e0057600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461119357600080fd5b60008060408385031215612e3c57600080fd5b8235612e4781612e07565b946020939093013593505050565b600080600060608486031215612e6a57600080fd5b8335612e7581612e07565b92506020840135612e8581612e07565b929592945050506040919091013590565b600060208284031215612ea857600080fd5b813567ffffffffffffffff811115612ebf57600080fd5b8201601f81018413612ed057600080fd5b611fb284823560208401612bc9565b600060208284031215612ef157600080fd5b813560ff811681146115d657600080fd5b600060208284031215612f1457600080fd5b81356115d681612e07565b600060208284031215612f3157600080fd5b6115d682612b83565b600080600060608486031215612f4f57600080fd5b612f5884612b83565b9250602084013567ffffffffffffffff811115612f7457600080fd5b612f8086828701612c5d565b925050604084013590509250925092565b60008060408385031215612fa457600080fd5b8235612faf81612e07565b915060208301358015158114612fc457600080fd5b809150509250929050565b60008060008060808587031215612fe557600080fd5b8435612ff081612e07565b9350602085013561300081612e07565b925060408501359150606085013567ffffffffffffffff81111561302357600080fd5b612d0e87828801612c5d565b6000806040838503121561304257600080fd5b612e4783612b83565b60008083601f84011261305d57600080fd5b50813567ffffffffffffffff81111561307557600080fd5b60208301915083602082850101111561308d57600080fd5b9250929050565b6000806000806000608086880312156130ac57600080fd5b6130b586612b83565b9450602086013567ffffffffffffffff808211156130d257600080fd5b6130de89838a01612c5d565b95506130ec60408901612c7d565b9450606088013591508082111561310257600080fd5b5061310f8882890161304b565b969995985093965092949392505050565b6000806040838503121561313357600080fd5b823561313e81612e07565b91506020830135612fc481612e07565b60008060006040848603121561316357600080fd5b61316c84612b83565b9250602084013567ffffffffffffffff81111561318857600080fd5b6131948682870161304b565b9497909650939450505050565b600181811c908216806131b557607f821691505b602082108114156131ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000808354613203816131a1565b6001828116801561321b576001811461324a57613279565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00841687528287019450613279565b8760005260208060002060005b858110156132705781548a820152908401908201613257565b50505082870194505b50929695505050505050565b61ffff851681526080602082015260006132a26080830186612d91565b67ffffffffffffffff8516604084015282810360608401526132c48185612d91565b979650505050505050565b600082516132e1818460208701612d65565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561332d5761332d6132eb565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613364576133646132eb565b5060010190565b6000835161337d818460208801612d65565b835190830190613391818360208801612d65565b01949350505050565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a0604082015260006133d360a0830186612d91565b841515606084015282810360808401526133ed8185612d91565b98975050505050505050565b6000806040838503121561340c57600080fd5b505080516020909101519092909150565b61ffff871681526000602060c0818401526000885461343b816131a1565b8060c087015260e060018084166000811461345d5760018114613490576134be565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a0152610100890195506134be565b8d6000528660002060005b858110156134b65781548b820186015290830190880161349b565b8a0184019650505b505050505083810360408501526134d58189612d91565b9150506134fa606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a08401526135288185612d91565b9998505050505050505050565b8183823760009101908152919050565b61ffff861681526080602082015260006135626080830187612d91565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b600080604083850312156135d857600080fd5b82516135e381612e07565b6020939093015192949293505050565b600082821015613605576136056132eb565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826136485761364861360a565b500490565b60008261365c5761365c61360a565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526136cf6080830184612d91565b9695505050505050565b6000602082840312156136eb57600080fd5b81516115d681612d1a56fea2646970667358221220f78123394259f368ef6d1532903892134dc5bca51a2a79f775b90986a5c0e5d664736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e504d4438337365317146536234506f783755676f4e436d4b4c6f6b756a347a43347646785472577a62555a2f00000000000000000000

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

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d4e504d4438337365317146536234506f783755676f4e43
Arg [4] : 6d4b4c6f6b756a347a43347646785472577a62555a2f00000000000000000000


Deployed Bytecode Sourcemap

50126:4127:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46751:1098;;;;;;;;;;-1:-1:-1;46751:1098:0;;;;;:::i;:::-;;:::i;:::-;;32816:355;;;;;;;;;;-1:-1:-1;32816:355:0;;;;;:::i;:::-;;:::i;:::-;;;2749:14:1;;2742:22;2724:41;;2712:2;2697:18;32816:355:0;;;;;;;;33985:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35678:308::-;;;;;;;;;;-1:-1:-1;35678:308:0;;;;;:::i;:::-;;:::i;:::-;;;4079:42:1;4067:55;;;4049:74;;4037:2;4022:18;35678:308:0;3903:226:1;35201:411:0;;;;;;;;;;-1:-1:-1;35201:411:0;;;;;:::i;:::-;;:::i;47857:435::-;;;;;;;;;;-1:-1:-1;47857:435:0;;;;;:::i;:::-;;:::i;36597:376::-;;;;;;;;;;-1:-1:-1;36597:376:0;;;;;:::i;:::-;;:::i;53226:189::-;;;;;;;;;;-1:-1:-1;53226:189:0;;;;;:::i;:::-;;:::i;37044:185::-;;;;;;;;;;-1:-1:-1;37044:185:0;;;;;:::i;:::-;;:::i;53000:90::-;;;;;;;;;;-1:-1:-1;53000:90:0;;;;;:::i;:::-;;:::i;33592:326::-;;;;;;;;;;-1:-1:-1;33592:326:0;;;;;:::i;:::-;;:::i;50734:415::-;;;;;;:::i;:::-;;:::i;33235:295::-;;;;;;;;;;-1:-1:-1;33235:295:0;;;;;:::i;:::-;;:::i;:::-;;;6201:25:1;;;6189:2;6174:18;33235:295:0;6055:177:1;13128:103:0;;;;;;;;;;;;;:::i;46550:51::-;;;;;;;;;;-1:-1:-1;46550:51:0;;;;;:::i;:::-;;:::i;12477:87::-;;;;;;;;;;-1:-1:-1;12523:7:0;12550:6;;;12477:87;;46441:102;;;;;;;;;;-1:-1:-1;46441:102:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7288:25:1;;;7344:2;7329:18;;7322:34;;;;7261:18;46441:102:0;7114:248:1;53499:128:0;;;;;;;;;;-1:-1:-1;53499:128:0;;;;;:::i;:::-;;:::i;34154:104::-;;;;;;;;;;;;;:::i;36058:187::-;;;;;;;;;;-1:-1:-1;36058:187:0;;;;;:::i;:::-;;:::i;50197:21::-;;;;;;;;;;-1:-1:-1;50197:21:0;;;;;;;;37300:365;;;;;;;;;;-1:-1:-1;37300:365:0;;;;;:::i;:::-;;:::i;34329:468::-;;;;;;;;;;-1:-1:-1;34329:468:0;;;;;:::i;:::-;;:::i;51288:1704::-;;;;;;:::i;:::-;;:::i;48952:916::-;;;;;;:::i;:::-;;:::i;36316:214::-;;;;;;;;;;-1:-1:-1;36316:214:0;;;;;:::i;:::-;36487:25;;;;36458:4;36487:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36316:214;49876:181;;;;;;;;;;-1:-1:-1;49876:181:0;;;;;:::i;:::-;;:::i;13386:238::-;;;;;;;;;;-1:-1:-1;13386:238:0;;;;;:::i;:::-;;:::i;46751:1098::-;46956:8;;;;46934:10;:31;46926:40;;;;;;47091:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;47069:11;:18;:61;:168;;;;-1:-1:-1;47204:32:0;;;;;;;:19;:32;;;;;;;47194:43;;;;47204:32;47194:43;:::i;:::-;;;;;;;;47161:11;47151:22;;;;;;:86;47069:168;47047:270;;;;;;;12242:2:1;47047: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;;47047:270:0;;;;;;;;;47445:60;;;;;:4;;:16;;:60;;47462:11;;47475;;47488:6;;47496:8;;47445:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47441:401;;47652:101;;;;;;;;47685:8;:15;47652:101;;;;47729:8;47719:19;;;;;;47652:101;;;47601:14;:27;47616:11;47601:27;;;;;;;;;;;;;;;47629:11;47601:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:48;;;;;;;;;;;;;;:152;;;;;;;;;;;;;;;47773:57;;;;47787:11;;47800;;47642:6;;47821:8;;47773:57;:::i;:::-;;;;;;;;47441:401;46751:1098;;;;:::o;32816:355::-;32963:4;33005:40;;;33020:25;33005:40;;:105;;-1:-1:-1;33062:48:0;;;33077:33;33062:48;33005:105;:158;;;-1:-1:-1;25577:25:0;25562:40;;;;33127:36;32985:178;32816:355;-1:-1:-1;;32816:355:0:o;33985:100::-;34039:13;34072:5;34065:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33985:100;:::o;35678:308::-;35799:7;39301:16;;;:7;:16;;;;;;:30;:16;35824:110;;;;;;;13504:2:1;35824: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;;35824:110:0;13302:408:1;35824:110:0;-1:-1:-1;35954:24:0;;;;:15;:24;;;;;;;;;35678:308::o;35201:411::-;35282:13;35298:23;35313:7;35298:14;:23::i;:::-;35282:39;;35346:5;35340:11;;:2;:11;;;;35332:57;;;;;;;13917:2:1;35332: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;;35332:57:0;13715:397:1;35332:57:0;11260:10;35424:21;;;;;:62;;-1:-1:-1;35449:37:0;35466:5;11260:10;36316:214;:::i;35449:37::-;35402:168;;;;;;;14319:2:1;35402: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;;35402:168:0;14117:420:1;35402:168:0;35583:21;35592:2;35596:7;35583:8;:21::i;:::-;35271:341;35201:411;;:::o;47857:435::-;48083:10;48105:4;48083:27;48061:120;;;;;;;14744:2:1;48061: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;;48061:120:0;14542:407:1;48061:120:0;48230:54;48241:11;48254;48267:6;48275:8;48230:10;:54::i;36597:376::-;36806:41;11260:10;36839:7;36806:18;:41::i;:::-;36784:140;;;;;;;15156:2:1;36784: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;;36784:140:0;14954:413:1;36784:140:0;36937:28;36947:4;36953:2;36957:7;36937:9;:28::i;53226:189::-;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15574:2:1;12689:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12689:68:0;15372:356:1;12689:68:0;53311:6:::1;::::0;53303:36:::1;::::0;53288:9:::1;::::0;53311:6:::1;;::::0;53331:3;;53288:9;53303:36;53288:9;53303:36;53331:3;53311:6;53303:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53287:52;;;53358:4;53350:57;;;::::0;::::1;::::0;;16145:2:1;53350:57:0::1;::::0;::::1;16127:21:1::0;16184:2;16164:18;;;16157:30;16223:34;16203:18;;;16196:62;16294:10;16274:18;;;16267:38;16322:19;;53350:57:0::1;15943:404:1::0;53350:57:0::1;53276:139;53226:189:::0;:::o;37044:185::-;37182:39;37199:4;37205:2;37209:7;37182:39;;;;;;;;;;;;:16;:39::i;53000:90::-;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15574:2:1;12689:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12689:68:0;15372:356:1;12689:68:0;53069:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;33592:326::-:0;33709:7;33750:16;;;:7;:16;;;;;;;;33799:19;33777:110;;;;;;;16554:2:1;33777:110:0;;;16536:21:1;16593:2;16573:18;;;16566:30;16632:34;16612:18;;;16605:62;16703:11;16683:18;;;16676:39;16732:19;;33777:110:0;16352:405:1;50734:415:0;50813:1;50801:9;:13;;;50793:68;;;;;;;16964:2:1;50793:68:0;;;16946:21:1;17003:2;16983:18;;;16976:30;17042:34;17022:18;;;17015:62;17113:12;17093:18;;;17086:40;17143:19;;50793:68:0;16762:406:1;50793:68:0;50921:17;;50908:9;50894:23;;:11;;:23;;;;:::i;:::-;:44;;50872:129;;;;;;;17697:2:1;50872:129:0;;;17679:21:1;17736:2;17716:18;;;17709:30;17775:34;17755:18;;;17748:62;17846:5;17826:18;;;17819:33;17869:19;;50872:129:0;17495:399:1;50872:129:0;51012:36;51022:10;51036:11;;51034:13;;;;;:::i;:::-;;;;;-1:-1:-1;51012:9:0;:36::i;:::-;51063:9;:14;;51076:1;51063:14;51059:83;;;51094:36;51104:10;51118:11;;51116:13;;;;;:::i;51094:36::-;50734:415;:::o;33235:295::-;33352:7;33399:19;;;33377:111;;;;;;;18301:2:1;33377:111:0;;;18283:21:1;18340:2;18320:18;;;18313:30;18379:34;18359:18;;;18352:62;18450:12;18430:18;;;18423:40;18480:19;;33377:111:0;18099:406:1;33377:111:0;-1:-1:-1;33506:16:0;;;;;;:9;:16;;;;;;;33235:295::o;13128:103::-;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15574:2:1;12689:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12689:68:0;15372:356:1;12689:68:0;13193:30:::1;13220:1;13193:18;:30::i;:::-;13128:103::o:0;46550:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53499:128::-;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15574:2:1;12689:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12689:68:0;15372:356:1;12689:68:0;53584:26:::1;:35:::0;53499:128::o;34154:104::-;34210:13;34243:7;34236:14;;;;;:::i;36058:187::-;36185:52;11260:10;36218:8;36228;36185:18;:52::i;37300:365::-;37489:41;11260:10;37522:7;37489:18;:41::i;:::-;37467:140;;;;;;;15156:2:1;37467: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;;37467:140:0;14954:413:1;37467:140:0;37618:39;37632:4;37638:2;37642:7;37651:5;37618:13;:39::i;34329:468::-;39277:4;39301:16;;;:7;:16;;;;;;34447:13;;39301:30;:16;34478:113;;;;;;;18712:2:1;34478:113:0;;;18694:21:1;18751:2;18731:18;;;18724:30;18790:34;18770:18;;;18763:62;18861:17;18841:18;;;18834:45;18896:19;;34478:113:0;18510:411:1;34478:113:0;34604:21;34628:10;:8;:10::i;:::-;34604:34;;34693:1;34675:7;34669:21;:25;:120;;;;;;;;;;;;;;;;;34738:7;34747:18;:7;:16;:18::i;:::-;34721:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34669:120;34649:140;34329:468;-1:-1:-1;;;34329:468:0:o;51288:1704::-;51408:16;51416:7;51408;:16::i;:::-;51394:30;;:10;:30;;;51372:114;;;;;;;19603:2:1;51372:114:0;;;19585:21:1;19642:2;19622:18;;;19615:30;19681:34;19661:18;;;19654:62;19752:4;19732:18;;;19725:32;19774:19;;51372:114:0;19401:398:1;51372:114:0;51519:29;;;51558:1;51519:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;51497:136;;;;;;;20006:2:1;51497:136:0;;;19988:21:1;20045:2;20025:18;;;20018:30;20084:34;20064:18;;;20057:62;20155:16;20135:18;;;20128:44;20189:19;;51497:136:0;19804:410:1;51497:136:0;51713:14;51719:7;51713:5;:14::i;:::-;51824:31;;;51835:10;51824:31;;;20393:74:1;20483:18;;;20476:34;;;51824:31:0;;;;;;;;;20366:18:1;;;51824:31:0;;52052:26;;20692:16:1;51999:90:0;;;20676:102:1;20794:11;;;;20787:27;;;;51999:90:0;;;;;;;;;;20830:12:1;;;51999:90:0;;;;52268:8;;:153;;;;51824:31;;51958:1;;-1:-1:-1;;52268:8:0;;;:21;;:153;;52304:8;;52335:4;;51824:31;;-1:-1:-1;;51999:90:0;;52268:153;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52243:178;;;52469:10;52456:9;:23;;52434:156;;;;;;;21975:2:1;52434:156:0;;;21957:21:1;22014:2;21994:18;;;21987:30;22053:34;22033:18;;;22026:62;22124:34;22104:18;;;22097:62;22196:21;22175:19;;;22168:50;22235:19;;52434:156:0;21773:487:1;52434:156:0;52603:8;;52695:29;;;52603:8;52695:29;;;:19;:29;;;;;;52603:381;;;;;:8;;;;;:13;;52624:9;;52603:381;;52649:8;;52778:7;;52834:10;;52603:8;52944:13;;52603:381;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51361:1631;;;;51288:1704;;:::o;48952:916::-;49211:27;;;49176:32;49211:27;;;:14;:27;;;;;;:64;;;;49253:11;;49211:64;:::i;:::-;;;;;;;;;;;;;;;;:72;;;;;;;;;;;49316:21;;;;49211:72;;-1:-1:-1;49294:123:0;;;;;;;24014:2:1;49294:123:0;;;23996:21:1;24053:2;24033:18;;;24026:30;24092:34;24072:18;;;24065:62;24163:8;24143:18;;;24136:36;24189:19;;49294:123:0;23812:402:1;49294:123:0;49469:23;;49450:42;;:107;;;;;49536:9;:21;;;49523:8;;49513:19;;;;;;;:::i;:::-;;;;;;;;:44;49450:107;49428:183;;;;;;;24697:2:1;49428:183:0;;;24679:21:1;24736:2;24716:18;;;24709:30;24775:28;24755:18;;;24748:56;24821:18;;49428:183:0;24495:350:1;49428:183:0;49685:1;49659:27;;;49697:21;;;:34;49800:60;;;;;:4;;:16;;:60;;49817:11;;49830;;49843:6;;49851:8;;;;49800:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49120:748;48952:916;;;;;:::o;49876:181::-;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15574:2:1;12689:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12689:68:0;15372:356:1;12689:68:0;50003:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;50035:14;;50003:46:::1;:::i;13386:238::-:0;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15574:2:1;12689:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12689:68:0;15372:356:1;12689:68:0;13489:22:::1;::::0;::::1;13467:110;;;::::0;::::1;::::0;;25834:2:1;13467:110:0::1;::::0;::::1;25816:21:1::0;25873:2;25853:18;;;25846:30;25912:34;25892:18;;;25885:62;25983:8;25963:18;;;25956:36;26009:19;;13467:110:0::1;25632:402:1::0;13467:110:0::1;13588:28;13607:8;13588:18;:28::i;43266:174::-:0;43341:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;43395:23;43341:24;43395:14;:23::i;:::-;43386:46;;;;;;;;;;;;43266:174;;:::o;53718:424::-;53914:14;53930:15;53974:8;53949:77;;;;;;;;;;;;:::i;:::-;53913:113;;;;54108:26;54118:6;54126:7;54108:9;:26::i;:::-;53883:259;;53718:424;;;;:::o;39506:452::-;39635:4;39301:16;;;:7;:16;;;;;;:30;:16;39657:110;;;;;;;26566:2:1;39657:110:0;;;26548:21:1;26605:2;26585:18;;;26578:30;26644:34;26624:18;;;26617:62;26715:14;26695:18;;;26688:42;26747:19;;39657:110:0;26364:408:1;39657:110:0;39778:13;39794:23;39809:7;39794:14;:23::i;:::-;39778:39;;39847:5;39836:16;;:7;:16;;;:64;;;;39893:7;39869:31;;:20;39881:7;39869:11;:20::i;:::-;:31;;;39836:64;:113;;;-1:-1:-1;36487:25:0;;;;36458:4;36487:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39917:32;39828:122;39506:452;-1:-1:-1;;;;39506:452:0:o;42533:615::-;42706:4;42679:31;;:23;42694:7;42679:14;:23::i;:::-;:31;;;42657:122;;;;;;;26979:2:1;42657:122:0;;;26961:21:1;27018:2;26998:18;;;26991:30;27057:34;27037:18;;;27030:62;27128:11;27108:18;;;27101:39;27157:19;;42657:122:0;26777:405:1;42657:122:0;42798:16;;;42790:65;;;;;;;27389:2:1;42790:65:0;;;27371:21:1;27428:2;27408:18;;;27401:30;27467:34;27447:18;;;27440:62;27538:6;27518:18;;;27511:34;27562:19;;42790:65:0;27187:400:1;42790:65:0;42972:29;42989:1;42993:7;42972:8;:29::i;:::-;43014:15;;;;;;;:9;:15;;;;;:20;;43033:1;;43014:15;:20;;43033:1;;43014:20;:::i;:::-;;;;-1:-1:-1;;43045:13:0;;;;;;;:9;:13;;;;;:18;;43062:1;;43045:13;:18;;43062:1;;43045:18;:::i;:::-;;;;-1:-1:-1;;43074:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;43113:27;;43074:16;;43113:27;;;;;;;42533:615;;;:::o;40300:110::-;40376:26;40386:2;40390:7;40376:26;;;;;;;;;;;;:9;:26::i;13784:191::-;13858:16;13877:6;;;13894:17;;;;;;;;;;13927:40;;13877:6;;;;;;;13927:40;;13858:16;13927:40;13847:128;13784:191;:::o;43582:315::-;43737:8;43728:17;;:5;:17;;;;43720:55;;;;;;;27924:2:1;43720:55:0;;;27906:21:1;27963:2;27943:18;;;27936:30;28002:27;27982:18;;;27975:55;28047:18;;43720:55:0;27722:349:1;43720:55:0;43786:25;;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;43848:41;;2724::1;;;43848::0;;2697:18:1;43848:41:0;;;;;;;43582:315;;;:::o;38547:352::-;38704:28;38714:4;38720:2;38724:7;38704:9;:28::i;:::-;38765:48;38788:4;38794:2;38798:7;38807:5;38765:22;:48::i;:::-;38743:148;;;;;;;28278:2:1;38743:148:0;;;28260:21:1;28317:2;28297:18;;;28290:30;28356:34;28336:18;;;28329:62;28427:20;28407:18;;;28400:48;28465:19;;38743:148:0;28076:414:1;54150:100:0;54202:13;54235:7;54228:14;;;;;:::i;8712:723::-;8768:13;8989:10;8985:53;;-1:-1:-1;;9016:10:0;;;;;;;;;;;;;;;;;;8712:723::o;8985:53::-;9063:5;9048:12;9104:78;9111:9;;9104:78;;9137:8;;;;:::i;:::-;;-1:-1:-1;9160:10:0;;-1:-1:-1;9168:2:0;9160:10;;:::i;:::-;;;9104:78;;;9192:19;9224:6;9214:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9214:17:0;;9192:39;;9242:154;9249:10;;9242:154;;9276:11;9286:1;9276:11;;:::i;:::-;;-1:-1:-1;9345:10:0;9353:2;9345:5;:10;:::i;:::-;9332:24;;:2;:24;:::i;:::-;9319:39;;9302:6;9309;9302:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;9373:11:0;9382:2;9373:11;;:::i;:::-;;;9242:154;;41836:360;41896:13;41912:23;41927:7;41912:14;:23::i;:::-;41896:39;;42037:29;42054:1;42058:7;42037:8;:29::i;:::-;42079:16;;;;;;;:9;:16;;;;;:21;;42099:1;;42079:16;:21;;42099:1;;42079:21;:::i;:::-;;;;-1:-1:-1;;42118:16:0;;;;:7;:16;;;;;;42111:23;;;;;;42152:36;42126:7;;42118:16;42111:23;42152:36;;;;;42118:16;;42152:36;41885:311;41836:360;:::o;40637:321::-;40767:18;40773:2;40777:7;40767:5;:18::i;:::-;40818:54;40849:1;40853:2;40857:7;40866:5;40818:22;:54::i;:::-;40796:154;;;;;;;28278:2:1;40796:154:0;;;28260:21:1;28317:2;28297:18;;;28290:30;28356:34;28336:18;;;28329:62;28427:20;28407:18;;;28400:48;28465:19;;40796:154:0;28076:414:1;44462:980:0;44617:4;44638:13;;;15123:20;15171:8;44634:801;;44691:175;;;;;:36;;;;;;:175;;11260:10;;44785:4;;44812:7;;44842:5;;44691:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44691:175:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44670:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45049:13:0;;45045:320;;45092:108;;;;;28278:2:1;45092:108:0;;;28260:21:1;28317:2;28297:18;;;28290:30;28356:34;28336:18;;;28329:62;28427:20;28407:18;;;28400:48;28465:19;;45092:108:0;28076:414:1;45045:320:0;45315:6;45309:13;45300:6;45296:2;45292:15;45285:38;44670:710;44930:51;;44940:41;44930:51;;-1:-1:-1;44923:58:0;;44634:801;-1:-1:-1;45419:4:0;44462:980;;;;;;:::o;41294:313::-;41374:16;;;41366:61;;;;;;;30088:2:1;41366:61:0;;;30070:21:1;;;30107:18;;;30100:30;30166:34;30146:18;;;30139:62;30218:18;;41366:61:0;29886:356:1;41366:61:0;41498:13;;;;;;;:9;:13;;;;;:18;;41515:1;;41498:13;:18;;41515:1;;41498:18;:::i;:::-;;;;-1:-1:-1;;41527:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;41566:33;;41527:16;;;41566:33;;41527:16;;41566:33;41294: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;17173:184::-;17225:77;17222:1;17215:88;17322:4;17319:1;17312:15;17346:4;17343:1;17336:15;17362:128;17402:3;17433:1;17429:6;17426:1;17423:13;17420:39;;;17439:18;;:::i;:::-;-1:-1:-1;17475:9:1;;17362:128::o;17899:195::-;17938:3;17969:66;17962:5;17959:77;17956:103;;;18039:18;;:::i;:::-;-1:-1:-1;18086:1:1;18075:13;;17899:195::o;18926:470::-;19105:3;19143:6;19137:13;19159:53;19205:6;19200:3;19193:4;19185:6;19181:17;19159:53;:::i;:::-;19275:13;;19234:16;;;;19297:57;19275:13;19234:16;19331:4;19319:17;;19297:57;:::i;:::-;19370:20;;18926:470;-1:-1:-1;;;;18926:470:1:o;20853:665::-;21134:6;21126;21122:19;21111:9;21104:38;21190:42;21182:6;21178:55;21173:2;21162:9;21158:18;21151:83;21270:3;21265:2;21254:9;21250:18;21243:31;21085:4;21297:46;21338:3;21327:9;21323:19;21315:6;21297:46;:::i;:::-;21393:6;21386:14;21379:22;21374:2;21363:9;21359:18;21352:50;21451:9;21443:6;21439:22;21433:3;21422:9;21418:19;21411:51;21479:33;21505:6;21497;21479:33;:::i;:::-;21471:41;20853:665;-1:-1:-1;;;;;;;;20853:665:1:o;21523:245::-;21602:6;21610;21663:2;21651:9;21642:7;21638:23;21634:32;21631:52;;;21679:1;21676;21669:12;21631:52;-1:-1:-1;;21702:16:1;;21758:2;21743:18;;;21737:25;21702:16;;21737:25;;-1:-1:-1;21523:245:1:o;22265:1542::-;22611:6;22603;22599:19;22588:9;22581:38;22562:4;22638:2;22676:3;22671:2;22660:9;22656:18;22649:31;22700:1;22733:6;22727:13;22763:36;22789:9;22763:36;:::i;:::-;22836:6;22830:3;22819:9;22815:19;22808:35;22862:3;22884:1;22916:2;22905:9;22901:18;22933:1;22928:180;;;;23122:1;23117:354;;;;22894:577;;22928:180;22991:66;22980:9;22976:82;22971:2;22960:9;22956:18;22949:110;23094:3;23083:9;23079:19;23072:26;;22928:180;;23117:354;23148:6;23145:1;23138:17;23196:2;23193:1;23183:16;23221:1;23235:180;23249:6;23246:1;23243:13;23235:180;;;23342:14;;23318:17;;;23314:26;;23307:50;23385:16;;;;23264:10;;23235:180;;;23439:17;;23435:26;;;-1:-1:-1;;22894:577:1;;;;;;23516:9;23511:3;23507:19;23502:2;23491:9;23487:18;23480:47;23550:30;23576:3;23568:6;23550:30;:::i;:::-;23536:44;;;23589:46;23631:2;23620:9;23616:18;23608:6;3848:42;3837:54;3825:67;;3771:127;23589:46;3848:42;3837:54;;23686:3;23671:19;;3825:67;23740:9;23732:6;23728:22;23722:3;23711:9;23707:19;23700:51;23768:33;23794:6;23786;23768:33;:::i;:::-;23760:41;22265:1542;-1:-1:-1;;;;;;;;;22265:1542:1:o;24219:271::-;24402:6;24394;24389:3;24376:33;24358:3;24428:16;;24453:13;;;24428:16;24219:271;-1:-1:-1;24219:271:1:o;24850:777::-;25117:6;25109;25105:19;25094:9;25087:38;25161:3;25156:2;25145:9;25141:18;25134:31;25068:4;25188:46;25229:3;25218:9;25214:19;25206:6;25188:46;:::i;:::-;25282:18;25274:6;25270:31;25265:2;25254:9;25250:18;25243:59;25350:9;25342:6;25338:22;25333:2;25322:9;25318:18;25311:50;25385:6;25377;25370:22;25439:6;25431;25426:2;25418:6;25414:15;25401:45;25492:1;25487:2;25478:6;25470;25466:19;25462:28;25455:39;25618:2;25548:66;25543:2;25535:6;25531:15;25527:88;25519:6;25515:101;25511:110;25503:118;;;24850:777;;;;;;;;:::o;26039:320::-;26126:6;26134;26187:2;26175:9;26166:7;26162:23;26158:32;26155:52;;;26203:1;26200;26193:12;26155:52;26235:9;26229:16;26254:31;26279:5;26254:31;:::i;:::-;26349:2;26334:18;;;;26328:25;26304:5;;26328:25;;-1:-1:-1;;;26039:320:1:o;27592:125::-;27632:4;27660:1;27657;27654:8;27651:34;;;27665:18;;:::i;:::-;-1:-1:-1;27702:9:1;;27592:125::o;28495:184::-;28547:77;28544:1;28537:88;28644:4;28641:1;28634:15;28668:4;28665:1;28658:15;28684:120;28724:1;28750;28740:35;;28755:18;;:::i;:::-;-1:-1:-1;28789:9:1;;28684:120::o;28809:112::-;28841:1;28867;28857:35;;28872:18;;:::i;:::-;-1:-1:-1;28906:9:1;;28809:112::o;28926:184::-;28978:77;28975:1;28968:88;29075:4;29072:1;29065:15;29099:4;29096:1;29089:15;29115:512;29309:4;29338:42;29419:2;29411:6;29407:15;29396:9;29389:34;29471:2;29463:6;29459:15;29454:2;29443:9;29439:18;29432:43;;29511:6;29506:2;29495:9;29491:18;29484:34;29554:3;29549:2;29538:9;29534:18;29527:31;29575:46;29616:3;29605:9;29601:19;29593:6;29575:46;:::i;:::-;29567:54;29115:512;-1:-1:-1;;;;;;29115:512:1:o;29632:249::-;29701:6;29754:2;29742:9;29733:7;29729:23;29725:32;29722:52;;;29770:1;29767;29760:12;29722:52;29802:9;29796:16;29821:30;29845:5;29821:30;:::i

Swarm Source

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