ETH Price: $3,911.56 (-0.57%)

Token

CrossChainNFT (CCNFT)

Overview

Max Total Supply

0 CCNFT

Holders

5,520

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
CrossChainNFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 19 : CrossChainNFT.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import './interfaces/ILayerZeroEndpoint.sol';
import './interfaces/ILayerZeroReceiver.sol';
import './NonblockingLzApp.sol';

error NotTokenOwner();
error InsufficientGas();
error SupplyExceeded();

contract CrossChainNFT is Ownable, ERC721, NonblockingLzApp {
    uint256 public counter;
    uint256 public currentTokenId;
    uint256 public immutable MAX_ID;

    event ReceivedNFT(
        uint16 _srcChainId,
        address _from,
        uint256 _tokenId,
        uint256 counter
    );

    constructor(
        address _endpoint,
        uint256 _startTokenId
    ) ERC721('CrossChainNFT', 'CCNFT') NonblockingLzApp(_endpoint) {
        currentTokenId = _startTokenId;
        MAX_ID = currentTokenId + 99999;
    }

    function mint() external {
        if (currentTokenId == MAX_ID) revert SupplyExceeded();
        _mint(msg.sender, currentTokenId);
        unchecked {
            ++currentTokenId;
            ++counter;
        }
    }

    function crossChain(uint16 dstChainId, uint256 tokenId) public payable {
        if (msg.sender != ownerOf(tokenId)) revert NotTokenOwner();

        // Remove NFT on current chain
        unchecked {
            --counter;
        }
        _burn(tokenId);

        bytes memory payload = abi.encode(msg.sender, tokenId);
        uint16 version = 1;
        uint256 gasForLzReceive = 350000;
        bytes memory adapterParams = abi.encodePacked(version, gasForLzReceive);

        (uint256 messageFee, ) = lzEndpoint.estimateFees(
            dstChainId,
            address(this),
            payload,
            false,
            adapterParams
        );
        if (msg.value <= messageFee) revert InsufficientGas();

        _lzSend(
            dstChainId,
            payload,
            payable(msg.sender),
            address(0x0),
            adapterParams,
            msg.value
        );
    }

    function _nonblockingLzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 /*_nonce*/,
        bytes memory _payload
    ) internal override {
        address from;
        assembly {
            from := mload(add(_srcAddress, 20))
        }
        (address toAddress, uint256 tokenId) = abi.decode(
            _payload,
            (address, uint256)
        );

        _mint(toAddress, tokenId);
        unchecked {
            ++counter;
        }
        emit ReceivedNFT(_srcChainId, from, tokenId, counter);
    }

    // Endpoint.sol estimateFees() returns the fees for the message
    function estimateFees(
        uint16 dstChainId,
        uint256 tokenId
    ) external view returns (uint256) {
        bytes memory payload = abi.encode(msg.sender, tokenId);
        uint16 version = 1;
        uint256 gasForLzReceive = 350000;
        bytes memory adapterParams = abi.encodePacked(version, gasForLzReceive);

        (uint256 messageFee, ) = lzEndpoint.estimateFees(
            dstChainId,
            address(this),
            payload,
            false,
            adapterParams
        );
        return messageFee;
    }
}

File 2 of 19 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 3 of 19 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.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: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @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, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

File 4 of 19 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.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 5 of 19 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.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`.
     *
     * 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;

    /**
     * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

File 6 of 19 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 7 of 19 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 8 of 19 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 9 of 19 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.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 10 of 19 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 11 of 19 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 12 of 19 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 13 of 19 : ILayerZeroEndpoint.sol
// SPDX-License-Identifier: BUSL-1.1

pragma solidity >=0.5.0;

import "./ILayerZeroUserApplicationConfig.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,
        uint _gasLimit,
        bytes calldata _payload
    ) external;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 14 of 19 : ILayerZeroReceiver.sol
// SPDX-License-Identifier: BUSL-1.1

pragma solidity >=0.5.0;

interface ILayerZeroReceiver {
    // @notice LayerZero endpoint will invoke this function to deliver the message on the destination
    // @param _srcChainId - the source endpoint identifier
    // @param _srcAddress - the source sending contract address from the source chain
    // @param _nonce - the ordered message nonce
    // @param _payload - the signed payload is the UA bytes has encoded to be sent
    function lzReceive(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        uint64 _nonce,
        bytes calldata _payload
    ) external;
}

File 15 of 19 : ILayerZeroUserApplicationConfig.sol
// SPDX-License-Identifier: BUSL-1.1

pragma solidity >=0.5.0;

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

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

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

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

File 16 of 19 : LzApp.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/ILayerZeroReceiver.sol";
import "./interfaces/ILayerZeroUserApplicationConfig.sol";
import "./interfaces/ILayerZeroEndpoint.sol";
import "./utils/BytesLib.sol";

/*
 * a generic LzReceiver implementation
 */
abstract contract LzApp is
    Ownable,
    ILayerZeroReceiver,
    ILayerZeroUserApplicationConfig
{
    using BytesLib for bytes;

    // ua can not send payload larger than this by default, but it can be changed by the ua owner
    uint public constant DEFAULT_PAYLOAD_SIZE_LIMIT = 10000;

    ILayerZeroEndpoint public immutable lzEndpoint;
    mapping(uint16 => bytes) public trustedRemoteLookup;
    mapping(uint16 => mapping(uint16 => uint)) public minDstGasLookup;
    mapping(uint16 => uint) public payloadSizeLimitLookup;
    address public precrime;

    event SetPrecrime(address precrime);
    event SetTrustedRemote(uint16 _remoteChainId, bytes _path);
    event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress);
    event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint _minDstGas);

    constructor(address _endpoint) {
        lzEndpoint = ILayerZeroEndpoint(_endpoint);
    }

    function lzReceive(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        uint64 _nonce,
        bytes calldata _payload
    ) public virtual override {
        // lzReceive must be called by the endpoint for security
        require(
            _msgSender() == address(lzEndpoint),
            "LzApp: invalid endpoint caller"
        );

        bytes memory trustedRemote = trustedRemoteLookup[_srcChainId];
        // if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote.
        require(
            _srcAddress.length == trustedRemote.length &&
                trustedRemote.length > 0 &&
                keccak256(_srcAddress) == keccak256(trustedRemote),
            "LzApp: invalid source sending contract"
        );

        _blockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    // abstract function - the default behaviour of LayerZero is blocking. See: NonblockingLzApp if you dont need to enforce ordered messaging
    function _blockingLzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal virtual;

    function _lzSend(
        uint16 _dstChainId,
        bytes memory _payload,
        address payable _refundAddress,
        address _zroPaymentAddress,
        bytes memory _adapterParams,
        uint _nativeFee
    ) internal virtual {
        bytes memory trustedRemote = trustedRemoteLookup[_dstChainId];
        require(
            trustedRemote.length != 0,
            "LzApp: destination chain is not a trusted source"
        );
        _checkPayloadSize(_dstChainId, _payload.length);
        lzEndpoint.send{value: _nativeFee}(
            _dstChainId,
            trustedRemote,
            _payload,
            _refundAddress,
            _zroPaymentAddress,
            _adapterParams
        );
    }

    function _checkGasLimit(
        uint16 _dstChainId,
        uint16 _type,
        bytes memory _adapterParams,
        uint _extraGas
    ) internal view virtual {
        uint providedGasLimit = _getGasLimit(_adapterParams);
        uint minGasLimit = minDstGasLookup[_dstChainId][_type] + _extraGas;
        require(minGasLimit > 0, "LzApp: minGasLimit not set");
        require(providedGasLimit >= minGasLimit, "LzApp: gas limit is too low");
    }

    function _getGasLimit(
        bytes memory _adapterParams
    ) internal pure virtual returns (uint gasLimit) {
        require(_adapterParams.length >= 34, "LzApp: invalid adapterParams");
        assembly {
            gasLimit := mload(add(_adapterParams, 34))
        }
    }

    function _checkPayloadSize(
        uint16 _dstChainId,
        uint _payloadSize
    ) internal view virtual {
        uint payloadSizeLimit = payloadSizeLimitLookup[_dstChainId];
        if (payloadSizeLimit == 0) {
            // use default if not set
            payloadSizeLimit = DEFAULT_PAYLOAD_SIZE_LIMIT;
        }
        require(
            _payloadSize <= payloadSizeLimit,
            "LzApp: payload size is too large"
        );
    }

    //---------------------------UserApplication config----------------------------------------
    function getConfig(
        uint16 _version,
        uint16 _chainId,
        address,
        uint _configType
    ) external view returns (bytes memory) {
        return
            lzEndpoint.getConfig(
                _version,
                _chainId,
                address(this),
                _configType
            );
    }

    // generic config for LayerZero user Application
    function setConfig(
        uint16 _version,
        uint16 _chainId,
        uint _configType,
        bytes calldata _config
    ) external override onlyOwner {
        lzEndpoint.setConfig(_version, _chainId, _configType, _config);
    }

    function setSendVersion(uint16 _version) external override onlyOwner {
        lzEndpoint.setSendVersion(_version);
    }

    function setReceiveVersion(uint16 _version) external override onlyOwner {
        lzEndpoint.setReceiveVersion(_version);
    }

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

    // _path = abi.encodePacked(remoteAddress, localAddress)
    // this function set the trusted path for the cross-chain communication
    function setTrustedRemote(
        uint16 _srcChainId,
        bytes calldata _path
    ) external onlyOwner {
        trustedRemoteLookup[_srcChainId] = _path;
        emit SetTrustedRemote(_srcChainId, _path);
    }

    function setTrustedRemoteAddress(
        uint16 _remoteChainId,
        bytes calldata _remoteAddress
    ) external onlyOwner {
        trustedRemoteLookup[_remoteChainId] = abi.encodePacked(
            _remoteAddress,
            address(this)
        );
        emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress);
    }

    function getTrustedRemoteAddress(
        uint16 _remoteChainId
    ) external view returns (bytes memory) {
        bytes memory path = trustedRemoteLookup[_remoteChainId];
        require(path.length != 0, "LzApp: no trusted path record");
        return path.slice(0, path.length - 20); // the last 20 bytes should be address(this)
    }

    function setPrecrime(address _precrime) external onlyOwner {
        precrime = _precrime;
        emit SetPrecrime(_precrime);
    }

    function setMinDstGas(
        uint16 _dstChainId,
        uint16 _packetType,
        uint _minGas
    ) external onlyOwner {
        require(_minGas > 0, "LzApp: invalid minGas");
        minDstGasLookup[_dstChainId][_packetType] = _minGas;
        emit SetMinDstGas(_dstChainId, _packetType, _minGas);
    }

    // if the size is 0, it means default size limit
    function setPayloadSizeLimit(
        uint16 _dstChainId,
        uint _size
    ) external onlyOwner {
        payloadSizeLimitLookup[_dstChainId] = _size;
    }

    //--------------------------- VIEW FUNCTION ----------------------------------------
    function isTrustedRemote(
        uint16 _srcChainId,
        bytes calldata _srcAddress
    ) external view returns (bool) {
        bytes memory trustedSource = trustedRemoteLookup[_srcChainId];
        return keccak256(trustedSource) == keccak256(_srcAddress);
    }
}

File 17 of 19 : NonblockingLzApp.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./LzApp.sol";
import "./utils/ExcessivelySafeCall.sol";

/*
 * the default LayerZero messaging behaviour is blocking, i.e. any failed message will block the channel
 * this abstract class try-catch all fail messages and store locally for future retry. hence, non-blocking
 * NOTE: if the srcAddress is not configured properly, it will still block the message pathway from (srcChainId, srcAddress)
 */
abstract contract NonblockingLzApp is LzApp {
    using ExcessivelySafeCall for address;

    constructor(address _endpoint) LzApp(_endpoint) {}

    mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32)))
        public failedMessages;

    event MessageFailed(
        uint16 _srcChainId,
        bytes _srcAddress,
        uint64 _nonce,
        bytes _payload,
        bytes _reason
    );
    event RetryMessageSuccess(
        uint16 _srcChainId,
        bytes _srcAddress,
        uint64 _nonce,
        bytes32 _payloadHash
    );

    // overriding the virtual function in LzReceiver
    function _blockingLzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal virtual override {
        (bool success, bytes memory reason) = address(this).excessivelySafeCall(
            gasleft(),
            150,
            abi.encodeWithSelector(
                this.nonblockingLzReceive.selector,
                _srcChainId,
                _srcAddress,
                _nonce,
                _payload
            )
        );
        // try-catch all errors/exceptions
        if (!success) {
            _storeFailedMessage(
                _srcChainId,
                _srcAddress,
                _nonce,
                _payload,
                reason
            );
        }
    }

    function _storeFailedMessage(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload,
        bytes memory _reason
    ) internal virtual {
        failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload);
        emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, _reason);
    }

    function nonblockingLzReceive(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        uint64 _nonce,
        bytes calldata _payload
    ) public virtual {
        // only internal transaction
        require(
            _msgSender() == address(this),
            "NonblockingLzApp: caller must be LzApp"
        );
        _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
    }

    //@notice override this function
    function _nonblockingLzReceive(
        uint16 _srcChainId,
        bytes memory _srcAddress,
        uint64 _nonce,
        bytes memory _payload
    ) internal virtual;

    function retryMessage(
        uint16 _srcChainId,
        bytes calldata _srcAddress,
        uint64 _nonce,
        bytes calldata _payload
    ) public payable virtual {
        // assert there is message to retry
        bytes32 payloadHash = failedMessages[_srcChainId][_srcAddress][_nonce];
        require(
            payloadHash != bytes32(0),
            "NonblockingLzApp: no stored message"
        );
        require(
            keccak256(_payload) == payloadHash,
            "NonblockingLzApp: invalid payload"
        );
        // clear the stored message
        failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0);
        // execute the message. revert if it fails again
        _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
        emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash);
    }
}

File 18 of 19 : BytesLib.sol
// SPDX-License-Identifier: Unlicense
/*
 * @title Solidity Bytes Arrays Utils
 * @author Gonçalo Sá <[email protected]>
 *
 * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity.
 *      The library lets you concatenate, slice and type cast bytes arrays both in memory and storage.
 */
pragma solidity >=0.8.0 <0.9.0;

library BytesLib {
    function concat(
        bytes memory _preBytes,
        bytes memory _postBytes
    ) internal pure returns (bytes memory) {
        bytes memory tempBytes;

        assembly {
            // Get a location of some free memory and store it in tempBytes as
            // Solidity does for memory variables.
            tempBytes := mload(0x40)

            // Store the length of the first bytes array at the beginning of
            // the memory for tempBytes.
            let length := mload(_preBytes)
            mstore(tempBytes, length)

            // Maintain a memory counter for the current write location in the
            // temp bytes array by adding the 32 bytes for the array length to
            // the starting location.
            let mc := add(tempBytes, 0x20)
            // Stop copying when the memory counter reaches the length of the
            // first bytes array.
            let end := add(mc, length)

            for {
                // Initialize a copy counter to the start of the _preBytes data,
                // 32 bytes into its memory.
                let cc := add(_preBytes, 0x20)
            } lt(mc, end) {
                // Increase both counters by 32 bytes each iteration.
                mc := add(mc, 0x20)
                cc := add(cc, 0x20)
            } {
                // Write the _preBytes data into the tempBytes memory 32 bytes
                // at a time.
                mstore(mc, mload(cc))
            }

            // Add the length of _postBytes to the current length of tempBytes
            // and store it as the new length in the first 32 bytes of the
            // tempBytes memory.
            length := mload(_postBytes)
            mstore(tempBytes, add(length, mload(tempBytes)))

            // Move the memory counter back from a multiple of 0x20 to the
            // actual end of the _preBytes data.
            mc := end
            // Stop copying when the memory counter reaches the new combined
            // length of the arrays.
            end := add(mc, length)

            for {
                let cc := add(_postBytes, 0x20)
            } lt(mc, end) {
                mc := add(mc, 0x20)
                cc := add(cc, 0x20)
            } {
                mstore(mc, mload(cc))
            }

            // Update the free-memory pointer by padding our last write location
            // to 32 bytes: add 31 bytes to the end of tempBytes to move to the
            // next 32 byte block, then round down to the nearest multiple of
            // 32. If the sum of the length of the two arrays is zero then add
            // one before rounding down to leave a blank 32 bytes (the length block with 0).
            mstore(
                0x40,
                and(
                    add(add(end, iszero(add(length, mload(_preBytes)))), 31),
                    not(31) // Round down to the nearest 32 bytes.
                )
            )
        }

        return tempBytes;
    }

    function concatStorage(
        bytes storage _preBytes,
        bytes memory _postBytes
    ) internal {
        assembly {
            // Read the first 32 bytes of _preBytes storage, which is the length
            // of the array. (We don't need to use the offset into the slot
            // because arrays use the entire slot.)
            let fslot := sload(_preBytes.slot)
            // Arrays of 31 bytes or less have an even value in their slot,
            // while longer arrays have an odd value. The actual length is
            // the slot divided by two for odd values, and the lowest order
            // byte divided by two for even values.
            // If the slot is even, bitwise and the slot with 255 and divide by
            // two to get the length. If the slot is odd, bitwise and the slot
            // with -1 and divide by two.
            let slength := div(
                and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)),
                2
            )
            let mlength := mload(_postBytes)
            let newlength := add(slength, mlength)
            // slength can contain both the length and contents of the array
            // if length < 32 bytes so let's prepare for that
            // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage
            switch add(lt(slength, 32), lt(newlength, 32))
            case 2 {
                // Since the new array still fits in the slot, we just need to
                // update the contents of the slot.
                // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length
                sstore(
                    _preBytes.slot,
                    // all the modifications to the slot are inside this
                    // next block
                    add(
                        // we can just add to the slot contents because the
                        // bytes we want to change are the LSBs
                        fslot,
                        add(
                            mul(
                                div(
                                    // load the bytes from memory
                                    mload(add(_postBytes, 0x20)),
                                    // zero all bytes to the right
                                    exp(0x100, sub(32, mlength))
                                ),
                                // and now shift left the number of bytes to
                                // leave space for the length in the slot
                                exp(0x100, sub(32, newlength))
                            ),
                            // increase length by the double of the memory
                            // bytes length
                            mul(mlength, 2)
                        )
                    )
                )
            }
            case 1 {
                // The stored value fits in the slot, but the combined value
                // will exceed it.
                // get the keccak hash to get the contents of the array
                mstore(0x0, _preBytes.slot)
                let sc := add(keccak256(0x0, 0x20), div(slength, 32))

                // save new length
                sstore(_preBytes.slot, add(mul(newlength, 2), 1))

                // The contents of the _postBytes array start 32 bytes into
                // the structure. Our first read should obtain the `submod`
                // bytes that can fit into the unused space in the last word
                // of the stored array. To get this, we read 32 bytes starting
                // from `submod`, so the data we read overlaps with the array
                // contents by `submod` bytes. Masking the lowest-order
                // `submod` bytes allows us to add that value directly to the
                // stored value.

                let submod := sub(32, slength)
                let mc := add(_postBytes, submod)
                let end := add(_postBytes, mlength)
                let mask := sub(exp(0x100, submod), 1)

                sstore(
                    sc,
                    add(
                        and(
                            fslot,
                            0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00
                        ),
                        and(mload(mc), mask)
                    )
                )

                for {
                    mc := add(mc, 0x20)
                    sc := add(sc, 1)
                } lt(mc, end) {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } {
                    sstore(sc, mload(mc))
                }

                mask := exp(0x100, sub(mc, end))

                sstore(sc, mul(div(mload(mc), mask), mask))
            }
            default {
                // get the keccak hash to get the contents of the array
                mstore(0x0, _preBytes.slot)
                // Start copying to the last used word of the stored array.
                let sc := add(keccak256(0x0, 0x20), div(slength, 32))

                // save new length
                sstore(_preBytes.slot, add(mul(newlength, 2), 1))

                // Copy over the first `submod` bytes of the new data as in
                // case 1 above.
                let slengthmod := mod(slength, 32)
                let mlengthmod := mod(mlength, 32)
                let submod := sub(32, slengthmod)
                let mc := add(_postBytes, submod)
                let end := add(_postBytes, mlength)
                let mask := sub(exp(0x100, submod), 1)

                sstore(sc, add(sload(sc), and(mload(mc), mask)))

                for {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } lt(mc, end) {
                    sc := add(sc, 1)
                    mc := add(mc, 0x20)
                } {
                    sstore(sc, mload(mc))
                }

                mask := exp(0x100, sub(mc, end))

                sstore(sc, mul(div(mload(mc), mask), mask))
            }
        }
    }

    function slice(
        bytes memory _bytes,
        uint256 _start,
        uint256 _length
    ) internal pure returns (bytes memory) {
        require(_length + 31 >= _length, "slice_overflow");
        require(_bytes.length >= _start + _length, "slice_outOfBounds");

        bytes memory tempBytes;

        assembly {
            switch iszero(_length)
            case 0 {
                // Get a location of some free memory and store it in tempBytes as
                // Solidity does for memory variables.
                tempBytes := mload(0x40)

                // The first word of the slice result is potentially a partial
                // word read from the original array. To read it, we calculate
                // the length of that partial word and start copying that many
                // bytes into the array. The first word we copy will start with
                // data we don't care about, but the last `lengthmod` bytes will
                // land at the beginning of the contents of the new array. When
                // we're done copying, we overwrite the full first word with
                // the actual length of the slice.
                let lengthmod := and(_length, 31)

                // The multiplication in the next line is necessary
                // because when slicing multiples of 32 bytes (lengthmod == 0)
                // the following copy loop was copying the origin's length
                // and then ending prematurely not copying everything it should.
                let mc := add(
                    add(tempBytes, lengthmod),
                    mul(0x20, iszero(lengthmod))
                )
                let end := add(mc, _length)

                for {
                    // The multiplication in the next line has the same exact purpose
                    // as the one above.
                    let cc := add(
                        add(
                            add(_bytes, lengthmod),
                            mul(0x20, iszero(lengthmod))
                        ),
                        _start
                    )
                } lt(mc, end) {
                    mc := add(mc, 0x20)
                    cc := add(cc, 0x20)
                } {
                    mstore(mc, mload(cc))
                }

                mstore(tempBytes, _length)

                //update free-memory pointer
                //allocating the array padded to 32 bytes like the compiler does now
                mstore(0x40, and(add(mc, 31), not(31)))
            }
            //if we want a zero-length slice let's just return a zero-length array
            default {
                tempBytes := mload(0x40)
                //zero out the 32 bytes slice we are about to return
                //we need to do it because Solidity does not garbage collect
                mstore(tempBytes, 0)

                mstore(0x40, add(tempBytes, 0x20))
            }
        }

        return tempBytes;
    }

    function toAddress(
        bytes memory _bytes,
        uint256 _start
    ) internal pure returns (address) {
        require(_bytes.length >= _start + 20, "toAddress_outOfBounds");
        address tempAddress;

        assembly {
            tempAddress := div(
                mload(add(add(_bytes, 0x20), _start)),
                0x1000000000000000000000000
            )
        }

        return tempAddress;
    }

    function toUint8(
        bytes memory _bytes,
        uint256 _start
    ) internal pure returns (uint8) {
        require(_bytes.length >= _start + 1, "toUint8_outOfBounds");
        uint8 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x1), _start))
        }

        return tempUint;
    }

    function toUint16(
        bytes memory _bytes,
        uint256 _start
    ) internal pure returns (uint16) {
        require(_bytes.length >= _start + 2, "toUint16_outOfBounds");
        uint16 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x2), _start))
        }

        return tempUint;
    }

    function toUint32(
        bytes memory _bytes,
        uint256 _start
    ) internal pure returns (uint32) {
        require(_bytes.length >= _start + 4, "toUint32_outOfBounds");
        uint32 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x4), _start))
        }

        return tempUint;
    }

    function toUint64(
        bytes memory _bytes,
        uint256 _start
    ) internal pure returns (uint64) {
        require(_bytes.length >= _start + 8, "toUint64_outOfBounds");
        uint64 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x8), _start))
        }

        return tempUint;
    }

    function toUint96(
        bytes memory _bytes,
        uint256 _start
    ) internal pure returns (uint96) {
        require(_bytes.length >= _start + 12, "toUint96_outOfBounds");
        uint96 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0xc), _start))
        }

        return tempUint;
    }

    function toUint128(
        bytes memory _bytes,
        uint256 _start
    ) internal pure returns (uint128) {
        require(_bytes.length >= _start + 16, "toUint128_outOfBounds");
        uint128 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x10), _start))
        }

        return tempUint;
    }

    function toUint256(
        bytes memory _bytes,
        uint256 _start
    ) internal pure returns (uint256) {
        require(_bytes.length >= _start + 32, "toUint256_outOfBounds");
        uint256 tempUint;

        assembly {
            tempUint := mload(add(add(_bytes, 0x20), _start))
        }

        return tempUint;
    }

    function toBytes32(
        bytes memory _bytes,
        uint256 _start
    ) internal pure returns (bytes32) {
        require(_bytes.length >= _start + 32, "toBytes32_outOfBounds");
        bytes32 tempBytes32;

        assembly {
            tempBytes32 := mload(add(add(_bytes, 0x20), _start))
        }

        return tempBytes32;
    }

    function equal(
        bytes memory _preBytes,
        bytes memory _postBytes
    ) internal pure returns (bool) {
        bool success = true;

        assembly {
            let length := mload(_preBytes)

            // if lengths don't match the arrays are not equal
            switch eq(length, mload(_postBytes))
            case 1 {
                // cb is a circuit breaker in the for loop since there's
                //  no said feature for inline assembly loops
                // cb = 1 - don't breaker
                // cb = 0 - break
                let cb := 1

                let mc := add(_preBytes, 0x20)
                let end := add(mc, length)

                for {
                    let cc := add(_postBytes, 0x20)
                    // the next line is the loop condition:
                    // while(uint256(mc < end) + cb == 2)
                } eq(add(lt(mc, end), cb), 2) {
                    mc := add(mc, 0x20)
                    cc := add(cc, 0x20)
                } {
                    // if any of these checks fails then arrays are not equal
                    if iszero(eq(mload(mc), mload(cc))) {
                        // unsuccess:
                        success := 0
                        cb := 0
                    }
                }
            }
            default {
                // unsuccess:
                success := 0
            }
        }

        return success;
    }

    function equalStorage(
        bytes storage _preBytes,
        bytes memory _postBytes
    ) internal view returns (bool) {
        bool success = true;

        assembly {
            // we know _preBytes_offset is 0
            let fslot := sload(_preBytes.slot)
            // Decode the length of the stored array like in concatStorage().
            let slength := div(
                and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)),
                2
            )
            let mlength := mload(_postBytes)

            // if lengths don't match the arrays are not equal
            switch eq(slength, mlength)
            case 1 {
                // slength can contain both the length and contents of the array
                // if length < 32 bytes so let's prepare for that
                // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage
                if iszero(iszero(slength)) {
                    switch lt(slength, 32)
                    case 1 {
                        // blank the last byte which is the length
                        fslot := mul(div(fslot, 0x100), 0x100)

                        if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) {
                            // unsuccess:
                            success := 0
                        }
                    }
                    default {
                        // cb is a circuit breaker in the for loop since there's
                        //  no said feature for inline assembly loops
                        // cb = 1 - don't breaker
                        // cb = 0 - break
                        let cb := 1

                        // get the keccak hash to get the contents of the array
                        mstore(0x0, _preBytes.slot)
                        let sc := keccak256(0x0, 0x20)

                        let mc := add(_postBytes, 0x20)
                        let end := add(mc, mlength)

                        // the next line is the loop condition:
                        // while(uint256(mc < end) + cb == 2)
                        for {

                        } eq(add(lt(mc, end), cb), 2) {
                            sc := add(sc, 1)
                            mc := add(mc, 0x20)
                        } {
                            if iszero(eq(sload(sc), mload(mc))) {
                                // unsuccess:
                                success := 0
                                cb := 0
                            }
                        }
                    }
                }
            }
            default {
                // unsuccess:
                success := 0
            }
        }

        return success;
    }
}

File 19 of 19 : ExcessivelySafeCall.sol
// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.7.6;

library ExcessivelySafeCall {
    uint256 constant LOW_28_MASK =
        0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff;

    /// @notice Use when you _really_ really _really_ don't trust the called
    /// contract. This prevents the called contract from causing reversion of
    /// the caller in as many ways as we can.
    /// @dev The main difference between this and a solidity low-level call is
    /// that we limit the number of bytes that the callee can cause to be
    /// copied to caller memory. This prevents stupid things like malicious
    /// contracts returning 10,000,000 bytes causing a local OOG when copying
    /// to memory.
    /// @param _target The address to call
    /// @param _gas The amount of gas to forward to the remote contract
    /// @param _maxCopy The maximum number of bytes of returndata to copy
    /// to memory.
    /// @param _calldata The data to send to the remote contract
    /// @return success and returndata, as `.call()`. Returndata is capped to
    /// `_maxCopy` bytes.
    function excessivelySafeCall(
        address _target,
        uint256 _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal returns (bool, bytes memory) {
        // set up for assembly call
        uint256 _toCopy;
        bool _success;
        bytes memory _returnData = new bytes(_maxCopy);
        // dispatch message to recipient
        // by assembly calling "handle" function
        // we call via assembly to avoid memcopying a very large returndata
        // returned by a malicious contract
        assembly {
            _success := call(
                _gas, // gas
                _target, // recipient
                0, // ether value
                add(_calldata, 0x20), // inloc
                mload(_calldata), // inlen
                0, // outloc
                0 // outlen
            )
            // limit our copy to 256 bytes
            _toCopy := returndatasize()
            if gt(_toCopy, _maxCopy) {
                _toCopy := _maxCopy
            }
            // Store the length of the copied bytes
            mstore(_returnData, _toCopy)
            // copy the bytes from returndata[0:_toCopy]
            returndatacopy(add(_returnData, 0x20), 0, _toCopy)
        }
        return (_success, _returnData);
    }

    /// @notice Use when you _really_ really _really_ don't trust the called
    /// contract. This prevents the called contract from causing reversion of
    /// the caller in as many ways as we can.
    /// @dev The main difference between this and a solidity low-level call is
    /// that we limit the number of bytes that the callee can cause to be
    /// copied to caller memory. This prevents stupid things like malicious
    /// contracts returning 10,000,000 bytes causing a local OOG when copying
    /// to memory.
    /// @param _target The address to call
    /// @param _gas The amount of gas to forward to the remote contract
    /// @param _maxCopy The maximum number of bytes of returndata to copy
    /// to memory.
    /// @param _calldata The data to send to the remote contract
    /// @return success and returndata, as `.call()`. Returndata is capped to
    /// `_maxCopy` bytes.
    function excessivelySafeStaticCall(
        address _target,
        uint256 _gas,
        uint16 _maxCopy,
        bytes memory _calldata
    ) internal view returns (bool, bytes memory) {
        // set up for assembly call
        uint256 _toCopy;
        bool _success;
        bytes memory _returnData = new bytes(_maxCopy);
        // dispatch message to recipient
        // by assembly calling "handle" function
        // we call via assembly to avoid memcopying a very large returndata
        // returned by a malicious contract
        assembly {
            _success := staticcall(
                _gas, // gas
                _target, // recipient
                add(_calldata, 0x20), // inloc
                mload(_calldata), // inlen
                0, // outloc
                0 // outlen
            )
            // limit our copy to 256 bytes
            _toCopy := returndatasize()
            if gt(_toCopy, _maxCopy) {
                _toCopy := _maxCopy
            }
            // Store the length of the copied bytes
            mstore(_returnData, _toCopy)
            // copy the bytes from returndata[0:_toCopy]
            returndatacopy(add(_returnData, 0x20), 0, _toCopy)
        }
        return (_success, _returnData);
    }

    /**
     * @notice Swaps function selectors in encoded contract calls
     * @dev Allows reuse of encoded calldata for functions with identical
     * argument types but different names. It simply swaps out the first 4 bytes
     * for the new selector. This function modifies memory in place, and should
     * only be used with caution.
     * @param _newSelector The new 4-byte selector
     * @param _buf The encoded contract args
     */
    function swapSelector(
        bytes4 _newSelector,
        bytes memory _buf
    ) internal pure {
        require(_buf.length >= 4);
        uint256 _mask = LOW_28_MASK;
        assembly {
            // load the first word of
            let _word := mload(add(_buf, 0x20))
            // mask out the top 4 bytes
            // /x
            _word := and(_word, _mask)
            _word := or(_newSelector, _word)
            mstore(add(_buf, 0x20), _word)
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_endpoint","type":"address"},{"internalType":"uint256","name":"_startTokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InsufficientGas","type":"error"},{"inputs":[],"name":"NotTokenOwner","type":"error"},{"inputs":[],"name":"SupplyExceeded","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"counter","type":"uint256"}],"name":"ReceivedNFT","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_PAYLOAD_SIZE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ID","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":[],"name":"counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"dstChainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"crossChain","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"dstChainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"estimateFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lzEndpoint","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":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"payloadSizeLimitLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","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":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_size","type":"uint256"}],"name":"setPayloadSizeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"}]

60c06040523480156200001157600080fd5b5060405162006464380380620064648339818101604052810190620000379190620002bb565b81806040518060400160405280600d81526020017f43726f7373436861696e4e4654000000000000000000000000000000000000008152506040518060400160405280600581526020017f43434e4654000000000000000000000000000000000000000000000000000000815250620000c5620000b96200014a60201b60201c565b6200015260201b60201c565b8160019081620000d6919062000572565b508060029081620000e8919062000572565b5050508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050505080600d819055506201869f600d546200013b919062000688565b60a081815250505050620006c3565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000248826200021b565b9050919050565b6200025a816200023b565b81146200026657600080fd5b50565b6000815190506200027a816200024f565b92915050565b6000819050919050565b620002958162000280565b8114620002a157600080fd5b50565b600081519050620002b5816200028a565b92915050565b60008060408385031215620002d557620002d462000216565b5b6000620002e58582860162000269565b9250506020620002f885828601620002a4565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200038457607f821691505b6020821081036200039a57620003996200033c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003c5565b620004108683620003c5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620004536200044d620004478462000280565b62000428565b62000280565b9050919050565b6000819050919050565b6200046f8362000432565b620004876200047e826200045a565b848454620003d2565b825550505050565b600090565b6200049e6200048f565b620004ab81848462000464565b505050565b5b81811015620004d357620004c760008262000494565b600181019050620004b1565b5050565b601f8211156200052257620004ec81620003a0565b620004f784620003b5565b8101602085101562000507578190505b6200051f6200051685620003b5565b830182620004b0565b50505b505050565b600082821c905092915050565b6000620005476000198460080262000527565b1980831691505092915050565b600062000562838362000534565b9150826002028217905092915050565b6200057d8262000302565b67ffffffffffffffff8111156200059957620005986200030d565b5b620005a582546200036b565b620005b2828285620004d7565b600060209050601f831160018114620005ea5760008415620005d5578287015190505b620005e1858262000554565b86555062000651565b601f198416620005fa86620003a0565b60005b828110156200062457848901518255600182019150602085019450602081019050620005fd565b8683101562000644578489015162000640601f89168262000534565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620006958262000280565b9150620006a28362000280565b9250828201905080821115620006bd57620006bc62000659565b5b92915050565b60805160a051615d356200072f600039600081816110e90152611172015260008181610a6401528181610e3c0152818161105b015281816112790152818161142c015281816115f301528181611ca001528181611e1f0152818161234c0152612b1c0152615d356000f3fe6080604052600436106102655760003560e01c806370a0823111610144578063b88d4fde116100b6578063d1deba1f1161007a578063d1deba1f14610951578063df2a5b3b1461096d578063e985e9c514610996578063eb8d72b7146109d3578063f2fde38b146109fc578063f5ecbdbc14610a2557610265565b8063b88d4fde1461086e578063baf3292d14610897578063c4461834146108c0578063c87b56dd146108eb578063cbed8b9c1461092857610265565b8063950c8a7411610108578063950c8a741461075e57806395d89b41146107895780639f38369a146107b4578063a22cb465146107f1578063a6c3d1651461081a578063b353aaa71461084357610265565b806370a0823114610665578063715018a6146106a25780637533d788146106b95780638cfd8f5c146106f65780638da5cb5b1461073357610265565b80631e128296116101dd57806342842e0e116101a157806342842e0e1461054557806342d65a8d1461056e5780635b8c41e61461059757806361bc221a146105d45780636352211e146105ff57806366ad5c8a1461063c57610265565b80631e1282961461044957806323b872dd14610465578063362790f61461048e5780633d8b38f6146104cb5780633f1f4fa41461050857610265565b8063081812fc1161022f578063081812fc1461034f578063095ea7b31461038c5780630df37483146103b557806310ddb137146103de5780631249c58b1461040757806317bac0521461041e57610265565b80621d35671461026a5780629a9b7b1461029357806301ffc9a7146102be57806306fdde03146102fb57806307e0db1714610326575b600080fd5b34801561027657600080fd5b50610291600480360381019061028c9190613a92565b610a62565b005b34801561029f57600080fd5b506102a8610cb8565b6040516102b59190613b52565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613bc5565b610cbe565b6040516102f29190613c0d565b60405180910390f35b34801561030757600080fd5b50610310610da0565b60405161031d9190613cb8565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613cda565b610e32565b005b34801561035b57600080fd5b5061037660048036038101906103719190613d33565b610ec8565b6040516103839190613da1565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190613de8565b610f0e565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190613e28565b611025565b005b3480156103ea57600080fd5b5061040560048036038101906104009190613cda565b611051565b005b34801561041357600080fd5b5061041c6110e7565b005b34801561042a57600080fd5b50610433611170565b6040516104409190613b52565b60405180910390f35b610463600480360381019061045e9190613e28565b611194565b005b34801561047157600080fd5b5061048c60048036038101906104879190613e68565b61136d565b005b34801561049a57600080fd5b506104b560048036038101906104b09190613e28565b6113cd565b6040516104c29190613b52565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190613ebb565b6114dd565b6040516104ff9190613c0d565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190613cda565b6115b1565b60405161053c9190613b52565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190613e68565b6115c9565b005b34801561057a57600080fd5b5061059560048036038101906105909190613ebb565b6115e9565b005b3480156105a357600080fd5b506105be60048036038101906105b9919061404b565b611685565b6040516105cb91906140d3565b60405180910390f35b3480156105e057600080fd5b506105e96116cd565b6040516105f69190613b52565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190613d33565b6116d3565b6040516106339190613da1565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613a92565b611759565b005b34801561067157600080fd5b5061068c600480360381019061068791906140ee565b61186a565b6040516106999190613b52565b60405180910390f35b3480156106ae57600080fd5b506106b7611921565b005b3480156106c557600080fd5b506106e060048036038101906106db9190613cda565b611935565b6040516106ed9190614170565b60405180910390f35b34801561070257600080fd5b5061071d60048036038101906107189190614192565b6119d5565b60405161072a9190613b52565b60405180910390f35b34801561073f57600080fd5b506107486119fa565b6040516107559190613da1565b60405180910390f35b34801561076a57600080fd5b50610773611a23565b6040516107809190613da1565b60405180910390f35b34801561079557600080fd5b5061079e611a49565b6040516107ab9190613cb8565b60405180910390f35b3480156107c057600080fd5b506107db60048036038101906107d69190613cda565b611adb565b6040516107e89190614170565b60405180910390f35b3480156107fd57600080fd5b50610818600480360381019061081391906141fe565b611bf4565b005b34801561082657600080fd5b50610841600480360381019061083c9190613ebb565b611c0a565b005b34801561084f57600080fd5b50610858611c9e565b604051610865919061429d565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906142b8565b611cc2565b005b3480156108a357600080fd5b506108be60048036038101906108b991906140ee565b611d24565b005b3480156108cc57600080fd5b506108d5611da7565b6040516108e29190613b52565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613d33565b611dad565b60405161091f9190613cb8565b60405180910390f35b34801561093457600080fd5b5061094f600480360381019061094a919061433b565b611e15565b005b61096b60048036038101906109669190613a92565b611eb7565b005b34801561097957600080fd5b50610994600480360381019061098f91906143c3565b6120fa565b005b3480156109a257600080fd5b506109bd60048036038101906109b89190614416565b6121be565b6040516109ca9190613c0d565b60405180910390f35b3480156109df57600080fd5b506109fa60048036038101906109f59190613ebb565b612252565b005b348015610a0857600080fd5b50610a236004803603810190610a1e91906140ee565b6122c5565b005b348015610a3157600080fd5b50610a4c6004803603810190610a479190614456565b612348565b604051610a599190614170565b60405180910390f35b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16610aa16123f9565b73ffffffffffffffffffffffffffffffffffffffff1614610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90614509565b60405180910390fd5b6000600760008861ffff1661ffff1681526020019081526020016000208054610b1f90614558565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4b90614558565b8015610b985780601f10610b6d57610100808354040283529160200191610b98565b820191906000526020600020905b815481529060010190602001808311610b7b57829003601f168201915b50505050509050805186869050148015610bb3575060008151115b8015610bdc575080805190602001208686604051610bd29291906145b9565b6040518091039020145b610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290614644565b60405180910390fd5b610caf8787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508686868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612401565b50505050505050565b600d5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d8957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d995750610d98826124cc565b5b9050919050565b606060018054610daf90614558565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddb90614558565b8015610e285780601f10610dfd57610100808354040283529160200191610e28565b820191906000526020600020905b815481529060010190602001808311610e0b57829003601f168201915b5050505050905090565b610e3a612536565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166307e0db17826040518263ffffffff1660e01b8152600401610e939190614673565b600060405180830381600087803b158015610ead57600080fd5b505af1158015610ec1573d6000803e3d6000fd5b5050505050565b6000610ed3826125b4565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f19826116d3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090614700565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fa86123f9565b73ffffffffffffffffffffffffffffffffffffffff161480610fd75750610fd681610fd16123f9565b6121be565b5b611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90614792565b60405180910390fd5b61102083836125ff565b505050565b61102d612536565b80600960008461ffff1661ffff168152602001908152602001600020819055505050565b611059612536565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166310ddb137826040518263ffffffff1660e01b81526004016110b29190614673565b600060405180830381600087803b1580156110cc57600080fd5b505af11580156110e0573d6000803e3d6000fd5b5050505050565b7f0000000000000000000000000000000000000000000000000000000000000000600d5403611142576040517f7d3d824900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61114e33600d546126b8565b600d6000815460010191905081905550600c6000815460010191905081905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b61119d816116d3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611201576040517f59dc379f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c60008154600190039190508190555061121b816128d5565b600033826040516020016112309291906147b2565b6040516020818303038152906040529050600060019050600062055730905060008282604051602001611264929190614832565b604051602081830303815290604052905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166340a7bb108830886000876040518663ffffffff1660e01b81526004016112d995949392919061485e565b6040805180830381865afa1580156112f5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131991906148d4565b509050803411611355576040517f1c26714c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61136487863360008634612a23565b50505050505050565b61137e6113786123f9565b82612bb9565b6113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b490614986565b60405180910390fd5b6113c8838383612c4e565b505050565b60008033836040516020016113e39291906147b2565b6040516020818303038152906040529050600060019050600062055730905060008282604051602001611417929190614832565b604051602081830303815290604052905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166340a7bb108930886000876040518663ffffffff1660e01b815260040161148c95949392919061485e565b6040805180830381865afa1580156114a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cc91906148d4565b509050809550505050505092915050565b600080600760008661ffff1661ffff168152602001908152602001600020805461150690614558565b80601f016020809104026020016040519081016040528092919081815260200182805461153290614558565b801561157f5780601f106115545761010080835404028352916020019161157f565b820191906000526020600020905b81548152906001019060200180831161156257829003601f168201915b5050505050905083836040516115969291906145b9565b60405180910390208180519060200120149150509392505050565b60096020528060005260406000206000915090505481565b6115e483838360405180602001604052806000815250611cc2565b505050565b6115f1612536565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166342d65a8d8484846040518463ffffffff1660e01b815260040161164e939291906149d3565b600060405180830381600087803b15801561166857600080fd5b505af115801561167c573d6000803e3d6000fd5b50505050505050565b600b6020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050505481565b600c5481565b6000806116df83612f47565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790614a51565b60405180910390fd5b80915050919050565b3073ffffffffffffffffffffffffffffffffffffffff166117786123f9565b73ffffffffffffffffffffffffffffffffffffffff16146117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c590614ae3565b60405180910390fd5b6118628686868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612f84565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190614b75565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611929612536565b611933600061300a565b565b6007602052806000526040600020600091509050805461195490614558565b80601f016020809104026020016040519081016040528092919081815260200182805461198090614558565b80156119cd5780601f106119a2576101008083540402835291602001916119cd565b820191906000526020600020905b8154815290600101906020018083116119b057829003601f168201915b505050505081565b6008602052816000526040600020602052806000526040600020600091509150505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060028054611a5890614558565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8490614558565b8015611ad15780601f10611aa657610100808354040283529160200191611ad1565b820191906000526020600020905b815481529060010190602001808311611ab457829003601f168201915b5050505050905090565b60606000600760008461ffff1661ffff1681526020019081526020016000208054611b0590614558565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3190614558565b8015611b7e5780601f10611b5357610100808354040283529160200191611b7e565b820191906000526020600020905b815481529060010190602001808311611b6157829003601f168201915b505050505090506000815103611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc090614be1565b60405180910390fd5b611bec600060148351611bdc9190614c30565b836130ce9092919063ffffffff16565b915050919050565b611c06611bff6123f9565b83836131ec565b5050565b611c12612536565b818130604051602001611c2793929190614cac565b604051602081830303815290604052600760008561ffff1661ffff1681526020019081526020016000209081611c5d9190614e78565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce838383604051611c91939291906149d3565b60405180910390a1505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611cd3611ccd6123f9565b83612bb9565b611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0990614986565b60405180910390fd5b611d1e84848484613358565b50505050565b611d2c612536565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b81604051611d9c9190613da1565b60405180910390a150565b61271081565b6060611db8826125b4565b6000611dc26133b4565b90506000815111611de25760405180602001604052806000815250611e0d565b80611dec846133cb565b604051602001611dfd929190614f86565b6040516020818303038152906040525b915050919050565b611e1d612536565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663cbed8b9c86868686866040518663ffffffff1660e01b8152600401611e7e959493929190614faa565b600060405180830381600087803b158015611e9857600080fd5b505af1158015611eac573d6000803e3d6000fd5b505050505050505050565b6000600b60008861ffff1661ffff1681526020019081526020016000208686604051611ee49291906145b9565b908152602001604051809103902060008567ffffffffffffffff1667ffffffffffffffff1681526020019081526020016000205490506000801b8103611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f569061506a565b60405180910390fd5b808383604051611f709291906145b9565b604051809103902014611fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faf906150fc565b60405180910390fd5b6000801b600b60008961ffff1661ffff1681526020019081526020016000208787604051611fe79291906145b9565b908152602001604051809103902060008667ffffffffffffffff1667ffffffffffffffff168152602001908152602001600020819055506120b28787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508686868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612f84565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e587878787856040516120e995949392919061512b565b60405180910390a150505050505050565b612102612536565b60008111612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c906151c5565b60405180910390fd5b80600860008561ffff1661ffff16815260200190815260200160002060008461ffff1661ffff168152602001908152602001600020819055507f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac08383836040516121b1939291906151e5565b60405180910390a1505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61225a612536565b8181600760008661ffff1661ffff1681526020019081526020016000209182612284929190615227565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab8383836040516122b8939291906149d3565b60405180910390a1505050565b6122cd612536565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361233c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233390615369565b60405180910390fd5b6123458161300a565b50565b60607f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f5ecbdbc868630866040518563ffffffff1660e01b81526004016123a99493929190615389565b600060405180830381865afa1580156123c6573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906123ef919061543e565b9050949350505050565b600033905090565b6000806124ad5a60966366ad5c8a60e01b898989896040516024016124299493929190615487565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050503073ffffffffffffffffffffffffffffffffffffffff16613499909392919063ffffffff16565b91509150816124c4576124c38686868685613531565b5b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61253e6123f9565b73ffffffffffffffffffffffffffffffffffffffff1661255c6119fa565b73ffffffffffffffffffffffffffffffffffffffff16146125b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a990615526565b60405180910390fd5b565b6125bd816135df565b6125fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f390614a51565b60405180910390fd5b50565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612672836116d3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271e90615592565b60405180910390fd5b612730816135df565b15612770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612767906155fe565b60405180910390fd5b61277e600083836001613620565b612787816135df565b156127c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127be906155fe565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128d1600083836001613626565b5050565b60006128e0826116d3565b90506128f0816000846001613620565b6128f9826116d3565b90506005600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a1f816000846001613626565b5050565b6000600760008861ffff1661ffff1681526020019081526020016000208054612a4b90614558565b80601f0160208091040260200160405190810160405280929190818152602001828054612a7790614558565b8015612ac45780601f10612a9957610100808354040283529160200191612ac4565b820191906000526020600020905b815481529060010190602001808311612aa757829003601f168201915b505050505090506000815103612b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0690615690565b60405180910390fd5b612b1a87875161362c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c58031008389848a8a8a8a6040518863ffffffff1660e01b8152600401612b7e969594939291906156d1565b6000604051808303818588803b158015612b9757600080fd5b505af1158015612bab573d6000803e3d6000fd5b505050505050505050505050565b600080612bc5836116d3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c075750612c0681856121be565b5b80612c4557508373ffffffffffffffffffffffffffffffffffffffff16612c2d84610ec8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c6e826116d3565b73ffffffffffffffffffffffffffffffffffffffff1614612cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbb906157b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2a9061584b565b60405180910390fd5b612d408383836001613620565b8273ffffffffffffffffffffffffffffffffffffffff16612d60826116d3565b73ffffffffffffffffffffffffffffffffffffffff1614612db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dad906157b9565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f428383836001613626565b505050565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006014840151905060008083806020019051810190612fa49190615897565b91509150612fb282826126b8565b600c60008154600101919050819055507f31ae2bb20187b24b2039def7711f43f56311ec96de17b7ef01d1b1da40eb2eee878483600c54604051612ff994939291906158d7565b60405180910390a150505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b606081601f836130de919061591c565b101561311f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131169061599c565b60405180910390fd5b818361312b919061591c565b8451101561316e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316590615a08565b60405180910390fd5b606082156000811461318f57604051915060008252602082016040526131e0565b6040519150601f8416801560200281840101858101878315602002848b0101015b818310156131cd57805183526020830192506020810190506131b0565b50868552601f19601f8301166040525050505b50809150509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361325a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325190615a74565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161334b9190613c0d565b60405180910390a3505050565b613363848484612c4e565b61336f848484846136a2565b6133ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a590615b06565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060600060016133da84613829565b01905060008167ffffffffffffffff8111156133f9576133f8613f20565b5b6040519080825280601f01601f19166020018201604052801561342b5781602001600182028036833780820191505090505b509050600082602001820190505b60011561348e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161348257613481615b26565b5b04945060008503613439575b819350505050919050565b6000606060008060008661ffff1667ffffffffffffffff8111156134c0576134bf613f20565b5b6040519080825280601f01601f1916602001820160405280156134f25781602001600182028036833780820191505090505b50905060008087516020890160008d8df191503d925086831115613514578692505b828152826000602083013e81819450945050505094509492505050565b8180519060200120600b60008761ffff1661ffff168152602001908152602001600020856040516135629190615b86565b908152602001604051809103902060008567ffffffffffffffff1667ffffffffffffffff168152602001908152602001600020819055507fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c85858585856040516135d0959493929190615b9d565b60405180910390a15050505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661360183612f47565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b6000600960008461ffff1661ffff1681526020019081526020016000205490506000810361365a5761271090505b8082111561369d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369490615c51565b60405180910390fd5b505050565b60006136c38473ffffffffffffffffffffffffffffffffffffffff1661397c565b1561381c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136ec6123f9565b8786866040518563ffffffff1660e01b815260040161370e9493929190615c71565b6020604051808303816000875af192505050801561374a57506040513d601f19601f820116820180604052508101906137479190615cd2565b60015b6137cc573d806000811461377a576040519150601f19603f3d011682016040523d82523d6000602084013e61377f565b606091505b5060008151036137c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137bb90615b06565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613821565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613887577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161387d5761387c615b26565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106138c4576d04ee2d6d415b85acef810000000083816138ba576138b9615b26565b5b0492506020810190505b662386f26fc1000083106138f357662386f26fc1000083816138e9576138e8615b26565b5b0492506010810190505b6305f5e100831061391c576305f5e100838161391257613911615b26565b5b0492506008810190505b612710831061394157612710838161393757613936615b26565b5b0492506004810190505b60648310613964576064838161395a57613959615b26565b5b0492506002810190505b600a8310613973576001810190505b80915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600061ffff82169050919050565b6139ca816139b3565b81146139d557600080fd5b50565b6000813590506139e7816139c1565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613a1257613a116139ed565b5b8235905067ffffffffffffffff811115613a2f57613a2e6139f2565b5b602083019150836001820283011115613a4b57613a4a6139f7565b5b9250929050565b600067ffffffffffffffff82169050919050565b613a6f81613a52565b8114613a7a57600080fd5b50565b600081359050613a8c81613a66565b92915050565b60008060008060008060808789031215613aaf57613aae6139a9565b5b6000613abd89828a016139d8565b965050602087013567ffffffffffffffff811115613ade57613add6139ae565b5b613aea89828a016139fc565b95509550506040613afd89828a01613a7d565b935050606087013567ffffffffffffffff811115613b1e57613b1d6139ae565b5b613b2a89828a016139fc565b92509250509295509295509295565b6000819050919050565b613b4c81613b39565b82525050565b6000602082019050613b676000830184613b43565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613ba281613b6d565b8114613bad57600080fd5b50565b600081359050613bbf81613b99565b92915050565b600060208284031215613bdb57613bda6139a9565b5b6000613be984828501613bb0565b91505092915050565b60008115159050919050565b613c0781613bf2565b82525050565b6000602082019050613c226000830184613bfe565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c62578082015181840152602081019050613c47565b60008484015250505050565b6000601f19601f8301169050919050565b6000613c8a82613c28565b613c948185613c33565b9350613ca4818560208601613c44565b613cad81613c6e565b840191505092915050565b60006020820190508181036000830152613cd28184613c7f565b905092915050565b600060208284031215613cf057613cef6139a9565b5b6000613cfe848285016139d8565b91505092915050565b613d1081613b39565b8114613d1b57600080fd5b50565b600081359050613d2d81613d07565b92915050565b600060208284031215613d4957613d486139a9565b5b6000613d5784828501613d1e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d8b82613d60565b9050919050565b613d9b81613d80565b82525050565b6000602082019050613db66000830184613d92565b92915050565b613dc581613d80565b8114613dd057600080fd5b50565b600081359050613de281613dbc565b92915050565b60008060408385031215613dff57613dfe6139a9565b5b6000613e0d85828601613dd3565b9250506020613e1e85828601613d1e565b9150509250929050565b60008060408385031215613e3f57613e3e6139a9565b5b6000613e4d858286016139d8565b9250506020613e5e85828601613d1e565b9150509250929050565b600080600060608486031215613e8157613e806139a9565b5b6000613e8f86828701613dd3565b9350506020613ea086828701613dd3565b9250506040613eb186828701613d1e565b9150509250925092565b600080600060408486031215613ed457613ed36139a9565b5b6000613ee2868287016139d8565b935050602084013567ffffffffffffffff811115613f0357613f026139ae565b5b613f0f868287016139fc565b92509250509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f5882613c6e565b810181811067ffffffffffffffff82111715613f7757613f76613f20565b5b80604052505050565b6000613f8a61399f565b9050613f968282613f4f565b919050565b600067ffffffffffffffff821115613fb657613fb5613f20565b5b613fbf82613c6e565b9050602081019050919050565b82818337600083830152505050565b6000613fee613fe984613f9b565b613f80565b90508281526020810184848401111561400a57614009613f1b565b5b614015848285613fcc565b509392505050565b600082601f830112614032576140316139ed565b5b8135614042848260208601613fdb565b91505092915050565b600080600060608486031215614064576140636139a9565b5b6000614072868287016139d8565b935050602084013567ffffffffffffffff811115614093576140926139ae565b5b61409f8682870161401d565b92505060406140b086828701613a7d565b9150509250925092565b6000819050919050565b6140cd816140ba565b82525050565b60006020820190506140e860008301846140c4565b92915050565b600060208284031215614104576141036139a9565b5b600061411284828501613dd3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60006141428261411b565b61414c8185614126565b935061415c818560208601613c44565b61416581613c6e565b840191505092915050565b6000602082019050818103600083015261418a8184614137565b905092915050565b600080604083850312156141a9576141a86139a9565b5b60006141b7858286016139d8565b92505060206141c8858286016139d8565b9150509250929050565b6141db81613bf2565b81146141e657600080fd5b50565b6000813590506141f8816141d2565b92915050565b60008060408385031215614215576142146139a9565b5b600061422385828601613dd3565b9250506020614234858286016141e9565b9150509250929050565b6000819050919050565b600061426361425e61425984613d60565b61423e565b613d60565b9050919050565b600061427582614248565b9050919050565b60006142878261426a565b9050919050565b6142978161427c565b82525050565b60006020820190506142b2600083018461428e565b92915050565b600080600080608085870312156142d2576142d16139a9565b5b60006142e087828801613dd3565b94505060206142f187828801613dd3565b935050604061430287828801613d1e565b925050606085013567ffffffffffffffff811115614323576143226139ae565b5b61432f8782880161401d565b91505092959194509250565b600080600080600060808688031215614357576143566139a9565b5b6000614365888289016139d8565b9550506020614376888289016139d8565b945050604061438788828901613d1e565b935050606086013567ffffffffffffffff8111156143a8576143a76139ae565b5b6143b4888289016139fc565b92509250509295509295909350565b6000806000606084860312156143dc576143db6139a9565b5b60006143ea868287016139d8565b93505060206143fb868287016139d8565b925050604061440c86828701613d1e565b9150509250925092565b6000806040838503121561442d5761442c6139a9565b5b600061443b85828601613dd3565b925050602061444c85828601613dd3565b9150509250929050565b600080600080608085870312156144705761446f6139a9565b5b600061447e878288016139d8565b945050602061448f878288016139d8565b93505060406144a087828801613dd3565b92505060606144b187828801613d1e565b91505092959194509250565b7f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c65720000600082015250565b60006144f3601e83613c33565b91506144fe826144bd565b602082019050919050565b60006020820190508181036000830152614522816144e6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061457057607f821691505b60208210810361458357614582614529565b5b50919050565b600081905092915050565b60006145a08385614589565b93506145ad838584613fcc565b82840190509392505050565b60006145c6828486614594565b91508190509392505050565b7f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b600061462e602683613c33565b9150614639826145d2565b604082019050919050565b6000602082019050818103600083015261465d81614621565b9050919050565b61466d816139b3565b82525050565b60006020820190506146886000830184614664565b92915050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006146ea602183613c33565b91506146f58261468e565b604082019050919050565b60006020820190508181036000830152614719816146dd565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061477c603d83613c33565b915061478782614720565b604082019050919050565b600060208201905081810360008301526147ab8161476f565b9050919050565b60006040820190506147c76000830185613d92565b6147d46020830184613b43565b9392505050565b60008160f01b9050919050565b60006147f3826147db565b9050919050565b61480b614806826139b3565b6147e8565b82525050565b6000819050919050565b61482c61482782613b39565b614811565b82525050565b600061483e82856147fa565b60028201915061484e828461481b565b6020820191508190509392505050565b600060a0820190506148736000830188614664565b6148806020830187613d92565b81810360408301526148928186614137565b90506148a16060830185613bfe565b81810360808301526148b38184614137565b90509695505050505050565b6000815190506148ce81613d07565b92915050565b600080604083850312156148eb576148ea6139a9565b5b60006148f9858286016148bf565b925050602061490a858286016148bf565b9150509250929050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000614970602d83613c33565b915061497b82614914565b604082019050919050565b6000602082019050818103600083015261499f81614963565b9050919050565b60006149b28385614126565b93506149bf838584613fcc565b6149c883613c6e565b840190509392505050565b60006040820190506149e86000830186614664565b81810360208301526149fb8184866149a6565b9050949350505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614a3b601883613c33565b9150614a4682614a05565b602082019050919050565b60006020820190508181036000830152614a6a81614a2e565b9050919050565b7f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d75737420626560008201527f204c7a4170700000000000000000000000000000000000000000000000000000602082015250565b6000614acd602683613c33565b9150614ad882614a71565b604082019050919050565b60006020820190508181036000830152614afc81614ac0565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614b5f602983613c33565b9150614b6a82614b03565b604082019050919050565b60006020820190508181036000830152614b8e81614b52565b9050919050565b7f4c7a4170703a206e6f20747275737465642070617468207265636f7264000000600082015250565b6000614bcb601d83613c33565b9150614bd682614b95565b602082019050919050565b60006020820190508181036000830152614bfa81614bbe565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c3b82613b39565b9150614c4683613b39565b9250828203905081811115614c5e57614c5d614c01565b5b92915050565b60008160601b9050919050565b6000614c7c82614c64565b9050919050565b6000614c8e82614c71565b9050919050565b614ca6614ca182613d80565b614c83565b82525050565b6000614cb9828587614594565b9150614cc58284614c95565b601482019150819050949350505050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614d387fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614cfb565b614d428683614cfb565b95508019841693508086168417925050509392505050565b6000614d75614d70614d6b84613b39565b61423e565b613b39565b9050919050565b6000819050919050565b614d8f83614d5a565b614da3614d9b82614d7c565b848454614d08565b825550505050565b600090565b614db8614dab565b614dc3818484614d86565b505050565b5b81811015614de757614ddc600082614db0565b600181019050614dc9565b5050565b601f821115614e2c57614dfd81614cd6565b614e0684614ceb565b81016020851015614e15578190505b614e29614e2185614ceb565b830182614dc8565b50505b505050565b600082821c905092915050565b6000614e4f60001984600802614e31565b1980831691505092915050565b6000614e688383614e3e565b9150826002028217905092915050565b614e818261411b565b67ffffffffffffffff811115614e9a57614e99613f20565b5b614ea48254614558565b614eaf828285614deb565b600060209050601f831160018114614ee25760008415614ed0578287015190505b614eda8582614e5c565b865550614f42565b601f198416614ef086614cd6565b60005b82811015614f1857848901518255600182019150602085019450602081019050614ef3565b86831015614f355784890151614f31601f891682614e3e565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000614f6082613c28565b614f6a8185614f4a565b9350614f7a818560208601613c44565b80840191505092915050565b6000614f928285614f55565b9150614f9e8284614f55565b91508190509392505050565b6000608082019050614fbf6000830188614664565b614fcc6020830187614664565b614fd96040830186613b43565b8181036060830152614fec8184866149a6565b90509695505050505050565b7f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360008201527f6167650000000000000000000000000000000000000000000000000000000000602082015250565b6000615054602383613c33565b915061505f82614ff8565b604082019050919050565b6000602082019050818103600083015261508381615047565b9050919050565b7f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f6160008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b60006150e6602183613c33565b91506150f18261508a565b604082019050919050565b60006020820190508181036000830152615115816150d9565b9050919050565b61512581613a52565b82525050565b60006080820190506151406000830188614664565b81810360208301526151538186886149a6565b9050615162604083018561511c565b61516f60608301846140c4565b9695505050505050565b7f4c7a4170703a20696e76616c6964206d696e4761730000000000000000000000600082015250565b60006151af601583613c33565b91506151ba82615179565b602082019050919050565b600060208201905081810360008301526151de816151a2565b9050919050565b60006060820190506151fa6000830186614664565b6152076020830185614664565b6152146040830184613b43565b949350505050565b600082905092915050565b615231838361521c565b67ffffffffffffffff81111561524a57615249613f20565b5b6152548254614558565b61525f828285614deb565b6000601f83116001811461528e576000841561527c578287013590505b6152868582614e5c565b8655506152ee565b601f19841661529c86614cd6565b60005b828110156152c45784890135825560018201915060208501945060208101905061529f565b868310156152e157848901356152dd601f891682614e3e565b8355505b6001600288020188555050505b50505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615353602683613c33565b915061535e826152f7565b604082019050919050565b6000602082019050818103600083015261538281615346565b9050919050565b600060808201905061539e6000830187614664565b6153ab6020830186614664565b6153b86040830185613d92565b6153c56060830184613b43565b95945050505050565b60006153e16153dc84613f9b565b613f80565b9050828152602081018484840111156153fd576153fc613f1b565b5b615408848285613c44565b509392505050565b600082601f830112615425576154246139ed565b5b81516154358482602086016153ce565b91505092915050565b600060208284031215615454576154536139a9565b5b600082015167ffffffffffffffff811115615472576154716139ae565b5b61547e84828501615410565b91505092915050565b600060808201905061549c6000830187614664565b81810360208301526154ae8186614137565b90506154bd604083018561511c565b81810360608301526154cf8184614137565b905095945050505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615510602083613c33565b915061551b826154da565b602082019050919050565b6000602082019050818103600083015261553f81615503565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061557c602083613c33565b915061558782615546565b602082019050919050565b600060208201905081810360008301526155ab8161556f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006155e8601c83613c33565b91506155f3826155b2565b602082019050919050565b60006020820190508181036000830152615617816155db565b9050919050565b7f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060008201527f61207472757374656420736f7572636500000000000000000000000000000000602082015250565b600061567a603083613c33565b91506156858261561e565b604082019050919050565b600060208201905081810360008301526156a98161566d565b9050919050565b60006156bb82613d60565b9050919050565b6156cb816156b0565b82525050565b600060c0820190506156e66000830189614664565b81810360208301526156f88188614137565b9050818103604083015261570c8187614137565b905061571b60608301866156c2565b6157286080830185613d92565b81810360a083015261573a8184614137565b9050979650505050505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006157a3602583613c33565b91506157ae82615747565b604082019050919050565b600060208201905081810360008301526157d281615796565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615835602483613c33565b9150615840826157d9565b604082019050919050565b6000602082019050818103600083015261586481615828565b9050919050565b615874816156b0565b811461587f57600080fd5b50565b6000815190506158918161586b565b92915050565b600080604083850312156158ae576158ad6139a9565b5b60006158bc85828601615882565b92505060206158cd858286016148bf565b9150509250929050565b60006080820190506158ec6000830187614664565b6158f96020830186613d92565b6159066040830185613b43565b6159136060830184613b43565b95945050505050565b600061592782613b39565b915061593283613b39565b925082820190508082111561594a57615949614c01565b5b92915050565b7f736c6963655f6f766572666c6f77000000000000000000000000000000000000600082015250565b6000615986600e83613c33565b915061599182615950565b602082019050919050565b600060208201905081810360008301526159b581615979565b9050919050565b7f736c6963655f6f75744f66426f756e6473000000000000000000000000000000600082015250565b60006159f2601183613c33565b91506159fd826159bc565b602082019050919050565b60006020820190508181036000830152615a21816159e5565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615a5e601983613c33565b9150615a6982615a28565b602082019050919050565b60006020820190508181036000830152615a8d81615a51565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615af0603283613c33565b9150615afb82615a94565b604082019050919050565b60006020820190508181036000830152615b1f81615ae3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615b608261411b565b615b6a8185614589565b9350615b7a818560208601613c44565b80840191505092915050565b6000615b928284615b55565b915081905092915050565b600060a082019050615bb26000830188614664565b8181036020830152615bc48187614137565b9050615bd3604083018661511c565b8181036060830152615be58185614137565b90508181036080830152615bf98184614137565b90509695505050505050565b7f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c61726765600082015250565b6000615c3b602083613c33565b9150615c4682615c05565b602082019050919050565b60006020820190508181036000830152615c6a81615c2e565b9050919050565b6000608082019050615c866000830187613d92565b615c936020830186613d92565b615ca06040830185613b43565b8181036060830152615cb28184614137565b905095945050505050565b600081519050615ccc81613b99565b92915050565b600060208284031215615ce857615ce76139a9565b5b6000615cf684828501615cbd565b9150509291505056fea264697066735822122093aa0f0a0f247e724eda4844a1e6f5c4f731c090cfc7c0247ab8fbdded3adf4464736f6c634300081100330000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e40000000000000000000000000000000000000000000000000000000000030d40

Deployed Bytecode

0x6080604052600436106102655760003560e01c806370a0823111610144578063b88d4fde116100b6578063d1deba1f1161007a578063d1deba1f14610951578063df2a5b3b1461096d578063e985e9c514610996578063eb8d72b7146109d3578063f2fde38b146109fc578063f5ecbdbc14610a2557610265565b8063b88d4fde1461086e578063baf3292d14610897578063c4461834146108c0578063c87b56dd146108eb578063cbed8b9c1461092857610265565b8063950c8a7411610108578063950c8a741461075e57806395d89b41146107895780639f38369a146107b4578063a22cb465146107f1578063a6c3d1651461081a578063b353aaa71461084357610265565b806370a0823114610665578063715018a6146106a25780637533d788146106b95780638cfd8f5c146106f65780638da5cb5b1461073357610265565b80631e128296116101dd57806342842e0e116101a157806342842e0e1461054557806342d65a8d1461056e5780635b8c41e61461059757806361bc221a146105d45780636352211e146105ff57806366ad5c8a1461063c57610265565b80631e1282961461044957806323b872dd14610465578063362790f61461048e5780633d8b38f6146104cb5780633f1f4fa41461050857610265565b8063081812fc1161022f578063081812fc1461034f578063095ea7b31461038c5780630df37483146103b557806310ddb137146103de5780631249c58b1461040757806317bac0521461041e57610265565b80621d35671461026a5780629a9b7b1461029357806301ffc9a7146102be57806306fdde03146102fb57806307e0db1714610326575b600080fd5b34801561027657600080fd5b50610291600480360381019061028c9190613a92565b610a62565b005b34801561029f57600080fd5b506102a8610cb8565b6040516102b59190613b52565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613bc5565b610cbe565b6040516102f29190613c0d565b60405180910390f35b34801561030757600080fd5b50610310610da0565b60405161031d9190613cb8565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613cda565b610e32565b005b34801561035b57600080fd5b5061037660048036038101906103719190613d33565b610ec8565b6040516103839190613da1565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190613de8565b610f0e565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190613e28565b611025565b005b3480156103ea57600080fd5b5061040560048036038101906104009190613cda565b611051565b005b34801561041357600080fd5b5061041c6110e7565b005b34801561042a57600080fd5b50610433611170565b6040516104409190613b52565b60405180910390f35b610463600480360381019061045e9190613e28565b611194565b005b34801561047157600080fd5b5061048c60048036038101906104879190613e68565b61136d565b005b34801561049a57600080fd5b506104b560048036038101906104b09190613e28565b6113cd565b6040516104c29190613b52565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190613ebb565b6114dd565b6040516104ff9190613c0d565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190613cda565b6115b1565b60405161053c9190613b52565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190613e68565b6115c9565b005b34801561057a57600080fd5b5061059560048036038101906105909190613ebb565b6115e9565b005b3480156105a357600080fd5b506105be60048036038101906105b9919061404b565b611685565b6040516105cb91906140d3565b60405180910390f35b3480156105e057600080fd5b506105e96116cd565b6040516105f69190613b52565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190613d33565b6116d3565b6040516106339190613da1565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613a92565b611759565b005b34801561067157600080fd5b5061068c600480360381019061068791906140ee565b61186a565b6040516106999190613b52565b60405180910390f35b3480156106ae57600080fd5b506106b7611921565b005b3480156106c557600080fd5b506106e060048036038101906106db9190613cda565b611935565b6040516106ed9190614170565b60405180910390f35b34801561070257600080fd5b5061071d60048036038101906107189190614192565b6119d5565b60405161072a9190613b52565b60405180910390f35b34801561073f57600080fd5b506107486119fa565b6040516107559190613da1565b60405180910390f35b34801561076a57600080fd5b50610773611a23565b6040516107809190613da1565b60405180910390f35b34801561079557600080fd5b5061079e611a49565b6040516107ab9190613cb8565b60405180910390f35b3480156107c057600080fd5b506107db60048036038101906107d69190613cda565b611adb565b6040516107e89190614170565b60405180910390f35b3480156107fd57600080fd5b50610818600480360381019061081391906141fe565b611bf4565b005b34801561082657600080fd5b50610841600480360381019061083c9190613ebb565b611c0a565b005b34801561084f57600080fd5b50610858611c9e565b604051610865919061429d565b60405180910390f35b34801561087a57600080fd5b50610895600480360381019061089091906142b8565b611cc2565b005b3480156108a357600080fd5b506108be60048036038101906108b991906140ee565b611d24565b005b3480156108cc57600080fd5b506108d5611da7565b6040516108e29190613b52565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613d33565b611dad565b60405161091f9190613cb8565b60405180910390f35b34801561093457600080fd5b5061094f600480360381019061094a919061433b565b611e15565b005b61096b60048036038101906109669190613a92565b611eb7565b005b34801561097957600080fd5b50610994600480360381019061098f91906143c3565b6120fa565b005b3480156109a257600080fd5b506109bd60048036038101906109b89190614416565b6121be565b6040516109ca9190613c0d565b60405180910390f35b3480156109df57600080fd5b506109fa60048036038101906109f59190613ebb565b612252565b005b348015610a0857600080fd5b50610a236004803603810190610a1e91906140ee565b6122c5565b005b348015610a3157600080fd5b50610a4c6004803603810190610a479190614456565b612348565b604051610a599190614170565b60405180910390f35b7f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e473ffffffffffffffffffffffffffffffffffffffff16610aa16123f9565b73ffffffffffffffffffffffffffffffffffffffff1614610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90614509565b60405180910390fd5b6000600760008861ffff1661ffff1681526020019081526020016000208054610b1f90614558565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4b90614558565b8015610b985780601f10610b6d57610100808354040283529160200191610b98565b820191906000526020600020905b815481529060010190602001808311610b7b57829003601f168201915b50505050509050805186869050148015610bb3575060008151115b8015610bdc575080805190602001208686604051610bd29291906145b9565b6040518091039020145b610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1290614644565b60405180910390fd5b610caf8787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508686868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612401565b50505050505050565b600d5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d8957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d995750610d98826124cc565b5b9050919050565b606060018054610daf90614558565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddb90614558565b8015610e285780601f10610dfd57610100808354040283529160200191610e28565b820191906000526020600020905b815481529060010190602001808311610e0b57829003601f168201915b5050505050905090565b610e3a612536565b7f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e473ffffffffffffffffffffffffffffffffffffffff166307e0db17826040518263ffffffff1660e01b8152600401610e939190614673565b600060405180830381600087803b158015610ead57600080fd5b505af1158015610ec1573d6000803e3d6000fd5b5050505050565b6000610ed3826125b4565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f19826116d3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090614700565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fa86123f9565b73ffffffffffffffffffffffffffffffffffffffff161480610fd75750610fd681610fd16123f9565b6121be565b5b611016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100d90614792565b60405180910390fd5b61102083836125ff565b505050565b61102d612536565b80600960008461ffff1661ffff168152602001908152602001600020819055505050565b611059612536565b7f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e473ffffffffffffffffffffffffffffffffffffffff166310ddb137826040518263ffffffff1660e01b81526004016110b29190614673565b600060405180830381600087803b1580156110cc57600080fd5b505af11580156110e0573d6000803e3d6000fd5b5050505050565b7f00000000000000000000000000000000000000000000000000000000000493df600d5403611142576040517f7d3d824900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61114e33600d546126b8565b600d6000815460010191905081905550600c6000815460010191905081905550565b7f00000000000000000000000000000000000000000000000000000000000493df81565b61119d816116d3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611201576040517f59dc379f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c60008154600190039190508190555061121b816128d5565b600033826040516020016112309291906147b2565b6040516020818303038152906040529050600060019050600062055730905060008282604051602001611264929190614832565b604051602081830303815290604052905060007f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e473ffffffffffffffffffffffffffffffffffffffff166340a7bb108830886000876040518663ffffffff1660e01b81526004016112d995949392919061485e565b6040805180830381865afa1580156112f5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131991906148d4565b509050803411611355576040517f1c26714c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61136487863360008634612a23565b50505050505050565b61137e6113786123f9565b82612bb9565b6113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b490614986565b60405180910390fd5b6113c8838383612c4e565b505050565b60008033836040516020016113e39291906147b2565b6040516020818303038152906040529050600060019050600062055730905060008282604051602001611417929190614832565b604051602081830303815290604052905060007f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e473ffffffffffffffffffffffffffffffffffffffff166340a7bb108930886000876040518663ffffffff1660e01b815260040161148c95949392919061485e565b6040805180830381865afa1580156114a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cc91906148d4565b509050809550505050505092915050565b600080600760008661ffff1661ffff168152602001908152602001600020805461150690614558565b80601f016020809104026020016040519081016040528092919081815260200182805461153290614558565b801561157f5780601f106115545761010080835404028352916020019161157f565b820191906000526020600020905b81548152906001019060200180831161156257829003601f168201915b5050505050905083836040516115969291906145b9565b60405180910390208180519060200120149150509392505050565b60096020528060005260406000206000915090505481565b6115e483838360405180602001604052806000815250611cc2565b505050565b6115f1612536565b7f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e473ffffffffffffffffffffffffffffffffffffffff166342d65a8d8484846040518463ffffffff1660e01b815260040161164e939291906149d3565b600060405180830381600087803b15801561166857600080fd5b505af115801561167c573d6000803e3d6000fd5b50505050505050565b600b6020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050505481565b600c5481565b6000806116df83612f47565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790614a51565b60405180910390fd5b80915050919050565b3073ffffffffffffffffffffffffffffffffffffffff166117786123f9565b73ffffffffffffffffffffffffffffffffffffffff16146117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c590614ae3565b60405180910390fd5b6118628686868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508585858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612f84565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190614b75565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611929612536565b611933600061300a565b565b6007602052806000526040600020600091509050805461195490614558565b80601f016020809104026020016040519081016040528092919081815260200182805461198090614558565b80156119cd5780601f106119a2576101008083540402835291602001916119cd565b820191906000526020600020905b8154815290600101906020018083116119b057829003601f168201915b505050505081565b6008602052816000526040600020602052806000526040600020600091509150505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060028054611a5890614558565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8490614558565b8015611ad15780601f10611aa657610100808354040283529160200191611ad1565b820191906000526020600020905b815481529060010190602001808311611ab457829003601f168201915b5050505050905090565b60606000600760008461ffff1661ffff1681526020019081526020016000208054611b0590614558565b80601f0160208091040260200160405190810160405280929190818152602001828054611b3190614558565b8015611b7e5780601f10611b5357610100808354040283529160200191611b7e565b820191906000526020600020905b815481529060010190602001808311611b6157829003601f168201915b505050505090506000815103611bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc090614be1565b60405180910390fd5b611bec600060148351611bdc9190614c30565b836130ce9092919063ffffffff16565b915050919050565b611c06611bff6123f9565b83836131ec565b5050565b611c12612536565b818130604051602001611c2793929190614cac565b604051602081830303815290604052600760008561ffff1661ffff1681526020019081526020016000209081611c5d9190614e78565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce838383604051611c91939291906149d3565b60405180910390a1505050565b7f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e481565b611cd3611ccd6123f9565b83612bb9565b611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0990614986565b60405180910390fd5b611d1e84848484613358565b50505050565b611d2c612536565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b81604051611d9c9190613da1565b60405180910390a150565b61271081565b6060611db8826125b4565b6000611dc26133b4565b90506000815111611de25760405180602001604052806000815250611e0d565b80611dec846133cb565b604051602001611dfd929190614f86565b6040516020818303038152906040525b915050919050565b611e1d612536565b7f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e473ffffffffffffffffffffffffffffffffffffffff1663cbed8b9c86868686866040518663ffffffff1660e01b8152600401611e7e959493929190614faa565b600060405180830381600087803b158015611e9857600080fd5b505af1158015611eac573d6000803e3d6000fd5b505050505050505050565b6000600b60008861ffff1661ffff1681526020019081526020016000208686604051611ee49291906145b9565b908152602001604051809103902060008567ffffffffffffffff1667ffffffffffffffff1681526020019081526020016000205490506000801b8103611f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f569061506a565b60405180910390fd5b808383604051611f709291906145b9565b604051809103902014611fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faf906150fc565b60405180910390fd5b6000801b600b60008961ffff1661ffff1681526020019081526020016000208787604051611fe79291906145b9565b908152602001604051809103902060008667ffffffffffffffff1667ffffffffffffffff168152602001908152602001600020819055506120b28787878080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508686868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612f84565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e587878787856040516120e995949392919061512b565b60405180910390a150505050505050565b612102612536565b60008111612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c906151c5565b60405180910390fd5b80600860008561ffff1661ffff16815260200190815260200160002060008461ffff1661ffff168152602001908152602001600020819055507f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac08383836040516121b1939291906151e5565b60405180910390a1505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61225a612536565b8181600760008661ffff1661ffff1681526020019081526020016000209182612284929190615227565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab8383836040516122b8939291906149d3565b60405180910390a1505050565b6122cd612536565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361233c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233390615369565b60405180910390fd5b6123458161300a565b50565b60607f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e473ffffffffffffffffffffffffffffffffffffffff1663f5ecbdbc868630866040518563ffffffff1660e01b81526004016123a99493929190615389565b600060405180830381865afa1580156123c6573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906123ef919061543e565b9050949350505050565b600033905090565b6000806124ad5a60966366ad5c8a60e01b898989896040516024016124299493929190615487565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050503073ffffffffffffffffffffffffffffffffffffffff16613499909392919063ffffffff16565b91509150816124c4576124c38686868685613531565b5b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61253e6123f9565b73ffffffffffffffffffffffffffffffffffffffff1661255c6119fa565b73ffffffffffffffffffffffffffffffffffffffff16146125b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a990615526565b60405180910390fd5b565b6125bd816135df565b6125fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f390614a51565b60405180910390fd5b50565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612672836116d3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271e90615592565b60405180910390fd5b612730816135df565b15612770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612767906155fe565b60405180910390fd5b61277e600083836001613620565b612787816135df565b156127c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127be906155fe565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128d1600083836001613626565b5050565b60006128e0826116d3565b90506128f0816000846001613620565b6128f9826116d3565b90506005600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a1f816000846001613626565b5050565b6000600760008861ffff1661ffff1681526020019081526020016000208054612a4b90614558565b80601f0160208091040260200160405190810160405280929190818152602001828054612a7790614558565b8015612ac45780601f10612a9957610100808354040283529160200191612ac4565b820191906000526020600020905b815481529060010190602001808311612aa757829003601f168201915b505050505090506000815103612b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0690615690565b60405180910390fd5b612b1a87875161362c565b7f0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e473ffffffffffffffffffffffffffffffffffffffff1663c58031008389848a8a8a8a6040518863ffffffff1660e01b8152600401612b7e969594939291906156d1565b6000604051808303818588803b158015612b9757600080fd5b505af1158015612bab573d6000803e3d6000fd5b505050505050505050505050565b600080612bc5836116d3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c075750612c0681856121be565b5b80612c4557508373ffffffffffffffffffffffffffffffffffffffff16612c2d84610ec8565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c6e826116d3565b73ffffffffffffffffffffffffffffffffffffffff1614612cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbb906157b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2a9061584b565b60405180910390fd5b612d408383836001613620565b8273ffffffffffffffffffffffffffffffffffffffff16612d60826116d3565b73ffffffffffffffffffffffffffffffffffffffff1614612db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dad906157b9565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f428383836001613626565b505050565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006014840151905060008083806020019051810190612fa49190615897565b91509150612fb282826126b8565b600c60008154600101919050819055507f31ae2bb20187b24b2039def7711f43f56311ec96de17b7ef01d1b1da40eb2eee878483600c54604051612ff994939291906158d7565b60405180910390a150505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b606081601f836130de919061591c565b101561311f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131169061599c565b60405180910390fd5b818361312b919061591c565b8451101561316e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316590615a08565b60405180910390fd5b606082156000811461318f57604051915060008252602082016040526131e0565b6040519150601f8416801560200281840101858101878315602002848b0101015b818310156131cd57805183526020830192506020810190506131b0565b50868552601f19601f8301166040525050505b50809150509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361325a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325190615a74565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161334b9190613c0d565b60405180910390a3505050565b613363848484612c4e565b61336f848484846136a2565b6133ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a590615b06565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060600060016133da84613829565b01905060008167ffffffffffffffff8111156133f9576133f8613f20565b5b6040519080825280601f01601f19166020018201604052801561342b5781602001600182028036833780820191505090505b509050600082602001820190505b60011561348e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161348257613481615b26565b5b04945060008503613439575b819350505050919050565b6000606060008060008661ffff1667ffffffffffffffff8111156134c0576134bf613f20565b5b6040519080825280601f01601f1916602001820160405280156134f25781602001600182028036833780820191505090505b50905060008087516020890160008d8df191503d925086831115613514578692505b828152826000602083013e81819450945050505094509492505050565b8180519060200120600b60008761ffff1661ffff168152602001908152602001600020856040516135629190615b86565b908152602001604051809103902060008567ffffffffffffffff1667ffffffffffffffff168152602001908152602001600020819055507fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c85858585856040516135d0959493929190615b9d565b60405180910390a15050505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661360183612f47565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b6000600960008461ffff1661ffff1681526020019081526020016000205490506000810361365a5761271090505b8082111561369d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369490615c51565b60405180910390fd5b505050565b60006136c38473ffffffffffffffffffffffffffffffffffffffff1661397c565b1561381c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136ec6123f9565b8786866040518563ffffffff1660e01b815260040161370e9493929190615c71565b6020604051808303816000875af192505050801561374a57506040513d601f19601f820116820180604052508101906137479190615cd2565b60015b6137cc573d806000811461377a576040519150601f19603f3d011682016040523d82523d6000602084013e61377f565b606091505b5060008151036137c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137bb90615b06565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613821565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613887577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161387d5761387c615b26565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106138c4576d04ee2d6d415b85acef810000000083816138ba576138b9615b26565b5b0492506020810190505b662386f26fc1000083106138f357662386f26fc1000083816138e9576138e8615b26565b5b0492506010810190505b6305f5e100831061391c576305f5e100838161391257613911615b26565b5b0492506008810190505b612710831061394157612710838161393757613936615b26565b5b0492506004810190505b60648310613964576064838161395a57613959615b26565b5b0492506002810190505b600a8310613973576001810190505b80915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600061ffff82169050919050565b6139ca816139b3565b81146139d557600080fd5b50565b6000813590506139e7816139c1565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613a1257613a116139ed565b5b8235905067ffffffffffffffff811115613a2f57613a2e6139f2565b5b602083019150836001820283011115613a4b57613a4a6139f7565b5b9250929050565b600067ffffffffffffffff82169050919050565b613a6f81613a52565b8114613a7a57600080fd5b50565b600081359050613a8c81613a66565b92915050565b60008060008060008060808789031215613aaf57613aae6139a9565b5b6000613abd89828a016139d8565b965050602087013567ffffffffffffffff811115613ade57613add6139ae565b5b613aea89828a016139fc565b95509550506040613afd89828a01613a7d565b935050606087013567ffffffffffffffff811115613b1e57613b1d6139ae565b5b613b2a89828a016139fc565b92509250509295509295509295565b6000819050919050565b613b4c81613b39565b82525050565b6000602082019050613b676000830184613b43565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613ba281613b6d565b8114613bad57600080fd5b50565b600081359050613bbf81613b99565b92915050565b600060208284031215613bdb57613bda6139a9565b5b6000613be984828501613bb0565b91505092915050565b60008115159050919050565b613c0781613bf2565b82525050565b6000602082019050613c226000830184613bfe565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c62578082015181840152602081019050613c47565b60008484015250505050565b6000601f19601f8301169050919050565b6000613c8a82613c28565b613c948185613c33565b9350613ca4818560208601613c44565b613cad81613c6e565b840191505092915050565b60006020820190508181036000830152613cd28184613c7f565b905092915050565b600060208284031215613cf057613cef6139a9565b5b6000613cfe848285016139d8565b91505092915050565b613d1081613b39565b8114613d1b57600080fd5b50565b600081359050613d2d81613d07565b92915050565b600060208284031215613d4957613d486139a9565b5b6000613d5784828501613d1e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d8b82613d60565b9050919050565b613d9b81613d80565b82525050565b6000602082019050613db66000830184613d92565b92915050565b613dc581613d80565b8114613dd057600080fd5b50565b600081359050613de281613dbc565b92915050565b60008060408385031215613dff57613dfe6139a9565b5b6000613e0d85828601613dd3565b9250506020613e1e85828601613d1e565b9150509250929050565b60008060408385031215613e3f57613e3e6139a9565b5b6000613e4d858286016139d8565b9250506020613e5e85828601613d1e565b9150509250929050565b600080600060608486031215613e8157613e806139a9565b5b6000613e8f86828701613dd3565b9350506020613ea086828701613dd3565b9250506040613eb186828701613d1e565b9150509250925092565b600080600060408486031215613ed457613ed36139a9565b5b6000613ee2868287016139d8565b935050602084013567ffffffffffffffff811115613f0357613f026139ae565b5b613f0f868287016139fc565b92509250509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f5882613c6e565b810181811067ffffffffffffffff82111715613f7757613f76613f20565b5b80604052505050565b6000613f8a61399f565b9050613f968282613f4f565b919050565b600067ffffffffffffffff821115613fb657613fb5613f20565b5b613fbf82613c6e565b9050602081019050919050565b82818337600083830152505050565b6000613fee613fe984613f9b565b613f80565b90508281526020810184848401111561400a57614009613f1b565b5b614015848285613fcc565b509392505050565b600082601f830112614032576140316139ed565b5b8135614042848260208601613fdb565b91505092915050565b600080600060608486031215614064576140636139a9565b5b6000614072868287016139d8565b935050602084013567ffffffffffffffff811115614093576140926139ae565b5b61409f8682870161401d565b92505060406140b086828701613a7d565b9150509250925092565b6000819050919050565b6140cd816140ba565b82525050565b60006020820190506140e860008301846140c4565b92915050565b600060208284031215614104576141036139a9565b5b600061411284828501613dd3565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60006141428261411b565b61414c8185614126565b935061415c818560208601613c44565b61416581613c6e565b840191505092915050565b6000602082019050818103600083015261418a8184614137565b905092915050565b600080604083850312156141a9576141a86139a9565b5b60006141b7858286016139d8565b92505060206141c8858286016139d8565b9150509250929050565b6141db81613bf2565b81146141e657600080fd5b50565b6000813590506141f8816141d2565b92915050565b60008060408385031215614215576142146139a9565b5b600061422385828601613dd3565b9250506020614234858286016141e9565b9150509250929050565b6000819050919050565b600061426361425e61425984613d60565b61423e565b613d60565b9050919050565b600061427582614248565b9050919050565b60006142878261426a565b9050919050565b6142978161427c565b82525050565b60006020820190506142b2600083018461428e565b92915050565b600080600080608085870312156142d2576142d16139a9565b5b60006142e087828801613dd3565b94505060206142f187828801613dd3565b935050604061430287828801613d1e565b925050606085013567ffffffffffffffff811115614323576143226139ae565b5b61432f8782880161401d565b91505092959194509250565b600080600080600060808688031215614357576143566139a9565b5b6000614365888289016139d8565b9550506020614376888289016139d8565b945050604061438788828901613d1e565b935050606086013567ffffffffffffffff8111156143a8576143a76139ae565b5b6143b4888289016139fc565b92509250509295509295909350565b6000806000606084860312156143dc576143db6139a9565b5b60006143ea868287016139d8565b93505060206143fb868287016139d8565b925050604061440c86828701613d1e565b9150509250925092565b6000806040838503121561442d5761442c6139a9565b5b600061443b85828601613dd3565b925050602061444c85828601613dd3565b9150509250929050565b600080600080608085870312156144705761446f6139a9565b5b600061447e878288016139d8565b945050602061448f878288016139d8565b93505060406144a087828801613dd3565b92505060606144b187828801613d1e565b91505092959194509250565b7f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c65720000600082015250565b60006144f3601e83613c33565b91506144fe826144bd565b602082019050919050565b60006020820190508181036000830152614522816144e6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061457057607f821691505b60208210810361458357614582614529565b5b50919050565b600081905092915050565b60006145a08385614589565b93506145ad838584613fcc565b82840190509392505050565b60006145c6828486614594565b91508190509392505050565b7f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f60008201527f6e74726163740000000000000000000000000000000000000000000000000000602082015250565b600061462e602683613c33565b9150614639826145d2565b604082019050919050565b6000602082019050818103600083015261465d81614621565b9050919050565b61466d816139b3565b82525050565b60006020820190506146886000830184614664565b92915050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006146ea602183613c33565b91506146f58261468e565b604082019050919050565b60006020820190508181036000830152614719816146dd565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b600061477c603d83613c33565b915061478782614720565b604082019050919050565b600060208201905081810360008301526147ab8161476f565b9050919050565b60006040820190506147c76000830185613d92565b6147d46020830184613b43565b9392505050565b60008160f01b9050919050565b60006147f3826147db565b9050919050565b61480b614806826139b3565b6147e8565b82525050565b6000819050919050565b61482c61482782613b39565b614811565b82525050565b600061483e82856147fa565b60028201915061484e828461481b565b6020820191508190509392505050565b600060a0820190506148736000830188614664565b6148806020830187613d92565b81810360408301526148928186614137565b90506148a16060830185613bfe565b81810360808301526148b38184614137565b90509695505050505050565b6000815190506148ce81613d07565b92915050565b600080604083850312156148eb576148ea6139a9565b5b60006148f9858286016148bf565b925050602061490a858286016148bf565b9150509250929050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000614970602d83613c33565b915061497b82614914565b604082019050919050565b6000602082019050818103600083015261499f81614963565b9050919050565b60006149b28385614126565b93506149bf838584613fcc565b6149c883613c6e565b840190509392505050565b60006040820190506149e86000830186614664565b81810360208301526149fb8184866149a6565b9050949350505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614a3b601883613c33565b9150614a4682614a05565b602082019050919050565b60006020820190508181036000830152614a6a81614a2e565b9050919050565b7f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d75737420626560008201527f204c7a4170700000000000000000000000000000000000000000000000000000602082015250565b6000614acd602683613c33565b9150614ad882614a71565b604082019050919050565b60006020820190508181036000830152614afc81614ac0565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614b5f602983613c33565b9150614b6a82614b03565b604082019050919050565b60006020820190508181036000830152614b8e81614b52565b9050919050565b7f4c7a4170703a206e6f20747275737465642070617468207265636f7264000000600082015250565b6000614bcb601d83613c33565b9150614bd682614b95565b602082019050919050565b60006020820190508181036000830152614bfa81614bbe565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614c3b82613b39565b9150614c4683613b39565b9250828203905081811115614c5e57614c5d614c01565b5b92915050565b60008160601b9050919050565b6000614c7c82614c64565b9050919050565b6000614c8e82614c71565b9050919050565b614ca6614ca182613d80565b614c83565b82525050565b6000614cb9828587614594565b9150614cc58284614c95565b601482019150819050949350505050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614d387fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614cfb565b614d428683614cfb565b95508019841693508086168417925050509392505050565b6000614d75614d70614d6b84613b39565b61423e565b613b39565b9050919050565b6000819050919050565b614d8f83614d5a565b614da3614d9b82614d7c565b848454614d08565b825550505050565b600090565b614db8614dab565b614dc3818484614d86565b505050565b5b81811015614de757614ddc600082614db0565b600181019050614dc9565b5050565b601f821115614e2c57614dfd81614cd6565b614e0684614ceb565b81016020851015614e15578190505b614e29614e2185614ceb565b830182614dc8565b50505b505050565b600082821c905092915050565b6000614e4f60001984600802614e31565b1980831691505092915050565b6000614e688383614e3e565b9150826002028217905092915050565b614e818261411b565b67ffffffffffffffff811115614e9a57614e99613f20565b5b614ea48254614558565b614eaf828285614deb565b600060209050601f831160018114614ee25760008415614ed0578287015190505b614eda8582614e5c565b865550614f42565b601f198416614ef086614cd6565b60005b82811015614f1857848901518255600182019150602085019450602081019050614ef3565b86831015614f355784890151614f31601f891682614e3e565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b6000614f6082613c28565b614f6a8185614f4a565b9350614f7a818560208601613c44565b80840191505092915050565b6000614f928285614f55565b9150614f9e8284614f55565b91508190509392505050565b6000608082019050614fbf6000830188614664565b614fcc6020830187614664565b614fd96040830186613b43565b8181036060830152614fec8184866149a6565b90509695505050505050565b7f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360008201527f6167650000000000000000000000000000000000000000000000000000000000602082015250565b6000615054602383613c33565b915061505f82614ff8565b604082019050919050565b6000602082019050818103600083015261508381615047565b9050919050565b7f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f6160008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b60006150e6602183613c33565b91506150f18261508a565b604082019050919050565b60006020820190508181036000830152615115816150d9565b9050919050565b61512581613a52565b82525050565b60006080820190506151406000830188614664565b81810360208301526151538186886149a6565b9050615162604083018561511c565b61516f60608301846140c4565b9695505050505050565b7f4c7a4170703a20696e76616c6964206d696e4761730000000000000000000000600082015250565b60006151af601583613c33565b91506151ba82615179565b602082019050919050565b600060208201905081810360008301526151de816151a2565b9050919050565b60006060820190506151fa6000830186614664565b6152076020830185614664565b6152146040830184613b43565b949350505050565b600082905092915050565b615231838361521c565b67ffffffffffffffff81111561524a57615249613f20565b5b6152548254614558565b61525f828285614deb565b6000601f83116001811461528e576000841561527c578287013590505b6152868582614e5c565b8655506152ee565b601f19841661529c86614cd6565b60005b828110156152c45784890135825560018201915060208501945060208101905061529f565b868310156152e157848901356152dd601f891682614e3e565b8355505b6001600288020188555050505b50505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615353602683613c33565b915061535e826152f7565b604082019050919050565b6000602082019050818103600083015261538281615346565b9050919050565b600060808201905061539e6000830187614664565b6153ab6020830186614664565b6153b86040830185613d92565b6153c56060830184613b43565b95945050505050565b60006153e16153dc84613f9b565b613f80565b9050828152602081018484840111156153fd576153fc613f1b565b5b615408848285613c44565b509392505050565b600082601f830112615425576154246139ed565b5b81516154358482602086016153ce565b91505092915050565b600060208284031215615454576154536139a9565b5b600082015167ffffffffffffffff811115615472576154716139ae565b5b61547e84828501615410565b91505092915050565b600060808201905061549c6000830187614664565b81810360208301526154ae8186614137565b90506154bd604083018561511c565b81810360608301526154cf8184614137565b905095945050505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615510602083613c33565b915061551b826154da565b602082019050919050565b6000602082019050818103600083015261553f81615503565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061557c602083613c33565b915061558782615546565b602082019050919050565b600060208201905081810360008301526155ab8161556f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006155e8601c83613c33565b91506155f3826155b2565b602082019050919050565b60006020820190508181036000830152615617816155db565b9050919050565b7f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060008201527f61207472757374656420736f7572636500000000000000000000000000000000602082015250565b600061567a603083613c33565b91506156858261561e565b604082019050919050565b600060208201905081810360008301526156a98161566d565b9050919050565b60006156bb82613d60565b9050919050565b6156cb816156b0565b82525050565b600060c0820190506156e66000830189614664565b81810360208301526156f88188614137565b9050818103604083015261570c8187614137565b905061571b60608301866156c2565b6157286080830185613d92565b81810360a083015261573a8184614137565b9050979650505050505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006157a3602583613c33565b91506157ae82615747565b604082019050919050565b600060208201905081810360008301526157d281615796565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615835602483613c33565b9150615840826157d9565b604082019050919050565b6000602082019050818103600083015261586481615828565b9050919050565b615874816156b0565b811461587f57600080fd5b50565b6000815190506158918161586b565b92915050565b600080604083850312156158ae576158ad6139a9565b5b60006158bc85828601615882565b92505060206158cd858286016148bf565b9150509250929050565b60006080820190506158ec6000830187614664565b6158f96020830186613d92565b6159066040830185613b43565b6159136060830184613b43565b95945050505050565b600061592782613b39565b915061593283613b39565b925082820190508082111561594a57615949614c01565b5b92915050565b7f736c6963655f6f766572666c6f77000000000000000000000000000000000000600082015250565b6000615986600e83613c33565b915061599182615950565b602082019050919050565b600060208201905081810360008301526159b581615979565b9050919050565b7f736c6963655f6f75744f66426f756e6473000000000000000000000000000000600082015250565b60006159f2601183613c33565b91506159fd826159bc565b602082019050919050565b60006020820190508181036000830152615a21816159e5565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615a5e601983613c33565b9150615a6982615a28565b602082019050919050565b60006020820190508181036000830152615a8d81615a51565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615af0603283613c33565b9150615afb82615a94565b604082019050919050565b60006020820190508181036000830152615b1f81615ae3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615b608261411b565b615b6a8185614589565b9350615b7a818560208601613c44565b80840191505092915050565b6000615b928284615b55565b915081905092915050565b600060a082019050615bb26000830188614664565b8181036020830152615bc48187614137565b9050615bd3604083018661511c565b8181036060830152615be58185614137565b90508181036080830152615bf98184614137565b90509695505050505050565b7f4c7a4170703a207061796c6f61642073697a6520697320746f6f206c61726765600082015250565b6000615c3b602083613c33565b9150615c4682615c05565b602082019050919050565b60006020820190508181036000830152615c6a81615c2e565b9050919050565b6000608082019050615c866000830187613d92565b615c936020830186613d92565b615ca06040830185613b43565b8181036060830152615cb28184614137565b905095945050505050565b600081519050615ccc81613b99565b92915050565b600060208284031215615ce857615ce76139a9565b5b6000615cf684828501615cbd565b9150509291505056fea264697066735822122093aa0f0a0f247e724eda4844a1e6f5c4f731c090cfc7c0247ab8fbdded3adf4464736f6c63430008110033

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

0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e40000000000000000000000000000000000000000000000000000000000030d40

-----Decoded View---------------
Arg [0] : _endpoint (address): 0x9740FF91F1985D8d2B71494aE1A2f723bb3Ed9E4
Arg [1] : _startTokenId (uint256): 200000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000009740ff91f1985d8d2b71494ae1a2f723bb3ed9e4
Arg [1] : 0000000000000000000000000000000000000000000000000000000000030d40


Deployed Bytecode Sourcemap

366:2854:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1263:891:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;460:29:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1570:300:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2471:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5140:121:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3935:167:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3468:406;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7158:162:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5267:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;896:221:11;;;;;;;;;;;;;:::i;:::-;;495:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1123:911;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4612:326:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2670:548:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7415:269:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;817:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5004:179:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5400:198:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;617:93:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;432:22:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2190:219:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2230:414:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1929:204:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;689:51:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;746:65;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;876:23:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2633:102:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6304:340:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4169:153:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5964:334:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;637:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5249:314:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6650:133:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;575:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2801:276:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4894:240:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2863:863:13;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6789:310:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4388:162:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5741:217:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4498:337:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1263:891;1552:10;1528:35;;:12;:10;:12::i;:::-;:35;;;1507:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;1630:26;1659:19;:32;1679:11;1659:32;;;;;;;;;;;;;;;1630:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1876:13;:20;1854:11;;:18;;:42;:86;;;;;1939:1;1916:13;:20;:24;1854:86;:156;;;;;1996:13;1986:24;;;;;;1970:11;;1960:22;;;;;;;:::i;:::-;;;;;;;;:50;1854:156;1833:241;;;;;;;;;;;;:::i;:::-;;;;;;;;;2085:62;2104:11;2117;;2085:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2130:6;2138:8;;2085:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:18;:62::i;:::-;1432:722;1263:891;;;;;;:::o;460:29:11:-;;;;:::o;1570:300:1:-;1672:4;1722:25;1707:40;;;:11;:40;;;;:104;;;;1778:33;1763:48;;;:11;:48;;;;1707:104;:156;;;;1827:36;1851:11;1827:23;:36::i;:::-;1707:156;1688:175;;1570:300;;;:::o;2471:98::-;2525:13;2557:5;2550:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2471:98;:::o;5140:121:12:-;1094:13:0;:11;:13::i;:::-;5219:10:12::1;:25;;;5245:8;5219:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;5140:121:::0;:::o;3935:167:1:-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;4071:15;:24;4087:7;4071:24;;;;;;;;;;;;;;;;;;;;;4064:31;;3935:167;;;:::o;3468:406::-;3548:13;3564:23;3579:7;3564:14;:23::i;:::-;3548:39;;3611:5;3605:11;;:2;:11;;;3597:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3702:5;3686:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3711:37;3728:5;3735:12;:10;:12::i;:::-;3711:16;:37::i;:::-;3686:62;3665:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3538:336;3468:406;;:::o;7158:162:12:-;1094:13:0;:11;:13::i;:::-;7308:5:12::1;7270:22;:35;7293:11;7270:35;;;;;;;;;;;;;;;:43;;;;7158:162:::0;;:::o;5267:127::-;1094:13:0;:11;:13::i;:::-;5349:10:12::1;:28;;;5378:8;5349:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;5267:127:::0;:::o;896:221:11:-;953:6;935:14;;:24;931:53;;968:16;;;;;;;;;;;;;;931:53;994:33;1000:10;1012:14;;994:5;:33::i;:::-;1063:14;;1061:16;;;;;;;;;;;1093:7;;1091:9;;;;;;;;;;;896:221::o;495:31::-;;;:::o;1123:911::-;1222:16;1230:7;1222;:16::i;:::-;1208:30;;:10;:30;;;1204:58;;1247:15;;;;;;;;;;;;;;1204:58;1338:7;;1336:9;;;;;;;;;;;;1365:14;1371:7;1365:5;:14::i;:::-;1390:20;1424:10;1436:7;1413:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1390:54;;1454:14;1471:1;1454:18;;1482:23;1508:6;1482:32;;1524:26;1570:7;1579:15;1553:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1524:71;;1607:18;1631:10;:23;;;1668:10;1700:4;1719:7;1740:5;1759:13;1631:151;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1606:176;;;1809:10;1796:9;:23;1792:53;;1828:17;;;;;;;;;;;;;;1792:53;1856:171;1877:10;1901:7;1930:10;1963:3;1981:13;2008:9;1856:7;:171::i;:::-;1194:840;;;;;1123:911;;:::o;4612:326:1:-;4801:41;4820:12;:10;:12::i;:::-;4834:7;4801:18;:41::i;:::-;4793:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;4903:28;4913:4;4919:2;4923:7;4903:9;:28::i;:::-;4612:326;;;:::o;2670:548:11:-;2773:7;2792:20;2826:10;2838:7;2815:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2792:54;;2856:14;2873:1;2856:18;;2884:23;2910:6;2884:32;;2926:26;2972:7;2981:15;2955:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2926:71;;3009:18;3033:10;:23;;;3070:10;3102:4;3121:7;3142:5;3161:13;3033:151;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3008:176;;;3201:10;3194:17;;;;;;;2670:548;;;;:::o;7415:269:12:-;7533:4;7549:26;7578:19;:32;7598:11;7578:32;;;;;;;;;;;;;;;7549:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7665:11;;7655:22;;;;;;;:::i;:::-;;;;;;;;7637:13;7627:24;;;;;;:50;7620:57;;;7415:269;;;;;:::o;817:53::-;;;;;;;;;;;;;;;;;:::o;5004:179:1:-;5137:39;5154:4;5160:2;5164:7;5137:39;;;;;;;;;;;;:16;:39::i;:::-;5004:179;;;:::o;5400:198:12:-;1094:13:0;:11;:13::i;:::-;5536:10:12::1;:29;;;5566:11;5579;;5536:55;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;5400:198:::0;;;:::o;617:93:13:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;432:22:11:-;;;;:::o;2190:219:1:-;2262:7;2281:13;2297:17;2306:7;2297:8;:17::i;:::-;2281:33;;2349:1;2332:19;;:5;:19;;;2324:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2397:5;2390:12;;;2190:219;;;:::o;2230:414:13:-;2493:4;2469:29;;:12;:10;:12::i;:::-;:29;;;2448:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;2572:65;2594:11;2607;;2572:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2620:6;2628:8;;2572:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:21;:65::i;:::-;2230:414;;;;;;:::o;1929:204:1:-;2001:7;2045:1;2028:19;;:5;:19;;;2020:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2110:9;:16;2120:5;2110:16;;;;;;;;;;;;;;;;2103:23;;1929:204;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;689:51:12:-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;746:65::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;876:23:12:-;;;;;;;;;;;;;:::o;2633:102:1:-;2689:13;2721:7;2714:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2633:102;:::o;6304:340:12:-;6397:12;6421:17;6441:19;:35;6461:14;6441:35;;;;;;;;;;;;;;;6421:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6509:1;6494:4;:11;:16;6486:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;6561:31;6572:1;6589:2;6575:4;:11;:16;;;;:::i;:::-;6561:4;:10;;:31;;;;;:::i;:::-;6554:38;;;6304:340;;;:::o;4169:153:1:-;4263:52;4282:12;:10;:12::i;:::-;4296:8;4306;4263:18;:52::i;:::-;4169:153;;:::o;5964:334:12:-;1094:13:0;:11;:13::i;:::-;6170:14:12::1;;6206:4;6140:81;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6102:19;:35;6122:14;6102:35;;;;;;;;;;;;;;;:119;;;;;;:::i;:::-;;6236:55;6260:14;6276;;6236:55;;;;;;;;:::i;:::-;;;;;;;;5964:334:::0;;;:::o;637:46::-;;;:::o;5249:314:1:-;5417:41;5436:12;:10;:12::i;:::-;5450:7;5417:18;:41::i;:::-;5409:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;5518:38;5532:4;5538:2;5542:7;5551:4;5518:13;:38::i;:::-;5249:314;;;;:::o;6650:133:12:-;1094:13:0;:11;:13::i;:::-;6730:9:12::1;6719:8;;:20;;;;;;;;;;;;;;;;;;6754:22;6766:9;6754:22;;;;;;:::i;:::-;;;;;;;;6650:133:::0;:::o;575:55::-;625:5;575:55;:::o;2801:276:1:-;2874:13;2899:23;2914:7;2899:14;:23::i;:::-;2933:21;2957:10;:8;:10::i;:::-;2933:34;;3008:1;2990:7;2984:21;:25;:86;;;;;;;;;;;;;;;;;3036:7;3045:18;:7;:16;:18::i;:::-;3019:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2984:86;2977:93;;;2801:276;;;:::o;4894:240:12:-;1094:13:0;:11;:13::i;:::-;5065:10:12::1;:20;;;5086:8;5096;5106:11;5119:7;;5065:62;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;4894:240:::0;;;;;:::o;2863:863:13:-;3088:19;3110:14;:27;3125:11;3110:27;;;;;;;;;;;;;;;3138:11;;3110:40;;;;;;;:::i;:::-;;;;;;;;;;;;;:48;3151:6;3110:48;;;;;;;;;;;;;;;;3088:70;;3212:1;3204:10;;3189:11;:25;3168:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;3329:11;3316:8;;3306:19;;;;;;;:::i;:::-;;;;;;;;:34;3285:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;3504:1;3496:10;;3445:14;:27;3460:11;3445:27;;;;;;;;;;;;;;;3473:11;;3445:40;;;;;;;:::i;:::-;;;;;;;;;;;;;:48;3486:6;3445:48;;;;;;;;;;;;;;;:61;;;;3573:65;3595:11;3608;;3573:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3621:6;3629:8;;3573:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:21;:65::i;:::-;3653:66;3673:11;3686;;3699:6;3707:11;3653:66;;;;;;;;;;:::i;:::-;;;;;;;;3034:692;2863:863;;;;;;:::o;6789:310:12:-;1094:13:0;:11;:13::i;:::-;6942:1:12::1;6932:7;:11;6924:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;7023:7;6979:15;:28;6995:11;6979:28;;;;;;;;;;;;;;;:41;7008:11;6979:41;;;;;;;;;;;;;;;:51;;;;7045:47;7058:11;7071;7084:7;7045:47;;;;;;;;:::i;:::-;;;;;;;;6789:310:::0;;;:::o;4388:162:1:-;4485:4;4508:18;:25;4527:5;4508:25;;;;;;;;;;;;;;;:35;4534:8;4508:35;;;;;;;;;;;;;;;;;;;;;;;;;4501:42;;4388:162;;;;:::o;5741:217:12:-;1094:13:0;:11;:13::i;:::-;5895:5:12::1;;5860:19;:32;5880:11;5860:32;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;5915:36;5932:11;5945:5;;5915:36;;;;;;;;:::i;:::-;;;;;;;;5741:217:::0;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;::::0;2161:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;4498:337:12:-;4639:12;4682:10;:20;;;4720:8;4746;4780:4;4803:11;4682:146;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4663:165;;4498:337;;;;;;:::o;640:96:6:-;693:7;719:10;712:17;;640:96;:::o;1072:780:13:-;1259:12;1273:19;1296:293;1343:9;1366:3;1423:34;;;1475:11;1504;1533:6;1557:8;1383:196;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1304:4;1296:33;;;;:293;;;;;;:::i;:::-;1258:331;;;;1647:7;1642:204;;1670:165;1707:11;1736;1765:6;1789:8;1815:6;1670:19;:165::i;:::-;1642:204;1248:604;;1072:780;;;;:::o;829:155:8:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;13466:133:1:-;13547:16;13555:7;13547;:16::i;:::-;13539:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;13466:133;:::o;12768:171::-;12869:2;12842:15;:24;12858:7;12842:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;12924:7;12920:2;12886:46;;12895:23;12910:7;12895:14;:23::i;:::-;12886:46;;;;;;;;;;;;12768:171;;:::o;9091:920::-;9184:1;9170:16;;:2;:16;;;9162:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9242:16;9250:7;9242;:16::i;:::-;9241:17;9233:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9302:48;9331:1;9335:2;9339:7;9348:1;9302:20;:48::i;:::-;9446:16;9454:7;9446;:16::i;:::-;9445:17;9437:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9854:1;9837:9;:13;9847:2;9837:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;9895:2;9876:7;:16;9884:7;9876:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9938:7;9934:2;9913:33;;9930:1;9913:33;;;;;;;;;;;;9957:47;9985:1;9989:2;9993:7;10002:1;9957:19;:47::i;:::-;9091:920;;:::o;10337:762::-;10396:13;10412:23;10427:7;10412:14;:23::i;:::-;10396:39;;10446:51;10467:5;10482:1;10486:7;10495:1;10446:20;:51::i;:::-;10607:23;10622:7;10607:14;:23::i;:::-;10599:31;;10675:15;:24;10691:7;10675:24;;;;;;;;;;;;10668:31;;;;;;;;;;;10935:1;10915:9;:16;10925:5;10915:16;;;;;;;;;;;;;;;;:21;;;;;;;;;;;10963:7;:16;10971:7;10963:16;;;;;;;;;;;;10956:23;;;;;;;;;;;11023:7;11019:1;10995:36;;11004:5;10995:36;;;;;;;;;;;;11042:50;11062:5;11077:1;11081:7;11090:1;11042:19;:50::i;:::-;10386:713;10337:762;:::o;2476:718:12:-;2723:26;2752:19;:32;2772:11;2752:32;;;;;;;;;;;;;;;2723:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2839:1;2815:13;:20;:25;2794:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;2924:47;2942:11;2955:8;:15;2924:17;:47::i;:::-;2981:10;:15;;;3004:10;3029:11;3054:13;3081:8;3103:14;3131:18;3163:14;2981:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2713:481;2476:718;;;;;;:::o;7540:261:1:-;7633:4;7649:13;7665:23;7680:7;7665:14;:23::i;:::-;7649:39;;7717:5;7706:16;;:7;:16;;;:52;;;;7726:32;7743:5;7750:7;7726:16;:32::i;:::-;7706:52;:87;;;;7786:7;7762:31;;:20;7774:7;7762:11;:20::i;:::-;:31;;;7706:87;7698:96;;;7540:261;;;;:::o;11423:1233::-;11577:4;11550:31;;:23;11565:7;11550:14;:23::i;:::-;:31;;;11542:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;11655:1;11641:16;;:2;:16;;;11633:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;11709:42;11730:4;11736:2;11740:7;11749:1;11709:20;:42::i;:::-;11878:4;11851:31;;:23;11866:7;11851:14;:23::i;:::-;:31;;;11843:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;11993:15;:24;12009:7;11993:24;;;;;;;;;;;;11986:31;;;;;;;;;;;12480:1;12461:9;:15;12471:4;12461:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;12512:1;12495:9;:13;12505:2;12495:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;12552:2;12533:7;:16;12541:7;12533:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;12589:7;12585:2;12570:27;;12579:4;12570:27;;;;;;;;;;;;12608:41;12628:4;12634:2;12638:7;12647:1;12608:19;:41::i;:::-;11423:1233;;;:::o;6838:115::-;6904:7;6930;:16;6938:7;6930:16;;;;;;;;;;;;;;;;;;;;;6923:23;;6838:115;;;:::o;2040:556:11:-;2225:12;2301:2;2288:11;2284:20;2278:27;2270:35;;2325:17;2344:15;2387:8;2363:74;;;;;;;;;;;;:::i;:::-;2324:113;;;;2448:25;2454:9;2465:7;2448:5;:25::i;:::-;2509:7;;2507:9;;;;;;;;;;;2541:48;2553:11;2566:4;2572:7;2581;;2541:48;;;;;;;;;:::i;:::-;;;;;;;;2215:381;;;2040:556;;;;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;9558:2986:17:-;9680:12;9728:7;9722:2;9712:7;:12;;;;:::i;:::-;:23;;9704:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;9798:7;9789:6;:16;;;;:::i;:::-;9772:6;:13;:33;;9764:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;9838:22;9908:7;9901:15;9934:1;9929:2177;;;;12247:4;12241:11;12228:24;;12433:1;12422:9;12415:20;12481:4;12470:9;12466:20;12460:4;12453:34;9894:2607;;9929:2177;10111:4;10105:11;10092:24;;10770:2;10761:7;10757:16;11193:9;11186:17;11180:4;11176:28;11144:9;11133;11129:25;11104:118;11258:7;11254:2;11250:16;11641:6;11578:9;11571:17;11565:4;11561:28;11521:9;11513:6;11509:22;11476:139;11447:222;11284:577;11695:3;11691:2;11688:11;11284:577;;;11839:2;11833:9;11829:2;11822:21;11736:4;11732:2;11728:13;11722:19;;11776:4;11772:2;11768:13;11762:19;;11284:577;;;11288:399;11897:7;11886:9;11879:26;12087:2;12083:7;12078:2;12074;12070:11;12066:25;12060:4;12053:39;9936:2170;;;9894:2607;;12528:9;12521:16;;;9558:2986;;;;;:::o;13075:307:1:-;13225:8;13216:17;;:5;:17;;;13208:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;13311:8;13273:18;:25;13292:5;13273:25;;;;;;;;;;;;;;;:35;13299:8;13273:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;13356:8;13334:41;;13349:5;13334:41;;;13366:8;13334:41;;;;;;:::i;:::-;;;;;;;;13075:307;;;:::o;6424:305::-;6574:28;6584:4;6590:2;6594:7;6574:9;:28::i;:::-;6620:47;6643:4;6649:2;6653:7;6662:4;6620:22;:47::i;:::-;6612:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6424:305;;;;:::o;3319:92::-;3370:13;3395:9;;;;;;;;;;;;;;3319:92;:::o;415:696:7:-;471:13;520:14;557:1;537:17;548:5;537:10;:17::i;:::-;:21;520:38;;572:20;606:6;595:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;572:41;;627:11;753:6;749:2;745:15;737:6;733:28;726:35;;788:280;795:4;788:280;;;819:5;;;;;;;;958:8;953:2;946:5;942:14;937:30;932:3;924:44;1012:2;1003:11;;;;;;:::i;:::-;;;;;1045:1;1036:5;:10;788:280;1032:21;788:280;1088:6;1081:13;;;;;415:696;;;:::o;1122:1280:18:-;1279:4;1285:12;1345:15;1370:13;1393:24;1430:8;1420:19;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1393:46;;1936:1;1907;1870:9;1864:16;1832:4;1821:9;1817:20;1783:1;1745:7;1716:4;1694:267;1682:279;;2028:16;2017:27;;2072:8;2063:7;2060:21;2057:76;;;2111:8;2100:19;;2057:76;2218:7;2205:11;2198:28;2338:7;2335:1;2328:4;2315:11;2311:22;2296:50;2373:8;2383:11;2365:30;;;;;;;1122:1280;;;;;;;:::o;1858:366:13:-;2127:8;2117:19;;;;;;2066:14;:27;2081:11;2066:27;;;;;;;;;;;;;;;2094:11;2066:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;2107:6;2066:48;;;;;;;;;;;;;;;:70;;;;2151:66;2165:11;2178;2191:6;2199:8;2209:7;2151:66;;;;;;;;;;:::i;:::-;;;;;;;;1858:366;;;;;:::o;7256:126:1:-;7321:4;7373:1;7344:31;;:17;7353:7;7344:8;:17::i;:::-;:31;;;;7337:38;;7256:126;;;:::o;15698:154::-;;;;;:::o;16558:153::-;;;;;:::o;3945:451:12:-;4065:21;4089:22;:35;4112:11;4089:35;;;;;;;;;;;;;;;;4065:59;;4158:1;4138:16;:21;4134:135;;625:5;4213:45;;4134:135;4315:16;4299:12;:32;;4278:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;4055:341;3945:451;;:::o;14151:831:1:-;14300:4;14320:15;:2;:13;;;:15::i;:::-;14316:660;;;14371:2;14355:36;;;14392:12;:10;:12::i;:::-;14406:4;14412:7;14421:4;14355:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14351:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14610:1;14593:6;:13;:18;14589:321;;14635:60;;;;;;;;;;:::i;:::-;;;;;;;;14589:321;14862:6;14856:13;14847:6;14843:2;14839:15;14832:38;14351:573;14486:41;;;14476:51;;;:6;:51;;;;14469:58;;;;;14316:660;14961:4;14954:11;;14151:831;;;;;;;:::o;9889:890:10:-;9942:7;9961:14;9978:1;9961:18;;10026:6;10017:5;:15;10013:99;;10061:6;10052:15;;;;;;:::i;:::-;;;;;10095:2;10085:12;;;;10013:99;10138:6;10129:5;:15;10125:99;;10173:6;10164:15;;;;;;:::i;:::-;;;;;10207:2;10197:12;;;;10125:99;10250:6;10241:5;:15;10237:99;;10285:6;10276:15;;;;;;:::i;:::-;;;;;10319:2;10309:12;;;;10237:99;10362:5;10353;:14;10349:96;;10396:5;10387:14;;;;;;:::i;:::-;;;;;10429:1;10419:11;;;;10349:96;10471:5;10462;:14;10458:96;;10505:5;10496:14;;;;;;:::i;:::-;;;;;10538:1;10528:11;;;;10458:96;10580:5;10571;:14;10567:96;;10614:5;10605:14;;;;;;:::i;:::-;;;;;10647:1;10637:11;;;;10567:96;10689:5;10680;:14;10676:64;;10724:1;10714:11;;;;10676:64;10766:6;10759:13;;;9889:890;;;:::o;1175:320:5:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;7:75:19:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:89;370:7;410:6;403:5;399:18;388:29;;334:89;;;:::o;429:120::-;501:23;518:5;501:23;:::i;:::-;494:5;491:34;481:62;;539:1;536;529:12;481:62;429:120;:::o;555:137::-;600:5;638:6;625:20;616:29;;654:32;680:5;654:32;:::i;:::-;555:137;;;;:::o;698:117::-;807:1;804;797:12;821:117;930:1;927;920:12;944:117;1053:1;1050;1043:12;1080:552;1137:8;1147:6;1197:3;1190:4;1182:6;1178:17;1174:27;1164:122;;1205:79;;:::i;:::-;1164:122;1318:6;1305:20;1295:30;;1348:18;1340:6;1337:30;1334:117;;;1370:79;;:::i;:::-;1334:117;1484:4;1476:6;1472:17;1460:29;;1538:3;1530:4;1522:6;1518:17;1508:8;1504:32;1501:41;1498:128;;;1545:79;;:::i;:::-;1498:128;1080:552;;;;;:::o;1638:101::-;1674:7;1714:18;1707:5;1703:30;1692:41;;1638:101;;;:::o;1745:120::-;1817:23;1834:5;1817:23;:::i;:::-;1810:5;1807:34;1797:62;;1855:1;1852;1845:12;1797:62;1745:120;:::o;1871:137::-;1916:5;1954:6;1941:20;1932:29;;1970:32;1996:5;1970:32;:::i;:::-;1871:137;;;;:::o;2014:1157::-;2120:6;2128;2136;2144;2152;2160;2209:3;2197:9;2188:7;2184:23;2180:33;2177:120;;;2216:79;;:::i;:::-;2177:120;2336:1;2361:52;2405:7;2396:6;2385:9;2381:22;2361:52;:::i;:::-;2351:62;;2307:116;2490:2;2479:9;2475:18;2462:32;2521:18;2513:6;2510:30;2507:117;;;2543:79;;:::i;:::-;2507:117;2656:64;2712:7;2703:6;2692:9;2688:22;2656:64;:::i;:::-;2638:82;;;;2433:297;2769:2;2795:52;2839:7;2830:6;2819:9;2815:22;2795:52;:::i;:::-;2785:62;;2740:117;2924:2;2913:9;2909:18;2896:32;2955:18;2947:6;2944:30;2941:117;;;2977:79;;:::i;:::-;2941:117;3090:64;3146:7;3137:6;3126:9;3122:22;3090:64;:::i;:::-;3072:82;;;;2867:297;2014:1157;;;;;;;;:::o;3177:77::-;3214:7;3243:5;3232:16;;3177:77;;;:::o;3260:118::-;3347:24;3365:5;3347:24;:::i;:::-;3342:3;3335:37;3260:118;;:::o;3384:222::-;3477:4;3515:2;3504:9;3500:18;3492:26;;3528:71;3596:1;3585:9;3581:17;3572:6;3528:71;:::i;:::-;3384:222;;;;:::o;3612:149::-;3648:7;3688:66;3681:5;3677:78;3666:89;;3612:149;;;:::o;3767:120::-;3839:23;3856:5;3839:23;:::i;:::-;3832:5;3829:34;3819:62;;3877:1;3874;3867:12;3819:62;3767:120;:::o;3893:137::-;3938:5;3976:6;3963:20;3954:29;;3992:32;4018:5;3992:32;:::i;:::-;3893:137;;;;:::o;4036:327::-;4094:6;4143:2;4131:9;4122:7;4118:23;4114:32;4111:119;;;4149:79;;:::i;:::-;4111:119;4269:1;4294:52;4338:7;4329:6;4318:9;4314:22;4294:52;:::i;:::-;4284:62;;4240:116;4036:327;;;;:::o;4369:90::-;4403:7;4446:5;4439:13;4432:21;4421:32;;4369:90;;;:::o;4465:109::-;4546:21;4561:5;4546:21;:::i;:::-;4541:3;4534:34;4465:109;;:::o;4580:210::-;4667:4;4705:2;4694:9;4690:18;4682:26;;4718:65;4780:1;4769:9;4765:17;4756:6;4718:65;:::i;:::-;4580:210;;;;:::o;4796:99::-;4848:6;4882:5;4876:12;4866:22;;4796:99;;;:::o;4901:169::-;4985:11;5019:6;5014:3;5007:19;5059:4;5054:3;5050:14;5035:29;;4901:169;;;;:::o;5076:246::-;5157:1;5167:113;5181:6;5178:1;5175:13;5167:113;;;5266:1;5261:3;5257:11;5251:18;5247:1;5242:3;5238:11;5231:39;5203:2;5200:1;5196:10;5191:15;;5167:113;;;5314:1;5305:6;5300:3;5296:16;5289:27;5138:184;5076:246;;;:::o;5328:102::-;5369:6;5420:2;5416:7;5411:2;5404:5;5400:14;5396:28;5386:38;;5328:102;;;:::o;5436:377::-;5524:3;5552:39;5585:5;5552:39;:::i;:::-;5607:71;5671:6;5666:3;5607:71;:::i;:::-;5600:78;;5687:65;5745:6;5740:3;5733:4;5726:5;5722:16;5687:65;:::i;:::-;5777:29;5799:6;5777:29;:::i;:::-;5772:3;5768:39;5761:46;;5528:285;5436:377;;;;:::o;5819:313::-;5932:4;5970:2;5959:9;5955:18;5947:26;;6019:9;6013:4;6009:20;6005:1;5994:9;5990:17;5983:47;6047:78;6120:4;6111:6;6047:78;:::i;:::-;6039:86;;5819:313;;;;:::o;6138:327::-;6196:6;6245:2;6233:9;6224:7;6220:23;6216:32;6213:119;;;6251:79;;:::i;:::-;6213:119;6371:1;6396:52;6440:7;6431:6;6420:9;6416:22;6396:52;:::i;:::-;6386:62;;6342:116;6138:327;;;;:::o;6471:122::-;6544:24;6562:5;6544:24;:::i;:::-;6537:5;6534:35;6524:63;;6583:1;6580;6573:12;6524:63;6471:122;:::o;6599:139::-;6645:5;6683:6;6670:20;6661:29;;6699:33;6726:5;6699:33;:::i;:::-;6599:139;;;;:::o;6744:329::-;6803:6;6852:2;6840:9;6831:7;6827:23;6823:32;6820:119;;;6858:79;;:::i;:::-;6820:119;6978:1;7003:53;7048:7;7039:6;7028:9;7024:22;7003:53;:::i;:::-;6993:63;;6949:117;6744:329;;;;:::o;7079:126::-;7116:7;7156:42;7149:5;7145:54;7134:65;;7079:126;;;:::o;7211:96::-;7248:7;7277:24;7295:5;7277:24;:::i;:::-;7266:35;;7211:96;;;:::o;7313:118::-;7400:24;7418:5;7400:24;:::i;:::-;7395:3;7388:37;7313:118;;:::o;7437:222::-;7530:4;7568:2;7557:9;7553:18;7545:26;;7581:71;7649:1;7638:9;7634:17;7625:6;7581:71;:::i;:::-;7437:222;;;;:::o;7665:122::-;7738:24;7756:5;7738:24;:::i;:::-;7731:5;7728:35;7718:63;;7777:1;7774;7767:12;7718:63;7665:122;:::o;7793:139::-;7839:5;7877:6;7864:20;7855:29;;7893:33;7920:5;7893:33;:::i;:::-;7793:139;;;;:::o;7938:474::-;8006:6;8014;8063:2;8051:9;8042:7;8038:23;8034:32;8031:119;;;8069:79;;:::i;:::-;8031:119;8189:1;8214:53;8259:7;8250:6;8239:9;8235:22;8214:53;:::i;:::-;8204:63;;8160:117;8316:2;8342:53;8387:7;8378:6;8367:9;8363:22;8342:53;:::i;:::-;8332:63;;8287:118;7938:474;;;;;:::o;8418:472::-;8485:6;8493;8542:2;8530:9;8521:7;8517:23;8513:32;8510:119;;;8548:79;;:::i;:::-;8510:119;8668:1;8693:52;8737:7;8728:6;8717:9;8713:22;8693:52;:::i;:::-;8683:62;;8639:116;8794:2;8820:53;8865:7;8856:6;8845:9;8841:22;8820:53;:::i;:::-;8810:63;;8765:118;8418:472;;;;;:::o;8896:619::-;8973:6;8981;8989;9038:2;9026:9;9017:7;9013:23;9009:32;9006:119;;;9044:79;;:::i;:::-;9006:119;9164:1;9189:53;9234:7;9225:6;9214:9;9210:22;9189:53;:::i;:::-;9179:63;;9135:117;9291:2;9317:53;9362:7;9353:6;9342:9;9338:22;9317:53;:::i;:::-;9307:63;;9262:118;9419:2;9445:53;9490:7;9481:6;9470:9;9466:22;9445:53;:::i;:::-;9435:63;;9390:118;8896:619;;;;;:::o;9521:670::-;9599:6;9607;9615;9664:2;9652:9;9643:7;9639:23;9635:32;9632:119;;;9670:79;;:::i;:::-;9632:119;9790:1;9815:52;9859:7;9850:6;9839:9;9835:22;9815:52;:::i;:::-;9805:62;;9761:116;9944:2;9933:9;9929:18;9916:32;9975:18;9967:6;9964:30;9961:117;;;9997:79;;:::i;:::-;9961:117;10110:64;10166:7;10157:6;10146:9;10142:22;10110:64;:::i;:::-;10092:82;;;;9887:297;9521:670;;;;;:::o;10197:117::-;10306:1;10303;10296:12;10320:180;10368:77;10365:1;10358:88;10465:4;10462:1;10455:15;10489:4;10486:1;10479:15;10506:281;10589:27;10611:4;10589:27;:::i;:::-;10581:6;10577:40;10719:6;10707:10;10704:22;10683:18;10671:10;10668:34;10665:62;10662:88;;;10730:18;;:::i;:::-;10662:88;10770:10;10766:2;10759:22;10549:238;10506:281;;:::o;10793:129::-;10827:6;10854:20;;:::i;:::-;10844:30;;10883:33;10911:4;10903:6;10883:33;:::i;:::-;10793:129;;;:::o;10928:307::-;10989:4;11079:18;11071:6;11068:30;11065:56;;;11101:18;;:::i;:::-;11065:56;11139:29;11161:6;11139:29;:::i;:::-;11131:37;;11223:4;11217;11213:15;11205:23;;10928:307;;;:::o;11241:146::-;11338:6;11333:3;11328;11315:30;11379:1;11370:6;11365:3;11361:16;11354:27;11241:146;;;:::o;11393:423::-;11470:5;11495:65;11511:48;11552:6;11511:48;:::i;:::-;11495:65;:::i;:::-;11486:74;;11583:6;11576:5;11569:21;11621:4;11614:5;11610:16;11659:3;11650:6;11645:3;11641:16;11638:25;11635:112;;;11666:79;;:::i;:::-;11635:112;11756:54;11803:6;11798:3;11793;11756:54;:::i;:::-;11476:340;11393:423;;;;;:::o;11835:338::-;11890:5;11939:3;11932:4;11924:6;11920:17;11916:27;11906:122;;11947:79;;:::i;:::-;11906:122;12064:6;12051:20;12089:78;12163:3;12155:6;12148:4;12140:6;12136:17;12089:78;:::i;:::-;12080:87;;11896:277;11835:338;;;;:::o;12179:793::-;12263:6;12271;12279;12328:2;12316:9;12307:7;12303:23;12299:32;12296:119;;;12334:79;;:::i;:::-;12296:119;12454:1;12479:52;12523:7;12514:6;12503:9;12499:22;12479:52;:::i;:::-;12469:62;;12425:116;12608:2;12597:9;12593:18;12580:32;12639:18;12631:6;12628:30;12625:117;;;12661:79;;:::i;:::-;12625:117;12766:62;12820:7;12811:6;12800:9;12796:22;12766:62;:::i;:::-;12756:72;;12551:287;12877:2;12903:52;12947:7;12938:6;12927:9;12923:22;12903:52;:::i;:::-;12893:62;;12848:117;12179:793;;;;;:::o;12978:77::-;13015:7;13044:5;13033:16;;12978:77;;;:::o;13061:118::-;13148:24;13166:5;13148:24;:::i;:::-;13143:3;13136:37;13061:118;;:::o;13185:222::-;13278:4;13316:2;13305:9;13301:18;13293:26;;13329:71;13397:1;13386:9;13382:17;13373:6;13329:71;:::i;:::-;13185:222;;;;:::o;13413:329::-;13472:6;13521:2;13509:9;13500:7;13496:23;13492:32;13489:119;;;13527:79;;:::i;:::-;13489:119;13647:1;13672:53;13717:7;13708:6;13697:9;13693:22;13672:53;:::i;:::-;13662:63;;13618:117;13413:329;;;;:::o;13748:98::-;13799:6;13833:5;13827:12;13817:22;;13748:98;;;:::o;13852:168::-;13935:11;13969:6;13964:3;13957:19;14009:4;14004:3;14000:14;13985:29;;13852:168;;;;:::o;14026:373::-;14112:3;14140:38;14172:5;14140:38;:::i;:::-;14194:70;14257:6;14252:3;14194:70;:::i;:::-;14187:77;;14273:65;14331:6;14326:3;14319:4;14312:5;14308:16;14273:65;:::i;:::-;14363:29;14385:6;14363:29;:::i;:::-;14358:3;14354:39;14347:46;;14116:283;14026:373;;;;:::o;14405:309::-;14516:4;14554:2;14543:9;14539:18;14531:26;;14603:9;14597:4;14593:20;14589:1;14578:9;14574:17;14567:47;14631:76;14702:4;14693:6;14631:76;:::i;:::-;14623:84;;14405:309;;;;:::o;14720:470::-;14786:6;14794;14843:2;14831:9;14822:7;14818:23;14814:32;14811:119;;;14849:79;;:::i;:::-;14811:119;14969:1;14994:52;15038:7;15029:6;15018:9;15014:22;14994:52;:::i;:::-;14984:62;;14940:116;15095:2;15121:52;15165:7;15156:6;15145:9;15141:22;15121:52;:::i;:::-;15111:62;;15066:117;14720:470;;;;;:::o;15196:116::-;15266:21;15281:5;15266:21;:::i;:::-;15259:5;15256:32;15246:60;;15302:1;15299;15292:12;15246:60;15196:116;:::o;15318:133::-;15361:5;15399:6;15386:20;15377:29;;15415:30;15439:5;15415:30;:::i;:::-;15318:133;;;;:::o;15457:468::-;15522:6;15530;15579:2;15567:9;15558:7;15554:23;15550:32;15547:119;;;15585:79;;:::i;:::-;15547:119;15705:1;15730:53;15775:7;15766:6;15755:9;15751:22;15730:53;:::i;:::-;15720:63;;15676:117;15832:2;15858:50;15900:7;15891:6;15880:9;15876:22;15858:50;:::i;:::-;15848:60;;15803:115;15457:468;;;;;:::o;15931:60::-;15959:3;15980:5;15973:12;;15931:60;;;:::o;15997:142::-;16047:9;16080:53;16098:34;16107:24;16125:5;16107:24;:::i;:::-;16098:34;:::i;:::-;16080:53;:::i;:::-;16067:66;;15997:142;;;:::o;16145:126::-;16195:9;16228:37;16259:5;16228:37;:::i;:::-;16215:50;;16145:126;;;:::o;16277:153::-;16354:9;16387:37;16418:5;16387:37;:::i;:::-;16374:50;;16277:153;;;:::o;16436:185::-;16550:64;16608:5;16550:64;:::i;:::-;16545:3;16538:77;16436:185;;:::o;16627:276::-;16747:4;16785:2;16774:9;16770:18;16762:26;;16798:98;16893:1;16882:9;16878:17;16869:6;16798:98;:::i;:::-;16627:276;;;;:::o;16909:943::-;17004:6;17012;17020;17028;17077:3;17065:9;17056:7;17052:23;17048:33;17045:120;;;17084:79;;:::i;:::-;17045:120;17204:1;17229:53;17274:7;17265:6;17254:9;17250:22;17229:53;:::i;:::-;17219:63;;17175:117;17331:2;17357:53;17402:7;17393:6;17382:9;17378:22;17357:53;:::i;:::-;17347:63;;17302:118;17459:2;17485:53;17530:7;17521:6;17510:9;17506:22;17485:53;:::i;:::-;17475:63;;17430:118;17615:2;17604:9;17600:18;17587:32;17646:18;17638:6;17635:30;17632:117;;;17668:79;;:::i;:::-;17632:117;17773:62;17827:7;17818:6;17807:9;17803:22;17773:62;:::i;:::-;17763:72;;17558:287;16909:943;;;;;;;:::o;17858:959::-;17953:6;17961;17969;17977;17985;18034:3;18022:9;18013:7;18009:23;18005:33;18002:120;;;18041:79;;:::i;:::-;18002:120;18161:1;18186:52;18230:7;18221:6;18210:9;18206:22;18186:52;:::i;:::-;18176:62;;18132:116;18287:2;18313:52;18357:7;18348:6;18337:9;18333:22;18313:52;:::i;:::-;18303:62;;18258:117;18414:2;18440:53;18485:7;18476:6;18465:9;18461:22;18440:53;:::i;:::-;18430:63;;18385:118;18570:2;18559:9;18555:18;18542:32;18601:18;18593:6;18590:30;18587:117;;;18623:79;;:::i;:::-;18587:117;18736:64;18792:7;18783:6;18772:9;18768:22;18736:64;:::i;:::-;18718:82;;;;18513:297;17858:959;;;;;;;;:::o;18823:615::-;18898:6;18906;18914;18963:2;18951:9;18942:7;18938:23;18934:32;18931:119;;;18969:79;;:::i;:::-;18931:119;19089:1;19114:52;19158:7;19149:6;19138:9;19134:22;19114:52;:::i;:::-;19104:62;;19060:116;19215:2;19241:52;19285:7;19276:6;19265:9;19261:22;19241:52;:::i;:::-;19231:62;;19186:117;19342:2;19368:53;19413:7;19404:6;19393:9;19389:22;19368:53;:::i;:::-;19358:63;;19313:118;18823:615;;;;;:::o;19444:474::-;19512:6;19520;19569:2;19557:9;19548:7;19544:23;19540:32;19537:119;;;19575:79;;:::i;:::-;19537:119;19695:1;19720:53;19765:7;19756:6;19745:9;19741:22;19720:53;:::i;:::-;19710:63;;19666:117;19822:2;19848:53;19893:7;19884:6;19873:9;19869:22;19848:53;:::i;:::-;19838:63;;19793:118;19444:474;;;;;:::o;19924:761::-;20008:6;20016;20024;20032;20081:3;20069:9;20060:7;20056:23;20052:33;20049:120;;;20088:79;;:::i;:::-;20049:120;20208:1;20233:52;20277:7;20268:6;20257:9;20253:22;20233:52;:::i;:::-;20223:62;;20179:116;20334:2;20360:52;20404:7;20395:6;20384:9;20380:22;20360:52;:::i;:::-;20350:62;;20305:117;20461:2;20487:53;20532:7;20523:6;20512:9;20508:22;20487:53;:::i;:::-;20477:63;;20432:118;20589:2;20615:53;20660:7;20651:6;20640:9;20636:22;20615:53;:::i;:::-;20605:63;;20560:118;19924:761;;;;;;;:::o;20691:180::-;20831:32;20827:1;20819:6;20815:14;20808:56;20691:180;:::o;20877:366::-;21019:3;21040:67;21104:2;21099:3;21040:67;:::i;:::-;21033:74;;21116:93;21205:3;21116:93;:::i;:::-;21234:2;21229:3;21225:12;21218:19;;20877:366;;;:::o;21249:419::-;21415:4;21453:2;21442:9;21438:18;21430:26;;21502:9;21496:4;21492:20;21488:1;21477:9;21473:17;21466:47;21530:131;21656:4;21530:131;:::i;:::-;21522:139;;21249:419;;;:::o;21674:180::-;21722:77;21719:1;21712:88;21819:4;21816:1;21809:15;21843:4;21840:1;21833:15;21860:320;21904:6;21941:1;21935:4;21931:12;21921:22;;21988:1;21982:4;21978:12;22009:18;21999:81;;22065:4;22057:6;22053:17;22043:27;;21999:81;22127:2;22119:6;22116:14;22096:18;22093:38;22090:84;;22146:18;;:::i;:::-;22090:84;21911:269;21860:320;;;:::o;22186:147::-;22287:11;22324:3;22309:18;;22186:147;;;;:::o;22361:327::-;22475:3;22496:88;22577:6;22572:3;22496:88;:::i;:::-;22489:95;;22594:56;22643:6;22638:3;22631:5;22594:56;:::i;:::-;22675:6;22670:3;22666:16;22659:23;;22361:327;;;;;:::o;22694:291::-;22834:3;22856:103;22955:3;22946:6;22938;22856:103;:::i;:::-;22849:110;;22976:3;22969:10;;22694:291;;;;;:::o;22991:225::-;23131:34;23127:1;23119:6;23115:14;23108:58;23200:8;23195:2;23187:6;23183:15;23176:33;22991:225;:::o;23222:366::-;23364:3;23385:67;23449:2;23444:3;23385:67;:::i;:::-;23378:74;;23461:93;23550:3;23461:93;:::i;:::-;23579:2;23574:3;23570:12;23563:19;;23222:366;;;:::o;23594:419::-;23760:4;23798:2;23787:9;23783:18;23775:26;;23847:9;23841:4;23837:20;23833:1;23822:9;23818:17;23811:47;23875:131;24001:4;23875:131;:::i;:::-;23867:139;;23594:419;;;:::o;24019:115::-;24104:23;24121:5;24104:23;:::i;:::-;24099:3;24092:36;24019:115;;:::o;24140:218::-;24231:4;24269:2;24258:9;24254:18;24246:26;;24282:69;24348:1;24337:9;24333:17;24324:6;24282:69;:::i;:::-;24140:218;;;;:::o;24364:220::-;24504:34;24500:1;24492:6;24488:14;24481:58;24573:3;24568:2;24560:6;24556:15;24549:28;24364:220;:::o;24590:366::-;24732:3;24753:67;24817:2;24812:3;24753:67;:::i;:::-;24746:74;;24829:93;24918:3;24829:93;:::i;:::-;24947:2;24942:3;24938:12;24931:19;;24590:366;;;:::o;24962:419::-;25128:4;25166:2;25155:9;25151:18;25143:26;;25215:9;25209:4;25205:20;25201:1;25190:9;25186:17;25179:47;25243:131;25369:4;25243:131;:::i;:::-;25235:139;;24962:419;;;:::o;25387:248::-;25527:34;25523:1;25515:6;25511:14;25504:58;25596:31;25591:2;25583:6;25579:15;25572:56;25387:248;:::o;25641:366::-;25783:3;25804:67;25868:2;25863:3;25804:67;:::i;:::-;25797:74;;25880:93;25969:3;25880:93;:::i;:::-;25998:2;25993:3;25989:12;25982:19;;25641:366;;;:::o;26013:419::-;26179:4;26217:2;26206:9;26202:18;26194:26;;26266:9;26260:4;26256:20;26252:1;26241:9;26237:17;26230:47;26294:131;26420:4;26294:131;:::i;:::-;26286:139;;26013:419;;;:::o;26438:332::-;26559:4;26597:2;26586:9;26582:18;26574:26;;26610:71;26678:1;26667:9;26663:17;26654:6;26610:71;:::i;:::-;26691:72;26759:2;26748:9;26744:18;26735:6;26691:72;:::i;:::-;26438:332;;;;;:::o;26776:96::-;26810:8;26859:5;26854:3;26850:15;26829:36;;26776:96;;;:::o;26878:94::-;26916:7;26945:21;26960:5;26945:21;:::i;:::-;26934:32;;26878:94;;;:::o;26978:153::-;27081:43;27100:23;27117:5;27100:23;:::i;:::-;27081:43;:::i;:::-;27076:3;27069:56;26978:153;;:::o;27137:79::-;27176:7;27205:5;27194:16;;27137:79;;;:::o;27222:157::-;27327:45;27347:24;27365:5;27347:24;:::i;:::-;27327:45;:::i;:::-;27322:3;27315:58;27222:157;;:::o;27385:392::-;27523:3;27538:73;27607:3;27598:6;27538:73;:::i;:::-;27636:1;27631:3;27627:11;27620:18;;27648:75;27719:3;27710:6;27648:75;:::i;:::-;27748:2;27743:3;27739:12;27732:19;;27768:3;27761:10;;27385:392;;;;;:::o;27783:822::-;28016:4;28054:3;28043:9;28039:19;28031:27;;28068:69;28134:1;28123:9;28119:17;28110:6;28068:69;:::i;:::-;28147:72;28215:2;28204:9;28200:18;28191:6;28147:72;:::i;:::-;28266:9;28260:4;28256:20;28251:2;28240:9;28236:18;28229:48;28294:76;28365:4;28356:6;28294:76;:::i;:::-;28286:84;;28380:66;28442:2;28431:9;28427:18;28418:6;28380:66;:::i;:::-;28494:9;28488:4;28484:20;28478:3;28467:9;28463:19;28456:49;28522:76;28593:4;28584:6;28522:76;:::i;:::-;28514:84;;27783:822;;;;;;;;:::o;28611:143::-;28668:5;28699:6;28693:13;28684:22;;28715:33;28742:5;28715:33;:::i;:::-;28611:143;;;;:::o;28760:507::-;28839:6;28847;28896:2;28884:9;28875:7;28871:23;28867:32;28864:119;;;28902:79;;:::i;:::-;28864:119;29022:1;29047:64;29103:7;29094:6;29083:9;29079:22;29047:64;:::i;:::-;29037:74;;28993:128;29160:2;29186:64;29242:7;29233:6;29222:9;29218:22;29186:64;:::i;:::-;29176:74;;29131:129;28760:507;;;;;:::o;29273:232::-;29413:34;29409:1;29401:6;29397:14;29390:58;29482:15;29477:2;29469:6;29465:15;29458:40;29273:232;:::o;29511:366::-;29653:3;29674:67;29738:2;29733:3;29674:67;:::i;:::-;29667:74;;29750:93;29839:3;29750:93;:::i;:::-;29868:2;29863:3;29859:12;29852:19;;29511:366;;;:::o;29883:419::-;30049:4;30087:2;30076:9;30072:18;30064:26;;30136:9;30130:4;30126:20;30122:1;30111:9;30107:17;30100:47;30164:131;30290:4;30164:131;:::i;:::-;30156:139;;29883:419;;;:::o;30330:314::-;30426:3;30447:70;30510:6;30505:3;30447:70;:::i;:::-;30440:77;;30527:56;30576:6;30571:3;30564:5;30527:56;:::i;:::-;30608:29;30630:6;30608:29;:::i;:::-;30603:3;30599:39;30592:46;;30330:314;;;;;:::o;30650:435::-;30797:4;30835:2;30824:9;30820:18;30812:26;;30848:69;30914:1;30903:9;30899:17;30890:6;30848:69;:::i;:::-;30964:9;30958:4;30954:20;30949:2;30938:9;30934:18;30927:48;30992:86;31073:4;31064:6;31056;30992:86;:::i;:::-;30984:94;;30650:435;;;;;;:::o;31091:174::-;31231:26;31227:1;31219:6;31215:14;31208:50;31091:174;:::o;31271:366::-;31413:3;31434:67;31498:2;31493:3;31434:67;:::i;:::-;31427:74;;31510:93;31599:3;31510:93;:::i;:::-;31628:2;31623:3;31619:12;31612:19;;31271:366;;;:::o;31643:419::-;31809:4;31847:2;31836:9;31832:18;31824:26;;31896:9;31890:4;31886:20;31882:1;31871:9;31867:17;31860:47;31924:131;32050:4;31924:131;:::i;:::-;31916:139;;31643:419;;;:::o;32068:225::-;32208:34;32204:1;32196:6;32192:14;32185:58;32277:8;32272:2;32264:6;32260:15;32253:33;32068:225;:::o;32299:366::-;32441:3;32462:67;32526:2;32521:3;32462:67;:::i;:::-;32455:74;;32538:93;32627:3;32538:93;:::i;:::-;32656:2;32651:3;32647:12;32640:19;;32299:366;;;:::o;32671:419::-;32837:4;32875:2;32864:9;32860:18;32852:26;;32924:9;32918:4;32914:20;32910:1;32899:9;32895:17;32888:47;32952:131;33078:4;32952:131;:::i;:::-;32944:139;;32671:419;;;:::o;33096:228::-;33236:34;33232:1;33224:6;33220:14;33213:58;33305:11;33300:2;33292:6;33288:15;33281:36;33096:228;:::o;33330:366::-;33472:3;33493:67;33557:2;33552:3;33493:67;:::i;:::-;33486:74;;33569:93;33658:3;33569:93;:::i;:::-;33687:2;33682:3;33678:12;33671:19;;33330:366;;;:::o;33702:419::-;33868:4;33906:2;33895:9;33891:18;33883:26;;33955:9;33949:4;33945:20;33941:1;33930:9;33926:17;33919:47;33983:131;34109:4;33983:131;:::i;:::-;33975:139;;33702:419;;;:::o;34127:179::-;34267:31;34263:1;34255:6;34251:14;34244:55;34127:179;:::o;34312:366::-;34454:3;34475:67;34539:2;34534:3;34475:67;:::i;:::-;34468:74;;34551:93;34640:3;34551:93;:::i;:::-;34669:2;34664:3;34660:12;34653:19;;34312:366;;;:::o;34684:419::-;34850:4;34888:2;34877:9;34873:18;34865:26;;34937:9;34931:4;34927:20;34923:1;34912:9;34908:17;34901:47;34965:131;35091:4;34965:131;:::i;:::-;34957:139;;34684:419;;;:::o;35109:180::-;35157:77;35154:1;35147:88;35254:4;35251:1;35244:15;35278:4;35275:1;35268:15;35295:194;35335:4;35355:20;35373:1;35355:20;:::i;:::-;35350:25;;35389:20;35407:1;35389:20;:::i;:::-;35384:25;;35433:1;35430;35426:9;35418:17;;35457:1;35451:4;35448:11;35445:37;;;35462:18;;:::i;:::-;35445:37;35295:194;;;;:::o;35495:94::-;35528:8;35576:5;35572:2;35568:14;35547:35;;35495:94;;;:::o;35595:::-;35634:7;35663:20;35677:5;35663:20;:::i;:::-;35652:31;;35595:94;;;:::o;35695:100::-;35734:7;35763:26;35783:5;35763:26;:::i;:::-;35752:37;;35695:100;;;:::o;35801:157::-;35906:45;35926:24;35944:5;35926:24;:::i;:::-;35906:45;:::i;:::-;35901:3;35894:58;35801:157;;:::o;35964:432::-;36132:3;36154:103;36253:3;36244:6;36236;36154:103;:::i;:::-;36147:110;;36267:75;36338:3;36329:6;36267:75;:::i;:::-;36367:2;36362:3;36358:12;36351:19;;36387:3;36380:10;;35964:432;;;;;;:::o;36402:140::-;36450:4;36473:3;36465:11;;36496:3;36493:1;36486:14;36530:4;36527:1;36517:18;36509:26;;36402:140;;;:::o;36548:93::-;36585:6;36632:2;36627;36620:5;36616:14;36612:23;36602:33;;36548:93;;;:::o;36647:107::-;36691:8;36741:5;36735:4;36731:16;36710:37;;36647:107;;;;:::o;36760:393::-;36829:6;36879:1;36867:10;36863:18;36902:97;36932:66;36921:9;36902:97;:::i;:::-;37020:39;37050:8;37039:9;37020:39;:::i;:::-;37008:51;;37092:4;37088:9;37081:5;37077:21;37068:30;;37141:4;37131:8;37127:19;37120:5;37117:30;37107:40;;36836:317;;36760:393;;;;;:::o;37159:142::-;37209:9;37242:53;37260:34;37269:24;37287:5;37269:24;:::i;:::-;37260:34;:::i;:::-;37242:53;:::i;:::-;37229:66;;37159:142;;;:::o;37307:75::-;37350:3;37371:5;37364:12;;37307:75;;;:::o;37388:269::-;37498:39;37529:7;37498:39;:::i;:::-;37559:91;37608:41;37632:16;37608:41;:::i;:::-;37600:6;37593:4;37587:11;37559:91;:::i;:::-;37553:4;37546:105;37464:193;37388:269;;;:::o;37663:73::-;37708:3;37663:73;:::o;37742:189::-;37819:32;;:::i;:::-;37860:65;37918:6;37910;37904:4;37860:65;:::i;:::-;37795:136;37742:189;;:::o;37937:186::-;37997:120;38014:3;38007:5;38004:14;37997:120;;;38068:39;38105:1;38098:5;38068:39;:::i;:::-;38041:1;38034:5;38030:13;38021:22;;37997:120;;;37937:186;;:::o;38129:541::-;38229:2;38224:3;38221:11;38218:445;;;38263:37;38294:5;38263:37;:::i;:::-;38346:29;38364:10;38346:29;:::i;:::-;38336:8;38332:44;38529:2;38517:10;38514:18;38511:49;;;38550:8;38535:23;;38511:49;38573:80;38629:22;38647:3;38629:22;:::i;:::-;38619:8;38615:37;38602:11;38573:80;:::i;:::-;38233:430;;38218:445;38129:541;;;:::o;38676:117::-;38730:8;38780:5;38774:4;38770:16;38749:37;;38676:117;;;;:::o;38799:169::-;38843:6;38876:51;38924:1;38920:6;38912:5;38909:1;38905:13;38876:51;:::i;:::-;38872:56;38957:4;38951;38947:15;38937:25;;38850:118;38799:169;;;;:::o;38973:295::-;39049:4;39195:29;39220:3;39214:4;39195:29;:::i;:::-;39187:37;;39257:3;39254:1;39250:11;39244:4;39241:21;39233:29;;38973:295;;;;:::o;39273:1390::-;39388:36;39420:3;39388:36;:::i;:::-;39489:18;39481:6;39478:30;39475:56;;;39511:18;;:::i;:::-;39475:56;39555:38;39587:4;39581:11;39555:38;:::i;:::-;39640:66;39699:6;39691;39685:4;39640:66;:::i;:::-;39733:1;39757:4;39744:17;;39789:2;39781:6;39778:14;39806:1;39801:617;;;;40462:1;40479:6;40476:77;;;40528:9;40523:3;40519:19;40513:26;40504:35;;40476:77;40579:67;40639:6;40632:5;40579:67;:::i;:::-;40573:4;40566:81;40435:222;39771:886;;39801:617;39853:4;39849:9;39841:6;39837:22;39887:36;39918:4;39887:36;:::i;:::-;39945:1;39959:208;39973:7;39970:1;39967:14;39959:208;;;40052:9;40047:3;40043:19;40037:26;40029:6;40022:42;40103:1;40095:6;40091:14;40081:24;;40150:2;40139:9;40135:18;40122:31;;39996:4;39993:1;39989:12;39984:17;;39959:208;;;40195:6;40186:7;40183:19;40180:179;;;40253:9;40248:3;40244:19;40238:26;40296:48;40338:4;40330:6;40326:17;40315:9;40296:48;:::i;:::-;40288:6;40281:64;40203:156;40180:179;40405:1;40401;40393:6;40389:14;40385:22;40379:4;40372:36;39808:610;;;39771:886;;39363:1300;;;39273:1390;;:::o;40669:148::-;40771:11;40808:3;40793:18;;40669:148;;;;:::o;40823:390::-;40929:3;40957:39;40990:5;40957:39;:::i;:::-;41012:89;41094:6;41089:3;41012:89;:::i;:::-;41005:96;;41110:65;41168:6;41163:3;41156:4;41149:5;41145:16;41110:65;:::i;:::-;41200:6;41195:3;41191:16;41184:23;;40933:280;40823:390;;;;:::o;41219:435::-;41399:3;41421:95;41512:3;41503:6;41421:95;:::i;:::-;41414:102;;41533:95;41624:3;41615:6;41533:95;:::i;:::-;41526:102;;41645:3;41638:10;;41219:435;;;;;:::o;41660:652::-;41861:4;41899:3;41888:9;41884:19;41876:27;;41913:69;41979:1;41968:9;41964:17;41955:6;41913:69;:::i;:::-;41992:70;42058:2;42047:9;42043:18;42034:6;41992:70;:::i;:::-;42072:72;42140:2;42129:9;42125:18;42116:6;42072:72;:::i;:::-;42191:9;42185:4;42181:20;42176:2;42165:9;42161:18;42154:48;42219:86;42300:4;42291:6;42283;42219:86;:::i;:::-;42211:94;;41660:652;;;;;;;;:::o;42318:222::-;42458:34;42454:1;42446:6;42442:14;42435:58;42527:5;42522:2;42514:6;42510:15;42503:30;42318:222;:::o;42546:366::-;42688:3;42709:67;42773:2;42768:3;42709:67;:::i;:::-;42702:74;;42785:93;42874:3;42785:93;:::i;:::-;42903:2;42898:3;42894:12;42887:19;;42546:366;;;:::o;42918:419::-;43084:4;43122:2;43111:9;43107:18;43099:26;;43171:9;43165:4;43161:20;43157:1;43146:9;43142:17;43135:47;43199:131;43325:4;43199:131;:::i;:::-;43191:139;;42918:419;;;:::o;43343:220::-;43483:34;43479:1;43471:6;43467:14;43460:58;43552:3;43547:2;43539:6;43535:15;43528:28;43343:220;:::o;43569:366::-;43711:3;43732:67;43796:2;43791:3;43732:67;:::i;:::-;43725:74;;43808:93;43897:3;43808:93;:::i;:::-;43926:2;43921:3;43917:12;43910:19;;43569:366;;;:::o;43941:419::-;44107:4;44145:2;44134:9;44130:18;44122:26;;44194:9;44188:4;44184:20;44180:1;44169:9;44165:17;44158:47;44222:131;44348:4;44222:131;:::i;:::-;44214:139;;43941:419;;;:::o;44366:115::-;44451:23;44468:5;44451:23;:::i;:::-;44446:3;44439:36;44366:115;;:::o;44487:652::-;44688:4;44726:3;44715:9;44711:19;44703:27;;44740:69;44806:1;44795:9;44791:17;44782:6;44740:69;:::i;:::-;44856:9;44850:4;44846:20;44841:2;44830:9;44826:18;44819:48;44884:86;44965:4;44956:6;44948;44884:86;:::i;:::-;44876:94;;44980:70;45046:2;45035:9;45031:18;45022:6;44980:70;:::i;:::-;45060:72;45128:2;45117:9;45113:18;45104:6;45060:72;:::i;:::-;44487:652;;;;;;;;:::o;45145:171::-;45285:23;45281:1;45273:6;45269:14;45262:47;45145:171;:::o;45322:366::-;45464:3;45485:67;45549:2;45544:3;45485:67;:::i;:::-;45478:74;;45561:93;45650:3;45561:93;:::i;:::-;45679:2;45674:3;45670:12;45663:19;;45322:366;;;:::o;45694:419::-;45860:4;45898:2;45887:9;45883:18;45875:26;;45947:9;45941:4;45937:20;45933:1;45922:9;45918:17;45911:47;45975:131;46101:4;45975:131;:::i;:::-;45967:139;;45694:419;;;:::o;46119:434::-;46264:4;46302:2;46291:9;46287:18;46279:26;;46315:69;46381:1;46370:9;46366:17;46357:6;46315:69;:::i;:::-;46394:70;46460:2;46449:9;46445:18;46436:6;46394:70;:::i;:::-;46474:72;46542:2;46531:9;46527:18;46518:6;46474:72;:::i;:::-;46119:434;;;;;;:::o;46559:96::-;46617:6;46645:3;46635:13;;46559:96;;;;:::o;46661:1398::-;46783:43;46822:3;46817;46783:43;:::i;:::-;46891:18;46883:6;46880:30;46877:56;;;46913:18;;:::i;:::-;46877:56;46957:38;46989:4;46983:11;46957:38;:::i;:::-;47042:66;47101:6;47093;47087:4;47042:66;:::i;:::-;47135:1;47164:2;47156:6;47153:14;47181:1;47176:631;;;;47851:1;47868:6;47865:84;;;47924:9;47919:3;47915:19;47902:33;47893:42;;47865:84;47975:67;48035:6;48028:5;47975:67;:::i;:::-;47969:4;47962:81;47824:229;47146:907;;47176:631;47228:4;47224:9;47216:6;47212:22;47262:36;47293:4;47262:36;:::i;:::-;47320:1;47334:215;47348:7;47345:1;47342:14;47334:215;;;47434:9;47429:3;47425:19;47412:33;47404:6;47397:49;47485:1;47477:6;47473:14;47463:24;;47532:2;47521:9;47517:18;47504:31;;47371:4;47368:1;47364:12;47359:17;;47334:215;;;47577:6;47568:7;47565:19;47562:186;;;47642:9;47637:3;47633:19;47620:33;47685:48;47727:4;47719:6;47715:17;47704:9;47685:48;:::i;:::-;47677:6;47670:64;47585:163;47562:186;47794:1;47790;47782:6;47778:14;47774:22;47768:4;47761:36;47183:624;;;47146:907;;46758:1301;;;46661:1398;;;:::o;48065:225::-;48205:34;48201:1;48193:6;48189:14;48182:58;48274:8;48269:2;48261:6;48257:15;48250:33;48065:225;:::o;48296:366::-;48438:3;48459:67;48523:2;48518:3;48459:67;:::i;:::-;48452:74;;48535:93;48624:3;48535:93;:::i;:::-;48653:2;48648:3;48644:12;48637:19;;48296:366;;;:::o;48668:419::-;48834:4;48872:2;48861:9;48857:18;48849:26;;48921:9;48915:4;48911:20;48907:1;48896:9;48892:17;48885:47;48949:131;49075:4;48949:131;:::i;:::-;48941:139;;48668:419;;;:::o;49093:545::-;49266:4;49304:3;49293:9;49289:19;49281:27;;49318:69;49384:1;49373:9;49369:17;49360:6;49318:69;:::i;:::-;49397:70;49463:2;49452:9;49448:18;49439:6;49397:70;:::i;:::-;49477:72;49545:2;49534:9;49530:18;49521:6;49477:72;:::i;:::-;49559;49627:2;49616:9;49612:18;49603:6;49559:72;:::i;:::-;49093:545;;;;;;;:::o;49644:432::-;49732:5;49757:65;49773:48;49814:6;49773:48;:::i;:::-;49757:65;:::i;:::-;49748:74;;49845:6;49838:5;49831:21;49883:4;49876:5;49872:16;49921:3;49912:6;49907:3;49903:16;49900:25;49897:112;;;49928:79;;:::i;:::-;49897:112;50018:52;50063:6;50058:3;50053;50018:52;:::i;:::-;49738:338;49644:432;;;;;:::o;50095:353::-;50161:5;50210:3;50203:4;50195:6;50191:17;50187:27;50177:122;;50218:79;;:::i;:::-;50177:122;50328:6;50322:13;50353:89;50438:3;50430:6;50423:4;50415:6;50411:17;50353:89;:::i;:::-;50344:98;;50167:281;50095:353;;;;:::o;50454:522::-;50533:6;50582:2;50570:9;50561:7;50557:23;50553:32;50550:119;;;50588:79;;:::i;:::-;50550:119;50729:1;50718:9;50714:17;50708:24;50759:18;50751:6;50748:30;50745:117;;;50781:79;;:::i;:::-;50745:117;50886:73;50951:7;50942:6;50931:9;50927:22;50886:73;:::i;:::-;50876:83;;50679:290;50454:522;;;;:::o;50982:719::-;51191:4;51229:3;51218:9;51214:19;51206:27;;51243:69;51309:1;51298:9;51294:17;51285:6;51243:69;:::i;:::-;51359:9;51353:4;51349:20;51344:2;51333:9;51329:18;51322:48;51387:76;51458:4;51449:6;51387:76;:::i;:::-;51379:84;;51473:70;51539:2;51528:9;51524:18;51515:6;51473:70;:::i;:::-;51590:9;51584:4;51580:20;51575:2;51564:9;51560:18;51553:48;51618:76;51689:4;51680:6;51618:76;:::i;:::-;51610:84;;50982:719;;;;;;;:::o;51707:182::-;51847:34;51843:1;51835:6;51831:14;51824:58;51707:182;:::o;51895:366::-;52037:3;52058:67;52122:2;52117:3;52058:67;:::i;:::-;52051:74;;52134:93;52223:3;52134:93;:::i;:::-;52252:2;52247:3;52243:12;52236:19;;51895:366;;;:::o;52267:419::-;52433:4;52471:2;52460:9;52456:18;52448:26;;52520:9;52514:4;52510:20;52506:1;52495:9;52491:17;52484:47;52548:131;52674:4;52548:131;:::i;:::-;52540:139;;52267:419;;;:::o;52692:182::-;52832:34;52828:1;52820:6;52816:14;52809:58;52692:182;:::o;52880:366::-;53022:3;53043:67;53107:2;53102:3;53043:67;:::i;:::-;53036:74;;53119:93;53208:3;53119:93;:::i;:::-;53237:2;53232:3;53228:12;53221:19;;52880:366;;;:::o;53252:419::-;53418:4;53456:2;53445:9;53441:18;53433:26;;53505:9;53499:4;53495:20;53491:1;53480:9;53476:17;53469:47;53533:131;53659:4;53533:131;:::i;:::-;53525:139;;53252:419;;;:::o;53677:178::-;53817:30;53813:1;53805:6;53801:14;53794:54;53677:178;:::o;53861:366::-;54003:3;54024:67;54088:2;54083:3;54024:67;:::i;:::-;54017:74;;54100:93;54189:3;54100:93;:::i;:::-;54218:2;54213:3;54209:12;54202:19;;53861:366;;;:::o;54233:419::-;54399:4;54437:2;54426:9;54422:18;54414:26;;54486:9;54480:4;54476:20;54472:1;54461:9;54457:17;54450:47;54514:131;54640:4;54514:131;:::i;:::-;54506:139;;54233:419;;;:::o;54658:235::-;54798:34;54794:1;54786:6;54782:14;54775:58;54867:18;54862:2;54854:6;54850:15;54843:43;54658:235;:::o;54899:366::-;55041:3;55062:67;55126:2;55121:3;55062:67;:::i;:::-;55055:74;;55138:93;55227:3;55138:93;:::i;:::-;55256:2;55251:3;55247:12;55240:19;;54899:366;;;:::o;55271:419::-;55437:4;55475:2;55464:9;55460:18;55452:26;;55524:9;55518:4;55514:20;55510:1;55499:9;55495:17;55488:47;55552:131;55678:4;55552:131;:::i;:::-;55544:139;;55271:419;;;:::o;55696:104::-;55741:7;55770:24;55788:5;55770:24;:::i;:::-;55759:35;;55696:104;;;:::o;55806:142::-;55909:32;55935:5;55909:32;:::i;:::-;55904:3;55897:45;55806:142;;:::o;55954:1064::-;56255:4;56293:3;56282:9;56278:19;56270:27;;56307:69;56373:1;56362:9;56358:17;56349:6;56307:69;:::i;:::-;56423:9;56417:4;56413:20;56408:2;56397:9;56393:18;56386:48;56451:76;56522:4;56513:6;56451:76;:::i;:::-;56443:84;;56574:9;56568:4;56564:20;56559:2;56548:9;56544:18;56537:48;56602:76;56673:4;56664:6;56602:76;:::i;:::-;56594:84;;56688:88;56772:2;56761:9;56757:18;56748:6;56688:88;:::i;:::-;56786:73;56854:3;56843:9;56839:19;56830:6;56786:73;:::i;:::-;56907:9;56901:4;56897:20;56891:3;56880:9;56876:19;56869:49;56935:76;57006:4;56997:6;56935:76;:::i;:::-;56927:84;;55954:1064;;;;;;;;;:::o;57024:224::-;57164:34;57160:1;57152:6;57148:14;57141:58;57233:7;57228:2;57220:6;57216:15;57209:32;57024:224;:::o;57254:366::-;57396:3;57417:67;57481:2;57476:3;57417:67;:::i;:::-;57410:74;;57493:93;57582:3;57493:93;:::i;:::-;57611:2;57606:3;57602:12;57595:19;;57254:366;;;:::o;57626:419::-;57792:4;57830:2;57819:9;57815:18;57807:26;;57879:9;57873:4;57869:20;57865:1;57854:9;57850:17;57843:47;57907:131;58033:4;57907:131;:::i;:::-;57899:139;;57626:419;;;:::o;58051:223::-;58191:34;58187:1;58179:6;58175:14;58168:58;58260:6;58255:2;58247:6;58243:15;58236:31;58051:223;:::o;58280:366::-;58422:3;58443:67;58507:2;58502:3;58443:67;:::i;:::-;58436:74;;58519:93;58608:3;58519:93;:::i;:::-;58637:2;58632:3;58628:12;58621:19;;58280:366;;;:::o;58652:419::-;58818:4;58856:2;58845:9;58841:18;58833:26;;58905:9;58899:4;58895:20;58891:1;58880:9;58876:17;58869:47;58933:131;59059:4;58933:131;:::i;:::-;58925:139;;58652:419;;;:::o;59077:138::-;59158:32;59184:5;59158:32;:::i;:::-;59151:5;59148:43;59138:71;;59205:1;59202;59195:12;59138:71;59077:138;:::o;59221:159::-;59286:5;59317:6;59311:13;59302:22;;59333:41;59368:5;59333:41;:::i;:::-;59221:159;;;;:::o;59386:523::-;59473:6;59481;59530:2;59518:9;59509:7;59505:23;59501:32;59498:119;;;59536:79;;:::i;:::-;59498:119;59656:1;59681:72;59745:7;59736:6;59725:9;59721:22;59681:72;:::i;:::-;59671:82;;59627:136;59802:2;59828:64;59884:7;59875:6;59864:9;59860:22;59828:64;:::i;:::-;59818:74;;59773:129;59386:523;;;;;:::o;59915:549::-;60090:4;60128:3;60117:9;60113:19;60105:27;;60142:69;60208:1;60197:9;60193:17;60184:6;60142:69;:::i;:::-;60221:72;60289:2;60278:9;60274:18;60265:6;60221:72;:::i;:::-;60303;60371:2;60360:9;60356:18;60347:6;60303:72;:::i;:::-;60385;60453:2;60442:9;60438:18;60429:6;60385:72;:::i;:::-;59915:549;;;;;;;:::o;60470:191::-;60510:3;60529:20;60547:1;60529:20;:::i;:::-;60524:25;;60563:20;60581:1;60563:20;:::i;:::-;60558:25;;60606:1;60603;60599:9;60592:16;;60627:3;60624:1;60621:10;60618:36;;;60634:18;;:::i;:::-;60618:36;60470:191;;;;:::o;60667:164::-;60807:16;60803:1;60795:6;60791:14;60784:40;60667:164;:::o;60837:366::-;60979:3;61000:67;61064:2;61059:3;61000:67;:::i;:::-;60993:74;;61076:93;61165:3;61076:93;:::i;:::-;61194:2;61189:3;61185:12;61178:19;;60837:366;;;:::o;61209:419::-;61375:4;61413:2;61402:9;61398:18;61390:26;;61462:9;61456:4;61452:20;61448:1;61437:9;61433:17;61426:47;61490:131;61616:4;61490:131;:::i;:::-;61482:139;;61209:419;;;:::o;61634:167::-;61774:19;61770:1;61762:6;61758:14;61751:43;61634:167;:::o;61807:366::-;61949:3;61970:67;62034:2;62029:3;61970:67;:::i;:::-;61963:74;;62046:93;62135:3;62046:93;:::i;:::-;62164:2;62159:3;62155:12;62148:19;;61807:366;;;:::o;62179:419::-;62345:4;62383:2;62372:9;62368:18;62360:26;;62432:9;62426:4;62422:20;62418:1;62407:9;62403:17;62396:47;62460:131;62586:4;62460:131;:::i;:::-;62452:139;;62179:419;;;:::o;62604:175::-;62744:27;62740:1;62732:6;62728:14;62721:51;62604:175;:::o;62785:366::-;62927:3;62948:67;63012:2;63007:3;62948:67;:::i;:::-;62941:74;;63024:93;63113:3;63024:93;:::i;:::-;63142:2;63137:3;63133:12;63126:19;;62785:366;;;:::o;63157:419::-;63323:4;63361:2;63350:9;63346:18;63338:26;;63410:9;63404:4;63400:20;63396:1;63385:9;63381:17;63374:47;63438:131;63564:4;63438:131;:::i;:::-;63430:139;;63157:419;;;:::o;63582:237::-;63722:34;63718:1;63710:6;63706:14;63699:58;63791:20;63786:2;63778:6;63774:15;63767:45;63582:237;:::o;63825:366::-;63967:3;63988:67;64052:2;64047:3;63988:67;:::i;:::-;63981:74;;64064:93;64153:3;64064:93;:::i;:::-;64182:2;64177:3;64173:12;64166:19;;63825:366;;;:::o;64197:419::-;64363:4;64401:2;64390:9;64386:18;64378:26;;64450:9;64444:4;64440:20;64436:1;64425:9;64421:17;64414:47;64478:131;64604:4;64478:131;:::i;:::-;64470:139;;64197:419;;;:::o;64622:180::-;64670:77;64667:1;64660:88;64767:4;64764:1;64757:15;64791:4;64788:1;64781:15;64808:386;64912:3;64940:38;64972:5;64940:38;:::i;:::-;64994:88;65075:6;65070:3;64994:88;:::i;:::-;64987:95;;65091:65;65149:6;65144:3;65137:4;65130:5;65126:16;65091:65;:::i;:::-;65181:6;65176:3;65172:16;65165:23;;64916:278;64808:386;;;;:::o;65200:271::-;65330:3;65352:93;65441:3;65432:6;65352:93;:::i;:::-;65345:100;;65462:3;65455:10;;65200:271;;;;:::o;65477:917::-;65732:4;65770:3;65759:9;65755:19;65747:27;;65784:69;65850:1;65839:9;65835:17;65826:6;65784:69;:::i;:::-;65900:9;65894:4;65890:20;65885:2;65874:9;65870:18;65863:48;65928:76;65999:4;65990:6;65928:76;:::i;:::-;65920:84;;66014:70;66080:2;66069:9;66065:18;66056:6;66014:70;:::i;:::-;66131:9;66125:4;66121:20;66116:2;66105:9;66101:18;66094:48;66159:76;66230:4;66221:6;66159:76;:::i;:::-;66151:84;;66283:9;66277:4;66273:20;66267:3;66256:9;66252:19;66245:49;66311:76;66382:4;66373:6;66311:76;:::i;:::-;66303:84;;65477:917;;;;;;;;:::o;66400:182::-;66540:34;66536:1;66528:6;66524:14;66517:58;66400:182;:::o;66588:366::-;66730:3;66751:67;66815:2;66810:3;66751:67;:::i;:::-;66744:74;;66827:93;66916:3;66827:93;:::i;:::-;66945:2;66940:3;66936:12;66929:19;;66588:366;;;:::o;66960:419::-;67126:4;67164:2;67153:9;67149:18;67141:26;;67213:9;67207:4;67203:20;67199:1;67188:9;67184:17;67177:47;67241:131;67367:4;67241:131;:::i;:::-;67233:139;;66960:419;;;:::o;67385:640::-;67580:4;67618:3;67607:9;67603:19;67595:27;;67632:71;67700:1;67689:9;67685:17;67676:6;67632:71;:::i;:::-;67713:72;67781:2;67770:9;67766:18;67757:6;67713:72;:::i;:::-;67795;67863:2;67852:9;67848:18;67839:6;67795:72;:::i;:::-;67914:9;67908:4;67904:20;67899:2;67888:9;67884:18;67877:48;67942:76;68013:4;68004:6;67942:76;:::i;:::-;67934:84;;67385:640;;;;;;;:::o;68031:141::-;68087:5;68118:6;68112:13;68103:22;;68134:32;68160:5;68134:32;:::i;:::-;68031:141;;;;:::o;68178:349::-;68247:6;68296:2;68284:9;68275:7;68271:23;68267:32;68264:119;;;68302:79;;:::i;:::-;68264:119;68422:1;68447:63;68502:7;68493:6;68482:9;68478:22;68447:63;:::i;:::-;68437:73;;68393:127;68178:349;;;;:::o

Swarm Source

ipfs://93aa0f0a0f247e724eda4844a1e6f5c4f731c090cfc7c0247ab8fbdded3adf44
[ 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.