ETH Price: $2,405.18 (+0.04%)

Token

Okay Moon Bears (OKMB)
 

Overview

Max Total Supply

5,001 OKMB

Holders

544

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bluuue.eth
Balance
2 OKMB
0x392c9fb749a89110c1f1305405e25a53339cb4fa
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:
OkayMoonBears

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-24
*/

//        _                                                       _                         
//       | |                                                     | |                        
//   ___ | | ____ _ _   _       _ __ ___   ___   ___  _ __       | |__   ___  __ _ _ __ ___ 
//  / _ \| |/ / _` | | | |     | '_ ` _ \ / _ \ / _ \| '_ \      | '_ \ / _ \/ _` | '__/ __|
// | (_) |   < (_| | |_| |     | | | | | | (_) | (_) | | | |     | |_) |  __/ (_| | |  \__ \
//  \___/|_|\_\__,_|\__, |     |_| |_| |_|\___/ \___/|_| |_|     |_.__/ \___|\__,_|_|  |___/
//                   __/ |                                                                  
//                  |___/    
//
// a free mint project <3
//
// SPDX-License-Identifier: MIT


// 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 OkayMoonBears is ERC721A, Ownable, ReentrancyGuard {

  string public        baseURI;
  uint public          price             = 0.000 ether;
  uint public          maxPerTx          = 1;
  uint public          maxPerWallet      = 1;
  uint public          totalFree         = 10000;
  uint public          maxSupply         = 10000;
  uint public          nextOwnerToExplicitlySet;
  bool public          mintEnabled;

  constructor() ERC721A("Okay Moon Bears", "OKMB"){}

  function mint(uint256 numberOfTokens) external payable
  {
    uint cost = price;
    if(totalSupply() + numberOfTokens < totalFree + 1) {
      cost = 0;
    }
    require(msg.sender == tx.origin,"who you trying to fool?");
    require(msg.value == numberOfTokens * cost,"incorrect amount sent");
    require(totalSupply() + numberOfTokens < maxSupply + 1,"sold out!");
    require(mintEnabled, "minting is not live");
    require(numberMinted(msg.sender) + numberOfTokens <= maxPerWallet,"don't be greedy! too many per wallet requested");
    require( numberOfTokens < maxPerTx + 1, "max per tx exceeded");

    _safeMint(msg.sender, numberOfTokens);
  }

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

    _safeMint(msg.sender, numberOfTokens);
  }

  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 setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner {
      maxPerWallet = maxPerWallet_;
  }

  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":"maxPerWallet","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":"numberOfTokens","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":"numberOfTokens","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":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","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"}]

60806040526000600a556001600b556001600c55612710600d55612710600e553480156200002c57600080fd5b506040518060400160405280600f81526020017f4f6b6179204d6f6f6e20426561727300000000000000000000000000000000008152506040518060400160405280600481526020017f4f4b4d42000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000b1929190620001c9565b508060029080519060200190620000ca929190620001c9565b505050620000ed620000e1620000fb60201b60201c565b6200010360201b60201c565b6001600881905550620002de565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d79062000279565b90600052602060002090601f016020900481019282620001fb576000855562000247565b82601f106200021657805160ff191683800117855562000247565b8280016001018555821562000247579182015b828111156200024657825182559160200191906001019062000229565b5b5090506200025691906200025a565b5090565b5b80821115620002755760008160009055506001016200025b565b5090565b600060028204905060018216806200029257607f821691505b60208210811415620002a957620002a8620002af565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614fa280620002ee6000396000f3fe60806040526004361061023b5760003560e01c80637d55094d1161012e578063c6f6f216116100ab578063dc33e6811161006f578063dc33e6811461084e578063e268e4d31461088b578063e985e9c5146108b4578063f2fde38b146108f1578063f968adbe1461091a5761023b565b8063c6f6f21614610767578063c87b56dd14610790578063d1239730146107cd578063d5abeb01146107f8578063d7224ba0146108235761023b565b806395d89b41116100f257806395d89b41146106a3578063a035b1fe146106ce578063a0712d68146106f9578063a22cb46514610715578063b88d4fde1461073e5761023b565b80637d55094d146105d25780638da5cb5b146105e95780638db89f071461061457806391b7f5ed1461063d5780639231ab2a146106665761023b565b80633ccfd60b116101bc578063563aaf1111610180578063563aaf11146104ed5780636352211e146105165780636c0360eb1461055357806370a082311461057e578063715018a6146105bb5761023b565b80633ccfd60b1461041c57806342842e0e14610433578063453c23101461045c5780634f6ccce71461048757806355f804b3146104c45761023b565b8063228025e811610203578063228025e81461033957806323b872dd146103625780632d20fb601461038b5780632f745c59146103b4578063333e44e6146103f15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061371a565b610945565b6040516102749190613e2e565b60405180910390f35b34801561028957600080fd5b50610292610a8f565b60405161029f9190613e49565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906137c1565b610b21565b6040516102dc9190613dc7565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906136da565b610ba6565b005b34801561031a57600080fd5b50610323610cbf565b6040516103309190614286565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906137c1565b610cc8565b005b34801561036e57600080fd5b50610389600480360381019061038491906135c4565b610d4e565b005b34801561039757600080fd5b506103b260048036038101906103ad91906137c1565b610d5e565b005b3480156103c057600080fd5b506103db60048036038101906103d691906136da565b610e3c565b6040516103e89190614286565b60405180910390f35b3480156103fd57600080fd5b5061040661102e565b6040516104139190614286565b60405180910390f35b34801561042857600080fd5b50610431611034565b005b34801561043f57600080fd5b5061045a600480360381019061045591906135c4565b6111b5565b005b34801561046857600080fd5b506104716111d5565b60405161047e9190614286565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a991906137c1565b6111db565b6040516104bb9190614286565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190613774565b61122e565b005b3480156104f957600080fd5b50610514600480360381019061050f91906137c1565b6112c0565b005b34801561052257600080fd5b5061053d600480360381019061053891906137c1565b611346565b60405161054a9190613dc7565b60405180910390f35b34801561055f57600080fd5b5061056861135c565b6040516105759190613e49565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190613557565b6113ea565b6040516105b29190614286565b60405180910390f35b3480156105c757600080fd5b506105d06114d3565b005b3480156105de57600080fd5b506105e761155b565b005b3480156105f557600080fd5b506105fe611603565b60405161060b9190613dc7565b60405180910390f35b34801561062057600080fd5b5061063b600480360381019061063691906137c1565b61162d565b005b34801561064957600080fd5b50610664600480360381019061065f91906137c1565b611718565b005b34801561067257600080fd5b5061068d600480360381019061068891906137c1565b61179e565b60405161069a919061426b565b60405180910390f35b3480156106af57600080fd5b506106b86117b6565b6040516106c59190613e49565b60405180910390f35b3480156106da57600080fd5b506106e3611848565b6040516106f09190614286565b60405180910390f35b610713600480360381019061070e91906137c1565b61184e565b005b34801561072157600080fd5b5061073c6004803603810190610737919061369a565b611aa4565b005b34801561074a57600080fd5b5061076560048036038101906107609190613617565b611c25565b005b34801561077357600080fd5b5061078e600480360381019061078991906137c1565b611c81565b005b34801561079c57600080fd5b506107b760048036038101906107b291906137c1565b611d07565b6040516107c49190613e49565b60405180910390f35b3480156107d957600080fd5b506107e2611daf565b6040516107ef9190613e2e565b60405180910390f35b34801561080457600080fd5b5061080d611dc2565b60405161081a9190614286565b60405180910390f35b34801561082f57600080fd5b50610838611dc8565b6040516108459190614286565b60405180910390f35b34801561085a57600080fd5b5061087560048036038101906108709190613557565b611dce565b6040516108829190614286565b60405180910390f35b34801561089757600080fd5b506108b260048036038101906108ad91906137c1565b611de0565b005b3480156108c057600080fd5b506108db60048036038101906108d69190613584565b611e66565b6040516108e89190613e2e565b60405180910390f35b3480156108fd57600080fd5b5061091860048036038101906109139190613557565b611efa565b005b34801561092657600080fd5b5061092f611ff2565b60405161093c9190614286565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a7857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a885750610a8782611ff8565b5b9050919050565b606060018054610a9e90614524565b80601f0160208091040260200160405190810160405280929190818152602001828054610aca90614524565b8015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b5050505050905090565b6000610b2c82612062565b610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b629061420b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb182611346565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c19906140eb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c4161206f565b73ffffffffffffffffffffffffffffffffffffffff161480610c705750610c6f81610c6a61206f565b611e66565b5b610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690613fcb565b60405180910390fd5b610cba838383612077565b505050565b60008054905090565b610cd061206f565b73ffffffffffffffffffffffffffffffffffffffff16610cee611603565b73ffffffffffffffffffffffffffffffffffffffff1614610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b9061404b565b60405180910390fd5b80600e8190555050565b610d59838383612129565b505050565b610d6661206f565b73ffffffffffffffffffffffffffffffffffffffff16610d84611603565b73ffffffffffffffffffffffffffffffffffffffff1614610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd19061404b565b60405180910390fd5b60026008541415610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e17906141ab565b60405180910390fd5b6002600881905550610e3181612669565b600160088190555050565b6000610e47836113ea565b8210610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90613e6b565b60405180910390fd5b6000610e92610cbf565b905060008060005b83811015610fec576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f8c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fde5786841415610fd5578195505050505050611028565b83806001019450505b508080600101915050610e9a565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f9061418b565b60405180910390fd5b92915050565b600d5481565b61103c61206f565b73ffffffffffffffffffffffffffffffffffffffff1661105a611603565b73ffffffffffffffffffffffffffffffffffffffff16146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a79061404b565b60405180910390fd5b600260085414156110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed906141ab565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161112490613db2565b60006040518083038185875af1925050503d8060008114611161576040519150601f19603f3d011682016040523d82523d6000602084013e611166565b606091505b50509050806111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a19061410b565b60405180910390fd5b506001600881905550565b6111d083838360405180602001604052806000815250611c25565b505050565b600c5481565b60006111e5610cbf565b8210611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90613f0b565b60405180910390fd5b819050919050565b61123661206f565b73ffffffffffffffffffffffffffffffffffffffff16611254611603565b73ffffffffffffffffffffffffffffffffffffffff16146112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a19061404b565b60405180910390fd5b8181600991906112bb92919061334b565b505050565b6112c861206f565b73ffffffffffffffffffffffffffffffffffffffff166112e6611603565b73ffffffffffffffffffffffffffffffffffffffff161461133c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113339061404b565b60405180910390fd5b80600d8190555050565b60006113518261289b565b600001519050919050565b6009805461136990614524565b80601f016020809104026020016040519081016040528092919081815260200182805461139590614524565b80156113e25780601f106113b7576101008083540402835291602001916113e2565b820191906000526020600020905b8154815290600101906020018083116113c557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114529061400b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114db61206f565b73ffffffffffffffffffffffffffffffffffffffff166114f9611603565b73ffffffffffffffffffffffffffffffffffffffff161461154f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115469061404b565b60405180910390fd5b6115596000612a35565b565b61156361206f565b73ffffffffffffffffffffffffffffffffffffffff16611581611603565b73ffffffffffffffffffffffffffffffffffffffff16146115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce9061404b565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61163561206f565b73ffffffffffffffffffffffffffffffffffffffff16611653611603565b73ffffffffffffffffffffffffffffffffffffffff16146116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a09061404b565b60405180910390fd5b6001600e546116b89190614345565b816116c1610cbf565b6116cb9190614345565b1061170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290613fab565b60405180910390fd5b6117153382612afb565b50565b61172061206f565b73ffffffffffffffffffffffffffffffffffffffff1661173e611603565b73ffffffffffffffffffffffffffffffffffffffff1614611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b9061404b565b60405180910390fd5b80600a8190555050565b6117a66133d1565b6117af8261289b565b9050919050565b6060600280546117c590614524565b80601f01602080910402602001604051908101604052809291908181526020018280546117f190614524565b801561183e5780601f106118135761010080835404028352916020019161183e565b820191906000526020600020905b81548152906001019060200180831161182157829003601f168201915b5050505050905090565b600a5481565b6000600a5490506001600d546118649190614345565b8261186d610cbf565b6118779190614345565b101561188257600090505b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e79061424b565b60405180910390fd5b80826118fc91906143cc565b341461193d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119349061422b565b60405180910390fd5b6001600e5461194c9190614345565b82611955610cbf565b61195f9190614345565b1061199f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611996906141eb565b60405180910390fd5b601060009054906101000a900460ff166119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e590613f6b565b60405180910390fd5b600c54826119fb33611dce565b611a059190614345565b1115611a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3d90613ecb565b60405180910390fd5b6001600b54611a559190614345565b8210611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d906140cb565b60405180910390fd5b611aa03383612afb565b5050565b611aac61206f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b119061408b565b60405180910390fd5b8060066000611b2761206f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bd461206f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c199190613e2e565b60405180910390a35050565b611c30848484612129565b611c3c84848484612b19565b611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c729061412b565b60405180910390fd5b50505050565b611c8961206f565b73ffffffffffffffffffffffffffffffffffffffff16611ca7611603565b73ffffffffffffffffffffffffffffffffffffffff1614611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf49061404b565b60405180910390fd5b80600b8190555050565b6060611d1282612062565b611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d489061406b565b60405180910390fd5b6000611d5b612cb0565b9050600081511415611d7c5760405180602001604052806000815250611da7565b80611d8684612d42565b604051602001611d97929190613d8e565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600e5481565b600f5481565b6000611dd982612ea3565b9050919050565b611de861206f565b73ffffffffffffffffffffffffffffffffffffffff16611e06611603565b73ffffffffffffffffffffffffffffffffffffffff1614611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e539061404b565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f0261206f565b73ffffffffffffffffffffffffffffffffffffffff16611f20611603565b73ffffffffffffffffffffffffffffffffffffffff1614611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d9061404b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdd90613e8b565b60405180910390fd5b611fef81612a35565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121348261289b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661215b61206f565b73ffffffffffffffffffffffffffffffffffffffff1614806121b7575061218061206f565b73ffffffffffffffffffffffffffffffffffffffff1661219f84610b21565b73ffffffffffffffffffffffffffffffffffffffff16145b806121d357506121d282600001516121cd61206f565b611e66565b5b905080612215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220c906140ab565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227e9061402b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee90613f2b565b60405180910390fd5b6123048585856001612f8c565b6123146000848460000151612077565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125f95761255881612062565b156125f85782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126628585856001612f92565b5050505050565b60008114156126ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a490613feb565b60405180910390fd5b6000805414156126f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e990613eeb565b60405180910390fd5b6000600f549050600054811061273d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273490613f8b565b60405180910390fd5b6000600183830103905060005460018201111561275d5760016000540390505b60008290505b81811161288b57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561287e5760006127e08261289b565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b8080600101915050612763565b5060018101600f81905550505050565b6128a36133d1565b6128ac82612062565b6128eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e290613eab565b60405180910390fd5b60008290505b600081106129f4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129e5578092505050612a30565b508080600190039150506128f1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a27906141cb565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b15828260405180602001604052806000815250612f98565b5050565b6000612b3a8473ffffffffffffffffffffffffffffffffffffffff16612faa565b15612ca3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b6361206f565b8786866040518563ffffffff1660e01b8152600401612b859493929190613de2565b602060405180830381600087803b158015612b9f57600080fd5b505af1925050508015612bd057506040513d601f19601f82011682018060405250810190612bcd9190613747565b60015b612c53573d8060008114612c00576040519150601f19603f3d011682016040523d82523d6000602084013e612c05565b606091505b50600081511415612c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c429061412b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ca8565b600190505b949350505050565b606060098054612cbf90614524565b80601f0160208091040260200160405190810160405280929190818152602001828054612ceb90614524565b8015612d385780601f10612d0d57610100808354040283529160200191612d38565b820191906000526020600020905b815481529060010190602001808311612d1b57829003601f168201915b5050505050905090565b60606000821415612d8a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e9e565b600082905060005b60008214612dbc578080612da590614587565b915050600a82612db5919061439b565b9150612d92565b60008167ffffffffffffffff811115612dd857612dd76146bd565b5b6040519080825280601f01601f191660200182016040528015612e0a5781602001600182028036833780820191505090505b5090505b60008514612e9757600182612e239190614426565b9150600a85612e3291906145d0565b6030612e3e9190614345565b60f81b818381518110612e5457612e5361468e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e90919061439b565b9450612e0e565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0b90613f4b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612fa58383836001612fcd565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303a9061414b565b60405180910390fd5b6000841415613087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307e9061416b565b60405180910390fd5b6130946000868387612f8c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561332e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613319576132d96000888488612b19565b613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330f9061412b565b60405180910390fd5b5b81806001019250508080600101915050613262565b5080600081905550506133446000868387612f92565b5050505050565b82805461335790614524565b90600052602060002090601f01602090048101928261337957600085556133c0565b82601f1061339257803560ff19168380011785556133c0565b828001600101855582156133c0579182015b828111156133bf5782358255916020019190600101906133a4565b5b5090506133cd919061340b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561342457600081600090555060010161340c565b5090565b600061343b613436846142c6565b6142a1565b905082815260208101848484011115613457576134566146fb565b5b6134628482856144e2565b509392505050565b60008135905061347981614f10565b92915050565b60008135905061348e81614f27565b92915050565b6000813590506134a381614f3e565b92915050565b6000815190506134b881614f3e565b92915050565b600082601f8301126134d3576134d26146f1565b5b81356134e3848260208601613428565b91505092915050565b60008083601f840112613502576135016146f1565b5b8235905067ffffffffffffffff81111561351f5761351e6146ec565b5b60208301915083600182028301111561353b5761353a6146f6565b5b9250929050565b60008135905061355181614f55565b92915050565b60006020828403121561356d5761356c614705565b5b600061357b8482850161346a565b91505092915050565b6000806040838503121561359b5761359a614705565b5b60006135a98582860161346a565b92505060206135ba8582860161346a565b9150509250929050565b6000806000606084860312156135dd576135dc614705565b5b60006135eb8682870161346a565b93505060206135fc8682870161346a565b925050604061360d86828701613542565b9150509250925092565b6000806000806080858703121561363157613630614705565b5b600061363f8782880161346a565b94505060206136508782880161346a565b935050604061366187828801613542565b925050606085013567ffffffffffffffff81111561368257613681614700565b5b61368e878288016134be565b91505092959194509250565b600080604083850312156136b1576136b0614705565b5b60006136bf8582860161346a565b92505060206136d08582860161347f565b9150509250929050565b600080604083850312156136f1576136f0614705565b5b60006136ff8582860161346a565b925050602061371085828601613542565b9150509250929050565b6000602082840312156137305761372f614705565b5b600061373e84828501613494565b91505092915050565b60006020828403121561375d5761375c614705565b5b600061376b848285016134a9565b91505092915050565b6000806020838503121561378b5761378a614705565b5b600083013567ffffffffffffffff8111156137a9576137a8614700565b5b6137b5858286016134ec565b92509250509250929050565b6000602082840312156137d7576137d6614705565b5b60006137e584828501613542565b91505092915050565b6137f78161445a565b82525050565b6138068161445a565b82525050565b6138158161446c565b82525050565b6000613826826142f7565b613830818561430d565b93506138408185602086016144f1565b6138498161470a565b840191505092915050565b600061385f82614302565b6138698185614329565b93506138798185602086016144f1565b6138828161470a565b840191505092915050565b600061389882614302565b6138a2818561433a565b93506138b28185602086016144f1565b80840191505092915050565b60006138cb602283614329565b91506138d68261471b565b604082019050919050565b60006138ee602683614329565b91506138f98261476a565b604082019050919050565b6000613911602a83614329565b915061391c826147b9565b604082019050919050565b6000613934602e83614329565b915061393f82614808565b604082019050919050565b6000613957601483614329565b915061396282614857565b602082019050919050565b600061397a602383614329565b915061398582614880565b604082019050919050565b600061399d602583614329565b91506139a8826148cf565b604082019050919050565b60006139c0603183614329565b91506139cb8261491e565b604082019050919050565b60006139e3601383614329565b91506139ee8261496d565b602082019050919050565b6000613a06601c83614329565b9150613a1182614996565b602082019050919050565b6000613a29600983614329565b9150613a34826149bf565b602082019050919050565b6000613a4c603983614329565b9150613a57826149e8565b604082019050919050565b6000613a6f601883614329565b9150613a7a82614a37565b602082019050919050565b6000613a92602b83614329565b9150613a9d82614a60565b604082019050919050565b6000613ab5602683614329565b9150613ac082614aaf565b604082019050919050565b6000613ad8602083614329565b9150613ae382614afe565b602082019050919050565b6000613afb602f83614329565b9150613b0682614b27565b604082019050919050565b6000613b1e601a83614329565b9150613b2982614b76565b602082019050919050565b6000613b41603283614329565b9150613b4c82614b9f565b604082019050919050565b6000613b64601383614329565b9150613b6f82614bee565b602082019050919050565b6000613b87602283614329565b9150613b9282614c17565b604082019050919050565b6000613baa60008361431e565b9150613bb582614c66565b600082019050919050565b6000613bcd601083614329565b9150613bd882614c69565b602082019050919050565b6000613bf0603383614329565b9150613bfb82614c92565b604082019050919050565b6000613c13602183614329565b9150613c1e82614ce1565b604082019050919050565b6000613c36602883614329565b9150613c4182614d30565b604082019050919050565b6000613c59602e83614329565b9150613c6482614d7f565b604082019050919050565b6000613c7c601f83614329565b9150613c8782614dce565b602082019050919050565b6000613c9f602f83614329565b9150613caa82614df7565b604082019050919050565b6000613cc2600983614329565b9150613ccd82614e46565b602082019050919050565b6000613ce5602d83614329565b9150613cf082614e6f565b604082019050919050565b6000613d08601583614329565b9150613d1382614ebe565b602082019050919050565b6000613d2b601783614329565b9150613d3682614ee7565b602082019050919050565b604082016000820151613d5760008501826137ee565b506020820151613d6a6020850182613d7f565b50505050565b613d79816144c4565b82525050565b613d88816144ce565b82525050565b6000613d9a828561388d565b9150613da6828461388d565b91508190509392505050565b6000613dbd82613b9d565b9150819050919050565b6000602082019050613ddc60008301846137fd565b92915050565b6000608082019050613df760008301876137fd565b613e0460208301866137fd565b613e116040830185613d70565b8181036060830152613e23818461381b565b905095945050505050565b6000602082019050613e43600083018461380c565b92915050565b60006020820190508181036000830152613e638184613854565b905092915050565b60006020820190508181036000830152613e84816138be565b9050919050565b60006020820190508181036000830152613ea4816138e1565b9050919050565b60006020820190508181036000830152613ec481613904565b9050919050565b60006020820190508181036000830152613ee481613927565b9050919050565b60006020820190508181036000830152613f048161394a565b9050919050565b60006020820190508181036000830152613f248161396d565b9050919050565b60006020820190508181036000830152613f4481613990565b9050919050565b60006020820190508181036000830152613f64816139b3565b9050919050565b60006020820190508181036000830152613f84816139d6565b9050919050565b60006020820190508181036000830152613fa4816139f9565b9050919050565b60006020820190508181036000830152613fc481613a1c565b9050919050565b60006020820190508181036000830152613fe481613a3f565b9050919050565b6000602082019050818103600083015261400481613a62565b9050919050565b6000602082019050818103600083015261402481613a85565b9050919050565b6000602082019050818103600083015261404481613aa8565b9050919050565b6000602082019050818103600083015261406481613acb565b9050919050565b6000602082019050818103600083015261408481613aee565b9050919050565b600060208201905081810360008301526140a481613b11565b9050919050565b600060208201905081810360008301526140c481613b34565b9050919050565b600060208201905081810360008301526140e481613b57565b9050919050565b6000602082019050818103600083015261410481613b7a565b9050919050565b6000602082019050818103600083015261412481613bc0565b9050919050565b6000602082019050818103600083015261414481613be3565b9050919050565b6000602082019050818103600083015261416481613c06565b9050919050565b6000602082019050818103600083015261418481613c29565b9050919050565b600060208201905081810360008301526141a481613c4c565b9050919050565b600060208201905081810360008301526141c481613c6f565b9050919050565b600060208201905081810360008301526141e481613c92565b9050919050565b6000602082019050818103600083015261420481613cb5565b9050919050565b6000602082019050818103600083015261422481613cd8565b9050919050565b6000602082019050818103600083015261424481613cfb565b9050919050565b6000602082019050818103600083015261426481613d1e565b9050919050565b60006040820190506142806000830184613d41565b92915050565b600060208201905061429b6000830184613d70565b92915050565b60006142ab6142bc565b90506142b78282614556565b919050565b6000604051905090565b600067ffffffffffffffff8211156142e1576142e06146bd565b5b6142ea8261470a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614350826144c4565b915061435b836144c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143905761438f614601565b5b828201905092915050565b60006143a6826144c4565b91506143b1836144c4565b9250826143c1576143c0614630565b5b828204905092915050565b60006143d7826144c4565b91506143e2836144c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561441b5761441a614601565b5b828202905092915050565b6000614431826144c4565b915061443c836144c4565b92508282101561444f5761444e614601565b5b828203905092915050565b6000614465826144a4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561450f5780820151818401526020810190506144f4565b8381111561451e576000848401525b50505050565b6000600282049050600182168061453c57607f821691505b602082108114156145505761454f61465f565b5b50919050565b61455f8261470a565b810181811067ffffffffffffffff8211171561457e5761457d6146bd565b5b80604052505050565b6000614592826144c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145c5576145c4614601565b5b600182019050919050565b60006145db826144c4565b91506145e6836144c4565b9250826145f6576145f5614630565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f646f6e2774206265206772656564792120746f6f206d616e792070657220776160008201527f6c6c657420726571756573746564000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f6d696e74696e67206973206e6f74206c69766500000000000000000000000000600082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f6d61782070657220747820657863656564656400000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f736f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f696e636f727265637420616d6f756e742073656e740000000000000000000000600082015250565b7f77686f20796f7520747279696e6720746f20666f6f6c3f000000000000000000600082015250565b614f198161445a565b8114614f2457600080fd5b50565b614f308161446c565b8114614f3b57600080fd5b50565b614f4781614478565b8114614f5257600080fd5b50565b614f5e816144c4565b8114614f6957600080fd5b5056fea2646970667358221220ae6ddb199f04035e3773d3fdc87590a307940532fcd516710bff1fc8b4136a0564736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80637d55094d1161012e578063c6f6f216116100ab578063dc33e6811161006f578063dc33e6811461084e578063e268e4d31461088b578063e985e9c5146108b4578063f2fde38b146108f1578063f968adbe1461091a5761023b565b8063c6f6f21614610767578063c87b56dd14610790578063d1239730146107cd578063d5abeb01146107f8578063d7224ba0146108235761023b565b806395d89b41116100f257806395d89b41146106a3578063a035b1fe146106ce578063a0712d68146106f9578063a22cb46514610715578063b88d4fde1461073e5761023b565b80637d55094d146105d25780638da5cb5b146105e95780638db89f071461061457806391b7f5ed1461063d5780639231ab2a146106665761023b565b80633ccfd60b116101bc578063563aaf1111610180578063563aaf11146104ed5780636352211e146105165780636c0360eb1461055357806370a082311461057e578063715018a6146105bb5761023b565b80633ccfd60b1461041c57806342842e0e14610433578063453c23101461045c5780634f6ccce71461048757806355f804b3146104c45761023b565b8063228025e811610203578063228025e81461033957806323b872dd146103625780632d20fb601461038b5780632f745c59146103b4578063333e44e6146103f15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061371a565b610945565b6040516102749190613e2e565b60405180910390f35b34801561028957600080fd5b50610292610a8f565b60405161029f9190613e49565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906137c1565b610b21565b6040516102dc9190613dc7565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906136da565b610ba6565b005b34801561031a57600080fd5b50610323610cbf565b6040516103309190614286565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906137c1565b610cc8565b005b34801561036e57600080fd5b50610389600480360381019061038491906135c4565b610d4e565b005b34801561039757600080fd5b506103b260048036038101906103ad91906137c1565b610d5e565b005b3480156103c057600080fd5b506103db60048036038101906103d691906136da565b610e3c565b6040516103e89190614286565b60405180910390f35b3480156103fd57600080fd5b5061040661102e565b6040516104139190614286565b60405180910390f35b34801561042857600080fd5b50610431611034565b005b34801561043f57600080fd5b5061045a600480360381019061045591906135c4565b6111b5565b005b34801561046857600080fd5b506104716111d5565b60405161047e9190614286565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a991906137c1565b6111db565b6040516104bb9190614286565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190613774565b61122e565b005b3480156104f957600080fd5b50610514600480360381019061050f91906137c1565b6112c0565b005b34801561052257600080fd5b5061053d600480360381019061053891906137c1565b611346565b60405161054a9190613dc7565b60405180910390f35b34801561055f57600080fd5b5061056861135c565b6040516105759190613e49565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190613557565b6113ea565b6040516105b29190614286565b60405180910390f35b3480156105c757600080fd5b506105d06114d3565b005b3480156105de57600080fd5b506105e761155b565b005b3480156105f557600080fd5b506105fe611603565b60405161060b9190613dc7565b60405180910390f35b34801561062057600080fd5b5061063b600480360381019061063691906137c1565b61162d565b005b34801561064957600080fd5b50610664600480360381019061065f91906137c1565b611718565b005b34801561067257600080fd5b5061068d600480360381019061068891906137c1565b61179e565b60405161069a919061426b565b60405180910390f35b3480156106af57600080fd5b506106b86117b6565b6040516106c59190613e49565b60405180910390f35b3480156106da57600080fd5b506106e3611848565b6040516106f09190614286565b60405180910390f35b610713600480360381019061070e91906137c1565b61184e565b005b34801561072157600080fd5b5061073c6004803603810190610737919061369a565b611aa4565b005b34801561074a57600080fd5b5061076560048036038101906107609190613617565b611c25565b005b34801561077357600080fd5b5061078e600480360381019061078991906137c1565b611c81565b005b34801561079c57600080fd5b506107b760048036038101906107b291906137c1565b611d07565b6040516107c49190613e49565b60405180910390f35b3480156107d957600080fd5b506107e2611daf565b6040516107ef9190613e2e565b60405180910390f35b34801561080457600080fd5b5061080d611dc2565b60405161081a9190614286565b60405180910390f35b34801561082f57600080fd5b50610838611dc8565b6040516108459190614286565b60405180910390f35b34801561085a57600080fd5b5061087560048036038101906108709190613557565b611dce565b6040516108829190614286565b60405180910390f35b34801561089757600080fd5b506108b260048036038101906108ad91906137c1565b611de0565b005b3480156108c057600080fd5b506108db60048036038101906108d69190613584565b611e66565b6040516108e89190613e2e565b60405180910390f35b3480156108fd57600080fd5b5061091860048036038101906109139190613557565b611efa565b005b34801561092657600080fd5b5061092f611ff2565b60405161093c9190614286565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a7857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a885750610a8782611ff8565b5b9050919050565b606060018054610a9e90614524565b80601f0160208091040260200160405190810160405280929190818152602001828054610aca90614524565b8015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b5050505050905090565b6000610b2c82612062565b610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b629061420b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb182611346565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c19906140eb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c4161206f565b73ffffffffffffffffffffffffffffffffffffffff161480610c705750610c6f81610c6a61206f565b611e66565b5b610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690613fcb565b60405180910390fd5b610cba838383612077565b505050565b60008054905090565b610cd061206f565b73ffffffffffffffffffffffffffffffffffffffff16610cee611603565b73ffffffffffffffffffffffffffffffffffffffff1614610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b9061404b565b60405180910390fd5b80600e8190555050565b610d59838383612129565b505050565b610d6661206f565b73ffffffffffffffffffffffffffffffffffffffff16610d84611603565b73ffffffffffffffffffffffffffffffffffffffff1614610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd19061404b565b60405180910390fd5b60026008541415610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e17906141ab565b60405180910390fd5b6002600881905550610e3181612669565b600160088190555050565b6000610e47836113ea565b8210610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90613e6b565b60405180910390fd5b6000610e92610cbf565b905060008060005b83811015610fec576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f8c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fde5786841415610fd5578195505050505050611028565b83806001019450505b508080600101915050610e9a565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f9061418b565b60405180910390fd5b92915050565b600d5481565b61103c61206f565b73ffffffffffffffffffffffffffffffffffffffff1661105a611603565b73ffffffffffffffffffffffffffffffffffffffff16146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a79061404b565b60405180910390fd5b600260085414156110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed906141ab565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161112490613db2565b60006040518083038185875af1925050503d8060008114611161576040519150601f19603f3d011682016040523d82523d6000602084013e611166565b606091505b50509050806111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a19061410b565b60405180910390fd5b506001600881905550565b6111d083838360405180602001604052806000815250611c25565b505050565b600c5481565b60006111e5610cbf565b8210611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90613f0b565b60405180910390fd5b819050919050565b61123661206f565b73ffffffffffffffffffffffffffffffffffffffff16611254611603565b73ffffffffffffffffffffffffffffffffffffffff16146112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a19061404b565b60405180910390fd5b8181600991906112bb92919061334b565b505050565b6112c861206f565b73ffffffffffffffffffffffffffffffffffffffff166112e6611603565b73ffffffffffffffffffffffffffffffffffffffff161461133c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113339061404b565b60405180910390fd5b80600d8190555050565b60006113518261289b565b600001519050919050565b6009805461136990614524565b80601f016020809104026020016040519081016040528092919081815260200182805461139590614524565b80156113e25780601f106113b7576101008083540402835291602001916113e2565b820191906000526020600020905b8154815290600101906020018083116113c557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114529061400b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114db61206f565b73ffffffffffffffffffffffffffffffffffffffff166114f9611603565b73ffffffffffffffffffffffffffffffffffffffff161461154f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115469061404b565b60405180910390fd5b6115596000612a35565b565b61156361206f565b73ffffffffffffffffffffffffffffffffffffffff16611581611603565b73ffffffffffffffffffffffffffffffffffffffff16146115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce9061404b565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61163561206f565b73ffffffffffffffffffffffffffffffffffffffff16611653611603565b73ffffffffffffffffffffffffffffffffffffffff16146116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a09061404b565b60405180910390fd5b6001600e546116b89190614345565b816116c1610cbf565b6116cb9190614345565b1061170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290613fab565b60405180910390fd5b6117153382612afb565b50565b61172061206f565b73ffffffffffffffffffffffffffffffffffffffff1661173e611603565b73ffffffffffffffffffffffffffffffffffffffff1614611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b9061404b565b60405180910390fd5b80600a8190555050565b6117a66133d1565b6117af8261289b565b9050919050565b6060600280546117c590614524565b80601f01602080910402602001604051908101604052809291908181526020018280546117f190614524565b801561183e5780601f106118135761010080835404028352916020019161183e565b820191906000526020600020905b81548152906001019060200180831161182157829003601f168201915b5050505050905090565b600a5481565b6000600a5490506001600d546118649190614345565b8261186d610cbf565b6118779190614345565b101561188257600090505b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e79061424b565b60405180910390fd5b80826118fc91906143cc565b341461193d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119349061422b565b60405180910390fd5b6001600e5461194c9190614345565b82611955610cbf565b61195f9190614345565b1061199f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611996906141eb565b60405180910390fd5b601060009054906101000a900460ff166119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e590613f6b565b60405180910390fd5b600c54826119fb33611dce565b611a059190614345565b1115611a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3d90613ecb565b60405180910390fd5b6001600b54611a559190614345565b8210611a96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8d906140cb565b60405180910390fd5b611aa03383612afb565b5050565b611aac61206f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b119061408b565b60405180910390fd5b8060066000611b2761206f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bd461206f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c199190613e2e565b60405180910390a35050565b611c30848484612129565b611c3c84848484612b19565b611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c729061412b565b60405180910390fd5b50505050565b611c8961206f565b73ffffffffffffffffffffffffffffffffffffffff16611ca7611603565b73ffffffffffffffffffffffffffffffffffffffff1614611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf49061404b565b60405180910390fd5b80600b8190555050565b6060611d1282612062565b611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d489061406b565b60405180910390fd5b6000611d5b612cb0565b9050600081511415611d7c5760405180602001604052806000815250611da7565b80611d8684612d42565b604051602001611d97929190613d8e565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600e5481565b600f5481565b6000611dd982612ea3565b9050919050565b611de861206f565b73ffffffffffffffffffffffffffffffffffffffff16611e06611603565b73ffffffffffffffffffffffffffffffffffffffff1614611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e539061404b565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f0261206f565b73ffffffffffffffffffffffffffffffffffffffff16611f20611603565b73ffffffffffffffffffffffffffffffffffffffff1614611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d9061404b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdd90613e8b565b60405180910390fd5b611fef81612a35565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121348261289b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661215b61206f565b73ffffffffffffffffffffffffffffffffffffffff1614806121b7575061218061206f565b73ffffffffffffffffffffffffffffffffffffffff1661219f84610b21565b73ffffffffffffffffffffffffffffffffffffffff16145b806121d357506121d282600001516121cd61206f565b611e66565b5b905080612215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220c906140ab565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227e9061402b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee90613f2b565b60405180910390fd5b6123048585856001612f8c565b6123146000848460000151612077565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125f95761255881612062565b156125f85782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126628585856001612f92565b5050505050565b60008114156126ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a490613feb565b60405180910390fd5b6000805414156126f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e990613eeb565b60405180910390fd5b6000600f549050600054811061273d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273490613f8b565b60405180910390fd5b6000600183830103905060005460018201111561275d5760016000540390505b60008290505b81811161288b57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561287e5760006127e08261289b565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b8080600101915050612763565b5060018101600f81905550505050565b6128a36133d1565b6128ac82612062565b6128eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e290613eab565b60405180910390fd5b60008290505b600081106129f4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129e5578092505050612a30565b508080600190039150506128f1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a27906141cb565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b15828260405180602001604052806000815250612f98565b5050565b6000612b3a8473ffffffffffffffffffffffffffffffffffffffff16612faa565b15612ca3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b6361206f565b8786866040518563ffffffff1660e01b8152600401612b859493929190613de2565b602060405180830381600087803b158015612b9f57600080fd5b505af1925050508015612bd057506040513d601f19601f82011682018060405250810190612bcd9190613747565b60015b612c53573d8060008114612c00576040519150601f19603f3d011682016040523d82523d6000602084013e612c05565b606091505b50600081511415612c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c429061412b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ca8565b600190505b949350505050565b606060098054612cbf90614524565b80601f0160208091040260200160405190810160405280929190818152602001828054612ceb90614524565b8015612d385780601f10612d0d57610100808354040283529160200191612d38565b820191906000526020600020905b815481529060010190602001808311612d1b57829003601f168201915b5050505050905090565b60606000821415612d8a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e9e565b600082905060005b60008214612dbc578080612da590614587565b915050600a82612db5919061439b565b9150612d92565b60008167ffffffffffffffff811115612dd857612dd76146bd565b5b6040519080825280601f01601f191660200182016040528015612e0a5781602001600182028036833780820191505090505b5090505b60008514612e9757600182612e239190614426565b9150600a85612e3291906145d0565b6030612e3e9190614345565b60f81b818381518110612e5457612e5361468e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e90919061439b565b9450612e0e565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0b90613f4b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612fa58383836001612fcd565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303a9061414b565b60405180910390fd5b6000841415613087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307e9061416b565b60405180910390fd5b6130946000868387612f8c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561332e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613319576132d96000888488612b19565b613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330f9061412b565b60405180910390fd5b5b81806001019250508080600101915050613262565b5080600081905550506133446000868387612f92565b5050505050565b82805461335790614524565b90600052602060002090601f01602090048101928261337957600085556133c0565b82601f1061339257803560ff19168380011785556133c0565b828001600101855582156133c0579182015b828111156133bf5782358255916020019190600101906133a4565b5b5090506133cd919061340b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561342457600081600090555060010161340c565b5090565b600061343b613436846142c6565b6142a1565b905082815260208101848484011115613457576134566146fb565b5b6134628482856144e2565b509392505050565b60008135905061347981614f10565b92915050565b60008135905061348e81614f27565b92915050565b6000813590506134a381614f3e565b92915050565b6000815190506134b881614f3e565b92915050565b600082601f8301126134d3576134d26146f1565b5b81356134e3848260208601613428565b91505092915050565b60008083601f840112613502576135016146f1565b5b8235905067ffffffffffffffff81111561351f5761351e6146ec565b5b60208301915083600182028301111561353b5761353a6146f6565b5b9250929050565b60008135905061355181614f55565b92915050565b60006020828403121561356d5761356c614705565b5b600061357b8482850161346a565b91505092915050565b6000806040838503121561359b5761359a614705565b5b60006135a98582860161346a565b92505060206135ba8582860161346a565b9150509250929050565b6000806000606084860312156135dd576135dc614705565b5b60006135eb8682870161346a565b93505060206135fc8682870161346a565b925050604061360d86828701613542565b9150509250925092565b6000806000806080858703121561363157613630614705565b5b600061363f8782880161346a565b94505060206136508782880161346a565b935050604061366187828801613542565b925050606085013567ffffffffffffffff81111561368257613681614700565b5b61368e878288016134be565b91505092959194509250565b600080604083850312156136b1576136b0614705565b5b60006136bf8582860161346a565b92505060206136d08582860161347f565b9150509250929050565b600080604083850312156136f1576136f0614705565b5b60006136ff8582860161346a565b925050602061371085828601613542565b9150509250929050565b6000602082840312156137305761372f614705565b5b600061373e84828501613494565b91505092915050565b60006020828403121561375d5761375c614705565b5b600061376b848285016134a9565b91505092915050565b6000806020838503121561378b5761378a614705565b5b600083013567ffffffffffffffff8111156137a9576137a8614700565b5b6137b5858286016134ec565b92509250509250929050565b6000602082840312156137d7576137d6614705565b5b60006137e584828501613542565b91505092915050565b6137f78161445a565b82525050565b6138068161445a565b82525050565b6138158161446c565b82525050565b6000613826826142f7565b613830818561430d565b93506138408185602086016144f1565b6138498161470a565b840191505092915050565b600061385f82614302565b6138698185614329565b93506138798185602086016144f1565b6138828161470a565b840191505092915050565b600061389882614302565b6138a2818561433a565b93506138b28185602086016144f1565b80840191505092915050565b60006138cb602283614329565b91506138d68261471b565b604082019050919050565b60006138ee602683614329565b91506138f98261476a565b604082019050919050565b6000613911602a83614329565b915061391c826147b9565b604082019050919050565b6000613934602e83614329565b915061393f82614808565b604082019050919050565b6000613957601483614329565b915061396282614857565b602082019050919050565b600061397a602383614329565b915061398582614880565b604082019050919050565b600061399d602583614329565b91506139a8826148cf565b604082019050919050565b60006139c0603183614329565b91506139cb8261491e565b604082019050919050565b60006139e3601383614329565b91506139ee8261496d565b602082019050919050565b6000613a06601c83614329565b9150613a1182614996565b602082019050919050565b6000613a29600983614329565b9150613a34826149bf565b602082019050919050565b6000613a4c603983614329565b9150613a57826149e8565b604082019050919050565b6000613a6f601883614329565b9150613a7a82614a37565b602082019050919050565b6000613a92602b83614329565b9150613a9d82614a60565b604082019050919050565b6000613ab5602683614329565b9150613ac082614aaf565b604082019050919050565b6000613ad8602083614329565b9150613ae382614afe565b602082019050919050565b6000613afb602f83614329565b9150613b0682614b27565b604082019050919050565b6000613b1e601a83614329565b9150613b2982614b76565b602082019050919050565b6000613b41603283614329565b9150613b4c82614b9f565b604082019050919050565b6000613b64601383614329565b9150613b6f82614bee565b602082019050919050565b6000613b87602283614329565b9150613b9282614c17565b604082019050919050565b6000613baa60008361431e565b9150613bb582614c66565b600082019050919050565b6000613bcd601083614329565b9150613bd882614c69565b602082019050919050565b6000613bf0603383614329565b9150613bfb82614c92565b604082019050919050565b6000613c13602183614329565b9150613c1e82614ce1565b604082019050919050565b6000613c36602883614329565b9150613c4182614d30565b604082019050919050565b6000613c59602e83614329565b9150613c6482614d7f565b604082019050919050565b6000613c7c601f83614329565b9150613c8782614dce565b602082019050919050565b6000613c9f602f83614329565b9150613caa82614df7565b604082019050919050565b6000613cc2600983614329565b9150613ccd82614e46565b602082019050919050565b6000613ce5602d83614329565b9150613cf082614e6f565b604082019050919050565b6000613d08601583614329565b9150613d1382614ebe565b602082019050919050565b6000613d2b601783614329565b9150613d3682614ee7565b602082019050919050565b604082016000820151613d5760008501826137ee565b506020820151613d6a6020850182613d7f565b50505050565b613d79816144c4565b82525050565b613d88816144ce565b82525050565b6000613d9a828561388d565b9150613da6828461388d565b91508190509392505050565b6000613dbd82613b9d565b9150819050919050565b6000602082019050613ddc60008301846137fd565b92915050565b6000608082019050613df760008301876137fd565b613e0460208301866137fd565b613e116040830185613d70565b8181036060830152613e23818461381b565b905095945050505050565b6000602082019050613e43600083018461380c565b92915050565b60006020820190508181036000830152613e638184613854565b905092915050565b60006020820190508181036000830152613e84816138be565b9050919050565b60006020820190508181036000830152613ea4816138e1565b9050919050565b60006020820190508181036000830152613ec481613904565b9050919050565b60006020820190508181036000830152613ee481613927565b9050919050565b60006020820190508181036000830152613f048161394a565b9050919050565b60006020820190508181036000830152613f248161396d565b9050919050565b60006020820190508181036000830152613f4481613990565b9050919050565b60006020820190508181036000830152613f64816139b3565b9050919050565b60006020820190508181036000830152613f84816139d6565b9050919050565b60006020820190508181036000830152613fa4816139f9565b9050919050565b60006020820190508181036000830152613fc481613a1c565b9050919050565b60006020820190508181036000830152613fe481613a3f565b9050919050565b6000602082019050818103600083015261400481613a62565b9050919050565b6000602082019050818103600083015261402481613a85565b9050919050565b6000602082019050818103600083015261404481613aa8565b9050919050565b6000602082019050818103600083015261406481613acb565b9050919050565b6000602082019050818103600083015261408481613aee565b9050919050565b600060208201905081810360008301526140a481613b11565b9050919050565b600060208201905081810360008301526140c481613b34565b9050919050565b600060208201905081810360008301526140e481613b57565b9050919050565b6000602082019050818103600083015261410481613b7a565b9050919050565b6000602082019050818103600083015261412481613bc0565b9050919050565b6000602082019050818103600083015261414481613be3565b9050919050565b6000602082019050818103600083015261416481613c06565b9050919050565b6000602082019050818103600083015261418481613c29565b9050919050565b600060208201905081810360008301526141a481613c4c565b9050919050565b600060208201905081810360008301526141c481613c6f565b9050919050565b600060208201905081810360008301526141e481613c92565b9050919050565b6000602082019050818103600083015261420481613cb5565b9050919050565b6000602082019050818103600083015261422481613cd8565b9050919050565b6000602082019050818103600083015261424481613cfb565b9050919050565b6000602082019050818103600083015261426481613d1e565b9050919050565b60006040820190506142806000830184613d41565b92915050565b600060208201905061429b6000830184613d70565b92915050565b60006142ab6142bc565b90506142b78282614556565b919050565b6000604051905090565b600067ffffffffffffffff8211156142e1576142e06146bd565b5b6142ea8261470a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614350826144c4565b915061435b836144c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143905761438f614601565b5b828201905092915050565b60006143a6826144c4565b91506143b1836144c4565b9250826143c1576143c0614630565b5b828204905092915050565b60006143d7826144c4565b91506143e2836144c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561441b5761441a614601565b5b828202905092915050565b6000614431826144c4565b915061443c836144c4565b92508282101561444f5761444e614601565b5b828203905092915050565b6000614465826144a4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561450f5780820151818401526020810190506144f4565b8381111561451e576000848401525b50505050565b6000600282049050600182168061453c57607f821691505b602082108114156145505761454f61465f565b5b50919050565b61455f8261470a565b810181811067ffffffffffffffff8211171561457e5761457d6146bd565b5b80604052505050565b6000614592826144c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145c5576145c4614601565b5b600182019050919050565b60006145db826144c4565b91506145e6836144c4565b9250826145f6576145f5614630565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f646f6e2774206265206772656564792120746f6f206d616e792070657220776160008201527f6c6c657420726571756573746564000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f6d696e74696e67206973206e6f74206c69766500000000000000000000000000600082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f6d61782070657220747820657863656564656400000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f736f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f696e636f727265637420616d6f756e742073656e740000000000000000000000600082015250565b7f77686f20796f7520747279696e6720746f20666f6f6c3f000000000000000000600082015250565b614f198161445a565b8114614f2457600080fd5b50565b614f308161446c565b8114614f3b57600080fd5b50565b614f4781614478565b8114614f5257600080fd5b50565b614f5e816144c4565b8114614f6957600080fd5b5056fea2646970667358221220ae6ddb199f04035e3773d3fdc87590a307940532fcd516710bff1fc8b4136a0564736f6c63430008070033

Deployed Bytecode Sourcemap

50877:3981:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37737:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39623:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41185:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40706:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35994:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52967:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42061:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53361:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36658:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51128:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53179:176;;;;;;;;;;;;;:::i;:::-;;42302:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51081:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36171:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52457:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52647:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39432:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50944:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38173:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11129:103;;;;;;;;;;;;;:::i;:::-;;52253:85;;;;;;;;;;;;;:::i;:::-;;10478:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52051:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52559:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53485:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39792:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50977:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51375:670;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41471:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42558:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52751:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39967:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51280:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51179:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51230:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52344:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52851:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41830:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11387:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51034:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37737:372;37839:4;37891:25;37876:40;;;:11;:40;;;;:105;;;;37948:33;37933:48;;;:11;:48;;;;37876:105;:172;;;;38013:35;37998:50;;;:11;:50;;;;37876:172;:225;;;;38065:36;38089:11;38065:23;:36::i;:::-;37876:225;37856:245;;37737:372;;;:::o;39623:100::-;39677:13;39710:5;39703:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39623:100;:::o;41185:214::-;41253:7;41281:16;41289:7;41281;:16::i;:::-;41273:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41367:15;:24;41383:7;41367:24;;;;;;;;;;;;;;;;;;;;;41360:31;;41185:214;;;:::o;40706:413::-;40779:13;40795:24;40811:7;40795:15;:24::i;:::-;40779:40;;40844:5;40838:11;;:2;:11;;;;40830:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40939:5;40923:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40948:37;40965:5;40972:12;:10;:12::i;:::-;40948:16;:37::i;:::-;40923:62;40901:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;41083:28;41092:2;41096:7;41105:5;41083:8;:28::i;:::-;40768:351;40706:413;;:::o;35994:100::-;36047:7;36074:12;;36067:19;;35994:100;:::o;52967:98::-;10709:12;:10;:12::i;:::-;10698:23;;:7;:5;:7::i;:::-;:23;;;10690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53049:10:::1;53037:9;:22;;;;52967:98:::0;:::o;42061:170::-;42195:28;42205:4;42211:2;42215:7;42195:9;:28::i;:::-;42061:170;;;:::o;53361:118::-;10709:12;:10;:12::i;:::-;10698:23;;:7;:5;:7::i;:::-;:23;;;10690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5452:1:::1;6050:7;;:19;;6042:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;5452:1;6183:7;:18;;;;53445:28:::2;53464:8;53445:18;:28::i;:::-;5408:1:::1;6362:7;:22;;;;53361:118:::0;:::o;36658:1007::-;36747:7;36783:16;36793:5;36783:9;:16::i;:::-;36775:5;:24;36767:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36849:22;36874:13;:11;:13::i;:::-;36849:38;;36898:19;36928:25;37117:9;37112:466;37132:14;37128:1;:18;37112:466;;;37172:31;37206:11;:14;37218:1;37206:14;;;;;;;;;;;37172:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37269:1;37243:28;;:9;:14;;;:28;;;37239:111;;37316:9;:14;;;37296:34;;37239:111;37393:5;37372:26;;:17;:26;;;37368:195;;;37442:5;37427:11;:20;37423:85;;;37483:1;37476:8;;;;;;;;;37423:85;37530:13;;;;;;;37368:195;37153:425;37148:3;;;;;;;37112:466;;;;37601:56;;;;;;;;;;:::i;:::-;;;;;;;;36658:1007;;;;;:::o;51128:46::-;;;;:::o;53179:176::-;10709:12;:10;:12::i;:::-;10698:23;;:7;:5;:7::i;:::-;:23;;;10690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5452:1:::1;6050:7;;:19;;6042:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;5452:1;6183:7;:18;;;;53239:12:::2;53257:10;:15;;53280:21;53257:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53238:68;;;53321:7;53313:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;53231:124;5408:1:::1;6362:7;:22;;;;53179:176::o:0;42302:185::-;42440:39;42457:4;42463:2;42467:7;42440:39;;;;;;;;;;;;:16;:39::i;:::-;42302:185;;;:::o;51081:42::-;;;;:::o;36171:187::-;36238:7;36274:13;:11;:13::i;:::-;36266:5;:21;36258:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;36345:5;36338:12;;36171:187;;;:::o;52457:96::-;10709:12;:10;:12::i;:::-;10698:23;;:7;:5;:7::i;:::-;:23;;;10690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52539:8:::1;;52529:7;:18;;;;;;;:::i;:::-;;52457:96:::0;;:::o;52647:98::-;10709:12;:10;:12::i;:::-;10698:23;;:7;:5;:7::i;:::-;:23;;;10690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52729:10:::1;52717:9;:22;;;;52647:98:::0;:::o;39432:124::-;39496:7;39523:20;39535:7;39523:11;:20::i;:::-;:25;;;39516:32;;39432:124;;;:::o;50944:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38173:221::-;38237:7;38282:1;38265:19;;:5;:19;;;;38257:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;38358:12;:19;38371:5;38358:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;38350:36;;38343:43;;38173:221;;;:::o;11129:103::-;10709:12;:10;:12::i;:::-;10698:23;;:7;:5;:7::i;:::-;:23;;;10690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11194:30:::1;11221:1;11194:18;:30::i;:::-;11129:103::o:0;52253:85::-;10709:12;:10;:12::i;:::-;10698:23;;:7;:5;:7::i;:::-;:23;;;10690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52321:11:::1;;;;;;;;;;;52320:12;52306:11;;:26;;;;;;;;;;;;;;;;;;52253:85::o:0;10478:87::-;10524:7;10551:6;;;;;;;;;;;10544:13;;10478:87;:::o;52051:196::-;10709:12;:10;:12::i;:::-;10698:23;;:7;:5;:7::i;:::-;:23;;;10690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52181:1:::1;52169:9;;:13;;;;:::i;:::-;52152:14;52136:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;52128:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;52204:37;52214:10;52226:14;52204:9;:37::i;:::-;52051:196:::0;:::o;52559:82::-;10709:12;:10;:12::i;:::-;10698:23;;:7;:5;:7::i;:::-;:23;;;10690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52629:6:::1;52621:5;:14;;;;52559:82:::0;:::o;53485:132::-;53551:21;;:::i;:::-;53591:20;53603:7;53591:11;:20::i;:::-;53584:27;;53485:132;;;:::o;39792:104::-;39848:13;39881:7;39874:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39792:104;:::o;50977:52::-;;;;:::o;51375:670::-;51440:9;51452:5;;51440:17;;51512:1;51500:9;;:13;;;;:::i;:::-;51483:14;51467:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;51464:76;;;51531:1;51524:8;;51464:76;51568:9;51554:23;;:10;:23;;;51546:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;51649:4;51632:14;:21;;;;:::i;:::-;51619:9;:34;51611:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51738:1;51726:9;;:13;;;;:::i;:::-;51709:14;51693:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;51685:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51767:11;;;;;;;;;;;51759:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;51862:12;;51844:14;51817:24;51830:10;51817:12;:24::i;:::-;:41;;;;:::i;:::-;:57;;51809:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;51968:1;51957:8;;:12;;;;:::i;:::-;51940:14;:29;51931:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;52002:37;52012:10;52024:14;52002:9;:37::i;:::-;51433:612;51375:670;:::o;41471:288::-;41578:12;:10;:12::i;:::-;41566:24;;:8;:24;;;;41558:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41679:8;41634:18;:32;41653:12;:10;:12::i;:::-;41634:32;;;;;;;;;;;;;;;:42;41667:8;41634:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41732:8;41703:48;;41718:12;:10;:12::i;:::-;41703:48;;;41742:8;41703:48;;;;;;:::i;:::-;;;;;;;;41471:288;;:::o;42558:355::-;42717:28;42727:4;42733:2;42737:7;42717:9;:28::i;:::-;42778:48;42801:4;42807:2;42811:7;42820:5;42778:22;:48::i;:::-;42756:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;42558:355;;;;:::o;52751:94::-;10709:12;:10;:12::i;:::-;10698:23;;:7;:5;:7::i;:::-;:23;;;10690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52830:9:::1;52819:8;:20;;;;52751:94:::0;:::o;39967:335::-;40040:13;40074:16;40082:7;40074;:16::i;:::-;40066:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;40155:21;40179:10;:8;:10::i;:::-;40155:34;;40232:1;40213:7;40207:21;:26;;:87;;;;;;;;;;;;;;;;;40260:7;40269:18;:7;:16;:18::i;:::-;40243:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40207:87;40200:94;;;39967:335;;;:::o;51280:32::-;;;;;;;;;;;;;:::o;51179:46::-;;;;:::o;51230:45::-;;;;:::o;52344:107::-;52402:7;52425:20;52439:5;52425:13;:20::i;:::-;52418:27;;52344:107;;;:::o;52851:110::-;10709:12;:10;:12::i;:::-;10698:23;;:7;:5;:7::i;:::-;:23;;;10690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52942:13:::1;52927:12;:28;;;;52851:110:::0;:::o;41830:164::-;41927:4;41951:18;:25;41970:5;41951:25;;;;;;;;;;;;;;;:35;41977:8;41951:35;;;;;;;;;;;;;;;;;;;;;;;;;41944:42;;41830:164;;;;:::o;11387:201::-;10709:12;:10;:12::i;:::-;10698:23;;:7;:5;:7::i;:::-;:23;;;10690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11496:1:::1;11476:22;;:8;:22;;;;11468:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11552:28;11571:8;11552:18;:28::i;:::-;11387:201:::0;:::o;51034:42::-;;;;:::o;27257:157::-;27342:4;27381:25;27366:40;;;:11;:40;;;;27359:47;;27257:157;;;:::o;43168:111::-;43225:4;43259:12;;43249:7;:22;43242:29;;43168:111;;;:::o;9202:98::-;9255:7;9282:10;9275:17;;9202:98;:::o;48088:196::-;48230:2;48203:15;:24;48219:7;48203:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;48268:7;48264:2;48248:28;;48257:5;48248:28;;;;;;;;;;;;48088:196;;;:::o;45968:2002::-;46083:35;46121:20;46133:7;46121:11;:20::i;:::-;46083:58;;46154:22;46196:13;:18;;;46180:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;46255:12;:10;:12::i;:::-;46231:36;;:20;46243:7;46231:11;:20::i;:::-;:36;;;46180:87;:154;;;;46284:50;46301:13;:18;;;46321:12;:10;:12::i;:::-;46284:16;:50::i;:::-;46180:154;46154:181;;46356:17;46348:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;46471:4;46449:26;;:13;:18;;;:26;;;46441:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;46551:1;46537:16;;:2;:16;;;;46529:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;46608:43;46630:4;46636:2;46640:7;46649:1;46608:21;:43::i;:::-;46716:49;46733:1;46737:7;46746:13;:18;;;46716:8;:49::i;:::-;47091:1;47061:12;:18;47074:4;47061:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47135:1;47107:12;:16;47120:2;47107:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47181:2;47153:11;:20;47165:7;47153:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;47243:15;47198:11;:20;47210:7;47198:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;47511:19;47543:1;47533:7;:11;47511:33;;47604:1;47563:43;;:11;:24;47575:11;47563:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;47559:295;;;47631:20;47639:11;47631:7;:20::i;:::-;47627:212;;;47708:13;:18;;;47676:11;:24;47688:11;47676:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47791:13;:28;;;47749:11;:24;47761:11;47749:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;47627:212;47559:295;47036:829;47901:7;47897:2;47882:27;;47891:4;47882:27;;;;;;;;;;;;47920:42;47941:4;47947:2;47951:7;47960:1;47920:20;:42::i;:::-;46072:1898;;45968:2002;;;:::o;53725:1130::-;53809:1;53797:8;:13;;53789:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;53872:1;53856:12;;:17;;53848:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;53907:33;53943:24;;53907:60;;54012:12;;53984:25;:40;53976:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;54195:16;54253:1;54242:8;54214:25;:36;:40;54195:59;;54347:12;;54343:1;54332:8;:12;:27;54328:91;;;54404:1;54389:12;;:16;54378:27;;54328:91;54438:9;54450:25;54438:37;;54433:354;54482:8;54477:1;:13;54433:354;;54549:1;54518:33;;:11;:14;54530:1;54518:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;54514:260;;;54574:31;54608:14;54620:1;54608:11;:14::i;:::-;54574:48;;54665:9;:14;;;54643:11;:14;54655:1;54643:14;;;;;;;;;;;:19;;;:36;;;;;;;;;;;;;;;;;;54732:9;:24;;;54700:11;:14;54712:1;54700:14;;;;;;;;;;;:29;;;:56;;;;;;;;;;;;;;;;;;54553:221;54514:260;54492:3;;;;;;;54433:354;;;;54839:1;54828:8;:12;54801:24;:39;;;;54172:678;53780:1075;53725:1130;:::o;38833:537::-;38894:21;;:::i;:::-;38936:16;38944:7;38936;:16::i;:::-;38928:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;39042:12;39057:7;39042:22;;39037:245;39074:1;39066:4;:9;39037:245;;39104:31;39138:11;:17;39150:4;39138:17;;;;;;;;;;;39104:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39204:1;39178:28;;:9;:14;;;:28;;;39174:93;;39238:9;39231:16;;;;;;39174:93;39085:197;39077:6;;;;;;;;39037:245;;;;39305:57;;;;;;;;;;:::i;:::-;;;;;;;;38833:537;;;;:::o;11748:191::-;11822:16;11841:6;;;;;;;;;;;11822:25;;11867:8;11858:6;;:17;;;;;;;;;;;;;;;;;;11922:8;11891:40;;11912:8;11891:40;;;;;;;;;;;;11811:128;11748:191;:::o;43287:104::-;43356:27;43366:2;43370:8;43356:27;;;;;;;;;;;;:9;:27::i;:::-;43287:104;;:::o;48849:804::-;49004:4;49025:15;:2;:13;;;:15::i;:::-;49021:625;;;49077:2;49061:36;;;49098:12;:10;:12::i;:::-;49112:4;49118:7;49127:5;49061:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49057:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49324:1;49307:6;:13;:18;49303:273;;;49350:61;;;;;;;;;;:::i;:::-;;;;;;;;49303:273;49526:6;49520:13;49511:6;49507:2;49503:15;49496:38;49057:534;49194:45;;;49184:55;;;:6;:55;;;;49177:62;;;;;49021:625;49630:4;49623:11;;48849:804;;;;;;;:::o;53071:102::-;53131:13;53160:7;53153:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53071:102;:::o;6764:723::-;6820:13;7050:1;7041:5;:10;7037:53;;;7068:10;;;;;;;;;;;;;;;;;;;;;7037:53;7100:12;7115:5;7100:20;;7131:14;7156:78;7171:1;7163:4;:9;7156:78;;7189:8;;;;;:::i;:::-;;;;7220:2;7212:10;;;;;:::i;:::-;;;7156:78;;;7244:19;7276:6;7266:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7244:39;;7294:154;7310:1;7301:5;:10;7294:154;;7338:1;7328:11;;;;;:::i;:::-;;;7405:2;7397:5;:10;;;;:::i;:::-;7384:2;:24;;;;:::i;:::-;7371:39;;7354:6;7361;7354:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;7434:2;7425:11;;;;;:::i;:::-;;;7294:154;;;7472:6;7458:21;;;;;6764:723;;;;:::o;38402:229::-;38463:7;38508:1;38491:19;;:5;:19;;;;38483:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;38590:12;:19;38603:5;38590:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;38582:41;;38575:48;;38402:229;;;:::o;50141:159::-;;;;;:::o;50712:158::-;;;;;:::o;43754:163::-;43877:32;43883:2;43887:8;43897:5;43904:4;43877:5;:32::i;:::-;43754:163;;;:::o;13179:326::-;13239:4;13496:1;13474:7;:19;;;:23;13467:30;;13179:326;;;:::o;44176:1538::-;44315:20;44338:12;;44315:35;;44383:1;44369:16;;:2;:16;;;;44361:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;44454:1;44442:8;:13;;44434:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;44513:61;44543:1;44547:2;44551:12;44565:8;44513:21;:61::i;:::-;44888:8;44852:12;:16;44865:2;44852:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44953:8;44912:12;:16;44925:2;44912:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45012:2;44979:11;:25;44991:12;44979:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;45079:15;45029:11;:25;45041:12;45029:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;45112:20;45135:12;45112:35;;45169:9;45164:415;45184:8;45180:1;:12;45164:415;;;45248:12;45244:2;45223:38;;45240:1;45223:38;;;;;;;;;;;;45284:4;45280:249;;;45347:59;45378:1;45382:2;45386:12;45400:5;45347:22;:59::i;:::-;45313:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;45280:249;45549:14;;;;;;;45194:3;;;;;;;45164:415;;;;45610:12;45595;:27;;;;44827:807;45646:60;45675:1;45679:2;45683:12;45697:8;45646:20;:60::i;:::-;44304:1410;44176: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:398::-;16415:3;16436:83;16517:1;16512:3;16436:83;:::i;:::-;16429:90;;16528:93;16617:3;16528:93;:::i;:::-;16646:1;16641:3;16637:11;16630:18;;16256:398;;;:::o;16660:366::-;16802:3;16823:67;16887:2;16882:3;16823:67;:::i;:::-;16816:74;;16899:93;16988:3;16899:93;:::i;:::-;17017:2;17012:3;17008:12;17001:19;;16660:366;;;:::o;17032:::-;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:365::-;19406:3;19427:66;19491:1;19486:3;19427:66;:::i;:::-;19420:73;;19502:93;19591:3;19502:93;:::i;:::-;19620:2;19615:3;19611:12;19604:19;;19264:365;;;:::o;19635:366::-;19777:3;19798:67;19862:2;19857:3;19798:67;:::i;:::-;19791:74;;19874:93;19963:3;19874:93;:::i;:::-;19992:2;19987:3;19983:12;19976:19;;19635:366;;;:::o;20007:::-;20149:3;20170:67;20234:2;20229:3;20170:67;:::i;:::-;20163:74;;20246:93;20335:3;20246:93;:::i;:::-;20364:2;20359:3;20355:12;20348:19;;20007:366;;;:::o;20379:::-;20521:3;20542:67;20606:2;20601:3;20542:67;:::i;:::-;20535:74;;20618:93;20707:3;20618:93;:::i;:::-;20736:2;20731:3;20727:12;20720:19;;20379:366;;;:::o;20821:529::-;20982:4;20977:3;20973:14;21069:4;21062:5;21058:16;21052:23;21088:63;21145:4;21140:3;21136:14;21122:12;21088:63;:::i;:::-;20997:164;21253:4;21246:5;21242:16;21236:23;21272:61;21327:4;21322:3;21318:14;21304:12;21272:61;:::i;:::-;21171:172;20951:399;20821:529;;:::o;21356:118::-;21443:24;21461:5;21443:24;:::i;:::-;21438:3;21431:37;21356:118;;:::o;21480:105::-;21555:23;21572:5;21555:23;:::i;:::-;21550:3;21543:36;21480:105;;:::o;21591:435::-;21771:3;21793:95;21884:3;21875:6;21793:95;:::i;:::-;21786:102;;21905:95;21996:3;21987:6;21905:95;:::i;:::-;21898:102;;22017:3;22010:10;;21591:435;;;;;:::o;22032:379::-;22216:3;22238:147;22381:3;22238:147;:::i;:::-;22231:154;;22402:3;22395:10;;22032:379;;;:::o;22417:222::-;22510:4;22548:2;22537:9;22533:18;22525:26;;22561:71;22629:1;22618:9;22614:17;22605:6;22561:71;:::i;:::-;22417:222;;;;:::o;22645:640::-;22840:4;22878:3;22867:9;22863:19;22855:27;;22892:71;22960:1;22949:9;22945:17;22936:6;22892:71;:::i;:::-;22973:72;23041:2;23030:9;23026:18;23017:6;22973:72;:::i;:::-;23055;23123:2;23112:9;23108:18;23099:6;23055:72;:::i;:::-;23174:9;23168:4;23164:20;23159:2;23148:9;23144:18;23137:48;23202:76;23273:4;23264:6;23202:76;:::i;:::-;23194:84;;22645:640;;;;;;;:::o;23291:210::-;23378:4;23416:2;23405:9;23401:18;23393:26;;23429:65;23491:1;23480:9;23476:17;23467:6;23429:65;:::i;:::-;23291:210;;;;:::o;23507:313::-;23620:4;23658:2;23647:9;23643:18;23635:26;;23707:9;23701:4;23697:20;23693:1;23682:9;23678:17;23671:47;23735:78;23808:4;23799:6;23735:78;:::i;:::-;23727:86;;23507:313;;;;:::o;23826:419::-;23992:4;24030:2;24019:9;24015:18;24007:26;;24079:9;24073:4;24069:20;24065:1;24054:9;24050:17;24043:47;24107:131;24233:4;24107:131;:::i;:::-;24099:139;;23826:419;;;:::o;24251:::-;24417:4;24455:2;24444:9;24440:18;24432:26;;24504:9;24498:4;24494:20;24490:1;24479:9;24475:17;24468:47;24532:131;24658:4;24532:131;:::i;:::-;24524:139;;24251:419;;;:::o;24676:::-;24842:4;24880:2;24869:9;24865:18;24857:26;;24929:9;24923:4;24919:20;24915:1;24904:9;24900:17;24893:47;24957:131;25083:4;24957:131;:::i;:::-;24949:139;;24676:419;;;:::o;25101:::-;25267:4;25305:2;25294:9;25290:18;25282:26;;25354:9;25348:4;25344:20;25340:1;25329:9;25325:17;25318:47;25382:131;25508:4;25382:131;:::i;:::-;25374:139;;25101:419;;;:::o;25526:::-;25692:4;25730:2;25719:9;25715:18;25707:26;;25779:9;25773:4;25769:20;25765:1;25754:9;25750:17;25743:47;25807:131;25933:4;25807:131;:::i;:::-;25799:139;;25526:419;;;:::o;25951:::-;26117:4;26155:2;26144:9;26140:18;26132:26;;26204:9;26198:4;26194:20;26190:1;26179:9;26175:17;26168:47;26232:131;26358:4;26232:131;:::i;:::-;26224:139;;25951:419;;;:::o;26376:::-;26542:4;26580:2;26569:9;26565:18;26557:26;;26629:9;26623:4;26619:20;26615:1;26604:9;26600:17;26593:47;26657:131;26783:4;26657:131;:::i;:::-;26649:139;;26376:419;;;:::o;26801:::-;26967:4;27005:2;26994:9;26990:18;26982:26;;27054:9;27048:4;27044:20;27040:1;27029:9;27025:17;27018:47;27082:131;27208:4;27082:131;:::i;:::-;27074:139;;26801:419;;;:::o;27226:::-;27392:4;27430:2;27419:9;27415:18;27407:26;;27479:9;27473:4;27469:20;27465:1;27454:9;27450:17;27443:47;27507:131;27633:4;27507:131;:::i;:::-;27499:139;;27226:419;;;:::o;27651:::-;27817:4;27855:2;27844:9;27840:18;27832:26;;27904:9;27898:4;27894:20;27890:1;27879:9;27875:17;27868:47;27932:131;28058:4;27932:131;:::i;:::-;27924:139;;27651:419;;;:::o;28076:::-;28242:4;28280:2;28269:9;28265:18;28257:26;;28329:9;28323:4;28319:20;28315:1;28304:9;28300:17;28293:47;28357:131;28483:4;28357:131;:::i;:::-;28349:139;;28076:419;;;:::o;28501:::-;28667:4;28705:2;28694:9;28690:18;28682:26;;28754:9;28748:4;28744:20;28740:1;28729:9;28725:17;28718:47;28782:131;28908:4;28782:131;:::i;:::-;28774:139;;28501:419;;;:::o;28926:::-;29092:4;29130:2;29119:9;29115:18;29107:26;;29179:9;29173:4;29169:20;29165:1;29154:9;29150:17;29143:47;29207:131;29333:4;29207:131;:::i;:::-;29199:139;;28926:419;;;:::o;29351:::-;29517:4;29555:2;29544:9;29540:18;29532:26;;29604:9;29598:4;29594:20;29590:1;29579:9;29575:17;29568:47;29632:131;29758:4;29632:131;:::i;:::-;29624:139;;29351:419;;;:::o;29776:::-;29942:4;29980:2;29969:9;29965:18;29957:26;;30029:9;30023:4;30019:20;30015:1;30004:9;30000:17;29993:47;30057:131;30183:4;30057:131;:::i;:::-;30049:139;;29776:419;;;:::o;30201:::-;30367:4;30405:2;30394:9;30390:18;30382:26;;30454:9;30448:4;30444:20;30440:1;30429:9;30425:17;30418:47;30482:131;30608:4;30482:131;:::i;:::-;30474:139;;30201:419;;;:::o;30626:::-;30792:4;30830:2;30819:9;30815:18;30807:26;;30879:9;30873:4;30869:20;30865:1;30854:9;30850:17;30843:47;30907:131;31033:4;30907:131;:::i;:::-;30899:139;;30626:419;;;:::o;31051:::-;31217:4;31255:2;31244:9;31240:18;31232:26;;31304:9;31298:4;31294:20;31290:1;31279:9;31275:17;31268:47;31332:131;31458:4;31332:131;:::i;:::-;31324:139;;31051:419;;;:::o;31476:::-;31642:4;31680:2;31669:9;31665:18;31657:26;;31729:9;31723:4;31719:20;31715:1;31704:9;31700:17;31693:47;31757:131;31883:4;31757:131;:::i;:::-;31749:139;;31476:419;;;:::o;31901:::-;32067:4;32105:2;32094:9;32090:18;32082:26;;32154:9;32148:4;32144:20;32140:1;32129:9;32125:17;32118:47;32182:131;32308:4;32182:131;:::i;:::-;32174:139;;31901:419;;;:::o;32326:::-;32492:4;32530:2;32519:9;32515:18;32507:26;;32579:9;32573:4;32569:20;32565:1;32554:9;32550:17;32543:47;32607:131;32733:4;32607:131;:::i;:::-;32599:139;;32326:419;;;:::o;32751:::-;32917:4;32955:2;32944:9;32940:18;32932:26;;33004:9;32998:4;32994:20;32990:1;32979:9;32975:17;32968:47;33032:131;33158:4;33032:131;:::i;:::-;33024:139;;32751:419;;;:::o;33176:::-;33342:4;33380:2;33369:9;33365:18;33357:26;;33429:9;33423:4;33419:20;33415:1;33404:9;33400:17;33393:47;33457:131;33583:4;33457:131;:::i;:::-;33449:139;;33176:419;;;:::o;33601:::-;33767:4;33805:2;33794:9;33790:18;33782:26;;33854:9;33848:4;33844:20;33840:1;33829:9;33825:17;33818:47;33882:131;34008:4;33882:131;:::i;:::-;33874:139;;33601:419;;;:::o;34026:::-;34192:4;34230:2;34219:9;34215:18;34207:26;;34279:9;34273:4;34269:20;34265:1;34254:9;34250:17;34243:47;34307:131;34433:4;34307:131;:::i;:::-;34299:139;;34026:419;;;:::o;34451:::-;34617:4;34655:2;34644:9;34640:18;34632:26;;34704:9;34698:4;34694:20;34690:1;34679:9;34675:17;34668:47;34732:131;34858:4;34732:131;:::i;:::-;34724:139;;34451:419;;;:::o;34876:::-;35042:4;35080:2;35069:9;35065:18;35057:26;;35129:9;35123:4;35119:20;35115:1;35104:9;35100:17;35093:47;35157:131;35283:4;35157:131;:::i;:::-;35149:139;;34876:419;;;:::o;35301:::-;35467:4;35505:2;35494:9;35490:18;35482:26;;35554:9;35548:4;35544:20;35540:1;35529:9;35525:17;35518:47;35582:131;35708:4;35582:131;:::i;:::-;35574:139;;35301:419;;;:::o;35726:::-;35892:4;35930:2;35919:9;35915:18;35907:26;;35979:9;35973:4;35969:20;35965:1;35954:9;35950:17;35943:47;36007:131;36133:4;36007:131;:::i;:::-;35999:139;;35726:419;;;:::o;36151:::-;36317:4;36355:2;36344:9;36340:18;36332:26;;36404:9;36398:4;36394:20;36390:1;36379:9;36375:17;36368:47;36432:131;36558:4;36432:131;:::i;:::-;36424:139;;36151:419;;;:::o;36576:::-;36742:4;36780:2;36769:9;36765:18;36757:26;;36829:9;36823:4;36819:20;36815:1;36804:9;36800:17;36793:47;36857:131;36983:4;36857:131;:::i;:::-;36849:139;;36576:419;;;:::o;37001:::-;37167:4;37205:2;37194:9;37190:18;37182:26;;37254:9;37248:4;37244:20;37240:1;37229:9;37225:17;37218:47;37282:131;37408:4;37282:131;:::i;:::-;37274:139;;37001:419;;;:::o;37426:350::-;37583:4;37621:2;37610:9;37606:18;37598:26;;37634:135;37766:1;37755:9;37751:17;37742:6;37634:135;:::i;:::-;37426:350;;;;:::o;37782:222::-;37875:4;37913:2;37902:9;37898:18;37890:26;;37926:71;37994:1;37983:9;37979:17;37970:6;37926:71;:::i;:::-;37782:222;;;;:::o;38010:129::-;38044:6;38071:20;;:::i;:::-;38061:30;;38100:33;38128:4;38120:6;38100:33;:::i;:::-;38010:129;;;:::o;38145:75::-;38178:6;38211:2;38205:9;38195:19;;38145:75;:::o;38226:307::-;38287:4;38377:18;38369:6;38366:30;38363:56;;;38399:18;;:::i;:::-;38363:56;38437:29;38459:6;38437:29;:::i;:::-;38429:37;;38521:4;38515;38511:15;38503:23;;38226:307;;;:::o;38539:98::-;38590:6;38624:5;38618:12;38608:22;;38539:98;;;:::o;38643:99::-;38695:6;38729:5;38723:12;38713:22;;38643:99;;;:::o;38748:168::-;38831:11;38865:6;38860:3;38853:19;38905:4;38900:3;38896:14;38881:29;;38748:168;;;;:::o;38922:147::-;39023:11;39060:3;39045:18;;38922:147;;;;:::o;39075:169::-;39159:11;39193:6;39188:3;39181:19;39233:4;39228:3;39224:14;39209:29;;39075:169;;;;:::o;39250:148::-;39352:11;39389:3;39374:18;;39250:148;;;;:::o;39404:305::-;39444:3;39463:20;39481:1;39463:20;:::i;:::-;39458:25;;39497:20;39515:1;39497:20;:::i;:::-;39492:25;;39651:1;39583:66;39579:74;39576:1;39573:81;39570:107;;;39657:18;;:::i;:::-;39570:107;39701:1;39698;39694:9;39687:16;;39404:305;;;;:::o;39715:185::-;39755:1;39772:20;39790:1;39772:20;:::i;:::-;39767:25;;39806:20;39824:1;39806:20;:::i;:::-;39801:25;;39845:1;39835:35;;39850:18;;:::i;:::-;39835:35;39892:1;39889;39885:9;39880:14;;39715:185;;;;:::o;39906:348::-;39946:7;39969:20;39987:1;39969:20;:::i;:::-;39964:25;;40003:20;40021:1;40003:20;:::i;:::-;39998:25;;40191:1;40123:66;40119:74;40116:1;40113:81;40108:1;40101:9;40094:17;40090:105;40087:131;;;40198:18;;:::i;:::-;40087:131;40246:1;40243;40239:9;40228:20;;39906:348;;;;:::o;40260:191::-;40300:4;40320:20;40338:1;40320:20;:::i;:::-;40315:25;;40354:20;40372:1;40354:20;:::i;:::-;40349:25;;40393:1;40390;40387:8;40384:34;;;40398:18;;:::i;:::-;40384:34;40443:1;40440;40436:9;40428:17;;40260:191;;;;:::o;40457:96::-;40494:7;40523:24;40541:5;40523:24;:::i;:::-;40512:35;;40457:96;;;:::o;40559:90::-;40593:7;40636:5;40629:13;40622:21;40611:32;;40559:90;;;:::o;40655:149::-;40691:7;40731:66;40724:5;40720:78;40709:89;;40655:149;;;:::o;40810:126::-;40847:7;40887:42;40880:5;40876:54;40865:65;;40810:126;;;:::o;40942:77::-;40979:7;41008:5;40997:16;;40942:77;;;:::o;41025:101::-;41061:7;41101:18;41094:5;41090:30;41079:41;;41025:101;;;:::o;41132:154::-;41216:6;41211:3;41206;41193:30;41278:1;41269:6;41264:3;41260:16;41253:27;41132:154;;;:::o;41292:307::-;41360:1;41370:113;41384:6;41381:1;41378:13;41370:113;;;41469:1;41464:3;41460:11;41454:18;41450:1;41445:3;41441:11;41434:39;41406:2;41403:1;41399:10;41394:15;;41370:113;;;41501:6;41498:1;41495:13;41492:101;;;41581:1;41572:6;41567:3;41563:16;41556:27;41492:101;41341:258;41292:307;;;:::o;41605:320::-;41649:6;41686:1;41680:4;41676:12;41666:22;;41733:1;41727:4;41723:12;41754:18;41744:81;;41810:4;41802:6;41798:17;41788:27;;41744:81;41872:2;41864:6;41861:14;41841:18;41838:38;41835:84;;;41891:18;;:::i;:::-;41835:84;41656:269;41605:320;;;:::o;41931:281::-;42014:27;42036:4;42014:27;:::i;:::-;42006:6;42002:40;42144:6;42132:10;42129:22;42108:18;42096:10;42093:34;42090:62;42087:88;;;42155:18;;:::i;:::-;42087:88;42195:10;42191:2;42184:22;41974:238;41931:281;;:::o;42218:233::-;42257:3;42280:24;42298:5;42280:24;:::i;:::-;42271:33;;42326:66;42319:5;42316:77;42313:103;;;42396:18;;:::i;:::-;42313:103;42443:1;42436:5;42432:13;42425:20;;42218:233;;;:::o;42457:176::-;42489:1;42506:20;42524:1;42506:20;:::i;:::-;42501:25;;42540:20;42558:1;42540:20;:::i;:::-;42535:25;;42579:1;42569:35;;42584:18;;:::i;:::-;42569:35;42625:1;42622;42618:9;42613:14;;42457:176;;;;:::o;42639:180::-;42687:77;42684:1;42677:88;42784:4;42781:1;42774:15;42808:4;42805:1;42798:15;42825:180;42873:77;42870:1;42863:88;42970:4;42967:1;42960:15;42994:4;42991:1;42984:15;43011:180;43059:77;43056:1;43049:88;43156:4;43153:1;43146:15;43180:4;43177:1;43170:15;43197:180;43245:77;43242:1;43235:88;43342:4;43339:1;43332:15;43366:4;43363:1;43356:15;43383:180;43431:77;43428:1;43421:88;43528:4;43525:1;43518:15;43552:4;43549:1;43542:15;43569:117;43678:1;43675;43668:12;43692:117;43801:1;43798;43791:12;43815:117;43924:1;43921;43914:12;43938:117;44047:1;44044;44037:12;44061:117;44170:1;44167;44160:12;44184:117;44293:1;44290;44283:12;44307:102;44348:6;44399:2;44395:7;44390:2;44383:5;44379:14;44375:28;44365:38;;44307:102;;;:::o;44415:221::-;44555:34;44551:1;44543:6;44539:14;44532:58;44624:4;44619:2;44611:6;44607:15;44600:29;44415:221;:::o;44642:225::-;44782:34;44778:1;44770:6;44766:14;44759:58;44851:8;44846:2;44838:6;44834:15;44827:33;44642:225;:::o;44873:229::-;45013:34;45009:1;45001:6;44997:14;44990:58;45082:12;45077:2;45069:6;45065:15;45058:37;44873:229;:::o;45108:233::-;45248:34;45244:1;45236:6;45232:14;45225:58;45317:16;45312:2;45304:6;45300:15;45293:41;45108:233;:::o;45347:170::-;45487:22;45483:1;45475:6;45471:14;45464:46;45347:170;:::o;45523:222::-;45663:34;45659:1;45651:6;45647:14;45640:58;45732:5;45727:2;45719:6;45715:15;45708:30;45523:222;:::o;45751:224::-;45891:34;45887:1;45879:6;45875:14;45868:58;45960:7;45955:2;45947:6;45943:15;45936:32;45751:224;:::o;45981:236::-;46121:34;46117:1;46109:6;46105:14;46098:58;46190:19;46185:2;46177:6;46173:15;46166:44;45981:236;:::o;46223:169::-;46363:21;46359:1;46351:6;46347:14;46340:45;46223:169;:::o;46398:178::-;46538:30;46534:1;46526:6;46522:14;46515:54;46398:178;:::o;46582:159::-;46722:11;46718:1;46710:6;46706:14;46699:35;46582:159;:::o;46747:244::-;46887:34;46883:1;46875:6;46871:14;46864:58;46956:27;46951:2;46943:6;46939:15;46932:52;46747:244;:::o;46997:174::-;47137:26;47133:1;47125:6;47121:14;47114:50;46997:174;:::o;47177:230::-;47317:34;47313:1;47305:6;47301:14;47294:58;47386:13;47381:2;47373:6;47369:15;47362:38;47177:230;:::o;47413:225::-;47553:34;47549:1;47541:6;47537:14;47530:58;47622:8;47617:2;47609:6;47605:15;47598:33;47413:225;:::o;47644:182::-;47784:34;47780:1;47772:6;47768:14;47761:58;47644:182;:::o;47832:234::-;47972:34;47968:1;47960:6;47956:14;47949:58;48041:17;48036:2;48028:6;48024:15;48017:42;47832:234;:::o;48072:176::-;48212:28;48208:1;48200:6;48196:14;48189:52;48072:176;:::o;48254:237::-;48394:34;48390:1;48382:6;48378:14;48371:58;48463:20;48458:2;48450:6;48446:15;48439:45;48254:237;:::o;48497:169::-;48637:21;48633:1;48625:6;48621:14;48614:45;48497:169;:::o;48672:221::-;48812:34;48808:1;48800:6;48796:14;48789:58;48881:4;48876:2;48868:6;48864:15;48857:29;48672:221;:::o;48899:114::-;;:::o;49019:166::-;49159:18;49155:1;49147:6;49143:14;49136:42;49019:166;:::o;49191:238::-;49331:34;49327:1;49319:6;49315:14;49308:58;49400:21;49395:2;49387:6;49383:15;49376:46;49191:238;:::o;49435:220::-;49575:34;49571:1;49563:6;49559:14;49552:58;49644:3;49639:2;49631:6;49627:15;49620:28;49435:220;:::o;49661:227::-;49801:34;49797:1;49789:6;49785:14;49778:58;49870:10;49865:2;49857:6;49853:15;49846:35;49661:227;:::o;49894:233::-;50034:34;50030:1;50022:6;50018:14;50011:58;50103:16;50098:2;50090:6;50086:15;50079:41;49894:233;:::o;50133:181::-;50273:33;50269:1;50261:6;50257:14;50250:57;50133:181;:::o;50320:234::-;50460:34;50456:1;50448:6;50444:14;50437:58;50529:17;50524:2;50516:6;50512:15;50505:42;50320:234;:::o;50560:159::-;50700:11;50696:1;50688:6;50684:14;50677:35;50560:159;:::o;50725:232::-;50865:34;50861:1;50853:6;50849:14;50842:58;50934:15;50929:2;50921:6;50917:15;50910:40;50725:232;:::o;50963:171::-;51103:23;51099:1;51091:6;51087:14;51080:47;50963:171;:::o;51140:173::-;51280:25;51276:1;51268:6;51264:14;51257:49;51140:173;:::o;51319:122::-;51392:24;51410:5;51392:24;:::i;:::-;51385:5;51382:35;51372:63;;51431:1;51428;51421:12;51372:63;51319:122;:::o;51447:116::-;51517:21;51532:5;51517:21;:::i;:::-;51510:5;51507:32;51497:60;;51553:1;51550;51543:12;51497:60;51447:116;:::o;51569:120::-;51641:23;51658:5;51641:23;:::i;:::-;51634:5;51631:34;51621:62;;51679:1;51676;51669:12;51621:62;51569:120;:::o;51695:122::-;51768:24;51786:5;51768:24;:::i;:::-;51761:5;51758:35;51748:63;;51807:1;51804;51797:12;51748:63;51695:122;:::o

Swarm Source

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