ETH Price: $3,102.41 (+1.33%)
Gas: 5 Gwei

Token

(0xa4b02a15938e3fe185064a6208093878cc64b6be)
 

Overview

Max Total Supply

0 ERC-721 TOKEN*

Holders

35

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
leozeba.eth
Balance
0 ERC-721 TOKEN*
0x4cC94028024Bb109784690d71A4A010241Aa6689
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
OmniDiyApes

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT



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, uint _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, uint _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 (uint nativeFee, uint 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, uint _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)) : "";
    }

    /**
     * @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 {
        uint payloadLength;
        bytes32 payloadHash;
    }

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

    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/GhostlyGhosts.sol

abstract contract Target721 { 
    function ownerOf(uint256 tokenId) public view virtual returns (address);
}

pragma solidity ^0.8.7;


contract OmniDiyApes is Ownable, ERC721, NonblockingReceiver{

    address public _owner;
    string private baseURI;
    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;
    uint256 nextTokenId = 0;
    uint256 MAX_MINT_ETHEREUM = 6084;
    uint256 internal MAX_TOKEN_ID; 
    uint gasForDestinationLzReceive = 350000;
    bool internal burnAirdrop = false;
    // 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;

    mapping(uint256 => bool) private _tokenBifurcated;
    uint256 public MINT_PRICE = 0.09 ether;

    constructor(string memory baseURI_) ERC721("OmniDiyApes", "DAPE") { 
        _owner = msg.sender;
        baseURI = baseURI_;
    }

    // mint function
    // mint is , but payments are accepted
    function mint(uint8 numTokens) external payable {
        require(msg.value == MINT_PRICE * numTokens, "Invalid Ether amount sent.");
        for (uint256 i = 0; i < numTokens; i++) {
            _safeMint(msg.sender, ++nextTokenId);
        }
    }

    // airDropNFTHolder function
    // mint is , but payments are accepted
    function airDropNFTHolder(address[] calldata recipients) external onlyOwner {
        uint256 startingSupply = nextTokenId;

        // Update the total supply.
        nextTokenId = startingSupply + recipients.length;

        // Note: First token has ID #0.
        for (uint256 i = 0; i < recipients.length; i++) {
            _salePremint(recipients[i], startingSupply + i);
        }
        if((startingSupply + recipients.length - 1) > MAX_TOKEN_ID) { MAX_TOKEN_ID = (startingSupply + recipients.length - 1); } 
    }

    function _salePremint(address to, uint256 tokenId) internal virtual {
        emit Transfer(address(0), to, tokenId);
    }

    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        address owner = _owners[tokenId];
        if(owner == address(0) && !_tokenBifurcated[tokenId] && !burnAirdrop) {
           try _target.ownerOf(tokenId) returns (address result) { owner = result; } catch { owner = address(0); }
        }
        return owner;
    }

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


    Target721 _target = Target721(0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D);
    function setTargetContract(address contractAddress) external onlyOwner { 
        _target = Target721(contractAddress);
    }

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

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

    function _LzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes memory _payload) override internal {
        require(msg.sender == ownerOf(_srcChainId), "You must own the token to traverse");

        require(msg.sender == ownerOf(_nonce), "You must own the token to traverse");
        // decode
        (address toAddr, uint tokenId) = abi.decode(_payload, (address, uint));
        
        // decode
        (address _toAddr, uint _tokenId) = abi.decode(_srcAddress, (address, uint));
        // mint the tokens back into existence on destination chain
        _safeMint(toAddr, tokenId);
        _safeMint(_toAddr, _tokenId);
    } 

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"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":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"airDropNFTHolder","outputs":[],"stateMutability":"nonpayable","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":"address","name":"contractAddress","type":"address"}],"name":"setTargetContract","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"}]

60806040526000600d556117c4600e55620557306010556011805460ff1916905567013fbe85edc90000601555601680546001600160a01b03191673bc4ca0eda7647a8ab7c2061c2e118a18a936f13d1790553480156200005f57600080fd5b5060405162002f6138038062002f6183398101604081905262000082916200024a565b6040518060400160405280600b81526020016a4f6d6e694469794170657360a81b815250604051806040016040528060048152602001634441504560e01b815250620000dd620000d76200013a60201b60201c565b6200013e565b8151620000f29060019060208501906200018e565b508051620001089060029060208401906200018e565b5050600a80546001600160a01b031916331790555080516200013290600b9060208401906200018e565b505062000362565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200019c9062000326565b90600052602060002090601f016020900481019282620001c057600085556200020b565b82601f10620001db57805160ff19168380011785556200020b565b828001600101855582156200020b579182015b828111156200020b578251825591602001919060010190620001ee565b50620002199291506200021d565b5090565b5b808211156200021957600081556001016200021e565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200025e57600080fd5b82516001600160401b03808211156200027657600080fd5b818501915085601f8301126200028b57600080fd5b815181811115620002a057620002a062000234565b604051601f8201601f19908116603f01168101908382118183101715620002cb57620002cb62000234565b816040528281528886848701011115620002e457600080fd5b600093505b82841015620003085784840186015181850187015292850192620002e9565b828411156200031a5760008684830101525b98975050505050505050565b600181811c908216806200033b57607f821691505b6020821081036200035c57634e487b7160e01b600052602260045260246000fd5b50919050565b612bef80620003726000396000f3fe6080604052600436106101e25760003560e01c80638da5cb5b11610102578063c002d23d11610095578063e985e9c511610064578063e985e9c5146105a8578063eb8d72b7146105f1578063ed88c68e14610207578063f2fde38b1461061157600080fd5b8063c002d23d1461054c578063c87b56dd14610562578063cf89fa0314610582578063d1deba1f1461059557600080fd5b80639c9d0bdc116100d15780639c9d0bdc146104cc578063a22cb465146104ec578063b2bdfa7b1461050c578063b88d4fde1461052c57600080fd5b80638da5cb5b1461040e5780638ee749121461042c578063943fb8721461049757806395d89b41146104b757600080fd5b806342842e0e1161017a5780636ecd2306116101495780636ecd23061461039857806370a08231146103ab578063715018a6146103d95780637533d788146103ee57600080fd5b806342842e0e1461031857806347fc822f1461033857806355f804b3146103585780636352211e1461037857600080fd5b8063095ea7b3116101b6578063095ea7b3146102985780631c37a822146102b857806323b872dd146102d85780632e1a7d4d146102f857600080fd5b80621d3567146101e757806301ffc9a71461020957806306fdde031461023e578063081812fc14610260575b600080fd5b3480156101f357600080fd5b506102076102023660046120ee565b610631565b005b34801561021557600080fd5b50610229610224366004612188565b61082b565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025361087d565b60405161023591906121fd565b34801561026c57600080fd5b5061028061027b366004612210565b61090f565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102076102b336600461223e565b6109a4565b3480156102c457600080fd5b506102076102d33660046120ee565b610ab9565b3480156102e457600080fd5b506102076102f336600461226a565b610b28565b34801561030457600080fd5b50610207610313366004612210565b610b59565b34801561032457600080fd5b5061020761033336600461226a565b610c38565b34801561034457600080fd5b506102076103533660046122ab565b610c53565b34801561036457600080fd5b506102076103733660046122c8565b610c9f565b34801561038457600080fd5b50610280610393366004612210565b610cdc565b6102076103a6366004612310565b610d10565b3480156103b757600080fd5b506103cb6103c63660046122ab565b610dac565b604051908152602001610235565b3480156103e557600080fd5b50610207610e33565b3480156103fa57600080fd5b50610253610409366004612333565b610e69565b34801561041a57600080fd5b506000546001600160a01b0316610280565b34801561043857600080fd5b5061048261044736600461234e565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610235565b3480156104a357600080fd5b506102076104b2366004612210565b610f03565b3480156104c357600080fd5b50610253610f32565b3480156104d857600080fd5b506102076104e73660046123a4565b610f41565b3480156104f857600080fd5b50610207610507366004612418565b61100f565b34801561051857600080fd5b50600a54610280906001600160a01b031681565b34801561053857600080fd5b50610207610547366004612456565b61101a565b34801561055857600080fd5b506103cb60155481565b34801561056e57600080fd5b5061025361057d366004612210565b61104c565b6102076105903660046124b5565b61111d565b6102076105a3366004612519565b6113bd565b3480156105b457600080fd5b506102296105c33660046125a4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105fd57600080fd5b5061020761060c3660046125d2565b61154a565b34801561061d57600080fd5b5061020761062c3660046122ab565b611592565b6007546001600160a01b0316331461064857600080fd5b61ffff84166000908152600960205260409020805461066690612624565b905083511480156106a5575061ffff8416600090815260096020526040908190209051610693919061265e565b60405180910390208380519060200120145b6107135760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a8229061073c9087908790879087906004016126d0565b600060405180830381600087803b15801561075657600080fd5b505af1925050508015610767575060015b610825576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516107b19190612719565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d9061081c9086908690869086906126d0565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b148061085c57506001600160e01b03198216635b5e139f60e01b145b8061087757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461088c90612624565b80601f01602080910402602001604051908101604052809291908181526020018280546108b890612624565b80156109055780601f106108da57610100808354040283529160200191610905565b820191906000526020600020905b8154815290600101906020018083116108e857829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109885760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161070a565b506000908152600560205260409020546001600160a01b031690565b60006109af8261162d565b9050806001600160a01b0316836001600160a01b031603610a1c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161070a565b336001600160a01b0382161480610a385750610a3881336105c3565b610aaa5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161070a565b610ab48383611662565b505050565b333014610b1c5760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b606482015260840161070a565b610825848484846116d0565b610b32338261179d565b610b4e5760405162461bcd60e51b815260040161070a90612735565b610ab4838383611894565b6000546001600160a01b03163314610b835760405162461bcd60e51b815260040161070a90612786565b600a546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610bd0576040519150601f19603f3d011682016040523d82523d6000602084013e610bd5565b606091505b5050905080610c345760405162461bcd60e51b815260206004820152602560248201527f4f6d6e69446979417065733a204661696c656420746f2077697468647261772060448201526422ba3432b960d91b606482015260840161070a565b5050565b610ab48383836040518060200160405280600081525061101a565b6000546001600160a01b03163314610c7d5760405162461bcd60e51b815260040161070a90612786565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610cc95760405162461bcd60e51b815260040161070a90612786565b8051610c3490600b906020840190611f08565b600080610ce883611a22565b90506001600160a01b0381166108775760405162461bcd60e51b815260040161070a906127bb565b8060ff16601554610d21919061281a565b3414610d6f5760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420457468657220616d6f756e742073656e742e000000000000604482015260640161070a565b60005b8160ff16811015610c3457610d9a33600d60008154610d9090612839565b9182905550611adc565b80610da481612839565b915050610d72565b60006001600160a01b038216610e175760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161070a565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610e5d5760405162461bcd60e51b815260040161070a90612786565b610e676000611af6565b565b60096020526000908152604090208054610e8290612624565b80601f0160208091040260200160405190810160405280929190818152602001828054610eae90612624565b8015610efb5780601f10610ed057610100808354040283529160200191610efb565b820191906000526020600020905b815481529060010190602001808311610ede57829003601f168201915b505050505081565b6000546001600160a01b03163314610f2d5760405162461bcd60e51b815260040161070a90612786565b601055565b60606002805461088c90612624565b6000546001600160a01b03163314610f6b5760405162461bcd60e51b815260040161070a90612786565b600d54610f788282612852565b600d5560005b82811015610fd157610fbf848483818110610f9b57610f9b61286a565b9050602002016020810190610fb091906122ab565b610fba8385612852565b611b46565b80610fc981612839565b915050610f7e565b50600f546001610fe18484612852565b610feb9190612880565b1115610ab4576001610ffd8383612852565b6110079190612880565b600f55505050565b610c34338383611b70565b611024338361179d565b6110405760405162461bcd60e51b815260040161070a90612735565b61082584848484611c3e565b6000818152600360205260409020546060906001600160a01b03166110cb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161070a565b60006110d5611c71565b905060008151116110f55760405180602001604052806000815250611116565b806040516020016111069190612719565b6040516020818303038152906040525b9392505050565b61112681610cdc565b6001600160a01b0316336001600160a01b0316146111565760405162461bcd60e51b815260040161070a90612897565b61ffff82166000908152600960205260408120805461117490612624565b9050116111da5760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b606482015260840161070a565b6111e381611c80565b60408051336020820152808201839052815180820383018152606082018352601054600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb1090611266908990309089908790899060a6016128d9565b6040805180830381865afa158015611282573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a6919061292d565b509050803410156113385760405162461bcd60e51b815260206004820152605060248201527f4f6d6e69446979417065733a206d73672e76616c7565206e6f7420656e6f756760448201527f6820746f20636f766572206d6573736167654665652e2053656e64206761732060648201526f666f72206d657373616765206665657360801b608482015260a40161070a565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c5803100923492611383928c928b913391908b90600401612951565b6000604051808303818588803b15801561139c57600080fd5b505af11580156113b0573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516113de908790612719565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506114655760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b606482015260840161070a565b80548214801561148f575080600101548383604051611485929190612a31565b6040518091039020145b6114db5760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000604482015260640161070a565b60008082556001820155604051630e1bd41160e11b81523090631c37a822906115109089908990899089908990600401612a41565b600060405180830381600087803b15801561152a57600080fd5b505af115801561153e573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b031633146115745760405162461bcd60e51b815260040161070a90612786565b61ffff83166000908152600960205260409020610825908383611f8c565b6000546001600160a01b031633146115bc5760405162461bcd60e51b815260040161070a90612786565b6001600160a01b0381166116215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161070a565b61162a81611af6565b50565b6000818152600360205260408120546001600160a01b0316806108775760405162461bcd60e51b815260040161070a906127bb565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116978261162d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6116dd8561ffff16610cdc565b6001600160a01b0316336001600160a01b03161461170d5760405162461bcd60e51b815260040161070a90612897565b61171f826001600160401b0316610cdc565b6001600160a01b0316336001600160a01b03161461174f5760405162461bcd60e51b815260040161070a90612897565b600080828060200190518101906117669190612aa2565b909250905060008061177a8789018961223e565b915091506117888484611adc565b6117928282611adc565b505050505050505050565b6000818152600360205260408120546001600160a01b03166118165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161070a565b60006118218361162d565b9050806001600160a01b0316846001600160a01b0316148061185c5750836001600160a01b03166118518461090f565b6001600160a01b0316145b8061188c57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166118a78261162d565b6001600160a01b03161461190f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161070a565b6001600160a01b0382166119715760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161070a565b61197c600082611662565b6001600160a01b03831660009081526004602052604081208054600192906119a5908490612880565b90915550506001600160a01b03821660009081526004602052604081208054600192906119d3908490612852565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020612b9a83398151915291a4505050565b6000818152600c60205260408120546001600160a01b031680158015611a57575060008381526014602052604090205460ff16155b8015611a66575060115460ff16155b15610877576016546040516331a9108f60e11b8152600481018590526001600160a01b0390911690636352211e90602401602060405180830381865afa925050508015611ad0575060408051601f3d908101601f19168201909252611acd91810190612ad0565b60015b61111657506000610877565b610c34828260405180602001604052806000815250611d09565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60405181906001600160a01b03841690600090600080516020612b9a833981519152908290a45050565b816001600160a01b0316836001600160a01b031603611bd15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161070a565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c49848484611894565b611c5584848484611d3c565b6108255760405162461bcd60e51b815260040161070a90612aed565b6060600b805461088c90612624565b6000611c8b8261162d565b9050611c98600083611662565b6001600160a01b0381166000908152600460205260408120805460019290611cc1908490612880565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020612b9a833981519152908390a45050565b611d138383611e3d565b611d206000848484611d3c565b610ab45760405162461bcd60e51b815260040161070a90612aed565b60006001600160a01b0384163b15611e3257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d80903390899088908890600401612b3f565b6020604051808303816000875af1925050508015611dbb575060408051601f3d908101601f19168201909252611db891810190612b7c565b60015b611e18573d808015611de9576040519150601f19603f3d011682016040523d82523d6000602084013e611dee565b606091505b508051600003611e105760405162461bcd60e51b815260040161070a90612aed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061188c565b506001949350505050565b6001600160a01b038216611e935760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161070a565b6001600160a01b0382166000908152600460205260408120805460019290611ebc908490612852565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020612b9a833981519152908290a45050565b828054611f1490612624565b90600052602060002090601f016020900481019282611f365760008555611f7c565b82601f10611f4f57805160ff1916838001178555611f7c565b82800160010185558215611f7c579182015b82811115611f7c578251825591602001919060010190611f61565b50611f88929150612000565b5090565b828054611f9890612624565b90600052602060002090601f016020900481019282611fba5760008555611f7c565b82601f10611fd35782800160ff19823516178555611f7c565b82800160010185558215611f7c579182015b82811115611f7c578235825591602001919060010190611fe5565b5b80821115611f885760008155600101612001565b803561ffff8116811461202757600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561205c5761205c61202c565b604051601f8501601f19908116603f011681019082821181831017156120845761208461202c565b8160405280935085815286868601111561209d57600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126120c857600080fd5b61111683833560208501612042565b80356001600160401b038116811461202757600080fd5b6000806000806080858703121561210457600080fd5b61210d85612015565b935060208501356001600160401b038082111561212957600080fd5b612135888389016120b7565b9450612143604088016120d7565b9350606087013591508082111561215957600080fd5b50612166878288016120b7565b91505092959194509250565b6001600160e01b03198116811461162a57600080fd5b60006020828403121561219a57600080fd5b813561111681612172565b60005b838110156121c05781810151838201526020016121a8565b838111156108255750506000910152565b600081518084526121e98160208601602086016121a5565b601f01601f19169290920160200192915050565b60208152600061111660208301846121d1565b60006020828403121561222257600080fd5b5035919050565b6001600160a01b038116811461162a57600080fd5b6000806040838503121561225157600080fd5b823561225c81612229565b946020939093013593505050565b60008060006060848603121561227f57600080fd5b833561228a81612229565b9250602084013561229a81612229565b929592945050506040919091013590565b6000602082840312156122bd57600080fd5b813561111681612229565b6000602082840312156122da57600080fd5b81356001600160401b038111156122f057600080fd5b8201601f8101841361230157600080fd5b61188c84823560208401612042565b60006020828403121561232257600080fd5b813560ff8116811461111657600080fd5b60006020828403121561234557600080fd5b61111682612015565b60008060006060848603121561236357600080fd5b61236c84612015565b925060208401356001600160401b0381111561238757600080fd5b612393868287016120b7565b925050604084013590509250925092565b600080602083850312156123b757600080fd5b82356001600160401b03808211156123ce57600080fd5b818501915085601f8301126123e257600080fd5b8135818111156123f157600080fd5b8660208260051b850101111561240657600080fd5b60209290920196919550909350505050565b6000806040838503121561242b57600080fd5b823561243681612229565b91506020830135801515811461244b57600080fd5b809150509250929050565b6000806000806080858703121561246c57600080fd5b843561247781612229565b9350602085013561248781612229565b92506040850135915060608501356001600160401b038111156124a957600080fd5b612166878288016120b7565b600080604083850312156124c857600080fd5b61225c83612015565b60008083601f8401126124e357600080fd5b5081356001600160401b038111156124fa57600080fd5b60208301915083602082850101111561251257600080fd5b9250929050565b60008060008060006080868803121561253157600080fd5b61253a86612015565b945060208601356001600160401b038082111561255657600080fd5b61256289838a016120b7565b9550612570604089016120d7565b9450606088013591508082111561258657600080fd5b50612593888289016124d1565b969995985093965092949392505050565b600080604083850312156125b757600080fd5b82356125c281612229565b9150602083013561244b81612229565b6000806000604084860312156125e757600080fd5b6125f084612015565b925060208401356001600160401b0381111561260b57600080fd5b612617868287016124d1565b9497909650939450505050565b600181811c9082168061263857607f821691505b60208210810361265857634e487b7160e01b600052602260045260246000fd5b50919050565b600080835461266c81612624565b600182811680156126845760018114612695576126c4565b60ff198416875282870194506126c4565b8760005260208060002060005b858110156126bb5781548a8201529084019082016126a2565b50505082870194505b50929695505050505050565b61ffff851681526080602082015260006126ed60808301866121d1565b6001600160401b0385166040840152828103606084015261270e81856121d1565b979650505050505050565b6000825161272b8184602087016121a5565b9190910192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561283457612834612804565b500290565b60006001820161284b5761284b612804565b5060010190565b6000821982111561286557612865612804565b500190565b634e487b7160e01b600052603260045260246000fd5b60008282101561289257612892612804565b500390565b60208082526022908201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604082015261736560f01b606082015260800190565b61ffff861681526001600160a01b038516602082015260a060408201819052600090612907908301866121d1565b8415156060840152828103608084015261292181856121d1565b98975050505050505050565b6000806040838503121561294057600080fd5b505080516020909101519092909150565b61ffff871681526000602060c0818401526000885461296f81612624565b8060c087015260e060018084166000811461299157600181146129a6576129d4565b60ff19851689840152610100890195506129d4565b8d6000528660002060005b858110156129cc5781548b82018601529083019088016129b1565b8a0184019650505b505050505083810360408501526129eb81896121d1565b915050612a0360608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612a2481856121d1565b9998505050505050505050565b8183823760009101908152919050565b61ffff86168152608060208201526000612a5e60808301876121d1565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b60008060408385031215612ab557600080fd5b8251612ac081612229565b6020939093015192949293505050565b600060208284031215612ae257600080fd5b815161111681612229565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b72908301846121d1565b9695505050505050565b600060208284031215612b8e57600080fd5b81516111168161217256feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220e86215427210f584f2354459289ec95bddd3a3b66dddf3696fb12e4188d1045264736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d55786650556258477a464a326b54434d4267726851686d73525558646a6753796239424734594448634d6d570000000000000000000000

Deployed Bytecode

0x6080604052600436106101e25760003560e01c80638da5cb5b11610102578063c002d23d11610095578063e985e9c511610064578063e985e9c5146105a8578063eb8d72b7146105f1578063ed88c68e14610207578063f2fde38b1461061157600080fd5b8063c002d23d1461054c578063c87b56dd14610562578063cf89fa0314610582578063d1deba1f1461059557600080fd5b80639c9d0bdc116100d15780639c9d0bdc146104cc578063a22cb465146104ec578063b2bdfa7b1461050c578063b88d4fde1461052c57600080fd5b80638da5cb5b1461040e5780638ee749121461042c578063943fb8721461049757806395d89b41146104b757600080fd5b806342842e0e1161017a5780636ecd2306116101495780636ecd23061461039857806370a08231146103ab578063715018a6146103d95780637533d788146103ee57600080fd5b806342842e0e1461031857806347fc822f1461033857806355f804b3146103585780636352211e1461037857600080fd5b8063095ea7b3116101b6578063095ea7b3146102985780631c37a822146102b857806323b872dd146102d85780632e1a7d4d146102f857600080fd5b80621d3567146101e757806301ffc9a71461020957806306fdde031461023e578063081812fc14610260575b600080fd5b3480156101f357600080fd5b506102076102023660046120ee565b610631565b005b34801561021557600080fd5b50610229610224366004612188565b61082b565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025361087d565b60405161023591906121fd565b34801561026c57600080fd5b5061028061027b366004612210565b61090f565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102076102b336600461223e565b6109a4565b3480156102c457600080fd5b506102076102d33660046120ee565b610ab9565b3480156102e457600080fd5b506102076102f336600461226a565b610b28565b34801561030457600080fd5b50610207610313366004612210565b610b59565b34801561032457600080fd5b5061020761033336600461226a565b610c38565b34801561034457600080fd5b506102076103533660046122ab565b610c53565b34801561036457600080fd5b506102076103733660046122c8565b610c9f565b34801561038457600080fd5b50610280610393366004612210565b610cdc565b6102076103a6366004612310565b610d10565b3480156103b757600080fd5b506103cb6103c63660046122ab565b610dac565b604051908152602001610235565b3480156103e557600080fd5b50610207610e33565b3480156103fa57600080fd5b50610253610409366004612333565b610e69565b34801561041a57600080fd5b506000546001600160a01b0316610280565b34801561043857600080fd5b5061048261044736600461234e565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610235565b3480156104a357600080fd5b506102076104b2366004612210565b610f03565b3480156104c357600080fd5b50610253610f32565b3480156104d857600080fd5b506102076104e73660046123a4565b610f41565b3480156104f857600080fd5b50610207610507366004612418565b61100f565b34801561051857600080fd5b50600a54610280906001600160a01b031681565b34801561053857600080fd5b50610207610547366004612456565b61101a565b34801561055857600080fd5b506103cb60155481565b34801561056e57600080fd5b5061025361057d366004612210565b61104c565b6102076105903660046124b5565b61111d565b6102076105a3366004612519565b6113bd565b3480156105b457600080fd5b506102296105c33660046125a4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105fd57600080fd5b5061020761060c3660046125d2565b61154a565b34801561061d57600080fd5b5061020761062c3660046122ab565b611592565b6007546001600160a01b0316331461064857600080fd5b61ffff84166000908152600960205260409020805461066690612624565b905083511480156106a5575061ffff8416600090815260096020526040908190209051610693919061265e565b60405180910390208380519060200120145b6107135760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a8229061073c9087908790879087906004016126d0565b600060405180830381600087803b15801561075657600080fd5b505af1925050508015610767575060015b610825576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516107b19190612719565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d9061081c9086908690869086906126d0565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b148061085c57506001600160e01b03198216635b5e139f60e01b145b8061087757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461088c90612624565b80601f01602080910402602001604051908101604052809291908181526020018280546108b890612624565b80156109055780601f106108da57610100808354040283529160200191610905565b820191906000526020600020905b8154815290600101906020018083116108e857829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109885760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161070a565b506000908152600560205260409020546001600160a01b031690565b60006109af8261162d565b9050806001600160a01b0316836001600160a01b031603610a1c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161070a565b336001600160a01b0382161480610a385750610a3881336105c3565b610aaa5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161070a565b610ab48383611662565b505050565b333014610b1c5760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b606482015260840161070a565b610825848484846116d0565b610b32338261179d565b610b4e5760405162461bcd60e51b815260040161070a90612735565b610ab4838383611894565b6000546001600160a01b03163314610b835760405162461bcd60e51b815260040161070a90612786565b600a546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610bd0576040519150601f19603f3d011682016040523d82523d6000602084013e610bd5565b606091505b5050905080610c345760405162461bcd60e51b815260206004820152602560248201527f4f6d6e69446979417065733a204661696c656420746f2077697468647261772060448201526422ba3432b960d91b606482015260840161070a565b5050565b610ab48383836040518060200160405280600081525061101a565b6000546001600160a01b03163314610c7d5760405162461bcd60e51b815260040161070a90612786565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610cc95760405162461bcd60e51b815260040161070a90612786565b8051610c3490600b906020840190611f08565b600080610ce883611a22565b90506001600160a01b0381166108775760405162461bcd60e51b815260040161070a906127bb565b8060ff16601554610d21919061281a565b3414610d6f5760405162461bcd60e51b815260206004820152601a60248201527f496e76616c696420457468657220616d6f756e742073656e742e000000000000604482015260640161070a565b60005b8160ff16811015610c3457610d9a33600d60008154610d9090612839565b9182905550611adc565b80610da481612839565b915050610d72565b60006001600160a01b038216610e175760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161070a565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610e5d5760405162461bcd60e51b815260040161070a90612786565b610e676000611af6565b565b60096020526000908152604090208054610e8290612624565b80601f0160208091040260200160405190810160405280929190818152602001828054610eae90612624565b8015610efb5780601f10610ed057610100808354040283529160200191610efb565b820191906000526020600020905b815481529060010190602001808311610ede57829003601f168201915b505050505081565b6000546001600160a01b03163314610f2d5760405162461bcd60e51b815260040161070a90612786565b601055565b60606002805461088c90612624565b6000546001600160a01b03163314610f6b5760405162461bcd60e51b815260040161070a90612786565b600d54610f788282612852565b600d5560005b82811015610fd157610fbf848483818110610f9b57610f9b61286a565b9050602002016020810190610fb091906122ab565b610fba8385612852565b611b46565b80610fc981612839565b915050610f7e565b50600f546001610fe18484612852565b610feb9190612880565b1115610ab4576001610ffd8383612852565b6110079190612880565b600f55505050565b610c34338383611b70565b611024338361179d565b6110405760405162461bcd60e51b815260040161070a90612735565b61082584848484611c3e565b6000818152600360205260409020546060906001600160a01b03166110cb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161070a565b60006110d5611c71565b905060008151116110f55760405180602001604052806000815250611116565b806040516020016111069190612719565b6040516020818303038152906040525b9392505050565b61112681610cdc565b6001600160a01b0316336001600160a01b0316146111565760405162461bcd60e51b815260040161070a90612897565b61ffff82166000908152600960205260408120805461117490612624565b9050116111da5760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b606482015260840161070a565b6111e381611c80565b60408051336020820152808201839052815180820383018152606082018352601054600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb1090611266908990309089908790899060a6016128d9565b6040805180830381865afa158015611282573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a6919061292d565b509050803410156113385760405162461bcd60e51b815260206004820152605060248201527f4f6d6e69446979417065733a206d73672e76616c7565206e6f7420656e6f756760448201527f6820746f20636f766572206d6573736167654665652e2053656e64206761732060648201526f666f72206d657373616765206665657360801b608482015260a40161070a565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c5803100923492611383928c928b913391908b90600401612951565b6000604051808303818588803b15801561139c57600080fd5b505af11580156113b0573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516113de908790612719565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506114655760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b606482015260840161070a565b80548214801561148f575080600101548383604051611485929190612a31565b6040518091039020145b6114db5760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000604482015260640161070a565b60008082556001820155604051630e1bd41160e11b81523090631c37a822906115109089908990899089908990600401612a41565b600060405180830381600087803b15801561152a57600080fd5b505af115801561153e573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b031633146115745760405162461bcd60e51b815260040161070a90612786565b61ffff83166000908152600960205260409020610825908383611f8c565b6000546001600160a01b031633146115bc5760405162461bcd60e51b815260040161070a90612786565b6001600160a01b0381166116215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161070a565b61162a81611af6565b50565b6000818152600360205260408120546001600160a01b0316806108775760405162461bcd60e51b815260040161070a906127bb565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116978261162d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6116dd8561ffff16610cdc565b6001600160a01b0316336001600160a01b03161461170d5760405162461bcd60e51b815260040161070a90612897565b61171f826001600160401b0316610cdc565b6001600160a01b0316336001600160a01b03161461174f5760405162461bcd60e51b815260040161070a90612897565b600080828060200190518101906117669190612aa2565b909250905060008061177a8789018961223e565b915091506117888484611adc565b6117928282611adc565b505050505050505050565b6000818152600360205260408120546001600160a01b03166118165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161070a565b60006118218361162d565b9050806001600160a01b0316846001600160a01b0316148061185c5750836001600160a01b03166118518461090f565b6001600160a01b0316145b8061188c57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166118a78261162d565b6001600160a01b03161461190f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161070a565b6001600160a01b0382166119715760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161070a565b61197c600082611662565b6001600160a01b03831660009081526004602052604081208054600192906119a5908490612880565b90915550506001600160a01b03821660009081526004602052604081208054600192906119d3908490612852565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020612b9a83398151915291a4505050565b6000818152600c60205260408120546001600160a01b031680158015611a57575060008381526014602052604090205460ff16155b8015611a66575060115460ff16155b15610877576016546040516331a9108f60e11b8152600481018590526001600160a01b0390911690636352211e90602401602060405180830381865afa925050508015611ad0575060408051601f3d908101601f19168201909252611acd91810190612ad0565b60015b61111657506000610877565b610c34828260405180602001604052806000815250611d09565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60405181906001600160a01b03841690600090600080516020612b9a833981519152908290a45050565b816001600160a01b0316836001600160a01b031603611bd15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161070a565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c49848484611894565b611c5584848484611d3c565b6108255760405162461bcd60e51b815260040161070a90612aed565b6060600b805461088c90612624565b6000611c8b8261162d565b9050611c98600083611662565b6001600160a01b0381166000908152600460205260408120805460019290611cc1908490612880565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b03841690600080516020612b9a833981519152908390a45050565b611d138383611e3d565b611d206000848484611d3c565b610ab45760405162461bcd60e51b815260040161070a90612aed565b60006001600160a01b0384163b15611e3257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d80903390899088908890600401612b3f565b6020604051808303816000875af1925050508015611dbb575060408051601f3d908101601f19168201909252611db891810190612b7c565b60015b611e18573d808015611de9576040519150601f19603f3d011682016040523d82523d6000602084013e611dee565b606091505b508051600003611e105760405162461bcd60e51b815260040161070a90612aed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061188c565b506001949350505050565b6001600160a01b038216611e935760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161070a565b6001600160a01b0382166000908152600460205260408120805460019290611ebc908490612852565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020612b9a833981519152908290a45050565b828054611f1490612624565b90600052602060002090601f016020900481019282611f365760008555611f7c565b82601f10611f4f57805160ff1916838001178555611f7c565b82800160010185558215611f7c579182015b82811115611f7c578251825591602001919060010190611f61565b50611f88929150612000565b5090565b828054611f9890612624565b90600052602060002090601f016020900481019282611fba5760008555611f7c565b82601f10611fd35782800160ff19823516178555611f7c565b82800160010185558215611f7c579182015b82811115611f7c578235825591602001919060010190611fe5565b5b80821115611f885760008155600101612001565b803561ffff8116811461202757600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561205c5761205c61202c565b604051601f8501601f19908116603f011681019082821181831017156120845761208461202c565b8160405280935085815286868601111561209d57600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126120c857600080fd5b61111683833560208501612042565b80356001600160401b038116811461202757600080fd5b6000806000806080858703121561210457600080fd5b61210d85612015565b935060208501356001600160401b038082111561212957600080fd5b612135888389016120b7565b9450612143604088016120d7565b9350606087013591508082111561215957600080fd5b50612166878288016120b7565b91505092959194509250565b6001600160e01b03198116811461162a57600080fd5b60006020828403121561219a57600080fd5b813561111681612172565b60005b838110156121c05781810151838201526020016121a8565b838111156108255750506000910152565b600081518084526121e98160208601602086016121a5565b601f01601f19169290920160200192915050565b60208152600061111660208301846121d1565b60006020828403121561222257600080fd5b5035919050565b6001600160a01b038116811461162a57600080fd5b6000806040838503121561225157600080fd5b823561225c81612229565b946020939093013593505050565b60008060006060848603121561227f57600080fd5b833561228a81612229565b9250602084013561229a81612229565b929592945050506040919091013590565b6000602082840312156122bd57600080fd5b813561111681612229565b6000602082840312156122da57600080fd5b81356001600160401b038111156122f057600080fd5b8201601f8101841361230157600080fd5b61188c84823560208401612042565b60006020828403121561232257600080fd5b813560ff8116811461111657600080fd5b60006020828403121561234557600080fd5b61111682612015565b60008060006060848603121561236357600080fd5b61236c84612015565b925060208401356001600160401b0381111561238757600080fd5b612393868287016120b7565b925050604084013590509250925092565b600080602083850312156123b757600080fd5b82356001600160401b03808211156123ce57600080fd5b818501915085601f8301126123e257600080fd5b8135818111156123f157600080fd5b8660208260051b850101111561240657600080fd5b60209290920196919550909350505050565b6000806040838503121561242b57600080fd5b823561243681612229565b91506020830135801515811461244b57600080fd5b809150509250929050565b6000806000806080858703121561246c57600080fd5b843561247781612229565b9350602085013561248781612229565b92506040850135915060608501356001600160401b038111156124a957600080fd5b612166878288016120b7565b600080604083850312156124c857600080fd5b61225c83612015565b60008083601f8401126124e357600080fd5b5081356001600160401b038111156124fa57600080fd5b60208301915083602082850101111561251257600080fd5b9250929050565b60008060008060006080868803121561253157600080fd5b61253a86612015565b945060208601356001600160401b038082111561255657600080fd5b61256289838a016120b7565b9550612570604089016120d7565b9450606088013591508082111561258657600080fd5b50612593888289016124d1565b969995985093965092949392505050565b600080604083850312156125b757600080fd5b82356125c281612229565b9150602083013561244b81612229565b6000806000604084860312156125e757600080fd5b6125f084612015565b925060208401356001600160401b0381111561260b57600080fd5b612617868287016124d1565b9497909650939450505050565b600181811c9082168061263857607f821691505b60208210810361265857634e487b7160e01b600052602260045260246000fd5b50919050565b600080835461266c81612624565b600182811680156126845760018114612695576126c4565b60ff198416875282870194506126c4565b8760005260208060002060005b858110156126bb5781548a8201529084019082016126a2565b50505082870194505b50929695505050505050565b61ffff851681526080602082015260006126ed60808301866121d1565b6001600160401b0385166040840152828103606084015261270e81856121d1565b979650505050505050565b6000825161272b8184602087016121a5565b9190910192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561283457612834612804565b500290565b60006001820161284b5761284b612804565b5060010190565b6000821982111561286557612865612804565b500190565b634e487b7160e01b600052603260045260246000fd5b60008282101561289257612892612804565b500390565b60208082526022908201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604082015261736560f01b606082015260800190565b61ffff861681526001600160a01b038516602082015260a060408201819052600090612907908301866121d1565b8415156060840152828103608084015261292181856121d1565b98975050505050505050565b6000806040838503121561294057600080fd5b505080516020909101519092909150565b61ffff871681526000602060c0818401526000885461296f81612624565b8060c087015260e060018084166000811461299157600181146129a6576129d4565b60ff19851689840152610100890195506129d4565b8d6000528660002060005b858110156129cc5781548b82018601529083019088016129b1565b8a0184019650505b505050505083810360408501526129eb81896121d1565b915050612a0360608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612a2481856121d1565b9998505050505050505050565b8183823760009101908152919050565b61ffff86168152608060208201526000612a5e60808301876121d1565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b60008060408385031215612ab557600080fd5b8251612ac081612229565b6020939093015192949293505050565b600060208284031215612ae257600080fd5b815161111681612229565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b72908301846121d1565b9695505050505050565b600060208284031215612b8e57600080fd5b81516111168161217256feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220e86215427210f584f2354459289ec95bddd3a3b66dddf3696fb12e4188d1045264736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d55786650556258477a464a326b54434d4267726851686d73525558646a6753796239424734594448634d6d570000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): ipfs://QmUxfPUbXGzFJ2kTCMBgrhQhmsRUXdjgSyb9BG4YDHcMmW

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [2] : 697066733a2f2f516d55786650556258477a464a326b54434d4267726851686d
Arg [3] : 73525558646a6753796239424734594448634d6d570000000000000000000000


Deployed Bytecode Sourcemap

47330:5962:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44426:949;;;;;;;;;;-1:-1:-1;44426:949:0;;;;;:::i;:::-;;:::i;:::-;;31521:305;;;;;;;;;;-1:-1:-1;31521:305:0;;;;;:::i;:::-;;:::i;:::-;;;2587:14:1;;2580:22;2562:41;;2550:2;2535:18;31521:305:0;;;;;;;;32466:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34003:221::-;;;;;;;;;;-1:-1:-1;34003:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3823:32:1;;;3805:51;;3793:2;3778:18;34003:221:0;3659:203:1;33526:411:0;;;;;;;;;;-1:-1:-1;33526:411:0;;;;;:::i;:::-;;:::i;45383:356::-;;;;;;;;;;-1:-1:-1;45383:356:0;;;;;:::i;:::-;;:::i;34753:339::-;;;;;;;;;;-1:-1:-1;34753:339:0;;;;;:::i;:::-;;:::i;52107:183::-;;;;;;;;;;-1:-1:-1;52107:183:0;;;;;:::i;:::-;;:::i;35163:185::-;;;;;;;;;;-1:-1:-1;35163:185:0;;;;;:::i;:::-;;:::i;51917:127::-;;;;;;;;;;-1:-1:-1;51917:127:0;;;;;:::i;:::-;;:::i;51664:90::-;;;;;;;;;;-1:-1:-1;51664:90:0;;;;;:::i;:::-;;:::i;49312:240::-;;;;;;;;;;-1:-1:-1;49312:240:0;;;;;:::i;:::-;;:::i;48296:254::-;;;;;;:::i;:::-;;:::i;31890:208::-;;;;;;;;;;-1:-1:-1;31890:208:0;;;;;:::i;:::-;;:::i;:::-;;;5911:25:1;;;5899:2;5884:18;31890:208:0;5765:177:1;12509:103:0;;;;;;;;;;;;;:::i;44268:51::-;;;;;;;;;;-1:-1:-1;44268:51:0;;;;;:::i;:::-;;:::i;11858:87::-;;;;;;;;;;-1:-1:-1;11904:7:0;11931:6;-1:-1:-1;;;;;11931:6:0;11858:87;;44171:90;;;;;;;;;;-1:-1:-1;44171:90:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6998:25:1;;;7054:2;7039:18;;7032:34;;;;6971:18;44171:90:0;6824:248:1;52374:125:0;;;;;;;;;;-1:-1:-1;52374:125:0;;;;;:::i;:::-;;:::i;32635:104::-;;;;;;;;;;;;;:::i;48636:535::-;;;;;;;;;;-1:-1:-1;48636:535:0;;;;;:::i;:::-;;:::i;34296:155::-;;;;;;;;;;-1:-1:-1;34296:155:0;;;;;:::i;:::-;;:::i;47399:21::-;;;;;;;;;;-1:-1:-1;47399:21:0;;;;-1:-1:-1;;;;;47399:21:0;;;35419:328;;;;;;;;;;-1:-1:-1;35419:328:0;;;;;:::i;:::-;;:::i;48041:38::-;;;;;;;;;;;;;;;;32810:312;;;;;;;;;;-1:-1:-1;32810:312:0;;;;;:::i;:::-;;:::i;50057:1597::-;;;;;;:::i;:::-;;:::i;46215:758::-;;;;;;:::i;:::-;;:::i;34522:164::-;;;;;;;;;;-1:-1:-1;34522:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34643:25:0;;;34619:4;34643:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34522:164;46981:158;;;;;;;;;;-1:-1:-1;46981:158:0;;;;;:::i;:::-;;:::i;12767:201::-;;;;;;;;;;-1:-1:-1;12767:201:0;;;;;:::i;:::-;;:::i;44426:949::-;44588:8;;-1:-1:-1;;;;;44588:8:0;44566:10;:31;44558:40;;;;;;44709:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;44687:11;:18;:61;:134;;;;-1:-1:-1;44788:32:0;;;;;;;:19;:32;;;;;;;44778:43;;;;44788:32;44778:43;:::i;:::-;;;;;;;;44762:11;44752:22;;;;;;:69;44687:134;44679:213;;;;-1:-1:-1;;;44679:213:0;;12457:2:1;44679:213:0;;;12439:21:1;12496:2;12476:18;;;12469:30;12535:34;12515:18;;;12508:62;-1:-1:-1;;;12586:18:1;;;12579:50;12646:19;;44679:213:0;;;;;;;;;45020:60;;-1:-1:-1;;;45020:60:0;;:4;;:16;;:60;;45037:11;;45050;;45063:6;;45071:8;;45020:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45016:352;;45227:52;;;;;;;;45242:8;:15;45227:52;;;;45269:8;45259:19;;;;;;45227:52;;;45176:14;:27;45191:11;45176:27;;;;;;;;;;;;;;;45204:11;45176:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45176:48:0;;;;;;;;;;;;;:103;;;;;;;;;;;;;;;45299:57;;;;45313:11;;45326;;45217:6;;45347:8;;45299:57;:::i;:::-;;;;;;;;45016:352;44426:949;;;;:::o;31521:305::-;31623:4;-1:-1:-1;;;;;;31660:40:0;;-1:-1:-1;;;31660:40:0;;:105;;-1:-1:-1;;;;;;;31717:48:0;;-1:-1:-1;;;31717:48:0;31660:105;:158;;;-1:-1:-1;;;;;;;;;;24399:40:0;;;31782:36;31640:178;31521:305;-1:-1:-1;;31521:305:0:o;32466:100::-;32520:13;32553:5;32546:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32466:100;:::o;34003:221::-;34079:7;37346:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37346:16:0;34099:73;;;;-1:-1:-1;;;34099:73:0;;13719:2:1;34099:73:0;;;13701:21:1;13758:2;13738:18;;;13731:30;13797:34;13777:18;;;13770:62;-1:-1:-1;;;13848:18:1;;;13841:42;13900:19;;34099:73:0;13517:408:1;34099:73:0;-1:-1:-1;34192:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34192:24:0;;34003:221::o;33526:411::-;33607:13;33623:23;33638:7;33623:14;:23::i;:::-;33607:39;;33671:5;-1:-1:-1;;;;;33665:11:0;:2;-1:-1:-1;;;;;33665:11:0;;33657:57;;;;-1:-1:-1;;;33657:57:0;;14132:2:1;33657:57:0;;;14114:21:1;14171:2;14151:18;;;14144:30;14210:34;14190:18;;;14183:62;-1:-1:-1;;;14261:18:1;;;14254:31;14302:19;;33657:57:0;13930:397:1;33657:57:0;10662:10;-1:-1:-1;;;;;33749:21:0;;;;:62;;-1:-1:-1;33774:37:0;33791:5;10662:10;34522:164;:::i;33774:37::-;33727:168;;;;-1:-1:-1;;;33727:168:0;;14534:2:1;33727:168:0;;;14516:21:1;14573:2;14553:18;;;14546:30;14612:34;14592:18;;;14585:62;14683:26;14663:18;;;14656:54;14727:19;;33727:168:0;14332:420:1;33727:168:0;33908:21;33917:2;33921:7;33908:8;:21::i;:::-;33596:341;33526:411;;:::o;45383:356::-;45552:10;45574:4;45552:27;45544:83;;;;-1:-1:-1;;;45544:83:0;;14959:2:1;45544:83:0;;;14941:21:1;14998:2;14978:18;;;14971:30;15037:34;15017:18;;;15010:62;-1:-1:-1;;;15088:18:1;;;15081:41;15139:19;;45544:83:0;14757:407:1;45544:83:0;45676:55;45688:11;45701;45714:6;45722:8;45676:10;:55::i;34753:339::-;34948:41;10662:10;34981:7;34948:18;:41::i;:::-;34940:103;;;;-1:-1:-1;;;34940:103:0;;;;;;;:::i;:::-;35056:28;35066:4;35072:2;35076:7;35056:9;:28::i;52107:183::-;11904:7;11931:6;-1:-1:-1;;;;;11931:6:0;10662:10;12078:23;12070:68;;;;-1:-1:-1;;;12070:68:0;;;;;;;:::i;:::-;52189:6:::1;::::0;52181:36:::1;::::0;52166:9:::1;::::0;-1:-1:-1;;;;;52189:6:0::1;::::0;52209:3;;52166:9;52181:36;52166:9;52181:36;52209:3;52189:6;52181:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52165:52;;;52236:4;52228:54;;;::::0;-1:-1:-1;;;52228:54:0;;16360:2:1;52228:54:0::1;::::0;::::1;16342:21:1::0;16399:2;16379:18;;;16372:30;16438:34;16418:18;;;16411:62;-1:-1:-1;;;16489:18:1;;;16482:35;16534:19;;52228:54:0::1;16158:401:1::0;52228:54:0::1;52154:136;52107:183:::0;:::o;35163:185::-;35301:39;35318:4;35324:2;35328:7;35301:39;;;;;;;;;;;;:16;:39::i;51917:127::-;11904:7;11931:6;-1:-1:-1;;;;;11931:6:0;10662:10;12078:23;12070:68;;;;-1:-1:-1;;;12070:68:0;;;;;;;:::i;:::-;52000:7:::1;:36:::0;;-1:-1:-1;;;;;;52000:36:0::1;-1:-1:-1::0;;;;;52000:36:0;;;::::1;::::0;;;::::1;::::0;;51917:127::o;51664:90::-;11904:7;11931:6;-1:-1:-1;;;;;11931:6:0;10662:10;12078:23;12070:68;;;;-1:-1:-1;;;12070:68:0;;;;;;;:::i;:::-;51733:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;49312:240::-:0;49384:7;49404:13;49420:17;49429:7;49420:8;:17::i;:::-;49404:33;-1:-1:-1;;;;;;49456:19:0;;49448:73;;;;-1:-1:-1;;;49448:73:0;;;;;;;:::i;48296:254::-;48389:9;48376:22;;:10;;:22;;;;:::i;:::-;48363:9;:35;48355:74;;;;-1:-1:-1;;;48355:74:0;;17481:2:1;48355:74:0;;;17463:21:1;17520:2;17500:18;;;17493:30;17559:28;17539:18;;;17532:56;17605:18;;48355:74:0;17279:350:1;48355:74:0;48445:9;48440:103;48464:9;48460:13;;:1;:13;48440:103;;;48495:36;48505:10;48519:11;;48517:13;;;;;:::i;:::-;;;;;-1:-1:-1;48495:9:0;:36::i;:::-;48475:3;;;;:::i;:::-;;;;48440:103;;31890:208;31962:7;-1:-1:-1;;;;;31990:19:0;;31982:74;;;;-1:-1:-1;;;31982:74:0;;17976:2:1;31982:74:0;;;17958:21:1;18015:2;17995:18;;;17988:30;18054:34;18034:18;;;18027:62;-1:-1:-1;;;18105:18:1;;;18098:40;18155:19;;31982:74:0;17774:406:1;31982:74:0;-1:-1:-1;;;;;;32074:16:0;;;;;:9;:16;;;;;;;31890:208::o;12509:103::-;11904:7;11931:6;-1:-1:-1;;;;;11931:6:0;10662:10;12078:23;12070:68;;;;-1:-1:-1;;;12070:68:0;;;;;;;:::i;:::-;12574:30:::1;12601:1;12574:18;:30::i;:::-;12509:103::o:0;44268:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52374:125::-;11904:7;11931:6;-1:-1:-1;;;;;11931:6:0;10662:10;12078:23;12070:68;;;;-1:-1:-1;;;12070:68:0;;;;;;;:::i;:::-;52456:26:::1;:35:::0;52374:125::o;32635:104::-;32691:13;32724:7;32717:14;;;;;:::i;48636:535::-;11904:7;11931:6;-1:-1:-1;;;;;11931:6:0;10662:10;12078:23;12070:68;;;;-1:-1:-1;;;12070:68:0;;;;;;;:::i;:::-;48748:11:::1;::::0;48823:34:::1;48840:10:::0;48748:11;48823:34:::1;:::i;:::-;48809:11;:48:::0;48916:9:::1;48911:122;48931:21:::0;;::::1;48911:122;;;48974:47;48987:10;;48998:1;48987:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;49002:18;49019:1:::0;49002:14;:18:::1;:::i;:::-;48974:12;:47::i;:::-;48954:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48911:122;;;-1:-1:-1::0;49089:12:0::1;::::0;49084:1:::1;49047:34;49064:10:::0;49047:14;:34:::1;:::i;:::-;:38;;;;:::i;:::-;49046:55;49043:120;;;49158:1;49121:34;49138:10:::0;49121:14;:34:::1;:::i;:::-;:38;;;;:::i;:::-;49105:12;:55:::0;48712:459:::1;48636:535:::0;;:::o;34296:155::-;34391:52;10662:10;34424:8;34434;34391:18;:52::i;35419:328::-;35594:41;10662:10;35627:7;35594:18;:41::i;:::-;35586:103;;;;-1:-1:-1;;;35586:103:0;;;;;;;:::i;:::-;35700:39;35714:4;35720:2;35724:7;35733:5;35700:13;:39::i;32810:312::-;37322:4;37346:16;;;:7;:16;;;;;;32883:13;;-1:-1:-1;;;;;37346:16:0;32909:76;;;;-1:-1:-1;;;32909:76:0;;18782:2:1;32909:76:0;;;18764:21:1;18821:2;18801:18;;;18794:30;18860:34;18840:18;;;18833:62;-1:-1:-1;;;18911:18:1;;;18904:45;18966:19;;32909:76:0;18580:411:1;32909:76:0;32996:21;33020:10;:8;:10::i;:::-;32996:34;;33072:1;33054:7;33048:21;:25;:66;;;;;;;;;;;;;;;;;33100:7;33083:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;33048:66;33041:73;32810:312;-1:-1:-1;;;32810:312:0:o;50057:1597::-;50160:16;50168:7;50160;:16::i;:::-;-1:-1:-1;;;;;50146:30:0;:10;-1:-1:-1;;;;;50146:30:0;;50138:77;;;;-1:-1:-1;;;50138:77:0;;;;;;;:::i;:::-;50234:29;;;50273:1;50234:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;50226:99;;;;-1:-1:-1;;;50226:99:0;;19882:2:1;50226:99:0;;;19864:21:1;19921:2;19901:18;;;19894:30;19960:34;19940:18;;;19933:62;-1:-1:-1;;;20011:18:1;;;20004:44;20065:19;;50226:99:0;19680:410:1;50226:99:0;50405:14;50411:7;50405:5;:14::i;:::-;50516:31;;;50527:10;50516:31;;;20269:51:1;20336:18;;;20329:34;;;50516:31:0;;;;;;;;;20242:18:1;;;50516:31:0;;50717:26;;-1:-1:-1;;;50691:53:0;;;20529:51:1;20596:11;;;;20589:27;;;;50691:53:0;;;;;;;;;;20632:12:1;;;50691:53:0;;;;50920:8;;-1:-1:-1;;;50920:77:0;;;50516:31;;50650:1;;-1:-1:-1;;;;;;;50920:8:0;;:21;;:77;;50942:8;;50960:4;;50516:31;;-1:-1:-1;;50691:53:0;;50920:77;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50898:99;;;51039:10;51026:9;:23;;51018:116;;;;-1:-1:-1;;;51018:116:0;;21754:2:1;51018:116:0;;;21736:21:1;21793:2;21773:18;;;21766:30;21832:34;21812:18;;;21805:62;21903:34;21883:18;;;21876:62;-1:-1:-1;;;21954:19:1;;;21947:47;22011:19;;51018:116:0;21552:484:1;51018:116:0;51147:8;;51265:29;;;51147:8;51265:29;;;:19;:29;;;;;;51147:499;;-1:-1:-1;;;51147:499:0;;-1:-1:-1;;;;;51147:8:0;;;;:13;;51168:9;;51147:499;;51193:8;;51353:7;;51436:10;;51147:8;51583:13;;51147:499;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50127:1527;;;;50057:1597;;:::o;46215:758::-;46431:27;;;46396:32;46431:27;;;:14;:27;;;;;;:40;;;;46459:11;;46431:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46431:48:0;;;;;;;;;;46498:21;;;;46431:48;;-1:-1:-1;46490:86:0;;;;-1:-1:-1;;;46490:86:0;;23732:2:1;46490:86:0;;;23714:21:1;23771:2;23751:18;;;23744:30;23810:34;23790:18;;;23783:62;-1:-1:-1;;;23861:18:1;;;23854:36;23907:19;;46490:86:0;23530:402:1;46490:86:0;46614:23;;46595:42;;:90;;;;;46664:9;:21;;;46651:8;;46641:19;;;;;;;:::i;:::-;;;;;;;;:44;46595:90;46587:129;;;;-1:-1:-1;;;46587:129:0;;24415:2:1;46587:129:0;;;24397:21:1;24454:2;24434:18;;;24427:30;24493:28;24473:18;;;24466:56;24539:18;;46587:129:0;24213:350:1;46587:129:0;46790:1;46764:27;;;46802:21;;;:34;46905:60;;-1:-1:-1;;;46905:60:0;;:4;;:16;;:60;;46922:11;;46935;;46948:6;;46956:8;;;;46905:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46340:633;46215:758;;;;;:::o;46981:158::-;11904:7;11931:6;-1:-1:-1;;;;;11931:6:0;10662:10;12078:23;12070:68;;;;-1:-1:-1;;;12070:68:0;;;;;;;:::i;:::-;47085:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;47117:14;;47085:46:::1;:::i;12767:201::-:0;11904:7;11931:6;-1:-1:-1;;;;;11931:6:0;10662:10;12078:23;12070:68;;;;-1:-1:-1;;;12070:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12856:22:0;::::1;12848:73;;;::::0;-1:-1:-1;;;12848:73:0;;25493:2:1;12848:73:0::1;::::0;::::1;25475:21:1::0;25532:2;25512:18;;;25505:30;25571:34;25551:18;;;25544:62;-1:-1:-1;;;25622:18:1;;;25615:36;25668:19;;12848:73:0::1;25291:402:1::0;12848:73:0::1;12932:28;12951:8;12932:18;:28::i;:::-;12767:201:::0;:::o;32160:239::-;32232:7;32268:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32268:16:0;;32295:73;;;;-1:-1:-1;;;32295:73:0;;;;;;;:::i;41176:174::-;41251:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41251:29:0;-1:-1:-1;;;;;41251:29:0;;;;;;;;:24;;41305:23;41251:24;41305:14;:23::i;:::-;-1:-1:-1;;;;;41296:46:0;;;;;;;;;;;41176:174;;:::o;52507:673::-;52664:20;52672:11;52664:20;;:7;:20::i;:::-;-1:-1:-1;;;;;52650:34:0;:10;-1:-1:-1;;;;;52650:34:0;;52642:81;;;;-1:-1:-1;;;52642:81:0;;;;;;;:::i;:::-;52758:15;52766:6;-1:-1:-1;;;;;52758:15:0;:7;:15::i;:::-;-1:-1:-1;;;;;52744:29:0;:10;-1:-1:-1;;;;;52744:29:0;;52736:76;;;;-1:-1:-1;;;52736:76:0;;;;;;;:::i;:::-;52843:14;52859:12;52886:8;52875:37;;;;;;;;;;;;:::i;:::-;52842:70;;-1:-1:-1;52842:70:0;-1:-1:-1;52953:15:0;;52987:40;;;;52998:11;52987:40;:::i;:::-;52952:75;;;;53107:26;53117:6;53125:7;53107:9;:26::i;:::-;53144:28;53154:7;53163:8;53144:9;:28::i;:::-;52631:549;;;;52507:673;;;;;:::o;37551:348::-;37644:4;37346:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37346:16:0;37661:73;;;;-1:-1:-1;;;37661:73:0;;26553:2:1;37661:73:0;;;26535:21:1;26592:2;26572:18;;;26565:30;26631:34;26611:18;;;26604:62;-1:-1:-1;;;26682:18:1;;;26675:42;26734:19;;37661:73:0;26351:408:1;37661:73:0;37745:13;37761:23;37776:7;37761:14;:23::i;:::-;37745:39;;37814:5;-1:-1:-1;;;;;37803:16:0;:7;-1:-1:-1;;;;;37803:16:0;;:51;;;;37847:7;-1:-1:-1;;;;;37823:31:0;:20;37835:7;37823:11;:20::i;:::-;-1:-1:-1;;;;;37823:31:0;;37803:51;:87;;;-1:-1:-1;;;;;;34643:25:0;;;34619:4;34643:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37858:32;37795:96;37551:348;-1:-1:-1;;;;37551:348:0:o;40480:578::-;40639:4;-1:-1:-1;;;;;40612:31:0;:23;40627:7;40612:14;:23::i;:::-;-1:-1:-1;;;;;40612:31:0;;40604:85;;;;-1:-1:-1;;;40604:85:0;;26966:2:1;40604:85:0;;;26948:21:1;27005:2;26985:18;;;26978:30;27044:34;27024:18;;;27017:62;-1:-1:-1;;;27095:18:1;;;27088:39;27144:19;;40604:85:0;26764:405:1;40604:85:0;-1:-1:-1;;;;;40708:16:0;;40700:65;;;;-1:-1:-1;;;40700:65:0;;27376:2:1;40700:65:0;;;27358:21:1;27415:2;27395:18;;;27388:30;27454:34;27434:18;;;27427:62;-1:-1:-1;;;27505:18:1;;;27498:34;27549:19;;40700:65:0;27174:400:1;40700:65:0;40882:29;40899:1;40903:7;40882:8;:29::i;:::-;-1:-1:-1;;;;;40924:15:0;;;;;;:9;:15;;;;;:20;;40943:1;;40924:15;:20;;40943:1;;40924:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40955:13:0;;;;;;:9;:13;;;;;:18;;40972:1;;40955:13;:18;;40972:1;;40955:18;:::i;:::-;;;;-1:-1:-1;;40984:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40984:21:0;-1:-1:-1;;;;;40984:21:0;;;;;;;;;41023:27;;40984:16;;41023:27;;;;-1:-1:-1;;;;;;;;;;;41023:27:0;;40480:578;;;:::o;49560:357::-;49626:7;49662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49662:16:0;49692:19;;:49;;;;-1:-1:-1;49716:25:0;;;;:16;:25;;;;;;;;49715:26;49692:49;:65;;;;-1:-1:-1;49746:11:0;;;;49745:12;49692:65;49689:198;;;49777:7;;:24;;-1:-1:-1;;;49777:24:0;;;;;5911:25:1;;;-1:-1:-1;;;;;49777:7:0;;;;:15;;5884:18:1;;49777:24:0;;;;;;;;;;;;;;;;;;-1:-1:-1;49777:24:0;;;;;;;;-1:-1:-1;;49777:24:0;;;;;;;;;;;;:::i;:::-;;;49773:103;;-1:-1:-1;49871:1:0;49773:103;;38247:110;38323:26;38333:2;38337:7;38323:26;;;;;;;;;;;;:9;:26::i;13128:191::-;13202:16;13221:6;;-1:-1:-1;;;;;13238:17:0;;;-1:-1:-1;;;;;;13238:17:0;;;;;;13271:40;;13221:6;;;;;;;13271:40;;13202:16;13271:40;13191:128;13128:191;:::o;49179:125::-;49263:33;;49288:7;;-1:-1:-1;;;;;49263:33:0;;;49280:1;;-1:-1:-1;;;;;;;;;;;49263:33:0;49280:1;;49263:33;49179:125;;:::o;41492:315::-;41647:8;-1:-1:-1;;;;;41638:17:0;:5;-1:-1:-1;;;;;41638:17:0;;41630:55;;;;-1:-1:-1;;;41630:55:0;;28037:2:1;41630:55:0;;;28019:21:1;28076:2;28056:18;;;28049:30;28115:27;28095:18;;;28088:55;28160:18;;41630:55:0;27835:349:1;41630:55:0;-1:-1:-1;;;;;41696:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41696:46:0;;;;;;;;;;41758:41;;2562::1;;;41758::0;;2535:18:1;41758:41:0;;;;;;;41492:315;;;:::o;36629:::-;36786:28;36796:4;36802:2;36806:7;36786:9;:28::i;:::-;36833:48;36856:4;36862:2;36866:7;36875:5;36833:22;:48::i;:::-;36825:111;;;;-1:-1:-1;;;36825:111:0;;;;;;;:::i;53189:100::-;53241:13;53274:7;53267:14;;;;;:::i;39783:360::-;39843:13;39859:23;39874:7;39859:14;:23::i;:::-;39843:39;;39984:29;40001:1;40005:7;39984:8;:29::i;:::-;-1:-1:-1;;;;;40026:16:0;;;;;;:9;:16;;;;;:21;;40046:1;;40026:16;:21;;40046:1;;40026:21;:::i;:::-;;;;-1:-1:-1;;40065:16:0;;;;:7;:16;;;;;;40058:23;;-1:-1:-1;;;;;;40058:23:0;;;40099:36;40073:7;;40065:16;-1:-1:-1;;;;;40099:36:0;;;-1:-1:-1;;;;;;;;;;;40099:36:0;40065:16;;40099:36;39832:311;39783:360;:::o;38584:321::-;38714:18;38720:2;38724:7;38714:5;:18::i;:::-;38765:54;38796:1;38800:2;38804:7;38813:5;38765:22;:54::i;:::-;38743:154;;;;-1:-1:-1;;;38743:154:0;;;;;;;:::i;42372:799::-;42527:4;-1:-1:-1;;;;;42548:13:0;;14469:20;14517:8;42544:620;;42584:72;;-1:-1:-1;;;42584:72:0;;-1:-1:-1;;;;;42584:36:0;;;;;:72;;10662:10;;42635:4;;42641:7;;42650:5;;42584:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42584:72:0;;;;;;;;-1:-1:-1;;42584:72:0;;;;;;;;;;;;:::i;:::-;;;42580:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42826:6;:13;42843:1;42826:18;42822:272;;42869:60;;-1:-1:-1;;;42869:60:0;;;;;;;:::i;42822:272::-;43044:6;43038:13;43029:6;43025:2;43021:15;43014:38;42580:529;-1:-1:-1;;;;;;42707:51:0;-1:-1:-1;;;42707:51:0;;-1:-1:-1;42700:58:0;;42544:620;-1:-1:-1;43148:4:0;42372:799;;;;;;:::o;39241:313::-;-1:-1:-1;;;;;39321:16:0;;39313:61;;;;-1:-1:-1;;;39313:61:0;;29558:2:1;39313:61:0;;;29540:21:1;;;29577:18;;;29570:30;29636:34;29616:18;;;29609:62;29688:18;;39313:61:0;29356:356:1;39313:61:0;-1:-1:-1;;;;;39445:13:0;;;;;;:9;:13;;;;;:18;;39462:1;;39445:13;:18;;39462:1;;39445:18;:::i;:::-;;;;-1:-1:-1;;39474:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39474:21:0;-1:-1:-1;;;;;39474:21:0;;;;;;;;39513:33;;39474:16;;;-1:-1:-1;;;;;;;;;;;39513:33:0;39474:16;;39513:33;39241: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:127::-;239:10;234:3;230:20;227:1;220:31;270:4;267:1;260:15;294:4;291:1;284:15;310:631;374:5;-1:-1:-1;;;;;445:2:1;437:6;434:14;431:40;;;451:18;;:::i;:::-;526:2;520:9;494:2;580:15;;-1:-1:-1;;576:24:1;;;602:2;572:33;568:42;556:55;;;626:18;;;646:22;;;623:46;620:72;;;672:18;;:::i;:::-;712:10;708:2;701:22;741:6;732:15;;771:6;763;756:22;811:3;802:6;797:3;793:16;790:25;787:45;;;828:1;825;818:12;787:45;878:6;873:3;866:4;858:6;854:17;841:44;933:1;926:4;917:6;909;905:19;901:30;894:41;;;;310:631;;;;;:::o;946:220::-;988:5;1041:3;1034:4;1026:6;1022:17;1018:27;1008:55;;1059:1;1056;1049:12;1008:55;1081:79;1156:3;1147:6;1134:20;1127:4;1119:6;1115:17;1081:79;:::i;1171:171::-;1238:20;;-1:-1:-1;;;;;1287:30:1;;1277:41;;1267:69;;1332:1;1329;1322:12;1347:684;1449:6;1457;1465;1473;1526:3;1514:9;1505:7;1501:23;1497:33;1494:53;;;1543:1;1540;1533:12;1494:53;1566:28;1584:9;1566:28;:::i;:::-;1556:38;;1645:2;1634:9;1630:18;1617:32;-1:-1:-1;;;;;1709:2:1;1701:6;1698:14;1695:34;;;1725:1;1722;1715:12;1695:34;1748:49;1789:7;1780:6;1769:9;1765:22;1748:49;:::i;:::-;1738:59;;1816:37;1849:2;1838:9;1834:18;1816:37;:::i;:::-;1806:47;;1906:2;1895:9;1891:18;1878:32;1862:48;;1935:2;1925:8;1922:16;1919:36;;;1951:1;1948;1941:12;1919:36;;1974:51;2017:7;2006:8;1995:9;1991:24;1974:51;:::i;:::-;1964:61;;;1347:684;;;;;;;:::o;2036:131::-;-1:-1:-1;;;;;;2110:32:1;;2100:43;;2090:71;;2157:1;2154;2147:12;2172:245;2230:6;2283:2;2271:9;2262:7;2258:23;2254:32;2251:52;;;2299:1;2296;2289:12;2251:52;2338:9;2325:23;2357:30;2381:5;2357:30;:::i;2614:258::-;2686:1;2696:113;2710:6;2707:1;2704:13;2696:113;;;2786:11;;;2780:18;2767:11;;;2760:39;2732:2;2725:10;2696:113;;;2827:6;2824:1;2821:13;2818:48;;;-1:-1:-1;;2862:1:1;2844:16;;2837:27;2614:258::o;2877:::-;2919:3;2957:5;2951:12;2984:6;2979:3;2972:19;3000:63;3056:6;3049:4;3044:3;3040:14;3033:4;3026:5;3022:16;3000:63;:::i;:::-;3117:2;3096:15;-1:-1:-1;;3092:29:1;3083:39;;;;3124:4;3079:50;;2877:258;-1:-1:-1;;2877:258:1:o;3140:220::-;3289:2;3278:9;3271:21;3252:4;3309:45;3350:2;3339:9;3335:18;3327:6;3309:45;:::i;3365:180::-;3424:6;3477:2;3465:9;3456:7;3452:23;3448:32;3445:52;;;3493:1;3490;3483:12;3445:52;-1:-1:-1;3516:23:1;;3365:180;-1:-1:-1;3365:180:1:o;3867:131::-;-1:-1:-1;;;;;3942:31:1;;3932:42;;3922:70;;3988:1;3985;3978:12;4003:315;4071:6;4079;4132:2;4120:9;4111:7;4107:23;4103:32;4100:52;;;4148:1;4145;4138:12;4100:52;4187:9;4174:23;4206:31;4231:5;4206:31;:::i;:::-;4256:5;4308:2;4293:18;;;;4280:32;;-1:-1:-1;;;4003:315:1:o;4323:456::-;4400:6;4408;4416;4469:2;4457:9;4448:7;4444:23;4440:32;4437:52;;;4485:1;4482;4475:12;4437:52;4524:9;4511:23;4543:31;4568:5;4543:31;:::i;:::-;4593:5;-1:-1:-1;4650:2:1;4635:18;;4622:32;4663:33;4622:32;4663:33;:::i;:::-;4323:456;;4715:7;;-1:-1:-1;;;4769:2:1;4754:18;;;;4741:32;;4323:456::o;4784:247::-;4843:6;4896:2;4884:9;4875:7;4871:23;4867:32;4864:52;;;4912:1;4909;4902:12;4864:52;4951:9;4938:23;4970:31;4995:5;4970:31;:::i;5036:450::-;5105:6;5158:2;5146:9;5137:7;5133:23;5129:32;5126:52;;;5174:1;5171;5164:12;5126:52;5214:9;5201:23;-1:-1:-1;;;;;5239:6:1;5236:30;5233:50;;;5279:1;5276;5269:12;5233:50;5302:22;;5355:4;5347:13;;5343:27;-1:-1:-1;5333:55:1;;5384:1;5381;5374:12;5333:55;5407:73;5472:7;5467:2;5454:16;5449:2;5445;5441:11;5407:73;:::i;5491:269::-;5548:6;5601:2;5589:9;5580:7;5576:23;5572:32;5569:52;;;5617:1;5614;5607:12;5569:52;5656:9;5643:23;5706:4;5699:5;5695:16;5688:5;5685:27;5675:55;;5726:1;5723;5716:12;5947:184;6005:6;6058:2;6046:9;6037:7;6033:23;6029:32;6026:52;;;6074:1;6071;6064:12;6026:52;6097:28;6115:9;6097:28;:::i;6359:460::-;6444:6;6452;6460;6513:2;6501:9;6492:7;6488:23;6484:32;6481:52;;;6529:1;6526;6519:12;6481:52;6552:28;6570:9;6552:28;:::i;:::-;6542:38;;6631:2;6620:9;6616:18;6603:32;-1:-1:-1;;;;;6650:6:1;6647:30;6644:50;;;6690:1;6687;6680:12;6644:50;6713:49;6754:7;6745:6;6734:9;6730:22;6713:49;:::i;:::-;6703:59;;;6809:2;6798:9;6794:18;6781:32;6771:42;;6359:460;;;;;:::o;7077:615::-;7163:6;7171;7224:2;7212:9;7203:7;7199:23;7195:32;7192:52;;;7240:1;7237;7230:12;7192:52;7280:9;7267:23;-1:-1:-1;;;;;7350:2:1;7342:6;7339:14;7336:34;;;7366:1;7363;7356:12;7336:34;7404:6;7393:9;7389:22;7379:32;;7449:7;7442:4;7438:2;7434:13;7430:27;7420:55;;7471:1;7468;7461:12;7420:55;7511:2;7498:16;7537:2;7529:6;7526:14;7523:34;;;7553:1;7550;7543:12;7523:34;7606:7;7601:2;7591:6;7588:1;7584:14;7580:2;7576:23;7572:32;7569:45;7566:65;;;7627:1;7624;7617:12;7566:65;7658:2;7650:11;;;;;7680:6;;-1:-1:-1;7077:615:1;;-1:-1:-1;;;;7077:615:1:o;7697:416::-;7762:6;7770;7823:2;7811:9;7802:7;7798:23;7794:32;7791:52;;;7839:1;7836;7829:12;7791:52;7878:9;7865:23;7897:31;7922:5;7897:31;:::i;:::-;7947:5;-1:-1:-1;8004:2:1;7989:18;;7976:32;8046:15;;8039:23;8027:36;;8017:64;;8077:1;8074;8067:12;8017:64;8100:7;8090:17;;;7697:416;;;;;:::o;8118:665::-;8213:6;8221;8229;8237;8290:3;8278:9;8269:7;8265:23;8261:33;8258:53;;;8307:1;8304;8297:12;8258:53;8346:9;8333:23;8365:31;8390:5;8365:31;:::i;:::-;8415:5;-1:-1:-1;8472:2:1;8457:18;;8444:32;8485:33;8444:32;8485:33;:::i;:::-;8537:7;-1:-1:-1;8591:2:1;8576:18;;8563:32;;-1:-1:-1;8646:2:1;8631:18;;8618:32;-1:-1:-1;;;;;8662:30:1;;8659:50;;;8705:1;8702;8695:12;8659:50;8728:49;8769:7;8760:6;8749:9;8745:22;8728:49;:::i;8788:252::-;8855:6;8863;8916:2;8904:9;8895:7;8891:23;8887:32;8884:52;;;8932:1;8929;8922:12;8884:52;8955:28;8973:9;8955:28;:::i;9045:347::-;9096:8;9106:6;9160:3;9153:4;9145:6;9141:17;9137:27;9127:55;;9178:1;9175;9168:12;9127:55;-1:-1:-1;9201:20:1;;-1:-1:-1;;;;;9233:30:1;;9230:50;;;9276:1;9273;9266:12;9230:50;9313:4;9305:6;9301:17;9289:29;;9365:3;9358:4;9349:6;9341;9337:19;9333:30;9330:39;9327:59;;;9382:1;9379;9372:12;9327:59;9045:347;;;;;:::o;9397:773::-;9501:6;9509;9517;9525;9533;9586:3;9574:9;9565:7;9561:23;9557:33;9554:53;;;9603:1;9600;9593:12;9554:53;9626:28;9644:9;9626:28;:::i;:::-;9616:38;;9705:2;9694:9;9690:18;9677:32;-1:-1:-1;;;;;9769:2:1;9761:6;9758:14;9755:34;;;9785:1;9782;9775:12;9755:34;9808:49;9849:7;9840:6;9829:9;9825:22;9808:49;:::i;:::-;9798:59;;9876:37;9909:2;9898:9;9894:18;9876:37;:::i;:::-;9866:47;;9966:2;9955:9;9951:18;9938:32;9922:48;;9995:2;9985:8;9982:16;9979:36;;;10011:1;10008;10001:12;9979:36;;10050:60;10102:7;10091:8;10080:9;10076:24;10050:60;:::i;:::-;9397:773;;;;-1:-1:-1;9397:773:1;;-1:-1:-1;10129:8:1;;10024:86;9397:773;-1:-1:-1;;;9397:773:1:o;10175:388::-;10243:6;10251;10304:2;10292:9;10283:7;10279:23;10275:32;10272:52;;;10320:1;10317;10310:12;10272:52;10359:9;10346:23;10378:31;10403:5;10378:31;:::i;:::-;10428:5;-1:-1:-1;10485:2:1;10470:18;;10457:32;10498:33;10457:32;10498:33;:::i;10568:481::-;10646:6;10654;10662;10715:2;10703:9;10694:7;10690:23;10686:32;10683:52;;;10731:1;10728;10721:12;10683:52;10754:28;10772:9;10754:28;:::i;:::-;10744:38;;10833:2;10822:9;10818:18;10805:32;-1:-1:-1;;;;;10852:6:1;10849:30;10846:50;;;10892:1;10889;10882:12;10846:50;10931:58;10981:7;10972:6;10961:9;10957:22;10931:58;:::i;:::-;10568:481;;11008:8;;-1:-1:-1;10905:84:1;;-1:-1:-1;;;;10568:481:1:o;11054:380::-;11133:1;11129:12;;;;11176;;;11197:61;;11251:4;11243:6;11239:17;11229:27;;11197:61;11304:2;11296:6;11293:14;11273:18;11270:38;11267:161;;11350:10;11345:3;11341:20;11338:1;11331:31;11385:4;11382:1;11375:15;11413:4;11410:1;11403:15;11267:161;;11054:380;;;:::o;11439:811::-;11565:3;11594:1;11627:6;11621:13;11657:36;11683:9;11657:36;:::i;:::-;11712:1;11729:18;;;11756:104;;;;11874:1;11869:356;;;;11722:503;;11756:104;-1:-1:-1;;11789:24:1;;11777:37;;11834:16;;;;-1:-1:-1;11756:104:1;;11869:356;11900:6;11897:1;11890:17;11930:4;11975:2;11972:1;11962:16;12000:1;12014:165;12028:6;12025:1;12022:13;12014:165;;;12106:14;;12093:11;;;12086:35;12149:16;;;;12043:10;;12014:165;;;12018:3;;;12208:6;12203:3;12199:16;12192:23;;11722:503;-1:-1:-1;12241:3:1;;11439:811;-1:-1:-1;;;;;;11439:811:1:o;12676:557::-;12933:6;12925;12921:19;12910:9;12903:38;12977:3;12972:2;12961:9;12957:18;12950:31;12884:4;13004:46;13045:3;13034:9;13030:19;13022:6;13004:46;:::i;:::-;-1:-1:-1;;;;;13090:6:1;13086:31;13081:2;13070:9;13066:18;13059:59;13166:9;13158:6;13154:22;13149:2;13138:9;13134:18;13127:50;13194:33;13220:6;13212;13194:33;:::i;:::-;13186:41;12676:557;-1:-1:-1;;;;;;;12676:557:1:o;13238:274::-;13367:3;13405:6;13399:13;13421:53;13467:6;13462:3;13455:4;13447:6;13443:17;13421:53;:::i;:::-;13490:16;;;;;13238:274;-1:-1:-1;;13238:274:1:o;15169:413::-;15371:2;15353:21;;;15410:2;15390:18;;;15383:30;15449:34;15444:2;15429:18;;15422:62;-1:-1:-1;;;15515:2:1;15500:18;;15493:47;15572:3;15557:19;;15169:413::o;15587:356::-;15789:2;15771:21;;;15808:18;;;15801:30;15867:34;15862:2;15847:18;;15840:62;15934:2;15919:18;;15587:356::o;16564:405::-;16766:2;16748:21;;;16805:2;16785:18;;;16778:30;16844:34;16839:2;16824:18;;16817:62;-1:-1:-1;;;16910:2:1;16895:18;;16888:39;16959:3;16944:19;;16564:405::o;16974:127::-;17035:10;17030:3;17026:20;17023:1;17016:31;17066:4;17063:1;17056:15;17090:4;17087:1;17080:15;17106:168;17146:7;17212:1;17208;17204:6;17200:14;17197:1;17194:21;17189:1;17182:9;17175:17;17171:45;17168:71;;;17219:18;;:::i;:::-;-1:-1:-1;17259:9:1;;17106:168::o;17634:135::-;17673:3;17694:17;;;17691:43;;17714:18;;:::i;:::-;-1:-1:-1;17761:1:1;17750:13;;17634:135::o;18185:128::-;18225:3;18256:1;18252:6;18249:1;18246:13;18243:39;;;18262:18;;:::i;:::-;-1:-1:-1;18298:9:1;;18185:128::o;18318:127::-;18379:10;18374:3;18370:20;18367:1;18360:31;18410:4;18407:1;18400:15;18434:4;18431:1;18424:15;18450:125;18490:4;18518:1;18515;18512:8;18509:34;;;18523:18;;:::i;:::-;-1:-1:-1;18560:9:1;;18450:125::o;19277:398::-;19479:2;19461:21;;;19518:2;19498:18;;;19491:30;19557:34;19552:2;19537:18;;19530:62;-1:-1:-1;;;19623:2:1;19608:18;;19601:32;19665:3;19650:19;;19277:398::o;20655:642::-;20936:6;20924:19;;20906:38;;-1:-1:-1;;;;;20980:32:1;;20975:2;20960:18;;20953:60;21000:3;21044:2;21029:18;;21022:31;;;-1:-1:-1;;21076:46:1;;21102:19;;21094:6;21076:46;:::i;:::-;21172:6;21165:14;21158:22;21153:2;21142:9;21138:18;21131:50;21230:9;21222:6;21218:22;21212:3;21201:9;21197:19;21190:51;21258:33;21284:6;21276;21258:33;:::i;:::-;21250:41;20655:642;-1:-1:-1;;;;;;;;20655:642:1:o;21302:245::-;21381:6;21389;21442:2;21430:9;21421:7;21417:23;21413:32;21410:52;;;21458:1;21455;21448:12;21410:52;-1:-1:-1;;21481:16:1;;21537:2;21522:18;;;21516:25;21481:16;;21516:25;;-1:-1:-1;21302:245:1:o;22041:1484::-;22387:6;22379;22375:19;22364:9;22357:38;22338:4;22414:2;22452:3;22447:2;22436:9;22432:18;22425:31;22476:1;22509:6;22503:13;22539:36;22565:9;22539:36;:::i;:::-;22612:6;22606:3;22595:9;22591:19;22584:35;22638:3;22660:1;22692:2;22681:9;22677:18;22709:1;22704:122;;;;22840:1;22835:354;;;;22670:519;;22704:122;-1:-1:-1;;22752:24:1;;22732:18;;;22725:52;22812:3;22797:19;;;-1:-1:-1;22704:122:1;;22835:354;22866:6;22863:1;22856:17;22914:2;22911:1;22901:16;22939:1;22953:180;22967:6;22964:1;22961:13;22953:180;;;23060:14;;23036:17;;;23032:26;;23025:50;23103:16;;;;22982:10;;22953:180;;;23157:17;;23153:26;;;-1:-1:-1;;22670:519:1;;;;;;23234:9;23229:3;23225:19;23220:2;23209:9;23205:18;23198:47;23268:30;23294:3;23286:6;23268:30;:::i;:::-;23254:44;;;23307:46;23349:2;23338:9;23334:18;23326:6;-1:-1:-1;;;;;3616:31:1;3604:44;;3550:104;23307:46;-1:-1:-1;;;;;3616:31:1;;23404:3;23389:19;;3604:44;23458:9;23450:6;23446:22;23440:3;23429:9;23425:19;23418:51;23486:33;23512:6;23504;23486:33;:::i;:::-;23478:41;22041:1484;-1:-1:-1;;;;;;;;;22041:1484:1:o;23937:271::-;24120:6;24112;24107:3;24094:33;24076:3;24146:16;;24171:13;;;24146:16;23937:271;-1:-1:-1;23937:271:1:o;24568:718::-;24835:6;24827;24823:19;24812:9;24805:38;24879:3;24874:2;24863:9;24859:18;24852:31;24786:4;24906:46;24947:3;24936:9;24932:19;24924:6;24906:46;:::i;:::-;-1:-1:-1;;;;;24992:6:1;24988:31;24983:2;24972:9;24968:18;24961:59;25068:9;25060:6;25056:22;25051:2;25040:9;25036:18;25029:50;25103:6;25095;25088:22;25157:6;25149;25144:2;25136:6;25132:15;25119:45;25210:1;25205:2;25196:6;25188;25184:19;25180:28;25173:39;25277:2;25270;25266:7;25261:2;25253:6;25249:15;25245:29;25237:6;25233:42;25229:51;25221:59;;;24568:718;;;;;;;;:::o;25698:320::-;25785:6;25793;25846:2;25834:9;25825:7;25821:23;25817:32;25814:52;;;25862:1;25859;25852:12;25814:52;25894:9;25888:16;25913:31;25938:5;25913:31;:::i;:::-;26008:2;25993:18;;;;25987:25;25963:5;;25987:25;;-1:-1:-1;;;25698:320:1:o;27579:251::-;27649:6;27702:2;27690:9;27681:7;27677:23;27673:32;27670:52;;;27718:1;27715;27708:12;27670:52;27750:9;27744:16;27769:31;27794:5;27769:31;:::i;28189:414::-;28391:2;28373:21;;;28430:2;28410:18;;;28403:30;28469:34;28464:2;28449:18;;28442:62;-1:-1:-1;;;28535:2:1;28520:18;;28513:48;28593:3;28578:19;;28189:414::o;28608:489::-;-1:-1:-1;;;;;28877:15:1;;;28859:34;;28929:15;;28924:2;28909:18;;28902:43;28976:2;28961:18;;28954:34;;;29024:3;29019:2;29004:18;;28997:31;;;28802:4;;29045:46;;29071:19;;29063:6;29045:46;:::i;:::-;29037:54;28608:489;-1:-1:-1;;;;;;28608:489:1:o;29102:249::-;29171:6;29224:2;29212:9;29203:7;29199:23;29195:32;29192:52;;;29240:1;29237;29230:12;29192:52;29272:9;29266:16;29291:30;29315:5;29291:30;:::i

Swarm Source

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