ETH Price: $3,259.17 (+1.13%)

Token

xZEROs (xZEROs)
 

Overview

Max Total Supply

148 xZEROs

Holders

91

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bayc5058.eth
Balance
1 xZEROs
0x7a45D2C954B060c2bcA4f61b96E964506B7ad8aB
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:
XZEROS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**

        __________ ____   ___      
 __  __|__  / ____|  _ \ / _ \ ___ 
 \ \/ /  / /|  _| | |_) | | | / __|
  >  <  / /_| |___|  _ <| |_| \__ \
 /_/\_\/____|_____|_| \_\\___/|___/
                                   
            xzeros.xyz


 */

// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

/**
 * @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/token/ERC721/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

/**
 * @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/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

/**
 * @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/token/ERC721/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

/**
 * @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/utils/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

/**
 * @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/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

/**
 * @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/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

/**
 * @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/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner"
        );
        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);

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721Burnable: caller is not owner nor approved"
        );
        _burn(tokenId);
    }
}

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC165, ERC721)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

/**
 * @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 contracts/interfaces/ILayerZeroReceiver.sol

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 contracts/interfaces/ILayerZeroUserApplicationConfig.sol

interface ILayerZeroUserApplicationConfig {
    // @notice set the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _configType - type of configuration. every messaging library has its own convention.
    // @param _config - configuration in the bytes. can encode arbitrary content.
    function setConfig(
        uint16 _version,
        uint16 _chainId,
        uint256 _configType,
        bytes calldata _config
    ) external;

    // @notice set the send() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setSendVersion(uint16 _version) external;

    // @notice set the lzReceive() LayerZero messaging library version to _version
    // @param _version - new messaging library version
    function setReceiveVersion(uint16 _version) external;

    // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload
    // @param _srcChainId - the chainId of the source chain
    // @param _srcAddress - the contract address of the source contract at the source chain
    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress)
        external;
}

// File contracts/interfaces/ILayerZeroEndpoint.sol

interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig {
    // @notice send a LayerZero message to the specified address at a LayerZero endpoint.
    // @param _dstChainId - the destination chain identifier
    // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains
    // @param _payload - a custom bytes payload to send to the destination contract
    // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address
    // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction
    // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination
    function send(
        uint16 _dstChainId,
        bytes calldata _destination,
        bytes calldata _payload,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes calldata _adapterParams
    ) external payable;

    // @notice used by the messaging library to publish verified payload
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source contract (as bytes) at the source chain
    // @param _dstAddress - the address on destination chain
    // @param _nonce - the unbound message ordering nonce
    // @param _gasLimit - the gas limit for external contract execution
    // @param _payload - verified payload to send to the destination contract
    function receivePayload(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        address _dstAddress,
        uint64 _nonce,
        uint256 _gasLimit,
        bytes calldata _payload
    ) external;

    // @notice get the inboundNonce of a receiver from a source chain which could be EVM or non-EVM chain
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress)
        external
        view
        returns (uint64);

    // @notice get the outboundNonce from this source chain which, consequently, is always an EVM
    // @param _srcAddress - the source chain contract address
    function getOutboundNonce(uint16 _dstChainId, address _srcAddress)
        external
        view
        returns (uint64);

    // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery
    // @param _dstChainId - the destination chain identifier
    // @param _userApplication - the user app address on this EVM chain
    // @param _payload - the custom message to send over LayerZero
    // @param _payInZRO - if false, user app pays the protocol fee in native token
    // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain
    function estimateFees(
        uint16 _dstChainId,
        address _userApplication,
        bytes calldata _payload,
        bool _payInZRO,
        bytes calldata _adapterParam
    ) external view returns (uint256 nativeFee, uint256 zroFee);

    // @notice get this Endpoint's immutable source identifier
    function getChainId() external view returns (uint16);

    // @notice the interface to retry failed message on this Endpoint destination
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    // @param _payload - the payload to be retried
    function retryPayload(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        bytes calldata _payload
    ) external;

    // @notice query if any STORED payload (message blocking) at the endpoint.
    // @param _srcChainId - the source chain identifier
    // @param _srcAddress - the source chain contract address
    function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress)
        external
        view
        returns (bool);

    // @notice query if the _libraryAddress is valid for sending msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getSendLibraryAddress(address _userApplication)
        external
        view
        returns (address);

    // @notice query if the _libraryAddress is valid for receiving msgs.
    // @param _userApplication - the user app address on this EVM chain
    function getReceiveLibraryAddress(address _userApplication)
        external
        view
        returns (address);

    // @notice query if the non-reentrancy guard for send() is on
    // @return true if the guard is on. false otherwise
    function isSendingPayload() external view returns (bool);

    // @notice query if the non-reentrancy guard for receive() is on
    // @return true if the guard is on. false otherwise
    function isReceivingPayload() external view returns (bool);

    // @notice get the configuration of the LayerZero messaging library of the specified version
    // @param _version - messaging library version
    // @param _chainId - the chainId for the pending config change
    // @param _userApplication - the contract address of the user application
    // @param _configType - type of configuration. every messaging library has its own convention.
    function getConfig(
        uint16 _version,
        uint16 _chainId,
        address _userApplication,
        uint256 _configType
    ) external view returns (bytes memory);

    // @notice get the send() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getSendVersion(address _userApplication)
        external
        view
        returns (uint16);

    // @notice get the lzReceive() LayerZero messaging library version
    // @param _userApplication - the contract address of the user application
    function getReceiveVersion(address _userApplication)
        external
        view
        returns (uint16);
}

// File contracts/LayerZeroable.sol

abstract contract LayerZeroable is
    Ownable,
    ILayerZeroReceiver,
    ILayerZeroUserApplicationConfig
{
    ILayerZeroEndpoint public layerZeroEndpoint;
    mapping(uint16 => bytes) public remotes;

    uint256 public destGasAmount = 300000;

    function setLayerZeroEndpoint(address _layerZeroEndpoint)
        external
        onlyOwner
    {
        layerZeroEndpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
    }

    function setRemotes(
        uint16[] calldata _chainId,
        bytes[] calldata _remoteAddress
    ) external onlyOwner {
        for (uint256 i = 0; i < _chainId.length; i++) {
            remotes[_chainId[i]] = _remoteAddress[i];
        }
    }

    function setConfig(
        uint16, /*_version*/
        uint16 _chainId,
        uint256 _configType,
        bytes calldata _config
    ) external override onlyOwner {
        layerZeroEndpoint.setConfig(
            layerZeroEndpoint.getSendVersion(address(this)),
            _chainId,
            _configType,
            _config
        );
    }

    function setSendVersion(uint16 version) external override onlyOwner {
        layerZeroEndpoint.setSendVersion(version);
    }

    function setReceiveVersion(uint16 version) external override onlyOwner {
        layerZeroEndpoint.setReceiveVersion(version);
    }

    function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress)
        external
        override
        onlyOwner
    {
        layerZeroEndpoint.forceResumeReceive(_srcChainId, _srcAddress);
    }

    function setDestGasAmount(uint256 _amount) external onlyOwner {
        destGasAmount = _amount;
    }

    function _bytesToAddress(bytes memory bys)
        internal
        pure
        returns (address addr)
    {
        assembly {
            addr := mload(add(bys, 20))
        }
    }
}

// File contracts/XZEROS.sol

contract XZEROS is Ownable, ERC721Burnable, ERC721Enumerable, LayerZeroable {
    uint256 public constant MAX_SUPPLY = 143;
    string public constant BASE_URI =
        "ipfs://bafybeiek5jggqm5wcppz5lzuv7aw6axgdczuvjp4mjwelrfy4dff7httzy/";

    uint16 public mintedSupply = 0;
    uint256 public nextTokenId;
    mapping(uint256 => uint256) public chainDistance;

    event Minted(address indexed to, uint256 indexed tokenid);
    event ChainTransferSent(
        address indexed to,
        uint256 indexed tokenid,
        uint256 indexed destLzChainId
    );
    event ChainTransferArrived(
        address indexed to,
        uint256 indexed tokenid,
        uint256 indexed sourceLzChainId
    );

    constructor(uint256 _nextTokenId, address _layerZeroEndpoint)
        ERC721("xZEROs", "xZEROs")
    {
        nextTokenId = _nextTokenId;

        layerZeroEndpoint = ILayerZeroEndpoint(_layerZeroEndpoint);
    }

    // CONTRACT BALANCE FUNCTIONS //

    fallback() external payable {}

    receive() external payable {}

    function withdrawAll() external onlyOwner {
        uint256 amount = address(this).balance;

        (bool success, ) = owner().call{value: amount}("");
        require(success, "Failed to send Ether");
    }

    // LZ ENDPOINT RECEIVE //

    function lzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64,
        bytes memory _payload
    ) external override {
        require(msg.sender == address(layerZeroEndpoint));
        require(
            _srcAddress.length == remotes[_srcChainId].length &&
                keccak256(_srcAddress) == keccak256(remotes[_srcChainId]),
            "Invalid remote sender address. owner should call setRemote() to enable remote contract"
        );

        // Decode payload
        (address to, uint256 tokenId, uint256 distance) = abi.decode(
            _payload,
            (address, uint256, uint256)
        );

        chainDistance[tokenId] = distance + 1;

        _safeMint(to, tokenId);

        emit ChainTransferArrived(_msgSender(), tokenId, _srcChainId);
    }

    // PUBLIC METHODS //

    function mint() public payable {
        require(mintedSupply < MAX_SUPPLY, "Max mint supply reached");
        require(balanceOf(_msgSender()) < 2, "Max 2 per wallet");

        mintedSupply++;

        _safeMint(_msgSender(), nextTokenId);

        chainDistance[nextTokenId] = 1;

        emit Minted(_msgSender(), nextTokenId);

        nextTokenId++;
    }

    function transferToChain(
        uint256 _tokenId,
        address _to,
        uint16 _chainId
    ) external payable {
        uint16 version = 1;
        bytes memory adapterParams = abi.encodePacked(version, destGasAmount);

        transferToChainWithAdapterParams(
            _tokenId,
            _to,
            _chainId,
            adapterParams
        );
    }

    function transferToChainWithAdapterParams(
        uint256 _tokenId,
        address _to,
        uint16 _chainId,
        bytes memory _adapterParams
    ) public payable {
        require(ownerOf(_tokenId) == _msgSender(), "Sender is not owner");
        require(remotes[_chainId].length > 0, "Remote not configured");

        _burn(_tokenId);

        bytes memory payload = abi.encode(
            _to,
            _tokenId,
            chainDistance[_tokenId]
        );

        chainDistance[_tokenId] = 0;

        layerZeroEndpoint.send{value: msg.value}(
            _chainId,
            remotes[_chainId],
            payload,
            payable(msg.sender),
            address(0x0),
            _adapterParams
        );

        emit ChainTransferSent(_msgSender(), _tokenId, _chainId);
    }

    function estimateFee(
        uint256 _tokenId,
        address _to,
        uint16 _chainId
    ) external view returns (uint256 nativeFee, uint256 zroFee) {
        bytes memory payload = abi.encode(
            _to,
            _tokenId,
            chainDistance[_tokenId]
        );

        uint16 version = 1;
        bytes memory adapterParams = abi.encodePacked(version, destGasAmount);

        return
            layerZeroEndpoint.estimateFees(
                _chainId,
                _bytesToAddress(remotes[_chainId]),
                payload,
                false,
                adapterParams
            );
    }

    function _baseURI() internal pure override returns (string memory) {
        return BASE_URI;
    }

    // ERC721 OVERRIDES //

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_nextTokenId","type":"uint256"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenid","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"sourceLzChainId","type":"uint256"}],"name":"ChainTransferArrived","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenid","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"destLzChainId","type":"uint256"}],"name":"ChainTransferSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenid","type":"uint256"}],"name":"Minted","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"chainDistance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"destGasAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_chainId","type":"uint16"}],"name":"estimateFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","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":[],"name":"layerZeroEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintedSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","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":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"remotes","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setDestGasAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"name":"setLayerZeroEndpoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16[]","name":"_chainId","type":"uint16[]"},{"internalType":"bytes[]","name":"_remoteAddress","type":"bytes[]"}],"name":"setRemotes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"version","type":"uint16"}],"name":"setSendVersion","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_chainId","type":"uint16"}],"name":"transferToChain","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"transferToChainWithAdapterParams","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052620493e0600d55600e805461ffff191690553480156200002357600080fd5b50604051620034b3380380620034b38339810160408190526200004691620001e1565b604080518082018252600680825265785a45524f7360d01b60208084018281528551808701909652928552840152815191929162000087916000916200013b565b5080516200009d9060019060208401906200013b565b505050620000ba620000b4620000e560201b60201c565b620000e9565b600f91909155600b80546001600160a01b0319166001600160a01b039092169190911790556200025d565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001499062000220565b90600052602060002090601f0160209004810192826200016d5760008555620001b8565b82601f106200018857805160ff1916838001178555620001b8565b82800160010185558215620001b8579182015b82811115620001b85782518255916020019190600101906200019b565b50620001c6929150620001ca565b5090565b5b80821115620001c65760008155600101620001cb565b60008060408385031215620001f557600080fd5b825160208401519092506001600160a01b03811681146200021557600080fd5b809150509250929050565b600181811c908216806200023557607f821691505b602082108114156200025757634e487b7160e01b600052602260045260246000fd5b50919050565b613246806200026d6000396000f3fe6080604052600436106102315760003560e01c80636352211e1161012d578063a22cb465116100b0578063cbed8b9c11610077578063cbed8b9c14610692578063db7e0c7e146106b2578063dbddb26a146106c8578063dec83a8c146106dd578063e985e9c5146106fd578063f2fde38b1461074657005b8063a22cb465146105f1578063b88d4fde14610611578063c1bd8cf914610631578063c401068c1461065f578063c87b56dd1461067257005b8063853828b6116100f4578063853828b6146105695780638da5cb5b1461057e57806395b9783c1461059c57806395d89b41146105bc5780639d1f6113146105d157005b80636352211e146104de57806370a08231146104fe578063715018a61461051e57806375794a3c14610533578063780c81871461054957005b806318160ddd116101b557806342966c681161017c57806342966c681461043657806342d65a8d146104565780634946d603146104765780634f6ccce714610489578063584c9ac6146104a957005b806318160ddd146103ac57806323b872dd146103c15780632f745c59146103e157806332cb6b0c1461040157806342842e0e1461041657005b8063081812fc116101f9578063081812fc14610309578063095ea7b3146103295780630ce806981461034957806310ddb137146103845780631249c58b146103a457005b80621d35671461023a57806301ffc9a71461025a57806306fdde031461028f57806307968db1146102b157806307e0db17146102e957005b3661023857005b005b34801561024657600080fd5b50610238610255366004612a66565b610766565b34801561026657600080fd5b5061027a61027536600461299d565b6108f0565b60405190151581526020015b60405180910390f35b34801561029b57600080fd5b506102a4610901565b6040516102869190612d63565b3480156102bd57600080fd5b50600b546102d1906001600160a01b031681565b6040516001600160a01b039091168152602001610286565b3480156102f557600080fd5b506102386103043660046129d7565b610993565b34801561031557600080fd5b506102d1610324366004612b5d565b610a22565b34801561033557600080fd5b50610238610344366004612905565b610ab7565b34801561035557600080fd5b50610376610364366004612b5d565b60106020526000908152604090205481565b604051908152602001610286565b34801561039057600080fd5b5061023861039f3660046129d7565b610bcd565b610238610c2b565b3480156103b857600080fd5b50600954610376565b3480156103cd57600080fd5b506102386103dc366004612825565b610d66565b3480156103ed57600080fd5b506103766103fc366004612905565b610d98565b34801561040d57600080fd5b50610376608f81565b34801561042257600080fd5b50610238610431366004612825565b610e2e565b34801561044257600080fd5b50610238610451366004612b5d565b610e49565b34801561046257600080fd5b50610238610471366004612a11565b610ec3565b610238610484366004612b76565b610f58565b34801561049557600080fd5b506103766104a4366004612b5d565b610f90565b3480156104b557600080fd5b506104c96104c4366004612b76565b611023565b60408051928352602083019190915201610286565b3480156104ea57600080fd5b506102d16104f9366004612b5d565b6111c5565b34801561050a57600080fd5b50610376610519366004612798565b61123c565b34801561052a57600080fd5b506102386112c3565b34801561053f57600080fd5b50610376600f5481565b34801561055557600080fd5b50610238610564366004612b5d565b6112f9565b34801561057557600080fd5b50610238611328565b34801561058a57600080fd5b506006546001600160a01b03166102d1565b3480156105a857600080fd5b506102386105b7366004612798565b611402565b3480156105c857600080fd5b506102a461144e565b3480156105dd57600080fd5b506102a46105ec3660046129d7565b61145d565b3480156105fd57600080fd5b5061023861060c3660046128d2565b6114f7565b34801561061d57600080fd5b5061023861062c366004612866565b611502565b34801561063d57600080fd5b50600e5461064c9061ffff1681565b60405161ffff9091168152602001610286565b61023861066d366004612bb8565b61153a565b34801561067e57600080fd5b506102a461068d366004612b5d565b611700565b34801561069e57600080fd5b506102386106ad366004612aea565b6117db565b3480156106be57600080fd5b50610376600d5481565b3480156106d457600080fd5b506102a46118e5565b3480156106e957600080fd5b506102386106f8366004612931565b611901565b34801561070957600080fd5b5061027a6107183660046127ec565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075257600080fd5b50610238610761366004612798565b6119b7565b600b546001600160a01b0316331461077d57600080fd5b61ffff84166000908152600c60205260409020805461079b90613098565b905083511480156107da575061ffff84166000908152600c60205260409081902090516107c89190612c85565b60405180910390208380519060200120145b6108705760405162461bcd60e51b815260206004820152605660248201527f496e76616c69642072656d6f74652073656e64657220616464726573732e206f60448201527f776e65722073686f756c642063616c6c2073657452656d6f7465282920746f20606482015275195b98589b19481c995b5bdd194818dbdb9d1c9858dd60521b608482015260a4015b60405180910390fd5b60008060008380602001905181019061088991906127b5565b9194509250905061089b816001613029565b6000838152601060205260409020556108b48383611a4f565b60405161ffff881690839033907f8d4271535c5cb5ea2cb81c15c9967c199c6325230c4d3d85bba9b6dac5bc660a90600090a450505050505050565b60006108fb82611a69565b92915050565b60606000805461091090613098565b80601f016020809104026020016040519081016040528092919081815260200182805461093c90613098565b80156109895780601f1061095e57610100808354040283529160200191610989565b820191906000526020600020905b81548152906001019060200180831161096c57829003601f168201915b5050505050905090565b6006546001600160a01b031633146109bd5760405162461bcd60e51b815260040161086790612dc8565b600b546040516307e0db1760e01b815261ffff831660048201526001600160a01b03909116906307e0db17906024015b600060405180830381600087803b158015610a0757600080fd5b505af1158015610a1b573d6000803e3d6000fd5b5050505050565b6000818152600260205260408120546001600160a01b0316610a9b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610867565b506000908152600460205260409020546001600160a01b031690565b6000610ac2826111c5565b9050806001600160a01b0316836001600160a01b03161415610b305760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610867565b336001600160a01b0382161480610b4c5750610b4c8133610718565b610bbe5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610867565b610bc88383611a8e565b505050565b6006546001600160a01b03163314610bf75760405162461bcd60e51b815260040161086790612dc8565b600b546040516310ddb13760e01b815261ffff831660048201526001600160a01b03909116906310ddb137906024016109ed565b600e54608f61ffff90911610610c835760405162461bcd60e51b815260206004820152601760248201527f4d6178206d696e7420737570706c7920726561636865640000000000000000006044820152606401610867565b6002610c8e3361123c565b10610cce5760405162461bcd60e51b815260206004820152601060248201526f13585e080c881c195c881dd85b1b195d60821b6044820152606401610867565b600e805461ffff16906000610ce2836130d3565b91906101000a81548161ffff021916908361ffff16021790555050610d0f610d073390565b600f54611a4f565b600f8054600090815260106020526040808220600190559154915133917f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe91a3600f8054906000610d5f836130f5565b9190505550565b610d71335b82611afc565b610d8d5760405162461bcd60e51b815260040161086790612dfd565b610bc8838383611bf3565b6000610da38361123c565b8210610e055760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610867565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610bc883838360405180602001604052806000815250611502565b610e5233610d6b565b610eb75760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610867565b610ec081611d9a565b50565b6006546001600160a01b03163314610eed5760405162461bcd60e51b815260040161086790612dc8565b600b546040516342d65a8d60e01b81526001600160a01b03909116906342d65a8d90610f2190869086908690600401612ea2565b600060405180830381600087803b158015610f3b57600080fd5b505af1158015610f4f573d6000803e3d6000fd5b50505050505050565b600d5460408051600160f01b6020820152602280820193909352815180820390930183526042019052600190610a1b8585858461153a565b6000610f9b60095490565b8210610ffe5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610867565b6009828154811061101157611011613166565b90600052602060002001549050919050565b60008381526010602090815260408083205481516001600160a01b038781168286015281840189905260608083019390935283518083039093018352608082018452600d54600160f01b60a084015260a2808401919091528451808403909101815260c29092018452600b5461ffff88168752600c90955292852080548695939460019416916340a7bb10918991611143916110be90613098565b80601f01602080910402602001604051908101604052809291908181526020018280546110ea90613098565b80156111375780601f1061110c57610100808354040283529160200191611137565b820191906000526020600020905b81548152906001019060200180831161111a57829003601f168201915b50505050506014015190565b866000866040518663ffffffff1660e01b8152600401611167959493929190612e4e565b604080518083038186803b15801561117e57600080fd5b505afa158015611192573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b69190612c0c565b94509450505050935093915050565b6000818152600260205260408120546001600160a01b0316806108fb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610867565b60006001600160a01b0382166112a75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610867565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112ed5760405162461bcd60e51b815260040161086790612dc8565b6112f76000611e41565b565b6006546001600160a01b031633146113235760405162461bcd60e51b815260040161086790612dc8565b600d55565b6006546001600160a01b031633146113525760405162461bcd60e51b815260040161086790612dc8565b4760006113676006546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d80600081146113b1576040519150601f19603f3d011682016040523d82523d6000602084013e6113b6565b606091505b50509050806113fe5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610867565b5050565b6006546001600160a01b0316331461142c5760405162461bcd60e51b815260040161086790612dc8565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60606001805461091090613098565b600c602052600090815260409020805461147690613098565b80601f01602080910402602001604051908101604052809291908181526020018280546114a290613098565b80156114ef5780601f106114c4576101008083540402835291602001916114ef565b820191906000526020600020905b8154815290600101906020018083116114d257829003601f168201915b505050505081565b6113fe338383611e93565b61150c3383611afc565b6115285760405162461bcd60e51b815260040161086790612dfd565b61153484848484611f62565b50505050565b33611544856111c5565b6001600160a01b0316146115905760405162461bcd60e51b815260206004820152601360248201527229b2b73232b91034b9903737ba1037bbb732b960691b6044820152606401610867565b61ffff82166000908152600c6020526040812080546115ae90613098565b9050116115f55760405162461bcd60e51b815260206004820152601560248201527414995b5bdd19481b9bdd0818dbdb999a59dd5c9959605a1b6044820152606401610867565b6115fe84611d9a565b6000848152601060209081526040808320805482516001600160a01b03898116828701528185018b9052606080830193909352845180830390930183526080820180865293879055600b5461ffff8a168852600c90965293862062c5803160e81b9093529094939092169263c5803100923492611685928992889133918b90608401612ec9565b6000604051808303818588803b15801561169e57600080fd5b505af11580156116b2573d6000803e3d6000fd5b50505050508261ffff16856116c43390565b6001600160a01b03167fc2053faa941b7873c40605b67fa28c60157b8b0dbee22c83c34f4ebeaa568fb160405160405180910390a45050505050565b6000818152600260205260409020546060906001600160a01b031661177f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610867565b6000611789611f95565b905060008151116117a957604051806020016040528060008152506117d4565b806117b384611fb5565b6040516020016117c4929190612cf7565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146118055760405162461bcd60e51b815260040161086790612dc8565b600b546040516304b2b47b60e11b81523060048201526001600160a01b039091169063cbed8b9c90829063096568f69060240160206040518083038186803b15801561185057600080fd5b505afa158015611864573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188891906129f4565b868686866040518663ffffffff1660e01b81526004016118ac959493929190612fa9565b600060405180830381600087803b1580156118c657600080fd5b505af11580156118da573d6000803e3d6000fd5b505050505050505050565b6040518060800160405280604381526020016131ce6043913981565b6006546001600160a01b0316331461192b5760405162461bcd60e51b815260040161086790612dc8565b60005b83811015610a1b5782828281811061194857611948613166565b905060200281019061195a9190612fe2565b600c600088888681811061197057611970613166565b905060200201602081019061198591906129d7565b61ffff16815260208101919091526040016000206119a49290916125e4565b50806119af816130f5565b91505061192e565b6006546001600160a01b031633146119e15760405162461bcd60e51b815260040161086790612dc8565b6001600160a01b038116611a465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610867565b610ec081611e41565b6113fe8282604051806020016040528060008152506120b3565b60006001600160e01b0319821663780e9d6360e01b14806108fb57506108fb826120e6565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ac3826111c5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610867565b6000611b80836111c5565b9050806001600160a01b0316846001600160a01b03161480611bbb5750836001600160a01b0316611bb084610a22565b6001600160a01b0316145b80611beb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c06826111c5565b6001600160a01b031614611c6a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610867565b6001600160a01b038216611ccc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610867565b611cd7838383612136565b611ce2600082611a8e565b6001600160a01b0383166000908152600360205260408120805460019290611d0b908490613055565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d39908490613029565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611da5826111c5565b9050611db381600084612136565b611dbe600083611a8e565b6001600160a01b0381166000908152600360205260408120805460019290611de7908490613055565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611ef55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610867565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f6d848484611bf3565b611f7984848484612141565b6115345760405162461bcd60e51b815260040161086790612d76565b60606040518060800160405280604381526020016131ce60439139905090565b606081611fd95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120035780611fed816130f5565b9150611ffc9050600a83613041565b9150611fdd565b60008167ffffffffffffffff81111561201e5761201e61317c565b6040519080825280601f01601f191660200182016040528015612048576020820181803683370190505b5090505b8415611beb5761205d600183613055565b915061206a600a86613110565b612075906030613029565b60f81b81838151811061208a5761208a613166565b60200101906001600160f81b031916908160001a9053506120ac600a86613041565b945061204c565b6120bd838361224e565b6120ca6000848484612141565b610bc85760405162461bcd60e51b815260040161086790612d76565b60006001600160e01b031982166380ac58cd60e01b148061211757506001600160e01b03198216635b5e139f60e01b145b806108fb57506301ffc9a760e01b6001600160e01b03198316146108fb565b610bc883838361239c565b60006001600160a01b0384163b1561224357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612185903390899088908890600401612d26565b602060405180830381600087803b15801561219f57600080fd5b505af19250505080156121cf575060408051601f3d908101601f191682019092526121cc918101906129ba565b60015b612229573d8080156121fd576040519150601f19603f3d011682016040523d82523d6000602084013e612202565b606091505b5080516122215760405162461bcd60e51b815260040161086790612d76565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611beb565b506001949350505050565b6001600160a01b0382166122a45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610867565b6000818152600260205260409020546001600160a01b0316156123095760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610867565b61231560008383612136565b6001600160a01b038216600090815260036020526040812080546001929061233e908490613029565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0383166123f7576123f281600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b61241a565b816001600160a01b0316836001600160a01b03161461241a5761241a8382612454565b6001600160a01b03821661243157610bc8816124f1565b826001600160a01b0316826001600160a01b031614610bc857610bc882826125a0565b600060016124618461123c565b61246b9190613055565b6000838152600860205260409020549091508082146124be576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061250390600190613055565b6000838152600a60205260408120546009805493945090928490811061252b5761252b613166565b90600052602060002001549050806009838154811061254c5761254c613166565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061258457612584613150565b6001900381819060005260206000200160009055905550505050565b60006125ab8361123c565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546125f090613098565b90600052602060002090601f0160209004810192826126125760008555612658565b82601f1061262b5782800160ff19823516178555612658565b82800160010185558215612658579182015b8281111561265857823582559160200191906001019061263d565b50612664929150612668565b5090565b5b808211156126645760008155600101612669565b60008083601f84011261268f57600080fd5b50813567ffffffffffffffff8111156126a757600080fd5b6020830191508360208260051b85010111156126c257600080fd5b9250929050565b60008083601f8401126126db57600080fd5b50813567ffffffffffffffff8111156126f357600080fd5b6020830191508360208285010111156126c257600080fd5b600082601f83011261271c57600080fd5b813567ffffffffffffffff808211156127375761273761317c565b604051601f8301601f19908116603f0116810190828211818310171561275f5761275f61317c565b8160405283815286602085880101111561277857600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000602082840312156127aa57600080fd5b81356117d481613192565b6000806000606084860312156127ca57600080fd5b83516127d581613192565b602085015160409095015190969495509392505050565b600080604083850312156127ff57600080fd5b823561280a81613192565b9150602083013561281a81613192565b809150509250929050565b60008060006060848603121561283a57600080fd5b833561284581613192565b9250602084013561285581613192565b929592945050506040919091013590565b6000806000806080858703121561287c57600080fd5b843561288781613192565b9350602085013561289781613192565b925060408501359150606085013567ffffffffffffffff8111156128ba57600080fd5b6128c68782880161270b565b91505092959194509250565b600080604083850312156128e557600080fd5b82356128f081613192565b91506020830135801515811461281a57600080fd5b6000806040838503121561291857600080fd5b823561292381613192565b946020939093013593505050565b6000806000806040858703121561294757600080fd5b843567ffffffffffffffff8082111561295f57600080fd5b61296b8883890161267d565b9096509450602087013591508082111561298457600080fd5b506129918782880161267d565b95989497509550505050565b6000602082840312156129af57600080fd5b81356117d4816131a7565b6000602082840312156129cc57600080fd5b81516117d4816131a7565b6000602082840312156129e957600080fd5b81356117d4816131bd565b600060208284031215612a0657600080fd5b81516117d4816131bd565b600080600060408486031215612a2657600080fd5b8335612a31816131bd565b9250602084013567ffffffffffffffff811115612a4d57600080fd5b612a59868287016126c9565b9497909650939450505050565b60008060008060808587031215612a7c57600080fd5b8435612a87816131bd565b9350602085013567ffffffffffffffff80821115612aa457600080fd5b612ab08883890161270b565b9450604087013591508082168214612ac757600080fd5b90925060608601359080821115612add57600080fd5b506128c68782880161270b565b600080600080600060808688031215612b0257600080fd5b8535612b0d816131bd565b94506020860135612b1d816131bd565b935060408601359250606086013567ffffffffffffffff811115612b4057600080fd5b612b4c888289016126c9565b969995985093965092949392505050565b600060208284031215612b6f57600080fd5b5035919050565b600080600060608486031215612b8b57600080fd5b833592506020840135612b9d81613192565b91506040840135612bad816131bd565b809150509250925092565b60008060008060808587031215612bce57600080fd5b843593506020850135612be081613192565b92506040850135612bf0816131bd565b9150606085013567ffffffffffffffff8111156128ba57600080fd5b60008060408385031215612c1f57600080fd5b505080516020909101519092909150565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60008151808452612c7181602086016020860161306c565b601f01601f19169290920160200192915050565b6000808354612c9381613098565b60018281168015612cab5760018114612cbc57612ceb565b60ff19841687528287019450612ceb565b8760005260208060002060005b85811015612ce25781548a820152908401908201612cc9565b50505082870194505b50929695505050505050565b60008351612d0981846020880161306c565b835190830190612d1d81836020880161306c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d5990830184612c59565b9695505050505050565b6020815260006117d46020830184612c59565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a060408201819052600090612e7c90830186612c59565b84151560608401528281036080840152612e968185612c59565b98975050505050505050565b61ffff84168152604060208201526000612ec0604083018486612c30565b95945050505050565b61ffff871681526000602060c08184015260008854612ee781613098565b8060c087015260e0600180841660008114612f095760018114612f1e57612f4c565b60ff1985168984015261010089019550612f4c565b8d6000528660002060005b85811015612f445781548b8201860152908301908801612f29565b8a0184019650505b50505050508381036040850152612f638189612c59565b915050612f7b60608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612f9c8185612c59565b9998505050505050505050565b600061ffff808816835280871660208401525084604083015260806060830152612fd7608083018486612c30565b979650505050505050565b6000808335601e19843603018112612ff957600080fd5b83018035915067ffffffffffffffff82111561301457600080fd5b6020019150368190038213156126c257600080fd5b6000821982111561303c5761303c613124565b500190565b6000826130505761305061313a565b500490565b60008282101561306757613067613124565b500390565b60005b8381101561308757818101518382015260200161306f565b838111156115345750506000910152565b600181811c908216806130ac57607f821691505b602082108114156130cd57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff808316818114156130eb576130eb613124565b6001019392505050565b600060001982141561310957613109613124565b5060010190565b60008261311f5761311f61313a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ec057600080fd5b6001600160e01b031981168114610ec057600080fd5b61ffff81168114610ec057600080fdfe697066733a2f2f62616679626569656b356a6767716d35776370707a356c7a75763761773661786764637a75766a70346d6a77656c72667934646666376874747a792fa26469706673582212200ab8928c70124e02a6fc279ca543826318b5d0844b8f00d9895be2aabbc697e564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000100000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675

Deployed Bytecode

0x6080604052600436106102315760003560e01c80636352211e1161012d578063a22cb465116100b0578063cbed8b9c11610077578063cbed8b9c14610692578063db7e0c7e146106b2578063dbddb26a146106c8578063dec83a8c146106dd578063e985e9c5146106fd578063f2fde38b1461074657005b8063a22cb465146105f1578063b88d4fde14610611578063c1bd8cf914610631578063c401068c1461065f578063c87b56dd1461067257005b8063853828b6116100f4578063853828b6146105695780638da5cb5b1461057e57806395b9783c1461059c57806395d89b41146105bc5780639d1f6113146105d157005b80636352211e146104de57806370a08231146104fe578063715018a61461051e57806375794a3c14610533578063780c81871461054957005b806318160ddd116101b557806342966c681161017c57806342966c681461043657806342d65a8d146104565780634946d603146104765780634f6ccce714610489578063584c9ac6146104a957005b806318160ddd146103ac57806323b872dd146103c15780632f745c59146103e157806332cb6b0c1461040157806342842e0e1461041657005b8063081812fc116101f9578063081812fc14610309578063095ea7b3146103295780630ce806981461034957806310ddb137146103845780631249c58b146103a457005b80621d35671461023a57806301ffc9a71461025a57806306fdde031461028f57806307968db1146102b157806307e0db17146102e957005b3661023857005b005b34801561024657600080fd5b50610238610255366004612a66565b610766565b34801561026657600080fd5b5061027a61027536600461299d565b6108f0565b60405190151581526020015b60405180910390f35b34801561029b57600080fd5b506102a4610901565b6040516102869190612d63565b3480156102bd57600080fd5b50600b546102d1906001600160a01b031681565b6040516001600160a01b039091168152602001610286565b3480156102f557600080fd5b506102386103043660046129d7565b610993565b34801561031557600080fd5b506102d1610324366004612b5d565b610a22565b34801561033557600080fd5b50610238610344366004612905565b610ab7565b34801561035557600080fd5b50610376610364366004612b5d565b60106020526000908152604090205481565b604051908152602001610286565b34801561039057600080fd5b5061023861039f3660046129d7565b610bcd565b610238610c2b565b3480156103b857600080fd5b50600954610376565b3480156103cd57600080fd5b506102386103dc366004612825565b610d66565b3480156103ed57600080fd5b506103766103fc366004612905565b610d98565b34801561040d57600080fd5b50610376608f81565b34801561042257600080fd5b50610238610431366004612825565b610e2e565b34801561044257600080fd5b50610238610451366004612b5d565b610e49565b34801561046257600080fd5b50610238610471366004612a11565b610ec3565b610238610484366004612b76565b610f58565b34801561049557600080fd5b506103766104a4366004612b5d565b610f90565b3480156104b557600080fd5b506104c96104c4366004612b76565b611023565b60408051928352602083019190915201610286565b3480156104ea57600080fd5b506102d16104f9366004612b5d565b6111c5565b34801561050a57600080fd5b50610376610519366004612798565b61123c565b34801561052a57600080fd5b506102386112c3565b34801561053f57600080fd5b50610376600f5481565b34801561055557600080fd5b50610238610564366004612b5d565b6112f9565b34801561057557600080fd5b50610238611328565b34801561058a57600080fd5b506006546001600160a01b03166102d1565b3480156105a857600080fd5b506102386105b7366004612798565b611402565b3480156105c857600080fd5b506102a461144e565b3480156105dd57600080fd5b506102a46105ec3660046129d7565b61145d565b3480156105fd57600080fd5b5061023861060c3660046128d2565b6114f7565b34801561061d57600080fd5b5061023861062c366004612866565b611502565b34801561063d57600080fd5b50600e5461064c9061ffff1681565b60405161ffff9091168152602001610286565b61023861066d366004612bb8565b61153a565b34801561067e57600080fd5b506102a461068d366004612b5d565b611700565b34801561069e57600080fd5b506102386106ad366004612aea565b6117db565b3480156106be57600080fd5b50610376600d5481565b3480156106d457600080fd5b506102a46118e5565b3480156106e957600080fd5b506102386106f8366004612931565b611901565b34801561070957600080fd5b5061027a6107183660046127ec565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075257600080fd5b50610238610761366004612798565b6119b7565b600b546001600160a01b0316331461077d57600080fd5b61ffff84166000908152600c60205260409020805461079b90613098565b905083511480156107da575061ffff84166000908152600c60205260409081902090516107c89190612c85565b60405180910390208380519060200120145b6108705760405162461bcd60e51b815260206004820152605660248201527f496e76616c69642072656d6f74652073656e64657220616464726573732e206f60448201527f776e65722073686f756c642063616c6c2073657452656d6f7465282920746f20606482015275195b98589b19481c995b5bdd194818dbdb9d1c9858dd60521b608482015260a4015b60405180910390fd5b60008060008380602001905181019061088991906127b5565b9194509250905061089b816001613029565b6000838152601060205260409020556108b48383611a4f565b60405161ffff881690839033907f8d4271535c5cb5ea2cb81c15c9967c199c6325230c4d3d85bba9b6dac5bc660a90600090a450505050505050565b60006108fb82611a69565b92915050565b60606000805461091090613098565b80601f016020809104026020016040519081016040528092919081815260200182805461093c90613098565b80156109895780601f1061095e57610100808354040283529160200191610989565b820191906000526020600020905b81548152906001019060200180831161096c57829003601f168201915b5050505050905090565b6006546001600160a01b031633146109bd5760405162461bcd60e51b815260040161086790612dc8565b600b546040516307e0db1760e01b815261ffff831660048201526001600160a01b03909116906307e0db17906024015b600060405180830381600087803b158015610a0757600080fd5b505af1158015610a1b573d6000803e3d6000fd5b5050505050565b6000818152600260205260408120546001600160a01b0316610a9b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610867565b506000908152600460205260409020546001600160a01b031690565b6000610ac2826111c5565b9050806001600160a01b0316836001600160a01b03161415610b305760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610867565b336001600160a01b0382161480610b4c5750610b4c8133610718565b610bbe5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610867565b610bc88383611a8e565b505050565b6006546001600160a01b03163314610bf75760405162461bcd60e51b815260040161086790612dc8565b600b546040516310ddb13760e01b815261ffff831660048201526001600160a01b03909116906310ddb137906024016109ed565b600e54608f61ffff90911610610c835760405162461bcd60e51b815260206004820152601760248201527f4d6178206d696e7420737570706c7920726561636865640000000000000000006044820152606401610867565b6002610c8e3361123c565b10610cce5760405162461bcd60e51b815260206004820152601060248201526f13585e080c881c195c881dd85b1b195d60821b6044820152606401610867565b600e805461ffff16906000610ce2836130d3565b91906101000a81548161ffff021916908361ffff16021790555050610d0f610d073390565b600f54611a4f565b600f8054600090815260106020526040808220600190559154915133917f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe91a3600f8054906000610d5f836130f5565b9190505550565b610d71335b82611afc565b610d8d5760405162461bcd60e51b815260040161086790612dfd565b610bc8838383611bf3565b6000610da38361123c565b8210610e055760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610867565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610bc883838360405180602001604052806000815250611502565b610e5233610d6b565b610eb75760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610867565b610ec081611d9a565b50565b6006546001600160a01b03163314610eed5760405162461bcd60e51b815260040161086790612dc8565b600b546040516342d65a8d60e01b81526001600160a01b03909116906342d65a8d90610f2190869086908690600401612ea2565b600060405180830381600087803b158015610f3b57600080fd5b505af1158015610f4f573d6000803e3d6000fd5b50505050505050565b600d5460408051600160f01b6020820152602280820193909352815180820390930183526042019052600190610a1b8585858461153a565b6000610f9b60095490565b8210610ffe5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610867565b6009828154811061101157611011613166565b90600052602060002001549050919050565b60008381526010602090815260408083205481516001600160a01b038781168286015281840189905260608083019390935283518083039093018352608082018452600d54600160f01b60a084015260a2808401919091528451808403909101815260c29092018452600b5461ffff88168752600c90955292852080548695939460019416916340a7bb10918991611143916110be90613098565b80601f01602080910402602001604051908101604052809291908181526020018280546110ea90613098565b80156111375780601f1061110c57610100808354040283529160200191611137565b820191906000526020600020905b81548152906001019060200180831161111a57829003601f168201915b50505050506014015190565b866000866040518663ffffffff1660e01b8152600401611167959493929190612e4e565b604080518083038186803b15801561117e57600080fd5b505afa158015611192573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b69190612c0c565b94509450505050935093915050565b6000818152600260205260408120546001600160a01b0316806108fb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610867565b60006001600160a01b0382166112a75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610867565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112ed5760405162461bcd60e51b815260040161086790612dc8565b6112f76000611e41565b565b6006546001600160a01b031633146113235760405162461bcd60e51b815260040161086790612dc8565b600d55565b6006546001600160a01b031633146113525760405162461bcd60e51b815260040161086790612dc8565b4760006113676006546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d80600081146113b1576040519150601f19603f3d011682016040523d82523d6000602084013e6113b6565b606091505b50509050806113fe5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610867565b5050565b6006546001600160a01b0316331461142c5760405162461bcd60e51b815260040161086790612dc8565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60606001805461091090613098565b600c602052600090815260409020805461147690613098565b80601f01602080910402602001604051908101604052809291908181526020018280546114a290613098565b80156114ef5780601f106114c4576101008083540402835291602001916114ef565b820191906000526020600020905b8154815290600101906020018083116114d257829003601f168201915b505050505081565b6113fe338383611e93565b61150c3383611afc565b6115285760405162461bcd60e51b815260040161086790612dfd565b61153484848484611f62565b50505050565b33611544856111c5565b6001600160a01b0316146115905760405162461bcd60e51b815260206004820152601360248201527229b2b73232b91034b9903737ba1037bbb732b960691b6044820152606401610867565b61ffff82166000908152600c6020526040812080546115ae90613098565b9050116115f55760405162461bcd60e51b815260206004820152601560248201527414995b5bdd19481b9bdd0818dbdb999a59dd5c9959605a1b6044820152606401610867565b6115fe84611d9a565b6000848152601060209081526040808320805482516001600160a01b03898116828701528185018b9052606080830193909352845180830390930183526080820180865293879055600b5461ffff8a168852600c90965293862062c5803160e81b9093529094939092169263c5803100923492611685928992889133918b90608401612ec9565b6000604051808303818588803b15801561169e57600080fd5b505af11580156116b2573d6000803e3d6000fd5b50505050508261ffff16856116c43390565b6001600160a01b03167fc2053faa941b7873c40605b67fa28c60157b8b0dbee22c83c34f4ebeaa568fb160405160405180910390a45050505050565b6000818152600260205260409020546060906001600160a01b031661177f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610867565b6000611789611f95565b905060008151116117a957604051806020016040528060008152506117d4565b806117b384611fb5565b6040516020016117c4929190612cf7565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146118055760405162461bcd60e51b815260040161086790612dc8565b600b546040516304b2b47b60e11b81523060048201526001600160a01b039091169063cbed8b9c90829063096568f69060240160206040518083038186803b15801561185057600080fd5b505afa158015611864573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188891906129f4565b868686866040518663ffffffff1660e01b81526004016118ac959493929190612fa9565b600060405180830381600087803b1580156118c657600080fd5b505af11580156118da573d6000803e3d6000fd5b505050505050505050565b6040518060800160405280604381526020016131ce6043913981565b6006546001600160a01b0316331461192b5760405162461bcd60e51b815260040161086790612dc8565b60005b83811015610a1b5782828281811061194857611948613166565b905060200281019061195a9190612fe2565b600c600088888681811061197057611970613166565b905060200201602081019061198591906129d7565b61ffff16815260208101919091526040016000206119a49290916125e4565b50806119af816130f5565b91505061192e565b6006546001600160a01b031633146119e15760405162461bcd60e51b815260040161086790612dc8565b6001600160a01b038116611a465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610867565b610ec081611e41565b6113fe8282604051806020016040528060008152506120b3565b60006001600160e01b0319821663780e9d6360e01b14806108fb57506108fb826120e6565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ac3826111c5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610867565b6000611b80836111c5565b9050806001600160a01b0316846001600160a01b03161480611bbb5750836001600160a01b0316611bb084610a22565b6001600160a01b0316145b80611beb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c06826111c5565b6001600160a01b031614611c6a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610867565b6001600160a01b038216611ccc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610867565b611cd7838383612136565b611ce2600082611a8e565b6001600160a01b0383166000908152600360205260408120805460019290611d0b908490613055565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d39908490613029565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611da5826111c5565b9050611db381600084612136565b611dbe600083611a8e565b6001600160a01b0381166000908152600360205260408120805460019290611de7908490613055565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611ef55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610867565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f6d848484611bf3565b611f7984848484612141565b6115345760405162461bcd60e51b815260040161086790612d76565b60606040518060800160405280604381526020016131ce60439139905090565b606081611fd95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120035780611fed816130f5565b9150611ffc9050600a83613041565b9150611fdd565b60008167ffffffffffffffff81111561201e5761201e61317c565b6040519080825280601f01601f191660200182016040528015612048576020820181803683370190505b5090505b8415611beb5761205d600183613055565b915061206a600a86613110565b612075906030613029565b60f81b81838151811061208a5761208a613166565b60200101906001600160f81b031916908160001a9053506120ac600a86613041565b945061204c565b6120bd838361224e565b6120ca6000848484612141565b610bc85760405162461bcd60e51b815260040161086790612d76565b60006001600160e01b031982166380ac58cd60e01b148061211757506001600160e01b03198216635b5e139f60e01b145b806108fb57506301ffc9a760e01b6001600160e01b03198316146108fb565b610bc883838361239c565b60006001600160a01b0384163b1561224357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612185903390899088908890600401612d26565b602060405180830381600087803b15801561219f57600080fd5b505af19250505080156121cf575060408051601f3d908101601f191682019092526121cc918101906129ba565b60015b612229573d8080156121fd576040519150601f19603f3d011682016040523d82523d6000602084013e612202565b606091505b5080516122215760405162461bcd60e51b815260040161086790612d76565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611beb565b506001949350505050565b6001600160a01b0382166122a45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610867565b6000818152600260205260409020546001600160a01b0316156123095760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610867565b61231560008383612136565b6001600160a01b038216600090815260036020526040812080546001929061233e908490613029565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0383166123f7576123f281600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b61241a565b816001600160a01b0316836001600160a01b03161461241a5761241a8382612454565b6001600160a01b03821661243157610bc8816124f1565b826001600160a01b0316826001600160a01b031614610bc857610bc882826125a0565b600060016124618461123c565b61246b9190613055565b6000838152600860205260409020549091508082146124be576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061250390600190613055565b6000838152600a60205260408120546009805493945090928490811061252b5761252b613166565b90600052602060002001549050806009838154811061254c5761254c613166565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061258457612584613150565b6001900381819060005260206000200160009055905550505050565b60006125ab8361123c565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546125f090613098565b90600052602060002090601f0160209004810192826126125760008555612658565b82601f1061262b5782800160ff19823516178555612658565b82800160010185558215612658579182015b8281111561265857823582559160200191906001019061263d565b50612664929150612668565b5090565b5b808211156126645760008155600101612669565b60008083601f84011261268f57600080fd5b50813567ffffffffffffffff8111156126a757600080fd5b6020830191508360208260051b85010111156126c257600080fd5b9250929050565b60008083601f8401126126db57600080fd5b50813567ffffffffffffffff8111156126f357600080fd5b6020830191508360208285010111156126c257600080fd5b600082601f83011261271c57600080fd5b813567ffffffffffffffff808211156127375761273761317c565b604051601f8301601f19908116603f0116810190828211818310171561275f5761275f61317c565b8160405283815286602085880101111561277857600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000602082840312156127aa57600080fd5b81356117d481613192565b6000806000606084860312156127ca57600080fd5b83516127d581613192565b602085015160409095015190969495509392505050565b600080604083850312156127ff57600080fd5b823561280a81613192565b9150602083013561281a81613192565b809150509250929050565b60008060006060848603121561283a57600080fd5b833561284581613192565b9250602084013561285581613192565b929592945050506040919091013590565b6000806000806080858703121561287c57600080fd5b843561288781613192565b9350602085013561289781613192565b925060408501359150606085013567ffffffffffffffff8111156128ba57600080fd5b6128c68782880161270b565b91505092959194509250565b600080604083850312156128e557600080fd5b82356128f081613192565b91506020830135801515811461281a57600080fd5b6000806040838503121561291857600080fd5b823561292381613192565b946020939093013593505050565b6000806000806040858703121561294757600080fd5b843567ffffffffffffffff8082111561295f57600080fd5b61296b8883890161267d565b9096509450602087013591508082111561298457600080fd5b506129918782880161267d565b95989497509550505050565b6000602082840312156129af57600080fd5b81356117d4816131a7565b6000602082840312156129cc57600080fd5b81516117d4816131a7565b6000602082840312156129e957600080fd5b81356117d4816131bd565b600060208284031215612a0657600080fd5b81516117d4816131bd565b600080600060408486031215612a2657600080fd5b8335612a31816131bd565b9250602084013567ffffffffffffffff811115612a4d57600080fd5b612a59868287016126c9565b9497909650939450505050565b60008060008060808587031215612a7c57600080fd5b8435612a87816131bd565b9350602085013567ffffffffffffffff80821115612aa457600080fd5b612ab08883890161270b565b9450604087013591508082168214612ac757600080fd5b90925060608601359080821115612add57600080fd5b506128c68782880161270b565b600080600080600060808688031215612b0257600080fd5b8535612b0d816131bd565b94506020860135612b1d816131bd565b935060408601359250606086013567ffffffffffffffff811115612b4057600080fd5b612b4c888289016126c9565b969995985093965092949392505050565b600060208284031215612b6f57600080fd5b5035919050565b600080600060608486031215612b8b57600080fd5b833592506020840135612b9d81613192565b91506040840135612bad816131bd565b809150509250925092565b60008060008060808587031215612bce57600080fd5b843593506020850135612be081613192565b92506040850135612bf0816131bd565b9150606085013567ffffffffffffffff8111156128ba57600080fd5b60008060408385031215612c1f57600080fd5b505080516020909101519092909150565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60008151808452612c7181602086016020860161306c565b601f01601f19169290920160200192915050565b6000808354612c9381613098565b60018281168015612cab5760018114612cbc57612ceb565b60ff19841687528287019450612ceb565b8760005260208060002060005b85811015612ce25781548a820152908401908201612cc9565b50505082870194505b50929695505050505050565b60008351612d0981846020880161306c565b835190830190612d1d81836020880161306c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d5990830184612c59565b9695505050505050565b6020815260006117d46020830184612c59565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a060408201819052600090612e7c90830186612c59565b84151560608401528281036080840152612e968185612c59565b98975050505050505050565b61ffff84168152604060208201526000612ec0604083018486612c30565b95945050505050565b61ffff871681526000602060c08184015260008854612ee781613098565b8060c087015260e0600180841660008114612f095760018114612f1e57612f4c565b60ff1985168984015261010089019550612f4c565b8d6000528660002060005b85811015612f445781548b8201860152908301908801612f29565b8a0184019650505b50505050508381036040850152612f638189612c59565b915050612f7b60608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612f9c8185612c59565b9998505050505050505050565b600061ffff808816835280871660208401525084604083015260806060830152612fd7608083018486612c30565b979650505050505050565b6000808335601e19843603018112612ff957600080fd5b83018035915067ffffffffffffffff82111561301457600080fd5b6020019150368190038213156126c257600080fd5b6000821982111561303c5761303c613124565b500190565b6000826130505761305061313a565b500490565b60008282101561306757613067613124565b500390565b60005b8381101561308757818101518382015260200161306f565b838111156115345750506000910152565b600181811c908216806130ac57607f821691505b602082108114156130cd57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff808316818114156130eb576130eb613124565b6001019392505050565b600060001982141561310957613109613124565b5060010190565b60008261311f5761311f61313a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ec057600080fd5b6001600160e01b031981168114610ec057600080fd5b61ffff81168114610ec057600080fdfe697066733a2f2f62616679626569656b356a6767716d35776370707a356c7a75763761773661786764637a75766a70346d6a77656c72667934646666376874747a792fa26469706673582212200ab8928c70124e02a6fc279ca543826318b5d0844b8f00d9895be2aabbc697e564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000000100000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675

-----Decoded View---------------
Arg [0] : _nextTokenId (uint256): 1
Arg [1] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675


Deployed Bytecode Sourcemap

61387:5084:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62712:834;;;;;;;;;;-1:-1:-1;62712:834:0;;;;;:::i;:::-;;:::i;66239:229::-;;;;;;;;;;-1:-1:-1;66239:229:0;;;;;:::i;:::-;;:::i;:::-;;;13535:14:1;;13528:22;13510:41;;13498:2;13483:18;66239:229:0;;;;;;;;26407:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;59577:43::-;;;;;;;;;;-1:-1:-1;59577:43:0;;;;-1:-1:-1;;;;;59577:43:0;;;;;;-1:-1:-1;;;;;12483:32:1;;;12465:51;;12453:2;12438:18;59577:43:0;12319:203:1;60541:128:0;;;;;;;;;;-1:-1:-1;60541:128:0;;;;;:::i;:::-;;:::i;28100:308::-;;;;;;;;;;-1:-1:-1;28100:308:0;;;;;:::i;:::-;;:::i;27623:411::-;;;;;;;;;;-1:-1:-1;27623:411:0;;;;;:::i;:::-;;:::i;61708:48::-;;;;;;;;;;-1:-1:-1;61708:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;27423:25:1;;;27411:2;27396:18;61708:48:0;27277:177:1;60677:134:0;;;;;;;;;;-1:-1:-1;60677:134:0;;;;;:::i;:::-;;:::i;63582:374::-;;;:::i;42979:113::-;;;;;;;;;;-1:-1:-1;43067:10:0;:17;42979:113;;29019:376;;;;;;;;;;-1:-1:-1;29019:376:0;;;;;:::i;:::-;;:::i;42560:343::-;;;;;;;;;;-1:-1:-1;42560:343:0;;;;;:::i;:::-;;:::i;61470:40::-;;;;;;;;;;;;61507:3;61470:40;;29466:185;;;;;;;;;;-1:-1:-1;29466:185:0;;;;;:::i;:::-;;:::i;39821:282::-;;;;;;;;;;-1:-1:-1;39821:282:0;;;;;:::i;:::-;;:::i;60819:217::-;;;;;;;;;;-1:-1:-1;60819:217:0;;;;;:::i;:::-;;:::i;63964:389::-;;;;;;:::i;:::-;;:::i;43169:320::-;;;;;;;;;;-1:-1:-1;43169:320:0;;;;;:::i;:::-;;:::i;65207:654::-;;;;;;;;;;-1:-1:-1;65207:654:0;;;;;:::i;:::-;;:::i;:::-;;;;27633:25:1;;;27689:2;27674:18;;27667:34;;;;27606:18;65207:654:0;27459:248:1;26014:326:0;;;;;;;;;;-1:-1:-1;26014:326:0;;;;;:::i;:::-;;:::i;25657:295::-;;;;;;;;;;-1:-1:-1;25657:295:0;;;;;:::i;:::-;;:::i;50301:103::-;;;;;;;;;;;;;:::i;61675:26::-;;;;;;;;;;;;;;;;61044:104;;;;;;;;;;-1:-1:-1;61044:104:0;;;;;:::i;:::-;;:::i;62458:213::-;;;;;;;;;;;;;:::i;49650:87::-;;;;;;;;;;-1:-1:-1;49723:6:0;;-1:-1:-1;;;;;49723:6:0;49650:87;;59721:177;;;;;;;;;;-1:-1:-1;59721:177:0;;;;;:::i;:::-;;:::i;26576:104::-;;;;;;;;;;;;;:::i;59627:39::-;;;;;;;;;;-1:-1:-1;59627:39:0;;;;;:::i;:::-;;:::i;28480:187::-;;;;;;;;;;-1:-1:-1;28480:187:0;;;;;:::i;:::-;;:::i;29722:365::-;;;;;;;;;;-1:-1:-1;29722:365:0;;;;;:::i;:::-;;:::i;61638:30::-;;;;;;;;;;-1:-1:-1;61638:30:0;;;;;;;;;;;24276:6:1;24264:19;;;24246:38;;24234:2;24219:18;61638:30:0;24102:188:1;64361:838:0;;;;;;:::i;:::-;;:::i;26751:468::-;;;;;;;;;;-1:-1:-1;26751:468:0;;;;;:::i;:::-;;:::i;60170:363::-;;;;;;;;;;-1:-1:-1;60170:363:0;;;;;:::i;:::-;;:::i;59675:37::-;;;;;;;;;;;;;;;;61517:112;;;;;;;;;;;;;:::i;59906:256::-;;;;;;;;;;-1:-1:-1;59906:256:0;;;;;:::i;:::-;;:::i;28738:214::-;;;;;;;;;;-1:-1:-1;28738:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;28909:25:0;;;28880:4;28909:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28738:214;50559:238;;;;;;;;;;-1:-1:-1;50559:238:0;;;;;:::i;:::-;;:::i;62712:834::-;62910:17;;-1:-1:-1;;;;;62910:17:0;62888:10;:40;62880:49;;;;;;62984:20;;;;;;;:7;:20;;;;;:27;;;;;:::i;:::-;;;62962:11;:18;:49;:127;;;;-1:-1:-1;63068:20:0;;;;;;;:7;:20;;;;;;;63058:31;;;;63068:20;63058:31;:::i;:::-;;;;;;;;63042:11;63032:22;;;;;;:57;62962:127;62940:263;;;;-1:-1:-1;;;62940:263:0;;17143:2:1;62940:263:0;;;17125:21:1;17182:2;17162:18;;;17155:30;17221:34;17201:18;;;17194:62;17292:34;17272:18;;;17265:62;-1:-1:-1;;;17343:19:1;;;17336:53;17406:19;;62940:263:0;;;;;;;;;63244:10;63256:15;63273:16;63318:8;63293:86;;;;;;;;;;;;:::i;:::-;63243:136;;-1:-1:-1;63243:136:0;-1:-1:-1;63243:136:0;-1:-1:-1;63417:12:0;63243:136;63428:1;63417:12;:::i;:::-;63392:22;;;;:13;:22;;;;;:37;63442:22;63452:2;63406:7;63442:9;:22::i;:::-;63482:56;;;;;;63517:7;;20547:10;;63482:56;;;;;62869:677;;;62712:834;;;;:::o;66239:229::-;66395:4;66424:36;66448:11;66424:23;:36::i;:::-;66417:43;66239:229;-1:-1:-1;;66239:229:0:o;26407:100::-;26461:13;26494:5;26487:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26407:100;:::o;60541:128::-;49723:6;;-1:-1:-1;;;;;49723:6:0;20547:10;49870:23;49862:68;;;;-1:-1:-1;;;49862:68:0;;;;;;;:::i;:::-;60620:17:::1;::::0;:41:::1;::::0;-1:-1:-1;;;60620:41:0;;24276:6:1;24264:19;;60620:41:0::1;::::0;::::1;24246:38:1::0;-1:-1:-1;;;;;60620:17:0;;::::1;::::0;:32:::1;::::0;24219:18:1;;60620:41:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;60541:128:::0;:::o;28100:308::-;28221:7;31723:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31723:16:0;28246:110;;;;-1:-1:-1;;;28246:110:0;;21116:2:1;28246:110:0;;;21098:21:1;21155:2;21135:18;;;21128:30;21194:34;21174:18;;;21167:62;-1:-1:-1;;;21245:18:1;;;21238:42;21297:19;;28246:110:0;20914:408:1;28246:110:0;-1:-1:-1;28376:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28376:24:0;;28100:308::o;27623:411::-;27704:13;27720:23;27735:7;27720:14;:23::i;:::-;27704:39;;27768:5;-1:-1:-1;;;;;27762:11:0;:2;-1:-1:-1;;;;;27762:11:0;;;27754:57;;;;-1:-1:-1;;;27754:57:0;;22306:2:1;27754:57:0;;;22288:21:1;22345:2;22325:18;;;22318:30;22384:34;22364:18;;;22357:62;-1:-1:-1;;;22435:18:1;;;22428:31;22476:19;;27754:57:0;22104:397:1;27754:57:0;20547:10;-1:-1:-1;;;;;27846:21:0;;;;:62;;-1:-1:-1;27871:37:0;27888:5;20547:10;28738:214;:::i;27871:37::-;27824:168;;;;-1:-1:-1;;;27824:168:0;;19509:2:1;27824:168:0;;;19491:21:1;19548:2;19528:18;;;19521:30;19587:34;19567:18;;;19560:62;19658:26;19638:18;;;19631:54;19702:19;;27824:168:0;19307:420:1;27824:168:0;28005:21;28014:2;28018:7;28005:8;:21::i;:::-;27693:341;27623:411;;:::o;60677:134::-;49723:6;;-1:-1:-1;;;;;49723:6:0;20547:10;49870:23;49862:68;;;;-1:-1:-1;;;49862:68:0;;;;;;;:::i;:::-;60759:17:::1;::::0;:44:::1;::::0;-1:-1:-1;;;60759:44:0;;24276:6:1;24264:19;;60759:44:0::1;::::0;::::1;24246:38:1::0;-1:-1:-1;;;;;60759:17:0;;::::1;::::0;:35:::1;::::0;24219:18:1;;60759:44:0::1;24102:188:1::0;63582:374:0;63632:12;;61507:3;63632:12;;;;:25;63624:61;;;;-1:-1:-1;;;63624:61:0;;14445:2:1;63624:61:0;;;14427:21:1;14484:2;14464:18;;;14457:30;14523:25;14503:18;;;14496:53;14566:18;;63624:61:0;14243:347:1;63624:61:0;63730:1;63704:23;20547:10;25657:295;:::i;63704:23::-;:27;63696:56;;;;-1:-1:-1;;;63696:56:0;;16798:2:1;63696:56:0;;;16780:21:1;16837:2;16817:18;;;16810:30;-1:-1:-1;;;16856:18:1;;;16849:46;16912:18;;63696:56:0;16596:340:1;63696:56:0;63765:12;:14;;;;;:12;:14;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;63792:36;63802:12;20547:10;;20467:98;63802:12;63816:11;;63792:9;:36::i;:::-;63855:11;;;63841:26;;;;:13;:26;;;;;;63870:1;63841:30;;63910:11;;63889:33;;20547:10;;63889:33;;;63935:11;:13;;;:11;:13;;;:::i;:::-;;;;;;63582:374::o;29019:376::-;29228:41;20547:10;29247:12;29261:7;29228:18;:41::i;:::-;29206:140;;;;-1:-1:-1;;;29206:140:0;;;;;;;:::i;:::-;29359:28;29369:4;29375:2;29379:7;29359:9;:28::i;42560:343::-;42702:7;42757:23;42774:5;42757:16;:23::i;:::-;42749:5;:31;42727:124;;;;-1:-1:-1;;;42727:124:0;;14797:2:1;42727:124:0;;;14779:21:1;14836:2;14816:18;;;14809:30;14875:34;14855:18;;;14848:62;-1:-1:-1;;;14926:18:1;;;14919:41;14977:19;;42727:124:0;14595:407:1;42727:124:0;-1:-1:-1;;;;;;42869:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42560:343::o;29466:185::-;29604:39;29621:4;29627:2;29631:7;29604:39;;;;;;;;;;;;:16;:39::i;39821:282::-;39953:41;20547:10;39972:12;20467:98;39953:41;39931:139;;;;-1:-1:-1;;;39931:139:0;;23887:2:1;39931:139:0;;;23869:21:1;23926:2;23906:18;;;23899:30;23965:34;23945:18;;;23938:62;-1:-1:-1;;;24016:18:1;;;24009:46;24072:19;;39931:139:0;23685:412:1;39931:139:0;40081:14;40087:7;40081:5;:14::i;:::-;39821:282;:::o;60819:217::-;49723:6;;-1:-1:-1;;;;;49723:6:0;20547:10;49870:23;49862:68;;;;-1:-1:-1;;;49862:68:0;;;;;;;:::i;:::-;60966:17:::1;::::0;:62:::1;::::0;-1:-1:-1;;;60966:62:0;;-1:-1:-1;;;;;60966:17:0;;::::1;::::0;:36:::1;::::0;:62:::1;::::0;61003:11;;61016;;;;60966:62:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;60819:217:::0;;;:::o;63964:389::-;64183:13;;64157:40;;;-1:-1:-1;;;64157:40:0;;;12193:51:1;12260:11;;;;12253:27;;;;64157:40:0;;;;;;;;;;12296:12:1;;64157:40:0;;64116:1;;64210:135;64257:8;64280:3;64298:8;64157:40;64210:32;:135::i;43169:320::-;43289:7;43344:30;43067:10;:17;;42979:113;43344:30;43336:5;:38;43314:132;;;;-1:-1:-1;;;43314:132:0;;23474:2:1;43314:132:0;;;23456:21:1;23513:2;23493:18;;;23486:30;23552:34;23532:18;;;23525:62;-1:-1:-1;;;23603:18:1;;;23596:42;23655:19;;43314:132:0;23272:408:1;43314:132:0;43464:10;43475:5;43464:17;;;;;;;;:::i;:::-;;;;;;;;;43457:24;;43169:320;;;:::o;65207:654::-;65333:17;65468:23;;;:13;:23;;;;;;;;;65402:100;;-1:-1:-1;;;;;13240:32:1;;;65402:100:0;;;13222:51:1;13289:18;;;13282:34;;;13332:18;;;;13325:34;;;;65402:100:0;;;;;;;;;;13195:18:1;;;65402:100:0;;65599:13;;-1:-1:-1;;;65573:40:0;;;12193:51:1;12260:11;;;;12253:27;;;;65573:40:0;;;;;;;;;;12296:12:1;;;;65573:40:0;;65646:17;;65738;;;;;:7;:17;;;;;;65722:34;;65333:17;;65402:100;;65532:1;;65646:17;;:30;;65738:17;;65722:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61326:2;61317:12;61311:19;;61156:192;65722:34;65775:7;65801:5;65825:13;65646:207;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65626:227;;;;;;;65207:654;;;;;;:::o;26014:326::-;26131:7;26172:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26172:16:0;26221:19;26199:110;;;;-1:-1:-1;;;26199:110:0;;20345:2:1;26199:110:0;;;20327:21:1;20384:2;20364:18;;;20357:30;20423:34;20403:18;;;20396:62;-1:-1:-1;;;20474:18:1;;;20467:39;20523:19;;26199:110:0;20143:405:1;25657:295:0;25774:7;-1:-1:-1;;;;;25821:19:0;;25799:111;;;;-1:-1:-1;;;25799:111:0;;19934:2:1;25799:111:0;;;19916:21:1;19973:2;19953:18;;;19946:30;20012:34;19992:18;;;19985:62;-1:-1:-1;;;20063:18:1;;;20056:40;20113:19;;25799:111:0;19732:406:1;25799:111:0;-1:-1:-1;;;;;;25928:16:0;;;;;:9;:16;;;;;;;25657:295::o;50301:103::-;49723:6;;-1:-1:-1;;;;;49723:6:0;20547:10;49870:23;49862:68;;;;-1:-1:-1;;;49862:68:0;;;;;;;:::i;:::-;50366:30:::1;50393:1;50366:18;:30::i;:::-;50301:103::o:0;61044:104::-;49723:6;;-1:-1:-1;;;;;49723:6:0;20547:10;49870:23;49862:68;;;;-1:-1:-1;;;49862:68:0;;;;;;;:::i;:::-;61117:13:::1;:23:::0;61044:104::o;62458:213::-;49723:6;;-1:-1:-1;;;;;49723:6:0;20547:10;49870:23;49862:68;;;;-1:-1:-1;;;49862:68:0;;;;;;;:::i;:::-;62528:21:::1;62511:14;62581:7;49723:6:::0;;-1:-1:-1;;;;;49723:6:0;;49650:87;62581:7:::1;-1:-1:-1::0;;;;;62581:12:0::1;62601:6;62581:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62562:50;;;62631:7;62623:40;;;::::0;-1:-1:-1;;;62623:40:0;;17638:2:1;62623:40:0::1;::::0;::::1;17620:21:1::0;17677:2;17657:18;;;17650:30;-1:-1:-1;;;17696:18:1;;;17689:50;17756:18;;62623:40:0::1;17436:344:1::0;62623:40:0::1;62500:171;;62458:213::o:0;59721:177::-;49723:6;;-1:-1:-1;;;;;49723:6:0;20547:10;49870:23;49862:68;;;;-1:-1:-1;;;49862:68:0;;;;;;;:::i;:::-;59832:17:::1;:58:::0;;-1:-1:-1;;;;;;59832:58:0::1;-1:-1:-1::0;;;;;59832:58:0;;;::::1;::::0;;;::::1;::::0;;59721:177::o;26576:104::-;26632:13;26665:7;26658:14;;;;;:::i;59627:39::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28480:187::-;28607:52;20547:10;28640:8;28650;28607:18;:52::i;29722:365::-;29911:41;20547:10;29944:7;29911:18;:41::i;:::-;29889:140;;;;-1:-1:-1;;;29889:140:0;;;;;;;:::i;:::-;30040:39;30054:4;30060:2;30064:7;30073:5;30040:13;:39::i;:::-;29722:365;;;;:::o;64361:838::-;20547:10;64557:17;64565:8;64557:7;:17::i;:::-;-1:-1:-1;;;;;64557:33:0;;64549:65;;;;-1:-1:-1;;;64549:65:0;;22708:2:1;64549:65:0;;;22690:21:1;22747:2;22727:18;;;22720:30;-1:-1:-1;;;22766:18:1;;;22759:49;22825:18;;64549:65:0;22506:343:1;64549:65:0;64633:17;;;64660:1;64633:17;;;:7;:17;;;;;:24;;;;;:::i;:::-;;;:28;64625:62;;;;-1:-1:-1;;;64625:62:0;;19159:2:1;64625:62:0;;;19141:21:1;19198:2;19178:18;;;19171:30;-1:-1:-1;;;19217:18:1;;;19210:51;19278:18;;64625:62:0;18957:345:1;64625:62:0;64700:15;64706:8;64700:5;:15::i;:::-;64728:20;64817:23;;;:13;:23;;;;;;;;;;64751:100;;-1:-1:-1;;;;;13240:32:1;;;64751:100:0;;;13222:51:1;13289:18;;;13282:34;;;13332:18;;;;13325:34;;;;64751:100:0;;;;;;;;;;13195:18:1;;;64751:100:0;;;64864:27;;;;64904:17;;64982;;;;;:7;:17;;;;;;-1:-1:-1;;;64904:218:0;;;64751:100;;64904:17;;;;;:22;;64934:9;;64904:218;;64982:17;;64751:100;;65044:10;;65097:14;;64904:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65182:8;65140:51;;65172:8;65158:12;20547:10;;20467:98;65158:12;-1:-1:-1;;;;;65140:51:0;;;;;;;;;;;64538:661;64361:838;;;;:::o;26751:468::-;31699:4;31723:16;;;:7;:16;;;;;;26869:13;;-1:-1:-1;;;;;31723:16:0;26900:113;;;;-1:-1:-1;;;26900:113:0;;21890:2:1;26900:113:0;;;21872:21:1;21929:2;21909:18;;;21902:30;21968:34;21948:18;;;21941:62;-1:-1:-1;;;22019:18:1;;;22012:45;22074:19;;26900:113:0;21688:411:1;26900:113:0;27026:21;27050:10;:8;:10::i;:::-;27026:34;;27115:1;27097:7;27091:21;:25;:120;;;;;;;;;;;;;;;;;27160:7;27169:18;:7;:16;:18::i;:::-;27143:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27091:120;27071:140;26751:468;-1:-1:-1;;;26751:468:0:o;60170:363::-;49723:6;;-1:-1:-1;;;;;49723:6:0;20547:10;49870:23;49862:68;;;;-1:-1:-1;;;49862:68:0;;;;;;;:::i;:::-;60354:17:::1;::::0;60396:47:::1;::::0;-1:-1:-1;;;60396:47:0;;60437:4:::1;60396:47;::::0;::::1;12465:51:1::0;-1:-1:-1;;;;;60354:17:0;;::::1;::::0;:27:::1;::::0;:17;;60396:32:::1;::::0;12438:18:1;;60396:47:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60458:8;60481:11;60507:7;;60354:171;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;60170:363:::0;;;;;:::o;61517:112::-;;;;;;;;;;;;;;;;;;;:::o;59906:256::-;49723:6;;-1:-1:-1;;;;;49723:6:0;20547:10;49870:23;49862:68;;;;-1:-1:-1;;;49862:68:0;;;;;;;:::i;:::-;60047:9:::1;60042:113;60062:19:::0;;::::1;60042:113;;;60126:14;;60141:1;60126:17;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;60103:7;:20;60111:8;;60120:1;60111:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;60103:20;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;60103:20:0;:40:::1;::::0;:20;;:40:::1;:::i;:::-;-1:-1:-1::0;60083:3:0;::::1;::::0;::::1;:::i;:::-;;;;60042:113;;50559:238:::0;49723:6;;-1:-1:-1;;;;;49723:6:0;20547:10;49870:23;49862:68;;;;-1:-1:-1;;;49862:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50662:22:0;::::1;50640:110;;;::::0;-1:-1:-1;;;50640:110:0;;15628:2:1;50640:110:0::1;::::0;::::1;15610:21:1::0;15667:2;15647:18;;;15640:30;15706:34;15686:18;;;15679:62;-1:-1:-1;;;15757:18:1;;;15750:36;15803:19;;50640:110:0::1;15426:402:1::0;50640:110:0::1;50761:28;50780:8;50761:18;:28::i;32722:110::-:0;32798:26;32808:2;32812:7;32798:26;;;;;;;;;;;;:9;:26::i;42176:300::-;42323:4;-1:-1:-1;;;;;;42365:50:0;;-1:-1:-1;;;42365:50:0;;:103;;;42432:36;42456:11;42432:23;:36::i;35921:174::-;35996:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35996:29:0;-1:-1:-1;;;;;35996:29:0;;;;;;;;:24;;36050:23;35996:24;36050:14;:23::i;:::-;-1:-1:-1;;;;;36041:46:0;;;;;;;;;;;35921:174;;:::o;31928:452::-;32057:4;31723:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31723:16:0;32079:110;;;;-1:-1:-1;;;32079:110:0;;18746:2:1;32079:110:0;;;18728:21:1;18785:2;18765:18;;;18758:30;18824:34;18804:18;;;18797:62;-1:-1:-1;;;18875:18:1;;;18868:42;18927:19;;32079:110:0;18544:408:1;32079:110:0;32200:13;32216:23;32231:7;32216:14;:23::i;:::-;32200:39;;32269:5;-1:-1:-1;;;;;32258:16:0;:7;-1:-1:-1;;;;;32258:16:0;;:64;;;;32315:7;-1:-1:-1;;;;;32291:31:0;:20;32303:7;32291:11;:20::i;:::-;-1:-1:-1;;;;;32291:31:0;;32258:64;:113;;;-1:-1:-1;;;;;;28909:25:0;;;28880:4;28909:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32339:32;32250:122;31928:452;-1:-1:-1;;;;31928:452:0:o;35141:662::-;35314:4;-1:-1:-1;;;;;35287:31:0;:23;35302:7;35287:14;:23::i;:::-;-1:-1:-1;;;;;35287:31:0;;35265:118;;;;-1:-1:-1;;;35265:118:0;;16035:2:1;35265:118:0;;;16017:21:1;16074:2;16054:18;;;16047:30;16113:34;16093:18;;;16086:62;-1:-1:-1;;;16164:18:1;;;16157:35;16209:19;;35265:118:0;15833:401:1;35265:118:0;-1:-1:-1;;;;;35402:16:0;;35394:65;;;;-1:-1:-1;;;35394:65:0;;17987:2:1;35394:65:0;;;17969:21:1;18026:2;18006:18;;;17999:30;18065:34;18045:18;;;18038:62;-1:-1:-1;;;18116:18:1;;;18109:34;18160:19;;35394:65:0;17785:400:1;35394:65:0;35472:39;35493:4;35499:2;35503:7;35472:20;:39::i;:::-;35576:29;35593:1;35597:7;35576:8;:29::i;:::-;-1:-1:-1;;;;;35618:15:0;;;;;;:9;:15;;;;;:20;;35637:1;;35618:15;:20;;35637:1;;35618:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35649:13:0;;;;;;:9;:13;;;;;:18;;35666:1;;35649:13;:18;;35666:1;;35649:18;:::i;:::-;;;;-1:-1:-1;;35678:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35678:21:0;-1:-1:-1;;;;;35678:21:0;;;;;;;;;35717:27;;35678:16;;35717:27;;;;;;;27693:341;27623:411;;:::o;34384:420::-;34444:13;34460:23;34475:7;34460:14;:23::i;:::-;34444:39;;34496:48;34517:5;34532:1;34536:7;34496:20;:48::i;:::-;34585:29;34602:1;34606:7;34585:8;:29::i;:::-;-1:-1:-1;;;;;34627:16:0;;;;;;:9;:16;;;;;:21;;34647:1;;34627:16;:21;;34647:1;;34627:21;:::i;:::-;;;;-1:-1:-1;;34666:16:0;;;;:7;:16;;;;;;34659:23;;-1:-1:-1;;;;;;34659:23:0;;;34700:36;34674:7;;34666:16;-1:-1:-1;;;;;34700:36:0;;;;;34666:16;;34700:36;62500:171:::1;;62458:213::o:0;50957:191::-;51050:6;;;-1:-1:-1;;;;;51067:17:0;;;-1:-1:-1;;;;;;51067:17:0;;;;;;;51100:40;;51050:6;;;51067:17;51050:6;;51100:40;;51031:16;;51100:40;51020:128;50957:191;:::o;36237:315::-;36392:8;-1:-1:-1;;;;;36383:17:0;:5;-1:-1:-1;;;;;36383:17:0;;;36375:55;;;;-1:-1:-1;;;36375:55:0;;18392:2:1;36375:55:0;;;18374:21:1;18431:2;18411:18;;;18404:30;18470:27;18450:18;;;18443:55;18515:18;;36375:55:0;18190:349:1;36375:55:0;-1:-1:-1;;;;;36441:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36441:46:0;;;;;;;;;;36503:41;;13510::1;;;36503::0;;13483:18:1;36503:41:0;;;;;;;36237:315;;;:::o;30969:352::-;31126:28;31136:4;31142:2;31146:7;31126:9;:28::i;:::-;31187:48;31210:4;31216:2;31220:7;31229:5;31187:22;:48::i;:::-;31165:148;;;;-1:-1:-1;;;31165:148:0;;;;;;;:::i;65869:101::-;65921:13;65954:8;;;;;;;;;;;;;;;;;65947:15;;65869:101;:::o;21023:723::-;21079:13;21300:10;21296:53;;-1:-1:-1;;21327:10:0;;;;;;;;;;;;-1:-1:-1;;;21327:10:0;;;;;21023:723::o;21296:53::-;21374:5;21359:12;21415:78;21422:9;;21415:78;;21448:8;;;;:::i;:::-;;-1:-1:-1;21471:10:0;;-1:-1:-1;21479:2:0;21471:10;;:::i;:::-;;;21415:78;;;21503:19;21535:6;21525:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21525:17:0;;21503:39;;21553:154;21560:10;;21553:154;;21587:11;21597:1;21587:11;;:::i;:::-;;-1:-1:-1;21656:10:0;21664:2;21656:5;:10;:::i;:::-;21643:24;;:2;:24;:::i;:::-;21630:39;;21613:6;21620;21613:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21613:56:0;;;;;;;;-1:-1:-1;21684:11:0;21693:2;21684:11;;:::i;:::-;;;21553:154;;33059:321;33189:18;33195:2;33199:7;33189:5;:18::i;:::-;33240:54;33271:1;33275:2;33279:7;33288:5;33240:22;:54::i;:::-;33218:154;;;;-1:-1:-1;;;33218:154:0;;;;;;;:::i;25238:355::-;25385:4;-1:-1:-1;;;;;;25427:40:0;;-1:-1:-1;;;25427:40:0;;:105;;-1:-1:-1;;;;;;;25484:48:0;;-1:-1:-1;;;25484:48:0;25427:105;:158;;;-1:-1:-1;;;;;;;;;;23813:40:0;;;25549:36;23654:207;66008:223;66178:45;66205:4;66211:2;66215:7;66178:26;:45::i;37117:980::-;37272:4;-1:-1:-1;;;;;37293:13:0;;12369:19;:23;37289:801;;37346:175;;-1:-1:-1;;;37346:175:0;;-1:-1:-1;;;;;37346:36:0;;;;;:175;;20547:10;;37440:4;;37467:7;;37497:5;;37346:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37346:175:0;;;;;;;;-1:-1:-1;;37346:175:0;;;;;;;;;;;;:::i;:::-;;;37325:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37704:13:0;;37700:320;;37747:108;;-1:-1:-1;;;37747:108:0;;;;;;;:::i;37700:320::-;37970:6;37964:13;37955:6;37951:2;37947:15;37940:38;37325:710;-1:-1:-1;;;;;;37585:51:0;-1:-1:-1;;;37585:51:0;;-1:-1:-1;37578:58:0;;37289:801;-1:-1:-1;38074:4:0;37117:980;;;;;;:::o;33716:439::-;-1:-1:-1;;;;;33796:16:0;;33788:61;;;;-1:-1:-1;;;33788:61:0;;20755:2:1;33788:61:0;;;20737:21:1;;;20774:18;;;20767:30;20833:34;20813:18;;;20806:62;20885:18;;33788:61:0;20553:356:1;33788:61:0;31699:4;31723:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31723:16:0;:30;33860:58;;;;-1:-1:-1;;;33860:58:0;;16441:2:1;33860:58:0;;;16423:21:1;16480:2;16460:18;;;16453:30;16519;16499:18;;;16492:58;16567:18;;33860:58:0;16239:352:1;33860:58:0;33931:45;33960:1;33964:2;33968:7;33931:20;:45::i;:::-;-1:-1:-1;;;;;33989:13:0;;;;;;:9;:13;;;;;:18;;34006:1;;33989:13;:18;;34006:1;;33989:18;:::i;:::-;;;;-1:-1:-1;;34018:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34018:21:0;-1:-1:-1;;;;;34018:21:0;;;;;;;;34057:33;;34018:16;;;34057:33;;34018:16;;34057:33;62500:171:::1;;62458:213::o:0;44102:589::-;-1:-1:-1;;;;;44308:18:0;;44304:187;;44343:40;44375:7;45518:10;:17;;45491:24;;;;:15;:24;;;;;:44;;;45546:24;;;;;;;;;;;;45414:164;44343:40;44304:187;;;44413:2;-1:-1:-1;;;;;44405:10:0;:4;-1:-1:-1;;;;;44405:10:0;;44401:90;;44432:47;44465:4;44471:7;44432:32;:47::i;:::-;-1:-1:-1;;;;;44505:16:0;;44501:183;;44538:45;44575:7;44538:36;:45::i;44501:183::-;44611:4;-1:-1:-1;;;;;44605:10:0;:2;-1:-1:-1;;;;;44605:10:0;;44601:83;;44632:40;44660:2;44664:7;44632:27;:40::i;46205:1002::-;46485:22;46535:1;46510:22;46527:4;46510:16;:22::i;:::-;:26;;;;:::i;:::-;46547:18;46568:26;;;:17;:26;;;;;;46485:51;;-1:-1:-1;46701:28:0;;;46697:328;;-1:-1:-1;;;;;46768:18:0;;46746:19;46768:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46819:30;;;;;;:44;;;46936:30;;:17;:30;;;;;:43;;;46697:328;-1:-1:-1;47121:26:0;;;;:17;:26;;;;;;;;47114:33;;;-1:-1:-1;;;;;47165:18:0;;;;;:12;:18;;;;;:34;;;;;;;47158:41;46205:1002::o;47502:1079::-;47780:10;:17;47755:22;;47780:21;;47800:1;;47780:21;:::i;:::-;47812:18;47833:24;;;:15;:24;;;;;;48206:10;:26;;47755:46;;-1:-1:-1;47833:24:0;;47755:46;;48206:26;;;;;;:::i;:::-;;;;;;;;;48184:48;;48270:11;48245:10;48256;48245:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48350:28;;;:15;:28;;;;;;;:41;;;48522:24;;;;;48515:31;48557:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47573:1008;;;47502:1079;:::o;44992:221::-;45077:14;45094:20;45111:2;45094:16;:20::i;:::-;-1:-1:-1;;;;;45125:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45170:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44992:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:374:1;84:8;94:6;148:3;141:4;133:6;129:17;125:27;115:55;;166:1;163;156:12;115:55;-1:-1:-1;189:20:1;;232:18;221:30;;218:50;;;264:1;261;254:12;218:50;301:4;293:6;289:17;277:29;;361:3;354:4;344:6;341:1;337:14;329:6;325:27;321:38;318:47;315:67;;;378:1;375;368:12;315:67;14:374;;;;;:::o;393:347::-;444:8;454:6;508:3;501:4;493:6;489:17;485:27;475:55;;526:1;523;516:12;475:55;-1:-1:-1;549:20:1;;592:18;581:30;;578:50;;;624:1;621;614:12;578:50;661:4;653:6;649:17;637:29;;713:3;706:4;697:6;689;685:19;681:30;678:39;675:59;;;730:1;727;720:12;745:718;787:5;840:3;833:4;825:6;821:17;817:27;807:55;;858:1;855;848:12;807:55;894:6;881:20;920:18;957:2;953;950:10;947:36;;;963:18;;:::i;:::-;1038:2;1032:9;1006:2;1092:13;;-1:-1:-1;;1088:22:1;;;1112:2;1084:31;1080:40;1068:53;;;1136:18;;;1156:22;;;1133:46;1130:72;;;1182:18;;:::i;:::-;1222:10;1218:2;1211:22;1257:2;1249:6;1242:18;1303:3;1296:4;1291:2;1283:6;1279:15;1275:26;1272:35;1269:55;;;1320:1;1317;1310:12;1269:55;1384:2;1377:4;1369:6;1365:17;1358:4;1350:6;1346:17;1333:54;1431:1;1424:4;1419:2;1411:6;1407:15;1403:26;1396:37;1451:6;1442:15;;;;;;745:718;;;;:::o;1468:247::-;1527:6;1580:2;1568:9;1559:7;1555:23;1551:32;1548:52;;;1596:1;1593;1586:12;1548:52;1635:9;1622:23;1654:31;1679:5;1654:31;:::i;1720:381::-;1816:6;1824;1832;1885:2;1873:9;1864:7;1860:23;1856:32;1853:52;;;1901:1;1898;1891:12;1853:52;1933:9;1927:16;1952:31;1977:5;1952:31;:::i;:::-;2047:2;2032:18;;2026:25;2091:2;2076:18;;;2070:25;2002:5;;2026:25;;-1:-1:-1;2070:25:1;1720:381;-1:-1:-1;;;1720:381:1:o;2106:388::-;2174:6;2182;2235:2;2223:9;2214:7;2210:23;2206:32;2203:52;;;2251:1;2248;2241:12;2203:52;2290:9;2277:23;2309:31;2334:5;2309:31;:::i;:::-;2359:5;-1:-1:-1;2416:2:1;2401:18;;2388:32;2429:33;2388:32;2429:33;:::i;:::-;2481:7;2471:17;;;2106:388;;;;;:::o;2499:456::-;2576:6;2584;2592;2645:2;2633:9;2624:7;2620:23;2616:32;2613:52;;;2661:1;2658;2651:12;2613:52;2700:9;2687:23;2719:31;2744:5;2719:31;:::i;:::-;2769:5;-1:-1:-1;2826:2:1;2811:18;;2798:32;2839:33;2798:32;2839:33;:::i;:::-;2499:456;;2891:7;;-1:-1:-1;;;2945:2:1;2930:18;;;;2917:32;;2499:456::o;2960:665::-;3055:6;3063;3071;3079;3132:3;3120:9;3111:7;3107:23;3103:33;3100:53;;;3149:1;3146;3139:12;3100:53;3188:9;3175:23;3207:31;3232:5;3207:31;:::i;:::-;3257:5;-1:-1:-1;3314:2:1;3299:18;;3286:32;3327:33;3286:32;3327:33;:::i;:::-;3379:7;-1:-1:-1;3433:2:1;3418:18;;3405:32;;-1:-1:-1;3488:2:1;3473:18;;3460:32;3515:18;3504:30;;3501:50;;;3547:1;3544;3537:12;3501:50;3570:49;3611:7;3602:6;3591:9;3587:22;3570:49;:::i;:::-;3560:59;;;2960:665;;;;;;;:::o;3630:416::-;3695:6;3703;3756:2;3744:9;3735:7;3731:23;3727:32;3724:52;;;3772:1;3769;3762:12;3724:52;3811:9;3798:23;3830:31;3855:5;3830:31;:::i;:::-;3880:5;-1:-1:-1;3937:2:1;3922:18;;3909:32;3979:15;;3972:23;3960:36;;3950:64;;4010:1;4007;4000:12;4051:315;4119:6;4127;4180:2;4168:9;4159:7;4155:23;4151:32;4148:52;;;4196:1;4193;4186:12;4148:52;4235:9;4222:23;4254:31;4279:5;4254:31;:::i;:::-;4304:5;4356:2;4341:18;;;;4328:32;;-1:-1:-1;;;4051:315:1:o;4371:797::-;4503:6;4511;4519;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4636:9;4623:23;4665:18;4706:2;4698:6;4695:14;4692:34;;;4722:1;4719;4712:12;4692:34;4761:77;4830:7;4821:6;4810:9;4806:22;4761:77;:::i;:::-;4857:8;;-1:-1:-1;4735:103:1;-1:-1:-1;4945:2:1;4930:18;;4917:32;;-1:-1:-1;4961:16:1;;;4958:36;;;4990:1;4987;4980:12;4958:36;;5029:79;5100:7;5089:8;5078:9;5074:24;5029:79;:::i;:::-;4371:797;;;;-1:-1:-1;5127:8:1;-1:-1:-1;;;;4371:797:1:o;5173:245::-;5231:6;5284:2;5272:9;5263:7;5259:23;5255:32;5252:52;;;5300:1;5297;5290:12;5252:52;5339:9;5326:23;5358:30;5382:5;5358:30;:::i;5423:249::-;5492:6;5545:2;5533:9;5524:7;5520:23;5516:32;5513:52;;;5561:1;5558;5551:12;5513:52;5593:9;5587:16;5612:30;5636:5;5612:30;:::i;5677:245::-;5735:6;5788:2;5776:9;5767:7;5763:23;5759:32;5756:52;;;5804:1;5801;5794:12;5756:52;5843:9;5830:23;5862:30;5886:5;5862:30;:::i;5927:249::-;5996:6;6049:2;6037:9;6028:7;6024:23;6020:32;6017:52;;;6065:1;6062;6055:12;6017:52;6097:9;6091:16;6116:30;6140:5;6116:30;:::i;6181:542::-;6259:6;6267;6275;6328:2;6316:9;6307:7;6303:23;6299:32;6296:52;;;6344:1;6341;6334:12;6296:52;6383:9;6370:23;6402:30;6426:5;6402:30;:::i;:::-;6451:5;-1:-1:-1;6507:2:1;6492:18;;6479:32;6534:18;6523:30;;6520:50;;;6566:1;6563;6556:12;6520:50;6605:58;6655:7;6646:6;6635:9;6631:22;6605:58;:::i;:::-;6181:542;;6682:8;;-1:-1:-1;6579:84:1;;-1:-1:-1;;;;6181:542:1:o;6728:837::-;6830:6;6838;6846;6854;6907:3;6895:9;6886:7;6882:23;6878:33;6875:53;;;6924:1;6921;6914:12;6875:53;6963:9;6950:23;6982:30;7006:5;6982:30;:::i;:::-;7031:5;-1:-1:-1;7087:2:1;7072:18;;7059:32;7110:18;7140:14;;;7137:34;;;7167:1;7164;7157:12;7137:34;7190:49;7231:7;7222:6;7211:9;7207:22;7190:49;:::i;:::-;7180:59;;7291:2;7280:9;7276:18;7263:32;7248:47;;7339:2;7330:7;7326:16;7317:7;7314:29;7304:57;;7357:1;7354;7347:12;7304:57;7380:7;;-1:-1:-1;7440:2:1;7425:18;;7412:32;;7456:16;;;7453:36;;;7485:1;7482;7475:12;7453:36;;7508:51;7551:7;7540:8;7529:9;7525:24;7508:51;:::i;7570:750::-;7665:6;7673;7681;7689;7697;7750:3;7738:9;7729:7;7725:23;7721:33;7718:53;;;7767:1;7764;7757:12;7718:53;7806:9;7793:23;7825:30;7849:5;7825:30;:::i;:::-;7874:5;-1:-1:-1;7931:2:1;7916:18;;7903:32;7944;7903;7944;:::i;:::-;7995:7;-1:-1:-1;8049:2:1;8034:18;;8021:32;;-1:-1:-1;8104:2:1;8089:18;;8076:32;8131:18;8120:30;;8117:50;;;8163:1;8160;8153:12;8117:50;8202:58;8252:7;8243:6;8232:9;8228:22;8202:58;:::i;:::-;7570:750;;;;-1:-1:-1;7570:750:1;;-1:-1:-1;8279:8:1;;8176:84;7570:750;-1:-1:-1;;;7570:750:1:o;8325:180::-;8384:6;8437:2;8425:9;8416:7;8412:23;8408:32;8405:52;;;8453:1;8450;8443:12;8405:52;-1:-1:-1;8476:23:1;;8325:180;-1:-1:-1;8325:180:1:o;8510:454::-;8586:6;8594;8602;8655:2;8643:9;8634:7;8630:23;8626:32;8623:52;;;8671:1;8668;8661:12;8623:52;8707:9;8694:23;8684:33;;8767:2;8756:9;8752:18;8739:32;8780:31;8805:5;8780:31;:::i;:::-;8830:5;-1:-1:-1;8887:2:1;8872:18;;8859:32;8900;8859;8900;:::i;:::-;8951:7;8941:17;;;8510:454;;;;;:::o;8969:663::-;9063:6;9071;9079;9087;9140:3;9128:9;9119:7;9115:23;9111:33;9108:53;;;9157:1;9154;9147:12;9108:53;9193:9;9180:23;9170:33;;9253:2;9242:9;9238:18;9225:32;9266:31;9291:5;9266:31;:::i;:::-;9316:5;-1:-1:-1;9373:2:1;9358:18;;9345:32;9386;9345;9386;:::i;:::-;9437:7;-1:-1:-1;9495:2:1;9480:18;;9467:32;9522:18;9511:30;;9508:50;;;9554:1;9551;9544:12;9637:245;9716:6;9724;9777:2;9765:9;9756:7;9752:23;9748:32;9745:52;;;9793:1;9790;9783:12;9745:52;-1:-1:-1;;9816:16:1;;9872:2;9857:18;;;9851:25;9816:16;;9851:25;;-1:-1:-1;9637:245:1:o;10004:266::-;10092:6;10087:3;10080:19;10144:6;10137:5;10130:4;10125:3;10121:14;10108:43;-1:-1:-1;10196:1:1;10171:16;;;10189:4;10167:27;;;10160:38;;;;10252:2;10231:15;;;-1:-1:-1;;10227:29:1;10218:39;;;10214:50;;10004:266::o;10275:257::-;10316:3;10354:5;10348:12;10381:6;10376:3;10369:19;10397:63;10453:6;10446:4;10441:3;10437:14;10430:4;10423:5;10419:16;10397:63;:::i;:::-;10514:2;10493:15;-1:-1:-1;;10489:29:1;10480:39;;;;10521:4;10476:50;;10275:257;-1:-1:-1;;10275:257:1:o;10537:811::-;10663:3;10692:1;10725:6;10719:13;10755:36;10781:9;10755:36;:::i;:::-;10810:1;10827:18;;;10854:104;;;;10972:1;10967:356;;;;10820:503;;10854:104;-1:-1:-1;;10887:24:1;;10875:37;;10932:16;;;;-1:-1:-1;10854:104:1;;10967:356;10998:6;10995:1;10988:17;11028:4;11073:2;11070:1;11060:16;11098:1;11112:165;11126:6;11123:1;11120:13;11112:165;;;11204:14;;11191:11;;;11184:35;11247:16;;;;11141:10;;11112:165;;;11116:3;;;11306:6;11301:3;11297:16;11290:23;;10820:503;-1:-1:-1;11339:3:1;;10537:811;-1:-1:-1;;;;;;10537:811:1:o;11353:470::-;11532:3;11570:6;11564:13;11586:53;11632:6;11627:3;11620:4;11612:6;11608:17;11586:53;:::i;:::-;11702:13;;11661:16;;;;11724:57;11702:13;11661:16;11758:4;11746:17;;11724:57;:::i;:::-;11797:20;;11353:470;-1:-1:-1;;;;11353:470:1:o;12527:488::-;-1:-1:-1;;;;;12796:15:1;;;12778:34;;12848:15;;12843:2;12828:18;;12821:43;12895:2;12880:18;;12873:34;;;12943:3;12938:2;12923:18;;12916:31;;;12721:4;;12964:45;;12989:19;;12981:6;12964:45;:::i;:::-;12956:53;12527:488;-1:-1:-1;;;;;;12527:488:1:o;13562:217::-;13709:2;13698:9;13691:21;13672:4;13729:44;13769:2;13758:9;13754:18;13746:6;13729:44;:::i;15007:414::-;15209:2;15191:21;;;15248:2;15228:18;;;15221:30;15287:34;15282:2;15267:18;;15260:62;-1:-1:-1;;;15353:2:1;15338:18;;15331:48;15411:3;15396:19;;15007:414::o;21327:356::-;21529:2;21511:21;;;21548:18;;;21541:30;21607:34;21602:2;21587:18;;21580:62;21674:2;21659:18;;21327:356::o;22854:413::-;23056:2;23038:21;;;23095:2;23075:18;;;23068:30;23134:34;23129:2;23114:18;;23107:62;-1:-1:-1;;;23200:2:1;23185:18;;23178:47;23257:3;23242:19;;22854:413::o;24295:640::-;24576:6;24564:19;;24546:38;;-1:-1:-1;;;;;24620:32:1;;24615:2;24600:18;;24593:60;24640:3;24684:2;24669:18;;24662:31;;;-1:-1:-1;;24716:45:1;;24741:19;;24733:6;24716:45;:::i;:::-;24811:6;24804:14;24797:22;24792:2;24781:9;24777:18;24770:50;24869:9;24861:6;24857:22;24851:3;24840:9;24836:19;24829:51;24897:32;24922:6;24914;24897:32;:::i;:::-;24889:40;24295:640;-1:-1:-1;;;;;;;;24295:640:1:o;24940:326::-;25135:6;25127;25123:19;25112:9;25105:38;25179:2;25174;25163:9;25159:18;25152:30;25086:4;25199:61;25256:2;25245:9;25241:18;25233:6;25225;25199:61;:::i;:::-;25191:69;24940:326;-1:-1:-1;;;;;24940:326:1:o;25271:1498::-;25617:6;25609;25605:19;25594:9;25587:38;25568:4;25644:2;25682:3;25677:2;25666:9;25662:18;25655:31;25706:1;25739:6;25733:13;25769:36;25795:9;25769:36;:::i;:::-;25842:6;25836:3;25825:9;25821:19;25814:35;25868:3;25890:1;25922:2;25911:9;25907:18;25939:1;25934:122;;;;26070:1;26065:354;;;;25900:519;;25934:122;-1:-1:-1;;25982:24:1;;25962:18;;;25955:52;26042:3;26027:19;;;-1:-1:-1;25934:122:1;;26065:354;26096:6;26093:1;26086:17;26144:2;26141:1;26131:16;26169:1;26183:180;26197:6;26194:1;26191:13;26183:180;;;26290:14;;26266:17;;;26262:26;;26255:50;26333:16;;;;26212:10;;26183:180;;;26387:17;;26383:26;;;-1:-1:-1;;25900:519:1;;;;;;26464:9;26459:3;26455:19;26450:2;26439:9;26435:18;26428:47;26498:29;26523:3;26515:6;26498:29;:::i;:::-;26484:43;;;26536:54;26586:2;26575:9;26571:18;26563:6;-1:-1:-1;;;;;9961:31:1;9949:44;;9887:112;26536:54;-1:-1:-1;;;;;9961:31:1;;26649:3;26634:19;;9949:44;26703:9;26695:6;26691:22;26685:3;26674:9;26670:19;26663:51;26731:32;26756:6;26748;26731:32;:::i;:::-;26723:40;25271:1498;-1:-1:-1;;;;;;;;;25271:1498:1:o;26774:498::-;26974:4;27003:6;27048:2;27040:6;27036:15;27025:9;27018:34;27100:2;27092:6;27088:15;27083:2;27072:9;27068:18;27061:43;;27140:6;27135:2;27124:9;27120:18;27113:34;27183:3;27178:2;27167:9;27163:18;27156:31;27204:62;27261:3;27250:9;27246:19;27238:6;27230;27204:62;:::i;:::-;27196:70;26774:498;-1:-1:-1;;;;;;;26774:498:1:o;27712:521::-;27789:4;27795:6;27855:11;27842:25;27949:2;27945:7;27934:8;27918:14;27914:29;27910:43;27890:18;27886:68;27876:96;;27968:1;27965;27958:12;27876:96;27995:33;;28047:20;;;-1:-1:-1;28090:18:1;28079:30;;28076:50;;;28122:1;28119;28112:12;28076:50;28155:4;28143:17;;-1:-1:-1;28186:14:1;28182:27;;;28172:38;;28169:58;;;28223:1;28220;28213:12;28238:128;28278:3;28309:1;28305:6;28302:1;28299:13;28296:39;;;28315:18;;:::i;:::-;-1:-1:-1;28351:9:1;;28238:128::o;28371:120::-;28411:1;28437;28427:35;;28442:18;;:::i;:::-;-1:-1:-1;28476:9:1;;28371:120::o;28496:125::-;28536:4;28564:1;28561;28558:8;28555:34;;;28569:18;;:::i;:::-;-1:-1:-1;28606:9:1;;28496:125::o;28626:258::-;28698:1;28708:113;28722:6;28719:1;28716:13;28708:113;;;28798:11;;;28792:18;28779:11;;;28772:39;28744:2;28737:10;28708:113;;;28839:6;28836:1;28833:13;28830:48;;;-1:-1:-1;;28874:1:1;28856:16;;28849:27;28626:258::o;28889:380::-;28968:1;28964:12;;;;29011;;;29032:61;;29086:4;29078:6;29074:17;29064:27;;29032:61;29139:2;29131:6;29128:14;29108:18;29105:38;29102:161;;;29185:10;29180:3;29176:20;29173:1;29166:31;29220:4;29217:1;29210:15;29248:4;29245:1;29238:15;29102:161;;28889:380;;;:::o;29274:197::-;29312:3;29340:6;29381:2;29374:5;29370:14;29408:2;29399:7;29396:15;29393:41;;;29414:18;;:::i;:::-;29463:1;29450:15;;29274:197;-1:-1:-1;;;29274:197:1:o;29476:135::-;29515:3;-1:-1:-1;;29536:17:1;;29533:43;;;29556:18;;:::i;:::-;-1:-1:-1;29603:1:1;29592:13;;29476:135::o;29616:112::-;29648:1;29674;29664:35;;29679:18;;:::i;:::-;-1:-1:-1;29713:9:1;;29616:112::o;29733:127::-;29794:10;29789:3;29785:20;29782:1;29775:31;29825:4;29822:1;29815:15;29849:4;29846:1;29839:15;29865:127;29926:10;29921:3;29917:20;29914:1;29907:31;29957:4;29954:1;29947:15;29981:4;29978:1;29971:15;29997:127;30058:10;30053:3;30049:20;30046:1;30039:31;30089:4;30086:1;30079:15;30113:4;30110:1;30103:15;30129:127;30190:10;30185:3;30181:20;30178:1;30171:31;30221:4;30218:1;30211:15;30245:4;30242:1;30235:15;30261:127;30322:10;30317:3;30313:20;30310:1;30303:31;30353:4;30350:1;30343:15;30377:4;30374:1;30367:15;30393:131;-1:-1:-1;;;;;30468:31:1;;30458:42;;30448:70;;30514:1;30511;30504:12;30529:131;-1:-1:-1;;;;;;30603:32:1;;30593:43;;30583:71;;30650:1;30647;30640:12;30665:117;30750:6;30743:5;30739:18;30732:5;30729:29;30719:57;;30772:1;30769;30762:12

Swarm Source

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