ETH Price: $2,443.83 (+1.06%)

Token

Unexpected Withdrawal (UW)
 

Overview

Max Total Supply

6 UW

Holders

5

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
UnexpectedWithdrawal

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-14
*/

/**
 *Submitted for verification at Etherscan.io on 2023-05-12
*/

/**
 *Submitted for verification at polygonscan.com on 2023-04-28
*/

// SPDX-License-Identifier: MIT

/// @title Unexpected Withdrawal
/// @author André Costa @ TQOE


// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.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 functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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

    // Mapping owner address to token count
    mapping(address => uint256) internal _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 = _owners[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 whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        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);

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

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * 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);

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits 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.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

/// @dev This is a contract used to add ERC2981 support to ERC721 and 1155
contract ERC2981 is IERC2981 {

    uint24 private royaltyPercent;
    address public royaltySplitter;

    /// @dev Sets token royalties
    /// @param value percentage (using 2 decimals - 10000 = 100, 0 = 0)
    function _setRoyalties(uint256 value) internal {
        require(value <= 10000, "ERC2981Royalties: Too high");
        royaltyPercent = uint24(value);
    }

    /// @inheritdoc IERC2981
    function royaltyInfo(uint256, uint256 value)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(royaltySplitter != address(0), "No receiving address set!");
        receiver = royaltySplitter;
        royaltyAmount = (value * royaltyPercent) / 10000;
    }

    /// @inheritdoc IERC165
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || interfaceId == type(IERC165).interfaceId;
    }
}

contract IRoyaltySplitter {

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view virtual returns (uint256) {
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view virtual returns (address) {
    }

    /**
     * @dev Add a new payee to the contract.
     */
    function addPayee(address account, uint256 shares_) public virtual {}

    /**
     * @dev Add more shares to an exisitng payee to the contract.
     */
    function addShares(address account, uint256 shares_) public virtual {}
}

interface IMailbox {
    function dispatch(
        uint32 _destinationDomain,
        bytes32 _recipientAddress,
        bytes calldata _messageBody
    ) external returns (uint256);
}

// File interfaces/IInterchainGasPaymaster.sol

pragma solidity >=0.6.11;

/**
 * @title IInterchainGasPaymaster
 * @notice Manages payments on a source chain to cover gas costs of relaying
 * messages to destination chains.
 */
interface IInterchainGasPaymaster {
    function payForGas(
        bytes32 _messageId,
        uint32 _destinationDomain,
        uint256 _gasAmount,
        address _refundAddress
    ) external payable;

    function quoteGasPayment(uint32 _destinationDomain, uint256 _gasAmount)
        external
        view
        returns (uint256);
}

pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

pragma solidity ^0.8.13;

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

pragma solidity ^0.8.13;

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}


contract UnexpectedWithdrawal is ERC721Enumerable, ERC2981, Ownable, ReentrancyGuard, DefaultOperatorFilterer {
    using Strings for uint256;

    struct ContributionInfo {
        uint256 id;
        string paragraph;
        address contributor;
        uint256 timestamp;
    }
    

    //holds the info about each contribution for each story
    mapping(uint => mapping(uint256 => ContributionInfo)) private _contributionInfo;
    //holds the amount of contributions per story
    mapping(uint => uint256) private _numberOfContributions;
    //locks the contribution once it has been executed and resets on transfer
    mapping(uint => bool) public contributionLock;

    /// Price to be able to contribute to a story
    uint256 public contributionCost;

    /// QEV per Contribution
    uint256 public QEVPerContribution = 200000000000000000000;

    uint256 public sharesPerContribution = 1;

    enum ContractState {
        OFF,
        ON
    }
    ContractState public contractState = ContractState.OFF;

    string public baseURI;

    address public recipient;

    uint256 public maxBytes;

    /// Crosschain Messaging 
    uint32 constant recipientDomain = 1284;
    address public recipientAddress = 0xaDa07e07e0Dbdfad2177d657016972aA5DD5DF66;
    address constant mailbox = 0x35231d4c2D8B8ADcB5617A638A0c4548684c7C70;
    address constant gasPaymaster = 0x56f52c0A1ddcD557285f7CBc782D3d83096CE1Cc;

    constructor() ERC721("Unexpected Withdrawal", "UW") {
        baseURI = "ipfs://QmR8auuDYGuBWq3mbFdGqFYyTLf5QvLhPQ9Pdh2j2FJ4m8/";

        //address that will recieve funds
        recipient = msg.sender;

        // 10% royalties
        _setRoyalties(1000);

        //ser the royalty splitter addresses for each token
        royaltySplitter = 0x2a801Efa1a7b98Dc7FE241b4123FbEF8B6058413;

        _safeMint(msg.sender, 1);
        _safeMint(msg.sender, 2);
        _safeMint(msg.sender, 3);
        _safeMint(msg.sender, 4);
        _safeMint(msg.sender, 5);
        _safeMint(msg.sender, 6);

        maxBytes = 10000;
    }

    receive() payable external {
        _withdraw(payable(recipient), msg.value); 
    }
    fallback() payable external {
        revert();
    }

    //
    // MODIFIERS
    //

    /**
     * Do not allow calls from other contracts.
     */
    modifier noBots() {
        require(msg.sender == tx.origin, "No bots!");
        _;
    }

    /**
     * Ensure current state is correct for this method.
     */
    modifier isContractState(ContractState contractState_) {
        require(contractState == contractState_, "Invalid state");
        _;
    }

    //
    // MINT
    //

    /**
     * Mint tokens
     * @notice This function is only available to the owner
     */
    function mint(uint256 quantity)
        external
        onlyOwner
    {
        for (uint i; i < quantity; i++) {
            _safeMint(msg.sender, totalSupply() + 1);
        }
        
    }

    //
    // ADMIN
    //

    /**
     * Sets base URI.
     * @param baseURI_ The base URI
     */
    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    /**
     * Update wallet that will recieve funds.
     * @param newRecipient The new address that will recieve funds
     */
    function setRecipient(address newRecipient) external onlyOwner {
        require(newRecipient != address(0), "Cannot be the 0 address!");
        recipient = newRecipient;
    }

    /**
     * Update smart contract address that will receive crosschain message
     * @param newRecipient The new address that will recieve messages
     */
    function setAddressRecipient(address newRecipient) external onlyOwner {
        require(newRecipient != address(0), "Cannot be the 0 address!");
        recipientAddress = newRecipient;
    }

    /**
     * Update wallet that will recieve funds.
     * @param newSplitter The new address that will recieve funds
     */
    function setRoyaltySplitter(address newSplitter) external onlyOwner {
        require(newSplitter != address(0), "Cannot be the 0 address!");
        royaltySplitter = newSplitter;
    }

    /**
     * Sets price of contribution.
     * @param newCost the new price
     */
    function setContributionCost(uint256 newCost) external onlyOwner {
        contributionCost = newCost;
    }

    /**
     * Sets new amount of max bytes.
     * @param newBytes the new amount of max bytes
     */
    function setMaxBytes(uint256 newBytes) external onlyOwner {
        maxBytes = newBytes;
    }

    /**
     * Sets amount of QEV to distribute per contribution.
     * @param newQEV the new amount
     */
    function setQEVPerContribution(uint256 newQEV) external onlyOwner {
        QEVPerContribution = newQEV;
    }

    function setSharesPerContribution(uint256 newShares) external onlyOwner {
        sharesPerContribution = newShares;
    }

    /**
     * Set contract state.
     */
    function toggleContractState() external onlyOwner {
        if (contractState == ContractState.OFF) {
            contractState = ContractState.ON;
        }
        else {
            contractState = ContractState.OFF;
        }
        
    }

    //retrieve all funds recieved from minting
    function withdraw() public onlyOwner {
        uint256 balance = accountBalance();
        require(balance > 0, 'No Funds to withdraw, Balance is 0');

        _withdraw(payable(recipient), balance); 
    }
    
    //send the percentage of funds to a shareholder´s wallet
    function _withdraw(address payable account, uint256 amount) internal {
        (bool sent, ) = account.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }

    /**
     * @dev ability to edit a certain contribution. 
     * @notice this is done to be able to protect against bad actors that publish
     * content against our community guidelines
     */
    function editContribution(uint tokenID, uint256 index, string memory newParagraph, address newContributor) external onlyOwner {
        _contributionInfo[tokenID][index].contributor = newContributor;
        _contributionInfo[tokenID][index].paragraph = newParagraph;
    }

    //
    // VIEWS
    //

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

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

    /**
     * Get the current amount of Eth stored
     */
    function accountBalance() public view returns(uint) {
        return address(this).balance;
    }

    /**
     * @dev Gets the information related to a specific contribution
     */
    function getContributionInfo(uint tokenID, uint256 index) public view returns(ContributionInfo memory) {
        return _contributionInfo[tokenID][index];
    }

    /**
     * @dev Gets the amount of contribution for one NFT
     */
    function getNumberOfContributions(uint tokenID) public view returns(uint256) {
        return _numberOfContributions[tokenID];
    }

    //
    // STORY & CONTRIBUTOR PERSONALIZATION
    //

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     * We override the ERC721 _transfer to include the contribution lock.
     * Contribution Lock resets so next owner can contribute
     */
    function _transfer(address from,address to,uint256 tokenId_) internal virtual override {
        require(ERC721.ownerOf(tokenId_) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId_);

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

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

        contributionLock[tokenId_] = false;

        emit Transfer(from, to, tokenId_);
    }

    //add to a story
    function contribute(uint tokenId, string memory paragraph) external payable isContractState(ContractState.ON) {
        require(msg.sender == ownerOf(tokenId), "Not the owner of this Token!");
        require(bytes(paragraph).length <= maxBytes, "Maximum bytes exceeded!");
        require(!contributionLock[tokenId], "Contribution has already been made!");
        require(msg.value >= contributionCost, "Insufficient funds sent to contribute!");

        _numberOfContributions[tokenId] += 1;

        ContributionInfo memory contributionInfo;
        contributionInfo.id = _numberOfContributions[tokenId];
        contributionInfo.paragraph = paragraph;
        contributionInfo.contributor = msg.sender;
        contributionInfo.timestamp = block.timestamp;

        IRoyaltySplitter royaltySplitter_ = IRoyaltySplitter(royaltySplitter);
        uint shares = royaltySplitter_.shares(msg.sender);
        shares > 0 ? royaltySplitter_.addShares(msg.sender, sharesPerContribution) : royaltySplitter_.addPayee(msg.sender, sharesPerContribution);

        _contributionInfo[tokenId][_numberOfContributions[tokenId]] = contributionInfo;
        contributionLock[tokenId] = true;
        
        //claimLock.newClaim(QEVPerContribution, msg.sender);
        sendMessage();
    }
   
   /// @inheritdoc IERC165
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, ERC2981) returns (bool) {
        return ERC721Enumerable.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId);
    }

    /// CROSSCHAIN MESSAGING
    
    // transforming address type to bytes32
    function addressToBytes32(address _addr) internal pure returns (bytes32) {
        return bytes32(uint256(uint160(_addr)));
    }

    //send the crosschain message
    function sendMessage() internal {
        uint256 messageId = IMailbox(mailbox).dispatch(
            recipientDomain,
            addressToBytes32(recipientAddress),
            abi.encode(QEVPerContribution, msg.sender)
        );
        
        uint256 gasPayment = IInterchainGasPaymaster(gasPaymaster).quoteGasPayment(recipientDomain, 100000);

        IInterchainGasPaymaster(gasPaymaster).payForGas{value: gasPayment}(bytes32(messageId), recipientDomain, 100000, address(this));

    }
    

    //
    // Default Operator Filter
    //

    /**
     * @dev See {IERC721-setApprovalForAll}.
     *      In this example the added modifier ensures that the operator is allowed by the OperatorFilterRegistry.
     */
    function setApprovalForAll(address operator, bool approved) public override(ERC721, IERC721) onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    /**
     * @dev See {IERC721-approve}.
     *      In this example the added modifier ensures that the operator is allowed by the OperatorFilterRegistry.
     */
    function approve(address operator, uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    /**
     * @dev See {IERC721-transferFrom}.
     *      In this example the added modifier ensures that the operator is allowed by the OperatorFilterRegistry.
     */
    function transferFrom(address from, address to, uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     *      In this example the added modifier ensures that the operator is allowed by the OperatorFilterRegistry.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     *      In this example the added modifier ensures that the operator is allowed by the OperatorFilterRegistry.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override(ERC721, IERC721)
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"QEVPerContribution","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accountBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractState","outputs":[{"internalType":"enum UnexpectedWithdrawal.ContractState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"paragraph","type":"string"}],"name":"contribute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contributionCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"contributionLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"string","name":"newParagraph","type":"string"},{"internalType":"address","name":"newContributor","type":"address"}],"name":"editContribution","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":"uint256","name":"tokenID","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getContributionInfo","outputs":[{"components":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"paragraph","type":"string"},{"internalType":"address","name":"contributor","type":"address"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"internalType":"struct UnexpectedWithdrawal.ContributionInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"getNumberOfContributions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBytes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recipientAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltySplitter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"newRecipient","type":"address"}],"name":"setAddressRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCost","type":"uint256"}],"name":"setContributionCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBytes","type":"uint256"}],"name":"setMaxBytes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newQEV","type":"uint256"}],"name":"setQEVPerContribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRecipient","type":"address"}],"name":"setRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSplitter","type":"address"}],"name":"setRoyaltySplitter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newShares","type":"uint256"}],"name":"setSharesPerContribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sharesPerContribution","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"toggleContractState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052680ad78ebc5ac620000060115560016012556000601360006101000a81548160ff021916908360018111156200003f576200003e62000ff8565b5b021790555073ada07e07e0dbdfad2177d657016972aa5dd5df66601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000a657600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601581526020017f556e6578706563746564205769746864726177616c00000000000000000000008152506040518060400160405280600281526020017f555700000000000000000000000000000000000000000000000000000000000081525081600090816200013b9190620012a1565b5080600190816200014d9190620012a1565b5050506200017062000164620004c460201b60201c565b620004cc60201b60201c565b6001600c8190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200036d57801562000233576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001f9929190620013cd565b600060405180830381600087803b1580156200021457600080fd5b505af115801562000229573d6000803e3d6000fd5b505050506200036c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002ed576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002b3929190620013cd565b600060405180830381600087803b158015620002ce57600080fd5b505af1158015620002e3573d6000803e3d6000fd5b505050506200036b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003369190620013fa565b600060405180830381600087803b1580156200035157600080fd5b505af115801562000366573d6000803e3d6000fd5b505050505b5b5b50506040518060600160405280603681526020016200787b6036913960149081620003999190620012a1565b5033601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003ee6103e86200059260201b60201c565b732a801efa1a7b98dc7fe241b4123fbef8b6058413600a60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000456336001620005fc60201b60201c565b62000469336002620005fc60201b60201c565b6200047c336003620005fc60201b60201c565b6200048f336004620005fc60201b60201c565b620004a2336005620005fc60201b60201c565b620004b5336006620005fc60201b60201c565b61271060168190555062001944565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612710811115620005da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d19062001478565b60405180910390fd5b80600a60006101000a81548162ffffff021916908362ffffff16021790555050565b6200061e8282604051806020016040528060008152506200062260201b60201c565b5050565b6200063483836200069060201b60201c565b6200064960008484846200088960201b60201c565b6200068b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006829062001510565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000702576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f99062001582565b60405180910390fd5b620007138162000a3260201b60201c565b1562000756576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200074d90620015f4565b60405180910390fd5b6200076a6000838362000a9e60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620007bc919062001645565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620008856000838362000be360201b60201c565b5050565b6000620008b78473ffffffffffffffffffffffffffffffffffffffff1662000be860201b6200269f1760201c565b1562000a25578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620008e9620004c460201b60201c565b8786866040518563ffffffff1660e01b81526004016200090d94939291906200172b565b6020604051808303816000875af19250505080156200094c57506040513d601f19601f82011682018060405250810190620009499190620017e1565b60015b620009d4573d80600081146200097f576040519150601f19603f3d011682016040523d82523d6000602084013e62000984565b606091505b506000815103620009cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009c39062001510565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000a2a565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000ab683838362000c0b60201b620026c21760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b025762000afc8162000c1060201b60201c565b62000b4a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000b495762000b48838262000c5960201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b965762000b908162000dd660201b60201c565b62000bde565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000bdd5762000bdc828262000eb260201b60201c565b5b5b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000c738462000f3e60201b620018aa1760201c565b62000c7f919062001813565b905060006007600084815260200190815260200160002054905081811462000d65576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000dec919062001813565b905060006009600084815260200190815260200160002054905060006008838154811062000e1f5762000e1e6200184e565b5b90600052602060002001549050806008838154811062000e445762000e436200184e565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000e965762000e956200187d565b5b6001900381819060005260206000200160009055905550505050565b600062000eca8362000f3e60201b620018aa1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000fb1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000fa89062001922565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010a957607f821691505b602082108103620010bf57620010be62001061565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620011297fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620010ea565b620011358683620010ea565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620011826200117c62001176846200114d565b62001157565b6200114d565b9050919050565b6000819050919050565b6200119e8362001161565b620011b6620011ad8262001189565b848454620010f7565b825550505050565b600090565b620011cd620011be565b620011da81848462001193565b505050565b5b818110156200120257620011f6600082620011c3565b600181019050620011e0565b5050565b601f82111562001251576200121b81620010c5565b6200122684620010da565b8101602085101562001236578190505b6200124e6200124585620010da565b830182620011df565b50505b505050565b600082821c905092915050565b6000620012766000198460080262001256565b1980831691505092915050565b600062001291838362001263565b9150826002028217905092915050565b620012ac8262001027565b67ffffffffffffffff811115620012c857620012c762001032565b5b620012d4825462001090565b620012e182828562001206565b600060209050601f83116001811462001319576000841562001304578287015190505b62001310858262001283565b86555062001380565b601f1984166200132986620010c5565b60005b8281101562001353578489015182556001820191506020850194506020810190506200132c565b868310156200137357848901516200136f601f89168262001263565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620013b58262001388565b9050919050565b620013c781620013a8565b82525050565b6000604082019050620013e46000830185620013bc565b620013f36020830184620013bc565b9392505050565b6000602082019050620014116000830184620013bc565b92915050565b600082825260208201905092915050565b7f45524332393831526f79616c746965733a20546f6f2068696768000000000000600082015250565b600062001460601a8362001417565b91506200146d8262001428565b602082019050919050565b60006020820190508181036000830152620014938162001451565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000620014f860328362001417565b915062001505826200149a565b604082019050919050565b600060208201905081810360008301526200152b81620014e9565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006200156a60208362001417565b9150620015778262001532565b602082019050919050565b600060208201905081810360008301526200159d816200155b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000620015dc601c8362001417565b9150620015e982620015a4565b602082019050919050565b600060208201905081810360008301526200160f81620015cd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062001652826200114d565b91506200165f836200114d565b92508282019050808211156200167a576200167962001616565b5b92915050565b6200168b816200114d565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b83811015620016cd578082015181840152602081019050620016b0565b60008484015250505050565b6000601f19601f8301169050919050565b6000620016f78262001691565b6200170381856200169c565b935062001715818560208601620016ad565b6200172081620016d9565b840191505092915050565b6000608082019050620017426000830187620013bc565b620017516020830186620013bc565b62001760604083018562001680565b8181036060830152620017748184620016ea565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620017bb8162001784565b8114620017c757600080fd5b50565b600081519050620017db81620017b0565b92915050565b600060208284031215620017fa57620017f96200177f565b5b60006200180a84828501620017ca565b91505092915050565b600062001820826200114d565b91506200182d836200114d565b925082820390508181111562001848576200184762001616565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006200190a60298362001417565b91506200191782620018ac565b604082019050919050565b600060208201905081810360008301526200193d81620018fb565b9050919050565b615f2780620019546000396000f3fe60806040526004361061028c5760003560e01c8063637850791161015a578063aa2add68116100c1578063e41d44dd1161007a578063e41d44dd14610a02578063e4fc691314610a2d578063e7315f9914610a6a578063e985e9c514610a86578063efe4a34f14610ac3578063f2fde38b14610aee576102bf565b8063aa2add68146108f4578063b0a1c1c41461091d578063b88d4fde14610948578063c87b56dd14610971578063d00f2f38146109ae578063d811bc67146109d9576102bf565b806385209ee01161011357806385209ee0146107f85780638da5cb5b1461082357806395d89b411461084e57806398db71a314610879578063a0712d68146108a2578063a22cb465146108cb576102bf565b806363785079146106e857806366d003ac146107115780636c0360eb1461073c57806370a0823114610767578063715018a6146107a457806372269c0b146107bb576102bf565b80633050fec9116101fe5780634ac0b588116101b75780634ac0b588146105c65780634f6ccce7146105f157806355f804b31461062e57806359ad31d1146106575780635aff5999146106805780636352211e146106ab576102bf565b80633050fec9146104de5780633bbed4a0146105075780633ccfd60b14610530578063411d8f2f1461054757806341f434341461057257806342842e0e1461059d576102bf565b806318160ddd1161025057806318160ddd146103cf57806323b872dd146103fa57806324fde1e21461042357806329ffb0711461043a5780632a55205a146104635780632f745c59146104a1576102bf565b806301ffc9a7146102c45780630286d4c81461030157806306fdde031461033e578063081812fc14610369578063095ea7b3146103a6576102bf565b366102bf576102bd601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1634610b17565b005b600080fd5b3480156102d057600080fd5b506102eb60048036038101906102e69190613fc2565b610bc8565b6040516102f8919061400a565b60405180910390f35b34801561030d57600080fd5b506103286004803603810190610323919061405b565b610bea565b6040516103359190614097565b60405180910390f35b34801561034a57600080fd5b50610353610c07565b6040516103609190614142565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b919061405b565b610c99565b60405161039d91906141a5565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c891906141ec565b610cdf565b005b3480156103db57600080fd5b506103e4610cf8565b6040516103f19190614097565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c919061422c565b610d05565b005b34801561042f57600080fd5b50610438610d54565b005b34801561044657600080fd5b50610461600480360381019061045c919061405b565b610e69565b005b34801561046f57600080fd5b5061048a6004803603810190610485919061427f565b610eef565b6040516104989291906142bf565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c391906141ec565b610fe0565b6040516104d59190614097565b60405180910390f35b3480156104ea57600080fd5b50610505600480360381019061050091906142e8565b611085565b005b34801561051357600080fd5b5061052e600480360381019061052991906142e8565b6111b4565b005b34801561053c57600080fd5b506105456112e3565b005b34801561055357600080fd5b5061055c6113dd565b60405161056991906141a5565b60405180910390f35b34801561057e57600080fd5b50610587611403565b6040516105949190614374565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf919061422c565b611415565b005b3480156105d257600080fd5b506105db611464565b6040516105e89190614097565b60405180910390f35b3480156105fd57600080fd5b506106186004803603810190610613919061405b565b61146a565b6040516106259190614097565b60405180910390f35b34801561063a57600080fd5b50610655600480360381019061065091906144c4565b6114db565b005b34801561066357600080fd5b5061067e600480360381019061067991906142e8565b61156a565b005b34801561068c57600080fd5b50610695611699565b6040516106a291906141a5565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd919061405b565b6116bf565b6040516106df91906141a5565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a919061405b565b611770565b005b34801561071d57600080fd5b506107266117f6565b60405161073391906141a5565b60405180910390f35b34801561074857600080fd5b5061075161181c565b60405161075e9190614142565b60405180910390f35b34801561077357600080fd5b5061078e600480360381019061078991906142e8565b6118aa565b60405161079b9190614097565b60405180910390f35b3480156107b057600080fd5b506107b9611961565b005b3480156107c757600080fd5b506107e260048036038101906107dd919061405b565b6119e9565b6040516107ef919061400a565b60405180910390f35b34801561080457600080fd5b5061080d611a09565b60405161081a9190614584565b60405180910390f35b34801561082f57600080fd5b50610838611a1c565b60405161084591906141a5565b60405180910390f35b34801561085a57600080fd5b50610863611a46565b6040516108709190614142565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b919061405b565b611ad8565b005b3480156108ae57600080fd5b506108c960048036038101906108c4919061405b565b611b5e565b005b3480156108d757600080fd5b506108f260048036038101906108ed91906145cb565b611c19565b005b34801561090057600080fd5b5061091b6004803603810190610916919061460b565b611c32565b005b34801561092957600080fd5b50610932611d4f565b60405161093f9190614097565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a919061472f565b611d57565b005b34801561097d57600080fd5b506109986004803603810190610993919061405b565b611da8565b6040516109a59190614142565b60405180910390f35b3480156109ba57600080fd5b506109c3611e54565b6040516109d09190614097565b60405180910390f35b3480156109e557600080fd5b50610a0060048036038101906109fb919061405b565b611e5a565b005b348015610a0e57600080fd5b50610a17611ee0565b604051610a249190614097565b60405180910390f35b348015610a3957600080fd5b50610a546004803603810190610a4f919061427f565b611ee6565b604051610a61919061487d565b60405180910390f35b610a846004803603810190610a7f919061489f565b612021565b005b348015610a9257600080fd5b50610aad6004803603810190610aa891906148fb565b61250e565b604051610aba919061400a565b60405180910390f35b348015610acf57600080fd5b50610ad86125a2565b604051610ae59190614097565b60405180910390f35b348015610afa57600080fd5b50610b156004803603810190610b1091906142e8565b6125a8565b005b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610b3d9061496c565b60006040518083038185875af1925050503d8060008114610b7a576040519150601f19603f3d011682016040523d82523d6000602084013e610b7f565b606091505b5050905080610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba906149cd565b60405180910390fd5b505050565b6000610bd3826126c7565b80610be35750610be282612741565b5b9050919050565b6000600e6000838152602001908152602001600020549050919050565b606060008054610c1690614a1c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4290614a1c565b8015610c8f5780601f10610c6457610100808354040283529160200191610c8f565b820191906000526020600020905b815481529060010190602001808311610c7257829003601f168201915b5050505050905090565b6000610ca482612813565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610ce98161285e565b610cf3838361295b565b505050565b6000600880549050905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d4357610d423361285e565b5b610d4e848484612a72565b50505050565b610d5c612ad2565b73ffffffffffffffffffffffffffffffffffffffff16610d7a611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790614a99565b60405180910390fd5b60006001811115610de457610de361450d565b5b601360009054906101000a900460ff166001811115610e0657610e0561450d565b5b03610e3b576001601360006101000a81548160ff02191690836001811115610e3157610e3061450d565b5b0217905550610e67565b6000601360006101000a81548160ff02191690836001811115610e6157610e6061450d565b5b02179055505b565b610e71612ad2565b73ffffffffffffffffffffffffffffffffffffffff16610e8f611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90614a99565b60405180910390fd5b8060108190555050565b600080600073ffffffffffffffffffffffffffffffffffffffff16600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a90614b05565b60405180910390fd5b600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff169150612710600a60009054906101000a900462ffffff1662ffffff1684610fcd9190614b54565b610fd79190614bc5565b90509250929050565b6000610feb836118aa565b821061102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390614c68565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61108d612ad2565b73ffffffffffffffffffffffffffffffffffffffff166110ab611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890614a99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790614cd4565b60405180910390fd5b80600a60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111bc612ad2565b73ffffffffffffffffffffffffffffffffffffffff166111da611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614611230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122790614a99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690614cd4565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112eb612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611309611a1c565b73ffffffffffffffffffffffffffffffffffffffff161461135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690614a99565b60405180910390fd5b6000611369611d4f565b9050600081116113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590614d66565b60405180910390fd5b6113da601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610b17565b50565b600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611453576114523361285e565b5b61145e848484612ada565b50505050565b60125481565b6000611474610cf8565b82106114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90614df8565b60405180910390fd5b600882815481106114c9576114c8614e18565b5b90600052602060002001549050919050565b6114e3612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611501611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e90614a99565b60405180910390fd5b80601490816115669190614fe9565b5050565b611572612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611590611a1c565b73ffffffffffffffffffffffffffffffffffffffff16146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd90614a99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90614cd4565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e90615107565b60405180910390fd5b80915050919050565b611778612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611796611a1c565b73ffffffffffffffffffffffffffffffffffffffff16146117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e390614a99565b60405180910390fd5b8060118190555050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6014805461182990614a1c565b80601f016020809104026020016040519081016040528092919081815260200182805461185590614a1c565b80156118a25780601f10611877576101008083540402835291602001916118a2565b820191906000526020600020905b81548152906001019060200180831161188557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190615199565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611969612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611987611a1c565b73ffffffffffffffffffffffffffffffffffffffff16146119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490614a99565b60405180910390fd5b6119e76000612afa565b565b600f6020528060005260406000206000915054906101000a900460ff1681565b601360009054906101000a900460ff1681565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611a5590614a1c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8190614a1c565b8015611ace5780601f10611aa357610100808354040283529160200191611ace565b820191906000526020600020905b815481529060010190602001808311611ab157829003601f168201915b5050505050905090565b611ae0612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611afe611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90614a99565b60405180910390fd5b8060128190555050565b611b66612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611b84611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd190614a99565b60405180910390fd5b60005b81811015611c1557611c02336001611bf3610cf8565b611bfd91906151b9565b612bc0565b8080611c0d906151ed565b915050611bdd565b5050565b81611c238161285e565b611c2d8383612bde565b505050565b611c3a612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611c58611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca590614a99565b60405180910390fd5b80600d6000868152602001908152602001600020600085815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600d600086815260200190815260200160002060008581526020019081526020016000206001019081611d489190614fe9565b5050505050565b600047905090565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d9557611d943361285e565b5b611da185858585612bf4565b5050505050565b6060611db78261ffff16612c56565b611df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ded90615281565b60405180910390fd5b600060148054611e0590614a1c565b905011611e215760405180602001604052806000815250611e4d565b6014611e2c83612cc2565b604051602001611e3d9291906153ac565b6040516020818303038152906040525b9050919050565b60115481565b611e62612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611e80611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614611ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecd90614a99565b60405180910390fd5b8060168190555050565b60105481565b611eee613f18565b600d6000848152602001908152602001600020600083815260200190815260200160002060405180608001604052908160008201548152602001600182018054611f3790614a1c565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6390614a1c565b8015611fb05780601f10611f8557610100808354040283529160200191611fb0565b820191906000526020600020905b815481529060010190602001808311611f9357829003601f168201915b505050505081526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600382015481525050905092915050565b60018060018111156120365761203561450d565b5b601360009054906101000a900460ff1660018111156120585761205761450d565b5b14612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208f90615427565b60405180910390fd5b6120a1836116bf565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461210e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210590615493565b60405180910390fd5b60165482511115612154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214b906154ff565b60405180910390fd5b600f600084815260200190815260200160002060009054906101000a900460ff16156121b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ac90615591565b60405180910390fd5b6010543410156121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190615623565b60405180910390fd5b6001600e6000858152602001908152602001600020600082825461221e91906151b9565b9250508190555061222d613f18565b600e60008581526020019081526020016000205481600001818152505082816020018190525033816040019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050428160600181815250506000600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff1663ce7c2ac2336040518263ffffffff1660e01b81526004016122f791906141a5565b602060405180830381865afa158015612314573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123389190615658565b9050600081116123b6578173ffffffffffffffffffffffffffffffffffffffff166318f9b023336012546040518363ffffffff1660e01b815260040161237f9291906142bf565b600060405180830381600087803b15801561239957600080fd5b505af11580156123ad573d6000803e3d6000fd5b50505050612426565b8173ffffffffffffffffffffffffffffffffffffffff16630e81073c336012546040518363ffffffff1660e01b81526004016123f39291906142bf565b600060405180830381600087803b15801561240d57600080fd5b505af1158015612421573d6000803e3d6000fd5b505050505b82600d60008881526020019081526020016000206000600e60008a815260200190815260200160002054815260200190815260200160002060008201518160000155602082015181600101908161247d9190614fe9565b5060408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301559050506001600f600088815260200190815260200160002060006101000a81548160ff021916908315150217905550612506612e22565b505050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60165481565b6125b0612ad2565b73ffffffffffffffffffffffffffffffffffffffff166125ce611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614612624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261b90614a99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268a906156f7565b60405180910390fd5b61269c81612afa565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061273a575061273982613034565b5b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061280c57507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61281c81612c56565b61285b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285290615107565b60405180910390fd5b50565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612958576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016128d5929190615717565b602060405180830381865afa1580156128f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129169190615755565b61295757806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161294e91906141a5565b60405180910390fd5b5b50565b6000612966826116bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd906157f4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166129f5612ad2565b73ffffffffffffffffffffffffffffffffffffffff161480612a245750612a2381612a1e612ad2565b61250e565b5b612a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5a90615886565b60405180910390fd5b612a6d8383613116565b505050565b612a83612a7d612ad2565b826131cf565b612ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab990615918565b60405180910390fd5b612acd838383613264565b505050565b600033905090565b612af583838360405180602001604052806000815250611d57565b505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bda8282604051806020016040528060008152506134eb565b5050565b612bf0612be9612ad2565b8383613546565b5050565b612c05612bff612ad2565b836131cf565b612c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3b90615918565b60405180910390fd5b612c50848484846136b2565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060008203612d09576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e1d565b600082905060005b60008214612d3b578080612d24906151ed565b915050600a82612d349190614bc5565b9150612d11565b60008167ffffffffffffffff811115612d5757612d56614399565b5b6040519080825280601f01601f191660200182016040528015612d895781602001600182028036833780820191505090505b5090505b60008514612e1657600182612da29190615938565b9150600a85612db1919061596c565b6030612dbd91906151b9565b60f81b818381518110612dd357612dd2614e18565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e0f9190614bc5565b9450612d8d565b8093505050505b919050565b60007335231d4c2d8b8adcb5617a638a0c4548684c7c7073ffffffffffffffffffffffffffffffffffffffff1663fa31de01610504612e82601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661370e565b60115433604051602001612e9792919061599d565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401612ec493929190615a53565b6020604051808303816000875af1158015612ee3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f079190615658565b905060007356f52c0a1ddcd557285f7cbc782d3d83096ce1cc73ffffffffffffffffffffffffffffffffffffffff1663a6929793610504620186a06040518363ffffffff1660e01b8152600401612f5f929190615acc565b602060405180830381865afa158015612f7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fa09190615658565b90507356f52c0a1ddcd557285f7cbc782d3d83096ce1cc73ffffffffffffffffffffffffffffffffffffffff166311bf2c18828460001b610504620186a0306040518663ffffffff1660e01b8152600401612ffe9493929190615af5565b6000604051808303818588803b15801561301757600080fd5b505af115801561302b573d6000803e3d6000fd5b50505050505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806130ff57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061310f575061310e82613731565b5b9050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16613189836116bf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806131db836116bf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061321d575061321c818561250e565b5b8061325b57508373ffffffffffffffffffffffffffffffffffffffff1661324384610c99565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613284826116bf565b73ffffffffffffffffffffffffffffffffffffffff16146132da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d190615bac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334090615c3e565b60405180910390fd5b61335483838361379b565b61335f600082613116565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133af9190615938565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461340691906151b9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600f600083815260200190815260200160002060006101000a81548160ff021916908315150217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6134f583836138ad565b6135026000848484613a86565b613541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353890615cd0565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036135b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135ab90615d3c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516136a5919061400a565b60405180910390a3505050565b6136bd848484613264565b6136c984848484613a86565b613708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ff90615cd0565b60405180910390fd5b50505050565b60008173ffffffffffffffffffffffffffffffffffffffff1660001b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6137a68383836126c2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036137e8576137e381613c0d565b613827565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613826576138258382613c56565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036138695761386481613dc3565b6138a8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146138a7576138a68282613e94565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361391c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391390615da8565b60405180910390fd5b61392581612c56565b15613965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395c90615e14565b60405180910390fd5b6139716000838361379b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139c191906151b9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a8260008383613f13565b5050565b6000613aa78473ffffffffffffffffffffffffffffffffffffffff1661269f565b15613c00578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613ad0612ad2565b8786866040518563ffffffff1660e01b8152600401613af29493929190615e34565b6020604051808303816000875af1925050508015613b2e57506040513d601f19601f82011682018060405250810190613b2b9190615e95565b60015b613bb0573d8060008114613b5e576040519150601f19603f3d011682016040523d82523d6000602084013e613b63565b606091505b506000815103613ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b9f90615cd0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613c05565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613c63846118aa565b613c6d9190615938565b9050600060076000848152602001908152602001600020549050818114613d52576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613dd79190615938565b9050600060096000848152602001908152602001600020549050600060088381548110613e0757613e06614e18565b5b906000526020600020015490508060088381548110613e2957613e28614e18565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613e7857613e77615ec2565b5b6001900381819060005260206000200160009055905550505050565b6000613e9f836118aa565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b505050565b60405180608001604052806000815260200160608152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600081525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613f9f81613f6a565b8114613faa57600080fd5b50565b600081359050613fbc81613f96565b92915050565b600060208284031215613fd857613fd7613f60565b5b6000613fe684828501613fad565b91505092915050565b60008115159050919050565b61400481613fef565b82525050565b600060208201905061401f6000830184613ffb565b92915050565b6000819050919050565b61403881614025565b811461404357600080fd5b50565b6000813590506140558161402f565b92915050565b60006020828403121561407157614070613f60565b5b600061407f84828501614046565b91505092915050565b61409181614025565b82525050565b60006020820190506140ac6000830184614088565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156140ec5780820151818401526020810190506140d1565b60008484015250505050565b6000601f19601f8301169050919050565b6000614114826140b2565b61411e81856140bd565b935061412e8185602086016140ce565b614137816140f8565b840191505092915050565b6000602082019050818103600083015261415c8184614109565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061418f82614164565b9050919050565b61419f81614184565b82525050565b60006020820190506141ba6000830184614196565b92915050565b6141c981614184565b81146141d457600080fd5b50565b6000813590506141e6816141c0565b92915050565b6000806040838503121561420357614202613f60565b5b6000614211858286016141d7565b925050602061422285828601614046565b9150509250929050565b60008060006060848603121561424557614244613f60565b5b6000614253868287016141d7565b9350506020614264868287016141d7565b925050604061427586828701614046565b9150509250925092565b6000806040838503121561429657614295613f60565b5b60006142a485828601614046565b92505060206142b585828601614046565b9150509250929050565b60006040820190506142d46000830185614196565b6142e16020830184614088565b9392505050565b6000602082840312156142fe576142fd613f60565b5b600061430c848285016141d7565b91505092915050565b6000819050919050565b600061433a61433561433084614164565b614315565b614164565b9050919050565b600061434c8261431f565b9050919050565b600061435e82614341565b9050919050565b61436e81614353565b82525050565b60006020820190506143896000830184614365565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6143d1826140f8565b810181811067ffffffffffffffff821117156143f0576143ef614399565b5b80604052505050565b6000614403613f56565b905061440f82826143c8565b919050565b600067ffffffffffffffff82111561442f5761442e614399565b5b614438826140f8565b9050602081019050919050565b82818337600083830152505050565b600061446761446284614414565b6143f9565b90508281526020810184848401111561448357614482614394565b5b61448e848285614445565b509392505050565b600082601f8301126144ab576144aa61438f565b5b81356144bb848260208601614454565b91505092915050565b6000602082840312156144da576144d9613f60565b5b600082013567ffffffffffffffff8111156144f8576144f7613f65565b5b61450484828501614496565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6002811061454d5761454c61450d565b5b50565b600081905061455e8261453c565b919050565b600061456e82614550565b9050919050565b61457e81614563565b82525050565b60006020820190506145996000830184614575565b92915050565b6145a881613fef565b81146145b357600080fd5b50565b6000813590506145c58161459f565b92915050565b600080604083850312156145e2576145e1613f60565b5b60006145f0858286016141d7565b9250506020614601858286016145b6565b9150509250929050565b6000806000806080858703121561462557614624613f60565b5b600061463387828801614046565b945050602061464487828801614046565b935050604085013567ffffffffffffffff81111561466557614664613f65565b5b61467187828801614496565b9250506060614682878288016141d7565b91505092959194509250565b600067ffffffffffffffff8211156146a9576146a8614399565b5b6146b2826140f8565b9050602081019050919050565b60006146d26146cd8461468e565b6143f9565b9050828152602081018484840111156146ee576146ed614394565b5b6146f9848285614445565b509392505050565b600082601f8301126147165761471561438f565b5b81356147268482602086016146bf565b91505092915050565b6000806000806080858703121561474957614748613f60565b5b6000614757878288016141d7565b9450506020614768878288016141d7565b935050604061477987828801614046565b925050606085013567ffffffffffffffff81111561479a57614799613f65565b5b6147a687828801614701565b91505092959194509250565b6147bb81614025565b82525050565b600082825260208201905092915050565b60006147dd826140b2565b6147e781856147c1565b93506147f78185602086016140ce565b614800816140f8565b840191505092915050565b61481481614184565b82525050565b600060808301600083015161483260008601826147b2565b506020830151848203602086015261484a82826147d2565b915050604083015161485f604086018261480b565b50606083015161487260608601826147b2565b508091505092915050565b60006020820190508181036000830152614897818461481a565b905092915050565b600080604083850312156148b6576148b5613f60565b5b60006148c485828601614046565b925050602083013567ffffffffffffffff8111156148e5576148e4613f65565b5b6148f185828601614496565b9150509250929050565b6000806040838503121561491257614911613f60565b5b6000614920858286016141d7565b9250506020614931858286016141d7565b9150509250929050565b600081905092915050565b50565b600061495660008361493b565b915061496182614946565b600082019050919050565b600061497782614949565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b60006149b76014836140bd565b91506149c282614981565b602082019050919050565b600060208201905081810360008301526149e6816149aa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a3457607f821691505b602082108103614a4757614a466149ed565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a836020836140bd565b9150614a8e82614a4d565b602082019050919050565b60006020820190508181036000830152614ab281614a76565b9050919050565b7f4e6f20726563656976696e672061646472657373207365742100000000000000600082015250565b6000614aef6019836140bd565b9150614afa82614ab9565b602082019050919050565b60006020820190508181036000830152614b1e81614ae2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b5f82614025565b9150614b6a83614025565b9250828202614b7881614025565b91508282048414831517614b8f57614b8e614b25565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614bd082614025565b9150614bdb83614025565b925082614beb57614bea614b96565b5b828204905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614c52602b836140bd565b9150614c5d82614bf6565b604082019050919050565b60006020820190508181036000830152614c8181614c45565b9050919050565b7f43616e6e6f742062652074686520302061646472657373210000000000000000600082015250565b6000614cbe6018836140bd565b9150614cc982614c88565b602082019050919050565b60006020820190508181036000830152614ced81614cb1565b9050919050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d506022836140bd565b9150614d5b82614cf4565b604082019050919050565b60006020820190508181036000830152614d7f81614d43565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614de2602c836140bd565b9150614ded82614d86565b604082019050919050565b60006020820190508181036000830152614e1181614dd5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614ea97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614e6c565b614eb38683614e6c565b95508019841693508086168417925050509392505050565b6000614ee6614ee1614edc84614025565b614315565b614025565b9050919050565b6000819050919050565b614f0083614ecb565b614f14614f0c82614eed565b848454614e79565b825550505050565b600090565b614f29614f1c565b614f34818484614ef7565b505050565b5b81811015614f5857614f4d600082614f21565b600181019050614f3a565b5050565b601f821115614f9d57614f6e81614e47565b614f7784614e5c565b81016020851015614f86578190505b614f9a614f9285614e5c565b830182614f39565b50505b505050565b600082821c905092915050565b6000614fc060001984600802614fa2565b1980831691505092915050565b6000614fd98383614faf565b9150826002028217905092915050565b614ff2826140b2565b67ffffffffffffffff81111561500b5761500a614399565b5b6150158254614a1c565b615020828285614f5c565b600060209050601f8311600181146150535760008415615041578287015190505b61504b8582614fcd565b8655506150b3565b601f19841661506186614e47565b60005b8281101561508957848901518255600182019150602085019450602081019050615064565b868310156150a657848901516150a2601f891682614faf565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006150f16018836140bd565b91506150fc826150bb565b602082019050919050565b60006020820190508181036000830152615120816150e4565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006151836029836140bd565b915061518e82615127565b604082019050919050565b600060208201905081810360008301526151b281615176565b9050919050565b60006151c482614025565b91506151cf83614025565b92508282019050808211156151e7576151e6614b25565b5b92915050565b60006151f882614025565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361522a57615229614b25565b5b600182019050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b600061526b601f836140bd565b915061527682615235565b602082019050919050565b6000602082019050818103600083015261529a8161525e565b9050919050565b600081905092915050565b600081546152b981614a1c565b6152c381866152a1565b945060018216600081146152de57600181146152f357615326565b60ff1983168652811515820286019350615326565b6152fc85614e47565b60005b8381101561531e578154818901526001820191506020810190506152ff565b838801955050505b50505092915050565b600061533a826140b2565b61534481856152a1565b93506153548185602086016140ce565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006153966005836152a1565b91506153a182615360565b600582019050919050565b60006153b882856152ac565b91506153c4828461532f565b91506153cf82615389565b91508190509392505050565b7f496e76616c696420737461746500000000000000000000000000000000000000600082015250565b6000615411600d836140bd565b915061541c826153db565b602082019050919050565b6000602082019050818103600083015261544081615404565b9050919050565b7f4e6f7420746865206f776e6572206f66207468697320546f6b656e2100000000600082015250565b600061547d601c836140bd565b915061548882615447565b602082019050919050565b600060208201905081810360008301526154ac81615470565b9050919050565b7f4d6178696d756d20627974657320657863656564656421000000000000000000600082015250565b60006154e96017836140bd565b91506154f4826154b3565b602082019050919050565b60006020820190508181036000830152615518816154dc565b9050919050565b7f436f6e747269627574696f6e2068617320616c7265616479206265656e206d6160008201527f6465210000000000000000000000000000000000000000000000000000000000602082015250565b600061557b6023836140bd565b91506155868261551f565b604082019050919050565b600060208201905081810360008301526155aa8161556e565b9050919050565b7f496e73756666696369656e742066756e64732073656e7420746f20636f6e747260008201527f6962757465210000000000000000000000000000000000000000000000000000602082015250565b600061560d6026836140bd565b9150615618826155b1565b604082019050919050565b6000602082019050818103600083015261563c81615600565b9050919050565b6000815190506156528161402f565b92915050565b60006020828403121561566e5761566d613f60565b5b600061567c84828501615643565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006156e16026836140bd565b91506156ec82615685565b604082019050919050565b60006020820190508181036000830152615710816156d4565b9050919050565b600060408201905061572c6000830185614196565b6157396020830184614196565b9392505050565b60008151905061574f8161459f565b92915050565b60006020828403121561576b5761576a613f60565b5b600061577984828501615740565b91505092915050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006157de6021836140bd565b91506157e982615782565b604082019050919050565b6000602082019050818103600083015261580d816157d1565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000615870603d836140bd565b915061587b82615814565b604082019050919050565b6000602082019050818103600083015261589f81615863565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000615902602d836140bd565b915061590d826158a6565b604082019050919050565b60006020820190508181036000830152615931816158f5565b9050919050565b600061594382614025565b915061594e83614025565b925082820390508181111561596657615965614b25565b5b92915050565b600061597782614025565b915061598283614025565b92508261599257615991614b96565b5b828206905092915050565b60006040820190506159b26000830185614088565b6159bf6020830184614196565b9392505050565b600063ffffffff82169050919050565b6159df816159c6565b82525050565b6000819050919050565b6159f8816159e5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000615a25826159fe565b615a2f8185615a09565b9350615a3f8185602086016140ce565b615a48816140f8565b840191505092915050565b6000606082019050615a6860008301866159d6565b615a7560208301856159ef565b8181036040830152615a878184615a1a565b9050949350505050565b6000819050919050565b6000615ab6615ab1615aac84615a91565b614315565b614025565b9050919050565b615ac681615a9b565b82525050565b6000604082019050615ae160008301856159d6565b615aee6020830184615abd565b9392505050565b6000608082019050615b0a60008301876159ef565b615b1760208301866159d6565b615b246040830185615abd565b615b316060830184614196565b95945050505050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615b966029836140bd565b9150615ba182615b3a565b604082019050919050565b60006020820190508181036000830152615bc581615b89565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615c286024836140bd565b9150615c3382615bcc565b604082019050919050565b60006020820190508181036000830152615c5781615c1b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615cba6032836140bd565b9150615cc582615c5e565b604082019050919050565b60006020820190508181036000830152615ce981615cad565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615d266019836140bd565b9150615d3182615cf0565b602082019050919050565b60006020820190508181036000830152615d5581615d19565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615d926020836140bd565b9150615d9d82615d5c565b602082019050919050565b60006020820190508181036000830152615dc181615d85565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615dfe601c836140bd565b9150615e0982615dc8565b602082019050919050565b60006020820190508181036000830152615e2d81615df1565b9050919050565b6000608082019050615e496000830187614196565b615e566020830186614196565b615e636040830185614088565b8181036060830152615e758184615a1a565b905095945050505050565b600081519050615e8f81613f96565b92915050565b600060208284031215615eab57615eaa613f60565b5b6000615eb984828501615e80565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220399eeceb456caf7ccca39d5837886955b7055b421e1eae3e6cdd315addcb7a3e64736f6c63430008120033697066733a2f2f516d523861757544594775425771336d6246644771465979544c663551764c68505139506468326a32464a346d382f

Deployed Bytecode

0x60806040526004361061028c5760003560e01c8063637850791161015a578063aa2add68116100c1578063e41d44dd1161007a578063e41d44dd14610a02578063e4fc691314610a2d578063e7315f9914610a6a578063e985e9c514610a86578063efe4a34f14610ac3578063f2fde38b14610aee576102bf565b8063aa2add68146108f4578063b0a1c1c41461091d578063b88d4fde14610948578063c87b56dd14610971578063d00f2f38146109ae578063d811bc67146109d9576102bf565b806385209ee01161011357806385209ee0146107f85780638da5cb5b1461082357806395d89b411461084e57806398db71a314610879578063a0712d68146108a2578063a22cb465146108cb576102bf565b806363785079146106e857806366d003ac146107115780636c0360eb1461073c57806370a0823114610767578063715018a6146107a457806372269c0b146107bb576102bf565b80633050fec9116101fe5780634ac0b588116101b75780634ac0b588146105c65780634f6ccce7146105f157806355f804b31461062e57806359ad31d1146106575780635aff5999146106805780636352211e146106ab576102bf565b80633050fec9146104de5780633bbed4a0146105075780633ccfd60b14610530578063411d8f2f1461054757806341f434341461057257806342842e0e1461059d576102bf565b806318160ddd1161025057806318160ddd146103cf57806323b872dd146103fa57806324fde1e21461042357806329ffb0711461043a5780632a55205a146104635780632f745c59146104a1576102bf565b806301ffc9a7146102c45780630286d4c81461030157806306fdde031461033e578063081812fc14610369578063095ea7b3146103a6576102bf565b366102bf576102bd601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1634610b17565b005b600080fd5b3480156102d057600080fd5b506102eb60048036038101906102e69190613fc2565b610bc8565b6040516102f8919061400a565b60405180910390f35b34801561030d57600080fd5b506103286004803603810190610323919061405b565b610bea565b6040516103359190614097565b60405180910390f35b34801561034a57600080fd5b50610353610c07565b6040516103609190614142565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b919061405b565b610c99565b60405161039d91906141a5565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c891906141ec565b610cdf565b005b3480156103db57600080fd5b506103e4610cf8565b6040516103f19190614097565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c919061422c565b610d05565b005b34801561042f57600080fd5b50610438610d54565b005b34801561044657600080fd5b50610461600480360381019061045c919061405b565b610e69565b005b34801561046f57600080fd5b5061048a6004803603810190610485919061427f565b610eef565b6040516104989291906142bf565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c391906141ec565b610fe0565b6040516104d59190614097565b60405180910390f35b3480156104ea57600080fd5b50610505600480360381019061050091906142e8565b611085565b005b34801561051357600080fd5b5061052e600480360381019061052991906142e8565b6111b4565b005b34801561053c57600080fd5b506105456112e3565b005b34801561055357600080fd5b5061055c6113dd565b60405161056991906141a5565b60405180910390f35b34801561057e57600080fd5b50610587611403565b6040516105949190614374565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf919061422c565b611415565b005b3480156105d257600080fd5b506105db611464565b6040516105e89190614097565b60405180910390f35b3480156105fd57600080fd5b506106186004803603810190610613919061405b565b61146a565b6040516106259190614097565b60405180910390f35b34801561063a57600080fd5b50610655600480360381019061065091906144c4565b6114db565b005b34801561066357600080fd5b5061067e600480360381019061067991906142e8565b61156a565b005b34801561068c57600080fd5b50610695611699565b6040516106a291906141a5565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd919061405b565b6116bf565b6040516106df91906141a5565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a919061405b565b611770565b005b34801561071d57600080fd5b506107266117f6565b60405161073391906141a5565b60405180910390f35b34801561074857600080fd5b5061075161181c565b60405161075e9190614142565b60405180910390f35b34801561077357600080fd5b5061078e600480360381019061078991906142e8565b6118aa565b60405161079b9190614097565b60405180910390f35b3480156107b057600080fd5b506107b9611961565b005b3480156107c757600080fd5b506107e260048036038101906107dd919061405b565b6119e9565b6040516107ef919061400a565b60405180910390f35b34801561080457600080fd5b5061080d611a09565b60405161081a9190614584565b60405180910390f35b34801561082f57600080fd5b50610838611a1c565b60405161084591906141a5565b60405180910390f35b34801561085a57600080fd5b50610863611a46565b6040516108709190614142565b60405180910390f35b34801561088557600080fd5b506108a0600480360381019061089b919061405b565b611ad8565b005b3480156108ae57600080fd5b506108c960048036038101906108c4919061405b565b611b5e565b005b3480156108d757600080fd5b506108f260048036038101906108ed91906145cb565b611c19565b005b34801561090057600080fd5b5061091b6004803603810190610916919061460b565b611c32565b005b34801561092957600080fd5b50610932611d4f565b60405161093f9190614097565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a919061472f565b611d57565b005b34801561097d57600080fd5b506109986004803603810190610993919061405b565b611da8565b6040516109a59190614142565b60405180910390f35b3480156109ba57600080fd5b506109c3611e54565b6040516109d09190614097565b60405180910390f35b3480156109e557600080fd5b50610a0060048036038101906109fb919061405b565b611e5a565b005b348015610a0e57600080fd5b50610a17611ee0565b604051610a249190614097565b60405180910390f35b348015610a3957600080fd5b50610a546004803603810190610a4f919061427f565b611ee6565b604051610a61919061487d565b60405180910390f35b610a846004803603810190610a7f919061489f565b612021565b005b348015610a9257600080fd5b50610aad6004803603810190610aa891906148fb565b61250e565b604051610aba919061400a565b60405180910390f35b348015610acf57600080fd5b50610ad86125a2565b604051610ae59190614097565b60405180910390f35b348015610afa57600080fd5b50610b156004803603810190610b1091906142e8565b6125a8565b005b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610b3d9061496c565b60006040518083038185875af1925050503d8060008114610b7a576040519150601f19603f3d011682016040523d82523d6000602084013e610b7f565b606091505b5050905080610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba906149cd565b60405180910390fd5b505050565b6000610bd3826126c7565b80610be35750610be282612741565b5b9050919050565b6000600e6000838152602001908152602001600020549050919050565b606060008054610c1690614a1c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4290614a1c565b8015610c8f5780601f10610c6457610100808354040283529160200191610c8f565b820191906000526020600020905b815481529060010190602001808311610c7257829003601f168201915b5050505050905090565b6000610ca482612813565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610ce98161285e565b610cf3838361295b565b505050565b6000600880549050905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d4357610d423361285e565b5b610d4e848484612a72565b50505050565b610d5c612ad2565b73ffffffffffffffffffffffffffffffffffffffff16610d7a611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790614a99565b60405180910390fd5b60006001811115610de457610de361450d565b5b601360009054906101000a900460ff166001811115610e0657610e0561450d565b5b03610e3b576001601360006101000a81548160ff02191690836001811115610e3157610e3061450d565b5b0217905550610e67565b6000601360006101000a81548160ff02191690836001811115610e6157610e6061450d565b5b02179055505b565b610e71612ad2565b73ffffffffffffffffffffffffffffffffffffffff16610e8f611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90614a99565b60405180910390fd5b8060108190555050565b600080600073ffffffffffffffffffffffffffffffffffffffff16600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a90614b05565b60405180910390fd5b600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff169150612710600a60009054906101000a900462ffffff1662ffffff1684610fcd9190614b54565b610fd79190614bc5565b90509250929050565b6000610feb836118aa565b821061102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390614c68565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61108d612ad2565b73ffffffffffffffffffffffffffffffffffffffff166110ab611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890614a99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790614cd4565b60405180910390fd5b80600a60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111bc612ad2565b73ffffffffffffffffffffffffffffffffffffffff166111da611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614611230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122790614a99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690614cd4565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6112eb612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611309611a1c565b73ffffffffffffffffffffffffffffffffffffffff161461135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690614a99565b60405180910390fd5b6000611369611d4f565b9050600081116113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590614d66565b60405180910390fd5b6113da601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610b17565b50565b600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611453576114523361285e565b5b61145e848484612ada565b50505050565b60125481565b6000611474610cf8565b82106114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90614df8565b60405180910390fd5b600882815481106114c9576114c8614e18565b5b90600052602060002001549050919050565b6114e3612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611501611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e90614a99565b60405180910390fd5b80601490816115669190614fe9565b5050565b611572612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611590611a1c565b73ffffffffffffffffffffffffffffffffffffffff16146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd90614a99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90614cd4565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e90615107565b60405180910390fd5b80915050919050565b611778612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611796611a1c565b73ffffffffffffffffffffffffffffffffffffffff16146117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e390614a99565b60405180910390fd5b8060118190555050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6014805461182990614a1c565b80601f016020809104026020016040519081016040528092919081815260200182805461185590614a1c565b80156118a25780601f10611877576101008083540402835291602001916118a2565b820191906000526020600020905b81548152906001019060200180831161188557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190615199565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611969612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611987611a1c565b73ffffffffffffffffffffffffffffffffffffffff16146119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490614a99565b60405180910390fd5b6119e76000612afa565b565b600f6020528060005260406000206000915054906101000a900460ff1681565b601360009054906101000a900460ff1681565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611a5590614a1c565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8190614a1c565b8015611ace5780601f10611aa357610100808354040283529160200191611ace565b820191906000526020600020905b815481529060010190602001808311611ab157829003601f168201915b5050505050905090565b611ae0612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611afe611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90614a99565b60405180910390fd5b8060128190555050565b611b66612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611b84611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd190614a99565b60405180910390fd5b60005b81811015611c1557611c02336001611bf3610cf8565b611bfd91906151b9565b612bc0565b8080611c0d906151ed565b915050611bdd565b5050565b81611c238161285e565b611c2d8383612bde565b505050565b611c3a612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611c58611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca590614a99565b60405180910390fd5b80600d6000868152602001908152602001600020600085815260200190815260200160002060020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600d600086815260200190815260200160002060008581526020019081526020016000206001019081611d489190614fe9565b5050505050565b600047905090565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611d9557611d943361285e565b5b611da185858585612bf4565b5050505050565b6060611db78261ffff16612c56565b611df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ded90615281565b60405180910390fd5b600060148054611e0590614a1c565b905011611e215760405180602001604052806000815250611e4d565b6014611e2c83612cc2565b604051602001611e3d9291906153ac565b6040516020818303038152906040525b9050919050565b60115481565b611e62612ad2565b73ffffffffffffffffffffffffffffffffffffffff16611e80611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614611ed6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecd90614a99565b60405180910390fd5b8060168190555050565b60105481565b611eee613f18565b600d6000848152602001908152602001600020600083815260200190815260200160002060405180608001604052908160008201548152602001600182018054611f3790614a1c565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6390614a1c565b8015611fb05780601f10611f8557610100808354040283529160200191611fb0565b820191906000526020600020905b815481529060010190602001808311611f9357829003601f168201915b505050505081526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600382015481525050905092915050565b60018060018111156120365761203561450d565b5b601360009054906101000a900460ff1660018111156120585761205761450d565b5b14612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208f90615427565b60405180910390fd5b6120a1836116bf565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461210e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210590615493565b60405180910390fd5b60165482511115612154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214b906154ff565b60405180910390fd5b600f600084815260200190815260200160002060009054906101000a900460ff16156121b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ac90615591565b60405180910390fd5b6010543410156121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190615623565b60405180910390fd5b6001600e6000858152602001908152602001600020600082825461221e91906151b9565b9250508190555061222d613f18565b600e60008581526020019081526020016000205481600001818152505082816020018190525033816040019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050428160600181815250506000600a60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff1663ce7c2ac2336040518263ffffffff1660e01b81526004016122f791906141a5565b602060405180830381865afa158015612314573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123389190615658565b9050600081116123b6578173ffffffffffffffffffffffffffffffffffffffff166318f9b023336012546040518363ffffffff1660e01b815260040161237f9291906142bf565b600060405180830381600087803b15801561239957600080fd5b505af11580156123ad573d6000803e3d6000fd5b50505050612426565b8173ffffffffffffffffffffffffffffffffffffffff16630e81073c336012546040518363ffffffff1660e01b81526004016123f39291906142bf565b600060405180830381600087803b15801561240d57600080fd5b505af1158015612421573d6000803e3d6000fd5b505050505b82600d60008881526020019081526020016000206000600e60008a815260200190815260200160002054815260200190815260200160002060008201518160000155602082015181600101908161247d9190614fe9565b5060408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301559050506001600f600088815260200190815260200160002060006101000a81548160ff021916908315150217905550612506612e22565b505050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60165481565b6125b0612ad2565b73ffffffffffffffffffffffffffffffffffffffff166125ce611a1c565b73ffffffffffffffffffffffffffffffffffffffff1614612624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261b90614a99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268a906156f7565b60405180910390fd5b61269c81612afa565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061273a575061273982613034565b5b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061280c57507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61281c81612c56565b61285b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285290615107565b60405180910390fd5b50565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612958576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016128d5929190615717565b602060405180830381865afa1580156128f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129169190615755565b61295757806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161294e91906141a5565b60405180910390fd5b5b50565b6000612966826116bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd906157f4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166129f5612ad2565b73ffffffffffffffffffffffffffffffffffffffff161480612a245750612a2381612a1e612ad2565b61250e565b5b612a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5a90615886565b60405180910390fd5b612a6d8383613116565b505050565b612a83612a7d612ad2565b826131cf565b612ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab990615918565b60405180910390fd5b612acd838383613264565b505050565b600033905090565b612af583838360405180602001604052806000815250611d57565b505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bda8282604051806020016040528060008152506134eb565b5050565b612bf0612be9612ad2565b8383613546565b5050565b612c05612bff612ad2565b836131cf565b612c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3b90615918565b60405180910390fd5b612c50848484846136b2565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060008203612d09576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e1d565b600082905060005b60008214612d3b578080612d24906151ed565b915050600a82612d349190614bc5565b9150612d11565b60008167ffffffffffffffff811115612d5757612d56614399565b5b6040519080825280601f01601f191660200182016040528015612d895781602001600182028036833780820191505090505b5090505b60008514612e1657600182612da29190615938565b9150600a85612db1919061596c565b6030612dbd91906151b9565b60f81b818381518110612dd357612dd2614e18565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e0f9190614bc5565b9450612d8d565b8093505050505b919050565b60007335231d4c2d8b8adcb5617a638a0c4548684c7c7073ffffffffffffffffffffffffffffffffffffffff1663fa31de01610504612e82601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661370e565b60115433604051602001612e9792919061599d565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401612ec493929190615a53565b6020604051808303816000875af1158015612ee3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f079190615658565b905060007356f52c0a1ddcd557285f7cbc782d3d83096ce1cc73ffffffffffffffffffffffffffffffffffffffff1663a6929793610504620186a06040518363ffffffff1660e01b8152600401612f5f929190615acc565b602060405180830381865afa158015612f7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fa09190615658565b90507356f52c0a1ddcd557285f7cbc782d3d83096ce1cc73ffffffffffffffffffffffffffffffffffffffff166311bf2c18828460001b610504620186a0306040518663ffffffff1660e01b8152600401612ffe9493929190615af5565b6000604051808303818588803b15801561301757600080fd5b505af115801561302b573d6000803e3d6000fd5b50505050505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806130ff57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061310f575061310e82613731565b5b9050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16613189836116bf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806131db836116bf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061321d575061321c818561250e565b5b8061325b57508373ffffffffffffffffffffffffffffffffffffffff1661324384610c99565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613284826116bf565b73ffffffffffffffffffffffffffffffffffffffff16146132da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d190615bac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334090615c3e565b60405180910390fd5b61335483838361379b565b61335f600082613116565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133af9190615938565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461340691906151b9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600f600083815260200190815260200160002060006101000a81548160ff021916908315150217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6134f583836138ad565b6135026000848484613a86565b613541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353890615cd0565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036135b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135ab90615d3c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516136a5919061400a565b60405180910390a3505050565b6136bd848484613264565b6136c984848484613a86565b613708576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ff90615cd0565b60405180910390fd5b50505050565b60008173ffffffffffffffffffffffffffffffffffffffff1660001b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6137a68383836126c2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036137e8576137e381613c0d565b613827565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613826576138258382613c56565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036138695761386481613dc3565b6138a8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146138a7576138a68282613e94565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361391c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161391390615da8565b60405180910390fd5b61392581612c56565b15613965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395c90615e14565b60405180910390fd5b6139716000838361379b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139c191906151b9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a8260008383613f13565b5050565b6000613aa78473ffffffffffffffffffffffffffffffffffffffff1661269f565b15613c00578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613ad0612ad2565b8786866040518563ffffffff1660e01b8152600401613af29493929190615e34565b6020604051808303816000875af1925050508015613b2e57506040513d601f19601f82011682018060405250810190613b2b9190615e95565b60015b613bb0573d8060008114613b5e576040519150601f19603f3d011682016040523d82523d6000602084013e613b63565b606091505b506000815103613ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b9f90615cd0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613c05565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613c63846118aa565b613c6d9190615938565b9050600060076000848152602001908152602001600020549050818114613d52576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613dd79190615938565b9050600060096000848152602001908152602001600020549050600060088381548110613e0757613e06614e18565b5b906000526020600020015490508060088381548110613e2957613e28614e18565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613e7857613e77615ec2565b5b6001900381819060005260206000200160009055905550505050565b6000613e9f836118aa565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b505050565b60405180608001604052806000815260200160608152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600081525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613f9f81613f6a565b8114613faa57600080fd5b50565b600081359050613fbc81613f96565b92915050565b600060208284031215613fd857613fd7613f60565b5b6000613fe684828501613fad565b91505092915050565b60008115159050919050565b61400481613fef565b82525050565b600060208201905061401f6000830184613ffb565b92915050565b6000819050919050565b61403881614025565b811461404357600080fd5b50565b6000813590506140558161402f565b92915050565b60006020828403121561407157614070613f60565b5b600061407f84828501614046565b91505092915050565b61409181614025565b82525050565b60006020820190506140ac6000830184614088565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156140ec5780820151818401526020810190506140d1565b60008484015250505050565b6000601f19601f8301169050919050565b6000614114826140b2565b61411e81856140bd565b935061412e8185602086016140ce565b614137816140f8565b840191505092915050565b6000602082019050818103600083015261415c8184614109565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061418f82614164565b9050919050565b61419f81614184565b82525050565b60006020820190506141ba6000830184614196565b92915050565b6141c981614184565b81146141d457600080fd5b50565b6000813590506141e6816141c0565b92915050565b6000806040838503121561420357614202613f60565b5b6000614211858286016141d7565b925050602061422285828601614046565b9150509250929050565b60008060006060848603121561424557614244613f60565b5b6000614253868287016141d7565b9350506020614264868287016141d7565b925050604061427586828701614046565b9150509250925092565b6000806040838503121561429657614295613f60565b5b60006142a485828601614046565b92505060206142b585828601614046565b9150509250929050565b60006040820190506142d46000830185614196565b6142e16020830184614088565b9392505050565b6000602082840312156142fe576142fd613f60565b5b600061430c848285016141d7565b91505092915050565b6000819050919050565b600061433a61433561433084614164565b614315565b614164565b9050919050565b600061434c8261431f565b9050919050565b600061435e82614341565b9050919050565b61436e81614353565b82525050565b60006020820190506143896000830184614365565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6143d1826140f8565b810181811067ffffffffffffffff821117156143f0576143ef614399565b5b80604052505050565b6000614403613f56565b905061440f82826143c8565b919050565b600067ffffffffffffffff82111561442f5761442e614399565b5b614438826140f8565b9050602081019050919050565b82818337600083830152505050565b600061446761446284614414565b6143f9565b90508281526020810184848401111561448357614482614394565b5b61448e848285614445565b509392505050565b600082601f8301126144ab576144aa61438f565b5b81356144bb848260208601614454565b91505092915050565b6000602082840312156144da576144d9613f60565b5b600082013567ffffffffffffffff8111156144f8576144f7613f65565b5b61450484828501614496565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6002811061454d5761454c61450d565b5b50565b600081905061455e8261453c565b919050565b600061456e82614550565b9050919050565b61457e81614563565b82525050565b60006020820190506145996000830184614575565b92915050565b6145a881613fef565b81146145b357600080fd5b50565b6000813590506145c58161459f565b92915050565b600080604083850312156145e2576145e1613f60565b5b60006145f0858286016141d7565b9250506020614601858286016145b6565b9150509250929050565b6000806000806080858703121561462557614624613f60565b5b600061463387828801614046565b945050602061464487828801614046565b935050604085013567ffffffffffffffff81111561466557614664613f65565b5b61467187828801614496565b9250506060614682878288016141d7565b91505092959194509250565b600067ffffffffffffffff8211156146a9576146a8614399565b5b6146b2826140f8565b9050602081019050919050565b60006146d26146cd8461468e565b6143f9565b9050828152602081018484840111156146ee576146ed614394565b5b6146f9848285614445565b509392505050565b600082601f8301126147165761471561438f565b5b81356147268482602086016146bf565b91505092915050565b6000806000806080858703121561474957614748613f60565b5b6000614757878288016141d7565b9450506020614768878288016141d7565b935050604061477987828801614046565b925050606085013567ffffffffffffffff81111561479a57614799613f65565b5b6147a687828801614701565b91505092959194509250565b6147bb81614025565b82525050565b600082825260208201905092915050565b60006147dd826140b2565b6147e781856147c1565b93506147f78185602086016140ce565b614800816140f8565b840191505092915050565b61481481614184565b82525050565b600060808301600083015161483260008601826147b2565b506020830151848203602086015261484a82826147d2565b915050604083015161485f604086018261480b565b50606083015161487260608601826147b2565b508091505092915050565b60006020820190508181036000830152614897818461481a565b905092915050565b600080604083850312156148b6576148b5613f60565b5b60006148c485828601614046565b925050602083013567ffffffffffffffff8111156148e5576148e4613f65565b5b6148f185828601614496565b9150509250929050565b6000806040838503121561491257614911613f60565b5b6000614920858286016141d7565b9250506020614931858286016141d7565b9150509250929050565b600081905092915050565b50565b600061495660008361493b565b915061496182614946565b600082019050919050565b600061497782614949565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b60006149b76014836140bd565b91506149c282614981565b602082019050919050565b600060208201905081810360008301526149e6816149aa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a3457607f821691505b602082108103614a4757614a466149ed565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a836020836140bd565b9150614a8e82614a4d565b602082019050919050565b60006020820190508181036000830152614ab281614a76565b9050919050565b7f4e6f20726563656976696e672061646472657373207365742100000000000000600082015250565b6000614aef6019836140bd565b9150614afa82614ab9565b602082019050919050565b60006020820190508181036000830152614b1e81614ae2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b5f82614025565b9150614b6a83614025565b9250828202614b7881614025565b91508282048414831517614b8f57614b8e614b25565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614bd082614025565b9150614bdb83614025565b925082614beb57614bea614b96565b5b828204905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614c52602b836140bd565b9150614c5d82614bf6565b604082019050919050565b60006020820190508181036000830152614c8181614c45565b9050919050565b7f43616e6e6f742062652074686520302061646472657373210000000000000000600082015250565b6000614cbe6018836140bd565b9150614cc982614c88565b602082019050919050565b60006020820190508181036000830152614ced81614cb1565b9050919050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d506022836140bd565b9150614d5b82614cf4565b604082019050919050565b60006020820190508181036000830152614d7f81614d43565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614de2602c836140bd565b9150614ded82614d86565b604082019050919050565b60006020820190508181036000830152614e1181614dd5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614ea97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614e6c565b614eb38683614e6c565b95508019841693508086168417925050509392505050565b6000614ee6614ee1614edc84614025565b614315565b614025565b9050919050565b6000819050919050565b614f0083614ecb565b614f14614f0c82614eed565b848454614e79565b825550505050565b600090565b614f29614f1c565b614f34818484614ef7565b505050565b5b81811015614f5857614f4d600082614f21565b600181019050614f3a565b5050565b601f821115614f9d57614f6e81614e47565b614f7784614e5c565b81016020851015614f86578190505b614f9a614f9285614e5c565b830182614f39565b50505b505050565b600082821c905092915050565b6000614fc060001984600802614fa2565b1980831691505092915050565b6000614fd98383614faf565b9150826002028217905092915050565b614ff2826140b2565b67ffffffffffffffff81111561500b5761500a614399565b5b6150158254614a1c565b615020828285614f5c565b600060209050601f8311600181146150535760008415615041578287015190505b61504b8582614fcd565b8655506150b3565b601f19841661506186614e47565b60005b8281101561508957848901518255600182019150602085019450602081019050615064565b868310156150a657848901516150a2601f891682614faf565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006150f16018836140bd565b91506150fc826150bb565b602082019050919050565b60006020820190508181036000830152615120816150e4565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006151836029836140bd565b915061518e82615127565b604082019050919050565b600060208201905081810360008301526151b281615176565b9050919050565b60006151c482614025565b91506151cf83614025565b92508282019050808211156151e7576151e6614b25565b5b92915050565b60006151f882614025565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361522a57615229614b25565b5b600182019050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b600061526b601f836140bd565b915061527682615235565b602082019050919050565b6000602082019050818103600083015261529a8161525e565b9050919050565b600081905092915050565b600081546152b981614a1c565b6152c381866152a1565b945060018216600081146152de57600181146152f357615326565b60ff1983168652811515820286019350615326565b6152fc85614e47565b60005b8381101561531e578154818901526001820191506020810190506152ff565b838801955050505b50505092915050565b600061533a826140b2565b61534481856152a1565b93506153548185602086016140ce565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006153966005836152a1565b91506153a182615360565b600582019050919050565b60006153b882856152ac565b91506153c4828461532f565b91506153cf82615389565b91508190509392505050565b7f496e76616c696420737461746500000000000000000000000000000000000000600082015250565b6000615411600d836140bd565b915061541c826153db565b602082019050919050565b6000602082019050818103600083015261544081615404565b9050919050565b7f4e6f7420746865206f776e6572206f66207468697320546f6b656e2100000000600082015250565b600061547d601c836140bd565b915061548882615447565b602082019050919050565b600060208201905081810360008301526154ac81615470565b9050919050565b7f4d6178696d756d20627974657320657863656564656421000000000000000000600082015250565b60006154e96017836140bd565b91506154f4826154b3565b602082019050919050565b60006020820190508181036000830152615518816154dc565b9050919050565b7f436f6e747269627574696f6e2068617320616c7265616479206265656e206d6160008201527f6465210000000000000000000000000000000000000000000000000000000000602082015250565b600061557b6023836140bd565b91506155868261551f565b604082019050919050565b600060208201905081810360008301526155aa8161556e565b9050919050565b7f496e73756666696369656e742066756e64732073656e7420746f20636f6e747260008201527f6962757465210000000000000000000000000000000000000000000000000000602082015250565b600061560d6026836140bd565b9150615618826155b1565b604082019050919050565b6000602082019050818103600083015261563c81615600565b9050919050565b6000815190506156528161402f565b92915050565b60006020828403121561566e5761566d613f60565b5b600061567c84828501615643565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006156e16026836140bd565b91506156ec82615685565b604082019050919050565b60006020820190508181036000830152615710816156d4565b9050919050565b600060408201905061572c6000830185614196565b6157396020830184614196565b9392505050565b60008151905061574f8161459f565b92915050565b60006020828403121561576b5761576a613f60565b5b600061577984828501615740565b91505092915050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006157de6021836140bd565b91506157e982615782565b604082019050919050565b6000602082019050818103600083015261580d816157d1565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000615870603d836140bd565b915061587b82615814565b604082019050919050565b6000602082019050818103600083015261589f81615863565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000615902602d836140bd565b915061590d826158a6565b604082019050919050565b60006020820190508181036000830152615931816158f5565b9050919050565b600061594382614025565b915061594e83614025565b925082820390508181111561596657615965614b25565b5b92915050565b600061597782614025565b915061598283614025565b92508261599257615991614b96565b5b828206905092915050565b60006040820190506159b26000830185614088565b6159bf6020830184614196565b9392505050565b600063ffffffff82169050919050565b6159df816159c6565b82525050565b6000819050919050565b6159f8816159e5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000615a25826159fe565b615a2f8185615a09565b9350615a3f8185602086016140ce565b615a48816140f8565b840191505092915050565b6000606082019050615a6860008301866159d6565b615a7560208301856159ef565b8181036040830152615a878184615a1a565b9050949350505050565b6000819050919050565b6000615ab6615ab1615aac84615a91565b614315565b614025565b9050919050565b615ac681615a9b565b82525050565b6000604082019050615ae160008301856159d6565b615aee6020830184615abd565b9392505050565b6000608082019050615b0a60008301876159ef565b615b1760208301866159d6565b615b246040830185615abd565b615b316060830184614196565b95945050505050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615b966029836140bd565b9150615ba182615b3a565b604082019050919050565b60006020820190508181036000830152615bc581615b89565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615c286024836140bd565b9150615c3382615bcc565b604082019050919050565b60006020820190508181036000830152615c5781615c1b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615cba6032836140bd565b9150615cc582615c5e565b604082019050919050565b60006020820190508181036000830152615ce981615cad565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615d266019836140bd565b9150615d3182615cf0565b602082019050919050565b60006020820190508181036000830152615d5581615d19565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615d926020836140bd565b9150615d9d82615d5c565b602082019050919050565b60006020820190508181036000830152615dc181615d85565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615dfe601c836140bd565b9150615e0982615dc8565b602082019050919050565b60006020820190508181036000830152615e2d81615df1565b9050919050565b6000608082019050615e496000830187614196565b615e566020830186614196565b615e636040830185614088565b8181036060830152615e758184615a1a565b905095945050505050565b600081519050615e8f81613f96565b92915050565b600060208284031215615eab57615eaa613f60565b5b6000615eb984828501615e80565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220399eeceb456caf7ccca39d5837886955b7055b421e1eae3e6cdd315addcb7a3e64736f6c63430008120033

Deployed Bytecode Sourcemap

61997:12646:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64158:40;64176:9;;;;;;;;;;;64188;64158;:40::i;:::-;61997:12646;;64252:8;;;71680:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69293:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27731:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29243:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73296:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42419:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73653:180;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67112:252;;;;;;;;;;;;;:::i;:::-;;66370:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49154:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;42087:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66082:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65396:180;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67420:211;;;;;;;;;;;;;:::i;:::-;;48809:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58715:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74020:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62880:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42609:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65155:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65748:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63222:76;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27442:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66814:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63081:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63051:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27173:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5616:103;;;;;;;;;;;;;:::i;:::-;;62639:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62988:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4965:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27900:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66934:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64836:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72925:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68101:276;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68854:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74395:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68480:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62814:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66596:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62744:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69048:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70340:1301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29712:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63114:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5874:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67706:183;67787:9;67802:7;:12;;67822:6;67802:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67786:47;;;67852:4;67844:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;67775:114;67706:183;;:::o;71680:233::-;71792:4;71816:47;71851:11;71816:34;:47::i;:::-;:89;;;;71867:38;71893:11;71867:25;:38::i;:::-;71816:89;71809:96;;71680:233;;;:::o;69293:134::-;69361:7;69388:22;:31;69411:7;69388:31;;;;;;;;;;;;69381:38;;69293:134;;;:::o;27731:100::-;27785:13;27818:5;27811:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27731:100;:::o;29243:171::-;29319:7;29339:23;29354:7;29339:14;:23::i;:::-;29382:15;:24;29398:7;29382:24;;;;;;;;;;;;;;;;;;;;;29375:31;;29243:171;;;:::o;73296:174::-;73409:8;60497:30;60518:8;60497:20;:30::i;:::-;73430:32:::1;73444:8;73454:7;73430:13;:32::i;:::-;73296:174:::0;;;:::o;42419:113::-;42480:7;42507:10;:17;;;;42500:24;;42419:113;:::o;73653:180::-;73771:4;60231:10;60223:18;;:4;:18;;;60219:83;;60258:32;60279:10;60258:20;:32::i;:::-;60219:83;73788:37:::1;73807:4;73813:2;73817:7;73788:18;:37::i;:::-;73653:180:::0;;;;:::o;67112:252::-;5196:12;:10;:12::i;:::-;5185:23;;:7;:5;:7::i;:::-;:23;;;5177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67194:17:::1;67177:34;;;;;;;;:::i;:::-;;:13;;;;;;;;;;;:34;;;;;;;;:::i;:::-;;::::0;67173:174:::1;;67244:16;67228:13;;:32;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;67173:174;;;67318:17;67302:13;;:33;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;67173:174;67112:252::o:0;66370:110::-;5196:12;:10;:12::i;:::-;5185:23;;:7;:5;:7::i;:::-;:23;;;5177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66465:7:::1;66446:16;:26;;;;66370:110:::0;:::o;49154:341::-;49267:16;49285:21;49359:1;49332:29;;:15;;;;;;;;;;;:29;;;49324:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;49413:15;;;;;;;;;;;49402:26;;49482:5;49464:14;;;;;;;;;;;49456:22;;:5;:22;;;;:::i;:::-;49455:32;;;;:::i;:::-;49439:48;;49154:341;;;;;:::o;42087:256::-;42184:7;42220:23;42237:5;42220:16;:23::i;:::-;42212:5;:31;42204:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;42309:12;:19;42322:5;42309:19;;;;;;;;;;;;;;;:26;42329:5;42309:26;;;;;;;;;;;;42302:33;;42087:256;;;;:::o;66082:189::-;5196:12;:10;:12::i;:::-;5185:23;;:7;:5;:7::i;:::-;:23;;;5177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66192:1:::1;66169:25;;:11;:25;;::::0;66161:62:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;66252:11;66234:15;;:29;;;;;;;;;;;;;;;;;;66082:189:::0;:::o;65396:180::-;5196:12;:10;:12::i;:::-;5185:23;;:7;:5;:7::i;:::-;:23;;;5177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65502:1:::1;65478:26;;:12;:26;;::::0;65470:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;65556:12;65544:9;;:24;;;;;;;;;;;;;;;;;;65396:180:::0;:::o;67420:211::-;5196:12;:10;:12::i;:::-;5185:23;;:7;:5;:7::i;:::-;:23;;;5177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67468:15:::1;67486:16;:14;:16::i;:::-;67468:34;;67531:1;67521:7;:11;67513:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;67584:38;67602:9;;;;;;;;;;;67614:7;67584:9;:38::i;:::-;67457:174;67420:211::o:0;48809:30::-;;;;;;;;;;;;;:::o;58715:143::-;57583:42;58715:143;:::o;74020:188::-;74142:4;60231:10;60223:18;;:4;:18;;;60219:83;;60258:32;60279:10;60258:20;:32::i;:::-;60219:83;74159:41:::1;74182:4;74188:2;74192:7;74159:22;:41::i;:::-;74020:188:::0;;;;:::o;62880:40::-;;;;:::o;42609:233::-;42684:7;42720:30;:28;:30::i;:::-;42712:5;:38;42704:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;42817:10;42828:5;42817:17;;;;;;;;:::i;:::-;;;;;;;;;;42810:24;;42609:233;;;:::o;65155:100::-;5196:12;:10;:12::i;:::-;5185:23;;:7;:5;:7::i;:::-;:23;;;5177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65239:8:::1;65229:7;:18;;;;;;:::i;:::-;;65155:100:::0;:::o;65748:194::-;5196:12;:10;:12::i;:::-;5185:23;;:7;:5;:7::i;:::-;:23;;;5177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65861:1:::1;65837:26;;:12;:26;;::::0;65829:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;65922:12;65903:16;;:31;;;;;;;;;;;;;;;;;;65748:194:::0;:::o;63222:76::-;;;;;;;;;;;;;:::o;27442:222::-;27514:7;27534:13;27550:7;:16;27558:7;27550:16;;;;;;;;;;;;;;;;;;;;;27534:32;;27602:1;27585:19;;:5;:19;;;27577:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;27651:5;27644:12;;;27442:222;;;:::o;66814:112::-;5196:12;:10;:12::i;:::-;5185:23;;:7;:5;:7::i;:::-;:23;;;5177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66912:6:::1;66891:18;:27;;;;66814:112:::0;:::o;63081:24::-;;;;;;;;;;;;;:::o;63051:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27173:207::-;27245:7;27290:1;27273:19;;:5;:19;;;27265:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27356:9;:16;27366:5;27356:16;;;;;;;;;;;;;;;;27349:23;;27173:207;;;:::o;5616:103::-;5196:12;:10;:12::i;:::-;5185:23;;:7;:5;:7::i;:::-;:23;;;5177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5681:30:::1;5708:1;5681:18;:30::i;:::-;5616:103::o:0;62639:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;62988:54::-;;;;;;;;;;;;;:::o;4965:87::-;5011:7;5038:6;;;;;;;;;;;5031:13;;4965:87;:::o;27900:104::-;27956:13;27989:7;27982:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27900:104;:::o;66934:124::-;5196:12;:10;:12::i;:::-;5185:23;;:7;:5;:7::i;:::-;:23;;;5177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67041:9:::1;67017:21;:33;;;;66934:124:::0;:::o;64836:201::-;5196:12;:10;:12::i;:::-;5185:23;;:7;:5;:7::i;:::-;:23;;;5177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64926:6:::1;64921:99;64938:8;64934:1;:12;64921:99;;;64968:40;64978:10;65006:1;64990:13;:11;:13::i;:::-;:17;;;;:::i;:::-;64968:9;:40::i;:::-;64948:3;;;;;:::i;:::-;;;;64921:99;;;;64836:201:::0;:::o;72925:193::-;73046:8;60497:30;60518:8;60497:20;:30::i;:::-;73067:43:::1;73091:8;73101;73067:23;:43::i;:::-;72925:193:::0;;;:::o;68101:276::-;5196:12;:10;:12::i;:::-;5185:23;;:7;:5;:7::i;:::-;:23;;;5177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68286:14:::1;68238:17;:26;68256:7;68238:26;;;;;;;;;;;:33;68265:5;68238:33;;;;;;;;;;;:45;;;:62;;;;;;;;;;;;;;;;;;68357:12;68311:17;:26;68329:7;68311:26;;;;;;;;;;;:33;68338:5;68311:33;;;;;;;;;;;:43;;:58;;;;;;:::i;:::-;;68101:276:::0;;;;:::o;68854:99::-;68900:4;68924:21;68917:28;;68854:99;:::o;74395:245::-;74563:4;60231:10;60223:18;;:4;:18;;;60219:83;;60258:32;60279:10;60258:20;:32::i;:::-;60219:83;74585:47:::1;74608:4;74614:2;74618:7;74627:4;74585:22;:47::i;:::-;74395:245:::0;;;;;:::o;68480:303::-;68553:13;68587:24;68602:7;68587:24;;:7;:24::i;:::-;68579:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68704:1;68686:7;68680:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;68732:7;68741:18;:7;:16;:18::i;:::-;68715:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68680:95;68660:115;;68480:303;;;:::o;62814:57::-;;;;:::o;66596:96::-;5196:12;:10;:12::i;:::-;5185:23;;:7;:5;:7::i;:::-;:23;;;5177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66676:8:::1;66665;:19;;;;66596:96:::0;:::o;62744:31::-;;;;:::o;69048:162::-;69126:23;;:::i;:::-;69169:17;:26;69187:7;69169:26;;;;;;;;;;;:33;69196:5;69169:33;;;;;;;;;;;69162:40;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69048:162;;;;:::o;70340:1301::-;70432:16;64646:14;64629:31;;;;;;;;:::i;:::-;;:13;;;;;;;;;;;:31;;;;;;;;:::i;:::-;;;64621:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;70483:16:::1;70491:7;70483;:16::i;:::-;70469:30;;:10;:30;;;70461:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;70578:8;;70557:9;70551:23;:35;;70543:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;70634:16;:25;70651:7;70634:25;;;;;;;;;;;;;;;;;;;;;70633:26;70625:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;70731:16;;70718:9;:29;;70710:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;70838:1;70803:22;:31;70826:7;70803:31;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;70852:40;;:::i;:::-;70925:22;:31;70948:7;70925:31;;;;;;;;;;;;70903:16;:19;;:53;;;::::0;::::1;70996:9;70967:16;:26;;:38;;;;71047:10;71016:16;:28;;:41;;;;;;;;;::::0;::::1;71097:15;71068:16;:26;;:44;;;::::0;::::1;71125:33;71178:15;;;;;;;;;;;71125:69;;71205:11;71219:16;:23;;;71243:10;71219:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;71205:49;;71274:1;71265:6;:10;:137;;71342:16;:25;;;71368:10;71380:21;;71342:60;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;71265:137;;;71278:16;:26;;;71305:10;71317:21;;71278:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;71265:137;71477:16;71415:17;:26;71433:7;71415:26;;;;;;;;;;;:59;71442:22;:31;71465:7;71442:31;;;;;;;;;;;;71415:59;;;;;;;;;;;:78;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71532:4;71504:16;:25;71521:7;71504:25;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;71620:13;:11;:13::i;:::-;70450:1191;;;70340:1301:::0;;;:::o;29712:164::-;29809:4;29833:18;:25;29852:5;29833:25;;;;;;;;;;;;;;;:35;29859:8;29833:35;;;;;;;;;;;;;;;;;;;;;;;;;29826:42;;29712:164;;;;:::o;63114:23::-;;;;:::o;5874:201::-;5196:12;:10;:12::i;:::-;5185:23;;:7;:5;:7::i;:::-;:23;;;5177:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5983:1:::1;5963:22;;:8;:22;;::::0;5955:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6039:28;6058:8;6039:18;:28::i;:::-;5874:201:::0;:::o;7666:326::-;7726:4;7983:1;7961:7;:19;;;:23;7954:30;;7666:326;;;:::o;39454:126::-;;;;:::o;41779:224::-;41881:4;41920:35;41905:50;;;:11;:50;;;;:90;;;;41959:36;41983:11;41959:23;:36::i;:::-;41905:90;41898:97;;41779:224;;;:::o;49532:202::-;49617:4;49656:26;49641:41;;;:11;:41;;;;:85;;;;49701:25;49686:40;;;:11;:40;;;;49641:85;49634:92;;49532:202;;;:::o;37330:135::-;37412:16;37420:7;37412;:16::i;:::-;37404:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;37330:135;:::o;60640:647::-;60879:1;57583:42;60831:45;;;:49;60827:453;;;57583:42;61130;;;61181:4;61188:8;61130:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61125:144;;61244:8;61225:28;;;;;;;;;;;:::i;:::-;;;;;;;;61125:144;60827:453;60640:647;:::o;28761:416::-;28842:13;28858:23;28873:7;28858:14;:23::i;:::-;28842:39;;28906:5;28900:11;;:2;:11;;;28892:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29000:5;28984:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29009:37;29026:5;29033:12;:10;:12::i;:::-;29009:16;:37::i;:::-;28984:62;28962:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;29148:21;29157:2;29161:7;29148:8;:21::i;:::-;28831:346;28761:416;;:::o;29943:335::-;30138:41;30157:12;:10;:12::i;:::-;30171:7;30138:18;:41::i;:::-;30130:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;30242:28;30252:4;30258:2;30262:7;30242:9;:28::i;:::-;29943:335;;;:::o;3689:98::-;3742:7;3769:10;3762:17;;3689:98;:::o;30349:185::-;30487:39;30504:4;30510:2;30514:7;30487:39;;;;;;;;;;;;:16;:39::i;:::-;30349:185;;;:::o;6235:191::-;6309:16;6328:6;;;;;;;;;;;6309:25;;6354:8;6345:6;;:17;;;;;;;;;;;;;;;;;;6409:8;6378:40;;6399:8;6378:40;;;;;;;;;;;;6298:128;6235:191;:::o;33334:110::-;33410:26;33420:2;33424:7;33410:26;;;;;;;;;;;;:9;:26::i;:::-;33334:110;;:::o;29486:155::-;29581:52;29600:12;:10;:12::i;:::-;29614:8;29624;29581:18;:52::i;:::-;29486:155;;:::o;30605:322::-;30779:41;30798:12;:10;:12::i;:::-;30812:7;30779:18;:41::i;:::-;30771:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;30881:38;30895:4;30901:2;30905:7;30914:4;30881:13;:38::i;:::-;30605:322;;;;:::o;32434:127::-;32499:4;32551:1;32523:30;;:7;:16;32531:7;32523:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32516:37;;32434:127;;;:::o;23816:723::-;23872:13;24102:1;24093:5;:10;24089:53;;24120:10;;;;;;;;;;;;;;;;;;;;;24089:53;24152:12;24167:5;24152:20;;24183:14;24208:78;24223:1;24215:4;:9;24208:78;;24241:8;;;;;:::i;:::-;;;;24272:2;24264:10;;;;;:::i;:::-;;;24208:78;;;24296:19;24328:6;24318:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24296:39;;24346:154;24362:1;24353:5;:10;24346:154;;24390:1;24380:11;;;;;:::i;:::-;;;24457:2;24449:5;:10;;;;:::i;:::-;24436:2;:24;;;;:::i;:::-;24423:39;;24406:6;24413;24406:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;24486:2;24477:11;;;;;:::i;:::-;;;24346:154;;;24524:6;24510:21;;;;;23816:723;;;;:::o;72176:505::-;72219:17;63332:42;72239:26;;;63211:4;72310:34;72327:16;;;;;;;;;;;72310;:34::i;:::-;72370:18;;72390:10;72359:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72239:173;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72219:193;;72433:18;63413:42;72454:53;;;63211:4;72525:6;72454:78;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72433:99;;63413:42;72545:47;;;72600:10;72620:9;72612:18;;63211:4;72649:6;72665:4;72545:126;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72208:473;;72176:505::o;26804:305::-;26906:4;26958:25;26943:40;;;:11;:40;;;;:105;;;;27015:33;27000:48;;;:11;:48;;;;26943:105;:158;;;;27065:36;27089:11;27065:23;:36::i;:::-;26943:158;26923:178;;26804:305;;;:::o;36609:174::-;36711:2;36684:15;:24;36700:7;36684:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36767:7;36763:2;36729:46;;36738:23;36753:7;36738:14;:23::i;:::-;36729:46;;;;;;;;;;;;36609:174;;:::o;32728:264::-;32821:4;32838:13;32854:23;32869:7;32854:14;:23::i;:::-;32838:39;;32907:5;32896:16;;:7;:16;;;:52;;;;32916:32;32933:5;32940:7;32916:16;:32::i;:::-;32896:52;:87;;;;32976:7;32952:31;;:20;32964:7;32952:11;:20::i;:::-;:31;;;32896:87;32888:96;;;32728:264;;;;:::o;69706:604::-;69840:4;69812:32;;:24;69827:8;69812:14;:24::i;:::-;:32;;;69804:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;69923:1;69909:16;;:2;:16;;;69901:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;69979:40;70000:4;70006:2;70010:8;69979:20;:40::i;:::-;70084:30;70101:1;70105:8;70084;:30::i;:::-;70146:1;70127:9;:15;70137:4;70127:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;70175:1;70158:9;:13;70168:2;70158:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;70207:2;70187:7;:17;70195:8;70187:17;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;70251:5;70222:16;:26;70239:8;70222:26;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;70293:8;70289:2;70274:28;;70283:4;70274:28;;;;;;;;;;;;69706:604;;;:::o;33671:319::-;33800:18;33806:2;33810:7;33800:5;:18::i;:::-;33851:53;33882:1;33886:2;33890:7;33899:4;33851:22;:53::i;:::-;33829:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;33671:319;;;:::o;36926:315::-;37081:8;37072:17;;:5;:17;;;37064:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;37168:8;37130:18;:25;37149:5;37130:25;;;;;;;;;;;;;;;:35;37156:8;37130:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37214:8;37192:41;;37207:5;37192:41;;;37224:8;37192:41;;;;;;:::i;:::-;;;;;;;;36926:315;;;:::o;31808:313::-;31964:28;31974:4;31980:2;31984:7;31964:9;:28::i;:::-;32011:47;32034:4;32040:2;32044:7;32053:4;32011:22;:47::i;:::-;32003:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31808:313;;;;:::o;72002:131::-;72066:7;72117:5;72101:23;;72093:32;;72086:39;;72002:131;;;:::o;17749:157::-;17834:4;17873:25;17858:40;;;:11;:40;;;;17851:47;;17749:157;;;:::o;43455:589::-;43599:45;43626:4;43632:2;43636:7;43599:26;:45::i;:::-;43677:1;43661:18;;:4;:18;;;43657:187;;43696:40;43728:7;43696:31;:40::i;:::-;43657:187;;;43766:2;43758:10;;:4;:10;;;43754:90;;43785:47;43818:4;43824:7;43785:32;:47::i;:::-;43754:90;43657:187;43872:1;43858:16;;:2;:16;;;43854:183;;43891:45;43928:7;43891:36;:45::i;:::-;43854:183;;;43964:4;43958:10;;:2;:10;;;43954:83;;43985:40;44013:2;44017:7;43985:27;:40::i;:::-;43954:83;43854:183;43455:589;;;:::o;34326:439::-;34420:1;34406:16;;:2;:16;;;34398:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34479:16;34487:7;34479;:16::i;:::-;34478:17;34470:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34541:45;34570:1;34574:2;34578:7;34541:20;:45::i;:::-;34616:1;34599:9;:13;34609:2;34599:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34647:2;34628:7;:16;34636:7;34628:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34692:7;34688:2;34667:33;;34684:1;34667:33;;;;;;;;;;;;34713:44;34741:1;34745:2;34749:7;34713:19;:44::i;:::-;34326:439;;:::o;38029:853::-;38183:4;38204:15;:2;:13;;;:15::i;:::-;38200:675;;;38256:2;38240:36;;;38277:12;:10;:12::i;:::-;38291:4;38297:7;38306:4;38240:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38236:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38498:1;38481:6;:13;:18;38477:328;;38524:60;;;;;;;;;;:::i;:::-;;;;;;;;38477:328;38755:6;38749:13;38740:6;38736:2;38732:15;38725:38;38236:584;38372:41;;;38362:51;;;:6;:51;;;;38355:58;;;;;38200:675;38859:4;38852:11;;38029:853;;;;;;;:::o;44767:164::-;44871:10;:17;;;;44844:15;:24;44860:7;44844:24;;;;;;;;;;;:44;;;;44899:10;44915:7;44899:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44767:164;:::o;45558:988::-;45824:22;45874:1;45849:22;45866:4;45849:16;:22::i;:::-;:26;;;;:::i;:::-;45824:51;;45886:18;45907:17;:26;45925:7;45907:26;;;;;;;;;;;;45886:47;;46054:14;46040:10;:28;46036:328;;46085:19;46107:12;:18;46120:4;46107:18;;;;;;;;;;;;;;;:34;46126:14;46107:34;;;;;;;;;;;;46085:56;;46191:11;46158:12;:18;46171:4;46158:18;;;;;;;;;;;;;;;:30;46177:10;46158:30;;;;;;;;;;;:44;;;;46308:10;46275:17;:30;46293:11;46275:30;;;;;;;;;;;:43;;;;46070:294;46036:328;46460:17;:26;46478:7;46460:26;;;;;;;;;;;46453:33;;;46504:12;:18;46517:4;46504:18;;;;;;;;;;;;;;;:34;46523:14;46504:34;;;;;;;;;;;46497:41;;;45639:907;;45558:988;;:::o;46841:1079::-;47094:22;47139:1;47119:10;:17;;;;:21;;;;:::i;:::-;47094:46;;47151:18;47172:15;:24;47188:7;47172:24;;;;;;;;;;;;47151:45;;47523:19;47545:10;47556:14;47545:26;;;;;;;;:::i;:::-;;;;;;;;;;47523:48;;47609:11;47584:10;47595;47584:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;47720:10;47689:15;:28;47705:11;47689:28;;;;;;;;;;;:41;;;;47861:15;:24;47877:7;47861:24;;;;;;;;;;;47854:31;;;47896:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46912:1008;;;46841:1079;:::o;44345:221::-;44430:14;44447:20;44464:2;44447:16;:20::i;:::-;44430:37;;44505:7;44478:12;:16;44491:2;44478:16;;;;;;;;;;;;;;;:24;44495:6;44478:24;;;;;;;;;;;:34;;;;44552:6;44523:17;:26;44541:7;44523:26;;;;;;;;;;;:35;;;;44419:147;44345:221;;:::o;39965:125::-;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;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:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:122::-;1674:24;1692:5;1674:24;:::i;:::-;1667:5;1664:35;1654:63;;1713:1;1710;1703:12;1654:63;1601:122;:::o;1729:139::-;1775:5;1813:6;1800:20;1791:29;;1829:33;1856:5;1829:33;:::i;:::-;1729:139;;;;:::o;1874:329::-;1933:6;1982:2;1970:9;1961:7;1957:23;1953:32;1950:119;;;1988:79;;:::i;:::-;1950:119;2108:1;2133:53;2178:7;2169:6;2158:9;2154:22;2133:53;:::i;:::-;2123:63;;2079:117;1874:329;;;;:::o;2209:118::-;2296:24;2314:5;2296:24;:::i;:::-;2291:3;2284:37;2209:118;;:::o;2333:222::-;2426:4;2464:2;2453:9;2449:18;2441:26;;2477:71;2545:1;2534:9;2530:17;2521:6;2477:71;:::i;:::-;2333:222;;;;:::o;2561:99::-;2613:6;2647:5;2641:12;2631:22;;2561:99;;;:::o;2666:169::-;2750:11;2784:6;2779:3;2772:19;2824:4;2819:3;2815:14;2800:29;;2666:169;;;;:::o;2841:246::-;2922:1;2932:113;2946:6;2943:1;2940:13;2932:113;;;3031:1;3026:3;3022:11;3016:18;3012:1;3007:3;3003:11;2996:39;2968:2;2965:1;2961:10;2956:15;;2932:113;;;3079:1;3070:6;3065:3;3061:16;3054:27;2903:184;2841:246;;;:::o;3093:102::-;3134:6;3185:2;3181:7;3176:2;3169:5;3165:14;3161:28;3151:38;;3093:102;;;:::o;3201:377::-;3289:3;3317:39;3350:5;3317:39;:::i;:::-;3372:71;3436:6;3431:3;3372:71;:::i;:::-;3365:78;;3452:65;3510:6;3505:3;3498:4;3491:5;3487:16;3452:65;:::i;:::-;3542:29;3564:6;3542:29;:::i;:::-;3537:3;3533:39;3526:46;;3293:285;3201:377;;;;:::o;3584:313::-;3697:4;3735:2;3724:9;3720:18;3712:26;;3784:9;3778:4;3774:20;3770:1;3759:9;3755:17;3748:47;3812:78;3885:4;3876:6;3812:78;:::i;:::-;3804:86;;3584:313;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:474::-;5935:6;5943;5992:2;5980:9;5971:7;5967:23;5963:32;5960:119;;;5998:79;;:::i;:::-;5960:119;6118:1;6143:53;6188:7;6179:6;6168:9;6164:22;6143:53;:::i;:::-;6133:63;;6089:117;6245:2;6271:53;6316:7;6307:6;6296:9;6292:22;6271:53;:::i;:::-;6261:63;;6216:118;5867:474;;;;;:::o;6347:332::-;6468:4;6506:2;6495:9;6491:18;6483:26;;6519:71;6587:1;6576:9;6572:17;6563:6;6519:71;:::i;:::-;6600:72;6668:2;6657:9;6653:18;6644:6;6600:72;:::i;:::-;6347:332;;;;;:::o;6685:329::-;6744:6;6793:2;6781:9;6772:7;6768:23;6764:32;6761:119;;;6799:79;;:::i;:::-;6761:119;6919:1;6944:53;6989:7;6980:6;6969:9;6965:22;6944:53;:::i;:::-;6934:63;;6890:117;6685:329;;;;:::o;7020:60::-;7048:3;7069:5;7062:12;;7020:60;;;:::o;7086:142::-;7136:9;7169:53;7187:34;7196:24;7214:5;7196:24;:::i;:::-;7187:34;:::i;:::-;7169:53;:::i;:::-;7156:66;;7086:142;;;:::o;7234:126::-;7284:9;7317:37;7348:5;7317:37;:::i;:::-;7304:50;;7234:126;;;:::o;7366:158::-;7448:9;7481:37;7512:5;7481:37;:::i;:::-;7468:50;;7366:158;;;:::o;7530:195::-;7649:69;7712:5;7649:69;:::i;:::-;7644:3;7637:82;7530:195;;:::o;7731:286::-;7856:4;7894:2;7883:9;7879:18;7871:26;;7907:103;8007:1;7996:9;7992:17;7983:6;7907:103;:::i;:::-;7731:286;;;;:::o;8023:117::-;8132:1;8129;8122:12;8146:117;8255:1;8252;8245:12;8269:180;8317:77;8314:1;8307:88;8414:4;8411:1;8404:15;8438:4;8435:1;8428:15;8455:281;8538:27;8560:4;8538:27;:::i;:::-;8530:6;8526:40;8668:6;8656:10;8653:22;8632:18;8620:10;8617:34;8614:62;8611:88;;;8679:18;;:::i;:::-;8611:88;8719:10;8715:2;8708:22;8498:238;8455:281;;:::o;8742:129::-;8776:6;8803:20;;:::i;:::-;8793:30;;8832:33;8860:4;8852:6;8832:33;:::i;:::-;8742:129;;;:::o;8877:308::-;8939:4;9029:18;9021:6;9018:30;9015:56;;;9051:18;;:::i;:::-;9015:56;9089:29;9111:6;9089:29;:::i;:::-;9081:37;;9173:4;9167;9163:15;9155:23;;8877:308;;;:::o;9191:146::-;9288:6;9283:3;9278;9265:30;9329:1;9320:6;9315:3;9311:16;9304:27;9191:146;;;:::o;9343:425::-;9421:5;9446:66;9462:49;9504:6;9462:49;:::i;:::-;9446:66;:::i;:::-;9437:75;;9535:6;9528:5;9521:21;9573:4;9566:5;9562:16;9611:3;9602:6;9597:3;9593:16;9590:25;9587:112;;;9618:79;;:::i;:::-;9587:112;9708:54;9755:6;9750:3;9745;9708:54;:::i;:::-;9427:341;9343:425;;;;;:::o;9788:340::-;9844:5;9893:3;9886:4;9878:6;9874:17;9870:27;9860:122;;9901:79;;:::i;:::-;9860:122;10018:6;10005:20;10043:79;10118:3;10110:6;10103:4;10095:6;10091:17;10043:79;:::i;:::-;10034:88;;9850:278;9788:340;;;;:::o;10134:509::-;10203:6;10252:2;10240:9;10231:7;10227:23;10223:32;10220:119;;;10258:79;;:::i;:::-;10220:119;10406:1;10395:9;10391:17;10378:31;10436:18;10428:6;10425:30;10422:117;;;10458:79;;:::i;:::-;10422:117;10563:63;10618:7;10609:6;10598:9;10594:22;10563:63;:::i;:::-;10553:73;;10349:287;10134:509;;;;:::o;10649:180::-;10697:77;10694:1;10687:88;10794:4;10791:1;10784:15;10818:4;10815:1;10808:15;10835:123;10926:1;10919:5;10916:12;10906:46;;10932:18;;:::i;:::-;10906:46;10835:123;:::o;10964:147::-;11019:7;11048:5;11037:16;;11054:51;11099:5;11054:51;:::i;:::-;10964:147;;;:::o;11117:::-;11183:9;11216:42;11252:5;11216:42;:::i;:::-;11203:55;;11117:147;;;:::o;11270:163::-;11373:53;11420:5;11373:53;:::i;:::-;11368:3;11361:66;11270:163;;:::o;11439:254::-;11548:4;11586:2;11575:9;11571:18;11563:26;;11599:87;11683:1;11672:9;11668:17;11659:6;11599:87;:::i;:::-;11439:254;;;;:::o;11699:116::-;11769:21;11784:5;11769:21;:::i;:::-;11762:5;11759:32;11749:60;;11805:1;11802;11795:12;11749:60;11699:116;:::o;11821:133::-;11864:5;11902:6;11889:20;11880:29;;11918:30;11942:5;11918:30;:::i;:::-;11821:133;;;;:::o;11960:468::-;12025:6;12033;12082:2;12070:9;12061:7;12057:23;12053:32;12050:119;;;12088:79;;:::i;:::-;12050:119;12208:1;12233:53;12278:7;12269:6;12258:9;12254:22;12233:53;:::i;:::-;12223:63;;12179:117;12335:2;12361:50;12403:7;12394:6;12383:9;12379:22;12361:50;:::i;:::-;12351:60;;12306:115;11960:468;;;;;:::o;12434:945::-;12530:6;12538;12546;12554;12603:3;12591:9;12582:7;12578:23;12574:33;12571:120;;;12610:79;;:::i;:::-;12571:120;12730:1;12755:53;12800:7;12791:6;12780:9;12776:22;12755:53;:::i;:::-;12745:63;;12701:117;12857:2;12883:53;12928:7;12919:6;12908:9;12904:22;12883:53;:::i;:::-;12873:63;;12828:118;13013:2;13002:9;12998:18;12985:32;13044:18;13036:6;13033:30;13030:117;;;13066:79;;:::i;:::-;13030:117;13171:63;13226:7;13217:6;13206:9;13202:22;13171:63;:::i;:::-;13161:73;;12956:288;13283:2;13309:53;13354:7;13345:6;13334:9;13330:22;13309:53;:::i;:::-;13299:63;;13254:118;12434:945;;;;;;;:::o;13385:307::-;13446:4;13536:18;13528:6;13525:30;13522:56;;;13558:18;;:::i;:::-;13522:56;13596:29;13618:6;13596:29;:::i;:::-;13588:37;;13680:4;13674;13670:15;13662:23;;13385:307;;;:::o;13698:423::-;13775:5;13800:65;13816:48;13857:6;13816:48;:::i;:::-;13800:65;:::i;:::-;13791:74;;13888:6;13881:5;13874:21;13926:4;13919:5;13915:16;13964:3;13955:6;13950:3;13946:16;13943:25;13940:112;;;13971:79;;:::i;:::-;13940:112;14061:54;14108:6;14103:3;14098;14061:54;:::i;:::-;13781:340;13698:423;;;;;:::o;14140:338::-;14195:5;14244:3;14237:4;14229:6;14225:17;14221:27;14211:122;;14252:79;;:::i;:::-;14211:122;14369:6;14356:20;14394:78;14468:3;14460:6;14453:4;14445:6;14441:17;14394:78;:::i;:::-;14385:87;;14201:277;14140:338;;;;:::o;14484:943::-;14579:6;14587;14595;14603;14652:3;14640:9;14631:7;14627:23;14623:33;14620:120;;;14659:79;;:::i;:::-;14620:120;14779:1;14804:53;14849:7;14840:6;14829:9;14825:22;14804:53;:::i;:::-;14794:63;;14750:117;14906:2;14932:53;14977:7;14968:6;14957:9;14953:22;14932:53;:::i;:::-;14922:63;;14877:118;15034:2;15060:53;15105:7;15096:6;15085:9;15081:22;15060:53;:::i;:::-;15050:63;;15005:118;15190:2;15179:9;15175:18;15162:32;15221:18;15213:6;15210:30;15207:117;;;15243:79;;:::i;:::-;15207:117;15348:62;15402:7;15393:6;15382:9;15378:22;15348:62;:::i;:::-;15338:72;;15133:287;14484:943;;;;;;;:::o;15433:108::-;15510:24;15528:5;15510:24;:::i;:::-;15505:3;15498:37;15433:108;;:::o;15547:159::-;15621:11;15655:6;15650:3;15643:19;15695:4;15690:3;15686:14;15671:29;;15547:159;;;;:::o;15712:357::-;15790:3;15818:39;15851:5;15818:39;:::i;:::-;15873:61;15927:6;15922:3;15873:61;:::i;:::-;15866:68;;15943:65;16001:6;15996:3;15989:4;15982:5;15978:16;15943:65;:::i;:::-;16033:29;16055:6;16033:29;:::i;:::-;16028:3;16024:39;16017:46;;15794:275;15712:357;;;;:::o;16075:108::-;16152:24;16170:5;16152:24;:::i;:::-;16147:3;16140:37;16075:108;;:::o;16289:987::-;16426:3;16462:4;16457:3;16453:14;16547:4;16540:5;16536:16;16530:23;16566:63;16623:4;16618:3;16614:14;16600:12;16566:63;:::i;:::-;16477:162;16726:4;16719:5;16715:16;16709:23;16779:3;16773:4;16769:14;16762:4;16757:3;16753:14;16746:38;16805:73;16873:4;16859:12;16805:73;:::i;:::-;16797:81;;16649:240;16978:4;16971:5;16967:16;16961:23;16997:63;17054:4;17049:3;17045:14;17031:12;16997:63;:::i;:::-;16899:171;17157:4;17150:5;17146:16;17140:23;17176:63;17233:4;17228:3;17224:14;17210:12;17176:63;:::i;:::-;17080:169;17266:4;17259:11;;16431:845;16289:987;;;;:::o;17282:409::-;17443:4;17481:2;17470:9;17466:18;17458:26;;17530:9;17524:4;17520:20;17516:1;17505:9;17501:17;17494:47;17558:126;17679:4;17670:6;17558:126;:::i;:::-;17550:134;;17282:409;;;;:::o;17697:654::-;17775:6;17783;17832:2;17820:9;17811:7;17807:23;17803:32;17800:119;;;17838:79;;:::i;:::-;17800:119;17958:1;17983:53;18028:7;18019:6;18008:9;18004:22;17983:53;:::i;:::-;17973:63;;17929:117;18113:2;18102:9;18098:18;18085:32;18144:18;18136:6;18133:30;18130:117;;;18166:79;;:::i;:::-;18130:117;18271:63;18326:7;18317:6;18306:9;18302:22;18271:63;:::i;:::-;18261:73;;18056:288;17697:654;;;;;:::o;18357:474::-;18425:6;18433;18482:2;18470:9;18461:7;18457:23;18453:32;18450:119;;;18488:79;;:::i;:::-;18450:119;18608:1;18633:53;18678:7;18669:6;18658:9;18654:22;18633:53;:::i;:::-;18623:63;;18579:117;18735:2;18761:53;18806:7;18797:6;18786:9;18782:22;18761:53;:::i;:::-;18751:63;;18706:118;18357:474;;;;;:::o;18837:147::-;18938:11;18975:3;18960:18;;18837:147;;;;:::o;18990:114::-;;:::o;19110:398::-;19269:3;19290:83;19371:1;19366:3;19290:83;:::i;:::-;19283:90;;19382:93;19471:3;19382:93;:::i;:::-;19500:1;19495:3;19491:11;19484:18;;19110:398;;;:::o;19514:379::-;19698:3;19720:147;19863:3;19720:147;:::i;:::-;19713:154;;19884:3;19877:10;;19514:379;;;:::o;19899:170::-;20039:22;20035:1;20027:6;20023:14;20016:46;19899:170;:::o;20075:366::-;20217:3;20238:67;20302:2;20297:3;20238:67;:::i;:::-;20231:74;;20314:93;20403:3;20314:93;:::i;:::-;20432:2;20427:3;20423:12;20416:19;;20075:366;;;:::o;20447:419::-;20613:4;20651:2;20640:9;20636:18;20628:26;;20700:9;20694:4;20690:20;20686:1;20675:9;20671:17;20664:47;20728:131;20854:4;20728:131;:::i;:::-;20720:139;;20447:419;;;:::o;20872:180::-;20920:77;20917:1;20910:88;21017:4;21014:1;21007:15;21041:4;21038:1;21031:15;21058:320;21102:6;21139:1;21133:4;21129:12;21119:22;;21186:1;21180:4;21176:12;21207:18;21197:81;;21263:4;21255:6;21251:17;21241:27;;21197:81;21325:2;21317:6;21314:14;21294:18;21291:38;21288:84;;21344:18;;:::i;:::-;21288:84;21109:269;21058:320;;;:::o;21384:182::-;21524:34;21520:1;21512:6;21508:14;21501:58;21384:182;:::o;21572:366::-;21714:3;21735:67;21799:2;21794:3;21735:67;:::i;:::-;21728:74;;21811:93;21900:3;21811:93;:::i;:::-;21929:2;21924:3;21920:12;21913:19;;21572:366;;;:::o;21944:419::-;22110:4;22148:2;22137:9;22133:18;22125:26;;22197:9;22191:4;22187:20;22183:1;22172:9;22168:17;22161:47;22225:131;22351:4;22225:131;:::i;:::-;22217:139;;21944:419;;;:::o;22369:175::-;22509:27;22505:1;22497:6;22493:14;22486:51;22369:175;:::o;22550:366::-;22692:3;22713:67;22777:2;22772:3;22713:67;:::i;:::-;22706:74;;22789:93;22878:3;22789:93;:::i;:::-;22907:2;22902:3;22898:12;22891:19;;22550:366;;;:::o;22922:419::-;23088:4;23126:2;23115:9;23111:18;23103:26;;23175:9;23169:4;23165:20;23161:1;23150:9;23146:17;23139:47;23203:131;23329:4;23203:131;:::i;:::-;23195:139;;22922:419;;;:::o;23347:180::-;23395:77;23392:1;23385:88;23492:4;23489:1;23482:15;23516:4;23513:1;23506:15;23533:410;23573:7;23596:20;23614:1;23596:20;:::i;:::-;23591:25;;23630:20;23648:1;23630:20;:::i;:::-;23625:25;;23685:1;23682;23678:9;23707:30;23725:11;23707:30;:::i;:::-;23696:41;;23886:1;23877:7;23873:15;23870:1;23867:22;23847:1;23840:9;23820:83;23797:139;;23916:18;;:::i;:::-;23797:139;23581:362;23533:410;;;;:::o;23949:180::-;23997:77;23994:1;23987:88;24094:4;24091:1;24084:15;24118:4;24115:1;24108:15;24135:185;24175:1;24192:20;24210:1;24192:20;:::i;:::-;24187:25;;24226:20;24244:1;24226:20;:::i;:::-;24221:25;;24265:1;24255:35;;24270:18;;:::i;:::-;24255:35;24312:1;24309;24305:9;24300:14;;24135:185;;;;:::o;24326:230::-;24466:34;24462:1;24454:6;24450:14;24443:58;24535:13;24530:2;24522:6;24518:15;24511:38;24326:230;:::o;24562:366::-;24704:3;24725:67;24789:2;24784:3;24725:67;:::i;:::-;24718:74;;24801:93;24890:3;24801:93;:::i;:::-;24919:2;24914:3;24910:12;24903:19;;24562:366;;;:::o;24934:419::-;25100:4;25138:2;25127:9;25123:18;25115:26;;25187:9;25181:4;25177:20;25173:1;25162:9;25158:17;25151:47;25215:131;25341:4;25215:131;:::i;:::-;25207:139;;24934:419;;;:::o;25359:174::-;25499:26;25495:1;25487:6;25483:14;25476:50;25359:174;:::o;25539:366::-;25681:3;25702:67;25766:2;25761:3;25702:67;:::i;:::-;25695:74;;25778:93;25867:3;25778:93;:::i;:::-;25896:2;25891:3;25887:12;25880:19;;25539:366;;;:::o;25911:419::-;26077:4;26115:2;26104:9;26100:18;26092:26;;26164:9;26158:4;26154:20;26150:1;26139:9;26135:17;26128:47;26192:131;26318:4;26192:131;:::i;:::-;26184:139;;25911:419;;;:::o;26336:221::-;26476:34;26472:1;26464:6;26460:14;26453:58;26545:4;26540:2;26532:6;26528:15;26521:29;26336:221;:::o;26563:366::-;26705:3;26726:67;26790:2;26785:3;26726:67;:::i;:::-;26719:74;;26802:93;26891:3;26802:93;:::i;:::-;26920:2;26915:3;26911:12;26904:19;;26563:366;;;:::o;26935:419::-;27101:4;27139:2;27128:9;27124:18;27116:26;;27188:9;27182:4;27178:20;27174:1;27163:9;27159:17;27152:47;27216:131;27342:4;27216:131;:::i;:::-;27208:139;;26935:419;;;:::o;27360:231::-;27500:34;27496:1;27488:6;27484:14;27477:58;27569:14;27564:2;27556:6;27552:15;27545:39;27360:231;:::o;27597:366::-;27739:3;27760:67;27824:2;27819:3;27760:67;:::i;:::-;27753:74;;27836:93;27925:3;27836:93;:::i;:::-;27954:2;27949:3;27945:12;27938:19;;27597:366;;;:::o;27969:419::-;28135:4;28173:2;28162:9;28158:18;28150:26;;28222:9;28216:4;28212:20;28208:1;28197:9;28193:17;28186:47;28250:131;28376:4;28250:131;:::i;:::-;28242:139;;27969:419;;;:::o;28394:180::-;28442:77;28439:1;28432:88;28539:4;28536:1;28529:15;28563:4;28560:1;28553:15;28580:141;28629:4;28652:3;28644:11;;28675:3;28672:1;28665:14;28709:4;28706:1;28696:18;28688:26;;28580:141;;;:::o;28727:93::-;28764:6;28811:2;28806;28799:5;28795:14;28791:23;28781:33;;28727:93;;;:::o;28826:107::-;28870:8;28920:5;28914:4;28910:16;28889:37;;28826:107;;;;:::o;28939:393::-;29008:6;29058:1;29046:10;29042:18;29081:97;29111:66;29100:9;29081:97;:::i;:::-;29199:39;29229:8;29218:9;29199:39;:::i;:::-;29187:51;;29271:4;29267:9;29260:5;29256:21;29247:30;;29320:4;29310:8;29306:19;29299:5;29296:30;29286:40;;29015:317;;28939:393;;;;;:::o;29338:142::-;29388:9;29421:53;29439:34;29448:24;29466:5;29448:24;:::i;:::-;29439:34;:::i;:::-;29421:53;:::i;:::-;29408:66;;29338:142;;;:::o;29486:75::-;29529:3;29550:5;29543:12;;29486:75;;;:::o;29567:269::-;29677:39;29708:7;29677:39;:::i;:::-;29738:91;29787:41;29811:16;29787:41;:::i;:::-;29779:6;29772:4;29766:11;29738:91;:::i;:::-;29732:4;29725:105;29643:193;29567:269;;;:::o;29842:73::-;29887:3;29842:73;:::o;29921:189::-;29998:32;;:::i;:::-;30039:65;30097:6;30089;30083:4;30039:65;:::i;:::-;29974:136;29921:189;;:::o;30116:186::-;30176:120;30193:3;30186:5;30183:14;30176:120;;;30247:39;30284:1;30277:5;30247:39;:::i;:::-;30220:1;30213:5;30209:13;30200:22;;30176:120;;;30116:186;;:::o;30308:543::-;30409:2;30404:3;30401:11;30398:446;;;30443:38;30475:5;30443:38;:::i;:::-;30527:29;30545:10;30527:29;:::i;:::-;30517:8;30513:44;30710:2;30698:10;30695:18;30692:49;;;30731:8;30716:23;;30692:49;30754:80;30810:22;30828:3;30810:22;:::i;:::-;30800:8;30796:37;30783:11;30754:80;:::i;:::-;30413:431;;30398:446;30308:543;;;:::o;30857:117::-;30911:8;30961:5;30955:4;30951:16;30930:37;;30857:117;;;;:::o;30980:169::-;31024:6;31057:51;31105:1;31101:6;31093:5;31090:1;31086:13;31057:51;:::i;:::-;31053:56;31138:4;31132;31128:15;31118:25;;31031:118;30980:169;;;;:::o;31154:295::-;31230:4;31376:29;31401:3;31395:4;31376:29;:::i;:::-;31368:37;;31438:3;31435:1;31431:11;31425:4;31422:21;31414:29;;31154:295;;;;:::o;31454:1395::-;31571:37;31604:3;31571:37;:::i;:::-;31673:18;31665:6;31662:30;31659:56;;;31695:18;;:::i;:::-;31659:56;31739:38;31771:4;31765:11;31739:38;:::i;:::-;31824:67;31884:6;31876;31870:4;31824:67;:::i;:::-;31918:1;31942:4;31929:17;;31974:2;31966:6;31963:14;31991:1;31986:618;;;;32648:1;32665:6;32662:77;;;32714:9;32709:3;32705:19;32699:26;32690:35;;32662:77;32765:67;32825:6;32818:5;32765:67;:::i;:::-;32759:4;32752:81;32621:222;31956:887;;31986:618;32038:4;32034:9;32026:6;32022:22;32072:37;32104:4;32072:37;:::i;:::-;32131:1;32145:208;32159:7;32156:1;32153:14;32145:208;;;32238:9;32233:3;32229:19;32223:26;32215:6;32208:42;32289:1;32281:6;32277:14;32267:24;;32336:2;32325:9;32321:18;32308:31;;32182:4;32179:1;32175:12;32170:17;;32145:208;;;32381:6;32372:7;32369:19;32366:179;;;32439:9;32434:3;32430:19;32424:26;32482:48;32524:4;32516:6;32512:17;32501:9;32482:48;:::i;:::-;32474:6;32467:64;32389:156;32366:179;32591:1;32587;32579:6;32575:14;32571:22;32565:4;32558:36;31993:611;;;31956:887;;31546:1303;;;31454:1395;;:::o;32855:174::-;32995:26;32991:1;32983:6;32979:14;32972:50;32855:174;:::o;33035:366::-;33177:3;33198:67;33262:2;33257:3;33198:67;:::i;:::-;33191:74;;33274:93;33363:3;33274:93;:::i;:::-;33392:2;33387:3;33383:12;33376:19;;33035:366;;;:::o;33407:419::-;33573:4;33611:2;33600:9;33596:18;33588:26;;33660:9;33654:4;33650:20;33646:1;33635:9;33631:17;33624:47;33688:131;33814:4;33688:131;:::i;:::-;33680:139;;33407:419;;;:::o;33832:228::-;33972:34;33968:1;33960:6;33956:14;33949:58;34041:11;34036:2;34028:6;34024:15;34017:36;33832:228;:::o;34066:366::-;34208:3;34229:67;34293:2;34288:3;34229:67;:::i;:::-;34222:74;;34305:93;34394:3;34305:93;:::i;:::-;34423:2;34418:3;34414:12;34407:19;;34066:366;;;:::o;34438:419::-;34604:4;34642:2;34631:9;34627:18;34619:26;;34691:9;34685:4;34681:20;34677:1;34666:9;34662:17;34655:47;34719:131;34845:4;34719:131;:::i;:::-;34711:139;;34438:419;;;:::o;34863:191::-;34903:3;34922:20;34940:1;34922:20;:::i;:::-;34917:25;;34956:20;34974:1;34956:20;:::i;:::-;34951:25;;34999:1;34996;34992:9;34985:16;;35020:3;35017:1;35014:10;35011:36;;;35027:18;;:::i;:::-;35011:36;34863:191;;;;:::o;35060:233::-;35099:3;35122:24;35140:5;35122:24;:::i;:::-;35113:33;;35168:66;35161:5;35158:77;35155:103;;35238:18;;:::i;:::-;35155:103;35285:1;35278:5;35274:13;35267:20;;35060:233;;;:::o;35299:181::-;35439:33;35435:1;35427:6;35423:14;35416:57;35299:181;:::o;35486:366::-;35628:3;35649:67;35713:2;35708:3;35649:67;:::i;:::-;35642:74;;35725:93;35814:3;35725:93;:::i;:::-;35843:2;35838:3;35834:12;35827:19;;35486:366;;;:::o;35858:419::-;36024:4;36062:2;36051:9;36047:18;36039:26;;36111:9;36105:4;36101:20;36097:1;36086:9;36082:17;36075:47;36139:131;36265:4;36139:131;:::i;:::-;36131:139;;35858:419;;;:::o;36283:148::-;36385:11;36422:3;36407:18;;36283:148;;;;:::o;36461:874::-;36564:3;36601:5;36595:12;36630:36;36656:9;36630:36;:::i;:::-;36682:89;36764:6;36759:3;36682:89;:::i;:::-;36675:96;;36802:1;36791:9;36787:17;36818:1;36813:166;;;;36993:1;36988:341;;;;36780:549;;36813:166;36897:4;36893:9;36882;36878:25;36873:3;36866:38;36959:6;36952:14;36945:22;36937:6;36933:35;36928:3;36924:45;36917:52;;36813:166;;36988:341;37055:38;37087:5;37055:38;:::i;:::-;37115:1;37129:154;37143:6;37140:1;37137:13;37129:154;;;37217:7;37211:14;37207:1;37202:3;37198:11;37191:35;37267:1;37258:7;37254:15;37243:26;;37165:4;37162:1;37158:12;37153:17;;37129:154;;;37312:6;37307:3;37303:16;37296:23;;36995:334;;36780:549;;36568:767;;36461:874;;;;:::o;37341:390::-;37447:3;37475:39;37508:5;37475:39;:::i;:::-;37530:89;37612:6;37607:3;37530:89;:::i;:::-;37523:96;;37628:65;37686:6;37681:3;37674:4;37667:5;37663:16;37628:65;:::i;:::-;37718:6;37713:3;37709:16;37702:23;;37451:280;37341:390;;;;:::o;37737:155::-;37877:7;37873:1;37865:6;37861:14;37854:31;37737:155;:::o;37898:400::-;38058:3;38079:84;38161:1;38156:3;38079:84;:::i;:::-;38072:91;;38172:93;38261:3;38172:93;:::i;:::-;38290:1;38285:3;38281:11;38274:18;;37898:400;;;:::o;38304:695::-;38582:3;38604:92;38692:3;38683:6;38604:92;:::i;:::-;38597:99;;38713:95;38804:3;38795:6;38713:95;:::i;:::-;38706:102;;38825:148;38969:3;38825:148;:::i;:::-;38818:155;;38990:3;38983:10;;38304:695;;;;;:::o;39005:163::-;39145:15;39141:1;39133:6;39129:14;39122:39;39005:163;:::o;39174:366::-;39316:3;39337:67;39401:2;39396:3;39337:67;:::i;:::-;39330:74;;39413:93;39502:3;39413:93;:::i;:::-;39531:2;39526:3;39522:12;39515:19;;39174:366;;;:::o;39546:419::-;39712:4;39750:2;39739:9;39735:18;39727:26;;39799:9;39793:4;39789:20;39785:1;39774:9;39770:17;39763:47;39827:131;39953:4;39827:131;:::i;:::-;39819:139;;39546:419;;;:::o;39971:178::-;40111:30;40107:1;40099:6;40095:14;40088:54;39971:178;:::o;40155:366::-;40297:3;40318:67;40382:2;40377:3;40318:67;:::i;:::-;40311:74;;40394:93;40483:3;40394:93;:::i;:::-;40512:2;40507:3;40503:12;40496:19;;40155:366;;;:::o;40527:419::-;40693:4;40731:2;40720:9;40716:18;40708:26;;40780:9;40774:4;40770:20;40766:1;40755:9;40751:17;40744:47;40808:131;40934:4;40808:131;:::i;:::-;40800:139;;40527:419;;;:::o;40952:173::-;41092:25;41088:1;41080:6;41076:14;41069:49;40952:173;:::o;41131:366::-;41273:3;41294:67;41358:2;41353:3;41294:67;:::i;:::-;41287:74;;41370:93;41459:3;41370:93;:::i;:::-;41488:2;41483:3;41479:12;41472:19;;41131:366;;;:::o;41503:419::-;41669:4;41707:2;41696:9;41692:18;41684:26;;41756:9;41750:4;41746:20;41742:1;41731:9;41727:17;41720:47;41784:131;41910:4;41784:131;:::i;:::-;41776:139;;41503:419;;;:::o;41928:222::-;42068:34;42064:1;42056:6;42052:14;42045:58;42137:5;42132:2;42124:6;42120:15;42113:30;41928:222;:::o;42156:366::-;42298:3;42319:67;42383:2;42378:3;42319:67;:::i;:::-;42312:74;;42395:93;42484:3;42395:93;:::i;:::-;42513:2;42508:3;42504:12;42497:19;;42156:366;;;:::o;42528:419::-;42694:4;42732:2;42721:9;42717:18;42709:26;;42781:9;42775:4;42771:20;42767:1;42756:9;42752:17;42745:47;42809:131;42935:4;42809:131;:::i;:::-;42801:139;;42528:419;;;:::o;42953:225::-;43093:34;43089:1;43081:6;43077:14;43070:58;43162:8;43157:2;43149:6;43145:15;43138:33;42953:225;:::o;43184:366::-;43326:3;43347:67;43411:2;43406:3;43347:67;:::i;:::-;43340:74;;43423:93;43512:3;43423:93;:::i;:::-;43541:2;43536:3;43532:12;43525:19;;43184:366;;;:::o;43556:419::-;43722:4;43760:2;43749:9;43745:18;43737:26;;43809:9;43803:4;43799:20;43795:1;43784:9;43780:17;43773:47;43837:131;43963:4;43837:131;:::i;:::-;43829:139;;43556:419;;;:::o;43981:143::-;44038:5;44069:6;44063:13;44054:22;;44085:33;44112:5;44085:33;:::i;:::-;43981:143;;;;:::o;44130:351::-;44200:6;44249:2;44237:9;44228:7;44224:23;44220:32;44217:119;;;44255:79;;:::i;:::-;44217:119;44375:1;44400:64;44456:7;44447:6;44436:9;44432:22;44400:64;:::i;:::-;44390:74;;44346:128;44130:351;;;;:::o;44487:225::-;44627:34;44623:1;44615:6;44611:14;44604:58;44696:8;44691:2;44683:6;44679:15;44672:33;44487:225;:::o;44718:366::-;44860:3;44881:67;44945:2;44940:3;44881:67;:::i;:::-;44874:74;;44957:93;45046:3;44957:93;:::i;:::-;45075:2;45070:3;45066:12;45059:19;;44718:366;;;:::o;45090:419::-;45256:4;45294:2;45283:9;45279:18;45271:26;;45343:9;45337:4;45333:20;45329:1;45318:9;45314:17;45307:47;45371:131;45497:4;45371:131;:::i;:::-;45363:139;;45090:419;;;:::o;45515:332::-;45636:4;45674:2;45663:9;45659:18;45651:26;;45687:71;45755:1;45744:9;45740:17;45731:6;45687:71;:::i;:::-;45768:72;45836:2;45825:9;45821:18;45812:6;45768:72;:::i;:::-;45515:332;;;;;:::o;45853:137::-;45907:5;45938:6;45932:13;45923:22;;45954:30;45978:5;45954:30;:::i;:::-;45853:137;;;;:::o;45996:345::-;46063:6;46112:2;46100:9;46091:7;46087:23;46083:32;46080:119;;;46118:79;;:::i;:::-;46080:119;46238:1;46263:61;46316:7;46307:6;46296:9;46292:22;46263:61;:::i;:::-;46253:71;;46209:125;45996:345;;;;:::o;46347:220::-;46487:34;46483:1;46475:6;46471:14;46464:58;46556:3;46551:2;46543:6;46539:15;46532:28;46347:220;:::o;46573:366::-;46715:3;46736:67;46800:2;46795:3;46736:67;:::i;:::-;46729:74;;46812:93;46901:3;46812:93;:::i;:::-;46930:2;46925:3;46921:12;46914:19;;46573:366;;;:::o;46945:419::-;47111:4;47149:2;47138:9;47134:18;47126:26;;47198:9;47192:4;47188:20;47184:1;47173:9;47169:17;47162:47;47226:131;47352:4;47226:131;:::i;:::-;47218:139;;46945:419;;;:::o;47370:248::-;47510:34;47506:1;47498:6;47494:14;47487:58;47579:31;47574:2;47566:6;47562:15;47555:56;47370:248;:::o;47624:366::-;47766:3;47787:67;47851:2;47846:3;47787:67;:::i;:::-;47780:74;;47863:93;47952:3;47863:93;:::i;:::-;47981:2;47976:3;47972:12;47965:19;;47624:366;;;:::o;47996:419::-;48162:4;48200:2;48189:9;48185:18;48177:26;;48249:9;48243:4;48239:20;48235:1;48224:9;48220:17;48213:47;48277:131;48403:4;48277:131;:::i;:::-;48269:139;;47996:419;;;:::o;48421:232::-;48561:34;48557:1;48549:6;48545:14;48538:58;48630:15;48625:2;48617:6;48613:15;48606:40;48421:232;:::o;48659:366::-;48801:3;48822:67;48886:2;48881:3;48822:67;:::i;:::-;48815:74;;48898:93;48987:3;48898:93;:::i;:::-;49016:2;49011:3;49007:12;49000:19;;48659:366;;;:::o;49031:419::-;49197:4;49235:2;49224:9;49220:18;49212:26;;49284:9;49278:4;49274:20;49270:1;49259:9;49255:17;49248:47;49312:131;49438:4;49312:131;:::i;:::-;49304:139;;49031:419;;;:::o;49456:194::-;49496:4;49516:20;49534:1;49516:20;:::i;:::-;49511:25;;49550:20;49568:1;49550:20;:::i;:::-;49545:25;;49594:1;49591;49587:9;49579:17;;49618:1;49612:4;49609:11;49606:37;;;49623:18;;:::i;:::-;49606:37;49456:194;;;;:::o;49656:176::-;49688:1;49705:20;49723:1;49705:20;:::i;:::-;49700:25;;49739:20;49757:1;49739:20;:::i;:::-;49734:25;;49778:1;49768:35;;49783:18;;:::i;:::-;49768:35;49824:1;49821;49817:9;49812:14;;49656:176;;;;:::o;49838:332::-;49959:4;49997:2;49986:9;49982:18;49974:26;;50010:71;50078:1;50067:9;50063:17;50054:6;50010:71;:::i;:::-;50091:72;50159:2;50148:9;50144:18;50135:6;50091:72;:::i;:::-;49838:332;;;;;:::o;50176:93::-;50212:7;50252:10;50245:5;50241:22;50230:33;;50176:93;;;:::o;50275:115::-;50360:23;50377:5;50360:23;:::i;:::-;50355:3;50348:36;50275:115;;:::o;50396:77::-;50433:7;50462:5;50451:16;;50396:77;;;:::o;50479:118::-;50566:24;50584:5;50566:24;:::i;:::-;50561:3;50554:37;50479:118;;:::o;50603:98::-;50654:6;50688:5;50682:12;50672:22;;50603:98;;;:::o;50707:168::-;50790:11;50824:6;50819:3;50812:19;50864:4;50859:3;50855:14;50840:29;;50707:168;;;;:::o;50881:373::-;50967:3;50995:38;51027:5;50995:38;:::i;:::-;51049:70;51112:6;51107:3;51049:70;:::i;:::-;51042:77;;51128:65;51186:6;51181:3;51174:4;51167:5;51163:16;51128:65;:::i;:::-;51218:29;51240:6;51218:29;:::i;:::-;51213:3;51209:39;51202:46;;50971:283;50881:373;;;;:::o;51260:525::-;51425:4;51463:2;51452:9;51448:18;51440:26;;51476:69;51542:1;51531:9;51527:17;51518:6;51476:69;:::i;:::-;51555:72;51623:2;51612:9;51608:18;51599:6;51555:72;:::i;:::-;51674:9;51668:4;51664:20;51659:2;51648:9;51644:18;51637:48;51702:76;51773:4;51764:6;51702:76;:::i;:::-;51694:84;;51260:525;;;;;;:::o;51791:90::-;51841:7;51870:5;51859:16;;51791:90;;;:::o;51887:168::-;51950:9;51983:66;52001:47;52010:37;52041:5;52010:37;:::i;:::-;52001:47;:::i;:::-;51983:66;:::i;:::-;51970:79;;51887:168;;;:::o;52061:157::-;52161:50;52205:5;52161:50;:::i;:::-;52156:3;52149:63;52061:157;;:::o;52224:354::-;52356:4;52394:2;52383:9;52379:18;52371:26;;52407:69;52473:1;52462:9;52458:17;52449:6;52407:69;:::i;:::-;52486:85;52567:2;52556:9;52552:18;52543:6;52486:85;:::i;:::-;52224:354;;;;;:::o;52584:575::-;52772:4;52810:3;52799:9;52795:19;52787:27;;52824:71;52892:1;52881:9;52877:17;52868:6;52824:71;:::i;:::-;52905:70;52971:2;52960:9;52956:18;52947:6;52905:70;:::i;:::-;52985:85;53066:2;53055:9;53051:18;53042:6;52985:85;:::i;:::-;53080:72;53148:2;53137:9;53133:18;53124:6;53080:72;:::i;:::-;52584:575;;;;;;;:::o;53165:228::-;53305:34;53301:1;53293:6;53289:14;53282:58;53374:11;53369:2;53361:6;53357:15;53350:36;53165:228;:::o;53399:366::-;53541:3;53562:67;53626:2;53621:3;53562:67;:::i;:::-;53555:74;;53638:93;53727:3;53638:93;:::i;:::-;53756:2;53751:3;53747:12;53740:19;;53399:366;;;:::o;53771:419::-;53937:4;53975:2;53964:9;53960:18;53952:26;;54024:9;54018:4;54014:20;54010:1;53999:9;53995:17;53988:47;54052:131;54178:4;54052:131;:::i;:::-;54044:139;;53771:419;;;:::o;54196:223::-;54336:34;54332:1;54324:6;54320:14;54313:58;54405:6;54400:2;54392:6;54388:15;54381:31;54196:223;:::o;54425:366::-;54567:3;54588:67;54652:2;54647:3;54588:67;:::i;:::-;54581:74;;54664:93;54753:3;54664:93;:::i;:::-;54782:2;54777:3;54773:12;54766:19;;54425:366;;;:::o;54797:419::-;54963:4;55001:2;54990:9;54986:18;54978:26;;55050:9;55044:4;55040:20;55036:1;55025:9;55021:17;55014:47;55078:131;55204:4;55078:131;:::i;:::-;55070:139;;54797:419;;;:::o;55222:237::-;55362:34;55358:1;55350:6;55346:14;55339:58;55431:20;55426:2;55418:6;55414:15;55407:45;55222:237;:::o;55465:366::-;55607:3;55628:67;55692:2;55687:3;55628:67;:::i;:::-;55621:74;;55704:93;55793:3;55704:93;:::i;:::-;55822:2;55817:3;55813:12;55806:19;;55465:366;;;:::o;55837:419::-;56003:4;56041:2;56030:9;56026:18;56018:26;;56090:9;56084:4;56080:20;56076:1;56065:9;56061:17;56054:47;56118:131;56244:4;56118:131;:::i;:::-;56110:139;;55837:419;;;:::o;56262:175::-;56402:27;56398:1;56390:6;56386:14;56379:51;56262:175;:::o;56443:366::-;56585:3;56606:67;56670:2;56665:3;56606:67;:::i;:::-;56599:74;;56682:93;56771:3;56682:93;:::i;:::-;56800:2;56795:3;56791:12;56784:19;;56443:366;;;:::o;56815:419::-;56981:4;57019:2;57008:9;57004:18;56996:26;;57068:9;57062:4;57058:20;57054:1;57043:9;57039:17;57032:47;57096:131;57222:4;57096:131;:::i;:::-;57088:139;;56815:419;;;:::o;57240:182::-;57380:34;57376:1;57368:6;57364:14;57357:58;57240:182;:::o;57428:366::-;57570:3;57591:67;57655:2;57650:3;57591:67;:::i;:::-;57584:74;;57667:93;57756:3;57667:93;:::i;:::-;57785:2;57780:3;57776:12;57769:19;;57428:366;;;:::o;57800:419::-;57966:4;58004:2;57993:9;57989:18;57981:26;;58053:9;58047:4;58043:20;58039:1;58028:9;58024:17;58017:47;58081:131;58207:4;58081:131;:::i;:::-;58073:139;;57800:419;;;:::o;58225:178::-;58365:30;58361:1;58353:6;58349:14;58342:54;58225:178;:::o;58409:366::-;58551:3;58572:67;58636:2;58631:3;58572:67;:::i;:::-;58565:74;;58648:93;58737:3;58648:93;:::i;:::-;58766:2;58761:3;58757:12;58750:19;;58409:366;;;:::o;58781:419::-;58947:4;58985:2;58974:9;58970:18;58962:26;;59034:9;59028:4;59024:20;59020:1;59009:9;59005:17;58998:47;59062:131;59188:4;59062:131;:::i;:::-;59054:139;;58781:419;;;:::o;59206:640::-;59401:4;59439:3;59428:9;59424:19;59416:27;;59453:71;59521:1;59510:9;59506:17;59497:6;59453:71;:::i;:::-;59534:72;59602:2;59591:9;59587:18;59578:6;59534:72;:::i;:::-;59616;59684:2;59673:9;59669:18;59660:6;59616:72;:::i;:::-;59735:9;59729:4;59725:20;59720:2;59709:9;59705:18;59698:48;59763:76;59834:4;59825:6;59763:76;:::i;:::-;59755:84;;59206:640;;;;;;;:::o;59852:141::-;59908:5;59939:6;59933:13;59924:22;;59955:32;59981:5;59955:32;:::i;:::-;59852:141;;;;:::o;59999:349::-;60068:6;60117:2;60105:9;60096:7;60092:23;60088:32;60085:119;;;60123:79;;:::i;:::-;60085:119;60243:1;60268:63;60323:7;60314:6;60303:9;60299:22;60268:63;:::i;:::-;60258:73;;60214:127;59999:349;;;;:::o;60354:180::-;60402:77;60399:1;60392:88;60499:4;60496:1;60489:15;60523:4;60520:1;60513:15

Swarm Source

ipfs://399eeceb456caf7ccca39d5837886955b7055b421e1eae3e6cdd315addcb7a3e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.