ETH Price: $3,095.49 (+0.39%)
Gas: 12 Gwei

Token

Not Baby Okay Bears (NBOB)
 

Overview

Max Total Supply

2,236 NBOB

Holders

141

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
bazra.eth
Balance
10 NBOB
0xdc690437f32c2fba70448f57cfeb64f9183a3dca
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:
NotBabyOkayBears

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/**
 * @title NotBabyOkayBears contract
 * @dev Extends ERC721A - thanks azuki
 */

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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));
        }
    }

    /**
     * @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 v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: contracts/TwistedToonz.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(quantity != 0, "ERC721A: quantity must be greater than 0");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721A: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract NotBabyOkayBears is ERC721A, Ownable, ReentrancyGuard {

  string public        baseURI;
  uint public          price             = 0.0069 ether;
  uint public          maxPerTx          = 10;
  uint public          totalFree         = 500;
  uint public          maxSupply         = 3000;
  uint public          nextOwnerToExplicitlySet;
  bool public          mintEnabled;

  constructor() ERC721A("Not Baby Okay Bears", "NBOB"){}

  function mint(uint256 amt) external payable
  {
    uint cost = price;
    if(totalSupply() + amt < totalFree + 1) {
      cost = 0;
    }
    require(msg.sender == tx.origin,"Be yourself, honey.");
    require(msg.value == amt * cost,"Please send the exact amount.");
    require(totalSupply() + amt < maxSupply + 1,"No more bears");
    require(mintEnabled, "Minting is not live yet, hold on bear.");
    require( amt < maxPerTx + 1, "Max per TX reached.");

    _safeMint(msg.sender, amt);
  }

  function ownerBatchMint(uint256 amt) external onlyOwner
  {
    require(totalSupply() + amt < maxSupply + 1,"too many!");

    _safeMint(msg.sender, amt);
  }

  function toggleMinting() external onlyOwner {
      mintEnabled = !mintEnabled;
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function setBaseURI(string calldata baseURI_) external onlyOwner {
    baseURI = baseURI_;
  }

  function setPrice(uint256 price_) external onlyOwner {
      price = price_;
  }

  function setTotalFree(uint256 totalFree_) external onlyOwner {
      totalFree = totalFree_;
  }

  function setMaxPerTx(uint256 maxPerTx_) external onlyOwner {
      maxPerTx = maxPerTx_;
  }

  function setmaxSupply(uint256 maxSupply_) external onlyOwner {
      maxSupply = maxSupply_;
  }

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

  function withdraw() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

  function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }


  /**
    * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
    */
  function _setOwnersExplicit(uint256 quantity) internal {
      require(quantity != 0, "quantity must be nonzero");
      require(currentIndex != 0, "no tokens minted yet");
      uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet;
      require(_nextOwnerToExplicitlySet < currentIndex, "all ownerships have been set");

      // Index underflow is impossible.
      // Counter or index overflow is incredibly unrealistic.
      unchecked {
          uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1;

          // Set the end index to be the last token index
          if (endIndex + 1 > currentIndex) {
              endIndex = currentIndex - 1;
          }

          for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) {
              if (_ownerships[i].addr == address(0)) {
                  TokenOwnership memory ownership = ownershipOf(i);
                  _ownerships[i].addr = ownership.addr;
                  _ownerships[i].startTimestamp = ownership.startTimestamp;
              }
          }

          nextOwnerToExplicitlySet = endIndex + 1;
      }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526618838370f34000600a55600a600b556101f4600c55610bb8600d553480156200002d57600080fd5b506040518060400160405280601381526020017f4e6f742042616279204f6b6179204265617273000000000000000000000000008152506040518060400160405280600481526020017f4e424f42000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000b2929190620001ca565b508060029080519060200190620000cb929190620001ca565b505050620000ee620000e2620000fc60201b60201c565b6200010460201b60201c565b6001600881905550620002df565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d8906200027a565b90600052602060002090601f016020900481019282620001fc576000855562000248565b82601f106200021757805160ff191683800117855562000248565b8280016001018555821562000248579182015b82811115620002475782518255916020019190600101906200022a565b5b5090506200025791906200025b565b5090565b5b80821115620002765760008160009055506001016200025c565b5090565b600060028204905060018216806200029357607f821691505b60208210811415620002aa57620002a9620002b0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614de880620002ef6000396000f3fe6080604052600436106102255760003560e01c80637d55094d11610123578063b88d4fde116100ab578063d7224ba01161006f578063d7224ba0146107e2578063dc33e6811461080d578063e985e9c51461084a578063f2fde38b14610887578063f968adbe146108b057610225565b8063b88d4fde146106fd578063c6f6f21614610726578063c87b56dd1461074f578063d12397301461078c578063d5abeb01146107b757610225565b80639231ab2a116100f25780639231ab2a1461062557806395d89b4114610662578063a035b1fe1461068d578063a0712d68146106b8578063a22cb465146106d457610225565b80637d55094d146105915780638da5cb5b146105a85780638db89f07146105d357806391b7f5ed146105fc57610225565b8063333e44e6116101b1578063563aaf1111610175578063563aaf11146104ac5780636352211e146104d55780636c0360eb1461051257806370a082311461053d578063715018a61461057a57610225565b8063333e44e6146103db5780633ccfd60b1461040657806342842e0e1461041d5780634f6ccce71461044657806355f804b31461048357610225565b806318160ddd116101f857806318160ddd146102f8578063228025e81461032357806323b872dd1461034c5780632d20fb60146103755780632f745c591461039e57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906135cc565b6108db565b60405161025e9190613cbd565b60405180910390f35b34801561027357600080fd5b5061027c610a25565b6040516102899190613cd8565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613673565b610ab7565b6040516102c69190613c56565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061358c565b610b3c565b005b34801561030457600080fd5b5061030d610c55565b60405161031a91906140f5565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613673565b610c5e565b005b34801561035857600080fd5b50610373600480360381019061036e9190613476565b610ce4565b005b34801561038157600080fd5b5061039c60048036038101906103979190613673565b610cf4565b005b3480156103aa57600080fd5b506103c560048036038101906103c0919061358c565b610dd2565b6040516103d291906140f5565b60405180910390f35b3480156103e757600080fd5b506103f0610fc4565b6040516103fd91906140f5565b60405180910390f35b34801561041257600080fd5b5061041b610fca565b005b34801561042957600080fd5b50610444600480360381019061043f9190613476565b61114b565b005b34801561045257600080fd5b5061046d60048036038101906104689190613673565b61116b565b60405161047a91906140f5565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190613626565b6111be565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613673565b611250565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190613673565b6112d6565b6040516105099190613c56565b60405180910390f35b34801561051e57600080fd5b506105276112ec565b6040516105349190613cd8565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190613409565b61137a565b60405161057191906140f5565b60405180910390f35b34801561058657600080fd5b5061058f611463565b005b34801561059d57600080fd5b506105a66114eb565b005b3480156105b457600080fd5b506105bd611593565b6040516105ca9190613c56565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190613673565b6115bd565b005b34801561060857600080fd5b50610623600480360381019061061e9190613673565b6116a8565b005b34801561063157600080fd5b5061064c60048036038101906106479190613673565b61172e565b60405161065991906140da565b60405180910390f35b34801561066e57600080fd5b50610677611746565b6040516106849190613cd8565b60405180910390f35b34801561069957600080fd5b506106a26117d8565b6040516106af91906140f5565b60405180910390f35b6106d260048036038101906106cd9190613673565b6117de565b005b3480156106e057600080fd5b506106fb60048036038101906106f6919061354c565b6119dc565b005b34801561070957600080fd5b50610724600480360381019061071f91906134c9565b611b5d565b005b34801561073257600080fd5b5061074d60048036038101906107489190613673565b611bb9565b005b34801561075b57600080fd5b5061077660048036038101906107719190613673565b611c3f565b6040516107839190613cd8565b60405180910390f35b34801561079857600080fd5b506107a1611ce7565b6040516107ae9190613cbd565b60405180910390f35b3480156107c357600080fd5b506107cc611cfa565b6040516107d991906140f5565b60405180910390f35b3480156107ee57600080fd5b506107f7611d00565b60405161080491906140f5565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190613409565b611d06565b60405161084191906140f5565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190613436565b611d18565b60405161087e9190613cbd565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a99190613409565b611dac565b005b3480156108bc57600080fd5b506108c5611ea4565b6040516108d291906140f5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1e5750610a1d82611eaa565b5b9050919050565b606060018054610a3490614393565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6090614393565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b6000610ac282611f14565b610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af8906140ba565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b47826112d6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90613f9a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd7611f21565b73ffffffffffffffffffffffffffffffffffffffff161480610c065750610c0581610c00611f21565b611d18565b5b610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c90613e5a565b60405180910390fd5b610c50838383611f29565b505050565b60008054905090565b610c66611f21565b73ffffffffffffffffffffffffffffffffffffffff16610c84611593565b73ffffffffffffffffffffffffffffffffffffffff1614610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd190613eda565b60405180910390fd5b80600d8190555050565b610cef838383611fdb565b505050565b610cfc611f21565b73ffffffffffffffffffffffffffffffffffffffff16610d1a611593565b73ffffffffffffffffffffffffffffffffffffffff1614610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790613eda565b60405180910390fd5b60026008541415610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad9061407a565b60405180910390fd5b6002600881905550610dc78161251b565b600160088190555050565b6000610ddd8361137a565b8210610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1590613cfa565b60405180910390fd5b6000610e28610c55565b905060008060005b83811015610f82576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f2257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f745786841415610f6b578195505050505050610fbe565b83806001019450505b508080600101915050610e30565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb59061405a565b60405180910390fd5b92915050565b600c5481565b610fd2611f21565b73ffffffffffffffffffffffffffffffffffffffff16610ff0611593565b73ffffffffffffffffffffffffffffffffffffffff1614611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90613eda565b60405180910390fd5b6002600854141561108c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110839061407a565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516110ba90613c41565b60006040518083038185875af1925050503d80600081146110f7576040519150601f19603f3d011682016040523d82523d6000602084013e6110fc565b606091505b5050905080611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790613fba565b60405180910390fd5b506001600881905550565b61116683838360405180602001604052806000815250611b5d565b505050565b6000611175610c55565b82106111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90613d9a565b60405180910390fd5b819050919050565b6111c6611f21565b73ffffffffffffffffffffffffffffffffffffffff166111e4611593565b73ffffffffffffffffffffffffffffffffffffffff161461123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190613eda565b60405180910390fd5b81816009919061124b9291906131fd565b505050565b611258611f21565b73ffffffffffffffffffffffffffffffffffffffff16611276611593565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390613eda565b60405180910390fd5b80600c8190555050565b60006112e18261274d565b600001519050919050565b600980546112f990614393565b80601f016020809104026020016040519081016040528092919081815260200182805461132590614393565b80156113725780601f1061134757610100808354040283529160200191611372565b820191906000526020600020905b81548152906001019060200180831161135557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290613e9a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61146b611f21565b73ffffffffffffffffffffffffffffffffffffffff16611489611593565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690613eda565b60405180910390fd5b6114e960006128e7565b565b6114f3611f21565b73ffffffffffffffffffffffffffffffffffffffff16611511611593565b73ffffffffffffffffffffffffffffffffffffffff1614611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e90613eda565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115c5611f21565b73ffffffffffffffffffffffffffffffffffffffff166115e3611593565b73ffffffffffffffffffffffffffffffffffffffff1614611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090613eda565b60405180910390fd5b6001600d5461164891906141b4565b81611651610c55565b61165b91906141b4565b1061169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290613e3a565b60405180910390fd5b6116a533826129ad565b50565b6116b0611f21565b73ffffffffffffffffffffffffffffffffffffffff166116ce611593565b73ffffffffffffffffffffffffffffffffffffffff1614611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b90613eda565b60405180910390fd5b80600a8190555050565b611736613283565b61173f8261274d565b9050919050565b60606002805461175590614393565b80601f016020809104026020016040519081016040528092919081815260200182805461178190614393565b80156117ce5780601f106117a3576101008083540402835291602001916117ce565b820191906000526020600020905b8154815290600101906020018083116117b157829003601f168201915b5050505050905090565b600a5481565b6000600a5490506001600c546117f491906141b4565b826117fd610c55565b61180791906141b4565b101561181257600090505b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790613d3a565b60405180910390fd5b808261188c919061423b565b34146118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c490613f5a565b60405180910390fd5b6001600d546118dc91906141b4565b826118e5610c55565b6118ef91906141b4565b1061192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690613dfa565b60405180910390fd5b600f60009054906101000a900460ff1661197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613f7a565b60405180910390fd5b6001600b5461198d91906141b4565b82106119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c59061403a565b60405180910390fd5b6119d833836129ad565b5050565b6119e4611f21565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4990613f1a565b60405180910390fd5b8060066000611a5f611f21565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b0c611f21565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b519190613cbd565b60405180910390a35050565b611b68848484611fdb565b611b74848484846129cb565b611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90613fda565b60405180910390fd5b50505050565b611bc1611f21565b73ffffffffffffffffffffffffffffffffffffffff16611bdf611593565b73ffffffffffffffffffffffffffffffffffffffff1614611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90613eda565b60405180910390fd5b80600b8190555050565b6060611c4a82611f14565b611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090613efa565b60405180910390fd5b6000611c93612b62565b9050600081511415611cb45760405180602001604052806000815250611cdf565b80611cbe84612bf4565b604051602001611ccf929190613c1d565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b600d5481565b600e5481565b6000611d1182612d55565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611db4611f21565b73ffffffffffffffffffffffffffffffffffffffff16611dd2611593565b73ffffffffffffffffffffffffffffffffffffffff1614611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90613eda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f90613d1a565b60405180910390fd5b611ea1816128e7565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fe68261274d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661200d611f21565b73ffffffffffffffffffffffffffffffffffffffff1614806120695750612032611f21565b73ffffffffffffffffffffffffffffffffffffffff1661205184610ab7565b73ffffffffffffffffffffffffffffffffffffffff16145b806120855750612084826000015161207f611f21565b611d18565b5b9050806120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be90613f3a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090613eba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a090613dba565b60405180910390fd5b6121b68585856001612e3e565b6121c66000848460000151611f29565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124ab5761240a81611f14565b156124aa5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125148585856001612e44565b5050505050565b600081141561255f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255690613e7a565b60405180910390fd5b6000805414156125a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259b90613d7a565b60405180910390fd5b6000600e54905060005481106125ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e690613e1a565b60405180910390fd5b6000600183830103905060005460018201111561260f5760016000540390505b60008290505b81811161273d57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127305760006126928261274d565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b8080600101915050612615565b5060018101600e81905550505050565b612755613283565b61275e82611f14565b61279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490613d5a565b60405180910390fd5b60008290505b600081106128a6576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128975780925050506128e2565b508080600190039150506127a3565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d99061409a565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129c7828260405180602001604052806000815250612e4a565b5050565b60006129ec8473ffffffffffffffffffffffffffffffffffffffff16612e5c565b15612b55578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a15611f21565b8786866040518563ffffffff1660e01b8152600401612a379493929190613c71565b602060405180830381600087803b158015612a5157600080fd5b505af1925050508015612a8257506040513d601f19601f82011682018060405250810190612a7f91906135f9565b60015b612b05573d8060008114612ab2576040519150601f19603f3d011682016040523d82523d6000602084013e612ab7565b606091505b50600081511415612afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af490613fda565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b5a565b600190505b949350505050565b606060098054612b7190614393565b80601f0160208091040260200160405190810160405280929190818152602001828054612b9d90614393565b8015612bea5780601f10612bbf57610100808354040283529160200191612bea565b820191906000526020600020905b815481529060010190602001808311612bcd57829003601f168201915b5050505050905090565b60606000821415612c3c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d50565b600082905060005b60008214612c6e578080612c57906143f6565b915050600a82612c67919061420a565b9150612c44565b60008167ffffffffffffffff811115612c8a57612c8961452c565b5b6040519080825280601f01601f191660200182016040528015612cbc5781602001600182028036833780820191505090505b5090505b60008514612d4957600182612cd59190614295565b9150600a85612ce4919061443f565b6030612cf091906141b4565b60f81b818381518110612d0657612d056144fd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d42919061420a565b9450612cc0565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbd90613dda565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612e578383836001612e7f565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eec90613ffa565b60405180910390fd5b6000841415612f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f309061401a565b60405180910390fd5b612f466000868387612e3e565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156131e057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156131cb5761318b60008884886129cb565b6131ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c190613fda565b60405180910390fd5b5b81806001019250508080600101915050613114565b5080600081905550506131f66000868387612e44565b5050505050565b82805461320990614393565b90600052602060002090601f01602090048101928261322b5760008555613272565b82601f1061324457803560ff1916838001178555613272565b82800160010185558215613272579182015b82811115613271578235825591602001919060010190613256565b5b50905061327f91906132bd565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156132d65760008160009055506001016132be565b5090565b60006132ed6132e884614135565b614110565b9050828152602081018484840111156133095761330861456a565b5b613314848285614351565b509392505050565b60008135905061332b81614d56565b92915050565b60008135905061334081614d6d565b92915050565b60008135905061335581614d84565b92915050565b60008151905061336a81614d84565b92915050565b600082601f83011261338557613384614560565b5b81356133958482602086016132da565b91505092915050565b60008083601f8401126133b4576133b3614560565b5b8235905067ffffffffffffffff8111156133d1576133d061455b565b5b6020830191508360018202830111156133ed576133ec614565565b5b9250929050565b60008135905061340381614d9b565b92915050565b60006020828403121561341f5761341e614574565b5b600061342d8482850161331c565b91505092915050565b6000806040838503121561344d5761344c614574565b5b600061345b8582860161331c565b925050602061346c8582860161331c565b9150509250929050565b60008060006060848603121561348f5761348e614574565b5b600061349d8682870161331c565b93505060206134ae8682870161331c565b92505060406134bf868287016133f4565b9150509250925092565b600080600080608085870312156134e3576134e2614574565b5b60006134f18782880161331c565b94505060206135028782880161331c565b9350506040613513878288016133f4565b925050606085013567ffffffffffffffff8111156135345761353361456f565b5b61354087828801613370565b91505092959194509250565b6000806040838503121561356357613562614574565b5b60006135718582860161331c565b925050602061358285828601613331565b9150509250929050565b600080604083850312156135a3576135a2614574565b5b60006135b18582860161331c565b92505060206135c2858286016133f4565b9150509250929050565b6000602082840312156135e2576135e1614574565b5b60006135f084828501613346565b91505092915050565b60006020828403121561360f5761360e614574565b5b600061361d8482850161335b565b91505092915050565b6000806020838503121561363d5761363c614574565b5b600083013567ffffffffffffffff81111561365b5761365a61456f565b5b6136678582860161339e565b92509250509250929050565b60006020828403121561368957613688614574565b5b6000613697848285016133f4565b91505092915050565b6136a9816142c9565b82525050565b6136b8816142c9565b82525050565b6136c7816142db565b82525050565b60006136d882614166565b6136e2818561417c565b93506136f2818560208601614360565b6136fb81614579565b840191505092915050565b600061371182614171565b61371b8185614198565b935061372b818560208601614360565b61373481614579565b840191505092915050565b600061374a82614171565b61375481856141a9565b9350613764818560208601614360565b80840191505092915050565b600061377d602283614198565b91506137888261458a565b604082019050919050565b60006137a0602683614198565b91506137ab826145d9565b604082019050919050565b60006137c3601383614198565b91506137ce82614628565b602082019050919050565b60006137e6602a83614198565b91506137f182614651565b604082019050919050565b6000613809601483614198565b9150613814826146a0565b602082019050919050565b600061382c602383614198565b9150613837826146c9565b604082019050919050565b600061384f602583614198565b915061385a82614718565b604082019050919050565b6000613872603183614198565b915061387d82614767565b604082019050919050565b6000613895600d83614198565b91506138a0826147b6565b602082019050919050565b60006138b8601c83614198565b91506138c3826147df565b602082019050919050565b60006138db600983614198565b91506138e682614808565b602082019050919050565b60006138fe603983614198565b915061390982614831565b604082019050919050565b6000613921601883614198565b915061392c82614880565b602082019050919050565b6000613944602b83614198565b915061394f826148a9565b604082019050919050565b6000613967602683614198565b9150613972826148f8565b604082019050919050565b600061398a602083614198565b915061399582614947565b602082019050919050565b60006139ad602f83614198565b91506139b882614970565b604082019050919050565b60006139d0601a83614198565b91506139db826149bf565b602082019050919050565b60006139f3603283614198565b91506139fe826149e8565b604082019050919050565b6000613a16601d83614198565b9150613a2182614a37565b602082019050919050565b6000613a39602683614198565b9150613a4482614a60565b604082019050919050565b6000613a5c602283614198565b9150613a6782614aaf565b604082019050919050565b6000613a7f60008361418d565b9150613a8a82614afe565b600082019050919050565b6000613aa2601083614198565b9150613aad82614b01565b602082019050919050565b6000613ac5603383614198565b9150613ad082614b2a565b604082019050919050565b6000613ae8602183614198565b9150613af382614b79565b604082019050919050565b6000613b0b602883614198565b9150613b1682614bc8565b604082019050919050565b6000613b2e601383614198565b9150613b3982614c17565b602082019050919050565b6000613b51602e83614198565b9150613b5c82614c40565b604082019050919050565b6000613b74601f83614198565b9150613b7f82614c8f565b602082019050919050565b6000613b97602f83614198565b9150613ba282614cb8565b604082019050919050565b6000613bba602d83614198565b9150613bc582614d07565b604082019050919050565b604082016000820151613be660008501826136a0565b506020820151613bf96020850182613c0e565b50505050565b613c0881614333565b82525050565b613c178161433d565b82525050565b6000613c29828561373f565b9150613c35828461373f565b91508190509392505050565b6000613c4c82613a72565b9150819050919050565b6000602082019050613c6b60008301846136af565b92915050565b6000608082019050613c8660008301876136af565b613c9360208301866136af565b613ca06040830185613bff565b8181036060830152613cb281846136cd565b905095945050505050565b6000602082019050613cd260008301846136be565b92915050565b60006020820190508181036000830152613cf28184613706565b905092915050565b60006020820190508181036000830152613d1381613770565b9050919050565b60006020820190508181036000830152613d3381613793565b9050919050565b60006020820190508181036000830152613d53816137b6565b9050919050565b60006020820190508181036000830152613d73816137d9565b9050919050565b60006020820190508181036000830152613d93816137fc565b9050919050565b60006020820190508181036000830152613db38161381f565b9050919050565b60006020820190508181036000830152613dd381613842565b9050919050565b60006020820190508181036000830152613df381613865565b9050919050565b60006020820190508181036000830152613e1381613888565b9050919050565b60006020820190508181036000830152613e33816138ab565b9050919050565b60006020820190508181036000830152613e53816138ce565b9050919050565b60006020820190508181036000830152613e73816138f1565b9050919050565b60006020820190508181036000830152613e9381613914565b9050919050565b60006020820190508181036000830152613eb381613937565b9050919050565b60006020820190508181036000830152613ed38161395a565b9050919050565b60006020820190508181036000830152613ef38161397d565b9050919050565b60006020820190508181036000830152613f13816139a0565b9050919050565b60006020820190508181036000830152613f33816139c3565b9050919050565b60006020820190508181036000830152613f53816139e6565b9050919050565b60006020820190508181036000830152613f7381613a09565b9050919050565b60006020820190508181036000830152613f9381613a2c565b9050919050565b60006020820190508181036000830152613fb381613a4f565b9050919050565b60006020820190508181036000830152613fd381613a95565b9050919050565b60006020820190508181036000830152613ff381613ab8565b9050919050565b6000602082019050818103600083015261401381613adb565b9050919050565b6000602082019050818103600083015261403381613afe565b9050919050565b6000602082019050818103600083015261405381613b21565b9050919050565b6000602082019050818103600083015261407381613b44565b9050919050565b6000602082019050818103600083015261409381613b67565b9050919050565b600060208201905081810360008301526140b381613b8a565b9050919050565b600060208201905081810360008301526140d381613bad565b9050919050565b60006040820190506140ef6000830184613bd0565b92915050565b600060208201905061410a6000830184613bff565b92915050565b600061411a61412b565b905061412682826143c5565b919050565b6000604051905090565b600067ffffffffffffffff8211156141505761414f61452c565b5b61415982614579565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141bf82614333565b91506141ca83614333565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141ff576141fe614470565b5b828201905092915050565b600061421582614333565b915061422083614333565b9250826142305761422f61449f565b5b828204905092915050565b600061424682614333565b915061425183614333565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561428a57614289614470565b5b828202905092915050565b60006142a082614333565b91506142ab83614333565b9250828210156142be576142bd614470565b5b828203905092915050565b60006142d482614313565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561437e578082015181840152602081019050614363565b8381111561438d576000848401525b50505050565b600060028204905060018216806143ab57607f821691505b602082108114156143bf576143be6144ce565b5b50919050565b6143ce82614579565b810181811067ffffffffffffffff821117156143ed576143ec61452c565b5b80604052505050565b600061440182614333565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561443457614433614470565b5b600182019050919050565b600061444a82614333565b915061445583614333565b9250826144655761446461449f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f426520796f757273656c662c20686f6e65792e00000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4e6f206d6f726520626561727300000000000000000000000000000000000000600082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f20626561722e0000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614d5f816142c9565b8114614d6a57600080fd5b50565b614d76816142db565b8114614d8157600080fd5b50565b614d8d816142e7565b8114614d9857600080fd5b50565b614da481614333565b8114614daf57600080fd5b5056fea26469706673582212204353c8a711318659d2b926911f2c80d6b8f17b2346deb6486880337d72ceef8664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80637d55094d11610123578063b88d4fde116100ab578063d7224ba01161006f578063d7224ba0146107e2578063dc33e6811461080d578063e985e9c51461084a578063f2fde38b14610887578063f968adbe146108b057610225565b8063b88d4fde146106fd578063c6f6f21614610726578063c87b56dd1461074f578063d12397301461078c578063d5abeb01146107b757610225565b80639231ab2a116100f25780639231ab2a1461062557806395d89b4114610662578063a035b1fe1461068d578063a0712d68146106b8578063a22cb465146106d457610225565b80637d55094d146105915780638da5cb5b146105a85780638db89f07146105d357806391b7f5ed146105fc57610225565b8063333e44e6116101b1578063563aaf1111610175578063563aaf11146104ac5780636352211e146104d55780636c0360eb1461051257806370a082311461053d578063715018a61461057a57610225565b8063333e44e6146103db5780633ccfd60b1461040657806342842e0e1461041d5780634f6ccce71461044657806355f804b31461048357610225565b806318160ddd116101f857806318160ddd146102f8578063228025e81461032357806323b872dd1461034c5780632d20fb60146103755780632f745c591461039e57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906135cc565b6108db565b60405161025e9190613cbd565b60405180910390f35b34801561027357600080fd5b5061027c610a25565b6040516102899190613cd8565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613673565b610ab7565b6040516102c69190613c56565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061358c565b610b3c565b005b34801561030457600080fd5b5061030d610c55565b60405161031a91906140f5565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613673565b610c5e565b005b34801561035857600080fd5b50610373600480360381019061036e9190613476565b610ce4565b005b34801561038157600080fd5b5061039c60048036038101906103979190613673565b610cf4565b005b3480156103aa57600080fd5b506103c560048036038101906103c0919061358c565b610dd2565b6040516103d291906140f5565b60405180910390f35b3480156103e757600080fd5b506103f0610fc4565b6040516103fd91906140f5565b60405180910390f35b34801561041257600080fd5b5061041b610fca565b005b34801561042957600080fd5b50610444600480360381019061043f9190613476565b61114b565b005b34801561045257600080fd5b5061046d60048036038101906104689190613673565b61116b565b60405161047a91906140f5565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190613626565b6111be565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613673565b611250565b005b3480156104e157600080fd5b506104fc60048036038101906104f79190613673565b6112d6565b6040516105099190613c56565b60405180910390f35b34801561051e57600080fd5b506105276112ec565b6040516105349190613cd8565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190613409565b61137a565b60405161057191906140f5565b60405180910390f35b34801561058657600080fd5b5061058f611463565b005b34801561059d57600080fd5b506105a66114eb565b005b3480156105b457600080fd5b506105bd611593565b6040516105ca9190613c56565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190613673565b6115bd565b005b34801561060857600080fd5b50610623600480360381019061061e9190613673565b6116a8565b005b34801561063157600080fd5b5061064c60048036038101906106479190613673565b61172e565b60405161065991906140da565b60405180910390f35b34801561066e57600080fd5b50610677611746565b6040516106849190613cd8565b60405180910390f35b34801561069957600080fd5b506106a26117d8565b6040516106af91906140f5565b60405180910390f35b6106d260048036038101906106cd9190613673565b6117de565b005b3480156106e057600080fd5b506106fb60048036038101906106f6919061354c565b6119dc565b005b34801561070957600080fd5b50610724600480360381019061071f91906134c9565b611b5d565b005b34801561073257600080fd5b5061074d60048036038101906107489190613673565b611bb9565b005b34801561075b57600080fd5b5061077660048036038101906107719190613673565b611c3f565b6040516107839190613cd8565b60405180910390f35b34801561079857600080fd5b506107a1611ce7565b6040516107ae9190613cbd565b60405180910390f35b3480156107c357600080fd5b506107cc611cfa565b6040516107d991906140f5565b60405180910390f35b3480156107ee57600080fd5b506107f7611d00565b60405161080491906140f5565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190613409565b611d06565b60405161084191906140f5565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c9190613436565b611d18565b60405161087e9190613cbd565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a99190613409565b611dac565b005b3480156108bc57600080fd5b506108c5611ea4565b6040516108d291906140f5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1e5750610a1d82611eaa565b5b9050919050565b606060018054610a3490614393565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6090614393565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b6000610ac282611f14565b610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af8906140ba565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b47826112d6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90613f9a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd7611f21565b73ffffffffffffffffffffffffffffffffffffffff161480610c065750610c0581610c00611f21565b611d18565b5b610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c90613e5a565b60405180910390fd5b610c50838383611f29565b505050565b60008054905090565b610c66611f21565b73ffffffffffffffffffffffffffffffffffffffff16610c84611593565b73ffffffffffffffffffffffffffffffffffffffff1614610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd190613eda565b60405180910390fd5b80600d8190555050565b610cef838383611fdb565b505050565b610cfc611f21565b73ffffffffffffffffffffffffffffffffffffffff16610d1a611593565b73ffffffffffffffffffffffffffffffffffffffff1614610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790613eda565b60405180910390fd5b60026008541415610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad9061407a565b60405180910390fd5b6002600881905550610dc78161251b565b600160088190555050565b6000610ddd8361137a565b8210610e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1590613cfa565b60405180910390fd5b6000610e28610c55565b905060008060005b83811015610f82576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f2257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f745786841415610f6b578195505050505050610fbe565b83806001019450505b508080600101915050610e30565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb59061405a565b60405180910390fd5b92915050565b600c5481565b610fd2611f21565b73ffffffffffffffffffffffffffffffffffffffff16610ff0611593565b73ffffffffffffffffffffffffffffffffffffffff1614611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90613eda565b60405180910390fd5b6002600854141561108c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110839061407a565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516110ba90613c41565b60006040518083038185875af1925050503d80600081146110f7576040519150601f19603f3d011682016040523d82523d6000602084013e6110fc565b606091505b5050905080611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790613fba565b60405180910390fd5b506001600881905550565b61116683838360405180602001604052806000815250611b5d565b505050565b6000611175610c55565b82106111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90613d9a565b60405180910390fd5b819050919050565b6111c6611f21565b73ffffffffffffffffffffffffffffffffffffffff166111e4611593565b73ffffffffffffffffffffffffffffffffffffffff161461123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190613eda565b60405180910390fd5b81816009919061124b9291906131fd565b505050565b611258611f21565b73ffffffffffffffffffffffffffffffffffffffff16611276611593565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390613eda565b60405180910390fd5b80600c8190555050565b60006112e18261274d565b600001519050919050565b600980546112f990614393565b80601f016020809104026020016040519081016040528092919081815260200182805461132590614393565b80156113725780601f1061134757610100808354040283529160200191611372565b820191906000526020600020905b81548152906001019060200180831161135557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290613e9a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61146b611f21565b73ffffffffffffffffffffffffffffffffffffffff16611489611593565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690613eda565b60405180910390fd5b6114e960006128e7565b565b6114f3611f21565b73ffffffffffffffffffffffffffffffffffffffff16611511611593565b73ffffffffffffffffffffffffffffffffffffffff1614611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e90613eda565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115c5611f21565b73ffffffffffffffffffffffffffffffffffffffff166115e3611593565b73ffffffffffffffffffffffffffffffffffffffff1614611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090613eda565b60405180910390fd5b6001600d5461164891906141b4565b81611651610c55565b61165b91906141b4565b1061169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290613e3a565b60405180910390fd5b6116a533826129ad565b50565b6116b0611f21565b73ffffffffffffffffffffffffffffffffffffffff166116ce611593565b73ffffffffffffffffffffffffffffffffffffffff1614611724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171b90613eda565b60405180910390fd5b80600a8190555050565b611736613283565b61173f8261274d565b9050919050565b60606002805461175590614393565b80601f016020809104026020016040519081016040528092919081815260200182805461178190614393565b80156117ce5780601f106117a3576101008083540402835291602001916117ce565b820191906000526020600020905b8154815290600101906020018083116117b157829003601f168201915b5050505050905090565b600a5481565b6000600a5490506001600c546117f491906141b4565b826117fd610c55565b61180791906141b4565b101561181257600090505b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790613d3a565b60405180910390fd5b808261188c919061423b565b34146118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c490613f5a565b60405180910390fd5b6001600d546118dc91906141b4565b826118e5610c55565b6118ef91906141b4565b1061192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690613dfa565b60405180910390fd5b600f60009054906101000a900460ff1661197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613f7a565b60405180910390fd5b6001600b5461198d91906141b4565b82106119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c59061403a565b60405180910390fd5b6119d833836129ad565b5050565b6119e4611f21565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4990613f1a565b60405180910390fd5b8060066000611a5f611f21565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b0c611f21565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b519190613cbd565b60405180910390a35050565b611b68848484611fdb565b611b74848484846129cb565b611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90613fda565b60405180910390fd5b50505050565b611bc1611f21565b73ffffffffffffffffffffffffffffffffffffffff16611bdf611593565b73ffffffffffffffffffffffffffffffffffffffff1614611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90613eda565b60405180910390fd5b80600b8190555050565b6060611c4a82611f14565b611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8090613efa565b60405180910390fd5b6000611c93612b62565b9050600081511415611cb45760405180602001604052806000815250611cdf565b80611cbe84612bf4565b604051602001611ccf929190613c1d565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b600d5481565b600e5481565b6000611d1182612d55565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611db4611f21565b73ffffffffffffffffffffffffffffffffffffffff16611dd2611593565b73ffffffffffffffffffffffffffffffffffffffff1614611e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1f90613eda565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f90613d1a565b60405180910390fd5b611ea1816128e7565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fe68261274d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661200d611f21565b73ffffffffffffffffffffffffffffffffffffffff1614806120695750612032611f21565b73ffffffffffffffffffffffffffffffffffffffff1661205184610ab7565b73ffffffffffffffffffffffffffffffffffffffff16145b806120855750612084826000015161207f611f21565b611d18565b5b9050806120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be90613f3a565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090613eba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a090613dba565b60405180910390fd5b6121b68585856001612e3e565b6121c66000848460000151611f29565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124ab5761240a81611f14565b156124aa5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125148585856001612e44565b5050505050565b600081141561255f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255690613e7a565b60405180910390fd5b6000805414156125a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259b90613d7a565b60405180910390fd5b6000600e54905060005481106125ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e690613e1a565b60405180910390fd5b6000600183830103905060005460018201111561260f5760016000540390505b60008290505b81811161273d57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127305760006126928261274d565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b8080600101915050612615565b5060018101600e81905550505050565b612755613283565b61275e82611f14565b61279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490613d5a565b60405180910390fd5b60008290505b600081106128a6576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128975780925050506128e2565b508080600190039150506127a3565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d99061409a565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129c7828260405180602001604052806000815250612e4a565b5050565b60006129ec8473ffffffffffffffffffffffffffffffffffffffff16612e5c565b15612b55578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a15611f21565b8786866040518563ffffffff1660e01b8152600401612a379493929190613c71565b602060405180830381600087803b158015612a5157600080fd5b505af1925050508015612a8257506040513d601f19601f82011682018060405250810190612a7f91906135f9565b60015b612b05573d8060008114612ab2576040519150601f19603f3d011682016040523d82523d6000602084013e612ab7565b606091505b50600081511415612afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af490613fda565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b5a565b600190505b949350505050565b606060098054612b7190614393565b80601f0160208091040260200160405190810160405280929190818152602001828054612b9d90614393565b8015612bea5780601f10612bbf57610100808354040283529160200191612bea565b820191906000526020600020905b815481529060010190602001808311612bcd57829003601f168201915b5050505050905090565b60606000821415612c3c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d50565b600082905060005b60008214612c6e578080612c57906143f6565b915050600a82612c67919061420a565b9150612c44565b60008167ffffffffffffffff811115612c8a57612c8961452c565b5b6040519080825280601f01601f191660200182016040528015612cbc5781602001600182028036833780820191505090505b5090505b60008514612d4957600182612cd59190614295565b9150600a85612ce4919061443f565b6030612cf091906141b4565b60f81b818381518110612d0657612d056144fd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d42919061420a565b9450612cc0565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dbd90613dda565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612e578383836001612e7f565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eec90613ffa565b60405180910390fd5b6000841415612f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f309061401a565b60405180910390fd5b612f466000868387612e3e565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156131e057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156131cb5761318b60008884886129cb565b6131ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c190613fda565b60405180910390fd5b5b81806001019250508080600101915050613114565b5080600081905550506131f66000868387612e44565b5050505050565b82805461320990614393565b90600052602060002090601f01602090048101928261322b5760008555613272565b82601f1061324457803560ff1916838001178555613272565b82800160010185558215613272579182015b82811115613271578235825591602001919060010190613256565b5b50905061327f91906132bd565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156132d65760008160009055506001016132be565b5090565b60006132ed6132e884614135565b614110565b9050828152602081018484840111156133095761330861456a565b5b613314848285614351565b509392505050565b60008135905061332b81614d56565b92915050565b60008135905061334081614d6d565b92915050565b60008135905061335581614d84565b92915050565b60008151905061336a81614d84565b92915050565b600082601f83011261338557613384614560565b5b81356133958482602086016132da565b91505092915050565b60008083601f8401126133b4576133b3614560565b5b8235905067ffffffffffffffff8111156133d1576133d061455b565b5b6020830191508360018202830111156133ed576133ec614565565b5b9250929050565b60008135905061340381614d9b565b92915050565b60006020828403121561341f5761341e614574565b5b600061342d8482850161331c565b91505092915050565b6000806040838503121561344d5761344c614574565b5b600061345b8582860161331c565b925050602061346c8582860161331c565b9150509250929050565b60008060006060848603121561348f5761348e614574565b5b600061349d8682870161331c565b93505060206134ae8682870161331c565b92505060406134bf868287016133f4565b9150509250925092565b600080600080608085870312156134e3576134e2614574565b5b60006134f18782880161331c565b94505060206135028782880161331c565b9350506040613513878288016133f4565b925050606085013567ffffffffffffffff8111156135345761353361456f565b5b61354087828801613370565b91505092959194509250565b6000806040838503121561356357613562614574565b5b60006135718582860161331c565b925050602061358285828601613331565b9150509250929050565b600080604083850312156135a3576135a2614574565b5b60006135b18582860161331c565b92505060206135c2858286016133f4565b9150509250929050565b6000602082840312156135e2576135e1614574565b5b60006135f084828501613346565b91505092915050565b60006020828403121561360f5761360e614574565b5b600061361d8482850161335b565b91505092915050565b6000806020838503121561363d5761363c614574565b5b600083013567ffffffffffffffff81111561365b5761365a61456f565b5b6136678582860161339e565b92509250509250929050565b60006020828403121561368957613688614574565b5b6000613697848285016133f4565b91505092915050565b6136a9816142c9565b82525050565b6136b8816142c9565b82525050565b6136c7816142db565b82525050565b60006136d882614166565b6136e2818561417c565b93506136f2818560208601614360565b6136fb81614579565b840191505092915050565b600061371182614171565b61371b8185614198565b935061372b818560208601614360565b61373481614579565b840191505092915050565b600061374a82614171565b61375481856141a9565b9350613764818560208601614360565b80840191505092915050565b600061377d602283614198565b91506137888261458a565b604082019050919050565b60006137a0602683614198565b91506137ab826145d9565b604082019050919050565b60006137c3601383614198565b91506137ce82614628565b602082019050919050565b60006137e6602a83614198565b91506137f182614651565b604082019050919050565b6000613809601483614198565b9150613814826146a0565b602082019050919050565b600061382c602383614198565b9150613837826146c9565b604082019050919050565b600061384f602583614198565b915061385a82614718565b604082019050919050565b6000613872603183614198565b915061387d82614767565b604082019050919050565b6000613895600d83614198565b91506138a0826147b6565b602082019050919050565b60006138b8601c83614198565b91506138c3826147df565b602082019050919050565b60006138db600983614198565b91506138e682614808565b602082019050919050565b60006138fe603983614198565b915061390982614831565b604082019050919050565b6000613921601883614198565b915061392c82614880565b602082019050919050565b6000613944602b83614198565b915061394f826148a9565b604082019050919050565b6000613967602683614198565b9150613972826148f8565b604082019050919050565b600061398a602083614198565b915061399582614947565b602082019050919050565b60006139ad602f83614198565b91506139b882614970565b604082019050919050565b60006139d0601a83614198565b91506139db826149bf565b602082019050919050565b60006139f3603283614198565b91506139fe826149e8565b604082019050919050565b6000613a16601d83614198565b9150613a2182614a37565b602082019050919050565b6000613a39602683614198565b9150613a4482614a60565b604082019050919050565b6000613a5c602283614198565b9150613a6782614aaf565b604082019050919050565b6000613a7f60008361418d565b9150613a8a82614afe565b600082019050919050565b6000613aa2601083614198565b9150613aad82614b01565b602082019050919050565b6000613ac5603383614198565b9150613ad082614b2a565b604082019050919050565b6000613ae8602183614198565b9150613af382614b79565b604082019050919050565b6000613b0b602883614198565b9150613b1682614bc8565b604082019050919050565b6000613b2e601383614198565b9150613b3982614c17565b602082019050919050565b6000613b51602e83614198565b9150613b5c82614c40565b604082019050919050565b6000613b74601f83614198565b9150613b7f82614c8f565b602082019050919050565b6000613b97602f83614198565b9150613ba282614cb8565b604082019050919050565b6000613bba602d83614198565b9150613bc582614d07565b604082019050919050565b604082016000820151613be660008501826136a0565b506020820151613bf96020850182613c0e565b50505050565b613c0881614333565b82525050565b613c178161433d565b82525050565b6000613c29828561373f565b9150613c35828461373f565b91508190509392505050565b6000613c4c82613a72565b9150819050919050565b6000602082019050613c6b60008301846136af565b92915050565b6000608082019050613c8660008301876136af565b613c9360208301866136af565b613ca06040830185613bff565b8181036060830152613cb281846136cd565b905095945050505050565b6000602082019050613cd260008301846136be565b92915050565b60006020820190508181036000830152613cf28184613706565b905092915050565b60006020820190508181036000830152613d1381613770565b9050919050565b60006020820190508181036000830152613d3381613793565b9050919050565b60006020820190508181036000830152613d53816137b6565b9050919050565b60006020820190508181036000830152613d73816137d9565b9050919050565b60006020820190508181036000830152613d93816137fc565b9050919050565b60006020820190508181036000830152613db38161381f565b9050919050565b60006020820190508181036000830152613dd381613842565b9050919050565b60006020820190508181036000830152613df381613865565b9050919050565b60006020820190508181036000830152613e1381613888565b9050919050565b60006020820190508181036000830152613e33816138ab565b9050919050565b60006020820190508181036000830152613e53816138ce565b9050919050565b60006020820190508181036000830152613e73816138f1565b9050919050565b60006020820190508181036000830152613e9381613914565b9050919050565b60006020820190508181036000830152613eb381613937565b9050919050565b60006020820190508181036000830152613ed38161395a565b9050919050565b60006020820190508181036000830152613ef38161397d565b9050919050565b60006020820190508181036000830152613f13816139a0565b9050919050565b60006020820190508181036000830152613f33816139c3565b9050919050565b60006020820190508181036000830152613f53816139e6565b9050919050565b60006020820190508181036000830152613f7381613a09565b9050919050565b60006020820190508181036000830152613f9381613a2c565b9050919050565b60006020820190508181036000830152613fb381613a4f565b9050919050565b60006020820190508181036000830152613fd381613a95565b9050919050565b60006020820190508181036000830152613ff381613ab8565b9050919050565b6000602082019050818103600083015261401381613adb565b9050919050565b6000602082019050818103600083015261403381613afe565b9050919050565b6000602082019050818103600083015261405381613b21565b9050919050565b6000602082019050818103600083015261407381613b44565b9050919050565b6000602082019050818103600083015261409381613b67565b9050919050565b600060208201905081810360008301526140b381613b8a565b9050919050565b600060208201905081810360008301526140d381613bad565b9050919050565b60006040820190506140ef6000830184613bd0565b92915050565b600060208201905061410a6000830184613bff565b92915050565b600061411a61412b565b905061412682826143c5565b919050565b6000604051905090565b600067ffffffffffffffff8211156141505761414f61452c565b5b61415982614579565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141bf82614333565b91506141ca83614333565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141ff576141fe614470565b5b828201905092915050565b600061421582614333565b915061422083614333565b9250826142305761422f61449f565b5b828204905092915050565b600061424682614333565b915061425183614333565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561428a57614289614470565b5b828202905092915050565b60006142a082614333565b91506142ab83614333565b9250828210156142be576142bd614470565b5b828203905092915050565b60006142d482614313565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561437e578082015181840152602081019050614363565b8381111561438d576000848401525b50505050565b600060028204905060018216806143ab57607f821691505b602082108114156143bf576143be6144ce565b5b50919050565b6143ce82614579565b810181811067ffffffffffffffff821117156143ed576143ec61452c565b5b80604052505050565b600061440182614333565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561443457614433614470565b5b600182019050919050565b600061444a82614333565b915061445583614333565b9250826144655761446461449f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f426520796f757273656c662c20686f6e65792e00000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4e6f206d6f726520626561727300000000000000000000000000000000000000600082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f20626561722e0000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614d5f816142c9565b8114614d6a57600080fd5b50565b614d76816142db565b8114614d8157600080fd5b50565b614d8d816142e7565b8114614d9857600080fd5b50565b614da481614333565b8114614daf57600080fd5b5056fea26469706673582212204353c8a711318659d2b926911f2c80d6b8f17b2346deb6486880337d72ceef8664736f6c63430008070033

Deployed Bytecode Sourcemap

50240:3630:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37100:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38986:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40548:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40069:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35357:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51979:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41424:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52373:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36021:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50449:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52191:176;;;;;;;;;;;;;:::i;:::-;;41665:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35534:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51585:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51775:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38795:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50310:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37536:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10492:103;;;;;;;;;;;;;:::i;:::-;;51381:85;;;;;;;;;;;;;:::i;:::-;;9841:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51212:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51687:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52497:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39155:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50343:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50697:509;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40834:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41921:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51879:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39330:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50598:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50498:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50548;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51472:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41193:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10750:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50401:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37100:372;37202:4;37254:25;37239:40;;;:11;:40;;;;:105;;;;37311:33;37296:48;;;:11;:48;;;;37239:105;:172;;;;37376:35;37361:50;;;:11;:50;;;;37239:172;:225;;;;37428:36;37452:11;37428:23;:36::i;:::-;37239:225;37219:245;;37100:372;;;:::o;38986:100::-;39040:13;39073:5;39066:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38986:100;:::o;40548:214::-;40616:7;40644:16;40652:7;40644;:16::i;:::-;40636:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40730:15;:24;40746:7;40730:24;;;;;;;;;;;;;;;;;;;;;40723:31;;40548:214;;;:::o;40069:413::-;40142:13;40158:24;40174:7;40158:15;:24::i;:::-;40142:40;;40207:5;40201:11;;:2;:11;;;;40193:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40302:5;40286:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40311:37;40328:5;40335:12;:10;:12::i;:::-;40311:16;:37::i;:::-;40286:62;40264:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40446:28;40455:2;40459:7;40468:5;40446:8;:28::i;:::-;40131:351;40069:413;;:::o;35357:100::-;35410:7;35437:12;;35430:19;;35357:100;:::o;51979:98::-;10072:12;:10;:12::i;:::-;10061:23;;:7;:5;:7::i;:::-;:23;;;10053:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52061:10:::1;52049:9;:22;;;;51979:98:::0;:::o;41424:170::-;41558:28;41568:4;41574:2;41578:7;41558:9;:28::i;:::-;41424:170;;;:::o;52373:118::-;10072:12;:10;:12::i;:::-;10061:23;;:7;:5;:7::i;:::-;:23;;;10053:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4815:1:::1;5413:7;;:19;;5405:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4815:1;5546:7;:18;;;;52457:28:::2;52476:8;52457:18;:28::i;:::-;4771:1:::1;5725:7;:22;;;;52373:118:::0;:::o;36021:1007::-;36110:7;36146:16;36156:5;36146:9;:16::i;:::-;36138:5;:24;36130:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36212:22;36237:13;:11;:13::i;:::-;36212:38;;36261:19;36291:25;36480:9;36475:466;36495:14;36491:1;:18;36475:466;;;36535:31;36569:11;:14;36581:1;36569:14;;;;;;;;;;;36535:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36632:1;36606:28;;:9;:14;;;:28;;;36602:111;;36679:9;:14;;;36659:34;;36602:111;36756:5;36735:26;;:17;:26;;;36731:195;;;36805:5;36790:11;:20;36786:85;;;36846:1;36839:8;;;;;;;;;36786:85;36893:13;;;;;;;36731:195;36516:425;36511:3;;;;;;;36475:466;;;;36964:56;;;;;;;;;;:::i;:::-;;;;;;;;36021:1007;;;;;:::o;50449:44::-;;;;:::o;52191:176::-;10072:12;:10;:12::i;:::-;10061:23;;:7;:5;:7::i;:::-;:23;;;10053:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4815:1:::1;5413:7;;:19;;5405:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4815:1;5546:7;:18;;;;52251:12:::2;52269:10;:15;;52292:21;52269:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52250:68;;;52333:7;52325:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;52243:124;4771:1:::1;5725:7;:22;;;;52191:176::o:0;41665:185::-;41803:39;41820:4;41826:2;41830:7;41803:39;;;;;;;;;;;;:16;:39::i;:::-;41665:185;;;:::o;35534:187::-;35601:7;35637:13;:11;:13::i;:::-;35629:5;:21;35621:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;35708:5;35701:12;;35534:187;;;:::o;51585:96::-;10072:12;:10;:12::i;:::-;10061:23;;:7;:5;:7::i;:::-;:23;;;10053:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51667:8:::1;;51657:7;:18;;;;;;;:::i;:::-;;51585:96:::0;;:::o;51775:98::-;10072:12;:10;:12::i;:::-;10061:23;;:7;:5;:7::i;:::-;:23;;;10053:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51857:10:::1;51845:9;:22;;;;51775:98:::0;:::o;38795:124::-;38859:7;38886:20;38898:7;38886:11;:20::i;:::-;:25;;;38879:32;;38795:124;;;:::o;50310:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37536:221::-;37600:7;37645:1;37628:19;;:5;:19;;;;37620:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37721:12;:19;37734:5;37721:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37713:36;;37706:43;;37536:221;;;:::o;10492:103::-;10072:12;:10;:12::i;:::-;10061:23;;:7;:5;:7::i;:::-;:23;;;10053:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10557:30:::1;10584:1;10557:18;:30::i;:::-;10492:103::o:0;51381:85::-;10072:12;:10;:12::i;:::-;10061:23;;:7;:5;:7::i;:::-;:23;;;10053:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51449:11:::1;;;;;;;;;;;51448:12;51434:11;;:26;;;;;;;;;;;;;;;;;;51381:85::o:0;9841:87::-;9887:7;9914:6;;;;;;;;;;;9907:13;;9841:87;:::o;51212:163::-;10072:12;:10;:12::i;:::-;10061:23;;:7;:5;:7::i;:::-;:23;;;10053:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51320:1:::1;51308:9;;:13;;;;:::i;:::-;51302:3;51286:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51278:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51343:26;51353:10;51365:3;51343:9;:26::i;:::-;51212:163:::0;:::o;51687:82::-;10072:12;:10;:12::i;:::-;10061:23;;:7;:5;:7::i;:::-;:23;;;10053:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51757:6:::1;51749:5;:14;;;;51687:82:::0;:::o;52497:132::-;52563:21;;:::i;:::-;52603:20;52615:7;52603:11;:20::i;:::-;52596:27;;52497:132;;;:::o;39155:104::-;39211:13;39244:7;39237:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39155:104;:::o;50343:53::-;;;;:::o;50697:509::-;50751:9;50763:5;;50751:17;;50812:1;50800:9;;:13;;;;:::i;:::-;50794:3;50778:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;50775:65;;;50831:1;50824:8;;50775:65;50868:9;50854:23;;:10;:23;;;50846:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;50934:4;50928:3;:10;;;;:::i;:::-;50915:9;:23;50907:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51020:1;51008:9;;:13;;;;:::i;:::-;51002:3;50986:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;50978:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;51053:11;;;;;;;;;;;51045:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;51140:1;51129:8;;:12;;;;:::i;:::-;51123:3;:18;51114:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;51174:26;51184:10;51196:3;51174:9;:26::i;:::-;50744:462;50697:509;:::o;40834:288::-;40941:12;:10;:12::i;:::-;40929:24;;:8;:24;;;;40921:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41042:8;40997:18;:32;41016:12;:10;:12::i;:::-;40997:32;;;;;;;;;;;;;;;:42;41030:8;40997:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41095:8;41066:48;;41081:12;:10;:12::i;:::-;41066:48;;;41105:8;41066:48;;;;;;:::i;:::-;;;;;;;;40834:288;;:::o;41921:355::-;42080:28;42090:4;42096:2;42100:7;42080:9;:28::i;:::-;42141:48;42164:4;42170:2;42174:7;42183:5;42141:22;:48::i;:::-;42119:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;41921:355;;;;:::o;51879:94::-;10072:12;:10;:12::i;:::-;10061:23;;:7;:5;:7::i;:::-;:23;;;10053:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51958:9:::1;51947:8;:20;;;;51879:94:::0;:::o;39330:335::-;39403:13;39437:16;39445:7;39437;:16::i;:::-;39429:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39518:21;39542:10;:8;:10::i;:::-;39518:34;;39595:1;39576:7;39570:21;:26;;:87;;;;;;;;;;;;;;;;;39623:7;39632:18;:7;:16;:18::i;:::-;39606:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39570:87;39563:94;;;39330:335;;;:::o;50598:32::-;;;;;;;;;;;;;:::o;50498:45::-;;;;:::o;50548:::-;;;;:::o;51472:107::-;51530:7;51553:20;51567:5;51553:13;:20::i;:::-;51546:27;;51472:107;;;:::o;41193:164::-;41290:4;41314:18;:25;41333:5;41314:25;;;;;;;;;;;;;;;:35;41340:8;41314:35;;;;;;;;;;;;;;;;;;;;;;;;;41307:42;;41193:164;;;;:::o;10750:201::-;10072:12;:10;:12::i;:::-;10061:23;;:7;:5;:7::i;:::-;:23;;;10053:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10859:1:::1;10839:22;;:8;:22;;;;10831:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10915:28;10934:8;10915:18;:28::i;:::-;10750:201:::0;:::o;50401:43::-;;;;:::o;26620:157::-;26705:4;26744:25;26729:40;;;:11;:40;;;;26722:47;;26620:157;;;:::o;42531:111::-;42588:4;42622:12;;42612:7;:22;42605:29;;42531:111;;;:::o;8565:98::-;8618:7;8645:10;8638:17;;8565:98;:::o;47451:196::-;47593:2;47566:15;:24;47582:7;47566:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47631:7;47627:2;47611:28;;47620:5;47611:28;;;;;;;;;;;;47451:196;;;:::o;45331:2002::-;45446:35;45484:20;45496:7;45484:11;:20::i;:::-;45446:58;;45517:22;45559:13;:18;;;45543:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45618:12;:10;:12::i;:::-;45594:36;;:20;45606:7;45594:11;:20::i;:::-;:36;;;45543:87;:154;;;;45647:50;45664:13;:18;;;45684:12;:10;:12::i;:::-;45647:16;:50::i;:::-;45543:154;45517:181;;45719:17;45711:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45834:4;45812:26;;:13;:18;;;:26;;;45804:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45914:1;45900:16;;:2;:16;;;;45892:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45971:43;45993:4;45999:2;46003:7;46012:1;45971:21;:43::i;:::-;46079:49;46096:1;46100:7;46109:13;:18;;;46079:8;:49::i;:::-;46454:1;46424:12;:18;46437:4;46424:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46498:1;46470:12;:16;46483:2;46470:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46544:2;46516:11;:20;46528:7;46516:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46606:15;46561:11;:20;46573:7;46561:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46874:19;46906:1;46896:7;:11;46874:33;;46967:1;46926:43;;:11;:24;46938:11;46926:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46922:295;;;46994:20;47002:11;46994:7;:20::i;:::-;46990:212;;;47071:13;:18;;;47039:11;:24;47051:11;47039:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47154:13;:28;;;47112:11;:24;47124:11;47112:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;46990:212;46922:295;46399:829;47264:7;47260:2;47245:27;;47254:4;47245:27;;;;;;;;;;;;47283:42;47304:4;47310:2;47314:7;47323:1;47283:20;:42::i;:::-;45435:1898;;45331:2002;;;:::o;52737:1130::-;52821:1;52809:8;:13;;52801:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;52884:1;52868:12;;:17;;52860:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;52919:33;52955:24;;52919:60;;53024:12;;52996:25;:40;52988:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;53207:16;53265:1;53254:8;53226:25;:36;:40;53207:59;;53359:12;;53355:1;53344:8;:12;:27;53340:91;;;53416:1;53401:12;;:16;53390:27;;53340:91;53450:9;53462:25;53450:37;;53445:354;53494:8;53489:1;:13;53445:354;;53561:1;53530:33;;:11;:14;53542:1;53530:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;53526:260;;;53586:31;53620:14;53632:1;53620:11;:14::i;:::-;53586:48;;53677:9;:14;;;53655:11;:14;53667:1;53655:14;;;;;;;;;;;:19;;;:36;;;;;;;;;;;;;;;;;;53744:9;:24;;;53712:11;:14;53724:1;53712:14;;;;;;;;;;;:29;;;:56;;;;;;;;;;;;;;;;;;53565:221;53526:260;53504:3;;;;;;;53445:354;;;;53851:1;53840:8;:12;53813:24;:39;;;;53184:678;52792:1075;52737:1130;:::o;38196:537::-;38257:21;;:::i;:::-;38299:16;38307:7;38299;:16::i;:::-;38291:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38405:12;38420:7;38405:22;;38400:245;38437:1;38429:4;:9;38400:245;;38467:31;38501:11;:17;38513:4;38501:17;;;;;;;;;;;38467:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38567:1;38541:28;;:9;:14;;;:28;;;38537:93;;38601:9;38594:16;;;;;;38537:93;38448:197;38440:6;;;;;;;;38400:245;;;;38668:57;;;;;;;;;;:::i;:::-;;;;;;;;38196:537;;;;:::o;11111:191::-;11185:16;11204:6;;;;;;;;;;;11185:25;;11230:8;11221:6;;:17;;;;;;;;;;;;;;;;;;11285:8;11254:40;;11275:8;11254:40;;;;;;;;;;;;11174:128;11111:191;:::o;42650:104::-;42719:27;42729:2;42733:8;42719:27;;;;;;;;;;;;:9;:27::i;:::-;42650:104;;:::o;48212:804::-;48367:4;48388:15;:2;:13;;;:15::i;:::-;48384:625;;;48440:2;48424:36;;;48461:12;:10;:12::i;:::-;48475:4;48481:7;48490:5;48424:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48420:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48687:1;48670:6;:13;:18;48666:273;;;48713:61;;;;;;;;;;:::i;:::-;;;;;;;;48666:273;48889:6;48883:13;48874:6;48870:2;48866:15;48859:38;48420:534;48557:45;;;48547:55;;;:6;:55;;;;48540:62;;;;;48384:625;48993:4;48986:11;;48212:804;;;;;;;:::o;52083:102::-;52143:13;52172:7;52165:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52083:102;:::o;6127:723::-;6183:13;6413:1;6404:5;:10;6400:53;;;6431:10;;;;;;;;;;;;;;;;;;;;;6400:53;6463:12;6478:5;6463:20;;6494:14;6519:78;6534:1;6526:4;:9;6519:78;;6552:8;;;;;:::i;:::-;;;;6583:2;6575:10;;;;;:::i;:::-;;;6519:78;;;6607:19;6639:6;6629:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6607:39;;6657:154;6673:1;6664:5;:10;6657:154;;6701:1;6691:11;;;;;:::i;:::-;;;6768:2;6760:5;:10;;;;:::i;:::-;6747:2;:24;;;;:::i;:::-;6734:39;;6717:6;6724;6717:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6797:2;6788:11;;;;;:::i;:::-;;;6657:154;;;6835:6;6821:21;;;;;6127:723;;;;:::o;37765:229::-;37826:7;37871:1;37854:19;;:5;:19;;;;37846:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37953:12;:19;37966:5;37953:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;37945:41;;37938:48;;37765:229;;;:::o;49504:159::-;;;;;:::o;50075:158::-;;;;;:::o;43117:163::-;43240:32;43246:2;43250:8;43260:5;43267:4;43240:5;:32::i;:::-;43117:163;;;:::o;12542:326::-;12602:4;12859:1;12837:7;:19;;;:23;12830:30;;12542:326;;;:::o;43539:1538::-;43678:20;43701:12;;43678:35;;43746:1;43732:16;;:2;:16;;;;43724:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43817:1;43805:8;:13;;43797:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43876:61;43906:1;43910:2;43914:12;43928:8;43876:21;:61::i;:::-;44251:8;44215:12;:16;44228:2;44215:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44316:8;44275:12;:16;44288:2;44275:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44375:2;44342:11;:25;44354:12;44342:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44442:15;44392:11;:25;44404:12;44392:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44475:20;44498:12;44475:35;;44532:9;44527:415;44547:8;44543:1;:12;44527:415;;;44611:12;44607:2;44586:38;;44603:1;44586:38;;;;;;;;;;;;44647:4;44643:249;;;44710:59;44741:1;44745:2;44749:12;44763:5;44710:22;:59::i;:::-;44676:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;44643:249;44912:14;;;;;;;44557:3;;;;;;;44527:415;;;;44973:12;44958;:27;;;;44190:807;45009:60;45038:1;45042:2;45046:12;45060:8;45009:20;:60::i;:::-;43667:1410;43539:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:109::-;7292:21;7307:5;7292:21;:::i;:::-;7287:3;7280:34;7211:109;;:::o;7326:360::-;7412:3;7440:38;7472:5;7440:38;:::i;:::-;7494:70;7557:6;7552:3;7494:70;:::i;:::-;7487:77;;7573:52;7618:6;7613:3;7606:4;7599:5;7595:16;7573:52;:::i;:::-;7650:29;7672:6;7650:29;:::i;:::-;7645:3;7641:39;7634:46;;7416:270;7326:360;;;;:::o;7692:364::-;7780:3;7808:39;7841:5;7808:39;:::i;:::-;7863:71;7927:6;7922:3;7863:71;:::i;:::-;7856:78;;7943:52;7988:6;7983:3;7976:4;7969:5;7965:16;7943:52;:::i;:::-;8020:29;8042:6;8020:29;:::i;:::-;8015:3;8011:39;8004:46;;7784:272;7692:364;;;;:::o;8062:377::-;8168:3;8196:39;8229:5;8196:39;:::i;:::-;8251:89;8333:6;8328:3;8251:89;:::i;:::-;8244:96;;8349:52;8394:6;8389:3;8382:4;8375:5;8371:16;8349:52;:::i;:::-;8426:6;8421:3;8417:16;8410:23;;8172:267;8062:377;;;;:::o;8445:366::-;8587:3;8608:67;8672:2;8667:3;8608:67;:::i;:::-;8601:74;;8684:93;8773:3;8684:93;:::i;:::-;8802:2;8797:3;8793:12;8786:19;;8445:366;;;:::o;8817:::-;8959:3;8980:67;9044:2;9039:3;8980:67;:::i;:::-;8973:74;;9056:93;9145:3;9056:93;:::i;:::-;9174:2;9169:3;9165:12;9158:19;;8817:366;;;:::o;9189:::-;9331:3;9352:67;9416:2;9411:3;9352:67;:::i;:::-;9345:74;;9428:93;9517:3;9428:93;:::i;:::-;9546:2;9541:3;9537:12;9530:19;;9189:366;;;:::o;9561:::-;9703:3;9724:67;9788:2;9783:3;9724:67;:::i;:::-;9717:74;;9800:93;9889:3;9800:93;:::i;:::-;9918:2;9913:3;9909:12;9902:19;;9561:366;;;:::o;9933:::-;10075:3;10096:67;10160:2;10155:3;10096:67;:::i;:::-;10089:74;;10172:93;10261:3;10172:93;:::i;:::-;10290:2;10285:3;10281:12;10274:19;;9933:366;;;:::o;10305:::-;10447:3;10468:67;10532:2;10527:3;10468:67;:::i;:::-;10461:74;;10544:93;10633:3;10544:93;:::i;:::-;10662:2;10657:3;10653:12;10646:19;;10305:366;;;:::o;10677:::-;10819:3;10840:67;10904:2;10899:3;10840:67;:::i;:::-;10833:74;;10916:93;11005:3;10916:93;:::i;:::-;11034:2;11029:3;11025:12;11018:19;;10677:366;;;:::o;11049:::-;11191:3;11212:67;11276:2;11271:3;11212:67;:::i;:::-;11205:74;;11288:93;11377:3;11288:93;:::i;:::-;11406:2;11401:3;11397:12;11390:19;;11049:366;;;:::o;11421:::-;11563:3;11584:67;11648:2;11643:3;11584:67;:::i;:::-;11577:74;;11660:93;11749:3;11660:93;:::i;:::-;11778:2;11773:3;11769:12;11762:19;;11421:366;;;:::o;11793:::-;11935:3;11956:67;12020:2;12015:3;11956:67;:::i;:::-;11949:74;;12032:93;12121:3;12032:93;:::i;:::-;12150:2;12145:3;12141:12;12134:19;;11793:366;;;:::o;12165:365::-;12307:3;12328:66;12392:1;12387:3;12328:66;:::i;:::-;12321:73;;12403:93;12492:3;12403:93;:::i;:::-;12521:2;12516:3;12512:12;12505:19;;12165:365;;;:::o;12536:366::-;12678:3;12699:67;12763:2;12758:3;12699:67;:::i;:::-;12692:74;;12775:93;12864:3;12775:93;:::i;:::-;12893:2;12888:3;12884:12;12877:19;;12536:366;;;:::o;12908:::-;13050:3;13071:67;13135:2;13130:3;13071:67;:::i;:::-;13064:74;;13147:93;13236:3;13147:93;:::i;:::-;13265:2;13260:3;13256:12;13249:19;;12908:366;;;:::o;13280:::-;13422:3;13443:67;13507:2;13502:3;13443:67;:::i;:::-;13436:74;;13519:93;13608:3;13519:93;:::i;:::-;13637:2;13632:3;13628:12;13621:19;;13280:366;;;:::o;13652:::-;13794:3;13815:67;13879:2;13874:3;13815:67;:::i;:::-;13808:74;;13891:93;13980:3;13891:93;:::i;:::-;14009:2;14004:3;14000:12;13993:19;;13652:366;;;:::o;14024:::-;14166:3;14187:67;14251:2;14246:3;14187:67;:::i;:::-;14180:74;;14263:93;14352:3;14263:93;:::i;:::-;14381:2;14376:3;14372:12;14365:19;;14024:366;;;:::o;14396:::-;14538:3;14559:67;14623:2;14618:3;14559:67;:::i;:::-;14552:74;;14635:93;14724:3;14635:93;:::i;:::-;14753:2;14748:3;14744:12;14737:19;;14396:366;;;:::o;14768:::-;14910:3;14931:67;14995:2;14990:3;14931:67;:::i;:::-;14924:74;;15007:93;15096:3;15007:93;:::i;:::-;15125:2;15120:3;15116:12;15109:19;;14768:366;;;:::o;15140:::-;15282:3;15303:67;15367:2;15362:3;15303:67;:::i;:::-;15296:74;;15379:93;15468:3;15379:93;:::i;:::-;15497:2;15492:3;15488:12;15481:19;;15140:366;;;:::o;15512:::-;15654:3;15675:67;15739:2;15734:3;15675:67;:::i;:::-;15668:74;;15751:93;15840:3;15751:93;:::i;:::-;15869:2;15864:3;15860:12;15853:19;;15512:366;;;:::o;15884:::-;16026:3;16047:67;16111:2;16106:3;16047:67;:::i;:::-;16040:74;;16123:93;16212:3;16123:93;:::i;:::-;16241:2;16236:3;16232:12;16225:19;;15884:366;;;:::o;16256:::-;16398:3;16419:67;16483:2;16478:3;16419:67;:::i;:::-;16412:74;;16495:93;16584:3;16495:93;:::i;:::-;16613:2;16608:3;16604:12;16597:19;;16256:366;;;:::o;16628:398::-;16787:3;16808:83;16889:1;16884:3;16808:83;:::i;:::-;16801:90;;16900:93;16989:3;16900:93;:::i;:::-;17018:1;17013:3;17009:11;17002:18;;16628:398;;;:::o;17032:366::-;17174:3;17195:67;17259:2;17254:3;17195:67;:::i;:::-;17188:74;;17271:93;17360:3;17271:93;:::i;:::-;17389:2;17384:3;17380:12;17373:19;;17032:366;;;:::o;17404:::-;17546:3;17567:67;17631:2;17626:3;17567:67;:::i;:::-;17560:74;;17643:93;17732:3;17643:93;:::i;:::-;17761:2;17756:3;17752:12;17745:19;;17404:366;;;:::o;17776:::-;17918:3;17939:67;18003:2;17998:3;17939:67;:::i;:::-;17932:74;;18015:93;18104:3;18015:93;:::i;:::-;18133:2;18128:3;18124:12;18117:19;;17776:366;;;:::o;18148:::-;18290:3;18311:67;18375:2;18370:3;18311:67;:::i;:::-;18304:74;;18387:93;18476:3;18387:93;:::i;:::-;18505:2;18500:3;18496:12;18489:19;;18148:366;;;:::o;18520:::-;18662:3;18683:67;18747:2;18742:3;18683:67;:::i;:::-;18676:74;;18759:93;18848:3;18759:93;:::i;:::-;18877:2;18872:3;18868:12;18861:19;;18520:366;;;:::o;18892:::-;19034:3;19055:67;19119:2;19114:3;19055:67;:::i;:::-;19048:74;;19131:93;19220:3;19131:93;:::i;:::-;19249:2;19244:3;19240:12;19233:19;;18892:366;;;:::o;19264:::-;19406:3;19427:67;19491:2;19486:3;19427:67;:::i;:::-;19420:74;;19503:93;19592:3;19503:93;:::i;:::-;19621:2;19616:3;19612:12;19605:19;;19264:366;;;:::o;19636:::-;19778:3;19799:67;19863:2;19858:3;19799:67;:::i;:::-;19792:74;;19875:93;19964:3;19875:93;:::i;:::-;19993:2;19988:3;19984:12;19977:19;;19636:366;;;:::o;20008:::-;20150:3;20171:67;20235:2;20230:3;20171:67;:::i;:::-;20164:74;;20247:93;20336:3;20247:93;:::i;:::-;20365:2;20360:3;20356:12;20349:19;;20008:366;;;:::o;20450:529::-;20611:4;20606:3;20602:14;20698:4;20691:5;20687:16;20681:23;20717:63;20774:4;20769:3;20765:14;20751:12;20717:63;:::i;:::-;20626:164;20882:4;20875:5;20871:16;20865:23;20901:61;20956:4;20951:3;20947:14;20933:12;20901:61;:::i;:::-;20800:172;20580:399;20450:529;;:::o;20985:118::-;21072:24;21090:5;21072:24;:::i;:::-;21067:3;21060:37;20985:118;;:::o;21109:105::-;21184:23;21201:5;21184:23;:::i;:::-;21179:3;21172:36;21109:105;;:::o;21220:435::-;21400:3;21422:95;21513:3;21504:6;21422:95;:::i;:::-;21415:102;;21534:95;21625:3;21616:6;21534:95;:::i;:::-;21527:102;;21646:3;21639:10;;21220:435;;;;;:::o;21661:379::-;21845:3;21867:147;22010:3;21867:147;:::i;:::-;21860:154;;22031:3;22024:10;;21661:379;;;:::o;22046:222::-;22139:4;22177:2;22166:9;22162:18;22154:26;;22190:71;22258:1;22247:9;22243:17;22234:6;22190:71;:::i;:::-;22046:222;;;;:::o;22274:640::-;22469:4;22507:3;22496:9;22492:19;22484:27;;22521:71;22589:1;22578:9;22574:17;22565:6;22521:71;:::i;:::-;22602:72;22670:2;22659:9;22655:18;22646:6;22602:72;:::i;:::-;22684;22752:2;22741:9;22737:18;22728:6;22684:72;:::i;:::-;22803:9;22797:4;22793:20;22788:2;22777:9;22773:18;22766:48;22831:76;22902:4;22893:6;22831:76;:::i;:::-;22823:84;;22274:640;;;;;;;:::o;22920:210::-;23007:4;23045:2;23034:9;23030:18;23022:26;;23058:65;23120:1;23109:9;23105:17;23096:6;23058:65;:::i;:::-;22920:210;;;;:::o;23136:313::-;23249:4;23287:2;23276:9;23272:18;23264:26;;23336:9;23330:4;23326:20;23322:1;23311:9;23307:17;23300:47;23364:78;23437:4;23428:6;23364:78;:::i;:::-;23356:86;;23136:313;;;;:::o;23455:419::-;23621:4;23659:2;23648:9;23644:18;23636:26;;23708:9;23702:4;23698:20;23694:1;23683:9;23679:17;23672:47;23736:131;23862:4;23736:131;:::i;:::-;23728:139;;23455:419;;;:::o;23880:::-;24046:4;24084:2;24073:9;24069:18;24061:26;;24133:9;24127:4;24123:20;24119:1;24108:9;24104:17;24097:47;24161:131;24287:4;24161:131;:::i;:::-;24153:139;;23880:419;;;:::o;24305:::-;24471:4;24509:2;24498:9;24494:18;24486:26;;24558:9;24552:4;24548:20;24544:1;24533:9;24529:17;24522:47;24586:131;24712:4;24586:131;:::i;:::-;24578:139;;24305:419;;;:::o;24730:::-;24896:4;24934:2;24923:9;24919:18;24911:26;;24983:9;24977:4;24973:20;24969:1;24958:9;24954:17;24947:47;25011:131;25137:4;25011:131;:::i;:::-;25003:139;;24730:419;;;:::o;25155:::-;25321:4;25359:2;25348:9;25344:18;25336:26;;25408:9;25402:4;25398:20;25394:1;25383:9;25379:17;25372:47;25436:131;25562:4;25436:131;:::i;:::-;25428:139;;25155:419;;;:::o;25580:::-;25746:4;25784:2;25773:9;25769:18;25761:26;;25833:9;25827:4;25823:20;25819:1;25808:9;25804:17;25797:47;25861:131;25987:4;25861:131;:::i;:::-;25853:139;;25580:419;;;:::o;26005:::-;26171:4;26209:2;26198:9;26194:18;26186:26;;26258:9;26252:4;26248:20;26244:1;26233:9;26229:17;26222:47;26286:131;26412:4;26286:131;:::i;:::-;26278:139;;26005:419;;;:::o;26430:::-;26596:4;26634:2;26623:9;26619:18;26611:26;;26683:9;26677:4;26673:20;26669:1;26658:9;26654:17;26647:47;26711:131;26837:4;26711:131;:::i;:::-;26703:139;;26430:419;;;:::o;26855:::-;27021:4;27059:2;27048:9;27044:18;27036:26;;27108:9;27102:4;27098:20;27094:1;27083:9;27079:17;27072:47;27136:131;27262:4;27136:131;:::i;:::-;27128:139;;26855:419;;;:::o;27280:::-;27446:4;27484:2;27473:9;27469:18;27461:26;;27533:9;27527:4;27523:20;27519:1;27508:9;27504:17;27497:47;27561:131;27687:4;27561:131;:::i;:::-;27553:139;;27280:419;;;:::o;27705:::-;27871:4;27909:2;27898:9;27894:18;27886:26;;27958:9;27952:4;27948:20;27944:1;27933:9;27929:17;27922:47;27986:131;28112:4;27986:131;:::i;:::-;27978:139;;27705:419;;;:::o;28130:::-;28296:4;28334:2;28323:9;28319:18;28311:26;;28383:9;28377:4;28373:20;28369:1;28358:9;28354:17;28347:47;28411:131;28537:4;28411:131;:::i;:::-;28403:139;;28130:419;;;:::o;28555:::-;28721:4;28759:2;28748:9;28744:18;28736:26;;28808:9;28802:4;28798:20;28794:1;28783:9;28779:17;28772:47;28836:131;28962:4;28836:131;:::i;:::-;28828:139;;28555:419;;;:::o;28980:::-;29146:4;29184:2;29173:9;29169:18;29161:26;;29233:9;29227:4;29223:20;29219:1;29208:9;29204:17;29197:47;29261:131;29387:4;29261:131;:::i;:::-;29253:139;;28980:419;;;:::o;29405:::-;29571:4;29609:2;29598:9;29594:18;29586:26;;29658:9;29652:4;29648:20;29644:1;29633:9;29629:17;29622:47;29686:131;29812:4;29686:131;:::i;:::-;29678:139;;29405:419;;;:::o;29830:::-;29996:4;30034:2;30023:9;30019:18;30011:26;;30083:9;30077:4;30073:20;30069:1;30058:9;30054:17;30047:47;30111:131;30237:4;30111:131;:::i;:::-;30103:139;;29830:419;;;:::o;30255:::-;30421:4;30459:2;30448:9;30444:18;30436:26;;30508:9;30502:4;30498:20;30494:1;30483:9;30479:17;30472:47;30536:131;30662:4;30536:131;:::i;:::-;30528:139;;30255:419;;;:::o;30680:::-;30846:4;30884:2;30873:9;30869:18;30861:26;;30933:9;30927:4;30923:20;30919:1;30908:9;30904:17;30897:47;30961:131;31087:4;30961:131;:::i;:::-;30953:139;;30680:419;;;:::o;31105:::-;31271:4;31309:2;31298:9;31294:18;31286:26;;31358:9;31352:4;31348:20;31344:1;31333:9;31329:17;31322:47;31386:131;31512:4;31386:131;:::i;:::-;31378:139;;31105:419;;;:::o;31530:::-;31696:4;31734:2;31723:9;31719:18;31711:26;;31783:9;31777:4;31773:20;31769:1;31758:9;31754:17;31747:47;31811:131;31937:4;31811:131;:::i;:::-;31803:139;;31530:419;;;:::o;31955:::-;32121:4;32159:2;32148:9;32144:18;32136:26;;32208:9;32202:4;32198:20;32194:1;32183:9;32179:17;32172:47;32236:131;32362:4;32236:131;:::i;:::-;32228:139;;31955:419;;;:::o;32380:::-;32546:4;32584:2;32573:9;32569:18;32561:26;;32633:9;32627:4;32623:20;32619:1;32608:9;32604:17;32597:47;32661:131;32787:4;32661:131;:::i;:::-;32653:139;;32380:419;;;:::o;32805:::-;32971:4;33009:2;32998:9;32994:18;32986:26;;33058:9;33052:4;33048:20;33044:1;33033:9;33029:17;33022:47;33086:131;33212:4;33086:131;:::i;:::-;33078:139;;32805:419;;;:::o;33230:::-;33396:4;33434:2;33423:9;33419:18;33411:26;;33483:9;33477:4;33473:20;33469:1;33458:9;33454:17;33447:47;33511:131;33637:4;33511:131;:::i;:::-;33503:139;;33230:419;;;:::o;33655:::-;33821:4;33859:2;33848:9;33844:18;33836:26;;33908:9;33902:4;33898:20;33894:1;33883:9;33879:17;33872:47;33936:131;34062:4;33936:131;:::i;:::-;33928:139;;33655:419;;;:::o;34080:::-;34246:4;34284:2;34273:9;34269:18;34261:26;;34333:9;34327:4;34323:20;34319:1;34308:9;34304:17;34297:47;34361:131;34487:4;34361:131;:::i;:::-;34353:139;;34080:419;;;:::o;34505:::-;34671:4;34709:2;34698:9;34694:18;34686:26;;34758:9;34752:4;34748:20;34744:1;34733:9;34729:17;34722:47;34786:131;34912:4;34786:131;:::i;:::-;34778:139;;34505:419;;;:::o;34930:::-;35096:4;35134:2;35123:9;35119:18;35111:26;;35183:9;35177:4;35173:20;35169:1;35158:9;35154:17;35147:47;35211:131;35337:4;35211:131;:::i;:::-;35203:139;;34930:419;;;:::o;35355:::-;35521:4;35559:2;35548:9;35544:18;35536:26;;35608:9;35602:4;35598:20;35594:1;35583:9;35579:17;35572:47;35636:131;35762:4;35636:131;:::i;:::-;35628:139;;35355:419;;;:::o;35780:::-;35946:4;35984:2;35973:9;35969:18;35961:26;;36033:9;36027:4;36023:20;36019:1;36008:9;36004:17;35997:47;36061:131;36187:4;36061:131;:::i;:::-;36053:139;;35780:419;;;:::o;36205:::-;36371:4;36409:2;36398:9;36394:18;36386:26;;36458:9;36452:4;36448:20;36444:1;36433:9;36429:17;36422:47;36486:131;36612:4;36486:131;:::i;:::-;36478:139;;36205:419;;;:::o;36630:350::-;36787:4;36825:2;36814:9;36810:18;36802:26;;36838:135;36970:1;36959:9;36955:17;36946:6;36838:135;:::i;:::-;36630:350;;;;:::o;36986:222::-;37079:4;37117:2;37106:9;37102:18;37094:26;;37130:71;37198:1;37187:9;37183:17;37174:6;37130:71;:::i;:::-;36986:222;;;;:::o;37214:129::-;37248:6;37275:20;;:::i;:::-;37265:30;;37304:33;37332:4;37324:6;37304:33;:::i;:::-;37214:129;;;:::o;37349:75::-;37382:6;37415:2;37409:9;37399:19;;37349:75;:::o;37430:307::-;37491:4;37581:18;37573:6;37570:30;37567:56;;;37603:18;;:::i;:::-;37567:56;37641:29;37663:6;37641:29;:::i;:::-;37633:37;;37725:4;37719;37715:15;37707:23;;37430:307;;;:::o;37743:98::-;37794:6;37828:5;37822:12;37812:22;;37743:98;;;:::o;37847:99::-;37899:6;37933:5;37927:12;37917:22;;37847:99;;;:::o;37952:168::-;38035:11;38069:6;38064:3;38057:19;38109:4;38104:3;38100:14;38085:29;;37952:168;;;;:::o;38126:147::-;38227:11;38264:3;38249:18;;38126:147;;;;:::o;38279:169::-;38363:11;38397:6;38392:3;38385:19;38437:4;38432:3;38428:14;38413:29;;38279:169;;;;:::o;38454:148::-;38556:11;38593:3;38578:18;;38454:148;;;;:::o;38608:305::-;38648:3;38667:20;38685:1;38667:20;:::i;:::-;38662:25;;38701:20;38719:1;38701:20;:::i;:::-;38696:25;;38855:1;38787:66;38783:74;38780:1;38777:81;38774:107;;;38861:18;;:::i;:::-;38774:107;38905:1;38902;38898:9;38891:16;;38608:305;;;;:::o;38919:185::-;38959:1;38976:20;38994:1;38976:20;:::i;:::-;38971:25;;39010:20;39028:1;39010:20;:::i;:::-;39005:25;;39049:1;39039:35;;39054:18;;:::i;:::-;39039:35;39096:1;39093;39089:9;39084:14;;38919:185;;;;:::o;39110:348::-;39150:7;39173:20;39191:1;39173:20;:::i;:::-;39168:25;;39207:20;39225:1;39207:20;:::i;:::-;39202:25;;39395:1;39327:66;39323:74;39320:1;39317:81;39312:1;39305:9;39298:17;39294:105;39291:131;;;39402:18;;:::i;:::-;39291:131;39450:1;39447;39443:9;39432:20;;39110:348;;;;:::o;39464:191::-;39504:4;39524:20;39542:1;39524:20;:::i;:::-;39519:25;;39558:20;39576:1;39558:20;:::i;:::-;39553:25;;39597:1;39594;39591:8;39588:34;;;39602:18;;:::i;:::-;39588:34;39647:1;39644;39640:9;39632:17;;39464:191;;;;:::o;39661:96::-;39698:7;39727:24;39745:5;39727:24;:::i;:::-;39716:35;;39661:96;;;:::o;39763:90::-;39797:7;39840:5;39833:13;39826:21;39815:32;;39763:90;;;:::o;39859:149::-;39895:7;39935:66;39928:5;39924:78;39913:89;;39859:149;;;:::o;40014:126::-;40051:7;40091:42;40084:5;40080:54;40069:65;;40014:126;;;:::o;40146:77::-;40183:7;40212:5;40201:16;;40146:77;;;:::o;40229:101::-;40265:7;40305:18;40298:5;40294:30;40283:41;;40229:101;;;:::o;40336:154::-;40420:6;40415:3;40410;40397:30;40482:1;40473:6;40468:3;40464:16;40457:27;40336:154;;;:::o;40496:307::-;40564:1;40574:113;40588:6;40585:1;40582:13;40574:113;;;40673:1;40668:3;40664:11;40658:18;40654:1;40649:3;40645:11;40638:39;40610:2;40607:1;40603:10;40598:15;;40574:113;;;40705:6;40702:1;40699:13;40696:101;;;40785:1;40776:6;40771:3;40767:16;40760:27;40696:101;40545:258;40496:307;;;:::o;40809:320::-;40853:6;40890:1;40884:4;40880:12;40870:22;;40937:1;40931:4;40927:12;40958:18;40948:81;;41014:4;41006:6;41002:17;40992:27;;40948:81;41076:2;41068:6;41065:14;41045:18;41042:38;41039:84;;;41095:18;;:::i;:::-;41039:84;40860:269;40809:320;;;:::o;41135:281::-;41218:27;41240:4;41218:27;:::i;:::-;41210:6;41206:40;41348:6;41336:10;41333:22;41312:18;41300:10;41297:34;41294:62;41291:88;;;41359:18;;:::i;:::-;41291:88;41399:10;41395:2;41388:22;41178:238;41135:281;;:::o;41422:233::-;41461:3;41484:24;41502:5;41484:24;:::i;:::-;41475:33;;41530:66;41523:5;41520:77;41517:103;;;41600:18;;:::i;:::-;41517:103;41647:1;41640:5;41636:13;41629:20;;41422:233;;;:::o;41661:176::-;41693:1;41710:20;41728:1;41710:20;:::i;:::-;41705:25;;41744:20;41762:1;41744:20;:::i;:::-;41739:25;;41783:1;41773:35;;41788:18;;:::i;:::-;41773:35;41829:1;41826;41822:9;41817:14;;41661:176;;;;:::o;41843:180::-;41891:77;41888:1;41881:88;41988:4;41985:1;41978:15;42012:4;42009:1;42002:15;42029:180;42077:77;42074:1;42067:88;42174:4;42171:1;42164:15;42198:4;42195:1;42188:15;42215:180;42263:77;42260:1;42253:88;42360:4;42357:1;42350:15;42384:4;42381:1;42374:15;42401:180;42449:77;42446:1;42439:88;42546:4;42543:1;42536:15;42570:4;42567:1;42560:15;42587:180;42635:77;42632:1;42625:88;42732:4;42729:1;42722:15;42756:4;42753:1;42746:15;42773:117;42882:1;42879;42872:12;42896:117;43005:1;43002;42995:12;43019:117;43128:1;43125;43118:12;43142:117;43251:1;43248;43241:12;43265:117;43374:1;43371;43364:12;43388:117;43497:1;43494;43487:12;43511:102;43552:6;43603:2;43599:7;43594:2;43587:5;43583:14;43579:28;43569:38;;43511:102;;;:::o;43619:221::-;43759:34;43755:1;43747:6;43743:14;43736:58;43828:4;43823:2;43815:6;43811:15;43804:29;43619:221;:::o;43846:225::-;43986:34;43982:1;43974:6;43970:14;43963:58;44055:8;44050:2;44042:6;44038:15;44031:33;43846:225;:::o;44077:169::-;44217:21;44213:1;44205:6;44201:14;44194:45;44077:169;:::o;44252:229::-;44392:34;44388:1;44380:6;44376:14;44369:58;44461:12;44456:2;44448:6;44444:15;44437:37;44252:229;:::o;44487:170::-;44627:22;44623:1;44615:6;44611:14;44604:46;44487:170;:::o;44663:222::-;44803:34;44799:1;44791:6;44787:14;44780:58;44872:5;44867:2;44859:6;44855:15;44848:30;44663:222;:::o;44891:224::-;45031:34;45027:1;45019:6;45015:14;45008:58;45100:7;45095:2;45087:6;45083:15;45076:32;44891:224;:::o;45121:236::-;45261:34;45257:1;45249:6;45245:14;45238:58;45330:19;45325:2;45317:6;45313:15;45306:44;45121:236;:::o;45363:163::-;45503:15;45499:1;45491:6;45487:14;45480:39;45363:163;:::o;45532:178::-;45672:30;45668:1;45660:6;45656:14;45649:54;45532:178;:::o;45716:159::-;45856:11;45852:1;45844:6;45840:14;45833:35;45716:159;:::o;45881:244::-;46021:34;46017:1;46009:6;46005:14;45998:58;46090:27;46085:2;46077:6;46073:15;46066:52;45881:244;:::o;46131:174::-;46271:26;46267:1;46259:6;46255:14;46248:50;46131:174;:::o;46311:230::-;46451:34;46447:1;46439:6;46435:14;46428:58;46520:13;46515:2;46507:6;46503:15;46496:38;46311:230;:::o;46547:225::-;46687:34;46683:1;46675:6;46671:14;46664:58;46756:8;46751:2;46743:6;46739:15;46732:33;46547:225;:::o;46778:182::-;46918:34;46914:1;46906:6;46902:14;46895:58;46778:182;:::o;46966:234::-;47106:34;47102:1;47094:6;47090:14;47083:58;47175:17;47170:2;47162:6;47158:15;47151:42;46966:234;:::o;47206:176::-;47346:28;47342:1;47334:6;47330:14;47323:52;47206:176;:::o;47388:237::-;47528:34;47524:1;47516:6;47512:14;47505:58;47597:20;47592:2;47584:6;47580:15;47573:45;47388:237;:::o;47631:179::-;47771:31;47767:1;47759:6;47755:14;47748:55;47631:179;:::o;47816:225::-;47956:34;47952:1;47944:6;47940:14;47933:58;48025:8;48020:2;48012:6;48008:15;48001:33;47816:225;:::o;48047:221::-;48187:34;48183:1;48175:6;48171:14;48164:58;48256:4;48251:2;48243:6;48239:15;48232:29;48047:221;:::o;48274:114::-;;:::o;48394:166::-;48534:18;48530:1;48522:6;48518:14;48511:42;48394:166;:::o;48566:238::-;48706:34;48702:1;48694:6;48690:14;48683:58;48775:21;48770:2;48762:6;48758:15;48751:46;48566:238;:::o;48810:220::-;48950:34;48946:1;48938:6;48934:14;48927:58;49019:3;49014:2;49006:6;49002:15;48995:28;48810:220;:::o;49036:227::-;49176:34;49172:1;49164:6;49160:14;49153:58;49245:10;49240:2;49232:6;49228:15;49221:35;49036:227;:::o;49269:169::-;49409:21;49405:1;49397:6;49393:14;49386:45;49269:169;:::o;49444:233::-;49584:34;49580:1;49572:6;49568:14;49561:58;49653:16;49648:2;49640:6;49636:15;49629:41;49444:233;:::o;49683:181::-;49823:33;49819:1;49811:6;49807:14;49800:57;49683:181;:::o;49870:234::-;50010:34;50006:1;49998:6;49994:14;49987:58;50079:17;50074:2;50066:6;50062:15;50055:42;49870:234;:::o;50110:232::-;50250:34;50246:1;50238:6;50234:14;50227:58;50319:15;50314:2;50306:6;50302:15;50295:40;50110:232;:::o;50348:122::-;50421:24;50439:5;50421:24;:::i;:::-;50414:5;50411:35;50401:63;;50460:1;50457;50450:12;50401:63;50348:122;:::o;50476:116::-;50546:21;50561:5;50546:21;:::i;:::-;50539:5;50536:32;50526:60;;50582:1;50579;50572:12;50526:60;50476:116;:::o;50598:120::-;50670:23;50687:5;50670:23;:::i;:::-;50663:5;50660:34;50650:62;;50708:1;50705;50698:12;50650:62;50598:120;:::o;50724:122::-;50797:24;50815:5;50797:24;:::i;:::-;50790:5;50787:35;50777:63;;50836:1;50833;50826:12;50777:63;50724:122;:::o

Swarm Source

ipfs://4353c8a711318659d2b926911f2c80d6b8f17b2346deb6486880337d72ceef86
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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