ETH Price: $3,354.21 (-0.83%)
Gas: 9 Gwei

Token

tiny dinos (dino)
 

Overview

Max Total Supply

0 dino

Holders

3,426

Market

Volume (24H)

0.029 ETH

Min Price (24H)

$42.93 @ 0.012800 ETH

Max Price (24H)

$54.34 @ 0.016200 ETH
Filtered by Token Holder
metaverse-health.eth
Balance
1 dino
0x8246137c39bb05261972655186a868bdc8a9eb11
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

cc0 layerzero omnichain NFTs. 10k fully minted for free. No roadmap or discord, just tiny dinos and cross-chain vibes.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
tinydinos

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-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()))
                : "";
    }

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/NonblockingReceiver.sol

pragma solidity ^0.8.6;

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

    struct FailedMessages {
        uint256 payloadLength;
        bytes32 payloadHash;
    }

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

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

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

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

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

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

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

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

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

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

// File: contracts/tinydinos-eth.sol

pragma solidity ^0.8.7;

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

    uint256 gasForDestinationLzReceive = 350000;

    constructor(string memory baseURI_, address _layerZeroEndpoint)
        ERC721("tiny dinos", "dino")
    {
        _owner = msg.sender;
        endpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
        baseURI = baseURI_;
    }

    // mint function
    // you can choose to mint 1 or 2
    // mint is free, but payments are accepted
    function mint(uint8 numTokens) external payable {
        require(numTokens < 3, "tiny dinos: Max 2 NFTs per transaction");
        require(
            nextTokenId + numTokens <= MAX_MINT_ETHEREUM,
            "tiny dinos: Mint exceeds supply"
        );
        _safeMint(msg.sender, ++nextTokenId);
        if (numTokens == 2) {
            _safeMint(msg.sender, ++nextTokenId);
        }
    }

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

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

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

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

        // get the fees we need to pay to LayerZero + Relayer to cover message delivery
        // you will be refunded for extra gas paid
        (uint256 messageFee, ) = endpoint.estimateFees(
            _chainId,
            address(this),
            payload,
            false,
            adapterParams
        );

        require(
            msg.value >= messageFee,
            "tiny dinos: 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, "tiny dinos: Failed to withdraw Ether");
    }

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611970600c55612710600d5562055730600e553480156200002457600080fd5b5060405162003a8638038062003a86833981016040819052620000479162000243565b6040518060400160405280600a81526020016974696e792064696e6f7360b01b8152506040518060400160405280600481526020016364696e6f60e01b815250620000a16200009b6200011660201b60201c565b6200011a565b8151620000b69060019060208501906200016a565b508051620000cc9060029060208401906200016a565b5050600a8054336001600160a01b031991821617909155600780549091166001600160a01b0384161790555081516200010d90600b9060208501906200016a565b50505062000371565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001789062000334565b90600052602060002090601f0160209004810192826200019c5760008555620001e7565b82601f10620001b757805160ff1916838001178555620001e7565b82800160010185558215620001e7579182015b82811115620001e7578251825591602001919060010190620001ca565b50620001f5929150620001f9565b5090565b5b80821115620001f55760008155600101620001fa565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200023e57600080fd5b919050565b600080604083850312156200025757600080fd5b82516001600160401b03808211156200026f57600080fd5b818501915085601f8301126200028457600080fd5b81518181111562000299576200029962000210565b604051601f8201601f19908116603f01168101908382118183101715620002c457620002c462000210565b81604052828152602093508884848701011115620002e157600080fd5b600091505b82821015620003055784820184015181830185015290830190620002e6565b82821115620003175760008484830101525b95506200032991505085820162000226565b925050509250929050565b600181811c908216806200034957607f821691505b602082108114156200036b57634e487b7160e01b600052602260045260246000fd5b50919050565b61370580620003816000396000f3fe6080604052600436106101c15760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610558578063eb8d72b7146105ae578063ed88c68e146101e6578063f2fde38b146105ce57600080fd5b8063b88d4fde146104f2578063c87b56dd14610512578063cf89fa0314610532578063d1deba1f1461054557600080fd5b8063943fb872116100d1578063943fb8721461047057806395d89b4114610490578063a22cb465146104a5578063b2bdfa7b146104c557600080fd5b80637533d788146103ba5780638da5cb5b146103da5780638ee749121461040557600080fd5b80632e1a7d4d116101645780636352211e1161013e5780636352211e146103445780636ecd23061461036457806370a0823114610377578063715018a6146103a557600080fd5b80632e1a7d4d146102e457806342842e0e1461030457806355f804b31461032457600080fd5b8063081812fc116101a0578063081812fc1461023f578063095ea7b3146102845780631c37a822146102a457806323b872dd146102c457600080fd5b80621d3567146101c657806301ffc9a7146101e857806306fdde031461021d575b600080fd5b3480156101d257600080fd5b506101e66101e1366004612c6e565b6105ee565b005b3480156101f457600080fd5b50610208610203366004612d21565b610832565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610917565b6040516102149190612db4565b34801561024b57600080fd5b5061025f61025a366004612dc7565b6109a9565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610214565b34801561029057600080fd5b506101e661029f366004612e02565b610a83565b3480156102b057600080fd5b506101e66102bf366004612c6e565b610c10565b3480156102d057600080fd5b506101e66102df366004612e2e565b610cab565b3480156102f057600080fd5b506101e66102ff366004612dc7565b610d4c565b34801561031057600080fd5b506101e661031f366004612e2e565b610ec0565b34801561033057600080fd5b506101e661033f366004612e6f565b610edb565b34801561035057600080fd5b5061025f61035f366004612dc7565b610f6f565b6101e6610372366004612eb8565b611021565b34801561038357600080fd5b50610397610392366004612edb565b61116f565b604051908152602001610214565b3480156103b157600080fd5b506101e661123d565b3480156103c657600080fd5b506102326103d5366004612ef8565b6112ca565b3480156103e657600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661025f565b34801561041157600080fd5b5061045b610420366004612f13565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610214565b34801561047c57600080fd5b506101e661048b366004612dc7565b611364565b34801561049c57600080fd5b506102326113ea565b3480156104b157600080fd5b506101e66104c0366004612f6a565b6113f9565b3480156104d157600080fd5b50600a5461025f9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104fe57600080fd5b506101e661050d366004612fa8565b611404565b34801561051e57600080fd5b5061023261052d366004612dc7565b6114a6565b6101e6610540366004613008565b6115b6565b6101e661055336600461306d565b611998565b34801561056457600080fd5b506102086105733660046130f9565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105ba57600080fd5b506101e66105c9366004613127565b611b8a565b3480156105da57600080fd5b506101e66105e9366004612edb565b611c29565b60075473ffffffffffffffffffffffffffffffffffffffff16331461061257600080fd5b61ffff8416600090815260096020526040902080546106309061317a565b9050835114801561066f575061ffff841660009081526009602052604090819020905161065d91906131ce565b60405180910390208380519060200120145b610700576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a8229061074290879087908790879060040161325e565b600060405180830381600087803b15801561075c57600080fd5b505af192505050801561076d575060015b61082c576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516107b791906132a8565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d9061082390869086908690869061325e565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108c557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061091157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600180546109269061317a565b80601f01602080910402602001604051908101604052809291908181526020018280546109529061317a565b801561099f5780601f106109745761010080835404028352916020019161099f565b820191906000526020600020905b81548152906001019060200180831161098257829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610a5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106f7565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a8e82610f6f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b3373ffffffffffffffffffffffffffffffffffffffff82161480610b755750610b758133610573565b610c01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f7565b610c0b8383611d56565b505050565b333014610c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e00000000000000000000000000000000000000000060648201526084016106f7565b61082c84848484611df6565b610cb53382611e23565b610d41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106f7565b610c0b838383611f93565b60005473ffffffffffffffffffffffffffffffffffffffff163314610dcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b600a5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610e27576040519150601f19603f3d011682016040523d82523d6000602084013e610e2c565b606091505b5050905080610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f74696e792064696e6f733a204661696c656420746f207769746864726177204560448201527f746865720000000000000000000000000000000000000000000000000000000060648201526084016106f7565b5050565b610c0b83838360405180602001604052806000815250611404565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f5c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b8051610ebc90600b906020840190612a31565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106f7565b60038160ff16106110b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f74696e792064696e6f733a204d61782032204e46547320706572207472616e7360448201527f616374696f6e000000000000000000000000000000000000000000000000000060648201526084016106f7565b600d548160ff16600c546110c891906132f3565b1115611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f74696e792064696e6f733a204d696e74206578636565647320737570706c790060448201526064016106f7565b61114d33600c600081546111439061330b565b91829055506121fa565b8060ff166002141561116c5761116c33600c600081546111439061330b565b50565b600073ffffffffffffffffffffffffffffffffffffffff8216611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106f7565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff1633146112be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b6112c86000612214565b565b600960205260009081526040902080546112e39061317a565b80601f016020809104026020016040519081016040528092919081815260200182805461130f9061317a565b801561135c5780601f106113315761010080835404028352916020019161135c565b820191906000526020600020905b81548152906001019060200180831161133f57829003601f168201915b505050505081565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b600e55565b6060600280546109269061317a565b610ebc338383612289565b61140e3383611e23565b61149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106f7565b61082c848484846123b7565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff1661155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106f7565b600061156461245a565b9050600081511161158457604051806020016040528060008152506115af565b8061158e84612469565b60405160200161159f929190613344565b6040516020818303038152906040525b9392505050565b6115bf81610f6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f736500000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b61ffff8216600090815260096020526040812080546116979061317a565b905011611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c00000000000000000000000000000000000060648201526084016106f7565b61172f8161259b565b60408051336020820152808201839052815180820383018152606082018352600e547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526007547f40a7bb1000000000000000000000000000000000000000000000000000000000909452909260019260009173ffffffffffffffffffffffffffffffffffffffff16906340a7bb10906117f3908990309089908790899060a601613373565b6040805180830381865afa15801561180f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061183391906133d2565b509050803410156118ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604f60248201527f74696e792064696e6f733a206d73672e76616c7565206e6f7420656e6f75676860448201527f20746f20636f766572206d6573736167654665652e2053656e6420676173206660648201527f6f72206d65737361676520666565730000000000000000000000000000000000608482015260a4016106f7565b60075461ffff871660009081526009602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9093169263c580310092349261195e928c928b913391908b906004016133f6565b6000604051808303818588803b15801561197757600080fd5b505af115801561198b573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516119b99087906132a8565b908152604080516020928190038301902067ffffffffffffffff87166000908152925290206001810154909150611a72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f657373616765000000000000000000000000000000000000000000000000000060648201526084016106f7565b805482148015611a9c575080600101548383604051611a9292919061350e565b6040518091039020145b611b02576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016106f7565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290611b50908990899089908990899060040161351e565b600060405180830381600087803b158015611b6a57600080fd5b505af1158015611b7e573d6000803e3d6000fd5b50505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b61ffff8316600090815260096020526040902061082c908383612ab5565b60005473ffffffffffffffffffffffffffffffffffffffff163314611caa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff8116611d4d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106f7565b61116c81612214565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611db082610f6f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611e0d919061359e565b91509150611e1b82826121fa565b505050505050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16611ed4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106f7565b6000611edf83610f6f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f4e57508373ffffffffffffffffffffffffffffffffffffffff16611f36846109a9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f8b575073ffffffffffffffffffffffffffffffffffffffff80821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611fb382610f6f565b73ffffffffffffffffffffffffffffffffffffffff1614612056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106f7565b73ffffffffffffffffffffffffffffffffffffffff82166120f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106f7565b612103600082611d56565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604081208054600192906121399084906135cc565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081208054600192906121749084906132f3565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ebc828260405180602001604052806000815250612668565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561231f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526006602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6123c2848484611f93565b6123ce8484848461270b565b61082c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b6060600b80546109269061317a565b6060816124a957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156124d357806124bd8161330b565b91506124cc9050600a83613612565b91506124ad565b60008167ffffffffffffffff8111156124ee576124ee612b73565b6040519080825280601f01601f191660200182016040528015612518576020820181803683370190505b5090505b8415611f8b5761252d6001836135cc565b915061253a600a86613626565b6125459060306132f3565b60f81b81838151811061255a5761255a61363a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612594600a86613612565b945061251c565b60006125a682610f6f565b90506125b3600083611d56565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081208054600192906125e99084906135cc565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61267283836128fb565b61267f600084848461270b565b610c0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b600073ffffffffffffffffffffffffffffffffffffffff84163b156128f0576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612782903390899088908890600401613669565b6020604051808303816000875af19250505080156127db575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526127d8918101906136b2565b60015b6128a5573d808015612809576040519150601f19603f3d011682016040523d82523d6000602084013e61280e565b606091505b50805161289d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611f8b565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8216612978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081208054600192906129ae9084906132f3565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612a3d9061317a565b90600052602060002090601f016020900481019282612a5f5760008555612aa5565b82601f10612a7857805160ff1916838001178555612aa5565b82800160010185558215612aa5579182015b82811115612aa5578251825591602001919060010190612a8a565b50612ab1929150612b47565b5090565b828054612ac19061317a565b90600052602060002090601f016020900481019282612ae35760008555612aa5565b82601f10612b1a578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612aa5565b82800160010185558215612aa5579182015b82811115612aa5578235825591602001919060010190612b2c565b5b80821115612ab15760008155600101612b48565b803561ffff81168114612b6e57600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612bbd57612bbd612b73565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612c0357612c03612b73565b81604052809350858152868686011115612c1c57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612c4757600080fd5b6115af83833560208501612ba2565b803567ffffffffffffffff81168114612b6e57600080fd5b60008060008060808587031215612c8457600080fd5b612c8d85612b5c565b9350602085013567ffffffffffffffff80821115612caa57600080fd5b612cb688838901612c36565b9450612cc460408801612c56565b93506060870135915080821115612cda57600080fd5b50612ce787828801612c36565b91505092959194509250565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461116c57600080fd5b600060208284031215612d3357600080fd5b81356115af81612cf3565b60005b83811015612d59578181015183820152602001612d41565b8381111561082c5750506000910152565b60008151808452612d82816020860160208601612d3e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006115af6020830184612d6a565b600060208284031215612dd957600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461116c57600080fd5b60008060408385031215612e1557600080fd5b8235612e2081612de0565b946020939093013593505050565b600080600060608486031215612e4357600080fd5b8335612e4e81612de0565b92506020840135612e5e81612de0565b929592945050506040919091013590565b600060208284031215612e8157600080fd5b813567ffffffffffffffff811115612e9857600080fd5b8201601f81018413612ea957600080fd5b611f8b84823560208401612ba2565b600060208284031215612eca57600080fd5b813560ff811681146115af57600080fd5b600060208284031215612eed57600080fd5b81356115af81612de0565b600060208284031215612f0a57600080fd5b6115af82612b5c565b600080600060608486031215612f2857600080fd5b612f3184612b5c565b9250602084013567ffffffffffffffff811115612f4d57600080fd5b612f5986828701612c36565b925050604084013590509250925092565b60008060408385031215612f7d57600080fd5b8235612f8881612de0565b915060208301358015158114612f9d57600080fd5b809150509250929050565b60008060008060808587031215612fbe57600080fd5b8435612fc981612de0565b93506020850135612fd981612de0565b925060408501359150606085013567ffffffffffffffff811115612ffc57600080fd5b612ce787828801612c36565b6000806040838503121561301b57600080fd5b612e2083612b5c565b60008083601f84011261303657600080fd5b50813567ffffffffffffffff81111561304e57600080fd5b60208301915083602082850101111561306657600080fd5b9250929050565b60008060008060006080868803121561308557600080fd5b61308e86612b5c565b9450602086013567ffffffffffffffff808211156130ab57600080fd5b6130b789838a01612c36565b95506130c560408901612c56565b945060608801359150808211156130db57600080fd5b506130e888828901613024565b969995985093965092949392505050565b6000806040838503121561310c57600080fd5b823561311781612de0565b91506020830135612f9d81612de0565b60008060006040848603121561313c57600080fd5b61314584612b5c565b9250602084013567ffffffffffffffff81111561316157600080fd5b61316d86828701613024565b9497909650939450505050565b600181811c9082168061318e57607f821691505b602082108114156131c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60008083546131dc8161317a565b600182811680156131f4576001811461322357613252565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00841687528287019450613252565b8760005260208060002060005b858110156132495781548a820152908401908201613230565b50505082870194505b50929695505050505050565b61ffff8516815260806020820152600061327b6080830186612d6a565b67ffffffffffffffff85166040840152828103606084015261329d8185612d6a565b979650505050505050565b600082516132ba818460208701612d3e565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613306576133066132c4565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561333d5761333d6132c4565b5060010190565b60008351613356818460208801612d3e565b83519083019061336a818360208801612d3e565b01949350505050565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a0604082015260006133ac60a0830186612d6a565b841515606084015282810360808401526133c68185612d6a565b98975050505050505050565b600080604083850312156133e557600080fd5b505080516020909101519092909150565b61ffff871681526000602060c081840152600088546134148161317a565b8060c087015260e0600180841660008114613436576001811461346957613497565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a015261010089019550613497565b8d6000528660002060005b8581101561348f5781548b8201860152908301908801613474565b8a0184019650505b505050505083810360408501526134ae8189612d6a565b9150506134d3606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a08401526135018185612d6a565b9998505050505050505050565b8183823760009101908152919050565b61ffff8616815260806020820152600061353b6080830187612d6a565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b600080604083850312156135b157600080fd5b82516135bc81612de0565b6020939093015192949293505050565b6000828210156135de576135de6132c4565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613621576136216135e3565b500490565b600082613635576136356135e3565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526136a86080830184612d6a565b9695505050505050565b6000602082840312156136c457600080fd5b81516115af81612cf356fea26469706673582212204bd9f0d1e711f21d2e921e02d62d0ca4621dce4c0d1325b2acf66cca4c38207d64736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67500000000000000000000000000000000000000000000000000000000000000046e756c6c00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c15760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610558578063eb8d72b7146105ae578063ed88c68e146101e6578063f2fde38b146105ce57600080fd5b8063b88d4fde146104f2578063c87b56dd14610512578063cf89fa0314610532578063d1deba1f1461054557600080fd5b8063943fb872116100d1578063943fb8721461047057806395d89b4114610490578063a22cb465146104a5578063b2bdfa7b146104c557600080fd5b80637533d788146103ba5780638da5cb5b146103da5780638ee749121461040557600080fd5b80632e1a7d4d116101645780636352211e1161013e5780636352211e146103445780636ecd23061461036457806370a0823114610377578063715018a6146103a557600080fd5b80632e1a7d4d146102e457806342842e0e1461030457806355f804b31461032457600080fd5b8063081812fc116101a0578063081812fc1461023f578063095ea7b3146102845780631c37a822146102a457806323b872dd146102c457600080fd5b80621d3567146101c657806301ffc9a7146101e857806306fdde031461021d575b600080fd5b3480156101d257600080fd5b506101e66101e1366004612c6e565b6105ee565b005b3480156101f457600080fd5b50610208610203366004612d21565b610832565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610917565b6040516102149190612db4565b34801561024b57600080fd5b5061025f61025a366004612dc7565b6109a9565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610214565b34801561029057600080fd5b506101e661029f366004612e02565b610a83565b3480156102b057600080fd5b506101e66102bf366004612c6e565b610c10565b3480156102d057600080fd5b506101e66102df366004612e2e565b610cab565b3480156102f057600080fd5b506101e66102ff366004612dc7565b610d4c565b34801561031057600080fd5b506101e661031f366004612e2e565b610ec0565b34801561033057600080fd5b506101e661033f366004612e6f565b610edb565b34801561035057600080fd5b5061025f61035f366004612dc7565b610f6f565b6101e6610372366004612eb8565b611021565b34801561038357600080fd5b50610397610392366004612edb565b61116f565b604051908152602001610214565b3480156103b157600080fd5b506101e661123d565b3480156103c657600080fd5b506102326103d5366004612ef8565b6112ca565b3480156103e657600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661025f565b34801561041157600080fd5b5061045b610420366004612f13565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610214565b34801561047c57600080fd5b506101e661048b366004612dc7565b611364565b34801561049c57600080fd5b506102326113ea565b3480156104b157600080fd5b506101e66104c0366004612f6a565b6113f9565b3480156104d157600080fd5b50600a5461025f9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104fe57600080fd5b506101e661050d366004612fa8565b611404565b34801561051e57600080fd5b5061023261052d366004612dc7565b6114a6565b6101e6610540366004613008565b6115b6565b6101e661055336600461306d565b611998565b34801561056457600080fd5b506102086105733660046130f9565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105ba57600080fd5b506101e66105c9366004613127565b611b8a565b3480156105da57600080fd5b506101e66105e9366004612edb565b611c29565b60075473ffffffffffffffffffffffffffffffffffffffff16331461061257600080fd5b61ffff8416600090815260096020526040902080546106309061317a565b9050835114801561066f575061ffff841660009081526009602052604090819020905161065d91906131ce565b60405180910390208380519060200120145b610700576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a8229061074290879087908790879060040161325e565b600060405180830381600087803b15801561075c57600080fd5b505af192505050801561076d575060015b61082c576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516107b791906132a8565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d9061082390869086908690869061325e565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108c557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061091157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600180546109269061317a565b80601f01602080910402602001604051908101604052809291908181526020018280546109529061317a565b801561099f5780601f106109745761010080835404028352916020019161099f565b820191906000526020600020905b81548152906001019060200180831161098257829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610a5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106f7565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a8e82610f6f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b3373ffffffffffffffffffffffffffffffffffffffff82161480610b755750610b758133610573565b610c01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f7565b610c0b8383611d56565b505050565b333014610c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e00000000000000000000000000000000000000000060648201526084016106f7565b61082c84848484611df6565b610cb53382611e23565b610d41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106f7565b610c0b838383611f93565b60005473ffffffffffffffffffffffffffffffffffffffff163314610dcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b600a5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610e27576040519150601f19603f3d011682016040523d82523d6000602084013e610e2c565b606091505b5050905080610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f74696e792064696e6f733a204661696c656420746f207769746864726177204560448201527f746865720000000000000000000000000000000000000000000000000000000060648201526084016106f7565b5050565b610c0b83838360405180602001604052806000815250611404565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f5c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b8051610ebc90600b906020840190612a31565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106f7565b60038160ff16106110b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f74696e792064696e6f733a204d61782032204e46547320706572207472616e7360448201527f616374696f6e000000000000000000000000000000000000000000000000000060648201526084016106f7565b600d548160ff16600c546110c891906132f3565b1115611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f74696e792064696e6f733a204d696e74206578636565647320737570706c790060448201526064016106f7565b61114d33600c600081546111439061330b565b91829055506121fa565b8060ff166002141561116c5761116c33600c600081546111439061330b565b50565b600073ffffffffffffffffffffffffffffffffffffffff8216611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106f7565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff1633146112be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b6112c86000612214565b565b600960205260009081526040902080546112e39061317a565b80601f016020809104026020016040519081016040528092919081815260200182805461130f9061317a565b801561135c5780601f106113315761010080835404028352916020019161135c565b820191906000526020600020905b81548152906001019060200180831161133f57829003601f168201915b505050505081565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b600e55565b6060600280546109269061317a565b610ebc338383612289565b61140e3383611e23565b61149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106f7565b61082c848484846123b7565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff1661155a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106f7565b600061156461245a565b9050600081511161158457604051806020016040528060008152506115af565b8061158e84612469565b60405160200161159f929190613344565b6040516020818303038152906040525b9392505050565b6115bf81610f6f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f736500000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b61ffff8216600090815260096020526040812080546116979061317a565b905011611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c00000000000000000000000000000000000060648201526084016106f7565b61172f8161259b565b60408051336020820152808201839052815180820383018152606082018352600e547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526007547f40a7bb1000000000000000000000000000000000000000000000000000000000909452909260019260009173ffffffffffffffffffffffffffffffffffffffff16906340a7bb10906117f3908990309089908790899060a601613373565b6040805180830381865afa15801561180f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061183391906133d2565b509050803410156118ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604f60248201527f74696e792064696e6f733a206d73672e76616c7565206e6f7420656e6f75676860448201527f20746f20636f766572206d6573736167654665652e2053656e6420676173206660648201527f6f72206d65737361676520666565730000000000000000000000000000000000608482015260a4016106f7565b60075461ffff871660009081526009602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9093169263c580310092349261195e928c928b913391908b906004016133f6565b6000604051808303818588803b15801561197757600080fd5b505af115801561198b573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516119b99087906132a8565b908152604080516020928190038301902067ffffffffffffffff87166000908152925290206001810154909150611a72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f657373616765000000000000000000000000000000000000000000000000000060648201526084016106f7565b805482148015611a9c575080600101548383604051611a9292919061350e565b6040518091039020145b611b02576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016106f7565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290611b50908990899089908990899060040161351e565b600060405180830381600087803b158015611b6a57600080fd5b505af1158015611b7e573d6000803e3d6000fd5b50505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b61ffff8316600090815260096020526040902061082c908383612ab5565b60005473ffffffffffffffffffffffffffffffffffffffff163314611caa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff8116611d4d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106f7565b61116c81612214565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611db082610f6f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611e0d919061359e565b91509150611e1b82826121fa565b505050505050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16611ed4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106f7565b6000611edf83610f6f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f4e57508373ffffffffffffffffffffffffffffffffffffffff16611f36846109a9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f8b575073ffffffffffffffffffffffffffffffffffffffff80821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611fb382610f6f565b73ffffffffffffffffffffffffffffffffffffffff1614612056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106f7565b73ffffffffffffffffffffffffffffffffffffffff82166120f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106f7565b612103600082611d56565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604081208054600192906121399084906135cc565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081208054600192906121749084906132f3565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ebc828260405180602001604052806000815250612668565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561231f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526006602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6123c2848484611f93565b6123ce8484848461270b565b61082c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b6060600b80546109269061317a565b6060816124a957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156124d357806124bd8161330b565b91506124cc9050600a83613612565b91506124ad565b60008167ffffffffffffffff8111156124ee576124ee612b73565b6040519080825280601f01601f191660200182016040528015612518576020820181803683370190505b5090505b8415611f8b5761252d6001836135cc565b915061253a600a86613626565b6125459060306132f3565b60f81b81838151811061255a5761255a61363a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612594600a86613612565b945061251c565b60006125a682610f6f565b90506125b3600083611d56565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081208054600192906125e99084906135cc565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61267283836128fb565b61267f600084848461270b565b610c0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b600073ffffffffffffffffffffffffffffffffffffffff84163b156128f0576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612782903390899088908890600401613669565b6020604051808303816000875af19250505080156127db575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526127d8918101906136b2565b60015b6128a5573d808015612809576040519150601f19603f3d011682016040523d82523d6000602084013e61280e565b606091505b50805161289d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611f8b565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8216612978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081208054600192906129ae9084906132f3565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612a3d9061317a565b90600052602060002090601f016020900481019282612a5f5760008555612aa5565b82601f10612a7857805160ff1916838001178555612aa5565b82800160010185558215612aa5579182015b82811115612aa5578251825591602001919060010190612a8a565b50612ab1929150612b47565b5090565b828054612ac19061317a565b90600052602060002090601f016020900481019282612ae35760008555612aa5565b82601f10612b1a578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612aa5565b82800160010185558215612aa5579182015b82811115612aa5578235825591602001919060010190612b2c565b5b80821115612ab15760008155600101612b48565b803561ffff81168114612b6e57600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612bbd57612bbd612b73565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612c0357612c03612b73565b81604052809350858152868686011115612c1c57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612c4757600080fd5b6115af83833560208501612ba2565b803567ffffffffffffffff81168114612b6e57600080fd5b60008060008060808587031215612c8457600080fd5b612c8d85612b5c565b9350602085013567ffffffffffffffff80821115612caa57600080fd5b612cb688838901612c36565b9450612cc460408801612c56565b93506060870135915080821115612cda57600080fd5b50612ce787828801612c36565b91505092959194509250565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461116c57600080fd5b600060208284031215612d3357600080fd5b81356115af81612cf3565b60005b83811015612d59578181015183820152602001612d41565b8381111561082c5750506000910152565b60008151808452612d82816020860160208601612d3e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006115af6020830184612d6a565b600060208284031215612dd957600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461116c57600080fd5b60008060408385031215612e1557600080fd5b8235612e2081612de0565b946020939093013593505050565b600080600060608486031215612e4357600080fd5b8335612e4e81612de0565b92506020840135612e5e81612de0565b929592945050506040919091013590565b600060208284031215612e8157600080fd5b813567ffffffffffffffff811115612e9857600080fd5b8201601f81018413612ea957600080fd5b611f8b84823560208401612ba2565b600060208284031215612eca57600080fd5b813560ff811681146115af57600080fd5b600060208284031215612eed57600080fd5b81356115af81612de0565b600060208284031215612f0a57600080fd5b6115af82612b5c565b600080600060608486031215612f2857600080fd5b612f3184612b5c565b9250602084013567ffffffffffffffff811115612f4d57600080fd5b612f5986828701612c36565b925050604084013590509250925092565b60008060408385031215612f7d57600080fd5b8235612f8881612de0565b915060208301358015158114612f9d57600080fd5b809150509250929050565b60008060008060808587031215612fbe57600080fd5b8435612fc981612de0565b93506020850135612fd981612de0565b925060408501359150606085013567ffffffffffffffff811115612ffc57600080fd5b612ce787828801612c36565b6000806040838503121561301b57600080fd5b612e2083612b5c565b60008083601f84011261303657600080fd5b50813567ffffffffffffffff81111561304e57600080fd5b60208301915083602082850101111561306657600080fd5b9250929050565b60008060008060006080868803121561308557600080fd5b61308e86612b5c565b9450602086013567ffffffffffffffff808211156130ab57600080fd5b6130b789838a01612c36565b95506130c560408901612c56565b945060608801359150808211156130db57600080fd5b506130e888828901613024565b969995985093965092949392505050565b6000806040838503121561310c57600080fd5b823561311781612de0565b91506020830135612f9d81612de0565b60008060006040848603121561313c57600080fd5b61314584612b5c565b9250602084013567ffffffffffffffff81111561316157600080fd5b61316d86828701613024565b9497909650939450505050565b600181811c9082168061318e57607f821691505b602082108114156131c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60008083546131dc8161317a565b600182811680156131f4576001811461322357613252565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00841687528287019450613252565b8760005260208060002060005b858110156132495781548a820152908401908201613230565b50505082870194505b50929695505050505050565b61ffff8516815260806020820152600061327b6080830186612d6a565b67ffffffffffffffff85166040840152828103606084015261329d8185612d6a565b979650505050505050565b600082516132ba818460208701612d3e565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613306576133066132c4565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561333d5761333d6132c4565b5060010190565b60008351613356818460208801612d3e565b83519083019061336a818360208801612d3e565b01949350505050565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a0604082015260006133ac60a0830186612d6a565b841515606084015282810360808401526133c68185612d6a565b98975050505050505050565b600080604083850312156133e557600080fd5b505080516020909101519092909150565b61ffff871681526000602060c081840152600088546134148161317a565b8060c087015260e0600180841660008114613436576001811461346957613497565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a015261010089019550613497565b8d6000528660002060005b8581101561348f5781548b8201860152908301908801613474565b8a0184019650505b505050505083810360408501526134ae8189612d6a565b9150506134d3606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a08401526135018185612d6a565b9998505050505050505050565b8183823760009101908152919050565b61ffff8616815260806020820152600061353b6080830187612d6a565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b600080604083850312156135b157600080fd5b82516135bc81612de0565b6020939093015192949293505050565b6000828210156135de576135de6132c4565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613621576136216135e3565b500490565b600082613635576136356135e3565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526136a86080830184612d6a565b9695505050505050565b6000602082840312156136c457600080fd5b81516115af81612cf356fea26469706673582212204bd9f0d1e711f21d2e921e02d62d0ca4621dce4c0d1325b2acf66cca4c38207d64736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67500000000000000000000000000000000000000000000000000000000000000046e756c6c00000000000000000000000000000000000000000000000000000000

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

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


Deployed Bytecode Sourcemap

50131:4103:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46751:1098;;;;;;;;;;-1:-1:-1;46751:1098:0;;;;;:::i;:::-;;:::i;:::-;;32816:355;;;;;;;;;;-1:-1:-1;32816:355:0;;;;;:::i;:::-;;:::i;:::-;;;2749:14:1;;2742:22;2724:41;;2712:2;2697:18;32816:355:0;;;;;;;;33985:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35678:308::-;;;;;;;;;;-1:-1:-1;35678:308:0;;;;;:::i;:::-;;:::i;:::-;;;4079:42:1;4067:55;;;4049:74;;4037:2;4022:18;35678:308:0;3903:226:1;35201:411:0;;;;;;;;;;-1:-1:-1;35201:411:0;;;;;:::i;:::-;;:::i;47857:435::-;;;;;;;;;;-1:-1:-1;47857:435:0;;;;;:::i;:::-;;:::i;36597:376::-;;;;;;;;;;-1:-1:-1;36597:376:0;;;;;:::i;:::-;;:::i;53211:185::-;;;;;;;;;;-1:-1:-1;53211:185:0;;;;;:::i;:::-;;:::i;37044:::-;;;;;;;;;;-1:-1:-1;37044:185:0;;;;;:::i;:::-;;:::i;52985:90::-;;;;;;;;;;-1:-1:-1;52985:90:0;;;;;:::i;:::-;;:::i;33592:326::-;;;;;;;;;;-1:-1:-1;33592:326:0;;;;;:::i;:::-;;:::i;50731:407::-;;;;;;:::i;:::-;;:::i;33235:295::-;;;;;;;;;;-1:-1:-1;33235:295:0;;;;;:::i;:::-;;:::i;:::-;;;6201:25:1;;;6189:2;6174:18;33235:295:0;6055:177:1;13128:103:0;;;;;;;;;;;;;:::i;46550:51::-;;;;;;;;;;-1:-1:-1;46550:51:0;;;;;:::i;:::-;;:::i;12477:87::-;;;;;;;;;;-1:-1:-1;12523:7:0;12550:6;;;12477:87;;46441:102;;;;;;;;;;-1:-1:-1;46441:102:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7288:25:1;;;7344:2;7329:18;;7322:34;;;;7261:18;46441:102:0;7114:248:1;53480:128:0;;;;;;;;;;-1:-1:-1;53480:128:0;;;;;:::i;:::-;;:::i;34154:104::-;;;;;;;;;;;;;:::i;36058:187::-;;;;;;;;;;-1:-1:-1;36058:187:0;;;;;:::i;:::-;;:::i;50197:21::-;;;;;;;;;;-1:-1:-1;50197:21:0;;;;;;;;37300:365;;;;;;;;;;-1:-1:-1;37300:365:0;;;;;:::i;:::-;;:::i;34329:468::-;;;;;;;;;;-1:-1:-1;34329:468:0;;;;;:::i;:::-;;:::i;51277:1700::-;;;;;;:::i;:::-;;:::i;48952:916::-;;;;;;:::i;:::-;;:::i;36316:214::-;;;;;;;;;;-1:-1:-1;36316:214:0;;;;;:::i;:::-;36487:25;;;;36458:4;36487:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36316:214;49876:181;;;;;;;;;;-1:-1:-1;49876:181:0;;;;;:::i;:::-;;:::i;13386:238::-;;;;;;;;;;-1:-1:-1;13386:238:0;;;;;:::i;:::-;;:::i;46751:1098::-;46956:8;;;;46934:10;:31;46926:40;;;;;;47091:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;47069:11;:18;:61;:168;;;;-1:-1:-1;47204:32:0;;;;;;;:19;:32;;;;;;;47194:43;;;;47204:32;47194:43;:::i;:::-;;;;;;;;47161:11;47151:22;;;;;;:86;47069:168;47047:270;;;;;;;12242:2:1;47047:270:0;;;12224:21:1;12281:2;12261:18;;;12254:30;12320:34;12300:18;;;12293:62;12391:22;12371:18;;;12364:50;12431:19;;47047:270:0;;;;;;;;;47445:60;;;;;:4;;:16;;:60;;47462:11;;47475;;47488:6;;47496:8;;47445:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47441:401;;47652:101;;;;;;;;47685:8;:15;47652:101;;;;47729:8;47719:19;;;;;;47652:101;;;47601:14;:27;47616:11;47601:27;;;;;;;;;;;;;;;47629:11;47601:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:48;;;;;;;;;;;;;;:152;;;;;;;;;;;;;;;47773:57;;;;47787:11;;47800;;47642:6;;47821:8;;47773:57;:::i;:::-;;;;;;;;47441:401;46751:1098;;;;:::o;32816:355::-;32963:4;33005:40;;;33020:25;33005:40;;:105;;-1:-1:-1;33062:48:0;;;33077:33;33062:48;33005:105;:158;;;-1:-1:-1;25577:25:0;25562:40;;;;33127:36;32985:178;32816:355;-1:-1:-1;;32816:355:0:o;33985:100::-;34039:13;34072:5;34065:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33985:100;:::o;35678:308::-;35799:7;39301:16;;;:7;:16;;;;;;:30;:16;35824:110;;;;;;;13504:2:1;35824:110:0;;;13486:21:1;13543:2;13523:18;;;13516:30;13582:34;13562:18;;;13555:62;13653:14;13633:18;;;13626:42;13685:19;;35824:110:0;13302:408:1;35824:110:0;-1:-1:-1;35954:24:0;;;;:15;:24;;;;;;;;;35678:308::o;35201:411::-;35282:13;35298:23;35313:7;35298:14;:23::i;:::-;35282:39;;35346:5;35340:11;;:2;:11;;;;35332:57;;;;;;;13917:2:1;35332:57:0;;;13899:21:1;13956:2;13936:18;;;13929:30;13995:34;13975:18;;;13968:62;14066:3;14046:18;;;14039:31;14087:19;;35332:57:0;13715:397:1;35332:57:0;11260:10;35424:21;;;;;:62;;-1:-1:-1;35449:37:0;35466:5;11260:10;36316:214;:::i;35449:37::-;35402:168;;;;;;;14319:2:1;35402:168:0;;;14301:21:1;14358:2;14338:18;;;14331:30;14397:34;14377:18;;;14370:62;14468:26;14448:18;;;14441:54;14512:19;;35402:168:0;14117:420:1;35402:168:0;35583:21;35592:2;35596:7;35583:8;:21::i;:::-;35271:341;35201:411;;:::o;47857:435::-;48083:10;48105:4;48083:27;48061:120;;;;;;;14744:2:1;48061:120:0;;;14726:21:1;14783:2;14763:18;;;14756:30;14822:34;14802:18;;;14795:62;14893:13;14873:18;;;14866:41;14924:19;;48061:120:0;14542:407:1;48061:120:0;48230:54;48241:11;48254;48267:6;48275:8;48230:10;:54::i;36597:376::-;36806:41;11260:10;36839:7;36806:18;:41::i;:::-;36784:140;;;;;;;15156:2:1;36784:140:0;;;15138:21:1;15195:2;15175:18;;;15168:30;15234:34;15214:18;;;15207:62;15305:19;15285:18;;;15278:47;15342:19;;36784:140:0;14954:413:1;36784:140:0;36937:28;36947:4;36953:2;36957:7;36937:9;:28::i;53211:185::-;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15574:2:1;12689:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12689:68:0;15372:356:1;12689:68:0;53296:6:::1;::::0;53288:36:::1;::::0;53273:9:::1;::::0;53296:6:::1;;::::0;53316:3;;53273:9;53288:36;53273:9;53288:36;53316:3;53296:6;53288:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53272:52;;;53343:4;53335:53;;;::::0;::::1;::::0;;16145:2:1;53335:53:0::1;::::0;::::1;16127:21:1::0;16184:2;16164:18;;;16157:30;16223:34;16203:18;;;16196:62;16294:6;16274:18;;;16267:34;16318:19;;53335:53:0::1;15943:400:1::0;53335:53:0::1;53261:135;53211:185:::0;:::o;37044:::-;37182:39;37199:4;37205:2;37209:7;37182:39;;;;;;;;;;;;:16;:39::i;52985:90::-;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15574:2:1;12689:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12689:68:0;15372:356:1;12689:68:0;53054:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;33592:326::-:0;33709:7;33750:16;;;:7;:16;;;;;;;;33799:19;33777:110;;;;;;;16550:2:1;33777:110:0;;;16532:21:1;16589:2;16569:18;;;16562:30;16628:34;16608:18;;;16601:62;16699:11;16679:18;;;16672:39;16728:19;;33777:110:0;16348:405:1;50731:407:0;50810:1;50798:9;:13;;;50790:64;;;;;;;16960:2:1;50790:64:0;;;16942:21:1;16999:2;16979:18;;;16972:30;17038:34;17018:18;;;17011:62;17109:8;17089:18;;;17082:36;17135:19;;50790:64:0;16758:402:1;50790:64:0;50914:17;;50901:9;50887:23;;:11;;:23;;;;:::i;:::-;:44;;50865:125;;;;;;;17689:2:1;50865:125:0;;;17671:21:1;17728:2;17708:18;;;17701:30;17767:33;17747:18;;;17740:61;17818:18;;50865:125:0;17487:355:1;50865:125:0;51001:36;51011:10;51025:11;;51023:13;;;;;:::i;:::-;;;;;-1:-1:-1;51001:9:0;:36::i;:::-;51052:9;:14;;51065:1;51052:14;51048:83;;;51083:36;51093:10;51107:11;;51105:13;;;;;:::i;51083:36::-;50731:407;:::o;33235:295::-;33352:7;33399:19;;;33377:111;;;;;;;18249:2:1;33377:111:0;;;18231:21:1;18288:2;18268:18;;;18261:30;18327:34;18307:18;;;18300:62;18398:12;18378:18;;;18371:40;18428:19;;33377:111:0;18047:406:1;33377:111:0;-1:-1:-1;33506:16:0;;;;;;:9;:16;;;;;;;33235:295::o;13128:103::-;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15574:2:1;12689:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12689:68:0;15372:356:1;12689:68:0;13193:30:::1;13220:1;13193:18;:30::i;:::-;13128:103::o:0;46550:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53480:128::-;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15574:2:1;12689:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12689:68:0;15372:356:1;12689:68:0;53565:26:::1;:35:::0;53480:128::o;34154:104::-;34210:13;34243:7;34236:14;;;;;:::i;36058:187::-;36185:52;11260:10;36218:8;36228;36185:18;:52::i;37300:365::-;37489:41;11260:10;37522:7;37489:18;:41::i;:::-;37467:140;;;;;;;15156:2:1;37467:140:0;;;15138:21:1;15195:2;15175:18;;;15168:30;15234:34;15214:18;;;15207:62;15305:19;15285:18;;;15278:47;15342:19;;37467:140:0;14954:413:1;37467:140:0;37618:39;37632:4;37638:2;37642:7;37651:5;37618:13;:39::i;34329:468::-;39277:4;39301:16;;;:7;:16;;;;;;34447:13;;39301:30;:16;34478:113;;;;;;;18660:2:1;34478:113:0;;;18642:21:1;18699:2;18679:18;;;18672:30;18738:34;18718:18;;;18711:62;18809:17;18789:18;;;18782:45;18844:19;;34478:113:0;18458:411:1;34478:113:0;34604:21;34628:10;:8;:10::i;:::-;34604:34;;34693:1;34675:7;34669:21;:25;:120;;;;;;;;;;;;;;;;;34738:7;34747:18;:7;:16;:18::i;:::-;34721:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34669:120;34649:140;34329:468;-1:-1:-1;;;34329:468:0:o;51277:1700::-;51397:16;51405:7;51397;:16::i;:::-;51383:30;;:10;:30;;;51361:114;;;;;;;19551:2:1;51361:114:0;;;19533:21:1;19590:2;19570:18;;;19563:30;19629:34;19609:18;;;19602:62;19700:4;19680:18;;;19673:32;19722:19;;51361:114:0;19349:398:1;51361:114:0;51508:29;;;51547:1;51508:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;51486:136;;;;;;;19954:2:1;51486:136:0;;;19936:21:1;19993:2;19973:18;;;19966:30;20032:34;20012:18;;;20005:62;20103:16;20083:18;;;20076:44;20137:19;;51486:136:0;19752:410:1;51486:136:0;51702:14;51708:7;51702:5;:14::i;:::-;51813:31;;;51824:10;51813:31;;;20341:74:1;20431:18;;;20424:34;;;51813:31:0;;;;;;;;;20314:18:1;;;51813:31:0;;52041:26;;20640:16:1;51988:90:0;;;20624:102:1;20742:11;;;;20735:27;;;;51988:90:0;;;;;;;;;;20778:12:1;;;51988:90:0;;;;52257:8;;:153;;;;51813:31;;51947:1;;-1:-1:-1;;52257:8:0;;;:21;;:153;;52293:8;;52324:4;;51813:31;;-1:-1:-1;;51988:90:0;;52257:153;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52232:178;;;52458:10;52445:9;:23;;52423:152;;;;;;;21923:2:1;52423:152:0;;;21905:21:1;21962:2;21942:18;;;21935:30;22001:34;21981:18;;;21974:62;22072:34;22052:18;;;22045:62;22144:17;22123:19;;;22116:46;22179:19;;52423:152:0;21721:483:1;52423:152:0;52588:8;;52680:29;;;52588:8;52680:29;;;:19;:29;;;;;;52588:381;;;;;:8;;;;;:13;;52609:9;;52588:381;;52634:8;;52763:7;;52819:10;;52588:8;52929:13;;52588:381;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51350:1627;;;;51277:1700;;:::o;48952:916::-;49211:27;;;49176:32;49211:27;;;:14;:27;;;;;;:64;;;;49253:11;;49211:64;:::i;:::-;;;;;;;;;;;;;;;;:72;;;;;;;;;;;49316:21;;;;49211:72;;-1:-1:-1;49294:123:0;;;;;;;23958:2:1;49294:123:0;;;23940:21:1;23997:2;23977:18;;;23970:30;24036:34;24016:18;;;24009:62;24107:8;24087:18;;;24080:36;24133:19;;49294:123:0;23756:402:1;49294:123:0;49469:23;;49450:42;;:107;;;;;49536:9;:21;;;49523:8;;49513:19;;;;;;;:::i;:::-;;;;;;;;:44;49450:107;49428:183;;;;;;;24641:2:1;49428:183:0;;;24623:21:1;24680:2;24660:18;;;24653:30;24719:28;24699:18;;;24692:56;24765:18;;49428:183:0;24439:350:1;49428:183:0;49685:1;49659:27;;;49697:21;;;:34;49800:60;;;;;:4;;:16;;:60;;49817:11;;49830;;49843:6;;49851:8;;;;49800:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49120:748;48952:916;;;;;:::o;49876:181::-;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15574:2:1;12689:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12689:68:0;15372:356:1;12689:68:0;50003:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;50035:14;;50003:46:::1;:::i;13386:238::-:0;12523:7;12550:6;12697:23;12550:6;11260:10;12697:23;12689:68;;;;;;;15574:2:1;12689:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12689:68:0;15372:356:1;12689:68:0;13489:22:::1;::::0;::::1;13467:110;;;::::0;::::1;::::0;;25778:2:1;13467:110:0::1;::::0;::::1;25760:21:1::0;25817:2;25797:18;;;25790:30;25856:34;25836:18;;;25829:62;25927:8;25907:18;;;25900:36;25953:19;;13467:110:0::1;25576:402:1::0;13467:110:0::1;13588:28;13607:8;13588:18;:28::i;43266:174::-:0;43341:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;43395:23;43341:24;43395:14;:23::i;:::-;43386:46;;;;;;;;;;;;43266:174;;:::o;53699:424::-;53895:14;53911:15;53955:8;53930:77;;;;;;;;;;;;:::i;:::-;53894:113;;;;54089:26;54099:6;54107:7;54089:9;:26::i;:::-;53864:259;;53699:424;;;;:::o;39506:452::-;39635:4;39301:16;;;:7;:16;;;;;;:30;:16;39657:110;;;;;;;26510:2:1;39657:110:0;;;26492:21:1;26549:2;26529:18;;;26522:30;26588:34;26568:18;;;26561:62;26659:14;26639:18;;;26632:42;26691:19;;39657:110:0;26308:408:1;39657:110:0;39778:13;39794:23;39809:7;39794:14;:23::i;:::-;39778:39;;39847:5;39836:16;;:7;:16;;;:64;;;;39893:7;39869:31;;:20;39881:7;39869:11;:20::i;:::-;:31;;;39836:64;:113;;;-1:-1:-1;36487:25:0;;;;36458:4;36487:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39917:32;39828:122;39506:452;-1:-1:-1;;;;39506:452:0:o;42533:615::-;42706:4;42679:31;;:23;42694:7;42679:14;:23::i;:::-;:31;;;42657:122;;;;;;;26923:2:1;42657:122:0;;;26905:21:1;26962:2;26942:18;;;26935:30;27001:34;26981:18;;;26974:62;27072:11;27052:18;;;27045:39;27101:19;;42657:122:0;26721:405:1;42657:122:0;42798:16;;;42790:65;;;;;;;27333:2:1;42790:65:0;;;27315:21:1;27372:2;27352:18;;;27345:30;27411:34;27391:18;;;27384:62;27482:6;27462:18;;;27455:34;27506:19;;42790:65:0;27131:400:1;42790:65:0;42972:29;42989:1;42993:7;42972:8;:29::i;:::-;43014:15;;;;;;;:9;:15;;;;;:20;;43033:1;;43014:15;:20;;43033:1;;43014:20;:::i;:::-;;;;-1:-1:-1;;43045:13:0;;;;;;;:9;:13;;;;;:18;;43062:1;;43045:13;:18;;43062:1;;43045:18;:::i;:::-;;;;-1:-1:-1;;43074:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;43113:27;;43074:16;;43113:27;;;;;;;42533:615;;;:::o;40300:110::-;40376:26;40386:2;40390:7;40376:26;;;;;;;;;;;;:9;:26::i;13784:191::-;13858:16;13877:6;;;13894:17;;;;;;;;;;13927:40;;13877:6;;;;;;;13927:40;;13858:16;13927:40;13847:128;13784:191;:::o;43582:315::-;43737:8;43728:17;;:5;:17;;;;43720:55;;;;;;;27868:2:1;43720:55:0;;;27850:21:1;27907:2;27887:18;;;27880:30;27946:27;27926:18;;;27919:55;27991:18;;43720:55:0;27666:349:1;43720:55:0;43786:25;;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;43848:41;;2724::1;;;43848::0;;2697:18:1;43848:41:0;;;;;;;43582:315;;;:::o;38547:352::-;38704:28;38714:4;38720:2;38724:7;38704:9;:28::i;:::-;38765:48;38788:4;38794:2;38798:7;38807:5;38765:22;:48::i;:::-;38743:148;;;;;;;28222:2:1;38743:148:0;;;28204:21:1;28261:2;28241:18;;;28234:30;28300:34;28280:18;;;28273:62;28371:20;28351:18;;;28344:48;28409:19;;38743:148:0;28020:414:1;54131:100:0;54183:13;54216:7;54209:14;;;;;:::i;8712:723::-;8768:13;8989:10;8985:53;;-1:-1:-1;;9016:10:0;;;;;;;;;;;;;;;;;;8712:723::o;8985:53::-;9063:5;9048:12;9104:78;9111:9;;9104:78;;9137:8;;;;:::i;:::-;;-1:-1:-1;9160:10:0;;-1:-1:-1;9168:2:0;9160:10;;:::i;:::-;;;9104:78;;;9192:19;9224:6;9214:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9214:17:0;;9192:39;;9242:154;9249:10;;9242:154;;9276:11;9286:1;9276:11;;:::i;:::-;;-1:-1:-1;9345:10:0;9353:2;9345:5;:10;:::i;:::-;9332:24;;:2;:24;:::i;:::-;9319:39;;9302:6;9309;9302:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;9373:11:0;9382:2;9373:11;;:::i;:::-;;;9242:154;;41836:360;41896:13;41912:23;41927:7;41912:14;:23::i;:::-;41896:39;;42037:29;42054:1;42058:7;42037:8;:29::i;:::-;42079:16;;;;;;;:9;:16;;;;;:21;;42099:1;;42079:16;:21;;42099:1;;42079:21;:::i;:::-;;;;-1:-1:-1;;42118:16:0;;;;:7;:16;;;;;;42111:23;;;;;;42152:36;42126:7;;42118:16;42111:23;42152:36;;;;;42118:16;;42152:36;41885:311;41836:360;:::o;40637:321::-;40767:18;40773:2;40777:7;40767:5;:18::i;:::-;40818:54;40849:1;40853:2;40857:7;40866:5;40818:22;:54::i;:::-;40796:154;;;;;;;28222:2:1;40796:154:0;;;28204:21:1;28261:2;28241:18;;;28234:30;28300:34;28280:18;;;28273:62;28371:20;28351:18;;;28344:48;28409:19;;40796:154:0;28020:414:1;44462:980:0;44617:4;44638:13;;;15123:20;15171:8;44634:801;;44691:175;;;;;:36;;;;;;:175;;11260:10;;44785:4;;44812:7;;44842:5;;44691:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44691:175:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44670:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45049:13:0;;45045:320;;45092:108;;;;;28222:2:1;45092:108:0;;;28204:21:1;28261:2;28241:18;;;28234:30;28300:34;28280:18;;;28273:62;28371:20;28351:18;;;28344:48;28409:19;;45092:108:0;28020:414:1;45045:320:0;45315:6;45309:13;45300:6;45296:2;45292:15;45285:38;44670:710;44930:51;;44940:41;44930:51;;-1:-1:-1;44923:58:0;;44634:801;-1:-1:-1;45419:4:0;44462:980;;;;;;:::o;41294:313::-;41374:16;;;41366:61;;;;;;;30032:2:1;41366:61:0;;;30014:21:1;;;30051:18;;;30044:30;30110:34;30090:18;;;30083:62;30162:18;;41366:61:0;29830:356:1;41366:61:0;41498:13;;;;;;;:9;:13;;;;;:18;;41515:1;;41498:13;:18;;41515:1;;41498:18;:::i;:::-;;;;-1:-1:-1;;41527:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;41566:33;;41527:16;;;41566:33;;41527:16;;41566:33;41294:313;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:159:1;81:20;;141:6;130:18;;120:29;;110:57;;163:1;160;153:12;110:57;14:159;;;:::o;178:184::-;230:77;227:1;220:88;327:4;324:1;317:15;351:4;348:1;341:15;367:690;431:5;461:18;502:2;494:6;491:14;488:40;;;508:18;;:::i;:::-;642:2;636:9;708:2;696:15;;547:66;692:24;;;718:2;688:33;684:42;672:55;;;742:18;;;762:22;;;739:46;736:72;;;788:18;;:::i;:::-;828:10;824:2;817:22;857:6;848:15;;887:6;879;872:22;927:3;918:6;913:3;909:16;906:25;903:45;;;944:1;941;934:12;903:45;994:6;989:3;982:4;974:6;970:17;957:44;1049:1;1042:4;1033:6;1025;1021:19;1017:30;1010:41;;;;367:690;;;;;:::o;1062:220::-;1104:5;1157:3;1150:4;1142:6;1138:17;1134:27;1124:55;;1175:1;1172;1165:12;1124:55;1197:79;1272:3;1263:6;1250:20;1243:4;1235:6;1231:17;1197:79;:::i;1287:171::-;1354:20;;1414:18;1403:30;;1393:41;;1383:69;;1448:1;1445;1438:12;1463:684;1565:6;1573;1581;1589;1642:3;1630:9;1621:7;1617:23;1613:33;1610:53;;;1659:1;1656;1649:12;1610:53;1682:28;1700:9;1682:28;:::i;:::-;1672:38;;1761:2;1750:9;1746:18;1733:32;1784:18;1825:2;1817:6;1814:14;1811:34;;;1841:1;1838;1831:12;1811:34;1864:49;1905:7;1896:6;1885:9;1881:22;1864:49;:::i;:::-;1854:59;;1932:37;1965:2;1954:9;1950:18;1932:37;:::i;:::-;1922:47;;2022:2;2011:9;2007:18;1994:32;1978:48;;2051:2;2041:8;2038:16;2035:36;;;2067:1;2064;2057:12;2035:36;;2090:51;2133:7;2122:8;2111:9;2107:24;2090:51;:::i;:::-;2080:61;;;1463:684;;;;;;;:::o;2152:177::-;2237:66;2230:5;2226:78;2219:5;2216:89;2206:117;;2319:1;2316;2309:12;2334:245;2392:6;2445:2;2433:9;2424:7;2420:23;2416:32;2413:52;;;2461:1;2458;2451:12;2413:52;2500:9;2487:23;2519:30;2543:5;2519:30;:::i;2776:258::-;2848:1;2858:113;2872:6;2869:1;2866:13;2858:113;;;2948:11;;;2942:18;2929:11;;;2922:39;2894:2;2887:10;2858:113;;;2989:6;2986:1;2983:13;2980:48;;;-1:-1:-1;;3024:1:1;3006:16;;2999:27;2776:258::o;3039:317::-;3081:3;3119:5;3113:12;3146:6;3141:3;3134:19;3162:63;3218:6;3211:4;3206:3;3202:14;3195:4;3188:5;3184:16;3162:63;:::i;:::-;3270:2;3258:15;3275:66;3254:88;3245:98;;;;3345:4;3241:109;;3039:317;-1:-1:-1;;3039:317:1:o;3361:220::-;3510:2;3499:9;3492:21;3473:4;3530:45;3571:2;3560:9;3556:18;3548:6;3530:45;:::i;3586:180::-;3645:6;3698:2;3686:9;3677:7;3673:23;3669:32;3666:52;;;3714:1;3711;3704:12;3666:52;-1:-1:-1;3737:23:1;;3586:180;-1:-1:-1;3586:180:1:o;4134:154::-;4220:42;4213:5;4209:54;4202:5;4199:65;4189:93;;4278:1;4275;4268:12;4293:315;4361:6;4369;4422:2;4410:9;4401:7;4397:23;4393:32;4390:52;;;4438:1;4435;4428:12;4390:52;4477:9;4464:23;4496:31;4521:5;4496:31;:::i;:::-;4546:5;4598:2;4583:18;;;;4570:32;;-1:-1:-1;;;4293:315:1:o;4613:456::-;4690:6;4698;4706;4759:2;4747:9;4738:7;4734:23;4730:32;4727:52;;;4775:1;4772;4765:12;4727:52;4814:9;4801:23;4833:31;4858:5;4833:31;:::i;:::-;4883:5;-1:-1:-1;4940:2:1;4925:18;;4912:32;4953:33;4912:32;4953:33;:::i;:::-;4613:456;;5005:7;;-1:-1:-1;;;5059:2:1;5044:18;;;;5031:32;;4613:456::o;5074:450::-;5143:6;5196:2;5184:9;5175:7;5171:23;5167:32;5164:52;;;5212:1;5209;5202:12;5164:52;5252:9;5239:23;5285:18;5277:6;5274:30;5271:50;;;5317:1;5314;5307:12;5271:50;5340:22;;5393:4;5385:13;;5381:27;-1:-1:-1;5371:55:1;;5422:1;5419;5412:12;5371:55;5445:73;5510:7;5505:2;5492:16;5487:2;5483;5479:11;5445:73;:::i;5529:269::-;5586:6;5639:2;5627:9;5618:7;5614:23;5610:32;5607:52;;;5655:1;5652;5645:12;5607:52;5694:9;5681:23;5744:4;5737:5;5733:16;5726:5;5723:27;5713:55;;5764:1;5761;5754:12;5803:247;5862:6;5915:2;5903:9;5894:7;5890:23;5886:32;5883:52;;;5931:1;5928;5921:12;5883:52;5970:9;5957:23;5989:31;6014:5;5989:31;:::i;6237:184::-;6295:6;6348:2;6336:9;6327:7;6323:23;6319:32;6316:52;;;6364:1;6361;6354:12;6316:52;6387:28;6405:9;6387:28;:::i;6649:460::-;6734:6;6742;6750;6803:2;6791:9;6782:7;6778:23;6774:32;6771:52;;;6819:1;6816;6809:12;6771:52;6842:28;6860:9;6842:28;:::i;:::-;6832:38;;6921:2;6910:9;6906:18;6893:32;6948:18;6940:6;6937:30;6934:50;;;6980:1;6977;6970:12;6934:50;7003:49;7044:7;7035:6;7024:9;7020:22;7003:49;:::i;:::-;6993:59;;;7099:2;7088:9;7084:18;7071:32;7061:42;;6649:460;;;;;:::o;7367:416::-;7432:6;7440;7493:2;7481:9;7472:7;7468:23;7464:32;7461:52;;;7509:1;7506;7499:12;7461:52;7548:9;7535:23;7567:31;7592:5;7567:31;:::i;:::-;7617:5;-1:-1:-1;7674:2:1;7659:18;;7646:32;7716:15;;7709:23;7697:36;;7687:64;;7747:1;7744;7737:12;7687:64;7770:7;7760:17;;;7367:416;;;;;:::o;7788:665::-;7883:6;7891;7899;7907;7960:3;7948:9;7939:7;7935:23;7931:33;7928:53;;;7977:1;7974;7967:12;7928:53;8016:9;8003:23;8035:31;8060:5;8035:31;:::i;:::-;8085:5;-1:-1:-1;8142:2:1;8127:18;;8114:32;8155:33;8114:32;8155:33;:::i;:::-;8207:7;-1:-1:-1;8261:2:1;8246:18;;8233:32;;-1:-1:-1;8316:2:1;8301:18;;8288:32;8343:18;8332:30;;8329:50;;;8375:1;8372;8365:12;8329:50;8398:49;8439:7;8430:6;8419:9;8415:22;8398:49;:::i;8458:252::-;8525:6;8533;8586:2;8574:9;8565:7;8561:23;8557:32;8554:52;;;8602:1;8599;8592:12;8554:52;8625:28;8643:9;8625:28;:::i;8715:347::-;8766:8;8776:6;8830:3;8823:4;8815:6;8811:17;8807:27;8797:55;;8848:1;8845;8838:12;8797:55;-1:-1:-1;8871:20:1;;8914:18;8903:30;;8900:50;;;8946:1;8943;8936:12;8900:50;8983:4;8975:6;8971:17;8959:29;;9035:3;9028:4;9019:6;9011;9007:19;9003:30;9000:39;8997:59;;;9052:1;9049;9042:12;8997:59;8715:347;;;;;:::o;9067:773::-;9171:6;9179;9187;9195;9203;9256:3;9244:9;9235:7;9231:23;9227:33;9224:53;;;9273:1;9270;9263:12;9224:53;9296:28;9314:9;9296:28;:::i;:::-;9286:38;;9375:2;9364:9;9360:18;9347:32;9398:18;9439:2;9431:6;9428:14;9425:34;;;9455:1;9452;9445:12;9425:34;9478:49;9519:7;9510:6;9499:9;9495:22;9478:49;:::i;:::-;9468:59;;9546:37;9579:2;9568:9;9564:18;9546:37;:::i;:::-;9536:47;;9636:2;9625:9;9621:18;9608:32;9592:48;;9665:2;9655:8;9652:16;9649:36;;;9681:1;9678;9671:12;9649:36;;9720:60;9772:7;9761:8;9750:9;9746:24;9720:60;:::i;:::-;9067:773;;;;-1:-1:-1;9067:773:1;;-1:-1:-1;9799:8:1;;9694:86;9067:773;-1:-1:-1;;;9067:773:1:o;9845:388::-;9913:6;9921;9974:2;9962:9;9953:7;9949:23;9945:32;9942:52;;;9990:1;9987;9980:12;9942:52;10029:9;10016:23;10048:31;10073:5;10048:31;:::i;:::-;10098:5;-1:-1:-1;10155:2:1;10140:18;;10127:32;10168:33;10127:32;10168:33;:::i;10238:481::-;10316:6;10324;10332;10385:2;10373:9;10364:7;10360:23;10356:32;10353:52;;;10401:1;10398;10391:12;10353:52;10424:28;10442:9;10424:28;:::i;:::-;10414:38;;10503:2;10492:9;10488:18;10475:32;10530:18;10522:6;10519:30;10516:50;;;10562:1;10559;10552:12;10516:50;10601:58;10651:7;10642:6;10631:9;10627:22;10601:58;:::i;:::-;10238:481;;10678:8;;-1:-1:-1;10575:84:1;;-1:-1:-1;;;;10238:481:1:o;10724:437::-;10803:1;10799:12;;;;10846;;;10867:61;;10921:4;10913:6;10909:17;10899:27;;10867:61;10974:2;10966:6;10963:14;10943:18;10940:38;10937:218;;;11011:77;11008:1;11001:88;11112:4;11109:1;11102:15;11140:4;11137:1;11130:15;10937:218;;10724:437;;;:::o;11166:869::-;11292:3;11321:1;11354:6;11348:13;11384:36;11410:9;11384:36;:::i;:::-;11439:1;11456:18;;;11483:162;;;;11659:1;11654:356;;;;11449:561;;11483:162;11531:66;11520:9;11516:82;11511:3;11504:95;11628:6;11623:3;11619:16;11612:23;;11483:162;;11654:356;11685:6;11682:1;11675:17;11715:4;11760:2;11757:1;11747:16;11785:1;11799:165;11813:6;11810:1;11807:13;11799:165;;;11891:14;;11878:11;;;11871:35;11934:16;;;;11828:10;;11799:165;;;11803:3;;;11993:6;11988:3;11984:16;11977:23;;11449:561;-1:-1:-1;12026:3:1;;11166:869;-1:-1:-1;;;;;;11166:869:1:o;12461:557::-;12718:6;12710;12706:19;12695:9;12688:38;12762:3;12757:2;12746:9;12742:18;12735:31;12669:4;12789:46;12830:3;12819:9;12815:19;12807:6;12789:46;:::i;:::-;12883:18;12875:6;12871:31;12866:2;12855:9;12851:18;12844:59;12951:9;12943:6;12939:22;12934:2;12923:9;12919:18;12912:50;12979:33;13005:6;12997;12979:33;:::i;:::-;12971:41;12461:557;-1:-1:-1;;;;;;;12461:557:1:o;13023:274::-;13152:3;13190:6;13184:13;13206:53;13252:6;13247:3;13240:4;13232:6;13228:17;13206:53;:::i;:::-;13275:16;;;;;13023:274;-1:-1:-1;;13023:274:1:o;17165:184::-;17217:77;17214:1;17207:88;17314:4;17311:1;17304:15;17338:4;17335:1;17328:15;17354:128;17394:3;17425:1;17421:6;17418:1;17415:13;17412:39;;;17431:18;;:::i;:::-;-1:-1:-1;17467:9:1;;17354:128::o;17847:195::-;17886:3;17917:66;17910:5;17907:77;17904:103;;;17987:18;;:::i;:::-;-1:-1:-1;18034:1:1;18023:13;;17847:195::o;18874:470::-;19053:3;19091:6;19085:13;19107:53;19153:6;19148:3;19141:4;19133:6;19129:17;19107:53;:::i;:::-;19223:13;;19182:16;;;;19245:57;19223:13;19182:16;19279:4;19267:17;;19245:57;:::i;:::-;19318:20;;18874:470;-1:-1:-1;;;;18874:470:1:o;20801:665::-;21082:6;21074;21070:19;21059:9;21052:38;21138:42;21130:6;21126:55;21121:2;21110:9;21106:18;21099:83;21218:3;21213:2;21202:9;21198:18;21191:31;21033:4;21245:46;21286:3;21275:9;21271:19;21263:6;21245:46;:::i;:::-;21341:6;21334:14;21327:22;21322:2;21311:9;21307:18;21300:50;21399:9;21391:6;21387:22;21381:3;21370:9;21366:19;21359:51;21427:33;21453:6;21445;21427:33;:::i;:::-;21419:41;20801:665;-1:-1:-1;;;;;;;;20801:665:1:o;21471:245::-;21550:6;21558;21611:2;21599:9;21590:7;21586:23;21582:32;21579:52;;;21627:1;21624;21617:12;21579:52;-1:-1:-1;;21650:16:1;;21706:2;21691:18;;;21685:25;21650:16;;21685:25;;-1:-1:-1;21471:245:1:o;22209:1542::-;22555:6;22547;22543:19;22532:9;22525:38;22506:4;22582:2;22620:3;22615:2;22604:9;22600:18;22593:31;22644:1;22677:6;22671:13;22707:36;22733:9;22707:36;:::i;:::-;22780:6;22774:3;22763:9;22759:19;22752:35;22806:3;22828:1;22860:2;22849:9;22845:18;22877:1;22872:180;;;;23066:1;23061:354;;;;22838:577;;22872:180;22935:66;22924:9;22920:82;22915:2;22904:9;22900:18;22893:110;23038:3;23027:9;23023:19;23016:26;;22872:180;;23061:354;23092:6;23089:1;23082:17;23140:2;23137:1;23127:16;23165:1;23179:180;23193:6;23190:1;23187:13;23179:180;;;23286:14;;23262:17;;;23258:26;;23251:50;23329:16;;;;23208:10;;23179:180;;;23383:17;;23379:26;;;-1:-1:-1;;22838:577:1;;;;;;23460:9;23455:3;23451:19;23446:2;23435:9;23431:18;23424:47;23494:30;23520:3;23512:6;23494:30;:::i;:::-;23480:44;;;23533:46;23575:2;23564:9;23560:18;23552:6;3848:42;3837:54;3825:67;;3771:127;23533:46;3848:42;3837:54;;23630:3;23615:19;;3825:67;23684:9;23676:6;23672:22;23666:3;23655:9;23651:19;23644:51;23712:33;23738:6;23730;23712:33;:::i;:::-;23704:41;22209:1542;-1:-1:-1;;;;;;;;;22209:1542:1:o;24163:271::-;24346:6;24338;24333:3;24320:33;24302:3;24372:16;;24397:13;;;24372:16;24163:271;-1:-1:-1;24163:271:1:o;24794:777::-;25061:6;25053;25049:19;25038:9;25031:38;25105:3;25100:2;25089:9;25085:18;25078:31;25012:4;25132:46;25173:3;25162:9;25158:19;25150:6;25132:46;:::i;:::-;25226:18;25218:6;25214:31;25209:2;25198:9;25194:18;25187:59;25294:9;25286:6;25282:22;25277:2;25266:9;25262:18;25255:50;25329:6;25321;25314:22;25383:6;25375;25370:2;25362:6;25358:15;25345:45;25436:1;25431:2;25422:6;25414;25410:19;25406:28;25399:39;25562:2;25492:66;25487:2;25479:6;25475:15;25471:88;25463:6;25459:101;25455:110;25447:118;;;24794:777;;;;;;;;:::o;25983:320::-;26070:6;26078;26131:2;26119:9;26110:7;26106:23;26102:32;26099:52;;;26147:1;26144;26137:12;26099:52;26179:9;26173:16;26198:31;26223:5;26198:31;:::i;:::-;26293:2;26278:18;;;;26272:25;26248:5;;26272:25;;-1:-1:-1;;;25983:320:1:o;27536:125::-;27576:4;27604:1;27601;27598:8;27595:34;;;27609:18;;:::i;:::-;-1:-1:-1;27646:9:1;;27536:125::o;28439:184::-;28491:77;28488:1;28481:88;28588:4;28585:1;28578:15;28612:4;28609:1;28602:15;28628:120;28668:1;28694;28684:35;;28699:18;;:::i;:::-;-1:-1:-1;28733:9:1;;28628:120::o;28753:112::-;28785:1;28811;28801:35;;28816:18;;:::i;:::-;-1:-1:-1;28850:9:1;;28753:112::o;28870:184::-;28922:77;28919:1;28912:88;29019:4;29016:1;29009:15;29043:4;29040:1;29033:15;29059:512;29253:4;29282:42;29363:2;29355:6;29351:15;29340:9;29333:34;29415:2;29407:6;29403:15;29398:2;29387:9;29383:18;29376:43;;29455:6;29450:2;29439:9;29435:18;29428:34;29498:3;29493:2;29482:9;29478:18;29471:31;29519:46;29560:3;29549:9;29545:19;29537:6;29519:46;:::i;:::-;29511:54;29059:512;-1:-1:-1;;;;;;29059:512:1:o;29576:249::-;29645:6;29698:2;29686:9;29677:7;29673:23;29669:32;29666:52;;;29714:1;29711;29704:12;29666:52;29746:9;29740:16;29765:30;29789:5;29765:30;:::i

Swarm Source

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