ETH Price: $3,681.66 (+2.25%)

ERC-20: Blockchain (blockchain)
 

Overview

TokenID

2294

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
Blockchain

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-05
*/

// File: code-sample/blockchain/interfaces/IToken.sol



/// @title IToken interface

pragma solidity ^0.8.6;

interface IToken {
    function mintAdmin(uint256 quantity, address to) external;
}
// File: code-sample/blockchain/interfaces/IDescriptor.sol



/// @title IDescriptor interface

pragma solidity ^0.8.6;

interface IDescriptor {
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // 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 Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/finance/PaymentSplitter.sol


// OpenZeppelin Contracts (last updated v4.7.0) (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the
 * time of contract deployment and can't be updated thereafter.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

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

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Getter for the amount of payee's releasable Ether.
     */
    function releasable(address account) public view returns (uint256) {
        uint256 totalReceived = address(this).balance + totalReleased();
        return _pendingPayment(account, totalReceived, released(account));
    }

    /**
     * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an
     * IERC20 contract.
     */
    function releasable(IERC20 token, address account) public view returns (uint256) {
        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        return _pendingPayment(account, totalReceived, released(token, account));
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(token, account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: 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 nor 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 nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits 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 {}
}

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


// OpenZeppelin Contracts (last updated v4.7.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: code-sample/blockchain/blockchain.sol



pragma solidity ^0.8.6;







contract Blockchain is Ownable, ERC721, PaymentSplitter,IToken  {
    using Strings for uint256;

    // Sale details
    uint256 public maxTokens = 2777; 
    uint256 public maxMintsPerTx = 5;
    uint256 public price = .005 ether; 
    bool public saleActive;

    // When set, diverts tokenURI calls to external contract
    address public descriptor;
    // Only used when `descriptor` is 0x0
    string public baseURI;

    uint256 private nowTokenId = 0;

    // Admin access for privileged contracts
    mapping(address => bool) public admins;

    /**
     * @notice Caller must be owner or privileged admin contract.
     */
    modifier onlyAdmin() {
        require(owner() == _msgSender() || admins[msg.sender], "Not admin");
        _;
    }

    constructor(address[] memory payees, uint256[] memory shares)
      ERC721("Blockchain", "blockchain")
      PaymentSplitter(payees, shares)
    {}

    /**
     * @dev Public mint.
     */
    function mint(uint256 quantity) external payable {
        require(saleActive, "Sale inactive");
        require(quantity <= maxMintsPerTx, "Too many mints per txn");
        require(nowTokenId + quantity <= maxTokens , "Exceeds max supply");
        require(msg.value >= price * quantity, "Not enough ether");

        for (uint256 i = 0; i < quantity; i++) {
            _safeMint(msg.sender, ++nowTokenId);
        }
    }

    /**
     * @dev Return tokenURI directly or via alternative `descriptor` contract
     */
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "URI query for nonexistent token");

        if (descriptor == address(0)) {
            return string(abi.encodePacked(baseURI, tokenId.toString()));
        } else {
            return IDescriptor(descriptor).tokenURI(tokenId);
        }
        
    }

    /**
     * @dev Simplified version of ERC721Enumberable's `totalSupply`
     */
    function totalSupply() external view returns (uint256) {
        return nowTokenId;
    }

    /**
     * @dev Set `descriptor` contract address to route `tokenURI`
     */
    function setDescriptor(address _descriptor) external onlyOwner {
        descriptor = _descriptor;
    }

    /**
     * @dev Set the `baseURI` used to construct `tokenURI`.
     */
    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    /**
     * @dev Enable adjusting max mints per transaction.
     */
    function setMaxMintsPerTxn(uint256 newMax) external onlyOwner {
        maxMintsPerTx = newMax;
    }

    /**
     * @dev Enable adjusting price.
     */
    function setPrice(uint256 newPriceWei) external onlyOwner {
        price = newPriceWei;
    }

    /**
     * @dev Toggle sale status.
     */
    function toggleSale() external onlyOwner {
        saleActive = !saleActive;
    }

    /**
     * @dev Toggle admin status for an address.
     */
    function setAdmin(address _address) external onlyOwner {
        admins[_address] = !admins[_address];
    }

    /**
     * @dev Admin mint. 
     */
    function mintAdmin(uint256 quantity, address to) external override onlyAdmin {
        require(nowTokenId + quantity <= maxTokens , "Exceeds max supply");

        for (uint256 i = 0; i < quantity; i++) {
            _safeMint(to, ++nowTokenId);
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"admins","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"descriptor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"mintAdmin","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setAdmin","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":"address","name":"_descriptor","type":"address"}],"name":"setDescriptor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMintsPerTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPriceWei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","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":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]

6080604052610ad9600e556005600f556611c37937e0800060105560006013553480156200002c57600080fd5b5060405162005e0b38038062005e0b833981810160405281019062000052919062000812565b81816040518060400160405280600a81526020017f426c6f636b636861696e000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f626c6f636b636861696e00000000000000000000000000000000000000000000815250620000e0620000d46200020e60201b60201c565b6200021660201b60201c565b8160019081620000f1919062000ad8565b50806002908162000103919062000ad8565b50505080518251146200014d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001449062000c46565b60405180910390fd5b600082511162000194576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018b9062000cb8565b60405180910390fd5b60005b82518110156200020357620001ed838281518110620001bb57620001ba62000cda565b5b6020026020010151838381518110620001d957620001d862000cda565b5b6020026020010151620002da60201b60201c565b8080620001fa9062000d38565b91505062000197565b505050505062000fb1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200034c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003439062000dfb565b60405180910390fd5b6000811162000392576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003899062000e6d565b60405180910390fd5b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000417576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040e9062000f05565b60405180910390fd5b600b829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600754620004ce919062000f27565b6007819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200050792919062000f84565b60405180910390a15050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000577826200052c565b810181811067ffffffffffffffff821117156200059957620005986200053d565b5b80604052505050565b6000620005ae62000513565b9050620005bc82826200056c565b919050565b600067ffffffffffffffff821115620005df57620005de6200053d565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200062282620005f5565b9050919050565b620006348162000615565b81146200064057600080fd5b50565b600081519050620006548162000629565b92915050565b6000620006716200066b84620005c1565b620005a2565b90508083825260208201905060208402830185811115620006975762000696620005f0565b5b835b81811015620006c45780620006af888262000643565b84526020840193505060208101905062000699565b5050509392505050565b600082601f830112620006e657620006e562000527565b5b8151620006f88482602086016200065a565b91505092915050565b600067ffffffffffffffff8211156200071f576200071e6200053d565b5b602082029050602081019050919050565b6000819050919050565b620007458162000730565b81146200075157600080fd5b50565b60008151905062000765816200073a565b92915050565b6000620007826200077c8462000701565b620005a2565b90508083825260208201905060208402830185811115620007a857620007a7620005f0565b5b835b81811015620007d55780620007c0888262000754565b845260208401935050602081019050620007aa565b5050509392505050565b600082601f830112620007f757620007f662000527565b5b8151620008098482602086016200076b565b91505092915050565b600080604083850312156200082c576200082b6200051d565b5b600083015167ffffffffffffffff8111156200084d576200084c62000522565b5b6200085b85828601620006ce565b925050602083015167ffffffffffffffff8111156200087f576200087e62000522565b5b6200088d85828601620007df565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008ea57607f821691505b6020821081036200090057620008ff620008a2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200096a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200092b565b6200097686836200092b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009b9620009b3620009ad8462000730565b6200098e565b62000730565b9050919050565b6000819050919050565b620009d58362000998565b620009ed620009e482620009c0565b84845462000938565b825550505050565b600090565b62000a04620009f5565b62000a11818484620009ca565b505050565b5b8181101562000a395762000a2d600082620009fa565b60018101905062000a17565b5050565b601f82111562000a885762000a528162000906565b62000a5d846200091b565b8101602085101562000a6d578190505b62000a8562000a7c856200091b565b83018262000a16565b50505b505050565b600082821c905092915050565b600062000aad6000198460080262000a8d565b1980831691505092915050565b600062000ac8838362000a9a565b9150826002028217905092915050565b62000ae38262000897565b67ffffffffffffffff81111562000aff5762000afe6200053d565b5b62000b0b8254620008d1565b62000b1882828562000a3d565b600060209050601f83116001811462000b50576000841562000b3b578287015190505b62000b47858262000aba565b86555062000bb7565b601f19841662000b608662000906565b60005b8281101562000b8a5784890151825560018201915060208501945060208101905062000b63565b8683101562000baa578489015162000ba6601f89168262000a9a565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b600062000c2e60328362000bbf565b915062000c3b8262000bd0565b604082019050919050565b6000602082019050818103600083015262000c618162000c1f565b9050919050565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b600062000ca0601a8362000bbf565b915062000cad8262000c68565b602082019050919050565b6000602082019050818103600083015262000cd38162000c91565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d458262000730565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000d7a5762000d7962000d09565b5b600182019050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600062000de3602c8362000bbf565b915062000df08262000d85565b604082019050919050565b6000602082019050818103600083015262000e168162000dd4565b9050919050565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b600062000e55601d8362000bbf565b915062000e628262000e1d565b602082019050919050565b6000602082019050818103600083015262000e888162000e46565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b600062000eed602b8362000bbf565b915062000efa8262000e8f565b604082019050919050565b6000602082019050818103600083015262000f208162000ede565b9050919050565b600062000f348262000730565b915062000f418362000730565b925082820190508082111562000f5c5762000f5b62000d09565b5b92915050565b62000f6d8162000615565b82525050565b62000f7e8162000730565b82525050565b600060408201905062000f9b600083018562000f62565b62000faa602083018462000f73565b9392505050565b614e4a8062000fc16000396000f3fe6080604052600436106102605760003560e01c80637d8966e411610144578063b88d4fde116100b6578063dc30158b1161007a578063dc30158b1461097e578063e33b7de3146109a9578063e8315742146109d4578063e985e9c5146109ff578063f2fde38b14610a3c578063f7c64f9e14610a65576102a7565b8063b88d4fde14610861578063c45ac0501461088a578063c87b56dd146108c7578063ce7c2ac214610904578063d79779b214610941576102a7565b80639852595c116101085780639852595c1461074e5780639d034fe91461078b578063a035b1fe146107b4578063a0712d68146107df578063a22cb465146107fb578063a3f8eace14610824576102a7565b80637d8966e41461067b5780638b83209b146106925780638da5cb5b146106cf57806391b7f5ed146106fa57806395d89b4114610723576102a7565b8063406072a9116101dd5780636352211e116101a15780636352211e1461056b57806368428a1b146105a85780636c0360eb146105d3578063704b6c02146105fe57806370a0823114610627578063715018a614610664576102a7565b8063406072a91461047657806342842e0e146104b3578063429b62e5146104dc57806348b750441461051957806355f804b314610542576102a7565b806318160ddd1161022457806318160ddd146103a357806319165587146103ce57806323b872dd146103f7578063303e74df146104205780633a98ef391461044b576102a7565b806301b9a397146102ac57806301ffc9a7146102d557806306fdde0314610312578063081812fc1461033d578063095ea7b31461037a576102a7565b366102a7577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061028e610a8e565b3460405161029d929190613097565b60405180910390a1005b600080fd5b3480156102b857600080fd5b506102d360048036038101906102ce9190613100565b610a96565b005b3480156102e157600080fd5b506102fc60048036038101906102f79190613185565b610ae2565b60405161030991906131cd565b60405180910390f35b34801561031e57600080fd5b50610327610bc4565b6040516103349190613278565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f91906132c6565b610c56565b60405161037191906132f3565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c919061330e565b610c9c565b005b3480156103af57600080fd5b506103b8610db3565b6040516103c5919061334e565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f091906133a7565b610dbd565b005b34801561040357600080fd5b5061041e600480360381019061041991906133d4565b610f45565b005b34801561042c57600080fd5b50610435610fa5565b60405161044291906132f3565b60405180910390f35b34801561045757600080fd5b50610460610fcb565b60405161046d919061334e565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190613465565b610fd5565b6040516104aa919061334e565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d591906133d4565b61105c565b005b3480156104e857600080fd5b5061050360048036038101906104fe9190613100565b61107c565b60405161051091906131cd565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b9190613465565b61109c565b005b34801561054e57600080fd5b50610569600480360381019061056491906135da565b6112b8565b005b34801561057757600080fd5b50610592600480360381019061058d91906132c6565b6112d3565b60405161059f91906132f3565b60405180910390f35b3480156105b457600080fd5b506105bd611384565b6040516105ca91906131cd565b60405180910390f35b3480156105df57600080fd5b506105e8611397565b6040516105f59190613278565b60405180910390f35b34801561060a57600080fd5b5061062560048036038101906106209190613100565b611425565b005b34801561063357600080fd5b5061064e60048036038101906106499190613100565b6114d4565b60405161065b919061334e565b60405180910390f35b34801561067057600080fd5b5061067961158b565b005b34801561068757600080fd5b5061069061159f565b005b34801561069e57600080fd5b506106b960048036038101906106b491906132c6565b6115d3565b6040516106c691906132f3565b60405180910390f35b3480156106db57600080fd5b506106e461161b565b6040516106f191906132f3565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c91906132c6565b611644565b005b34801561072f57600080fd5b50610738611656565b6040516107459190613278565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613100565b6116e8565b604051610782919061334e565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad9190613623565b611731565b005b3480156107c057600080fd5b506107c9611894565b6040516107d6919061334e565b60405180910390f35b6107f960048036038101906107f491906132c6565b61189a565b005b34801561080757600080fd5b50610822600480360381019061081d919061368f565b611a10565b005b34801561083057600080fd5b5061084b60048036038101906108469190613100565b611a26565b604051610858919061334e565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190613770565b611a59565b005b34801561089657600080fd5b506108b160048036038101906108ac9190613465565b611abb565b6040516108be919061334e565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e991906132c6565b611b6a565b6040516108fb9190613278565b60405180910390f35b34801561091057600080fd5b5061092b60048036038101906109269190613100565b611ce5565b604051610938919061334e565b60405180910390f35b34801561094d57600080fd5b50610968600480360381019061096391906137f3565b611d2e565b604051610975919061334e565b60405180910390f35b34801561098a57600080fd5b50610993611d77565b6040516109a0919061334e565b60405180910390f35b3480156109b557600080fd5b506109be611d7d565b6040516109cb919061334e565b60405180910390f35b3480156109e057600080fd5b506109e9611d87565b6040516109f6919061334e565b60405180910390f35b348015610a0b57600080fd5b50610a266004803603810190610a219190613820565b611d8d565b604051610a3391906131cd565b60405180910390f35b348015610a4857600080fd5b50610a636004803603810190610a5e9190613100565b611e21565b005b348015610a7157600080fd5b50610a8c6004803603810190610a8791906132c6565b611ea4565b005b600033905090565b610a9e611eb6565b80601160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bad57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bbd5750610bbc82611f34565b5b9050919050565b606060018054610bd39061388f565b80601f0160208091040260200160405190810160405280929190818152602001828054610bff9061388f565b8015610c4c5780601f10610c2157610100808354040283529160200191610c4c565b820191906000526020600020905b815481529060010190602001808311610c2f57829003601f168201915b5050505050905090565b6000610c6182611f9e565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca7826112d3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613932565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d36610a8e565b73ffffffffffffffffffffffffffffffffffffffff161480610d655750610d6481610d5f610a8e565b611d8d565b5b610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b906139c4565b60405180910390fd5b610dae8383611fe9565b505050565b6000601354905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690613a56565b60405180910390fd5b6000610e4a82611a26565b905060008103610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690613ae8565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ede9190613b37565b925050819055508060086000828254610ef79190613b37565b92505081905550610f0882826120a2565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568282604051610f39929190613bca565b60405180910390a15050565b610f56610f50610a8e565b82612196565b610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90613c65565b60405180910390fd5b610fa083838361222b565b505050565b601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600754905090565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61107783838360405180602001604052806000815250611a59565b505050565b60146020528060005260406000206000915054906101000a900460ff1681565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590613a56565b60405180910390fd5b600061112a8383611abb565b90506000810361116f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116690613ae8565b60405180910390fd5b80600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111fb9190613b37565b9250508190555080600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112519190613b37565b92505081905550611263838383612491565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a83836040516112ab929190613097565b60405180910390a2505050565b6112c0611eb6565b80601290816112cf9190613e27565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137290613f45565b60405180910390fd5b80915050919050565b601160009054906101000a900460ff1681565b601280546113a49061388f565b80601f01602080910402602001604051908101604052809291908181526020018280546113d09061388f565b801561141d5780601f106113f25761010080835404028352916020019161141d565b820191906000526020600020905b81548152906001019060200180831161140057829003601f168201915b505050505081565b61142d611eb6565b601460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613fd7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611593611eb6565b61159d6000612517565b565b6115a7611eb6565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600b82815481106115e9576115e8613ff7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61164c611eb6565b8060108190555050565b6060600280546116659061388f565b80601f01602080910402602001604051908101604052809291908181526020018280546116919061388f565b80156116de5780601f106116b3576101008083540402835291602001916116de565b820191906000526020600020905b8154815290600101906020018083116116c157829003601f168201915b5050505050905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611739610a8e565b73ffffffffffffffffffffffffffffffffffffffff1661175761161b565b73ffffffffffffffffffffffffffffffffffffffff1614806117c25750601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f890614072565b60405180910390fd5b600e54826013546118129190613b37565b1115611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a906140de565b60405180910390fd5b60005b8281101561188f5761187c82601360008154611871906140fe565b9190508190556125db565b8080611887906140fe565b915050611856565b505050565b60105481565b601160009054906101000a900460ff166118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e090614192565b60405180910390fd5b600f5481111561192e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611925906141fe565b60405180910390fd5b600e548160135461193f9190613b37565b1115611980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611977906140de565b60405180910390fd5b8060105461198e919061421e565b3410156119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c7906142ac565b60405180910390fd5b60005b81811015611a0c576119f9336013600081546119ee906140fe565b9190508190556125db565b8080611a04906140fe565b9150506119d3565b5050565b611a22611a1b610a8e565b83836125f9565b5050565b600080611a31611d7d565b47611a3c9190613b37565b9050611a518382611a4c866116e8565b612765565b915050919050565b611a6a611a64610a8e565b83612196565b611aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa090613c65565b60405180910390fd5b611ab5848484846127d3565b50505050565b600080611ac784611d2e565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611b0091906132f3565b602060405180830381865afa158015611b1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b4191906142e1565b611b4b9190613b37565b9050611b618382611b5c8787610fd5565b612765565b91505092915050565b6060611b758261282f565b611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab9061435a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611c3c576012611c158361289b565b604051602001611c26929190614439565b6040516020818303038152906040529050611ce0565b601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b8152600401611c97919061334e565b600060405180830381865afa158015611cb4573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611cdd91906144cd565b90505b919050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600f5481565b6000600854905090565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e29611eb6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f90614588565b60405180910390fd5b611ea181612517565b50565b611eac611eb6565b80600f8190555050565b611ebe610a8e565b73ffffffffffffffffffffffffffffffffffffffff16611edc61161b565b73ffffffffffffffffffffffffffffffffffffffff1614611f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f29906145f4565b60405180910390fd5b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611fa78161282f565b611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdd90613f45565b60405180910390fd5b50565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661205c836112d3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc90614660565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161210b906146b1565b60006040518083038185875af1925050503d8060008114612148576040519150601f19603f3d011682016040523d82523d6000602084013e61214d565b606091505b5050905080612191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218890614738565b60405180910390fd5b505050565b6000806121a2836112d3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121e457506121e38185611d8d565b5b8061222257508373ffffffffffffffffffffffffffffffffffffffff1661220a84610c56565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661224b826112d3565b73ffffffffffffffffffffffffffffffffffffffff16146122a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612298906147ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612310576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123079061485c565b60405180910390fd5b61231b8383836129fb565b612326600082611fe9565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612376919061487c565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123cd9190613b37565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461248c838383612a00565b505050565b6125128363a9059cbb60e01b84846040516024016124b0929190613097565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612a05565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125f5828260405180602001604052806000815250612acc565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265e906148fc565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161275891906131cd565b60405180910390a3505050565b600081600754600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856127b6919061421e565b6127c0919061494b565b6127ca919061487c565b90509392505050565b6127de84848461222b565b6127ea84848484612b27565b612829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612820906149ee565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600082036128e2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129f6565b600082905060005b600082146129145780806128fd906140fe565b915050600a8261290d919061494b565b91506128ea565b60008167ffffffffffffffff8111156129305761292f6134af565b5b6040519080825280601f01601f1916602001820160405280156129625781602001600182028036833780820191505090505b5090505b600085146129ef5760018261297b919061487c565b9150600a8561298a9190614a0e565b60306129969190613b37565b60f81b8183815181106129ac576129ab613ff7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129e8919061494b565b9450612966565b8093505050505b919050565b505050565b505050565b6000612a67826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612cae9092919063ffffffff16565b9050600081511115612ac75780806020019051810190612a879190614a54565b612ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abd90614af3565b60405180910390fd5b5b505050565b612ad68383612cc6565b612ae36000848484612b27565b612b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b19906149ee565b60405180910390fd5b505050565b6000612b488473ffffffffffffffffffffffffffffffffffffffff16612e9f565b15612ca1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b71610a8e565b8786866040518563ffffffff1660e01b8152600401612b939493929190614b68565b6020604051808303816000875af1925050508015612bcf57506040513d601f19601f82011682018060405250810190612bcc9190614bc9565b60015b612c51573d8060008114612bff576040519150601f19603f3d011682016040523d82523d6000602084013e612c04565b606091505b506000815103612c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c40906149ee565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ca6565b600190505b949350505050565b6060612cbd8484600085612ec2565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2c90614c42565b60405180910390fd5b612d3e8161282f565b15612d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7590614cae565b60405180910390fd5b612d8a600083836129fb565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dda9190613b37565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e9b60008383612a00565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b606082471015612f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efe90614d40565b60405180910390fd5b612f1085612e9f565b612f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4690614dac565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612f789190614dfd565b60006040518083038185875af1925050503d8060008114612fb5576040519150601f19603f3d011682016040523d82523d6000602084013e612fba565b606091505b5091509150612fca828286612fd6565b92505050949350505050565b60608315612fe657829050613036565b600083511115612ff95782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302d9190613278565b60405180910390fd5b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130688261303d565b9050919050565b6130788161305d565b82525050565b6000819050919050565b6130918161307e565b82525050565b60006040820190506130ac600083018561306f565b6130b96020830184613088565b9392505050565b6000604051905090565b600080fd5b600080fd5b6130dd8161305d565b81146130e857600080fd5b50565b6000813590506130fa816130d4565b92915050565b600060208284031215613116576131156130ca565b5b6000613124848285016130eb565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131628161312d565b811461316d57600080fd5b50565b60008135905061317f81613159565b92915050565b60006020828403121561319b5761319a6130ca565b5b60006131a984828501613170565b91505092915050565b60008115159050919050565b6131c7816131b2565b82525050565b60006020820190506131e260008301846131be565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613222578082015181840152602081019050613207565b60008484015250505050565b6000601f19601f8301169050919050565b600061324a826131e8565b61325481856131f3565b9350613264818560208601613204565b61326d8161322e565b840191505092915050565b60006020820190508181036000830152613292818461323f565b905092915050565b6132a38161307e565b81146132ae57600080fd5b50565b6000813590506132c08161329a565b92915050565b6000602082840312156132dc576132db6130ca565b5b60006132ea848285016132b1565b91505092915050565b6000602082019050613308600083018461306f565b92915050565b60008060408385031215613325576133246130ca565b5b6000613333858286016130eb565b9250506020613344858286016132b1565b9150509250929050565b60006020820190506133636000830184613088565b92915050565b60006133748261303d565b9050919050565b61338481613369565b811461338f57600080fd5b50565b6000813590506133a18161337b565b92915050565b6000602082840312156133bd576133bc6130ca565b5b60006133cb84828501613392565b91505092915050565b6000806000606084860312156133ed576133ec6130ca565b5b60006133fb868287016130eb565b935050602061340c868287016130eb565b925050604061341d868287016132b1565b9150509250925092565b60006134328261305d565b9050919050565b61344281613427565b811461344d57600080fd5b50565b60008135905061345f81613439565b92915050565b6000806040838503121561347c5761347b6130ca565b5b600061348a85828601613450565b925050602061349b858286016130eb565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134e78261322e565b810181811067ffffffffffffffff82111715613506576135056134af565b5b80604052505050565b60006135196130c0565b905061352582826134de565b919050565b600067ffffffffffffffff821115613545576135446134af565b5b61354e8261322e565b9050602081019050919050565b82818337600083830152505050565b600061357d6135788461352a565b61350f565b905082815260208101848484011115613599576135986134aa565b5b6135a484828561355b565b509392505050565b600082601f8301126135c1576135c06134a5565b5b81356135d184826020860161356a565b91505092915050565b6000602082840312156135f0576135ef6130ca565b5b600082013567ffffffffffffffff81111561360e5761360d6130cf565b5b61361a848285016135ac565b91505092915050565b6000806040838503121561363a576136396130ca565b5b6000613648858286016132b1565b9250506020613659858286016130eb565b9150509250929050565b61366c816131b2565b811461367757600080fd5b50565b60008135905061368981613663565b92915050565b600080604083850312156136a6576136a56130ca565b5b60006136b4858286016130eb565b92505060206136c58582860161367a565b9150509250929050565b600067ffffffffffffffff8211156136ea576136e96134af565b5b6136f38261322e565b9050602081019050919050565b600061371361370e846136cf565b61350f565b90508281526020810184848401111561372f5761372e6134aa565b5b61373a84828561355b565b509392505050565b600082601f830112613757576137566134a5565b5b8135613767848260208601613700565b91505092915050565b6000806000806080858703121561378a576137896130ca565b5b6000613798878288016130eb565b94505060206137a9878288016130eb565b93505060406137ba878288016132b1565b925050606085013567ffffffffffffffff8111156137db576137da6130cf565b5b6137e787828801613742565b91505092959194509250565b600060208284031215613809576138086130ca565b5b600061381784828501613450565b91505092915050565b60008060408385031215613837576138366130ca565b5b6000613845858286016130eb565b9250506020613856858286016130eb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138a757607f821691505b6020821081036138ba576138b9613860565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061391c6021836131f3565b9150613927826138c0565b604082019050919050565b6000602082019050818103600083015261394b8161390f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006139ae603e836131f3565b91506139b982613952565b604082019050919050565b600060208201905081810360008301526139dd816139a1565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b6000613a406026836131f3565b9150613a4b826139e4565b604082019050919050565b60006020820190508181036000830152613a6f81613a33565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b6000613ad2602b836131f3565b9150613add82613a76565b604082019050919050565b60006020820190508181036000830152613b0181613ac5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b428261307e565b9150613b4d8361307e565b9250828201905080821115613b6557613b64613b08565b5b92915050565b6000819050919050565b6000613b90613b8b613b868461303d565b613b6b565b61303d565b9050919050565b6000613ba282613b75565b9050919050565b6000613bb482613b97565b9050919050565b613bc481613ba9565b82525050565b6000604082019050613bdf6000830185613bbb565b613bec6020830184613088565b9392505050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613c4f602e836131f3565b9150613c5a82613bf3565b604082019050919050565b60006020820190508181036000830152613c7e81613c42565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613ce77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613caa565b613cf18683613caa565b95508019841693508086168417925050509392505050565b6000613d24613d1f613d1a8461307e565b613b6b565b61307e565b9050919050565b6000819050919050565b613d3e83613d09565b613d52613d4a82613d2b565b848454613cb7565b825550505050565b600090565b613d67613d5a565b613d72818484613d35565b505050565b5b81811015613d9657613d8b600082613d5f565b600181019050613d78565b5050565b601f821115613ddb57613dac81613c85565b613db584613c9a565b81016020851015613dc4578190505b613dd8613dd085613c9a565b830182613d77565b50505b505050565b600082821c905092915050565b6000613dfe60001984600802613de0565b1980831691505092915050565b6000613e178383613ded565b9150826002028217905092915050565b613e30826131e8565b67ffffffffffffffff811115613e4957613e486134af565b5b613e53825461388f565b613e5e828285613d9a565b600060209050601f831160018114613e915760008415613e7f578287015190505b613e898582613e0b565b865550613ef1565b601f198416613e9f86613c85565b60005b82811015613ec757848901518255600182019150602085019450602081019050613ea2565b86831015613ee45784890151613ee0601f891682613ded565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613f2f6018836131f3565b9150613f3a82613ef9565b602082019050919050565b60006020820190508181036000830152613f5e81613f22565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613fc16029836131f3565b9150613fcc82613f65565b604082019050919050565b60006020820190508181036000830152613ff081613fb4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e6f742061646d696e0000000000000000000000000000000000000000000000600082015250565b600061405c6009836131f3565b915061406782614026565b602082019050919050565b6000602082019050818103600083015261408b8161404f565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006140c86012836131f3565b91506140d382614092565b602082019050919050565b600060208201905081810360008301526140f7816140bb565b9050919050565b60006141098261307e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361413b5761413a613b08565b5b600182019050919050565b7f53616c6520696e61637469766500000000000000000000000000000000000000600082015250565b600061417c600d836131f3565b915061418782614146565b602082019050919050565b600060208201905081810360008301526141ab8161416f565b9050919050565b7f546f6f206d616e79206d696e7473207065722074786e00000000000000000000600082015250565b60006141e86016836131f3565b91506141f3826141b2565b602082019050919050565b60006020820190508181036000830152614217816141db565b9050919050565b60006142298261307e565b91506142348361307e565b92508282026142428161307e565b9150828204841483151761425957614258613b08565b5b5092915050565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b60006142966010836131f3565b91506142a182614260565b602082019050919050565b600060208201905081810360008301526142c581614289565b9050919050565b6000815190506142db8161329a565b92915050565b6000602082840312156142f7576142f66130ca565b5b6000614305848285016142cc565b91505092915050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000614344601f836131f3565b915061434f8261430e565b602082019050919050565b6000602082019050818103600083015261437381614337565b9050919050565b600081905092915050565b600081546143928161388f565b61439c818661437a565b945060018216600081146143b757600181146143cc576143ff565b60ff19831686528115158202860193506143ff565b6143d585613c85565b60005b838110156143f7578154818901526001820191506020810190506143d8565b838801955050505b50505092915050565b6000614413826131e8565b61441d818561437a565b935061442d818560208601613204565b80840191505092915050565b60006144458285614385565b91506144518284614408565b91508190509392505050565b600061447061446b8461352a565b61350f565b90508281526020810184848401111561448c5761448b6134aa565b5b614497848285613204565b509392505050565b600082601f8301126144b4576144b36134a5565b5b81516144c484826020860161445d565b91505092915050565b6000602082840312156144e3576144e26130ca565b5b600082015167ffffffffffffffff811115614501576145006130cf565b5b61450d8482850161449f565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145726026836131f3565b915061457d82614516565b604082019050919050565b600060208201905081810360008301526145a181614565565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145de6020836131f3565b91506145e9826145a8565b602082019050919050565b6000602082019050818103600083015261460d816145d1565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b600061464a601d836131f3565b915061465582614614565b602082019050919050565b600060208201905081810360008301526146798161463d565b9050919050565b600081905092915050565b50565b600061469b600083614680565b91506146a68261468b565b600082019050919050565b60006146bc8261468e565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614722603a836131f3565b915061472d826146c6565b604082019050919050565b6000602082019050818103600083015261475181614715565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006147b46025836131f3565b91506147bf82614758565b604082019050919050565b600060208201905081810360008301526147e3816147a7565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006148466024836131f3565b9150614851826147ea565b604082019050919050565b6000602082019050818103600083015261487581614839565b9050919050565b60006148878261307e565b91506148928361307e565b92508282039050818111156148aa576148a9613b08565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006148e66019836131f3565b91506148f1826148b0565b602082019050919050565b60006020820190508181036000830152614915816148d9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006149568261307e565b91506149618361307e565b9250826149715761497061491c565b5b828204905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006149d86032836131f3565b91506149e38261497c565b604082019050919050565b60006020820190508181036000830152614a07816149cb565b9050919050565b6000614a198261307e565b9150614a248361307e565b925082614a3457614a3361491c565b5b828206905092915050565b600081519050614a4e81613663565b92915050565b600060208284031215614a6a57614a696130ca565b5b6000614a7884828501614a3f565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000614add602a836131f3565b9150614ae882614a81565b604082019050919050565b60006020820190508181036000830152614b0c81614ad0565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614b3a82614b13565b614b448185614b1e565b9350614b54818560208601613204565b614b5d8161322e565b840191505092915050565b6000608082019050614b7d600083018761306f565b614b8a602083018661306f565b614b976040830185613088565b8181036060830152614ba98184614b2f565b905095945050505050565b600081519050614bc381613159565b92915050565b600060208284031215614bdf57614bde6130ca565b5b6000614bed84828501614bb4565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614c2c6020836131f3565b9150614c3782614bf6565b602082019050919050565b60006020820190508181036000830152614c5b81614c1f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614c98601c836131f3565b9150614ca382614c62565b602082019050919050565b60006020820190508181036000830152614cc781614c8b565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614d2a6026836131f3565b9150614d3582614cce565b604082019050919050565b60006020820190508181036000830152614d5981614d1d565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614d96601d836131f3565b9150614da182614d60565b602082019050919050565b60006020820190508181036000830152614dc581614d89565b9050919050565b6000614dd782614b13565b614de18185614680565b9350614df1818560208601613204565b80840191505092915050565b6000614e098284614dcc565b91508190509291505056fea2646970667358221220991e4fd77fc5e2f1273a9110351cdcf4a03ef4af8c4be1a68ac8788664adf8a564736f6c634300081100330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000010000000000000000000000002f53b8e97ce71ce3edec3f2654f69e7fe5ef12d400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001

Deployed Bytecode

0x6080604052600436106102605760003560e01c80637d8966e411610144578063b88d4fde116100b6578063dc30158b1161007a578063dc30158b1461097e578063e33b7de3146109a9578063e8315742146109d4578063e985e9c5146109ff578063f2fde38b14610a3c578063f7c64f9e14610a65576102a7565b8063b88d4fde14610861578063c45ac0501461088a578063c87b56dd146108c7578063ce7c2ac214610904578063d79779b214610941576102a7565b80639852595c116101085780639852595c1461074e5780639d034fe91461078b578063a035b1fe146107b4578063a0712d68146107df578063a22cb465146107fb578063a3f8eace14610824576102a7565b80637d8966e41461067b5780638b83209b146106925780638da5cb5b146106cf57806391b7f5ed146106fa57806395d89b4114610723576102a7565b8063406072a9116101dd5780636352211e116101a15780636352211e1461056b57806368428a1b146105a85780636c0360eb146105d3578063704b6c02146105fe57806370a0823114610627578063715018a614610664576102a7565b8063406072a91461047657806342842e0e146104b3578063429b62e5146104dc57806348b750441461051957806355f804b314610542576102a7565b806318160ddd1161022457806318160ddd146103a357806319165587146103ce57806323b872dd146103f7578063303e74df146104205780633a98ef391461044b576102a7565b806301b9a397146102ac57806301ffc9a7146102d557806306fdde0314610312578063081812fc1461033d578063095ea7b31461037a576102a7565b366102a7577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061028e610a8e565b3460405161029d929190613097565b60405180910390a1005b600080fd5b3480156102b857600080fd5b506102d360048036038101906102ce9190613100565b610a96565b005b3480156102e157600080fd5b506102fc60048036038101906102f79190613185565b610ae2565b60405161030991906131cd565b60405180910390f35b34801561031e57600080fd5b50610327610bc4565b6040516103349190613278565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f91906132c6565b610c56565b60405161037191906132f3565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c919061330e565b610c9c565b005b3480156103af57600080fd5b506103b8610db3565b6040516103c5919061334e565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f091906133a7565b610dbd565b005b34801561040357600080fd5b5061041e600480360381019061041991906133d4565b610f45565b005b34801561042c57600080fd5b50610435610fa5565b60405161044291906132f3565b60405180910390f35b34801561045757600080fd5b50610460610fcb565b60405161046d919061334e565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190613465565b610fd5565b6040516104aa919061334e565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d591906133d4565b61105c565b005b3480156104e857600080fd5b5061050360048036038101906104fe9190613100565b61107c565b60405161051091906131cd565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b9190613465565b61109c565b005b34801561054e57600080fd5b50610569600480360381019061056491906135da565b6112b8565b005b34801561057757600080fd5b50610592600480360381019061058d91906132c6565b6112d3565b60405161059f91906132f3565b60405180910390f35b3480156105b457600080fd5b506105bd611384565b6040516105ca91906131cd565b60405180910390f35b3480156105df57600080fd5b506105e8611397565b6040516105f59190613278565b60405180910390f35b34801561060a57600080fd5b5061062560048036038101906106209190613100565b611425565b005b34801561063357600080fd5b5061064e60048036038101906106499190613100565b6114d4565b60405161065b919061334e565b60405180910390f35b34801561067057600080fd5b5061067961158b565b005b34801561068757600080fd5b5061069061159f565b005b34801561069e57600080fd5b506106b960048036038101906106b491906132c6565b6115d3565b6040516106c691906132f3565b60405180910390f35b3480156106db57600080fd5b506106e461161b565b6040516106f191906132f3565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c91906132c6565b611644565b005b34801561072f57600080fd5b50610738611656565b6040516107459190613278565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613100565b6116e8565b604051610782919061334e565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad9190613623565b611731565b005b3480156107c057600080fd5b506107c9611894565b6040516107d6919061334e565b60405180910390f35b6107f960048036038101906107f491906132c6565b61189a565b005b34801561080757600080fd5b50610822600480360381019061081d919061368f565b611a10565b005b34801561083057600080fd5b5061084b60048036038101906108469190613100565b611a26565b604051610858919061334e565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190613770565b611a59565b005b34801561089657600080fd5b506108b160048036038101906108ac9190613465565b611abb565b6040516108be919061334e565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e991906132c6565b611b6a565b6040516108fb9190613278565b60405180910390f35b34801561091057600080fd5b5061092b60048036038101906109269190613100565b611ce5565b604051610938919061334e565b60405180910390f35b34801561094d57600080fd5b50610968600480360381019061096391906137f3565b611d2e565b604051610975919061334e565b60405180910390f35b34801561098a57600080fd5b50610993611d77565b6040516109a0919061334e565b60405180910390f35b3480156109b557600080fd5b506109be611d7d565b6040516109cb919061334e565b60405180910390f35b3480156109e057600080fd5b506109e9611d87565b6040516109f6919061334e565b60405180910390f35b348015610a0b57600080fd5b50610a266004803603810190610a219190613820565b611d8d565b604051610a3391906131cd565b60405180910390f35b348015610a4857600080fd5b50610a636004803603810190610a5e9190613100565b611e21565b005b348015610a7157600080fd5b50610a8c6004803603810190610a8791906132c6565b611ea4565b005b600033905090565b610a9e611eb6565b80601160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bad57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bbd5750610bbc82611f34565b5b9050919050565b606060018054610bd39061388f565b80601f0160208091040260200160405190810160405280929190818152602001828054610bff9061388f565b8015610c4c5780601f10610c2157610100808354040283529160200191610c4c565b820191906000526020600020905b815481529060010190602001808311610c2f57829003601f168201915b5050505050905090565b6000610c6182611f9e565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca7826112d3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613932565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d36610a8e565b73ffffffffffffffffffffffffffffffffffffffff161480610d655750610d6481610d5f610a8e565b611d8d565b5b610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b906139c4565b60405180910390fd5b610dae8383611fe9565b505050565b6000601354905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690613a56565b60405180910390fd5b6000610e4a82611a26565b905060008103610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690613ae8565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ede9190613b37565b925050819055508060086000828254610ef79190613b37565b92505081905550610f0882826120a2565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568282604051610f39929190613bca565b60405180910390a15050565b610f56610f50610a8e565b82612196565b610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90613c65565b60405180910390fd5b610fa083838361222b565b505050565b601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600754905090565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61107783838360405180602001604052806000815250611a59565b505050565b60146020528060005260406000206000915054906101000a900460ff1681565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590613a56565b60405180910390fd5b600061112a8383611abb565b90506000810361116f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116690613ae8565b60405180910390fd5b80600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111fb9190613b37565b9250508190555080600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112519190613b37565b92505081905550611263838383612491565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a83836040516112ab929190613097565b60405180910390a2505050565b6112c0611eb6565b80601290816112cf9190613e27565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137290613f45565b60405180910390fd5b80915050919050565b601160009054906101000a900460ff1681565b601280546113a49061388f565b80601f01602080910402602001604051908101604052809291908181526020018280546113d09061388f565b801561141d5780601f106113f25761010080835404028352916020019161141d565b820191906000526020600020905b81548152906001019060200180831161140057829003601f168201915b505050505081565b61142d611eb6565b601460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613fd7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611593611eb6565b61159d6000612517565b565b6115a7611eb6565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600b82815481106115e9576115e8613ff7565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61164c611eb6565b8060108190555050565b6060600280546116659061388f565b80601f01602080910402602001604051908101604052809291908181526020018280546116919061388f565b80156116de5780601f106116b3576101008083540402835291602001916116de565b820191906000526020600020905b8154815290600101906020018083116116c157829003601f168201915b5050505050905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611739610a8e565b73ffffffffffffffffffffffffffffffffffffffff1661175761161b565b73ffffffffffffffffffffffffffffffffffffffff1614806117c25750601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f890614072565b60405180910390fd5b600e54826013546118129190613b37565b1115611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a906140de565b60405180910390fd5b60005b8281101561188f5761187c82601360008154611871906140fe565b9190508190556125db565b8080611887906140fe565b915050611856565b505050565b60105481565b601160009054906101000a900460ff166118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e090614192565b60405180910390fd5b600f5481111561192e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611925906141fe565b60405180910390fd5b600e548160135461193f9190613b37565b1115611980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611977906140de565b60405180910390fd5b8060105461198e919061421e565b3410156119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c7906142ac565b60405180910390fd5b60005b81811015611a0c576119f9336013600081546119ee906140fe565b9190508190556125db565b8080611a04906140fe565b9150506119d3565b5050565b611a22611a1b610a8e565b83836125f9565b5050565b600080611a31611d7d565b47611a3c9190613b37565b9050611a518382611a4c866116e8565b612765565b915050919050565b611a6a611a64610a8e565b83612196565b611aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa090613c65565b60405180910390fd5b611ab5848484846127d3565b50505050565b600080611ac784611d2e565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611b0091906132f3565b602060405180830381865afa158015611b1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b4191906142e1565b611b4b9190613b37565b9050611b618382611b5c8787610fd5565b612765565b91505092915050565b6060611b758261282f565b611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab9061435a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611c3c576012611c158361289b565b604051602001611c26929190614439565b6040516020818303038152906040529050611ce0565b601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c87b56dd836040518263ffffffff1660e01b8152600401611c97919061334e565b600060405180830381865afa158015611cb4573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611cdd91906144cd565b90505b919050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600f5481565b6000600854905090565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e29611eb6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f90614588565b60405180910390fd5b611ea181612517565b50565b611eac611eb6565b80600f8190555050565b611ebe610a8e565b73ffffffffffffffffffffffffffffffffffffffff16611edc61161b565b73ffffffffffffffffffffffffffffffffffffffff1614611f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f29906145f4565b60405180910390fd5b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611fa78161282f565b611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdd90613f45565b60405180910390fd5b50565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661205c836112d3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc90614660565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161210b906146b1565b60006040518083038185875af1925050503d8060008114612148576040519150601f19603f3d011682016040523d82523d6000602084013e61214d565b606091505b5050905080612191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218890614738565b60405180910390fd5b505050565b6000806121a2836112d3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121e457506121e38185611d8d565b5b8061222257508373ffffffffffffffffffffffffffffffffffffffff1661220a84610c56565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661224b826112d3565b73ffffffffffffffffffffffffffffffffffffffff16146122a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612298906147ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612310576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123079061485c565b60405180910390fd5b61231b8383836129fb565b612326600082611fe9565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612376919061487c565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123cd9190613b37565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461248c838383612a00565b505050565b6125128363a9059cbb60e01b84846040516024016124b0929190613097565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612a05565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125f5828260405180602001604052806000815250612acc565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265e906148fc565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161275891906131cd565b60405180910390a3505050565b600081600754600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054856127b6919061421e565b6127c0919061494b565b6127ca919061487c565b90509392505050565b6127de84848461222b565b6127ea84848484612b27565b612829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612820906149ee565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600082036128e2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129f6565b600082905060005b600082146129145780806128fd906140fe565b915050600a8261290d919061494b565b91506128ea565b60008167ffffffffffffffff8111156129305761292f6134af565b5b6040519080825280601f01601f1916602001820160405280156129625781602001600182028036833780820191505090505b5090505b600085146129ef5760018261297b919061487c565b9150600a8561298a9190614a0e565b60306129969190613b37565b60f81b8183815181106129ac576129ab613ff7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129e8919061494b565b9450612966565b8093505050505b919050565b505050565b505050565b6000612a67826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612cae9092919063ffffffff16565b9050600081511115612ac75780806020019051810190612a879190614a54565b612ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abd90614af3565b60405180910390fd5b5b505050565b612ad68383612cc6565b612ae36000848484612b27565b612b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b19906149ee565b60405180910390fd5b505050565b6000612b488473ffffffffffffffffffffffffffffffffffffffff16612e9f565b15612ca1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b71610a8e565b8786866040518563ffffffff1660e01b8152600401612b939493929190614b68565b6020604051808303816000875af1925050508015612bcf57506040513d601f19601f82011682018060405250810190612bcc9190614bc9565b60015b612c51573d8060008114612bff576040519150601f19603f3d011682016040523d82523d6000602084013e612c04565b606091505b506000815103612c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c40906149ee565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ca6565b600190505b949350505050565b6060612cbd8484600085612ec2565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2c90614c42565b60405180910390fd5b612d3e8161282f565b15612d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7590614cae565b60405180910390fd5b612d8a600083836129fb565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dda9190613b37565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e9b60008383612a00565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b606082471015612f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efe90614d40565b60405180910390fd5b612f1085612e9f565b612f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4690614dac565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612f789190614dfd565b60006040518083038185875af1925050503d8060008114612fb5576040519150601f19603f3d011682016040523d82523d6000602084013e612fba565b606091505b5091509150612fca828286612fd6565b92505050949350505050565b60608315612fe657829050613036565b600083511115612ff95782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302d9190613278565b60405180910390fd5b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006130688261303d565b9050919050565b6130788161305d565b82525050565b6000819050919050565b6130918161307e565b82525050565b60006040820190506130ac600083018561306f565b6130b96020830184613088565b9392505050565b6000604051905090565b600080fd5b600080fd5b6130dd8161305d565b81146130e857600080fd5b50565b6000813590506130fa816130d4565b92915050565b600060208284031215613116576131156130ca565b5b6000613124848285016130eb565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131628161312d565b811461316d57600080fd5b50565b60008135905061317f81613159565b92915050565b60006020828403121561319b5761319a6130ca565b5b60006131a984828501613170565b91505092915050565b60008115159050919050565b6131c7816131b2565b82525050565b60006020820190506131e260008301846131be565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613222578082015181840152602081019050613207565b60008484015250505050565b6000601f19601f8301169050919050565b600061324a826131e8565b61325481856131f3565b9350613264818560208601613204565b61326d8161322e565b840191505092915050565b60006020820190508181036000830152613292818461323f565b905092915050565b6132a38161307e565b81146132ae57600080fd5b50565b6000813590506132c08161329a565b92915050565b6000602082840312156132dc576132db6130ca565b5b60006132ea848285016132b1565b91505092915050565b6000602082019050613308600083018461306f565b92915050565b60008060408385031215613325576133246130ca565b5b6000613333858286016130eb565b9250506020613344858286016132b1565b9150509250929050565b60006020820190506133636000830184613088565b92915050565b60006133748261303d565b9050919050565b61338481613369565b811461338f57600080fd5b50565b6000813590506133a18161337b565b92915050565b6000602082840312156133bd576133bc6130ca565b5b60006133cb84828501613392565b91505092915050565b6000806000606084860312156133ed576133ec6130ca565b5b60006133fb868287016130eb565b935050602061340c868287016130eb565b925050604061341d868287016132b1565b9150509250925092565b60006134328261305d565b9050919050565b61344281613427565b811461344d57600080fd5b50565b60008135905061345f81613439565b92915050565b6000806040838503121561347c5761347b6130ca565b5b600061348a85828601613450565b925050602061349b858286016130eb565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134e78261322e565b810181811067ffffffffffffffff82111715613506576135056134af565b5b80604052505050565b60006135196130c0565b905061352582826134de565b919050565b600067ffffffffffffffff821115613545576135446134af565b5b61354e8261322e565b9050602081019050919050565b82818337600083830152505050565b600061357d6135788461352a565b61350f565b905082815260208101848484011115613599576135986134aa565b5b6135a484828561355b565b509392505050565b600082601f8301126135c1576135c06134a5565b5b81356135d184826020860161356a565b91505092915050565b6000602082840312156135f0576135ef6130ca565b5b600082013567ffffffffffffffff81111561360e5761360d6130cf565b5b61361a848285016135ac565b91505092915050565b6000806040838503121561363a576136396130ca565b5b6000613648858286016132b1565b9250506020613659858286016130eb565b9150509250929050565b61366c816131b2565b811461367757600080fd5b50565b60008135905061368981613663565b92915050565b600080604083850312156136a6576136a56130ca565b5b60006136b4858286016130eb565b92505060206136c58582860161367a565b9150509250929050565b600067ffffffffffffffff8211156136ea576136e96134af565b5b6136f38261322e565b9050602081019050919050565b600061371361370e846136cf565b61350f565b90508281526020810184848401111561372f5761372e6134aa565b5b61373a84828561355b565b509392505050565b600082601f830112613757576137566134a5565b5b8135613767848260208601613700565b91505092915050565b6000806000806080858703121561378a576137896130ca565b5b6000613798878288016130eb565b94505060206137a9878288016130eb565b93505060406137ba878288016132b1565b925050606085013567ffffffffffffffff8111156137db576137da6130cf565b5b6137e787828801613742565b91505092959194509250565b600060208284031215613809576138086130ca565b5b600061381784828501613450565b91505092915050565b60008060408385031215613837576138366130ca565b5b6000613845858286016130eb565b9250506020613856858286016130eb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138a757607f821691505b6020821081036138ba576138b9613860565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061391c6021836131f3565b9150613927826138c0565b604082019050919050565b6000602082019050818103600083015261394b8161390f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006139ae603e836131f3565b91506139b982613952565b604082019050919050565b600060208201905081810360008301526139dd816139a1565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b6000613a406026836131f3565b9150613a4b826139e4565b604082019050919050565b60006020820190508181036000830152613a6f81613a33565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b6000613ad2602b836131f3565b9150613add82613a76565b604082019050919050565b60006020820190508181036000830152613b0181613ac5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b428261307e565b9150613b4d8361307e565b9250828201905080821115613b6557613b64613b08565b5b92915050565b6000819050919050565b6000613b90613b8b613b868461303d565b613b6b565b61303d565b9050919050565b6000613ba282613b75565b9050919050565b6000613bb482613b97565b9050919050565b613bc481613ba9565b82525050565b6000604082019050613bdf6000830185613bbb565b613bec6020830184613088565b9392505050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613c4f602e836131f3565b9150613c5a82613bf3565b604082019050919050565b60006020820190508181036000830152613c7e81613c42565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613ce77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613caa565b613cf18683613caa565b95508019841693508086168417925050509392505050565b6000613d24613d1f613d1a8461307e565b613b6b565b61307e565b9050919050565b6000819050919050565b613d3e83613d09565b613d52613d4a82613d2b565b848454613cb7565b825550505050565b600090565b613d67613d5a565b613d72818484613d35565b505050565b5b81811015613d9657613d8b600082613d5f565b600181019050613d78565b5050565b601f821115613ddb57613dac81613c85565b613db584613c9a565b81016020851015613dc4578190505b613dd8613dd085613c9a565b830182613d77565b50505b505050565b600082821c905092915050565b6000613dfe60001984600802613de0565b1980831691505092915050565b6000613e178383613ded565b9150826002028217905092915050565b613e30826131e8565b67ffffffffffffffff811115613e4957613e486134af565b5b613e53825461388f565b613e5e828285613d9a565b600060209050601f831160018114613e915760008415613e7f578287015190505b613e898582613e0b565b865550613ef1565b601f198416613e9f86613c85565b60005b82811015613ec757848901518255600182019150602085019450602081019050613ea2565b86831015613ee45784890151613ee0601f891682613ded565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613f2f6018836131f3565b9150613f3a82613ef9565b602082019050919050565b60006020820190508181036000830152613f5e81613f22565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613fc16029836131f3565b9150613fcc82613f65565b604082019050919050565b60006020820190508181036000830152613ff081613fb4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e6f742061646d696e0000000000000000000000000000000000000000000000600082015250565b600061405c6009836131f3565b915061406782614026565b602082019050919050565b6000602082019050818103600083015261408b8161404f565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006140c86012836131f3565b91506140d382614092565b602082019050919050565b600060208201905081810360008301526140f7816140bb565b9050919050565b60006141098261307e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361413b5761413a613b08565b5b600182019050919050565b7f53616c6520696e61637469766500000000000000000000000000000000000000600082015250565b600061417c600d836131f3565b915061418782614146565b602082019050919050565b600060208201905081810360008301526141ab8161416f565b9050919050565b7f546f6f206d616e79206d696e7473207065722074786e00000000000000000000600082015250565b60006141e86016836131f3565b91506141f3826141b2565b602082019050919050565b60006020820190508181036000830152614217816141db565b9050919050565b60006142298261307e565b91506142348361307e565b92508282026142428161307e565b9150828204841483151761425957614258613b08565b5b5092915050565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b60006142966010836131f3565b91506142a182614260565b602082019050919050565b600060208201905081810360008301526142c581614289565b9050919050565b6000815190506142db8161329a565b92915050565b6000602082840312156142f7576142f66130ca565b5b6000614305848285016142cc565b91505092915050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000614344601f836131f3565b915061434f8261430e565b602082019050919050565b6000602082019050818103600083015261437381614337565b9050919050565b600081905092915050565b600081546143928161388f565b61439c818661437a565b945060018216600081146143b757600181146143cc576143ff565b60ff19831686528115158202860193506143ff565b6143d585613c85565b60005b838110156143f7578154818901526001820191506020810190506143d8565b838801955050505b50505092915050565b6000614413826131e8565b61441d818561437a565b935061442d818560208601613204565b80840191505092915050565b60006144458285614385565b91506144518284614408565b91508190509392505050565b600061447061446b8461352a565b61350f565b90508281526020810184848401111561448c5761448b6134aa565b5b614497848285613204565b509392505050565b600082601f8301126144b4576144b36134a5565b5b81516144c484826020860161445d565b91505092915050565b6000602082840312156144e3576144e26130ca565b5b600082015167ffffffffffffffff811115614501576145006130cf565b5b61450d8482850161449f565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006145726026836131f3565b915061457d82614516565b604082019050919050565b600060208201905081810360008301526145a181614565565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006145de6020836131f3565b91506145e9826145a8565b602082019050919050565b6000602082019050818103600083015261460d816145d1565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b600061464a601d836131f3565b915061465582614614565b602082019050919050565b600060208201905081810360008301526146798161463d565b9050919050565b600081905092915050565b50565b600061469b600083614680565b91506146a68261468b565b600082019050919050565b60006146bc8261468e565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614722603a836131f3565b915061472d826146c6565b604082019050919050565b6000602082019050818103600083015261475181614715565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006147b46025836131f3565b91506147bf82614758565b604082019050919050565b600060208201905081810360008301526147e3816147a7565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006148466024836131f3565b9150614851826147ea565b604082019050919050565b6000602082019050818103600083015261487581614839565b9050919050565b60006148878261307e565b91506148928361307e565b92508282039050818111156148aa576148a9613b08565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006148e66019836131f3565b91506148f1826148b0565b602082019050919050565b60006020820190508181036000830152614915816148d9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006149568261307e565b91506149618361307e565b9250826149715761497061491c565b5b828204905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006149d86032836131f3565b91506149e38261497c565b604082019050919050565b60006020820190508181036000830152614a07816149cb565b9050919050565b6000614a198261307e565b9150614a248361307e565b925082614a3457614a3361491c565b5b828206905092915050565b600081519050614a4e81613663565b92915050565b600060208284031215614a6a57614a696130ca565b5b6000614a7884828501614a3f565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000614add602a836131f3565b9150614ae882614a81565b604082019050919050565b60006020820190508181036000830152614b0c81614ad0565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614b3a82614b13565b614b448185614b1e565b9350614b54818560208601613204565b614b5d8161322e565b840191505092915050565b6000608082019050614b7d600083018761306f565b614b8a602083018661306f565b614b976040830185613088565b8181036060830152614ba98184614b2f565b905095945050505050565b600081519050614bc381613159565b92915050565b600060208284031215614bdf57614bde6130ca565b5b6000614bed84828501614bb4565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614c2c6020836131f3565b9150614c3782614bf6565b602082019050919050565b60006020820190508181036000830152614c5b81614c1f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614c98601c836131f3565b9150614ca382614c62565b602082019050919050565b60006020820190508181036000830152614cc781614c8b565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614d2a6026836131f3565b9150614d3582614cce565b604082019050919050565b60006020820190508181036000830152614d5981614d1d565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614d96601d836131f3565b9150614da182614d60565b602082019050919050565b60006020820190508181036000830152614dc581614d89565b9050919050565b6000614dd782614b13565b614de18185614680565b9350614df1818560208601613204565b80840191505092915050565b6000614e098284614dcc565b91508190509291505056fea2646970667358221220991e4fd77fc5e2f1273a9110351cdcf4a03ef4af8c4be1a68ac8788664adf8a564736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000010000000000000000000000002f53b8e97ce71ce3edec3f2654f69e7fe5ef12d400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001

-----Decoded View---------------
Arg [0] : payees (address[]): 0x2F53b8e97Ce71cE3eDec3F2654F69E7fe5EF12d4
Arg [1] : shares (uint256[]): 1

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 0000000000000000000000002f53b8e97ce71ce3edec3f2654f69e7fe5ef12d4
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001


Deployed Bytecode Sourcemap

56421:3476:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34185:40;34201:12;:10;:12::i;:::-;34215:9;34185:40;;;;;;;:::i;:::-;;;;;;;;56421:3476;;;;;58607:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40446:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41373:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42886:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42403:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58423:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36706:453;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43586:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56759:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34316:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35445:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43993:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56949:38;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37427:514;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58800:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41084:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56666:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56834:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59463:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40815:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55511:103;;;;;;;;;;;;;:::i;:::-;;59304:84;;;;;;;;;;;;;:::i;:::-;;35671:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54863:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59149:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41542:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35167:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59625:267;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56625:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57410:434;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43129:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35861:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44249:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36246:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57949:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34963:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34753:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56586:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34501:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56547:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43355:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55769:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58983:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30606:98;30659:7;30686:10;30679:17;;30606:98;:::o;58607:106::-;54749:13;:11;:13::i;:::-;58694:11:::1;58681:10;;:24;;;;;;;;;;;;;;;;;;58607:106:::0;:::o;40446:305::-;40548:4;40600:25;40585:40;;;:11;:40;;;;:105;;;;40657:33;40642:48;;;:11;:48;;;;40585:105;:158;;;;40707:36;40731:11;40707:23;:36::i;:::-;40585:158;40565:178;;40446:305;;;:::o;41373:100::-;41427:13;41460:5;41453:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41373:100;:::o;42886:171::-;42962:7;42982:23;42997:7;42982:14;:23::i;:::-;43025:15;:24;43041:7;43025:24;;;;;;;;;;;;;;;;;;;;;43018:31;;42886:171;;;:::o;42403:417::-;42484:13;42500:23;42515:7;42500:14;:23::i;:::-;42484:39;;42548:5;42542:11;;:2;:11;;;42534:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;42642:5;42626:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;42651:37;42668:5;42675:12;:10;:12::i;:::-;42651:16;:37::i;:::-;42626:62;42604:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;42791:21;42800:2;42804:7;42791:8;:21::i;:::-;42473:347;42403:417;;:::o;58423:91::-;58469:7;58496:10;;58489:17;;58423:91;:::o;36706:453::-;36801:1;36782:7;:16;36790:7;36782:16;;;;;;;;;;;;;;;;:20;36774:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36858:15;36876:19;36887:7;36876:10;:19::i;:::-;36858:37;;36927:1;36916:7;:12;36908:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37011:7;36989:9;:18;36999:7;36989:18;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;37047:7;37029:14;;:25;;;;;;;:::i;:::-;;;;;;;;37067:35;37085:7;37094;37067:17;:35::i;:::-;37118:33;37134:7;37143;37118:33;;;;;;;:::i;:::-;;;;;;;;36763:396;36706:453;:::o;43586:336::-;43781:41;43800:12;:10;:12::i;:::-;43814:7;43781:18;:41::i;:::-;43773:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;43886:28;43896:4;43902:2;43906:7;43886:9;:28::i;:::-;43586:336;;;:::o;56759:25::-;;;;;;;;;;;;;:::o;34316:91::-;34360:7;34387:12;;34380:19;;34316:91;:::o;35445:135::-;35515:7;35542:14;:21;35557:5;35542:21;;;;;;;;;;;;;;;:30;35564:7;35542:30;;;;;;;;;;;;;;;;35535:37;;35445:135;;;;:::o;43993:185::-;44131:39;44148:4;44154:2;44158:7;44131:39;;;;;;;;;;;;:16;:39::i;:::-;43993:185;;;:::o;56949:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;37427:514::-;37528:1;37509:7;:16;37517:7;37509:16;;;;;;;;;;;;;;;;:20;37501:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;37585:15;37603:26;37614:5;37621:7;37603:10;:26::i;:::-;37585:44;;37661:1;37650:7;:12;37642:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37757:7;37723:14;:21;37738:5;37723:21;;;;;;;;;;;;;;;:30;37745:7;37723:30;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;37805:7;37775:19;:26;37795:5;37775:26;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;37825:47;37848:5;37855:7;37864;37825:22;:47::i;:::-;37909:5;37888:45;;;37916:7;37925;37888:45;;;;;;;:::i;:::-;;;;;;;;37490:451;37427:514;;:::o;58800:100::-;54749:13;:11;:13::i;:::-;58884:8:::1;58874:7;:18;;;;;;:::i;:::-;;58800:100:::0;:::o;41084:222::-;41156:7;41176:13;41192:7;:16;41200:7;41192:16;;;;;;;;;;;;;;;;;;;;;41176:32;;41244:1;41227:19;;:5;:19;;;41219:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;41293:5;41286:12;;;41084:222;;;:::o;56666:22::-;;;;;;;;;;;;;:::o;56834:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59463:110::-;54749:13;:11;:13::i;:::-;59549:6:::1;:16;59556:8;59549:16;;;;;;;;;;;;;;;;;;;;;;;;;59548:17;59529:6;:16;59536:8;59529:16;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;59463:110:::0;:::o;40815:207::-;40887:7;40932:1;40915:19;;:5;:19;;;40907:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40998:9;:16;41008:5;40998:16;;;;;;;;;;;;;;;;40991:23;;40815:207;;;:::o;55511:103::-;54749:13;:11;:13::i;:::-;55576:30:::1;55603:1;55576:18;:30::i;:::-;55511:103::o:0;59304:84::-;54749:13;:11;:13::i;:::-;59370:10:::1;;;;;;;;;;;59369:11;59356:10;;:24;;;;;;;;;;;;;;;;;;59304:84::o:0;35671:100::-;35722:7;35749;35757:5;35749:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35742:21;;35671:100;;;:::o;54863:87::-;54909:7;54936:6;;;;;;;;;;;54929:13;;54863:87;:::o;59149:96::-;54749:13;:11;:13::i;:::-;59226:11:::1;59218:5;:19;;;;59149:96:::0;:::o;41542:104::-;41598:13;41631:7;41624:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41542:104;:::o;35167:109::-;35223:7;35250:9;:18;35260:7;35250:18;;;;;;;;;;;;;;;;35243:25;;35167:109;;;:::o;59625:267::-;57132:12;:10;:12::i;:::-;57121:23;;:7;:5;:7::i;:::-;:23;;;:45;;;;57148:6;:18;57155:10;57148:18;;;;;;;;;;;;;;;;;;;;;;;;;57121:45;57113:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;59746:9:::1;;59734:8;59721:10;;:21;;;;:::i;:::-;:34;;59713:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;59797:9;59792:93;59816:8;59812:1;:12;59792:93;;;59846:27;59856:2;59862:10;;59860:12;;;;;:::i;:::-;;;;;;;59846:9;:27::i;:::-;59826:3;;;;;:::i;:::-;;;;59792:93;;;;59625:267:::0;;:::o;56625:33::-;;;;:::o;57410:434::-;57478:10;;;;;;;;;;;57470:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;57537:13;;57525:8;:25;;57517:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;57621:9;;57609:8;57596:10;;:21;;;;:::i;:::-;:34;;57588:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;57694:8;57686:5;;:16;;;;:::i;:::-;57673:9;:29;;57665:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;57741:9;57736:101;57760:8;57756:1;:12;57736:101;;;57790:35;57800:10;57814;;57812:12;;;;;:::i;:::-;;;;;;;57790:9;:35::i;:::-;57770:3;;;;;:::i;:::-;;;;57736:101;;;;57410:434;:::o;43129:155::-;43224:52;43243:12;:10;:12::i;:::-;43257:8;43267;43224:18;:52::i;:::-;43129:155;;:::o;35861:225::-;35919:7;35939:21;35987:15;:13;:15::i;:::-;35963:21;:39;;;;:::i;:::-;35939:63;;36020:58;36036:7;36045:13;36060:17;36069:7;36060:8;:17::i;:::-;36020:15;:58::i;:::-;36013:65;;;35861:225;;;:::o;44249:323::-;44423:41;44442:12;:10;:12::i;:::-;44456:7;44423:18;:41::i;:::-;44415:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;44526:38;44540:4;44546:2;44550:7;44559:4;44526:13;:38::i;:::-;44249:323;;;;:::o;36246:260::-;36318:7;36338:21;36395:20;36409:5;36395:13;:20::i;:::-;36362:5;:15;;;36386:4;36362:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;36338:77;;36433:65;36449:7;36458:13;36473:24;36482:5;36489:7;36473:8;:24::i;:::-;36433:15;:65::i;:::-;36426:72;;;36246:260;;;;:::o;57949:379::-;58014:13;58048:16;58056:7;58048;:16::i;:::-;58040:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;58139:1;58117:24;;:10;;;;;;;;;;;:24;;;58113:198;;58189:7;58198:18;:7;:16;:18::i;:::-;58172:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58158:60;;;;58113:198;58270:10;;;;;;;;;;;58258:32;;;58291:7;58258:41;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58251:48;;57949:379;;;;:::o;34963:105::-;35017:7;35044;:16;35052:7;35044:16;;;;;;;;;;;;;;;;35037:23;;34963:105;;;:::o;34753:119::-;34811:7;34838:19;:26;34858:5;34838:26;;;;;;;;;;;;;;;;34831:33;;34753:119;;;:::o;56586:32::-;;;;:::o;34501:95::-;34547:7;34574:14;;34567:21;;34501:95;:::o;56547:31::-;;;;:::o;43355:164::-;43452:4;43476:18;:25;43495:5;43476:25;;;;;;;;;;;;;;;:35;43502:8;43476:35;;;;;;;;;;;;;;;;;;;;;;;;;43469:42;;43355:164;;;;:::o;55769:201::-;54749:13;:11;:13::i;:::-;55878:1:::1;55858:22;;:8;:22;;::::0;55850:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;55934:28;55953:8;55934:18;:28::i;:::-;55769:201:::0;:::o;58983:103::-;54749:13;:11;:13::i;:::-;59072:6:::1;59056:13;:22;;;;58983:103:::0;:::o;55028:132::-;55103:12;:10;:12::i;:::-;55092:23;;:7;:5;:7::i;:::-;:23;;;55084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55028:132::o;24076:157::-;24161:4;24200:25;24185:40;;;:11;:40;;;;24178:47;;24076:157;;;:::o;50861:135::-;50943:16;50951:7;50943;:16::i;:::-;50935:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;50861:135;:::o;50140:174::-;50242:2;50215:15;:24;50231:7;50215:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50298:7;50294:2;50260:46;;50269:23;50284:7;50269:14;:23::i;:::-;50260:46;;;;;;;;;;;;50140:174;;:::o;10677:317::-;10792:6;10767:21;:31;;10759:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10846:12;10864:9;:14;;10886:6;10864:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10845:52;;;10916:7;10908:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;10748:246;10677:317;;:::o;46373:264::-;46466:4;46483:13;46499:23;46514:7;46499:14;:23::i;:::-;46483:39;;46552:5;46541:16;;:7;:16;;;:52;;;;46561:32;46578:5;46585:7;46561:16;:32::i;:::-;46541:52;:87;;;;46621:7;46597:31;;:20;46609:7;46597:11;:20::i;:::-;:31;;;46541:87;46533:96;;;46373:264;;;;:::o;49396:625::-;49555:4;49528:31;;:23;49543:7;49528:14;:23::i;:::-;:31;;;49520:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;49634:1;49620:16;;:2;:16;;;49612:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49690:39;49711:4;49717:2;49721:7;49690:20;:39::i;:::-;49794:29;49811:1;49815:7;49794:8;:29::i;:::-;49855:1;49836:9;:15;49846:4;49836:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;49884:1;49867:9;:13;49877:2;49867:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;49915:2;49896:7;:16;49904:7;49896:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49954:7;49950:2;49935:27;;49944:4;49935:27;;;;;;;;;;;;49975:38;49995:4;50001:2;50005:7;49975:19;:38::i;:::-;49396:625;;;:::o;17450:211::-;17567:86;17587:5;17617:23;;;17642:2;17646:5;17594:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17567:19;:86::i;:::-;17450:211;;;:::o;56130:191::-;56204:16;56223:6;;;;;;;;;;;56204:25;;56249:8;56240:6;;:17;;;;;;;;;;;;;;;;;;56304:8;56273:40;;56294:8;56273:40;;;;;;;;;;;;56193:128;56130:191;:::o;46979:110::-;47055:26;47065:2;47069:7;47055:26;;;;;;;;;;;;:9;:26::i;:::-;46979:110;;:::o;50457:315::-;50612:8;50603:17;;:5;:17;;;50595:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;50699:8;50661:18;:25;50680:5;50661:25;;;;;;;;;;;;;;;:35;50687:8;50661:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;50745:8;50723:41;;50738:5;50723:41;;;50755:8;50723:41;;;;;;:::i;:::-;;;;;;;;50457:315;;;:::o;38119:248::-;38265:7;38344:15;38329:12;;38309:7;:16;38317:7;38309:16;;;;;;;;;;;;;;;;38293:13;:32;;;;:::i;:::-;38292:49;;;;:::i;:::-;:67;;;;:::i;:::-;38285:74;;38119:248;;;;;:::o;45453:313::-;45609:28;45619:4;45625:2;45629:7;45609:9;:28::i;:::-;45656:47;45679:4;45685:2;45689:7;45698:4;45656:22;:47::i;:::-;45648:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;45453:313;;;;:::o;46079:127::-;46144:4;46196:1;46168:30;;:7;:16;46176:7;46168:16;;;;;;;;;;;;;;;;;;;;;:30;;;;46161:37;;46079:127;;;:::o;6116:723::-;6172:13;6402:1;6393:5;:10;6389:53;;6420:10;;;;;;;;;;;;;;;;;;;;;6389:53;6452:12;6467:5;6452:20;;6483:14;6508:78;6523:1;6515:4;:9;6508:78;;6541:8;;;;;:::i;:::-;;;;6572:2;6564:10;;;;;:::i;:::-;;;6508:78;;;6596:19;6628:6;6618:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6596:39;;6646:154;6662:1;6653:5;:10;6646:154;;6690:1;6680:11;;;;;:::i;:::-;;;6757:2;6749:5;:10;;;;:::i;:::-;6736:2;:24;;;;:::i;:::-;6723:39;;6706:6;6713;6706:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6786:2;6777:11;;;;;:::i;:::-;;;6646:154;;;6824:6;6810:21;;;;;6116:723;;;;:::o;52985:126::-;;;;:::o;53496:125::-;;;;:::o;20517:716::-;20941:23;20967:69;20995:4;20967:69;;;;;;;;;;;;;;;;;20975:5;20967:27;;;;:69;;;;;:::i;:::-;20941:95;;21071:1;21051:10;:17;:21;21047:179;;;21148:10;21137:30;;;;;;;;;;;;:::i;:::-;21129:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21047:179;20587:646;20517:716;;:::o;47316:319::-;47445:18;47451:2;47455:7;47445:5;:18::i;:::-;47496:53;47527:1;47531:2;47535:7;47544:4;47496:22;:53::i;:::-;47474:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;47316:319;;;:::o;51560:853::-;51714:4;51735:15;:2;:13;;;:15::i;:::-;51731:675;;;51787:2;51771:36;;;51808:12;:10;:12::i;:::-;51822:4;51828:7;51837:4;51771:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51767:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52029:1;52012:6;:13;:18;52008:328;;52055:60;;;;;;;;;;:::i;:::-;;;;;;;;52008:328;52286:6;52280:13;52271:6;52267:2;52263:15;52256:38;51767:584;51903:41;;;51893:51;;;:6;:51;;;;51886:58;;;;;51731:675;52390:4;52383:11;;51560:853;;;;;;;:::o;12161:229::-;12298:12;12330:52;12352:6;12360:4;12366:1;12369:12;12330:21;:52::i;:::-;12323:59;;12161:229;;;;;:::o;47971:439::-;48065:1;48051:16;;:2;:16;;;48043:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48124:16;48132:7;48124;:16::i;:::-;48123:17;48115:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48186:45;48215:1;48219:2;48223:7;48186:20;:45::i;:::-;48261:1;48244:9;:13;48254:2;48244:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;48292:2;48273:7;:16;48281:7;48273:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;48337:7;48333:2;48312:33;;48329:1;48312:33;;;;;;;;;;;;48358:44;48386:1;48390:2;48394:7;48358:19;:44::i;:::-;47971:439;;:::o;9416:326::-;9476:4;9733:1;9711:7;:19;;;:23;9704:30;;9416:326;;;:::o;13281:510::-;13451:12;13509:5;13484:21;:30;;13476:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;13576:18;13587:6;13576:10;:18::i;:::-;13568:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;13642:12;13656:23;13683:6;:11;;13702:5;13709:4;13683:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13641:73;;;;13732:51;13749:7;13758:10;13770:12;13732:16;:51::i;:::-;13725:58;;;;13281:510;;;;;;:::o;15967:762::-;16117:12;16146:7;16142:580;;;16177:10;16170:17;;;;16142:580;16311:1;16291:10;:17;:21;16287:424;;;16539:10;16533:17;16600:15;16587:10;16583:2;16579:19;16572:44;16287:424;16682:12;16675:20;;;;;;;;;;;:::i;:::-;;;;;;;;15967:762;;;;;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:77::-;402:7;431:5;420:16;;365:77;;;:::o;448:118::-;535:24;553:5;535:24;:::i;:::-;530:3;523:37;448:118;;:::o;572:332::-;693:4;731:2;720:9;716:18;708:26;;744:71;812:1;801:9;797:17;788:6;744:71;:::i;:::-;825:72;893:2;882:9;878:18;869:6;825:72;:::i;:::-;572:332;;;;;:::o;910:75::-;943:6;976:2;970:9;960:19;;910:75;:::o;991:117::-;1100:1;1097;1090:12;1114:117;1223:1;1220;1213:12;1237:122;1310:24;1328:5;1310:24;:::i;:::-;1303:5;1300:35;1290:63;;1349:1;1346;1339:12;1290:63;1237:122;:::o;1365:139::-;1411:5;1449:6;1436:20;1427:29;;1465:33;1492:5;1465:33;:::i;:::-;1365:139;;;;:::o;1510:329::-;1569:6;1618:2;1606:9;1597:7;1593:23;1589:32;1586:119;;;1624:79;;:::i;:::-;1586:119;1744:1;1769:53;1814:7;1805:6;1794:9;1790:22;1769:53;:::i;:::-;1759:63;;1715:117;1510:329;;;;:::o;1845:149::-;1881:7;1921:66;1914:5;1910:78;1899:89;;1845:149;;;:::o;2000:120::-;2072:23;2089:5;2072:23;:::i;:::-;2065:5;2062:34;2052:62;;2110:1;2107;2100:12;2052:62;2000:120;:::o;2126:137::-;2171:5;2209:6;2196:20;2187:29;;2225:32;2251:5;2225:32;:::i;:::-;2126:137;;;;:::o;2269:327::-;2327:6;2376:2;2364:9;2355:7;2351:23;2347:32;2344:119;;;2382:79;;:::i;:::-;2344:119;2502:1;2527:52;2571:7;2562:6;2551:9;2547:22;2527:52;:::i;:::-;2517:62;;2473:116;2269:327;;;;:::o;2602:90::-;2636:7;2679:5;2672:13;2665:21;2654:32;;2602:90;;;:::o;2698:109::-;2779:21;2794:5;2779:21;:::i;:::-;2774:3;2767:34;2698:109;;:::o;2813:210::-;2900:4;2938:2;2927:9;2923:18;2915:26;;2951:65;3013:1;3002:9;2998:17;2989:6;2951:65;:::i;:::-;2813:210;;;;:::o;3029:99::-;3081:6;3115:5;3109:12;3099:22;;3029:99;;;:::o;3134:169::-;3218:11;3252:6;3247:3;3240:19;3292:4;3287:3;3283:14;3268:29;;3134:169;;;;:::o;3309:246::-;3390:1;3400:113;3414:6;3411:1;3408:13;3400:113;;;3499:1;3494:3;3490:11;3484:18;3480:1;3475:3;3471:11;3464:39;3436:2;3433:1;3429:10;3424:15;;3400:113;;;3547:1;3538:6;3533:3;3529:16;3522:27;3371:184;3309:246;;;:::o;3561:102::-;3602:6;3653:2;3649:7;3644:2;3637:5;3633:14;3629:28;3619:38;;3561:102;;;:::o;3669:377::-;3757:3;3785:39;3818:5;3785:39;:::i;:::-;3840:71;3904:6;3899:3;3840:71;:::i;:::-;3833:78;;3920:65;3978:6;3973:3;3966:4;3959:5;3955:16;3920:65;:::i;:::-;4010:29;4032:6;4010:29;:::i;:::-;4005:3;4001:39;3994:46;;3761:285;3669:377;;;;:::o;4052:313::-;4165:4;4203:2;4192:9;4188:18;4180:26;;4252:9;4246:4;4242:20;4238:1;4227:9;4223:17;4216:47;4280:78;4353:4;4344:6;4280:78;:::i;:::-;4272:86;;4052:313;;;;:::o;4371:122::-;4444:24;4462:5;4444:24;:::i;:::-;4437:5;4434:35;4424:63;;4483:1;4480;4473:12;4424:63;4371:122;:::o;4499:139::-;4545:5;4583:6;4570:20;4561:29;;4599:33;4626:5;4599:33;:::i;:::-;4499:139;;;;:::o;4644:329::-;4703:6;4752:2;4740:9;4731:7;4727:23;4723:32;4720:119;;;4758:79;;:::i;:::-;4720:119;4878:1;4903:53;4948:7;4939:6;4928:9;4924:22;4903:53;:::i;:::-;4893:63;;4849:117;4644:329;;;;:::o;4979:222::-;5072:4;5110:2;5099:9;5095:18;5087:26;;5123:71;5191:1;5180:9;5176:17;5167:6;5123:71;:::i;:::-;4979:222;;;;:::o;5207:474::-;5275:6;5283;5332:2;5320:9;5311:7;5307:23;5303:32;5300:119;;;5338:79;;:::i;:::-;5300:119;5458:1;5483:53;5528:7;5519:6;5508:9;5504:22;5483:53;:::i;:::-;5473:63;;5429:117;5585:2;5611:53;5656:7;5647:6;5636:9;5632:22;5611:53;:::i;:::-;5601:63;;5556:118;5207:474;;;;;:::o;5687:222::-;5780:4;5818:2;5807:9;5803:18;5795:26;;5831:71;5899:1;5888:9;5884:17;5875:6;5831:71;:::i;:::-;5687:222;;;;:::o;5915:104::-;5960:7;5989:24;6007:5;5989:24;:::i;:::-;5978:35;;5915:104;;;:::o;6025:138::-;6106:32;6132:5;6106:32;:::i;:::-;6099:5;6096:43;6086:71;;6153:1;6150;6143:12;6086:71;6025:138;:::o;6169:155::-;6223:5;6261:6;6248:20;6239:29;;6277:41;6312:5;6277:41;:::i;:::-;6169:155;;;;:::o;6330:345::-;6397:6;6446:2;6434:9;6425:7;6421:23;6417:32;6414:119;;;6452:79;;:::i;:::-;6414:119;6572:1;6597:61;6650:7;6641:6;6630:9;6626:22;6597:61;:::i;:::-;6587:71;;6543:125;6330:345;;;;:::o;6681:619::-;6758:6;6766;6774;6823:2;6811:9;6802:7;6798:23;6794:32;6791:119;;;6829:79;;:::i;:::-;6791:119;6949:1;6974:53;7019:7;7010:6;6999:9;6995:22;6974:53;:::i;:::-;6964:63;;6920:117;7076:2;7102:53;7147:7;7138:6;7127:9;7123:22;7102:53;:::i;:::-;7092:63;;7047:118;7204:2;7230:53;7275:7;7266:6;7255:9;7251:22;7230:53;:::i;:::-;7220:63;;7175:118;6681:619;;;;;:::o;7306:110::-;7357:7;7386:24;7404:5;7386:24;:::i;:::-;7375:35;;7306:110;;;:::o;7422:150::-;7509:38;7541:5;7509:38;:::i;:::-;7502:5;7499:49;7489:77;;7562:1;7559;7552:12;7489:77;7422:150;:::o;7578:167::-;7638:5;7676:6;7663:20;7654:29;;7692:47;7733:5;7692:47;:::i;:::-;7578:167;;;;:::o;7751:502::-;7833:6;7841;7890:2;7878:9;7869:7;7865:23;7861:32;7858:119;;;7896:79;;:::i;:::-;7858:119;8016:1;8041:67;8100:7;8091:6;8080:9;8076:22;8041:67;:::i;:::-;8031:77;;7987:131;8157:2;8183:53;8228:7;8219:6;8208:9;8204:22;8183:53;:::i;:::-;8173:63;;8128:118;7751:502;;;;;:::o;8259:117::-;8368:1;8365;8358:12;8382:117;8491:1;8488;8481:12;8505:180;8553:77;8550:1;8543:88;8650:4;8647:1;8640:15;8674:4;8671:1;8664:15;8691:281;8774:27;8796:4;8774:27;:::i;:::-;8766:6;8762:40;8904:6;8892:10;8889:22;8868:18;8856:10;8853:34;8850:62;8847:88;;;8915:18;;:::i;:::-;8847:88;8955:10;8951:2;8944:22;8734:238;8691:281;;:::o;8978:129::-;9012:6;9039:20;;:::i;:::-;9029:30;;9068:33;9096:4;9088:6;9068:33;:::i;:::-;8978:129;;;:::o;9113:308::-;9175:4;9265:18;9257:6;9254:30;9251:56;;;9287:18;;:::i;:::-;9251:56;9325:29;9347:6;9325:29;:::i;:::-;9317:37;;9409:4;9403;9399:15;9391:23;;9113:308;;;:::o;9427:146::-;9524:6;9519:3;9514;9501:30;9565:1;9556:6;9551:3;9547:16;9540:27;9427:146;;;:::o;9579:425::-;9657:5;9682:66;9698:49;9740:6;9698:49;:::i;:::-;9682:66;:::i;:::-;9673:75;;9771:6;9764:5;9757:21;9809:4;9802:5;9798:16;9847:3;9838:6;9833:3;9829:16;9826:25;9823:112;;;9854:79;;:::i;:::-;9823:112;9944:54;9991:6;9986:3;9981;9944:54;:::i;:::-;9663:341;9579:425;;;;;:::o;10024:340::-;10080:5;10129:3;10122:4;10114:6;10110:17;10106:27;10096:122;;10137:79;;:::i;:::-;10096:122;10254:6;10241:20;10279:79;10354:3;10346:6;10339:4;10331:6;10327:17;10279:79;:::i;:::-;10270:88;;10086:278;10024:340;;;;:::o;10370:509::-;10439:6;10488:2;10476:9;10467:7;10463:23;10459:32;10456:119;;;10494:79;;:::i;:::-;10456:119;10642:1;10631:9;10627:17;10614:31;10672:18;10664:6;10661:30;10658:117;;;10694:79;;:::i;:::-;10658:117;10799:63;10854:7;10845:6;10834:9;10830:22;10799:63;:::i;:::-;10789:73;;10585:287;10370:509;;;;:::o;10885:474::-;10953:6;10961;11010:2;10998:9;10989:7;10985:23;10981:32;10978:119;;;11016:79;;:::i;:::-;10978:119;11136:1;11161:53;11206:7;11197:6;11186:9;11182:22;11161:53;:::i;:::-;11151:63;;11107:117;11263:2;11289:53;11334:7;11325:6;11314:9;11310:22;11289:53;:::i;:::-;11279:63;;11234:118;10885:474;;;;;:::o;11365:116::-;11435:21;11450:5;11435:21;:::i;:::-;11428:5;11425:32;11415:60;;11471:1;11468;11461:12;11415:60;11365:116;:::o;11487:133::-;11530:5;11568:6;11555:20;11546:29;;11584:30;11608:5;11584:30;:::i;:::-;11487:133;;;;:::o;11626:468::-;11691:6;11699;11748:2;11736:9;11727:7;11723:23;11719:32;11716:119;;;11754:79;;:::i;:::-;11716:119;11874:1;11899:53;11944:7;11935:6;11924:9;11920:22;11899:53;:::i;:::-;11889:63;;11845:117;12001:2;12027:50;12069:7;12060:6;12049:9;12045:22;12027:50;:::i;:::-;12017:60;;11972:115;11626:468;;;;;:::o;12100:307::-;12161:4;12251:18;12243:6;12240:30;12237:56;;;12273:18;;:::i;:::-;12237:56;12311:29;12333:6;12311:29;:::i;:::-;12303:37;;12395:4;12389;12385:15;12377:23;;12100:307;;;:::o;12413:423::-;12490:5;12515:65;12531:48;12572:6;12531:48;:::i;:::-;12515:65;:::i;:::-;12506:74;;12603:6;12596:5;12589:21;12641:4;12634:5;12630:16;12679:3;12670:6;12665:3;12661:16;12658:25;12655:112;;;12686:79;;:::i;:::-;12655:112;12776:54;12823:6;12818:3;12813;12776:54;:::i;:::-;12496:340;12413:423;;;;;:::o;12855:338::-;12910:5;12959:3;12952:4;12944:6;12940:17;12936:27;12926:122;;12967:79;;:::i;:::-;12926:122;13084:6;13071:20;13109:78;13183:3;13175:6;13168:4;13160:6;13156:17;13109:78;:::i;:::-;13100:87;;12916:277;12855:338;;;;:::o;13199:943::-;13294:6;13302;13310;13318;13367:3;13355:9;13346:7;13342:23;13338:33;13335:120;;;13374:79;;:::i;:::-;13335:120;13494:1;13519:53;13564:7;13555:6;13544:9;13540:22;13519:53;:::i;:::-;13509:63;;13465:117;13621:2;13647:53;13692:7;13683:6;13672:9;13668:22;13647:53;:::i;:::-;13637:63;;13592:118;13749:2;13775:53;13820:7;13811:6;13800:9;13796:22;13775:53;:::i;:::-;13765:63;;13720:118;13905:2;13894:9;13890:18;13877:32;13936:18;13928:6;13925:30;13922:117;;;13958:79;;:::i;:::-;13922:117;14063:62;14117:7;14108:6;14097:9;14093:22;14063:62;:::i;:::-;14053:72;;13848:287;13199:943;;;;;;;:::o;14148:357::-;14221:6;14270:2;14258:9;14249:7;14245:23;14241:32;14238:119;;;14276:79;;:::i;:::-;14238:119;14396:1;14421:67;14480:7;14471:6;14460:9;14456:22;14421:67;:::i;:::-;14411:77;;14367:131;14148:357;;;;:::o;14511:474::-;14579:6;14587;14636:2;14624:9;14615:7;14611:23;14607:32;14604:119;;;14642:79;;:::i;:::-;14604:119;14762:1;14787:53;14832:7;14823:6;14812:9;14808:22;14787:53;:::i;:::-;14777:63;;14733:117;14889:2;14915:53;14960:7;14951:6;14940:9;14936:22;14915:53;:::i;:::-;14905:63;;14860:118;14511:474;;;;;:::o;14991:180::-;15039:77;15036:1;15029:88;15136:4;15133:1;15126:15;15160:4;15157:1;15150:15;15177:320;15221:6;15258:1;15252:4;15248:12;15238:22;;15305:1;15299:4;15295:12;15326:18;15316:81;;15382:4;15374:6;15370:17;15360:27;;15316:81;15444:2;15436:6;15433:14;15413:18;15410:38;15407:84;;15463:18;;:::i;:::-;15407:84;15228:269;15177:320;;;:::o;15503:220::-;15643:34;15639:1;15631:6;15627:14;15620:58;15712:3;15707:2;15699:6;15695:15;15688:28;15503:220;:::o;15729:366::-;15871:3;15892:67;15956:2;15951:3;15892:67;:::i;:::-;15885:74;;15968:93;16057:3;15968:93;:::i;:::-;16086:2;16081:3;16077:12;16070:19;;15729:366;;;:::o;16101:419::-;16267:4;16305:2;16294:9;16290:18;16282:26;;16354:9;16348:4;16344:20;16340:1;16329:9;16325:17;16318:47;16382:131;16508:4;16382:131;:::i;:::-;16374:139;;16101:419;;;:::o;16526:249::-;16666:34;16662:1;16654:6;16650:14;16643:58;16735:32;16730:2;16722:6;16718:15;16711:57;16526:249;:::o;16781:366::-;16923:3;16944:67;17008:2;17003:3;16944:67;:::i;:::-;16937:74;;17020:93;17109:3;17020:93;:::i;:::-;17138:2;17133:3;17129:12;17122:19;;16781:366;;;:::o;17153:419::-;17319:4;17357:2;17346:9;17342:18;17334:26;;17406:9;17400:4;17396:20;17392:1;17381:9;17377:17;17370:47;17434:131;17560:4;17434:131;:::i;:::-;17426:139;;17153:419;;;:::o;17578:225::-;17718:34;17714:1;17706:6;17702:14;17695:58;17787:8;17782:2;17774:6;17770:15;17763:33;17578:225;:::o;17809:366::-;17951:3;17972:67;18036:2;18031:3;17972:67;:::i;:::-;17965:74;;18048:93;18137:3;18048:93;:::i;:::-;18166:2;18161:3;18157:12;18150:19;;17809:366;;;:::o;18181:419::-;18347:4;18385:2;18374:9;18370:18;18362:26;;18434:9;18428:4;18424:20;18420:1;18409:9;18405:17;18398:47;18462:131;18588:4;18462:131;:::i;:::-;18454:139;;18181:419;;;:::o;18606:230::-;18746:34;18742:1;18734:6;18730:14;18723:58;18815:13;18810:2;18802:6;18798:15;18791:38;18606:230;:::o;18842:366::-;18984:3;19005:67;19069:2;19064:3;19005:67;:::i;:::-;18998:74;;19081:93;19170:3;19081:93;:::i;:::-;19199:2;19194:3;19190:12;19183:19;;18842:366;;;:::o;19214:419::-;19380:4;19418:2;19407:9;19403:18;19395:26;;19467:9;19461:4;19457:20;19453:1;19442:9;19438:17;19431:47;19495:131;19621:4;19495:131;:::i;:::-;19487:139;;19214:419;;;:::o;19639:180::-;19687:77;19684:1;19677:88;19784:4;19781:1;19774:15;19808:4;19805:1;19798:15;19825:191;19865:3;19884:20;19902:1;19884:20;:::i;:::-;19879:25;;19918:20;19936:1;19918:20;:::i;:::-;19913:25;;19961:1;19958;19954:9;19947:16;;19982:3;19979:1;19976:10;19973:36;;;19989:18;;:::i;:::-;19973:36;19825:191;;;;:::o;20022:60::-;20050:3;20071:5;20064:12;;20022:60;;;:::o;20088:142::-;20138:9;20171:53;20189:34;20198:24;20216:5;20198:24;:::i;:::-;20189:34;:::i;:::-;20171:53;:::i;:::-;20158:66;;20088:142;;;:::o;20236:126::-;20286:9;20319:37;20350:5;20319:37;:::i;:::-;20306:50;;20236:126;;;:::o;20368:134::-;20426:9;20459:37;20490:5;20459:37;:::i;:::-;20446:50;;20368:134;;;:::o;20508:147::-;20603:45;20642:5;20603:45;:::i;:::-;20598:3;20591:58;20508:147;;:::o;20661:348::-;20790:4;20828:2;20817:9;20813:18;20805:26;;20841:79;20917:1;20906:9;20902:17;20893:6;20841:79;:::i;:::-;20930:72;20998:2;20987:9;20983:18;20974:6;20930:72;:::i;:::-;20661:348;;;;;:::o;21015:233::-;21155:34;21151:1;21143:6;21139:14;21132:58;21224:16;21219:2;21211:6;21207:15;21200:41;21015:233;:::o;21254:366::-;21396:3;21417:67;21481:2;21476:3;21417:67;:::i;:::-;21410:74;;21493:93;21582:3;21493:93;:::i;:::-;21611:2;21606:3;21602:12;21595:19;;21254:366;;;:::o;21626:419::-;21792:4;21830:2;21819:9;21815:18;21807:26;;21879:9;21873:4;21869:20;21865:1;21854:9;21850:17;21843:47;21907:131;22033:4;21907:131;:::i;:::-;21899:139;;21626:419;;;:::o;22051:141::-;22100:4;22123:3;22115:11;;22146:3;22143:1;22136:14;22180:4;22177:1;22167:18;22159:26;;22051:141;;;:::o;22198:93::-;22235:6;22282:2;22277;22270:5;22266:14;22262:23;22252:33;;22198:93;;;:::o;22297:107::-;22341:8;22391:5;22385:4;22381:16;22360:37;;22297:107;;;;:::o;22410:393::-;22479:6;22529:1;22517:10;22513:18;22552:97;22582:66;22571:9;22552:97;:::i;:::-;22670:39;22700:8;22689:9;22670:39;:::i;:::-;22658:51;;22742:4;22738:9;22731:5;22727:21;22718:30;;22791:4;22781:8;22777:19;22770:5;22767:30;22757:40;;22486:317;;22410:393;;;;;:::o;22809:142::-;22859:9;22892:53;22910:34;22919:24;22937:5;22919:24;:::i;:::-;22910:34;:::i;:::-;22892:53;:::i;:::-;22879:66;;22809:142;;;:::o;22957:75::-;23000:3;23021:5;23014:12;;22957:75;;;:::o;23038:269::-;23148:39;23179:7;23148:39;:::i;:::-;23209:91;23258:41;23282:16;23258:41;:::i;:::-;23250:6;23243:4;23237:11;23209:91;:::i;:::-;23203:4;23196:105;23114:193;23038:269;;;:::o;23313:73::-;23358:3;23313:73;:::o;23392:189::-;23469:32;;:::i;:::-;23510:65;23568:6;23560;23554:4;23510:65;:::i;:::-;23445:136;23392:189;;:::o;23587:186::-;23647:120;23664:3;23657:5;23654:14;23647:120;;;23718:39;23755:1;23748:5;23718:39;:::i;:::-;23691:1;23684:5;23680:13;23671:22;;23647:120;;;23587:186;;:::o;23779:543::-;23880:2;23875:3;23872:11;23869:446;;;23914:38;23946:5;23914:38;:::i;:::-;23998:29;24016:10;23998:29;:::i;:::-;23988:8;23984:44;24181:2;24169:10;24166:18;24163:49;;;24202:8;24187:23;;24163:49;24225:80;24281:22;24299:3;24281:22;:::i;:::-;24271:8;24267:37;24254:11;24225:80;:::i;:::-;23884:431;;23869:446;23779:543;;;:::o;24328:117::-;24382:8;24432:5;24426:4;24422:16;24401:37;;24328:117;;;;:::o;24451:169::-;24495:6;24528:51;24576:1;24572:6;24564:5;24561:1;24557:13;24528:51;:::i;:::-;24524:56;24609:4;24603;24599:15;24589:25;;24502:118;24451:169;;;;:::o;24625:295::-;24701:4;24847:29;24872:3;24866:4;24847:29;:::i;:::-;24839:37;;24909:3;24906:1;24902:11;24896:4;24893:21;24885:29;;24625:295;;;;:::o;24925:1395::-;25042:37;25075:3;25042:37;:::i;:::-;25144:18;25136:6;25133:30;25130:56;;;25166:18;;:::i;:::-;25130:56;25210:38;25242:4;25236:11;25210:38;:::i;:::-;25295:67;25355:6;25347;25341:4;25295:67;:::i;:::-;25389:1;25413:4;25400:17;;25445:2;25437:6;25434:14;25462:1;25457:618;;;;26119:1;26136:6;26133:77;;;26185:9;26180:3;26176:19;26170:26;26161:35;;26133:77;26236:67;26296:6;26289:5;26236:67;:::i;:::-;26230:4;26223:81;26092:222;25427:887;;25457:618;25509:4;25505:9;25497:6;25493:22;25543:37;25575:4;25543:37;:::i;:::-;25602:1;25616:208;25630:7;25627:1;25624:14;25616:208;;;25709:9;25704:3;25700:19;25694:26;25686:6;25679:42;25760:1;25752:6;25748:14;25738:24;;25807:2;25796:9;25792:18;25779:31;;25653:4;25650:1;25646:12;25641:17;;25616:208;;;25852:6;25843:7;25840:19;25837:179;;;25910:9;25905:3;25901:19;25895:26;25953:48;25995:4;25987:6;25983:17;25972:9;25953:48;:::i;:::-;25945:6;25938:64;25860:156;25837:179;26062:1;26058;26050:6;26046:14;26042:22;26036:4;26029:36;25464:611;;;25427:887;;25017:1303;;;24925:1395;;:::o;26326:174::-;26466:26;26462:1;26454:6;26450:14;26443:50;26326:174;:::o;26506:366::-;26648:3;26669:67;26733:2;26728:3;26669:67;:::i;:::-;26662:74;;26745:93;26834:3;26745:93;:::i;:::-;26863:2;26858:3;26854:12;26847:19;;26506:366;;;:::o;26878:419::-;27044:4;27082:2;27071:9;27067:18;27059:26;;27131:9;27125:4;27121:20;27117:1;27106:9;27102:17;27095:47;27159:131;27285:4;27159:131;:::i;:::-;27151:139;;26878:419;;;:::o;27303:228::-;27443:34;27439:1;27431:6;27427:14;27420:58;27512:11;27507:2;27499:6;27495:15;27488:36;27303:228;:::o;27537:366::-;27679:3;27700:67;27764:2;27759:3;27700:67;:::i;:::-;27693:74;;27776:93;27865:3;27776:93;:::i;:::-;27894:2;27889:3;27885:12;27878:19;;27537:366;;;:::o;27909:419::-;28075:4;28113:2;28102:9;28098:18;28090:26;;28162:9;28156:4;28152:20;28148:1;28137:9;28133:17;28126:47;28190:131;28316:4;28190:131;:::i;:::-;28182:139;;27909:419;;;:::o;28334:180::-;28382:77;28379:1;28372:88;28479:4;28476:1;28469:15;28503:4;28500:1;28493:15;28520:159;28660:11;28656:1;28648:6;28644:14;28637:35;28520:159;:::o;28685:365::-;28827:3;28848:66;28912:1;28907:3;28848:66;:::i;:::-;28841:73;;28923:93;29012:3;28923:93;:::i;:::-;29041:2;29036:3;29032:12;29025:19;;28685:365;;;:::o;29056:419::-;29222:4;29260:2;29249:9;29245:18;29237:26;;29309:9;29303:4;29299:20;29295:1;29284:9;29280:17;29273:47;29337:131;29463:4;29337:131;:::i;:::-;29329:139;;29056:419;;;:::o;29481:168::-;29621:20;29617:1;29609:6;29605:14;29598:44;29481:168;:::o;29655:366::-;29797:3;29818:67;29882:2;29877:3;29818:67;:::i;:::-;29811:74;;29894:93;29983:3;29894:93;:::i;:::-;30012:2;30007:3;30003:12;29996:19;;29655:366;;;:::o;30027:419::-;30193:4;30231:2;30220:9;30216:18;30208:26;;30280:9;30274:4;30270:20;30266:1;30255:9;30251:17;30244:47;30308:131;30434:4;30308:131;:::i;:::-;30300:139;;30027:419;;;:::o;30452:233::-;30491:3;30514:24;30532:5;30514:24;:::i;:::-;30505:33;;30560:66;30553:5;30550:77;30547:103;;30630:18;;:::i;:::-;30547:103;30677:1;30670:5;30666:13;30659:20;;30452:233;;;:::o;30691:163::-;30831:15;30827:1;30819:6;30815:14;30808:39;30691:163;:::o;30860:366::-;31002:3;31023:67;31087:2;31082:3;31023:67;:::i;:::-;31016:74;;31099:93;31188:3;31099:93;:::i;:::-;31217:2;31212:3;31208:12;31201:19;;30860:366;;;:::o;31232:419::-;31398:4;31436:2;31425:9;31421:18;31413:26;;31485:9;31479:4;31475:20;31471:1;31460:9;31456:17;31449:47;31513:131;31639:4;31513:131;:::i;:::-;31505:139;;31232:419;;;:::o;31657:172::-;31797:24;31793:1;31785:6;31781:14;31774:48;31657:172;:::o;31835:366::-;31977:3;31998:67;32062:2;32057:3;31998:67;:::i;:::-;31991:74;;32074:93;32163:3;32074:93;:::i;:::-;32192:2;32187:3;32183:12;32176:19;;31835:366;;;:::o;32207:419::-;32373:4;32411:2;32400:9;32396:18;32388:26;;32460:9;32454:4;32450:20;32446:1;32435:9;32431:17;32424:47;32488:131;32614:4;32488:131;:::i;:::-;32480:139;;32207:419;;;:::o;32632:410::-;32672:7;32695:20;32713:1;32695:20;:::i;:::-;32690:25;;32729:20;32747:1;32729:20;:::i;:::-;32724:25;;32784:1;32781;32777:9;32806:30;32824:11;32806:30;:::i;:::-;32795:41;;32985:1;32976:7;32972:15;32969:1;32966:22;32946:1;32939:9;32919:83;32896:139;;33015:18;;:::i;:::-;32896:139;32680:362;32632:410;;;;:::o;33048:166::-;33188:18;33184:1;33176:6;33172:14;33165:42;33048:166;:::o;33220:366::-;33362:3;33383:67;33447:2;33442:3;33383:67;:::i;:::-;33376:74;;33459:93;33548:3;33459:93;:::i;:::-;33577:2;33572:3;33568:12;33561:19;;33220:366;;;:::o;33592:419::-;33758:4;33796:2;33785:9;33781:18;33773:26;;33845:9;33839:4;33835:20;33831:1;33820:9;33816:17;33809:47;33873:131;33999:4;33873:131;:::i;:::-;33865:139;;33592:419;;;:::o;34017:143::-;34074:5;34105:6;34099:13;34090:22;;34121:33;34148:5;34121:33;:::i;:::-;34017:143;;;;:::o;34166:351::-;34236:6;34285:2;34273:9;34264:7;34260:23;34256:32;34253:119;;;34291:79;;:::i;:::-;34253:119;34411:1;34436:64;34492:7;34483:6;34472:9;34468:22;34436:64;:::i;:::-;34426:74;;34382:128;34166:351;;;;:::o;34523:181::-;34663:33;34659:1;34651:6;34647:14;34640:57;34523:181;:::o;34710:366::-;34852:3;34873:67;34937:2;34932:3;34873:67;:::i;:::-;34866:74;;34949:93;35038:3;34949:93;:::i;:::-;35067:2;35062:3;35058:12;35051:19;;34710:366;;;:::o;35082:419::-;35248:4;35286:2;35275:9;35271:18;35263:26;;35335:9;35329:4;35325:20;35321:1;35310:9;35306:17;35299:47;35363:131;35489:4;35363:131;:::i;:::-;35355:139;;35082:419;;;:::o;35507:148::-;35609:11;35646:3;35631:18;;35507:148;;;;:::o;35685:874::-;35788:3;35825:5;35819:12;35854:36;35880:9;35854:36;:::i;:::-;35906:89;35988:6;35983:3;35906:89;:::i;:::-;35899:96;;36026:1;36015:9;36011:17;36042:1;36037:166;;;;36217:1;36212:341;;;;36004:549;;36037:166;36121:4;36117:9;36106;36102:25;36097:3;36090:38;36183:6;36176:14;36169:22;36161:6;36157:35;36152:3;36148:45;36141:52;;36037:166;;36212:341;36279:38;36311:5;36279:38;:::i;:::-;36339:1;36353:154;36367:6;36364:1;36361:13;36353:154;;;36441:7;36435:14;36431:1;36426:3;36422:11;36415:35;36491:1;36482:7;36478:15;36467:26;;36389:4;36386:1;36382:12;36377:17;;36353:154;;;36536:6;36531:3;36527:16;36520:23;;36219:334;;36004:549;;35792:767;;35685:874;;;;:::o;36565:390::-;36671:3;36699:39;36732:5;36699:39;:::i;:::-;36754:89;36836:6;36831:3;36754:89;:::i;:::-;36747:96;;36852:65;36910:6;36905:3;36898:4;36891:5;36887:16;36852:65;:::i;:::-;36942:6;36937:3;36933:16;36926:23;;36675:280;36565:390;;;;:::o;36961:429::-;37138:3;37160:92;37248:3;37239:6;37160:92;:::i;:::-;37153:99;;37269:95;37360:3;37351:6;37269:95;:::i;:::-;37262:102;;37381:3;37374:10;;36961:429;;;;;:::o;37396:434::-;37485:5;37510:66;37526:49;37568:6;37526:49;:::i;:::-;37510:66;:::i;:::-;37501:75;;37599:6;37592:5;37585:21;37637:4;37630:5;37626:16;37675:3;37666:6;37661:3;37657:16;37654:25;37651:112;;;37682:79;;:::i;:::-;37651:112;37772:52;37817:6;37812:3;37807;37772:52;:::i;:::-;37491:339;37396:434;;;;;:::o;37850:355::-;37917:5;37966:3;37959:4;37951:6;37947:17;37943:27;37933:122;;37974:79;;:::i;:::-;37933:122;38084:6;38078:13;38109:90;38195:3;38187:6;38180:4;38172:6;38168:17;38109:90;:::i;:::-;38100:99;;37923:282;37850:355;;;;:::o;38211:524::-;38291:6;38340:2;38328:9;38319:7;38315:23;38311:32;38308:119;;;38346:79;;:::i;:::-;38308:119;38487:1;38476:9;38472:17;38466:24;38517:18;38509:6;38506:30;38503:117;;;38539:79;;:::i;:::-;38503:117;38644:74;38710:7;38701:6;38690:9;38686:22;38644:74;:::i;:::-;38634:84;;38437:291;38211:524;;;;:::o;38741:225::-;38881:34;38877:1;38869:6;38865:14;38858:58;38950:8;38945:2;38937:6;38933:15;38926:33;38741:225;:::o;38972:366::-;39114:3;39135:67;39199:2;39194:3;39135:67;:::i;:::-;39128:74;;39211:93;39300:3;39211:93;:::i;:::-;39329:2;39324:3;39320:12;39313:19;;38972:366;;;:::o;39344:419::-;39510:4;39548:2;39537:9;39533:18;39525:26;;39597:9;39591:4;39587:20;39583:1;39572:9;39568:17;39561:47;39625:131;39751:4;39625:131;:::i;:::-;39617:139;;39344:419;;;:::o;39769:182::-;39909:34;39905:1;39897:6;39893:14;39886:58;39769:182;:::o;39957:366::-;40099:3;40120:67;40184:2;40179:3;40120:67;:::i;:::-;40113:74;;40196:93;40285:3;40196:93;:::i;:::-;40314:2;40309:3;40305:12;40298:19;;39957:366;;;:::o;40329:419::-;40495:4;40533:2;40522:9;40518:18;40510:26;;40582:9;40576:4;40572:20;40568:1;40557:9;40553:17;40546:47;40610:131;40736:4;40610:131;:::i;:::-;40602:139;;40329:419;;;:::o;40754:179::-;40894:31;40890:1;40882:6;40878:14;40871:55;40754:179;:::o;40939:366::-;41081:3;41102:67;41166:2;41161:3;41102:67;:::i;:::-;41095:74;;41178:93;41267:3;41178:93;:::i;:::-;41296:2;41291:3;41287:12;41280:19;;40939:366;;;:::o;41311:419::-;41477:4;41515:2;41504:9;41500:18;41492:26;;41564:9;41558:4;41554:20;41550:1;41539:9;41535:17;41528:47;41592:131;41718:4;41592:131;:::i;:::-;41584:139;;41311:419;;;:::o;41736:147::-;41837:11;41874:3;41859:18;;41736:147;;;;:::o;41889:114::-;;:::o;42009:398::-;42168:3;42189:83;42270:1;42265:3;42189:83;:::i;:::-;42182:90;;42281:93;42370:3;42281:93;:::i;:::-;42399:1;42394:3;42390:11;42383:18;;42009:398;;;:::o;42413:379::-;42597:3;42619:147;42762:3;42619:147;:::i;:::-;42612:154;;42783:3;42776:10;;42413:379;;;:::o;42798:245::-;42938:34;42934:1;42926:6;42922:14;42915:58;43007:28;43002:2;42994:6;42990:15;42983:53;42798:245;:::o;43049:366::-;43191:3;43212:67;43276:2;43271:3;43212:67;:::i;:::-;43205:74;;43288:93;43377:3;43288:93;:::i;:::-;43406:2;43401:3;43397:12;43390:19;;43049:366;;;:::o;43421:419::-;43587:4;43625:2;43614:9;43610:18;43602:26;;43674:9;43668:4;43664:20;43660:1;43649:9;43645:17;43638:47;43702:131;43828:4;43702:131;:::i;:::-;43694:139;;43421:419;;;:::o;43846:224::-;43986:34;43982:1;43974:6;43970:14;43963:58;44055:7;44050:2;44042:6;44038:15;44031:32;43846:224;:::o;44076:366::-;44218:3;44239:67;44303:2;44298:3;44239:67;:::i;:::-;44232:74;;44315:93;44404:3;44315:93;:::i;:::-;44433:2;44428:3;44424:12;44417:19;;44076:366;;;:::o;44448:419::-;44614:4;44652:2;44641:9;44637:18;44629:26;;44701:9;44695:4;44691:20;44687:1;44676:9;44672:17;44665:47;44729:131;44855:4;44729:131;:::i;:::-;44721:139;;44448:419;;;:::o;44873:223::-;45013:34;45009:1;45001:6;44997:14;44990:58;45082:6;45077:2;45069:6;45065:15;45058:31;44873:223;:::o;45102:366::-;45244:3;45265:67;45329:2;45324:3;45265:67;:::i;:::-;45258:74;;45341:93;45430:3;45341:93;:::i;:::-;45459:2;45454:3;45450:12;45443:19;;45102:366;;;:::o;45474:419::-;45640:4;45678:2;45667:9;45663:18;45655:26;;45727:9;45721:4;45717:20;45713:1;45702:9;45698:17;45691:47;45755:131;45881:4;45755:131;:::i;:::-;45747:139;;45474:419;;;:::o;45899:194::-;45939:4;45959:20;45977:1;45959:20;:::i;:::-;45954:25;;45993:20;46011:1;45993:20;:::i;:::-;45988:25;;46037:1;46034;46030:9;46022:17;;46061:1;46055:4;46052:11;46049:37;;;46066:18;;:::i;:::-;46049:37;45899:194;;;;:::o;46099:175::-;46239:27;46235:1;46227:6;46223:14;46216:51;46099:175;:::o;46280:366::-;46422:3;46443:67;46507:2;46502:3;46443:67;:::i;:::-;46436:74;;46519:93;46608:3;46519:93;:::i;:::-;46637:2;46632:3;46628:12;46621:19;;46280:366;;;:::o;46652:419::-;46818:4;46856:2;46845:9;46841:18;46833:26;;46905:9;46899:4;46895:20;46891:1;46880:9;46876:17;46869:47;46933:131;47059:4;46933:131;:::i;:::-;46925:139;;46652:419;;;:::o;47077:180::-;47125:77;47122:1;47115:88;47222:4;47219:1;47212:15;47246:4;47243:1;47236:15;47263:185;47303:1;47320:20;47338:1;47320:20;:::i;:::-;47315:25;;47354:20;47372:1;47354:20;:::i;:::-;47349:25;;47393:1;47383:35;;47398:18;;:::i;:::-;47383:35;47440:1;47437;47433:9;47428:14;;47263:185;;;;:::o;47454:237::-;47594:34;47590:1;47582:6;47578:14;47571:58;47663:20;47658:2;47650:6;47646:15;47639:45;47454:237;:::o;47697:366::-;47839:3;47860:67;47924:2;47919:3;47860:67;:::i;:::-;47853:74;;47936:93;48025:3;47936:93;:::i;:::-;48054:2;48049:3;48045:12;48038:19;;47697:366;;;:::o;48069:419::-;48235:4;48273:2;48262:9;48258:18;48250:26;;48322:9;48316:4;48312:20;48308:1;48297:9;48293:17;48286:47;48350:131;48476:4;48350:131;:::i;:::-;48342:139;;48069:419;;;:::o;48494:176::-;48526:1;48543:20;48561:1;48543:20;:::i;:::-;48538:25;;48577:20;48595:1;48577:20;:::i;:::-;48572:25;;48616:1;48606:35;;48621:18;;:::i;:::-;48606:35;48662:1;48659;48655:9;48650:14;;48494:176;;;;:::o;48676:137::-;48730:5;48761:6;48755:13;48746:22;;48777:30;48801:5;48777:30;:::i;:::-;48676:137;;;;:::o;48819:345::-;48886:6;48935:2;48923:9;48914:7;48910:23;48906:32;48903:119;;;48941:79;;:::i;:::-;48903:119;49061:1;49086:61;49139:7;49130:6;49119:9;49115:22;49086:61;:::i;:::-;49076:71;;49032:125;48819:345;;;;:::o;49170:229::-;49310:34;49306:1;49298:6;49294:14;49287:58;49379:12;49374:2;49366:6;49362:15;49355:37;49170:229;:::o;49405:366::-;49547:3;49568:67;49632:2;49627:3;49568:67;:::i;:::-;49561:74;;49644:93;49733:3;49644:93;:::i;:::-;49762:2;49757:3;49753:12;49746:19;;49405:366;;;:::o;49777:419::-;49943:4;49981:2;49970:9;49966:18;49958:26;;50030:9;50024:4;50020:20;50016:1;50005:9;50001:17;49994:47;50058:131;50184:4;50058:131;:::i;:::-;50050:139;;49777:419;;;:::o;50202:98::-;50253:6;50287:5;50281:12;50271:22;;50202:98;;;:::o;50306:168::-;50389:11;50423:6;50418:3;50411:19;50463:4;50458:3;50454:14;50439:29;;50306:168;;;;:::o;50480:373::-;50566:3;50594:38;50626:5;50594:38;:::i;:::-;50648:70;50711:6;50706:3;50648:70;:::i;:::-;50641:77;;50727:65;50785:6;50780:3;50773:4;50766:5;50762:16;50727:65;:::i;:::-;50817:29;50839:6;50817:29;:::i;:::-;50812:3;50808:39;50801:46;;50570:283;50480:373;;;;:::o;50859:640::-;51054:4;51092:3;51081:9;51077:19;51069:27;;51106:71;51174:1;51163:9;51159:17;51150:6;51106:71;:::i;:::-;51187:72;51255:2;51244:9;51240:18;51231:6;51187:72;:::i;:::-;51269;51337:2;51326:9;51322:18;51313:6;51269:72;:::i;:::-;51388:9;51382:4;51378:20;51373:2;51362:9;51358:18;51351:48;51416:76;51487:4;51478:6;51416:76;:::i;:::-;51408:84;;50859:640;;;;;;;:::o;51505:141::-;51561:5;51592:6;51586:13;51577:22;;51608:32;51634:5;51608:32;:::i;:::-;51505:141;;;;:::o;51652:349::-;51721:6;51770:2;51758:9;51749:7;51745:23;51741:32;51738:119;;;51776:79;;:::i;:::-;51738:119;51896:1;51921:63;51976:7;51967:6;51956:9;51952:22;51921:63;:::i;:::-;51911:73;;51867:127;51652:349;;;;:::o;52007:182::-;52147:34;52143:1;52135:6;52131:14;52124:58;52007:182;:::o;52195:366::-;52337:3;52358:67;52422:2;52417:3;52358:67;:::i;:::-;52351:74;;52434:93;52523:3;52434:93;:::i;:::-;52552:2;52547:3;52543:12;52536:19;;52195:366;;;:::o;52567:419::-;52733:4;52771:2;52760:9;52756:18;52748:26;;52820:9;52814:4;52810:20;52806:1;52795:9;52791:17;52784:47;52848:131;52974:4;52848:131;:::i;:::-;52840:139;;52567:419;;;:::o;52992:178::-;53132:30;53128:1;53120:6;53116:14;53109:54;52992:178;:::o;53176:366::-;53318:3;53339:67;53403:2;53398:3;53339:67;:::i;:::-;53332:74;;53415:93;53504:3;53415:93;:::i;:::-;53533:2;53528:3;53524:12;53517:19;;53176:366;;;:::o;53548:419::-;53714:4;53752:2;53741:9;53737:18;53729:26;;53801:9;53795:4;53791:20;53787:1;53776:9;53772:17;53765:47;53829:131;53955:4;53829:131;:::i;:::-;53821:139;;53548:419;;;:::o;53973:225::-;54113:34;54109:1;54101:6;54097:14;54090:58;54182:8;54177:2;54169:6;54165:15;54158:33;53973:225;:::o;54204:366::-;54346:3;54367:67;54431:2;54426:3;54367:67;:::i;:::-;54360:74;;54443:93;54532:3;54443:93;:::i;:::-;54561:2;54556:3;54552:12;54545:19;;54204:366;;;:::o;54576:419::-;54742:4;54780:2;54769:9;54765:18;54757:26;;54829:9;54823:4;54819:20;54815:1;54804:9;54800:17;54793:47;54857:131;54983:4;54857:131;:::i;:::-;54849:139;;54576:419;;;:::o;55001:179::-;55141:31;55137:1;55129:6;55125:14;55118:55;55001:179;:::o;55186:366::-;55328:3;55349:67;55413:2;55408:3;55349:67;:::i;:::-;55342:74;;55425:93;55514:3;55425:93;:::i;:::-;55543:2;55538:3;55534:12;55527:19;;55186:366;;;:::o;55558:419::-;55724:4;55762:2;55751:9;55747:18;55739:26;;55811:9;55805:4;55801:20;55797:1;55786:9;55782:17;55775:47;55839:131;55965:4;55839:131;:::i;:::-;55831:139;;55558:419;;;:::o;55983:386::-;56087:3;56115:38;56147:5;56115:38;:::i;:::-;56169:88;56250:6;56245:3;56169:88;:::i;:::-;56162:95;;56266:65;56324:6;56319:3;56312:4;56305:5;56301:16;56266:65;:::i;:::-;56356:6;56351:3;56347:16;56340:23;;56091:278;55983:386;;;;:::o;56375:271::-;56505:3;56527:93;56616:3;56607:6;56527:93;:::i;:::-;56520:100;;56637:3;56630:10;;56375:271;;;;:::o

Swarm Source

ipfs://991e4fd77fc5e2f1273a9110351cdcf4a03ef4af8c4be1a68ac8788664adf8a5
Loading...
Loading
Loading...
Loading
[ 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.