ETH Price: $3,278.52 (-0.04%)
Gas: 9 Gwei

Token

ponzu (sushi)
 

Overview

Max Total Supply

0 sushi

Holders

129

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 sushi
0xe4b4abd64d32e657629db8fb52c873b328e38299
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ponzu_eth

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// 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(), ".json"))
                : "";
    }

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

//  _  (`-')           <-. (`-')_  (`-')             
//  \-.(OO )     .->      \( OO) ) ( OO).->    .->   
//  _.'    \(`-')----. ,--./ ,--/,(_/----.,--.(,--.  
// (_...--''( OO).-.  '|   \ |  ||__,    ||  | |(`-')
// |  |_.' |( _) | |  ||  . '|  |)(_/   / |  | |(OO )
// |  .___.' \|  |)|  ||  |\    | .'  .'_ |  | | |  \
// |  |       '  '-'  '|  | \   ||       |\  '-'(_ .'
// `--'        `-----' `--'  `--'`-------' `-----'   


pragma solidity ^0.8.7;

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

    uint256 gasForDestinationLzReceive = 350000;

    constructor(string memory baseURI_, address _layerZeroEndpoint)
        ERC721("ponzu", "sushi")
    {
        _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 cook(uint8 numTokens) external payable {
        require(numTokens < 3, "ponzu: Max 2 NFTs per transaction");
        require(
            nextTokenId + numTokens <= MAX_MINT_ETHEREUM,
            "ponzu: Mint exceeds supply"
        );
        _safeMint(msg.sender, ++nextTokenId);
        if (numTokens == 2) {
            _safeMint(msg.sender, ++nextTokenId);
        }
    }

    
    function mint() external payable {
        // Trick bots into a fake mint
    }

    // 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,
            "ponzu: 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, "ponzu: Failed to withdraw! zz");
    }

    // 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":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"cook","outputs":[],"stateMutability":"payable","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":[],"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"}]

60806040526000600c55610309600d5562055730600e553480156200002357600080fd5b5060405162002d7438038062002d74833981016040819052620000469162000228565b60405180604001604052806005815260200164706f6e7a7560d81b81525060405180604001604052806005815260200164737573686960d81b8152506200009c620000966200011160201b60201c565b62000115565b8151620000b190600190602085019062000165565b508051620000c790600290602084019062000165565b5050600a8054336001600160a01b031991821617909155600780549091166001600160a01b0384161790555081516200010890600b90602085019062000165565b5050506200036c565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001739062000319565b90600052602060002090601f016020900481019282620001975760008555620001e2565b82601f10620001b257805160ff1916838001178555620001e2565b82800160010185558215620001e2579182015b82811115620001e2578251825591602001919060010190620001c5565b50620001f0929150620001f4565b5090565b5b80821115620001f05760008155600101620001f5565b80516001600160a01b03811681146200022357600080fd5b919050565b600080604083850312156200023c57600080fd5b82516001600160401b03808211156200025457600080fd5b818501915085601f8301126200026957600080fd5b8151818111156200027e576200027e62000356565b604051601f8201601f19908116603f01168101908382118183101715620002a957620002a962000356565b81604052828152602093508884848701011115620002c657600080fd5b600091505b82821015620002ea5784820184015181830185015290830190620002cb565b82821115620002fc5760008484830101525b95506200030e9150508582016200020b565b925050509250929050565b600181811c908216806200032e57607f821691505b602082108114156200035057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6129f8806200037c6000396000f3fe6080604052600436106101cc5760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c51461053c578063eb8d72b714610585578063ed88c68e146101f1578063f2fde38b146105a557600080fd5b8063b88d4fde146104d6578063c87b56dd146104f6578063cf89fa0314610516578063d1deba1f1461052957600080fd5b8063943fb872116100d1578063943fb8721461046157806395d89b4114610481578063a22cb46514610496578063b2bdfa7b146104b657600080fd5b80637533d788146103b85780638da5cb5b146103d85780638ee74912146103f657600080fd5b806323b872dd1161016f57806355f804b31161013e57806355f804b3146103355780636352211e1461035557806370a0823114610375578063715018a6146103a357600080fd5b806323b872dd146102c25780632e1a7d4d146102e257806342842e0e146103025780634a6c4b5a1461032257600080fd5b8063081812fc116101ab578063081812fc1461024a578063095ea7b3146102825780631249c58b146101f15780631c37a822146102a257600080fd5b80621d3567146101d157806301ffc9a7146101f357806306fdde0314610228575b600080fd5b3480156101dd57600080fd5b506101f16101ec366004612363565b6105c5565b005b3480156101ff57600080fd5b5061021361020e366004612193565b6107bf565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610811565b60405161021f919061259d565b34801561025657600080fd5b5061026a6102653660046123f7565b6108a3565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506101f161029d366004612167565b610938565b3480156102ae57600080fd5b506101f16102bd366004612363565b610a50565b3480156102ce57600080fd5b506101f16102dd366004612088565b610abf565b3480156102ee57600080fd5b506101f16102fd3660046123f7565b610af0565b34801561030e57600080fd5b506101f161031d366004612088565b610bc1565b6101f1610330366004612434565b610bdc565b34801561034157600080fd5b506101f16103503660046121cd565b610cda565b34801561036157600080fd5b5061026a6103703660046123f7565b610d17565b34801561038157600080fd5b50610395610390366004612004565b610d8e565b60405190815260200161021f565b3480156103af57600080fd5b506101f1610e15565b3480156103c457600080fd5b5061023d6103d3366004612215565b610e49565b3480156103e457600080fd5b506000546001600160a01b031661026a565b34801561040257600080fd5b5061044c610411366004612282565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b6040805192835260208301919091520161021f565b34801561046d57600080fd5b506101f161047c3660046123f7565b610ee3565b34801561048d57600080fd5b5061023d610f12565b3480156104a257600080fd5b506101f16104b1366004612134565b610f21565b3480156104c257600080fd5b50600a5461026a906001600160a01b031681565b3480156104e257600080fd5b506101f16104f13660046120c9565b610f2c565b34801561050257600080fd5b5061023d6105113660046123f7565b610f5e565b6101f16105243660046123db565b611039565b6101f16105373660046122d8565b61131d565b34801561054857600080fd5b5061021361055736600461204f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059157600080fd5b506101f16105a0366004612230565b6114aa565b3480156105b157600080fd5b506101f16105c0366004612004565b6114f2565b6007546001600160a01b031633146105dc57600080fd5b61ffff8416600090815260096020526040902080546105fa906128d5565b90508351148015610639575061ffff841660009081526009602052604090819020905161062791906124af565b60405180910390208380519060200120145b6106a75760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906106d090879087908790879060040161273d565b600060405180830381600087803b1580156106ea57600080fd5b505af19250505080156106fb575060015b6107b9576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516107459190612493565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906107b090869086908690869061273d565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b14806107f057506001600160e01b03198216635b5e139f60e01b145b8061080b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610820906128d5565b80601f016020809104026020016040519081016040528092919081815260200182805461084c906128d5565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661091c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161069e565b506000908152600560205260409020546001600160a01b031690565b600061094382610d17565b9050806001600160a01b0316836001600160a01b031614156109b15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161069e565b336001600160a01b03821614806109cd57506109cd8133610557565b610a3f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161069e565b610a49838361158a565b505050565b565b333014610ab35760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b606482015260840161069e565b6107b9848484846115f8565b610ac93382611625565b610ae55760405162461bcd60e51b815260040161069e90612637565b610a4983838361171c565b6000546001600160a01b03163314610b1a5760405162461bcd60e51b815260040161069e90612602565b600a546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610b67576040519150601f19603f3d011682016040523d82523d6000602084013e610b6c565b606091505b5050905080610bbd5760405162461bcd60e51b815260206004820152601d60248201527f706f6e7a753a204661696c656420746f20776974686472617721207a7a000000604482015260640161069e565b5050565b610a4983838360405180602001604052806000815250610f2c565b60038160ff1610610c395760405162461bcd60e51b815260206004820152602160248201527f706f6e7a753a204d61782032204e46547320706572207472616e73616374696f6044820152603760f91b606482015260840161069e565b600d548160ff16600c54610c4d9190612866565b1115610c9b5760405162461bcd60e51b815260206004820152601a60248201527f706f6e7a753a204d696e74206578636565647320737570706c79000000000000604482015260640161069e565b610cb833600c60008154610cae90612910565b91829055506118bc565b8060ff1660021415610cd757610cd733600c60008154610cae90612910565b50565b6000546001600160a01b03163314610d045760405162461bcd60e51b815260040161069e90612602565b8051610bbd90600b906020840190611dec565b6000818152600360205260408120546001600160a01b03168061080b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161069e565b60006001600160a01b038216610df95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161069e565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161069e90612602565b610a4e60006118d6565b60096020526000908152604090208054610e62906128d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8e906128d5565b8015610edb5780601f10610eb057610100808354040283529160200191610edb565b820191906000526020600020905b815481529060010190602001808311610ebe57829003601f168201915b505050505081565b6000546001600160a01b03163314610f0d5760405162461bcd60e51b815260040161069e90612602565b600e55565b606060028054610820906128d5565b610bbd338383611926565b610f363383611625565b610f525760405162461bcd60e51b815260040161069e90612637565b6107b9848484846119f5565b6000818152600360205260409020546060906001600160a01b0316610fdd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161069e565b6000610fe7611a28565b905060008151116110075760405180602001604052806000815250611032565b8061101184611a37565b604051602001611022929190612521565b6040516020818303038152906040525b9392505050565b61104281610d17565b6001600160a01b0316336001600160a01b0316146110ad5760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b606482015260840161069e565b61ffff8216600090815260096020526040812080546110cb906128d5565b9050116111315760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b606482015260840161069e565b61113a81611b34565b60408051336020820152808201839052815180820383018152606082018352600e54600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb10906111bd908990309089908790899060a601612688565b604080518083038186803b1580156111d457600080fd5b505afa1580156111e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120c9190612410565b509050803410156112985760405162461bcd60e51b815260206004820152604a60248201527f706f6e7a753a206d73672e76616c7565206e6f7420656e6f75676820746f206360448201527f6f766572206d6573736167654665652e2053656e642067617320666f72206d656064820152697373616765206665657360b01b608482015260a40161069e565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c58031009234926112e3928c928b913391908b90600401612786565b6000604051808303818588803b1580156112fc57600080fd5b505af1158015611310573d6000803e3d6000fd5b5050505050505050505050565b61ffff8516600090815260086020526040808220905161133e908790612493565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506113c55760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b606482015260840161069e565b8054821480156113ef5750806001015483836040516113e5929190612483565b6040518091039020145b61143b5760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000604482015260640161069e565b60008082556001820155604051630e1bd41160e11b81523090631c37a8229061147090899089908990899089906004016126dc565b600060405180830381600087803b15801561148a57600080fd5b505af115801561149e573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b031633146114d45760405162461bcd60e51b815260040161069e90612602565b61ffff831660009081526009602052604090206107b9908383611e70565b6000546001600160a01b0316331461151c5760405162461bcd60e51b815260040161069e90612602565b6001600160a01b0381166115815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069e565b610cd7816118d6565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115bf82610d17565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000808280602001905181019061160f9190612021565b9150915061161d82826118bc565b505050505050565b6000818152600360205260408120546001600160a01b031661169e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161069e565b60006116a983610d17565b9050806001600160a01b0316846001600160a01b031614806116e45750836001600160a01b03166116d9846108a3565b6001600160a01b0316145b8061171457506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661172f82610d17565b6001600160a01b0316146117975760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161069e565b6001600160a01b0382166117f95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161069e565b61180460008261158a565b6001600160a01b038316600090815260046020526040812080546001929061182d908490612892565b90915550506001600160a01b038216600090815260046020526040812080546001929061185b908490612866565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bbd828260405180602001604052806000815250611bcf565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156119885760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161069e565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a0084848461171c565b611a0c84848484611c02565b6107b95760405162461bcd60e51b815260040161069e906125b0565b6060600b8054610820906128d5565b606081611a5b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a855780611a6f81612910565b9150611a7e9050600a8361287e565b9150611a5f565b6000816001600160401b03811115611a9f57611a9f612981565b6040519080825280601f01601f191660200182016040528015611ac9576020820181803683370190505b5090505b841561171457611ade600183612892565b9150611aeb600a8661292b565b611af6906030612866565b60f81b818381518110611b0b57611b0b61296b565b60200101906001600160f81b031916908160001a905350611b2d600a8661287e565b9450611acd565b6000611b3f82610d17565b9050611b4c60008361158a565b6001600160a01b0381166000908152600460205260408120805460019290611b75908490612892565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611bd98383611d0f565b611be66000848484611c02565b610a495760405162461bcd60e51b815260040161069e906125b0565b60006001600160a01b0384163b15611d0457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c46903390899088908890600401612560565b602060405180830381600087803b158015611c6057600080fd5b505af1925050508015611c90575060408051601f3d908101601f19168201909252611c8d918101906121b0565b60015b611cea573d808015611cbe576040519150601f19603f3d011682016040523d82523d6000602084013e611cc3565b606091505b508051611ce25760405162461bcd60e51b815260040161069e906125b0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611714565b506001949350505050565b6001600160a01b038216611d655760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161069e565b6001600160a01b0382166000908152600460205260408120805460019290611d8e908490612866565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611df8906128d5565b90600052602060002090601f016020900481019282611e1a5760008555611e60565b82601f10611e3357805160ff1916838001178555611e60565b82800160010185558215611e60579182015b82811115611e60578251825591602001919060010190611e45565b50611e6c929150611ee4565b5090565b828054611e7c906128d5565b90600052602060002090601f016020900481019282611e9e5760008555611e60565b82601f10611eb75782800160ff19823516178555611e60565b82800160010185558215611e60579182015b82811115611e60578235825591602001919060010190611ec9565b5b80821115611e6c5760008155600101611ee5565b60006001600160401b0380841115611f1357611f13612981565b604051601f8501601f19908116603f01168101908282118183101715611f3b57611f3b612981565b81604052809350858152868686011115611f5457600080fd5b858560208301376000602087830101525050509392505050565b60008083601f840112611f8057600080fd5b5081356001600160401b03811115611f9757600080fd5b602083019150836020828501011115611faf57600080fd5b9250929050565b600082601f830112611fc757600080fd5b61103283833560208501611ef9565b803561ffff81168114611fe857600080fd5b919050565b80356001600160401b0381168114611fe857600080fd5b60006020828403121561201657600080fd5b813561103281612997565b6000806040838503121561203457600080fd5b825161203f81612997565b6020939093015192949293505050565b6000806040838503121561206257600080fd5b823561206d81612997565b9150602083013561207d81612997565b809150509250929050565b60008060006060848603121561209d57600080fd5b83356120a881612997565b925060208401356120b881612997565b929592945050506040919091013590565b600080600080608085870312156120df57600080fd5b84356120ea81612997565b935060208501356120fa81612997565b92506040850135915060608501356001600160401b0381111561211c57600080fd5b61212887828801611fb6565b91505092959194509250565b6000806040838503121561214757600080fd5b823561215281612997565b91506020830135801515811461207d57600080fd5b6000806040838503121561217a57600080fd5b823561218581612997565b946020939093013593505050565b6000602082840312156121a557600080fd5b8135611032816129ac565b6000602082840312156121c257600080fd5b8151611032816129ac565b6000602082840312156121df57600080fd5b81356001600160401b038111156121f557600080fd5b8201601f8101841361220657600080fd5b61171484823560208401611ef9565b60006020828403121561222757600080fd5b61103282611fd6565b60008060006040848603121561224557600080fd5b61224e84611fd6565b925060208401356001600160401b0381111561226957600080fd5b61227586828701611f6e565b9497909650939450505050565b60008060006060848603121561229757600080fd5b6122a084611fd6565b925060208401356001600160401b038111156122bb57600080fd5b6122c786828701611fb6565b925050604084013590509250925092565b6000806000806000608086880312156122f057600080fd5b6122f986611fd6565b945060208601356001600160401b038082111561231557600080fd5b61232189838a01611fb6565b955061232f60408901611fed565b9450606088013591508082111561234557600080fd5b5061235288828901611f6e565b969995985093965092949392505050565b6000806000806080858703121561237957600080fd5b61238285611fd6565b935060208501356001600160401b038082111561239e57600080fd5b6123aa88838901611fb6565b94506123b860408801611fed565b935060608701359150808211156123ce57600080fd5b5061212887828801611fb6565b600080604083850312156123ee57600080fd5b61218583611fd6565b60006020828403121561240957600080fd5b5035919050565b6000806040838503121561242357600080fd5b505080516020909101519092909150565b60006020828403121561244657600080fd5b813560ff8116811461103257600080fd5b6000815180845261246f8160208601602086016128a9565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b600082516124a58184602087016128a9565b9190910192915050565b60008083546124bd816128d5565b600182811680156124d557600181146124e657612515565b60ff19841687528287019450612515565b8760005260208060002060005b8581101561250c5781548a8201529084019082016124f3565b50505082870194505b50929695505050505050565b600083516125338184602088016128a9565b8351908301906125478183602088016128a9565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061259390830184612457565b9695505050505050565b6020815260006110326020830184612457565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a0604082018190526000906126b690830186612457565b841515606084015282810360808401526126d08185612457565b98975050505050505050565b61ffff861681526080602082015260006126f96080830187612457565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b61ffff8516815260806020820152600061275a6080830186612457565b6001600160401b0385166040840152828103606084015261277b8185612457565b979650505050505050565b61ffff871681526000602060c081840152600088546127a4816128d5565b8060c087015260e06001808416600081146127c657600181146127db57612809565b60ff1985168984015261010089019550612809565b8d6000528660002060005b858110156128015781548b82018601529083019088016127e6565b8a0184019650505b505050505083810360408501526128208189612457565b91505061283860608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a08401526128598185612457565b9998505050505050505050565b600082198211156128795761287961293f565b500190565b60008261288d5761288d612955565b500490565b6000828210156128a4576128a461293f565b500390565b60005b838110156128c45781810151838201526020016128ac565b838111156107b95750506000910152565b600181811c908216806128e957607f821691505b6020821081141561290a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129245761292461293f565b5060010190565b60008261293a5761293a612955565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610cd757600080fd5b6001600160e01b031981168114610cd757600080fdfea26469706673582212206d3a9f91e6b6d5242e39bb9abdd4b30e34a8e925635e770ee51ad5a0eb6d3f5b64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d544b51456d76456d63773348684c6d516d6e6e47666d486369354a71634e7145767976746664317a75376d422f00000000000000000000

Deployed Bytecode

0x6080604052600436106101cc5760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c51461053c578063eb8d72b714610585578063ed88c68e146101f1578063f2fde38b146105a557600080fd5b8063b88d4fde146104d6578063c87b56dd146104f6578063cf89fa0314610516578063d1deba1f1461052957600080fd5b8063943fb872116100d1578063943fb8721461046157806395d89b4114610481578063a22cb46514610496578063b2bdfa7b146104b657600080fd5b80637533d788146103b85780638da5cb5b146103d85780638ee74912146103f657600080fd5b806323b872dd1161016f57806355f804b31161013e57806355f804b3146103355780636352211e1461035557806370a0823114610375578063715018a6146103a357600080fd5b806323b872dd146102c25780632e1a7d4d146102e257806342842e0e146103025780634a6c4b5a1461032257600080fd5b8063081812fc116101ab578063081812fc1461024a578063095ea7b3146102825780631249c58b146101f15780631c37a822146102a257600080fd5b80621d3567146101d157806301ffc9a7146101f357806306fdde0314610228575b600080fd5b3480156101dd57600080fd5b506101f16101ec366004612363565b6105c5565b005b3480156101ff57600080fd5b5061021361020e366004612193565b6107bf565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610811565b60405161021f919061259d565b34801561025657600080fd5b5061026a6102653660046123f7565b6108a3565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506101f161029d366004612167565b610938565b3480156102ae57600080fd5b506101f16102bd366004612363565b610a50565b3480156102ce57600080fd5b506101f16102dd366004612088565b610abf565b3480156102ee57600080fd5b506101f16102fd3660046123f7565b610af0565b34801561030e57600080fd5b506101f161031d366004612088565b610bc1565b6101f1610330366004612434565b610bdc565b34801561034157600080fd5b506101f16103503660046121cd565b610cda565b34801561036157600080fd5b5061026a6103703660046123f7565b610d17565b34801561038157600080fd5b50610395610390366004612004565b610d8e565b60405190815260200161021f565b3480156103af57600080fd5b506101f1610e15565b3480156103c457600080fd5b5061023d6103d3366004612215565b610e49565b3480156103e457600080fd5b506000546001600160a01b031661026a565b34801561040257600080fd5b5061044c610411366004612282565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b6040805192835260208301919091520161021f565b34801561046d57600080fd5b506101f161047c3660046123f7565b610ee3565b34801561048d57600080fd5b5061023d610f12565b3480156104a257600080fd5b506101f16104b1366004612134565b610f21565b3480156104c257600080fd5b50600a5461026a906001600160a01b031681565b3480156104e257600080fd5b506101f16104f13660046120c9565b610f2c565b34801561050257600080fd5b5061023d6105113660046123f7565b610f5e565b6101f16105243660046123db565b611039565b6101f16105373660046122d8565b61131d565b34801561054857600080fd5b5061021361055736600461204f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059157600080fd5b506101f16105a0366004612230565b6114aa565b3480156105b157600080fd5b506101f16105c0366004612004565b6114f2565b6007546001600160a01b031633146105dc57600080fd5b61ffff8416600090815260096020526040902080546105fa906128d5565b90508351148015610639575061ffff841660009081526009602052604090819020905161062791906124af565b60405180910390208380519060200120145b6106a75760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906106d090879087908790879060040161273d565b600060405180830381600087803b1580156106ea57600080fd5b505af19250505080156106fb575060015b6107b9576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516107459190612493565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906107b090869086908690869061273d565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b14806107f057506001600160e01b03198216635b5e139f60e01b145b8061080b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610820906128d5565b80601f016020809104026020016040519081016040528092919081815260200182805461084c906128d5565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661091c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161069e565b506000908152600560205260409020546001600160a01b031690565b600061094382610d17565b9050806001600160a01b0316836001600160a01b031614156109b15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161069e565b336001600160a01b03821614806109cd57506109cd8133610557565b610a3f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161069e565b610a49838361158a565b505050565b565b333014610ab35760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b606482015260840161069e565b6107b9848484846115f8565b610ac93382611625565b610ae55760405162461bcd60e51b815260040161069e90612637565b610a4983838361171c565b6000546001600160a01b03163314610b1a5760405162461bcd60e51b815260040161069e90612602565b600a546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610b67576040519150601f19603f3d011682016040523d82523d6000602084013e610b6c565b606091505b5050905080610bbd5760405162461bcd60e51b815260206004820152601d60248201527f706f6e7a753a204661696c656420746f20776974686472617721207a7a000000604482015260640161069e565b5050565b610a4983838360405180602001604052806000815250610f2c565b60038160ff1610610c395760405162461bcd60e51b815260206004820152602160248201527f706f6e7a753a204d61782032204e46547320706572207472616e73616374696f6044820152603760f91b606482015260840161069e565b600d548160ff16600c54610c4d9190612866565b1115610c9b5760405162461bcd60e51b815260206004820152601a60248201527f706f6e7a753a204d696e74206578636565647320737570706c79000000000000604482015260640161069e565b610cb833600c60008154610cae90612910565b91829055506118bc565b8060ff1660021415610cd757610cd733600c60008154610cae90612910565b50565b6000546001600160a01b03163314610d045760405162461bcd60e51b815260040161069e90612602565b8051610bbd90600b906020840190611dec565b6000818152600360205260408120546001600160a01b03168061080b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161069e565b60006001600160a01b038216610df95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161069e565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161069e90612602565b610a4e60006118d6565b60096020526000908152604090208054610e62906128d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8e906128d5565b8015610edb5780601f10610eb057610100808354040283529160200191610edb565b820191906000526020600020905b815481529060010190602001808311610ebe57829003601f168201915b505050505081565b6000546001600160a01b03163314610f0d5760405162461bcd60e51b815260040161069e90612602565b600e55565b606060028054610820906128d5565b610bbd338383611926565b610f363383611625565b610f525760405162461bcd60e51b815260040161069e90612637565b6107b9848484846119f5565b6000818152600360205260409020546060906001600160a01b0316610fdd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161069e565b6000610fe7611a28565b905060008151116110075760405180602001604052806000815250611032565b8061101184611a37565b604051602001611022929190612521565b6040516020818303038152906040525b9392505050565b61104281610d17565b6001600160a01b0316336001600160a01b0316146110ad5760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b606482015260840161069e565b61ffff8216600090815260096020526040812080546110cb906128d5565b9050116111315760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b606482015260840161069e565b61113a81611b34565b60408051336020820152808201839052815180820383018152606082018352600e54600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb10906111bd908990309089908790899060a601612688565b604080518083038186803b1580156111d457600080fd5b505afa1580156111e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120c9190612410565b509050803410156112985760405162461bcd60e51b815260206004820152604a60248201527f706f6e7a753a206d73672e76616c7565206e6f7420656e6f75676820746f206360448201527f6f766572206d6573736167654665652e2053656e642067617320666f72206d656064820152697373616765206665657360b01b608482015260a40161069e565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c58031009234926112e3928c928b913391908b90600401612786565b6000604051808303818588803b1580156112fc57600080fd5b505af1158015611310573d6000803e3d6000fd5b5050505050505050505050565b61ffff8516600090815260086020526040808220905161133e908790612493565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506113c55760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b606482015260840161069e565b8054821480156113ef5750806001015483836040516113e5929190612483565b6040518091039020145b61143b5760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000604482015260640161069e565b60008082556001820155604051630e1bd41160e11b81523090631c37a8229061147090899089908990899089906004016126dc565b600060405180830381600087803b15801561148a57600080fd5b505af115801561149e573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b031633146114d45760405162461bcd60e51b815260040161069e90612602565b61ffff831660009081526009602052604090206107b9908383611e70565b6000546001600160a01b0316331461151c5760405162461bcd60e51b815260040161069e90612602565b6001600160a01b0381166115815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069e565b610cd7816118d6565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115bf82610d17565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000808280602001905181019061160f9190612021565b9150915061161d82826118bc565b505050505050565b6000818152600360205260408120546001600160a01b031661169e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161069e565b60006116a983610d17565b9050806001600160a01b0316846001600160a01b031614806116e45750836001600160a01b03166116d9846108a3565b6001600160a01b0316145b8061171457506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661172f82610d17565b6001600160a01b0316146117975760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161069e565b6001600160a01b0382166117f95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161069e565b61180460008261158a565b6001600160a01b038316600090815260046020526040812080546001929061182d908490612892565b90915550506001600160a01b038216600090815260046020526040812080546001929061185b908490612866565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bbd828260405180602001604052806000815250611bcf565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156119885760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161069e565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a0084848461171c565b611a0c84848484611c02565b6107b95760405162461bcd60e51b815260040161069e906125b0565b6060600b8054610820906128d5565b606081611a5b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a855780611a6f81612910565b9150611a7e9050600a8361287e565b9150611a5f565b6000816001600160401b03811115611a9f57611a9f612981565b6040519080825280601f01601f191660200182016040528015611ac9576020820181803683370190505b5090505b841561171457611ade600183612892565b9150611aeb600a8661292b565b611af6906030612866565b60f81b818381518110611b0b57611b0b61296b565b60200101906001600160f81b031916908160001a905350611b2d600a8661287e565b9450611acd565b6000611b3f82610d17565b9050611b4c60008361158a565b6001600160a01b0381166000908152600460205260408120805460019290611b75908490612892565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611bd98383611d0f565b611be66000848484611c02565b610a495760405162461bcd60e51b815260040161069e906125b0565b60006001600160a01b0384163b15611d0457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c46903390899088908890600401612560565b602060405180830381600087803b158015611c6057600080fd5b505af1925050508015611c90575060408051601f3d908101601f19168201909252611c8d918101906121b0565b60015b611cea573d808015611cbe576040519150601f19603f3d011682016040523d82523d6000602084013e611cc3565b606091505b508051611ce25760405162461bcd60e51b815260040161069e906125b0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611714565b506001949350505050565b6001600160a01b038216611d655760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161069e565b6001600160a01b0382166000908152600460205260408120805460019290611d8e908490612866565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611df8906128d5565b90600052602060002090601f016020900481019282611e1a5760008555611e60565b82601f10611e3357805160ff1916838001178555611e60565b82800160010185558215611e60579182015b82811115611e60578251825591602001919060010190611e45565b50611e6c929150611ee4565b5090565b828054611e7c906128d5565b90600052602060002090601f016020900481019282611e9e5760008555611e60565b82601f10611eb75782800160ff19823516178555611e60565b82800160010185558215611e60579182015b82811115611e60578235825591602001919060010190611ec9565b5b80821115611e6c5760008155600101611ee5565b60006001600160401b0380841115611f1357611f13612981565b604051601f8501601f19908116603f01168101908282118183101715611f3b57611f3b612981565b81604052809350858152868686011115611f5457600080fd5b858560208301376000602087830101525050509392505050565b60008083601f840112611f8057600080fd5b5081356001600160401b03811115611f9757600080fd5b602083019150836020828501011115611faf57600080fd5b9250929050565b600082601f830112611fc757600080fd5b61103283833560208501611ef9565b803561ffff81168114611fe857600080fd5b919050565b80356001600160401b0381168114611fe857600080fd5b60006020828403121561201657600080fd5b813561103281612997565b6000806040838503121561203457600080fd5b825161203f81612997565b6020939093015192949293505050565b6000806040838503121561206257600080fd5b823561206d81612997565b9150602083013561207d81612997565b809150509250929050565b60008060006060848603121561209d57600080fd5b83356120a881612997565b925060208401356120b881612997565b929592945050506040919091013590565b600080600080608085870312156120df57600080fd5b84356120ea81612997565b935060208501356120fa81612997565b92506040850135915060608501356001600160401b0381111561211c57600080fd5b61212887828801611fb6565b91505092959194509250565b6000806040838503121561214757600080fd5b823561215281612997565b91506020830135801515811461207d57600080fd5b6000806040838503121561217a57600080fd5b823561218581612997565b946020939093013593505050565b6000602082840312156121a557600080fd5b8135611032816129ac565b6000602082840312156121c257600080fd5b8151611032816129ac565b6000602082840312156121df57600080fd5b81356001600160401b038111156121f557600080fd5b8201601f8101841361220657600080fd5b61171484823560208401611ef9565b60006020828403121561222757600080fd5b61103282611fd6565b60008060006040848603121561224557600080fd5b61224e84611fd6565b925060208401356001600160401b0381111561226957600080fd5b61227586828701611f6e565b9497909650939450505050565b60008060006060848603121561229757600080fd5b6122a084611fd6565b925060208401356001600160401b038111156122bb57600080fd5b6122c786828701611fb6565b925050604084013590509250925092565b6000806000806000608086880312156122f057600080fd5b6122f986611fd6565b945060208601356001600160401b038082111561231557600080fd5b61232189838a01611fb6565b955061232f60408901611fed565b9450606088013591508082111561234557600080fd5b5061235288828901611f6e565b969995985093965092949392505050565b6000806000806080858703121561237957600080fd5b61238285611fd6565b935060208501356001600160401b038082111561239e57600080fd5b6123aa88838901611fb6565b94506123b860408801611fed565b935060608701359150808211156123ce57600080fd5b5061212887828801611fb6565b600080604083850312156123ee57600080fd5b61218583611fd6565b60006020828403121561240957600080fd5b5035919050565b6000806040838503121561242357600080fd5b505080516020909101519092909150565b60006020828403121561244657600080fd5b813560ff8116811461103257600080fd5b6000815180845261246f8160208601602086016128a9565b601f01601f19169290920160200192915050565b8183823760009101908152919050565b600082516124a58184602087016128a9565b9190910192915050565b60008083546124bd816128d5565b600182811680156124d557600181146124e657612515565b60ff19841687528287019450612515565b8760005260208060002060005b8581101561250c5781548a8201529084019082016124f3565b50505082870194505b50929695505050505050565b600083516125338184602088016128a9565b8351908301906125478183602088016128a9565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061259390830184612457565b9695505050505050565b6020815260006110326020830184612457565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a0604082018190526000906126b690830186612457565b841515606084015282810360808401526126d08185612457565b98975050505050505050565b61ffff861681526080602082015260006126f96080830187612457565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b61ffff8516815260806020820152600061275a6080830186612457565b6001600160401b0385166040840152828103606084015261277b8185612457565b979650505050505050565b61ffff871681526000602060c081840152600088546127a4816128d5565b8060c087015260e06001808416600081146127c657600181146127db57612809565b60ff1985168984015261010089019550612809565b8d6000528660002060005b858110156128015781548b82018601529083019088016127e6565b8a0184019650505b505050505083810360408501526128208189612457565b91505061283860608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a08401526128598185612457565b9998505050505050505050565b600082198211156128795761287961293f565b500190565b60008261288d5761288d612955565b500490565b6000828210156128a4576128a461293f565b500390565b60005b838110156128c45781810151838201526020016128ac565b838111156107b95750506000910152565b600181811c908216806128e957607f821691505b6020821081141561290a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129245761292461293f565b5060010190565b60008261293a5761293a612955565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610cd757600080fd5b6001600160e01b031981168114610cd757600080fdfea26469706673582212206d3a9f91e6b6d5242e39bb9abdd4b30e34a8e925635e770ee51ad5a0eb6d3f5b64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6750000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d544b51456d76456d63773348684c6d516d6e6e47666d486369354a71634e7145767976746664317a75376d422f00000000000000000000

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

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d544b51456d76456d63773348684c6d516d6e6e47666d48
Arg [4] : 6369354a71634e7145767976746664317a75376d422f00000000000000000000


Deployed Bytecode Sourcemap

50615:4167:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46831:1098;;;;;;;;;;-1:-1:-1;46831:1098:0;;;;;:::i;:::-;;:::i;:::-;;32887:355;;;;;;;;;;-1:-1:-1;32887:355:0;;;;;:::i;:::-;;:::i;:::-;;;12969:14:1;;12962:22;12944:41;;12932:2;12917:18;32887:355:0;;;;;;;;34056:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35758:308::-;;;;;;;;;;-1:-1:-1;35758:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;11988:32:1;;;11970:51;;11958:2;11943:18;35758:308:0;11824:203:1;35281:411:0;;;;;;;;;;-1:-1:-1;35281:411:0;;;;;:::i;:::-;;:::i;47937:435::-;;;;;;;;;;-1:-1:-1;47937:435:0;;;;;:::i;:::-;;:::i;36677:376::-;;;;;;;;;;-1:-1:-1;36677:376:0;;;;;:::i;:::-;;:::i;53766:178::-;;;;;;;;;;-1:-1:-1;53766:178:0;;;;;:::i;:::-;;:::i;37124:185::-;;;;;;;;;;-1:-1:-1;37124:185:0;;;;;:::i;:::-;;:::i;51206:397::-;;;;;;:::i;:::-;;:::i;53540:90::-;;;;;;;;;;-1:-1:-1;53540:90:0;;;;;:::i;:::-;;:::i;33663:326::-;;;;;;;;;;-1:-1:-1;33663:326:0;;;;;:::i;:::-;;:::i;33306:295::-;;;;;;;;;;-1:-1:-1;33306:295:0;;;;;:::i;:::-;;:::i;:::-;;;27054:25:1;;;27042:2;27027:18;33306:295:0;26908:177:1;13199:103:0;;;;;;;;;;;;;:::i;46630:51::-;;;;;;;;;;-1:-1:-1;46630:51:0;;;;;:::i;:::-;;:::i;12548:87::-;;;;;;;;;;-1:-1:-1;12594:7:0;12621:6;-1:-1:-1;;;;;12621:6:0;12548:87;;46521:102;;;;;;;;;;-1:-1:-1;46521:102:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27264:25:1;;;27320:2;27305:18;;27298:34;;;;27237:18;46521:102:0;27090:248:1;54028:128:0;;;;;;;;;;-1:-1:-1;54028:128:0;;;;;:::i;:::-;;:::i;34225:104::-;;;;;;;;;;;;;:::i;36138:187::-;;;;;;;;;;-1:-1:-1;36138:187:0;;;;;:::i;:::-;;:::i;50681:21::-;;;;;;;;;;-1:-1:-1;50681:21:0;;;;-1:-1:-1;;;;;50681:21:0;;;37380:365;;;;;;;;;;-1:-1:-1;37380:365:0;;;;;:::i;:::-;;:::i;34400:477::-;;;;;;;;;;-1:-1:-1;34400:477:0;;;;;:::i;:::-;;:::i;51837:1695::-;;;;;;:::i;:::-;;:::i;49032:916::-;;;;;;:::i;:::-;;:::i;36396:214::-;;;;;;;;;;-1:-1:-1;36396:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;36567:25:0;;;36538:4;36567:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36396:214;49956:181;;;;;;;;;;-1:-1:-1;49956:181:0;;;;;:::i;:::-;;:::i;13457:238::-;;;;;;;;;;-1:-1:-1;13457:238:0;;;;;:::i;:::-;;:::i;46831:1098::-;47036:8;;-1:-1:-1;;;;;47036:8:0;47014:10;:31;47006:40;;;;;;47171:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;47149:11;:18;:61;:168;;;;-1:-1:-1;47284:32:0;;;;;;;:19;:32;;;;;;;47274:43;;;;47284:32;47274:43;:::i;:::-;;;;;;;;47241:11;47231:22;;;;;;:86;47149:168;47127:270;;;;-1:-1:-1;;;47127:270:0;;21206:2:1;47127:270:0;;;21188:21:1;21245:2;21225:18;;;21218:30;21284:34;21264:18;;;21257:62;-1:-1:-1;;;21335:18:1;;;21328:50;21395:19;;47127:270:0;;;;;;;;;47525:60;;-1:-1:-1;;;47525:60:0;;:4;;:16;;:60;;47542:11;;47555;;47568:6;;47576:8;;47525:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47521:401;;47732:101;;;;;;;;47765:8;:15;47732:101;;;;47809:8;47799:19;;;;;;47732:101;;;47681:14;:27;47696:11;47681:27;;;;;;;;;;;;;;;47709:11;47681:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47681:48:0;;;;;;;;;;;;;:152;;;;;;;;;;;;;;;47853:57;;;;47867:11;;47880;;47722:6;;47901:8;;47853:57;:::i;:::-;;;;;;;;47521:401;46831:1098;;;;:::o;32887:355::-;33034:4;-1:-1:-1;;;;;;33076:40:0;;-1:-1:-1;;;33076:40:0;;:105;;-1:-1:-1;;;;;;;33133:48:0;;-1:-1:-1;;;33133:48:0;33076:105;:158;;;-1:-1:-1;;;;;;;;;;25633:40:0;;;33198:36;33056:178;32887:355;-1:-1:-1;;32887:355:0:o;34056:100::-;34110:13;34143:5;34136:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34056:100;:::o;35758:308::-;35879:7;39381:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39381:16:0;35904:110;;;;-1:-1:-1;;;35904:110:0;;20074:2:1;35904:110:0;;;20056:21:1;20113:2;20093:18;;;20086:30;20152:34;20132:18;;;20125:62;-1:-1:-1;;;20203:18:1;;;20196:42;20255:19;;35904:110:0;19872:408:1;35904:110:0;-1:-1:-1;36034:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36034:24:0;;35758:308::o;35281:411::-;35362:13;35378:23;35393:7;35378:14;:23::i;:::-;35362:39;;35426:5;-1:-1:-1;;;;;35420:11:0;:2;-1:-1:-1;;;;;35420:11:0;;;35412:57;;;;-1:-1:-1;;;35412:57:0;;22453:2:1;35412:57:0;;;22435:21:1;22492:2;22472:18;;;22465:30;22531:34;22511:18;;;22504:62;-1:-1:-1;;;22582:18:1;;;22575:31;22623:19;;35412:57:0;22251:397:1;35412:57:0;11331:10;-1:-1:-1;;;;;35504:21:0;;;;:62;;-1:-1:-1;35529:37:0;35546:5;11331:10;36396:214;:::i;35529:37::-;35482:168;;;;-1:-1:-1;;;35482:168:0;;18055:2:1;35482:168:0;;;18037:21:1;18094:2;18074:18;;;18067:30;18133:34;18113:18;;;18106:62;18204:26;18184:18;;;18177:54;18248:19;;35482:168:0;17853:420:1;35482:168:0;35663:21;35672:2;35676:7;35663:8;:21::i;:::-;35351:341;35281:411;;:::o;51617:81::-;:::o;47937:435::-;48163:10;48185:4;48163:27;48141:120;;;;-1:-1:-1;;;48141:120:0;;19301:2:1;48141:120:0;;;19283:21:1;19340:2;19320:18;;;19313:30;19379:34;19359:18;;;19352:62;-1:-1:-1;;;19430:18:1;;;19423:41;19481:19;;48141:120:0;19099:407:1;48141:120:0;48310:54;48321:11;48334;48347:6;48355:8;48310:10;:54::i;36677:376::-;36886:41;11331:10;36919:7;36886:18;:41::i;:::-;36864:140;;;;-1:-1:-1;;;36864:140:0;;;;;;;:::i;:::-;37017:28;37027:4;37033:2;37037:7;37017:9;:28::i;53766:178::-;12594:7;12621:6;-1:-1:-1;;;;;12621:6:0;11331:10;12768:23;12760:68;;;;-1:-1:-1;;;12760:68:0;;;;;;;:::i;:::-;53851:6:::1;::::0;53843:36:::1;::::0;53828:9:::1;::::0;-1:-1:-1;;;;;53851:6:0::1;::::0;53871:3;;53828:9;53843:36;53828:9;53843:36;53871:3;53851:6;53843:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53827:52;;;53898:4;53890:46;;;::::0;-1:-1:-1;;;53890:46:0;;20848:2:1;53890:46:0::1;::::0;::::1;20830:21:1::0;20887:2;20867:18;;;20860:30;20926:31;20906:18;;;20899:59;20975:18;;53890:46:0::1;20646:353:1::0;53890:46:0::1;53816:128;53766:178:::0;:::o;37124:185::-;37262:39;37279:4;37285:2;37289:7;37262:39;;;;;;;;;;;;:16;:39::i;51206:397::-;51285:1;51273:9;:13;;;51265:59;;;;-1:-1:-1;;;51265:59:0;;14418:2:1;51265:59:0;;;14400:21:1;14457:2;14437:18;;;14430:30;14496:34;14476:18;;;14469:62;-1:-1:-1;;;14547:18:1;;;14540:31;14588:19;;51265:59:0;14216:397:1;51265:59:0;51384:17;;51371:9;51357:23;;:11;;:23;;;;:::i;:::-;:44;;51335:120;;;;-1:-1:-1;;;51335:120:0;;13644:2:1;51335:120:0;;;13626:21:1;13683:2;13663:18;;;13656:30;13722:28;13702:18;;;13695:56;13768:18;;51335:120:0;13442:350:1;51335:120:0;51466:36;51476:10;51490:11;;51488:13;;;;;:::i;:::-;;;;;-1:-1:-1;51466:9:0;:36::i;:::-;51517:9;:14;;51530:1;51517:14;51513:83;;;51548:36;51558:10;51572:11;;51570:13;;;;;:::i;51548:36::-;51206:397;:::o;53540:90::-;12594:7;12621:6;-1:-1:-1;;;;;12621:6:0;11331:10;12768:23;12760:68;;;;-1:-1:-1;;;12760:68:0;;;;;;;:::i;:::-;53609:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;33663:326::-:0;33780:7;33821:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33821:16:0;33870:19;33848:110;;;;-1:-1:-1;;;33848:110:0;;18891:2:1;33848:110:0;;;18873:21:1;18930:2;18910:18;;;18903:30;18969:34;18949:18;;;18942:62;-1:-1:-1;;;19020:18:1;;;19013:39;19069:19;;33848:110:0;18689:405:1;33306:295:0;33423:7;-1:-1:-1;;;;;33470:19:0;;33448:111;;;;-1:-1:-1;;;33448:111:0;;18480:2:1;33448:111:0;;;18462:21:1;18519:2;18499:18;;;18492:30;18558:34;18538:18;;;18531:62;-1:-1:-1;;;18609:18:1;;;18602:40;18659:19;;33448:111:0;18278:406:1;33448:111:0;-1:-1:-1;;;;;;33577:16:0;;;;;:9;:16;;;;;;;33306:295::o;13199:103::-;12594:7;12621:6;-1:-1:-1;;;;;12621:6:0;11331:10;12768:23;12760:68;;;;-1:-1:-1;;;12760:68:0;;;;;;;:::i;:::-;13264:30:::1;13291:1;13264:18;:30::i;46630:51::-:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54028:128::-;12594:7;12621:6;-1:-1:-1;;;;;12621:6:0;11331:10;12768:23;12760:68;;;;-1:-1:-1;;;12760:68:0;;;;;;;:::i;:::-;54113:26:::1;:35:::0;54028:128::o;34225:104::-;34281:13;34314:7;34307:14;;;;;:::i;36138:187::-;36265:52;11331:10;36298:8;36308;36265:18;:52::i;37380:365::-;37569:41;11331:10;37602:7;37569:18;:41::i;:::-;37547:140;;;;-1:-1:-1;;;37547:140:0;;;;;;;:::i;:::-;37698:39;37712:4;37718:2;37722:7;37731:5;37698:13;:39::i;34400:477::-;39357:4;39381:16;;;:7;:16;;;;;;34518:13;;-1:-1:-1;;;;;39381:16:0;34549:113;;;;-1:-1:-1;;;34549:113:0;;22037:2:1;34549:113:0;;;22019:21:1;22076:2;22056:18;;;22049:30;22115:34;22095:18;;;22088:62;-1:-1:-1;;;22166:18:1;;;22159:45;22221:19;;34549:113:0;21835:411:1;34549:113:0;34675:21;34699:10;:8;:10::i;:::-;34675:34;;34764:1;34746:7;34740:21;:25;:129;;;;;;;;;;;;;;;;;34809:7;34818:18;:7;:16;:18::i;:::-;34792:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34740:129;34720:149;34400:477;-1:-1:-1;;;34400:477:0:o;51837:1695::-;51957:16;51965:7;51957;:16::i;:::-;-1:-1:-1;;;;;51943:30:0;:10;-1:-1:-1;;;;;51943:30:0;;51921:114;;;;-1:-1:-1;;;51921:114:0;;17239:2:1;51921:114:0;;;17221:21:1;17278:2;17258:18;;;17251:30;17317:34;17297:18;;;17290:62;-1:-1:-1;;;17368:18:1;;;17361:32;17410:19;;51921:114:0;17037:398:1;51921:114:0;52068:29;;;52107:1;52068:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;52046:136;;;;-1:-1:-1;;;52046:136:0;;16469:2:1;52046:136:0;;;16451:21:1;16508:2;16488:18;;;16481:30;16547:34;16527:18;;;16520:62;-1:-1:-1;;;16598:18:1;;;16591:44;16652:19;;52046:136:0;16267:410:1;52046:136:0;52262:14;52268:7;52262:5;:14::i;:::-;52373:31;;;52384:10;52373:31;;;12699:51:1;12766:18;;;12759:34;;;52373:31:0;;;;;;;;;12672:18:1;;;52373:31:0;;52601:26;;-1:-1:-1;;;52548:90:0;;;11698:51:1;11765:11;;;;11758:27;;;;52548:90:0;;;;;;;;;;11801:12:1;;;52548:90:0;;;;52817:8;;-1:-1:-1;;;52817:153:0;;;52373:31;;52507:1;;-1:-1:-1;;;;;;;52817:8:0;;:21;;:153;;52853:8;;52884:4;;52373:31;;-1:-1:-1;;52548:90:0;;52817:153;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52792:178;;;53018:10;53005:9;:23;;52983:147;;;;-1:-1:-1;;;52983:147:0;;15227:2:1;52983:147:0;;;15209:21:1;15266:2;15246:18;;;15239:30;15305:34;15285:18;;;15278:62;15376:34;15356:18;;;15349:62;-1:-1:-1;;;15427:19:1;;;15420:41;15478:19;;52983:147:0;15025:478:1;52983:147:0;53143:8;;53235:29;;;53143:8;53235:29;;;:19;:29;;;;;;53143:381;;-1:-1:-1;;;53143:381:0;;-1:-1:-1;;;;;53143:8:0;;;;:13;;53164:9;;53143:381;;53189:8;;53318:7;;53374:10;;53143:8;53484:13;;53143:381;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51910:1622;;;;51837:1695;;:::o;49032:916::-;49291:27;;;49256:32;49291:27;;;:14;:27;;;;;;:64;;;;49333:11;;49291:64;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49291:72:0;;;;;;;;;;49396:21;;;;49291:72;;-1:-1:-1;49374:123:0;;;;-1:-1:-1;;;49374:123:0;;23273:2:1;49374:123:0;;;23255:21:1;23312:2;23292:18;;;23285:30;23351:34;23331:18;;;23324:62;-1:-1:-1;;;23402:18:1;;;23395:36;23448:19;;49374:123:0;23071:402:1;49374:123:0;49549:23;;49530:42;;:107;;;;;49616:9;:21;;;49603:8;;49593:19;;;;;;;:::i;:::-;;;;;;;;:44;49530:107;49508:183;;;;-1:-1:-1;;;49508:183:0;;16884:2:1;49508:183:0;;;16866:21:1;16923:2;16903:18;;;16896:30;16962:28;16942:18;;;16935:56;17008:18;;49508:183:0;16682:350:1;49508:183:0;49765:1;49739:27;;;49777:21;;;:34;49880:60;;-1:-1:-1;;;49880:60:0;;:4;;:16;;:60;;49897:11;;49910;;49923:6;;49931:8;;;;49880:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49200:748;49032:916;;;;;:::o;49956:181::-;12594:7;12621:6;-1:-1:-1;;;;;12621:6:0;11331:10;12768:23;12760:68;;;;-1:-1:-1;;;12760:68:0;;;;;;;:::i;:::-;50083:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;50115:14;;50083:46:::1;:::i;13457:238::-:0;12594:7;12621:6;-1:-1:-1;;;;;12621:6:0;11331:10;12768:23;12760:68;;;;-1:-1:-1;;;12760:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13560:22:0;::::1;13538:110;;;::::0;-1:-1:-1;;;13538:110:0;;14820:2:1;13538:110:0::1;::::0;::::1;14802:21:1::0;14859:2;14839:18;;;14832:30;14898:34;14878:18;;;14871:62;-1:-1:-1;;;14949:18:1;;;14942:36;14995:19;;13538:110:0::1;14618:402:1::0;13538:110:0::1;13659:28;13678:8;13659:18;:28::i;43346:174::-:0;43421:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;43421:29:0;-1:-1:-1;;;;;43421:29:0;;;;;;;;:24;;43475:23;43421:24;43475:14;:23::i;:::-;-1:-1:-1;;;;;43466:46:0;;;;;;;;;;;43346:174;;:::o;54247:424::-;54443:14;54459:15;54503:8;54478:77;;;;;;;;;;;;:::i;:::-;54442:113;;;;54637:26;54647:6;54655:7;54637:9;:26::i;:::-;54412:259;;54247:424;;;;:::o;39586:452::-;39715:4;39381:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39381:16:0;39737:110;;;;-1:-1:-1;;;39737:110:0;;17642:2:1;39737:110:0;;;17624:21:1;17681:2;17661:18;;;17654:30;17720:34;17700:18;;;17693:62;-1:-1:-1;;;17771:18:1;;;17764:42;17823:19;;39737:110:0;17440:408:1;39737:110:0;39858:13;39874:23;39889:7;39874:14;:23::i;:::-;39858:39;;39927:5;-1:-1:-1;;;;;39916:16:0;:7;-1:-1:-1;;;;;39916:16:0;;:64;;;;39973:7;-1:-1:-1;;;;;39949:31:0;:20;39961:7;39949:11;:20::i;:::-;-1:-1:-1;;;;;39949:31:0;;39916:64;:113;;;-1:-1:-1;;;;;;36567:25:0;;;36538:4;36567:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39997:32;39908:122;39586:452;-1:-1:-1;;;;39586:452:0:o;42613:615::-;42786:4;-1:-1:-1;;;;;42759:31:0;:23;42774:7;42759:14;:23::i;:::-;-1:-1:-1;;;;;42759:31:0;;42737:122;;;;-1:-1:-1;;;42737:122:0;;21627:2:1;42737:122:0;;;21609:21:1;21666:2;21646:18;;;21639:30;21705:34;21685:18;;;21678:62;-1:-1:-1;;;21756:18:1;;;21749:39;21805:19;;42737:122:0;21425:405:1;42737:122:0;-1:-1:-1;;;;;42878:16:0;;42870:65;;;;-1:-1:-1;;;42870:65:0;;15710:2:1;42870:65:0;;;15692:21:1;15749:2;15729:18;;;15722:30;15788:34;15768:18;;;15761:62;-1:-1:-1;;;15839:18:1;;;15832:34;15883:19;;42870:65:0;15508:400:1;42870:65:0;43052:29;43069:1;43073:7;43052:8;:29::i;:::-;-1:-1:-1;;;;;43094:15:0;;;;;;:9;:15;;;;;:20;;43113:1;;43094:15;:20;;43113:1;;43094:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43125:13:0;;;;;;:9;:13;;;;;:18;;43142:1;;43125:13;:18;;43142:1;;43125:18;:::i;:::-;;;;-1:-1:-1;;43154:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43154:21:0;-1:-1:-1;;;;;43154:21:0;;;;;;;;;43193:27;;43154:16;;43193:27;;;;;;;42613:615;;;:::o;40380:110::-;40456:26;40466:2;40470:7;40456:26;;;;;;;;;;;;:9;:26::i;13855:191::-;13929:16;13948:6;;-1:-1:-1;;;;;13965:17:0;;;-1:-1:-1;;;;;;13965:17:0;;;;;;13998:40;;13948:6;;;;;;;13998:40;;13929:16;13998:40;13918:128;13855:191;:::o;43662:315::-;43817:8;-1:-1:-1;;;;;43808:17:0;:5;-1:-1:-1;;;;;43808:17:0;;;43800:55;;;;-1:-1:-1;;;43800:55:0;;16115:2:1;43800:55:0;;;16097:21:1;16154:2;16134:18;;;16127:30;16193:27;16173:18;;;16166:55;16238:18;;43800:55:0;15913:349:1;43800:55:0;-1:-1:-1;;;;;43866:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;43866:46:0;;;;;;;;;;43928:41;;12944::1;;;43928::0;;12917:18:1;43928:41:0;;;;;;;43662:315;;;:::o;38627:352::-;38784:28;38794:4;38800:2;38804:7;38784:9;:28::i;:::-;38845:48;38868:4;38874:2;38878:7;38887:5;38845:22;:48::i;:::-;38823:148;;;;-1:-1:-1;;;38823:148:0;;;;;;;:::i;54679:100::-;54731:13;54764:7;54757:14;;;;;:::i;8783:723::-;8839:13;9060:10;9056:53;;-1:-1:-1;;9087:10:0;;;;;;;;;;;;-1:-1:-1;;;9087:10:0;;;;;8783:723::o;9056:53::-;9134:5;9119:12;9175:78;9182:9;;9175:78;;9208:8;;;;:::i;:::-;;-1:-1:-1;9231:10:0;;-1:-1:-1;9239:2:0;9231:10;;:::i;:::-;;;9175:78;;;9263:19;9295:6;-1:-1:-1;;;;;9285:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9285:17:0;;9263:39;;9313:154;9320:10;;9313:154;;9347:11;9357:1;9347:11;;:::i;:::-;;-1:-1:-1;9416:10:0;9424:2;9416:5;:10;:::i;:::-;9403:24;;:2;:24;:::i;:::-;9390:39;;9373:6;9380;9373:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9373:56:0;;;;;;;;-1:-1:-1;9444:11:0;9453:2;9444:11;;:::i;:::-;;;9313:154;;41916:360;41976:13;41992:23;42007:7;41992:14;:23::i;:::-;41976:39;;42117:29;42134:1;42138:7;42117:8;:29::i;:::-;-1:-1:-1;;;;;42159:16:0;;;;;;:9;:16;;;;;:21;;42179:1;;42159:16;:21;;42179:1;;42159:21;:::i;:::-;;;;-1:-1:-1;;42198:16:0;;;;:7;:16;;;;;;42191:23;;-1:-1:-1;;;;;;42191:23:0;;;42232:36;42206:7;;42198:16;-1:-1:-1;;;;;42232:36:0;;;;;42198:16;;42232:36;41965:311;41916:360;:::o;40717:321::-;40847:18;40853:2;40857:7;40847:5;:18::i;:::-;40898:54;40929:1;40933:2;40937:7;40946:5;40898:22;:54::i;:::-;40876:154;;;;-1:-1:-1;;;40876:154:0;;;;;;;:::i;44542:980::-;44697:4;-1:-1:-1;;;;;44718:13:0;;15194:20;15242:8;44714:801;;44771:175;;-1:-1:-1;;;44771:175:0;;-1:-1:-1;;;;;44771:36:0;;;;;:175;;11331:10;;44865:4;;44892:7;;44922:5;;44771:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44771:175:0;;;;;;;;-1:-1:-1;;44771:175:0;;;;;;;;;;;;:::i;:::-;;;44750:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45129:13:0;;45125:320;;45172:108;;-1:-1:-1;;;45172:108:0;;;;;;;:::i;45125:320::-;45395:6;45389:13;45380:6;45376:2;45372:15;45365:38;44750:710;-1:-1:-1;;;;;;45010:51:0;-1:-1:-1;;;45010:51:0;;-1:-1:-1;45003:58:0;;44714:801;-1:-1:-1;45499:4:0;44542:980;;;;;;:::o;41374:313::-;-1:-1:-1;;;;;41454:16:0;;41446:61;;;;-1:-1:-1;;;41446:61:0;;19713:2:1;41446:61:0;;;19695:21:1;;;19732:18;;;19725:30;19791:34;19771:18;;;19764:62;19843:18;;41446:61:0;19511:356:1;41446:61:0;-1:-1:-1;;;;;41578:13:0;;;;;;:9;:13;;;;;:18;;41595:1;;41578:13;:18;;41595:1;;41578:18;:::i;:::-;;;;-1:-1:-1;;41607:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41607:21:0;-1:-1:-1;;;;;41607:21:0;;;;;;;;41646:33;;41607:16;;;41646:33;;41607:16;;41646:33;41374:313;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:347::-;701:8;711:6;765:3;758:4;750:6;746:17;742:27;732:55;;783:1;780;773:12;732:55;-1:-1:-1;806:20:1;;-1:-1:-1;;;;;838:30:1;;835:50;;;881:1;878;871:12;835:50;918:4;910:6;906:17;894:29;;970:3;963:4;954:6;946;942:19;938:30;935:39;932:59;;;987:1;984;977:12;932:59;650:347;;;;;:::o;1002:220::-;1044:5;1097:3;1090:4;1082:6;1078:17;1074:27;1064:55;;1115:1;1112;1105:12;1064:55;1137:79;1212:3;1203:6;1190:20;1183:4;1175:6;1171:17;1137:79;:::i;1227:159::-;1294:20;;1354:6;1343:18;;1333:29;;1323:57;;1376:1;1373;1366:12;1323:57;1227:159;;;:::o;1391:171::-;1458:20;;-1:-1:-1;;;;;1507:30:1;;1497:41;;1487:69;;1552:1;1549;1542:12;1567:247;1626:6;1679:2;1667:9;1658:7;1654:23;1650:32;1647:52;;;1695:1;1692;1685:12;1647:52;1734:9;1721:23;1753:31;1778:5;1753:31;:::i;1819:320::-;1906:6;1914;1967:2;1955:9;1946:7;1942:23;1938:32;1935:52;;;1983:1;1980;1973:12;1935:52;2015:9;2009:16;2034:31;2059:5;2034:31;:::i;:::-;2129:2;2114:18;;;;2108:25;2084:5;;2108:25;;-1:-1:-1;;;1819:320:1:o;2144:388::-;2212:6;2220;2273:2;2261:9;2252:7;2248:23;2244:32;2241:52;;;2289:1;2286;2279:12;2241:52;2328:9;2315:23;2347:31;2372:5;2347:31;:::i;:::-;2397:5;-1:-1:-1;2454:2:1;2439:18;;2426:32;2467:33;2426:32;2467:33;:::i;:::-;2519:7;2509:17;;;2144:388;;;;;:::o;2537:456::-;2614:6;2622;2630;2683:2;2671:9;2662:7;2658:23;2654:32;2651:52;;;2699:1;2696;2689:12;2651:52;2738:9;2725:23;2757:31;2782:5;2757:31;:::i;:::-;2807:5;-1:-1:-1;2864:2:1;2849:18;;2836:32;2877:33;2836:32;2877:33;:::i;:::-;2537:456;;2929:7;;-1:-1:-1;;;2983:2:1;2968:18;;;;2955:32;;2537:456::o;2998:665::-;3093:6;3101;3109;3117;3170:3;3158:9;3149:7;3145:23;3141:33;3138:53;;;3187:1;3184;3177:12;3138:53;3226:9;3213:23;3245:31;3270:5;3245:31;:::i;:::-;3295:5;-1:-1:-1;3352:2:1;3337:18;;3324:32;3365:33;3324:32;3365:33;:::i;:::-;3417:7;-1:-1:-1;3471:2:1;3456:18;;3443:32;;-1:-1:-1;3526:2:1;3511:18;;3498:32;-1:-1:-1;;;;;3542:30:1;;3539:50;;;3585:1;3582;3575:12;3539:50;3608:49;3649:7;3640:6;3629:9;3625:22;3608:49;:::i;:::-;3598:59;;;2998:665;;;;;;;:::o;3668:416::-;3733:6;3741;3794:2;3782:9;3773:7;3769:23;3765:32;3762:52;;;3810:1;3807;3800:12;3762:52;3849:9;3836:23;3868:31;3893:5;3868:31;:::i;:::-;3918:5;-1:-1:-1;3975:2:1;3960:18;;3947:32;4017:15;;4010:23;3998:36;;3988:64;;4048:1;4045;4038:12;4089:315;4157:6;4165;4218:2;4206:9;4197:7;4193:23;4189:32;4186:52;;;4234:1;4231;4224:12;4186:52;4273:9;4260:23;4292:31;4317:5;4292:31;:::i;:::-;4342:5;4394:2;4379:18;;;;4366:32;;-1:-1:-1;;;4089:315:1:o;4409:245::-;4467:6;4520:2;4508:9;4499:7;4495:23;4491:32;4488:52;;;4536:1;4533;4526:12;4488:52;4575:9;4562:23;4594:30;4618:5;4594:30;:::i;4659:249::-;4728:6;4781:2;4769:9;4760:7;4756:23;4752:32;4749:52;;;4797:1;4794;4787:12;4749:52;4829:9;4823:16;4848:30;4872:5;4848:30;:::i;4913:450::-;4982:6;5035:2;5023:9;5014:7;5010:23;5006:32;5003:52;;;5051:1;5048;5041:12;5003:52;5091:9;5078:23;-1:-1:-1;;;;;5116:6:1;5113:30;5110:50;;;5156:1;5153;5146:12;5110:50;5179:22;;5232:4;5224:13;;5220:27;-1:-1:-1;5210:55:1;;5261:1;5258;5251:12;5210:55;5284:73;5349:7;5344:2;5331:16;5326:2;5322;5318:11;5284:73;:::i;5368:184::-;5426:6;5479:2;5467:9;5458:7;5454:23;5450:32;5447:52;;;5495:1;5492;5485:12;5447:52;5518:28;5536:9;5518:28;:::i;5557:481::-;5635:6;5643;5651;5704:2;5692:9;5683:7;5679:23;5675:32;5672:52;;;5720:1;5717;5710:12;5672:52;5743:28;5761:9;5743:28;:::i;:::-;5733:38;;5822:2;5811:9;5807:18;5794:32;-1:-1:-1;;;;;5841:6:1;5838:30;5835:50;;;5881:1;5878;5871:12;5835:50;5920:58;5970:7;5961:6;5950:9;5946:22;5920:58;:::i;:::-;5557:481;;5997:8;;-1:-1:-1;5894:84:1;;-1:-1:-1;;;;5557:481:1:o;6043:460::-;6128:6;6136;6144;6197:2;6185:9;6176:7;6172:23;6168:32;6165:52;;;6213:1;6210;6203:12;6165:52;6236:28;6254:9;6236:28;:::i;:::-;6226:38;;6315:2;6304:9;6300:18;6287:32;-1:-1:-1;;;;;6334:6:1;6331:30;6328:50;;;6374:1;6371;6364:12;6328:50;6397:49;6438:7;6429:6;6418:9;6414:22;6397:49;:::i;:::-;6387:59;;;6493:2;6482:9;6478:18;6465:32;6455:42;;6043:460;;;;;:::o;6508:773::-;6612:6;6620;6628;6636;6644;6697:3;6685:9;6676:7;6672:23;6668:33;6665:53;;;6714:1;6711;6704:12;6665:53;6737:28;6755:9;6737:28;:::i;:::-;6727:38;;6816:2;6805:9;6801:18;6788:32;-1:-1:-1;;;;;6880:2:1;6872:6;6869:14;6866:34;;;6896:1;6893;6886:12;6866:34;6919:49;6960:7;6951:6;6940:9;6936:22;6919:49;:::i;:::-;6909:59;;6987:37;7020:2;7009:9;7005:18;6987:37;:::i;:::-;6977:47;;7077:2;7066:9;7062:18;7049:32;7033:48;;7106:2;7096:8;7093:16;7090:36;;;7122:1;7119;7112:12;7090:36;;7161:60;7213:7;7202:8;7191:9;7187:24;7161:60;:::i;:::-;6508:773;;;;-1:-1:-1;6508:773:1;;-1:-1:-1;7240:8:1;;7135:86;6508:773;-1:-1:-1;;;6508:773:1:o;7286:684::-;7388:6;7396;7404;7412;7465:3;7453:9;7444:7;7440:23;7436:33;7433:53;;;7482:1;7479;7472:12;7433:53;7505:28;7523:9;7505:28;:::i;:::-;7495:38;;7584:2;7573:9;7569:18;7556:32;-1:-1:-1;;;;;7648:2:1;7640:6;7637:14;7634:34;;;7664:1;7661;7654:12;7634:34;7687:49;7728:7;7719:6;7708:9;7704:22;7687:49;:::i;:::-;7677:59;;7755:37;7788:2;7777:9;7773:18;7755:37;:::i;:::-;7745:47;;7845:2;7834:9;7830:18;7817:32;7801:48;;7874:2;7864:8;7861:16;7858:36;;;7890:1;7887;7880:12;7858:36;;7913:51;7956:7;7945:8;7934:9;7930:24;7913:51;:::i;7975:252::-;8042:6;8050;8103:2;8091:9;8082:7;8078:23;8074:32;8071:52;;;8119:1;8116;8109:12;8071:52;8142:28;8160:9;8142:28;:::i;8232:180::-;8291:6;8344:2;8332:9;8323:7;8319:23;8315:32;8312:52;;;8360:1;8357;8350:12;8312:52;-1:-1:-1;8383:23:1;;8232:180;-1:-1:-1;8232:180:1:o;8417:245::-;8496:6;8504;8557:2;8545:9;8536:7;8532:23;8528:32;8525:52;;;8573:1;8570;8563:12;8525:52;-1:-1:-1;;8596:16:1;;8652:2;8637:18;;;8631:25;8596:16;;8631:25;;-1:-1:-1;8417:245:1:o;8667:269::-;8724:6;8777:2;8765:9;8756:7;8752:23;8748:32;8745:52;;;8793:1;8790;8783:12;8745:52;8832:9;8819:23;8882:4;8875:5;8871:16;8864:5;8861:27;8851:55;;8902:1;8899;8892:12;9058:257;9099:3;9137:5;9131:12;9164:6;9159:3;9152:19;9180:63;9236:6;9229:4;9224:3;9220:14;9213:4;9206:5;9202:16;9180:63;:::i;:::-;9297:2;9276:15;-1:-1:-1;;9272:29:1;9263:39;;;;9304:4;9259:50;;9058:257;-1:-1:-1;;9058:257:1:o;9320:271::-;9503:6;9495;9490:3;9477:33;9459:3;9529:16;;9554:13;;;9529:16;9320:271;-1:-1:-1;9320:271:1:o;9596:274::-;9725:3;9763:6;9757:13;9779:53;9825:6;9820:3;9813:4;9805:6;9801:17;9779:53;:::i;:::-;9848:16;;;;;9596:274;-1:-1:-1;;9596:274:1:o;9875:811::-;10001:3;10030:1;10063:6;10057:13;10093:36;10119:9;10093:36;:::i;:::-;10148:1;10165:18;;;10192:104;;;;10310:1;10305:356;;;;10158:503;;10192:104;-1:-1:-1;;10225:24:1;;10213:37;;10270:16;;;;-1:-1:-1;10192:104:1;;10305:356;10336:6;10333:1;10326:17;10366:4;10411:2;10408:1;10398:16;10436:1;10450:165;10464:6;10461:1;10458:13;10450:165;;;10542:14;;10529:11;;;10522:35;10585:16;;;;10479:10;;10450:165;;;10454:3;;;10644:6;10639:3;10635:16;10628:23;;10158:503;-1:-1:-1;10677:3:1;;9875:811;-1:-1:-1;;;;;;9875:811:1:o;10691:637::-;10971:3;11009:6;11003:13;11025:53;11071:6;11066:3;11059:4;11051:6;11047:17;11025:53;:::i;:::-;11141:13;;11100:16;;;;11163:57;11141:13;11100:16;11197:4;11185:17;;11163:57;:::i;:::-;-1:-1:-1;;;11242:20:1;;11271:22;;;11320:1;11309:13;;10691:637;-1:-1:-1;;;;10691:637:1:o;12032:488::-;-1:-1:-1;;;;;12301:15:1;;;12283:34;;12353:15;;12348:2;12333:18;;12326:43;12400:2;12385:18;;12378:34;;;12448:3;12443:2;12428:18;;12421:31;;;12226:4;;12469:45;;12494:19;;12486:6;12469:45;:::i;:::-;12461:53;12032:488;-1:-1:-1;;;;;;12032:488:1:o;12996:217::-;13143:2;13132:9;13125:21;13106:4;13163:44;13203:2;13192:9;13188:18;13180:6;13163:44;:::i;13797:414::-;13999:2;13981:21;;;14038:2;14018:18;;;14011:30;14077:34;14072:2;14057:18;;14050:62;-1:-1:-1;;;14143:2:1;14128:18;;14121:48;14201:3;14186:19;;13797:414::o;20285:356::-;20487:2;20469:21;;;20506:18;;;20499:30;20565:34;20560:2;20545:18;;20538:62;20632:2;20617:18;;20285:356::o;22653:413::-;22855:2;22837:21;;;22894:2;22874:18;;;22867:30;22933:34;22928:2;22913:18;;22906:62;-1:-1:-1;;;22999:2:1;22984:18;;22977:47;23056:3;23041:19;;22653:413::o;23478:640::-;23759:6;23747:19;;23729:38;;-1:-1:-1;;;;;23803:32:1;;23798:2;23783:18;;23776:60;23823:3;23867:2;23852:18;;23845:31;;;-1:-1:-1;;23899:45:1;;23924:19;;23916:6;23899:45;:::i;:::-;23994:6;23987:14;23980:22;23975:2;23964:9;23960:18;23953:50;24052:9;24044:6;24040:22;24034:3;24023:9;24019:19;24012:51;24080:32;24105:6;24097;24080:32;:::i;:::-;24072:40;23478:640;-1:-1:-1;;;;;;;;23478:640:1:o;24123:717::-;24390:6;24382;24378:19;24367:9;24360:38;24434:3;24429:2;24418:9;24414:18;24407:31;24341:4;24461:45;24501:3;24490:9;24486:19;24478:6;24461:45;:::i;:::-;-1:-1:-1;;;;;24546:6:1;24542:31;24537:2;24526:9;24522:18;24515:59;24622:9;24614:6;24610:22;24605:2;24594:9;24590:18;24583:50;24657:6;24649;24642:22;24711:6;24703;24698:2;24690:6;24686:15;24673:45;24764:1;24759:2;24750:6;24742;24738:19;24734:28;24727:39;24831:2;24824;24820:7;24815:2;24807:6;24803:15;24799:29;24791:6;24787:42;24783:51;24775:59;;;24123:717;;;;;;;;:::o;24845:555::-;25102:6;25094;25090:19;25079:9;25072:38;25146:3;25141:2;25130:9;25126:18;25119:31;25053:4;25173:45;25213:3;25202:9;25198:19;25190:6;25173:45;:::i;:::-;-1:-1:-1;;;;;25258:6:1;25254:31;25249:2;25238:9;25234:18;25227:59;25334:9;25326:6;25322:22;25317:2;25306:9;25302:18;25295:50;25362:32;25387:6;25379;25362:32;:::i;:::-;25354:40;24845:555;-1:-1:-1;;;;;;;24845:555:1:o;25405:1498::-;25751:6;25743;25739:19;25728:9;25721:38;25702:4;25778:2;25816:3;25811:2;25800:9;25796:18;25789:31;25840:1;25873:6;25867:13;25903:36;25929:9;25903:36;:::i;:::-;25976:6;25970:3;25959:9;25955:19;25948:35;26002:3;26024:1;26056:2;26045:9;26041:18;26073:1;26068:122;;;;26204:1;26199:354;;;;26034:519;;26068:122;-1:-1:-1;;26116:24:1;;26096:18;;;26089:52;26176:3;26161:19;;;-1:-1:-1;26068:122:1;;26199:354;26230:6;26227:1;26220:17;26278:2;26275:1;26265:16;26303:1;26317:180;26331:6;26328:1;26325:13;26317:180;;;26424:14;;26400:17;;;26396:26;;26389:50;26467:16;;;;26346:10;;26317:180;;;26521:17;;26517:26;;;-1:-1:-1;;26034:519:1;;;;;;26598:9;26593:3;26589:19;26584:2;26573:9;26569:18;26562:47;26632:29;26657:3;26649:6;26632:29;:::i;:::-;26618:43;;;26670:54;26720:2;26709:9;26705:18;26697:6;-1:-1:-1;;;;;9015:31:1;9003:44;;8941:112;26670:54;-1:-1:-1;;;;;9015:31:1;;26783:3;26768:19;;9003:44;26837:9;26829:6;26825:22;26819:3;26808:9;26804:19;26797:51;26865:32;26890:6;26882;26865:32;:::i;:::-;26857:40;25405:1498;-1:-1:-1;;;;;;;;;25405:1498:1:o;27343:128::-;27383:3;27414:1;27410:6;27407:1;27404:13;27401:39;;;27420:18;;:::i;:::-;-1:-1:-1;27456:9:1;;27343:128::o;27476:120::-;27516:1;27542;27532:35;;27547:18;;:::i;:::-;-1:-1:-1;27581:9:1;;27476:120::o;27601:125::-;27641:4;27669:1;27666;27663:8;27660:34;;;27674:18;;:::i;:::-;-1:-1:-1;27711:9:1;;27601:125::o;27731:258::-;27803:1;27813:113;27827:6;27824:1;27821:13;27813:113;;;27903:11;;;27897:18;27884:11;;;27877:39;27849:2;27842:10;27813:113;;;27944:6;27941:1;27938:13;27935:48;;;-1:-1:-1;;27979:1:1;27961:16;;27954:27;27731:258::o;27994:380::-;28073:1;28069:12;;;;28116;;;28137:61;;28191:4;28183:6;28179:17;28169:27;;28137:61;28244:2;28236:6;28233:14;28213:18;28210:38;28207:161;;;28290:10;28285:3;28281:20;28278:1;28271:31;28325:4;28322:1;28315:15;28353:4;28350:1;28343:15;28207:161;;27994:380;;;:::o;28379:135::-;28418:3;-1:-1:-1;;28439:17:1;;28436:43;;;28459:18;;:::i;:::-;-1:-1:-1;28506:1:1;28495:13;;28379:135::o;28519:112::-;28551:1;28577;28567:35;;28582:18;;:::i;:::-;-1:-1:-1;28616:9:1;;28519:112::o;28636:127::-;28697:10;28692:3;28688:20;28685:1;28678:31;28728:4;28725:1;28718:15;28752:4;28749:1;28742:15;28768:127;28829:10;28824:3;28820:20;28817:1;28810:31;28860:4;28857:1;28850:15;28884:4;28881:1;28874:15;28900:127;28961:10;28956:3;28952:20;28949:1;28942:31;28992:4;28989:1;28982:15;29016:4;29013:1;29006:15;29032:127;29093:10;29088:3;29084:20;29081:1;29074:31;29124:4;29121:1;29114:15;29148:4;29145:1;29138:15;29164:131;-1:-1:-1;;;;;29239:31:1;;29229:42;;29219:70;;29285:1;29282;29275:12;29300:131;-1:-1:-1;;;;;;29374:32:1;;29364:43;;29354:71;;29421:1;29418;29411:12

Swarm Source

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