ETH Price: $3,483.29 (+0.34%)
Gas: 6 Gwei

RROtherside (RROtherside)
 

Overview

TokenID

1173

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
RROtherside

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-06-21
*/

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

  string public        baseURI;
  uint public          price             = 0.003 ether;
  uint public          maxPerTx          = 5;
  uint public          totalFree         = 1500;
  uint public          maxSupply         = 5000;
  bool public          mintEnabled;


  constructor() ERC721A("RROtherside", "RROtherside"){
  }

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

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

    _safeMint(msg.sender, amount);
  }

  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 _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.");
  }

}

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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","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":[{"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":"amount","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":"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":"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"}]

6080604052660aa87bee538000600a556005600b556105dc600c55611388600d553480156200002d57600080fd5b506040518060400160405280600b81526020017f52524f74686572736964650000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f52524f74686572736964650000000000000000000000000000000000000000008152508160019080519060200190620000b2929190620001ca565b508060029080519060200190620000cb929190620001ca565b505050620000ee620000e2620000fc60201b60201c565b6200010460201b60201c565b6001600881905550620002df565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d8906200027a565b90600052602060002090601f016020900481019282620001fc576000855562000248565b82601f106200021757805160ff191683800117855562000248565b8280016001018555821562000248579182015b82811115620002475782518255916020019190600101906200022a565b5b5090506200025791906200025b565b5090565b5b80821115620002765760008160009055506001016200025c565b5090565b600060028204905060018216806200029357607f821691505b60208210811415620002aa57620002a9620002b0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61468e80620002ef6000396000f3fe6080604052600436106101f95760003560e01c80637d55094d1161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb01146106fc578063dc33e68114610727578063e985e9c514610764578063f2fde38b146107a1578063f968adbe146107ca576101f9565b8063b88d4fde14610642578063c6f6f2161461066b578063c87b56dd14610694578063d1239730146106d1576101f9565b806395d89b41116100dc57806395d89b41146105a7578063a035b1fe146105d2578063a0712d68146105fd578063a22cb46514610619576101f9565b80637d55094d146105135780638da5cb5b1461052a5780638db89f071461055557806391b7f5ed1461057e576101f9565b80633ccfd60b11610190578063563aaf111161015f578063563aaf111461042e5780636352211e146104575780636c0360eb1461049457806370a08231146104bf578063715018a6146104fc576101f9565b80633ccfd60b1461038857806342842e0e1461039f5780634f6ccce7146103c857806355f804b314610405576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f75780632f745c5914610320578063333e44e61461035d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906130c4565b6107f5565b60405161023291906136dc565b60405180910390f35b34801561024757600080fd5b5061025061093f565b60405161025d91906136f7565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061316b565b6109d1565b60405161029a9190613675565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613084565b610a56565b005b3480156102d857600080fd5b506102e1610b6f565b6040516102ee9190613a79565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612f6e565b610b78565b005b34801561032c57600080fd5b5061034760048036038101906103429190613084565b610b88565b6040516103549190613a79565b60405180910390f35b34801561036957600080fd5b50610372610d7a565b60405161037f9190613a79565b60405180910390f35b34801561039457600080fd5b5061039d610d80565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612f6e565b610f01565b005b3480156103d457600080fd5b506103ef60048036038101906103ea919061316b565b610f21565b6040516103fc9190613a79565b60405180910390f35b34801561041157600080fd5b5061042c6004803603810190610427919061311e565b610f74565b005b34801561043a57600080fd5b506104556004803603810190610450919061316b565b611006565b005b34801561046357600080fd5b5061047e6004803603810190610479919061316b565b61108c565b60405161048b9190613675565b60405180910390f35b3480156104a057600080fd5b506104a96110a2565b6040516104b691906136f7565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190612f01565b611130565b6040516104f39190613a79565b60405180910390f35b34801561050857600080fd5b50610511611219565b005b34801561051f57600080fd5b506105286112a1565b005b34801561053657600080fd5b5061053f611349565b60405161054c9190613675565b60405180910390f35b34801561056157600080fd5b5061057c6004803603810190610577919061316b565b611373565b005b34801561058a57600080fd5b506105a560048036038101906105a0919061316b565b61145e565b005b3480156105b357600080fd5b506105bc6114e4565b6040516105c991906136f7565b60405180910390f35b3480156105de57600080fd5b506105e7611576565b6040516105f49190613a79565b60405180910390f35b6106176004803603810190610612919061316b565b61157c565b005b34801561062557600080fd5b50610640600480360381019061063b9190613044565b61170c565b005b34801561064e57600080fd5b5061066960048036038101906106649190612fc1565b61188d565b005b34801561067757600080fd5b50610692600480360381019061068d919061316b565b6118e9565b005b3480156106a057600080fd5b506106bb60048036038101906106b6919061316b565b61196f565b6040516106c891906136f7565b60405180910390f35b3480156106dd57600080fd5b506106e6611a17565b6040516106f391906136dc565b60405180910390f35b34801561070857600080fd5b50610711611a2a565b60405161071e9190613a79565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190612f01565b611a30565b60405161075b9190613a79565b60405180910390f35b34801561077057600080fd5b5061078b60048036038101906107869190612f2e565b611a42565b60405161079891906136dc565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190612f01565b611ad6565b005b3480156107d657600080fd5b506107df611bce565b6040516107ec9190613a79565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610938575061093782611bd4565b5b9050919050565b60606001805461094e90613d03565b80601f016020809104026020016040519081016040528092919081815260200182805461097a90613d03565b80156109c75780601f1061099c576101008083540402835291602001916109c7565b820191906000526020600020905b8154815290600101906020018083116109aa57829003601f168201915b5050505050905090565b60006109dc82611c3e565b610a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1290613a59565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a618261108c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac990613939565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af1611c4b565b73ffffffffffffffffffffffffffffffffffffffff161480610b205750610b1f81610b1a611c4b565b611a42565b5b610b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5690613819565b60405180910390fd5b610b6a838383611c53565b505050565b60008054905090565b610b83838383611d05565b505050565b6000610b9383611130565b8210610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90613719565b60405180910390fd5b6000610bde610b6f565b905060008060005b83811015610d38576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cd857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2a5786841415610d21578195505050505050610d74565b83806001019450505b508080600101915050610be6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b906139f9565b60405180910390fd5b92915050565b600c5481565b610d88611c4b565b73ffffffffffffffffffffffffffffffffffffffff16610da6611349565b73ffffffffffffffffffffffffffffffffffffffff1614610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390613899565b60405180910390fd5b60026008541415610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3990613a19565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610e7090613660565b60006040518083038185875af1925050503d8060008114610ead576040519150601f19603f3d011682016040523d82523d6000602084013e610eb2565b606091505b5050905080610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90613959565b60405180910390fd5b506001600881905550565b610f1c8383836040518060200160405280600081525061188d565b505050565b6000610f2b610b6f565b8210610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390613799565b60405180910390fd5b819050919050565b610f7c611c4b565b73ffffffffffffffffffffffffffffffffffffffff16610f9a611349565b73ffffffffffffffffffffffffffffffffffffffff1614610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe790613899565b60405180910390fd5b818160099190611001929190612cf5565b505050565b61100e611c4b565b73ffffffffffffffffffffffffffffffffffffffff1661102c611349565b73ffffffffffffffffffffffffffffffffffffffff1614611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107990613899565b60405180910390fd5b80600c8190555050565b600061109782612245565b600001519050919050565b600980546110af90613d03565b80601f01602080910402602001604051908101604052809291908181526020018280546110db90613d03565b80156111285780601f106110fd57610100808354040283529160200191611128565b820191906000526020600020905b81548152906001019060200180831161110b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890613859565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611221611c4b565b73ffffffffffffffffffffffffffffffffffffffff1661123f611349565b73ffffffffffffffffffffffffffffffffffffffff1614611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90613899565b60405180910390fd5b61129f60006123df565b565b6112a9611c4b565b73ffffffffffffffffffffffffffffffffffffffff166112c7611349565b73ffffffffffffffffffffffffffffffffffffffff161461131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131490613899565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61137b611c4b565b73ffffffffffffffffffffffffffffffffffffffff16611399611349565b73ffffffffffffffffffffffffffffffffffffffff16146113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e690613899565b60405180910390fd5b6001600d546113fe9190613b38565b81611407610b6f565b6114119190613b38565b10611451576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611448906137f9565b60405180910390fd5b61145b33826124a5565b50565b611466611c4b565b73ffffffffffffffffffffffffffffffffffffffff16611484611349565b73ffffffffffffffffffffffffffffffffffffffff16146114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190613899565b60405180910390fd5b80600a8190555050565b6060600280546114f390613d03565b80601f016020809104026020016040519081016040528092919081815260200182805461151f90613d03565b801561156c5780601f106115415761010080835404028352916020019161156c565b820191906000526020600020905b81548152906001019060200180831161154f57829003601f168201915b5050505050905090565b600a5481565b6000600a5490506001600c546115929190613b38565b8261159b610b6f565b6115a59190613b38565b10156115b057600090505b600e60009054906101000a900460ff166115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690613779565b60405180910390fd5b6001600d5461160e9190613b38565b82611617610b6f565b6116219190613b38565b10611661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165890613839565b60405180910390fd5b808261166d9190613bbf565b34146116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590613919565b60405180910390fd5b6001600b546116bd9190613b38565b82106116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f590613999565b60405180910390fd5b61170833836124a5565b5050565b611714611c4b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611779906138d9565b60405180910390fd5b806006600061178f611c4b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661183c611c4b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161188191906136dc565b60405180910390a35050565b611898848484611d05565b6118a4848484846124c3565b6118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90613979565b60405180910390fd5b50505050565b6118f1611c4b565b73ffffffffffffffffffffffffffffffffffffffff1661190f611349565b73ffffffffffffffffffffffffffffffffffffffff1614611965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195c90613899565b60405180910390fd5b80600b8190555050565b606061197a82611c3e565b6119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b0906138b9565b60405180910390fd5b60006119c361265a565b90506000815114156119e45760405180602001604052806000815250611a0f565b806119ee846126ec565b6040516020016119ff92919061363c565b6040516020818303038152906040525b915050919050565b600e60009054906101000a900460ff1681565b600d5481565b6000611a3b8261284d565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ade611c4b565b73ffffffffffffffffffffffffffffffffffffffff16611afc611349565b73ffffffffffffffffffffffffffffffffffffffff1614611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4990613899565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb990613739565b60405180910390fd5b611bcb816123df565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d1082612245565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d37611c4b565b73ffffffffffffffffffffffffffffffffffffffff161480611d935750611d5c611c4b565b73ffffffffffffffffffffffffffffffffffffffff16611d7b846109d1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611daf5750611dae8260000151611da9611c4b565b611a42565b5b905080611df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de8906138f9565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90613879565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eca906137b9565b60405180910390fd5b611ee08585856001612936565b611ef06000848460000151611c53565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121d55761213481611c3e565b156121d45782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461223e858585600161293c565b5050505050565b61224d612d7b565b61225682611c3e565b612295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228c90613759565b60405180910390fd5b60008290505b6000811061239e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461238f5780925050506123da565b5080806001900391505061229b565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d190613a39565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124bf828260405180602001604052806000815250612942565b5050565b60006124e48473ffffffffffffffffffffffffffffffffffffffff16612954565b1561264d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261250d611c4b565b8786866040518563ffffffff1660e01b815260040161252f9493929190613690565b602060405180830381600087803b15801561254957600080fd5b505af192505050801561257a57506040513d601f19601f8201168201806040525081019061257791906130f1565b60015b6125fd573d80600081146125aa576040519150601f19603f3d011682016040523d82523d6000602084013e6125af565b606091505b506000815114156125f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ec90613979565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612652565b600190505b949350505050565b60606009805461266990613d03565b80601f016020809104026020016040519081016040528092919081815260200182805461269590613d03565b80156126e25780601f106126b7576101008083540402835291602001916126e2565b820191906000526020600020905b8154815290600101906020018083116126c557829003601f168201915b5050505050905090565b60606000821415612734576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612848565b600082905060005b6000821461276657808061274f90613d66565b915050600a8261275f9190613b8e565b915061273c565b60008167ffffffffffffffff81111561278257612781613e9c565b5b6040519080825280601f01601f1916602001820160405280156127b45781602001600182028036833780820191505090505b5090505b60008514612841576001826127cd9190613c19565b9150600a856127dc9190613daf565b60306127e89190613b38565b60f81b8183815181106127fe576127fd613e6d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561283a9190613b8e565b94506127b8565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b5906137d9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b61294f8383836001612977565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156129ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e4906139b9565b60405180910390fd5b6000841415612a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a28906139d9565b60405180910390fd5b612a3e6000868387612936565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612cd857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612cc357612c8360008884886124c3565b612cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb990613979565b60405180910390fd5b5b81806001019250508080600101915050612c0c565b508060008190555050612cee600086838761293c565b5050505050565b828054612d0190613d03565b90600052602060002090601f016020900481019282612d235760008555612d6a565b82601f10612d3c57803560ff1916838001178555612d6a565b82800160010185558215612d6a579182015b82811115612d69578235825591602001919060010190612d4e565b5b509050612d779190612db5565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612dce576000816000905550600101612db6565b5090565b6000612de5612de084613ab9565b613a94565b905082815260208101848484011115612e0157612e00613eda565b5b612e0c848285613cc1565b509392505050565b600081359050612e23816145fc565b92915050565b600081359050612e3881614613565b92915050565b600081359050612e4d8161462a565b92915050565b600081519050612e628161462a565b92915050565b600082601f830112612e7d57612e7c613ed0565b5b8135612e8d848260208601612dd2565b91505092915050565b60008083601f840112612eac57612eab613ed0565b5b8235905067ffffffffffffffff811115612ec957612ec8613ecb565b5b602083019150836001820283011115612ee557612ee4613ed5565b5b9250929050565b600081359050612efb81614641565b92915050565b600060208284031215612f1757612f16613ee4565b5b6000612f2584828501612e14565b91505092915050565b60008060408385031215612f4557612f44613ee4565b5b6000612f5385828601612e14565b9250506020612f6485828601612e14565b9150509250929050565b600080600060608486031215612f8757612f86613ee4565b5b6000612f9586828701612e14565b9350506020612fa686828701612e14565b9250506040612fb786828701612eec565b9150509250925092565b60008060008060808587031215612fdb57612fda613ee4565b5b6000612fe987828801612e14565b9450506020612ffa87828801612e14565b935050604061300b87828801612eec565b925050606085013567ffffffffffffffff81111561302c5761302b613edf565b5b61303887828801612e68565b91505092959194509250565b6000806040838503121561305b5761305a613ee4565b5b600061306985828601612e14565b925050602061307a85828601612e29565b9150509250929050565b6000806040838503121561309b5761309a613ee4565b5b60006130a985828601612e14565b92505060206130ba85828601612eec565b9150509250929050565b6000602082840312156130da576130d9613ee4565b5b60006130e884828501612e3e565b91505092915050565b60006020828403121561310757613106613ee4565b5b600061311584828501612e53565b91505092915050565b6000806020838503121561313557613134613ee4565b5b600083013567ffffffffffffffff81111561315357613152613edf565b5b61315f85828601612e96565b92509250509250929050565b60006020828403121561318157613180613ee4565b5b600061318f84828501612eec565b91505092915050565b6131a181613c4d565b82525050565b6131b081613c5f565b82525050565b60006131c182613aea565b6131cb8185613b00565b93506131db818560208601613cd0565b6131e481613ee9565b840191505092915050565b60006131fa82613af5565b6132048185613b1c565b9350613214818560208601613cd0565b61321d81613ee9565b840191505092915050565b600061323382613af5565b61323d8185613b2d565b935061324d818560208601613cd0565b80840191505092915050565b6000613266602283613b1c565b915061327182613efa565b604082019050919050565b6000613289602683613b1c565b915061329482613f49565b604082019050919050565b60006132ac602a83613b1c565b91506132b782613f98565b604082019050919050565b60006132cf602083613b1c565b91506132da82613fe7565b602082019050919050565b60006132f2602383613b1c565b91506132fd82614010565b604082019050919050565b6000613315602583613b1c565b91506133208261405f565b604082019050919050565b6000613338603183613b1c565b9150613343826140ae565b604082019050919050565b600061335b600983613b1c565b9150613366826140fd565b602082019050919050565b600061337e603983613b1c565b915061338982614126565b604082019050919050565b60006133a1601183613b1c565b91506133ac82614175565b602082019050919050565b60006133c4602b83613b1c565b91506133cf8261419e565b604082019050919050565b60006133e7602683613b1c565b91506133f2826141ed565b604082019050919050565b600061340a602083613b1c565b91506134158261423c565b602082019050919050565b600061342d602f83613b1c565b915061343882614265565b604082019050919050565b6000613450601a83613b1c565b915061345b826142b4565b602082019050919050565b6000613473603283613b1c565b915061347e826142dd565b604082019050919050565b6000613496601c83613b1c565b91506134a18261432c565b602082019050919050565b60006134b9602283613b1c565b91506134c482614355565b604082019050919050565b60006134dc600083613b11565b91506134e7826143a4565b600082019050919050565b60006134ff601083613b1c565b915061350a826143a7565b602082019050919050565b6000613522603383613b1c565b915061352d826143d0565b604082019050919050565b6000613545601283613b1c565b91506135508261441f565b602082019050919050565b6000613568602183613b1c565b915061357382614448565b604082019050919050565b600061358b602883613b1c565b915061359682614497565b604082019050919050565b60006135ae602e83613b1c565b91506135b9826144e6565b604082019050919050565b60006135d1601f83613b1c565b91506135dc82614535565b602082019050919050565b60006135f4602f83613b1c565b91506135ff8261455e565b604082019050919050565b6000613617602d83613b1c565b9150613622826145ad565b604082019050919050565b61363681613cb7565b82525050565b60006136488285613228565b91506136548284613228565b91508190509392505050565b600061366b826134cf565b9150819050919050565b600060208201905061368a6000830184613198565b92915050565b60006080820190506136a56000830187613198565b6136b26020830186613198565b6136bf604083018561362d565b81810360608301526136d181846131b6565b905095945050505050565b60006020820190506136f160008301846131a7565b92915050565b6000602082019050818103600083015261371181846131ef565b905092915050565b6000602082019050818103600083015261373281613259565b9050919050565b600060208201905081810360008301526137528161327c565b9050919050565b600060208201905081810360008301526137728161329f565b9050919050565b60006020820190508181036000830152613792816132c2565b9050919050565b600060208201905081810360008301526137b2816132e5565b9050919050565b600060208201905081810360008301526137d281613308565b9050919050565b600060208201905081810360008301526137f28161332b565b9050919050565b600060208201905081810360008301526138128161334e565b9050919050565b6000602082019050818103600083015261383281613371565b9050919050565b6000602082019050818103600083015261385281613394565b9050919050565b60006020820190508181036000830152613872816133b7565b9050919050565b60006020820190508181036000830152613892816133da565b9050919050565b600060208201905081810360008301526138b2816133fd565b9050919050565b600060208201905081810360008301526138d281613420565b9050919050565b600060208201905081810360008301526138f281613443565b9050919050565b6000602082019050818103600083015261391281613466565b9050919050565b6000602082019050818103600083015261393281613489565b9050919050565b60006020820190508181036000830152613952816134ac565b9050919050565b60006020820190508181036000830152613972816134f2565b9050919050565b6000602082019050818103600083015261399281613515565b9050919050565b600060208201905081810360008301526139b281613538565b9050919050565b600060208201905081810360008301526139d28161355b565b9050919050565b600060208201905081810360008301526139f28161357e565b9050919050565b60006020820190508181036000830152613a12816135a1565b9050919050565b60006020820190508181036000830152613a32816135c4565b9050919050565b60006020820190508181036000830152613a52816135e7565b9050919050565b60006020820190508181036000830152613a728161360a565b9050919050565b6000602082019050613a8e600083018461362d565b92915050565b6000613a9e613aaf565b9050613aaa8282613d35565b919050565b6000604051905090565b600067ffffffffffffffff821115613ad457613ad3613e9c565b5b613add82613ee9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b4382613cb7565b9150613b4e83613cb7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b8357613b82613de0565b5b828201905092915050565b6000613b9982613cb7565b9150613ba483613cb7565b925082613bb457613bb3613e0f565b5b828204905092915050565b6000613bca82613cb7565b9150613bd583613cb7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c0e57613c0d613de0565b5b828202905092915050565b6000613c2482613cb7565b9150613c2f83613cb7565b925082821015613c4257613c41613de0565b5b828203905092915050565b6000613c5882613c97565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613cee578082015181840152602081019050613cd3565b83811115613cfd576000848401525b50505050565b60006002820490506001821680613d1b57607f821691505b60208210811415613d2f57613d2e613e3e565b5b50919050565b613d3e82613ee9565b810181811067ffffffffffffffff82111715613d5d57613d5c613e9c565b5b80604052505050565b6000613d7182613cb7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613da457613da3613de0565b5b600182019050919050565b6000613dba82613cb7565b9150613dc583613cb7565b925082613dd557613dd4613e0f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f4e6f206d6f7265204f7468657273696465000000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e7400000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4d61782070657220545820726561636865640000000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61460581613c4d565b811461461057600080fd5b50565b61461c81613c5f565b811461462757600080fd5b50565b61463381613c6b565b811461463e57600080fd5b50565b61464a81613cb7565b811461465557600080fd5b5056fea26469706673582212209b28e2c10ce4d088db5cd6ea82fa97174c6fc6caed4dab9624d669a18f3ca2bb64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80637d55094d1161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb01146106fc578063dc33e68114610727578063e985e9c514610764578063f2fde38b146107a1578063f968adbe146107ca576101f9565b8063b88d4fde14610642578063c6f6f2161461066b578063c87b56dd14610694578063d1239730146106d1576101f9565b806395d89b41116100dc57806395d89b41146105a7578063a035b1fe146105d2578063a0712d68146105fd578063a22cb46514610619576101f9565b80637d55094d146105135780638da5cb5b1461052a5780638db89f071461055557806391b7f5ed1461057e576101f9565b80633ccfd60b11610190578063563aaf111161015f578063563aaf111461042e5780636352211e146104575780636c0360eb1461049457806370a08231146104bf578063715018a6146104fc576101f9565b80633ccfd60b1461038857806342842e0e1461039f5780634f6ccce7146103c857806355f804b314610405576101f9565b806318160ddd116101cc57806318160ddd146102cc57806323b872dd146102f75780632f745c5914610320578063333e44e61461035d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906130c4565b6107f5565b60405161023291906136dc565b60405180910390f35b34801561024757600080fd5b5061025061093f565b60405161025d91906136f7565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061316b565b6109d1565b60405161029a9190613675565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190613084565b610a56565b005b3480156102d857600080fd5b506102e1610b6f565b6040516102ee9190613a79565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612f6e565b610b78565b005b34801561032c57600080fd5b5061034760048036038101906103429190613084565b610b88565b6040516103549190613a79565b60405180910390f35b34801561036957600080fd5b50610372610d7a565b60405161037f9190613a79565b60405180910390f35b34801561039457600080fd5b5061039d610d80565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612f6e565b610f01565b005b3480156103d457600080fd5b506103ef60048036038101906103ea919061316b565b610f21565b6040516103fc9190613a79565b60405180910390f35b34801561041157600080fd5b5061042c6004803603810190610427919061311e565b610f74565b005b34801561043a57600080fd5b506104556004803603810190610450919061316b565b611006565b005b34801561046357600080fd5b5061047e6004803603810190610479919061316b565b61108c565b60405161048b9190613675565b60405180910390f35b3480156104a057600080fd5b506104a96110a2565b6040516104b691906136f7565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190612f01565b611130565b6040516104f39190613a79565b60405180910390f35b34801561050857600080fd5b50610511611219565b005b34801561051f57600080fd5b506105286112a1565b005b34801561053657600080fd5b5061053f611349565b60405161054c9190613675565b60405180910390f35b34801561056157600080fd5b5061057c6004803603810190610577919061316b565b611373565b005b34801561058a57600080fd5b506105a560048036038101906105a0919061316b565b61145e565b005b3480156105b357600080fd5b506105bc6114e4565b6040516105c991906136f7565b60405180910390f35b3480156105de57600080fd5b506105e7611576565b6040516105f49190613a79565b60405180910390f35b6106176004803603810190610612919061316b565b61157c565b005b34801561062557600080fd5b50610640600480360381019061063b9190613044565b61170c565b005b34801561064e57600080fd5b5061066960048036038101906106649190612fc1565b61188d565b005b34801561067757600080fd5b50610692600480360381019061068d919061316b565b6118e9565b005b3480156106a057600080fd5b506106bb60048036038101906106b6919061316b565b61196f565b6040516106c891906136f7565b60405180910390f35b3480156106dd57600080fd5b506106e6611a17565b6040516106f391906136dc565b60405180910390f35b34801561070857600080fd5b50610711611a2a565b60405161071e9190613a79565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190612f01565b611a30565b60405161075b9190613a79565b60405180910390f35b34801561077057600080fd5b5061078b60048036038101906107869190612f2e565b611a42565b60405161079891906136dc565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190612f01565b611ad6565b005b3480156107d657600080fd5b506107df611bce565b6040516107ec9190613a79565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108c057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610938575061093782611bd4565b5b9050919050565b60606001805461094e90613d03565b80601f016020809104026020016040519081016040528092919081815260200182805461097a90613d03565b80156109c75780601f1061099c576101008083540402835291602001916109c7565b820191906000526020600020905b8154815290600101906020018083116109aa57829003601f168201915b5050505050905090565b60006109dc82611c3e565b610a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1290613a59565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a618261108c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac990613939565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af1611c4b565b73ffffffffffffffffffffffffffffffffffffffff161480610b205750610b1f81610b1a611c4b565b611a42565b5b610b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5690613819565b60405180910390fd5b610b6a838383611c53565b505050565b60008054905090565b610b83838383611d05565b505050565b6000610b9383611130565b8210610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90613719565b60405180910390fd5b6000610bde610b6f565b905060008060005b83811015610d38576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cd857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2a5786841415610d21578195505050505050610d74565b83806001019450505b508080600101915050610be6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b906139f9565b60405180910390fd5b92915050565b600c5481565b610d88611c4b565b73ffffffffffffffffffffffffffffffffffffffff16610da6611349565b73ffffffffffffffffffffffffffffffffffffffff1614610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390613899565b60405180910390fd5b60026008541415610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3990613a19565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610e7090613660565b60006040518083038185875af1925050503d8060008114610ead576040519150601f19603f3d011682016040523d82523d6000602084013e610eb2565b606091505b5050905080610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90613959565b60405180910390fd5b506001600881905550565b610f1c8383836040518060200160405280600081525061188d565b505050565b6000610f2b610b6f565b8210610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390613799565b60405180910390fd5b819050919050565b610f7c611c4b565b73ffffffffffffffffffffffffffffffffffffffff16610f9a611349565b73ffffffffffffffffffffffffffffffffffffffff1614610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe790613899565b60405180910390fd5b818160099190611001929190612cf5565b505050565b61100e611c4b565b73ffffffffffffffffffffffffffffffffffffffff1661102c611349565b73ffffffffffffffffffffffffffffffffffffffff1614611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107990613899565b60405180910390fd5b80600c8190555050565b600061109782612245565b600001519050919050565b600980546110af90613d03565b80601f01602080910402602001604051908101604052809291908181526020018280546110db90613d03565b80156111285780601f106110fd57610100808354040283529160200191611128565b820191906000526020600020905b81548152906001019060200180831161110b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890613859565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611221611c4b565b73ffffffffffffffffffffffffffffffffffffffff1661123f611349565b73ffffffffffffffffffffffffffffffffffffffff1614611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90613899565b60405180910390fd5b61129f60006123df565b565b6112a9611c4b565b73ffffffffffffffffffffffffffffffffffffffff166112c7611349565b73ffffffffffffffffffffffffffffffffffffffff161461131d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131490613899565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61137b611c4b565b73ffffffffffffffffffffffffffffffffffffffff16611399611349565b73ffffffffffffffffffffffffffffffffffffffff16146113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e690613899565b60405180910390fd5b6001600d546113fe9190613b38565b81611407610b6f565b6114119190613b38565b10611451576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611448906137f9565b60405180910390fd5b61145b33826124a5565b50565b611466611c4b565b73ffffffffffffffffffffffffffffffffffffffff16611484611349565b73ffffffffffffffffffffffffffffffffffffffff16146114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190613899565b60405180910390fd5b80600a8190555050565b6060600280546114f390613d03565b80601f016020809104026020016040519081016040528092919081815260200182805461151f90613d03565b801561156c5780601f106115415761010080835404028352916020019161156c565b820191906000526020600020905b81548152906001019060200180831161154f57829003601f168201915b5050505050905090565b600a5481565b6000600a5490506001600c546115929190613b38565b8261159b610b6f565b6115a59190613b38565b10156115b057600090505b600e60009054906101000a900460ff166115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690613779565b60405180910390fd5b6001600d5461160e9190613b38565b82611617610b6f565b6116219190613b38565b10611661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165890613839565b60405180910390fd5b808261166d9190613bbf565b34146116ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a590613919565b60405180910390fd5b6001600b546116bd9190613b38565b82106116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f590613999565b60405180910390fd5b61170833836124a5565b5050565b611714611c4b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611779906138d9565b60405180910390fd5b806006600061178f611c4b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661183c611c4b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161188191906136dc565b60405180910390a35050565b611898848484611d05565b6118a4848484846124c3565b6118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90613979565b60405180910390fd5b50505050565b6118f1611c4b565b73ffffffffffffffffffffffffffffffffffffffff1661190f611349565b73ffffffffffffffffffffffffffffffffffffffff1614611965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195c90613899565b60405180910390fd5b80600b8190555050565b606061197a82611c3e565b6119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b0906138b9565b60405180910390fd5b60006119c361265a565b90506000815114156119e45760405180602001604052806000815250611a0f565b806119ee846126ec565b6040516020016119ff92919061363c565b6040516020818303038152906040525b915050919050565b600e60009054906101000a900460ff1681565b600d5481565b6000611a3b8261284d565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ade611c4b565b73ffffffffffffffffffffffffffffffffffffffff16611afc611349565b73ffffffffffffffffffffffffffffffffffffffff1614611b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4990613899565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb990613739565b60405180910390fd5b611bcb816123df565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d1082612245565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d37611c4b565b73ffffffffffffffffffffffffffffffffffffffff161480611d935750611d5c611c4b565b73ffffffffffffffffffffffffffffffffffffffff16611d7b846109d1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611daf5750611dae8260000151611da9611c4b565b611a42565b5b905080611df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de8906138f9565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90613879565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eca906137b9565b60405180910390fd5b611ee08585856001612936565b611ef06000848460000151611c53565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121d55761213481611c3e565b156121d45782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461223e858585600161293c565b5050505050565b61224d612d7b565b61225682611c3e565b612295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228c90613759565b60405180910390fd5b60008290505b6000811061239e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461238f5780925050506123da565b5080806001900391505061229b565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d190613a39565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124bf828260405180602001604052806000815250612942565b5050565b60006124e48473ffffffffffffffffffffffffffffffffffffffff16612954565b1561264d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261250d611c4b565b8786866040518563ffffffff1660e01b815260040161252f9493929190613690565b602060405180830381600087803b15801561254957600080fd5b505af192505050801561257a57506040513d601f19601f8201168201806040525081019061257791906130f1565b60015b6125fd573d80600081146125aa576040519150601f19603f3d011682016040523d82523d6000602084013e6125af565b606091505b506000815114156125f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ec90613979565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612652565b600190505b949350505050565b60606009805461266990613d03565b80601f016020809104026020016040519081016040528092919081815260200182805461269590613d03565b80156126e25780601f106126b7576101008083540402835291602001916126e2565b820191906000526020600020905b8154815290600101906020018083116126c557829003601f168201915b5050505050905090565b60606000821415612734576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612848565b600082905060005b6000821461276657808061274f90613d66565b915050600a8261275f9190613b8e565b915061273c565b60008167ffffffffffffffff81111561278257612781613e9c565b5b6040519080825280601f01601f1916602001820160405280156127b45781602001600182028036833780820191505090505b5090505b60008514612841576001826127cd9190613c19565b9150600a856127dc9190613daf565b60306127e89190613b38565b60f81b8183815181106127fe576127fd613e6d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561283a9190613b8e565b94506127b8565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b5906137d9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b61294f8383836001612977565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156129ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e4906139b9565b60405180910390fd5b6000841415612a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a28906139d9565b60405180910390fd5b612a3e6000868387612936565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612cd857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612cc357612c8360008884886124c3565b612cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb990613979565b60405180910390fd5b5b81806001019250508080600101915050612c0c565b508060008190555050612cee600086838761293c565b5050505050565b828054612d0190613d03565b90600052602060002090601f016020900481019282612d235760008555612d6a565b82601f10612d3c57803560ff1916838001178555612d6a565b82800160010185558215612d6a579182015b82811115612d69578235825591602001919060010190612d4e565b5b509050612d779190612db5565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612dce576000816000905550600101612db6565b5090565b6000612de5612de084613ab9565b613a94565b905082815260208101848484011115612e0157612e00613eda565b5b612e0c848285613cc1565b509392505050565b600081359050612e23816145fc565b92915050565b600081359050612e3881614613565b92915050565b600081359050612e4d8161462a565b92915050565b600081519050612e628161462a565b92915050565b600082601f830112612e7d57612e7c613ed0565b5b8135612e8d848260208601612dd2565b91505092915050565b60008083601f840112612eac57612eab613ed0565b5b8235905067ffffffffffffffff811115612ec957612ec8613ecb565b5b602083019150836001820283011115612ee557612ee4613ed5565b5b9250929050565b600081359050612efb81614641565b92915050565b600060208284031215612f1757612f16613ee4565b5b6000612f2584828501612e14565b91505092915050565b60008060408385031215612f4557612f44613ee4565b5b6000612f5385828601612e14565b9250506020612f6485828601612e14565b9150509250929050565b600080600060608486031215612f8757612f86613ee4565b5b6000612f9586828701612e14565b9350506020612fa686828701612e14565b9250506040612fb786828701612eec565b9150509250925092565b60008060008060808587031215612fdb57612fda613ee4565b5b6000612fe987828801612e14565b9450506020612ffa87828801612e14565b935050604061300b87828801612eec565b925050606085013567ffffffffffffffff81111561302c5761302b613edf565b5b61303887828801612e68565b91505092959194509250565b6000806040838503121561305b5761305a613ee4565b5b600061306985828601612e14565b925050602061307a85828601612e29565b9150509250929050565b6000806040838503121561309b5761309a613ee4565b5b60006130a985828601612e14565b92505060206130ba85828601612eec565b9150509250929050565b6000602082840312156130da576130d9613ee4565b5b60006130e884828501612e3e565b91505092915050565b60006020828403121561310757613106613ee4565b5b600061311584828501612e53565b91505092915050565b6000806020838503121561313557613134613ee4565b5b600083013567ffffffffffffffff81111561315357613152613edf565b5b61315f85828601612e96565b92509250509250929050565b60006020828403121561318157613180613ee4565b5b600061318f84828501612eec565b91505092915050565b6131a181613c4d565b82525050565b6131b081613c5f565b82525050565b60006131c182613aea565b6131cb8185613b00565b93506131db818560208601613cd0565b6131e481613ee9565b840191505092915050565b60006131fa82613af5565b6132048185613b1c565b9350613214818560208601613cd0565b61321d81613ee9565b840191505092915050565b600061323382613af5565b61323d8185613b2d565b935061324d818560208601613cd0565b80840191505092915050565b6000613266602283613b1c565b915061327182613efa565b604082019050919050565b6000613289602683613b1c565b915061329482613f49565b604082019050919050565b60006132ac602a83613b1c565b91506132b782613f98565b604082019050919050565b60006132cf602083613b1c565b91506132da82613fe7565b602082019050919050565b60006132f2602383613b1c565b91506132fd82614010565b604082019050919050565b6000613315602583613b1c565b91506133208261405f565b604082019050919050565b6000613338603183613b1c565b9150613343826140ae565b604082019050919050565b600061335b600983613b1c565b9150613366826140fd565b602082019050919050565b600061337e603983613b1c565b915061338982614126565b604082019050919050565b60006133a1601183613b1c565b91506133ac82614175565b602082019050919050565b60006133c4602b83613b1c565b91506133cf8261419e565b604082019050919050565b60006133e7602683613b1c565b91506133f2826141ed565b604082019050919050565b600061340a602083613b1c565b91506134158261423c565b602082019050919050565b600061342d602f83613b1c565b915061343882614265565b604082019050919050565b6000613450601a83613b1c565b915061345b826142b4565b602082019050919050565b6000613473603283613b1c565b915061347e826142dd565b604082019050919050565b6000613496601c83613b1c565b91506134a18261432c565b602082019050919050565b60006134b9602283613b1c565b91506134c482614355565b604082019050919050565b60006134dc600083613b11565b91506134e7826143a4565b600082019050919050565b60006134ff601083613b1c565b915061350a826143a7565b602082019050919050565b6000613522603383613b1c565b915061352d826143d0565b604082019050919050565b6000613545601283613b1c565b91506135508261441f565b602082019050919050565b6000613568602183613b1c565b915061357382614448565b604082019050919050565b600061358b602883613b1c565b915061359682614497565b604082019050919050565b60006135ae602e83613b1c565b91506135b9826144e6565b604082019050919050565b60006135d1601f83613b1c565b91506135dc82614535565b602082019050919050565b60006135f4602f83613b1c565b91506135ff8261455e565b604082019050919050565b6000613617602d83613b1c565b9150613622826145ad565b604082019050919050565b61363681613cb7565b82525050565b60006136488285613228565b91506136548284613228565b91508190509392505050565b600061366b826134cf565b9150819050919050565b600060208201905061368a6000830184613198565b92915050565b60006080820190506136a56000830187613198565b6136b26020830186613198565b6136bf604083018561362d565b81810360608301526136d181846131b6565b905095945050505050565b60006020820190506136f160008301846131a7565b92915050565b6000602082019050818103600083015261371181846131ef565b905092915050565b6000602082019050818103600083015261373281613259565b9050919050565b600060208201905081810360008301526137528161327c565b9050919050565b600060208201905081810360008301526137728161329f565b9050919050565b60006020820190508181036000830152613792816132c2565b9050919050565b600060208201905081810360008301526137b2816132e5565b9050919050565b600060208201905081810360008301526137d281613308565b9050919050565b600060208201905081810360008301526137f28161332b565b9050919050565b600060208201905081810360008301526138128161334e565b9050919050565b6000602082019050818103600083015261383281613371565b9050919050565b6000602082019050818103600083015261385281613394565b9050919050565b60006020820190508181036000830152613872816133b7565b9050919050565b60006020820190508181036000830152613892816133da565b9050919050565b600060208201905081810360008301526138b2816133fd565b9050919050565b600060208201905081810360008301526138d281613420565b9050919050565b600060208201905081810360008301526138f281613443565b9050919050565b6000602082019050818103600083015261391281613466565b9050919050565b6000602082019050818103600083015261393281613489565b9050919050565b60006020820190508181036000830152613952816134ac565b9050919050565b60006020820190508181036000830152613972816134f2565b9050919050565b6000602082019050818103600083015261399281613515565b9050919050565b600060208201905081810360008301526139b281613538565b9050919050565b600060208201905081810360008301526139d28161355b565b9050919050565b600060208201905081810360008301526139f28161357e565b9050919050565b60006020820190508181036000830152613a12816135a1565b9050919050565b60006020820190508181036000830152613a32816135c4565b9050919050565b60006020820190508181036000830152613a52816135e7565b9050919050565b60006020820190508181036000830152613a728161360a565b9050919050565b6000602082019050613a8e600083018461362d565b92915050565b6000613a9e613aaf565b9050613aaa8282613d35565b919050565b6000604051905090565b600067ffffffffffffffff821115613ad457613ad3613e9c565b5b613add82613ee9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b4382613cb7565b9150613b4e83613cb7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b8357613b82613de0565b5b828201905092915050565b6000613b9982613cb7565b9150613ba483613cb7565b925082613bb457613bb3613e0f565b5b828204905092915050565b6000613bca82613cb7565b9150613bd583613cb7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c0e57613c0d613de0565b5b828202905092915050565b6000613c2482613cb7565b9150613c2f83613cb7565b925082821015613c4257613c41613de0565b5b828203905092915050565b6000613c5882613c97565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613cee578082015181840152602081019050613cd3565b83811115613cfd576000848401525b50505050565b60006002820490506001821680613d1b57607f821691505b60208210811415613d2f57613d2e613e3e565b5b50919050565b613d3e82613ee9565b810181811067ffffffffffffffff82111715613d5d57613d5c613e9c565b5b80604052505050565b6000613d7182613cb7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613da457613da3613de0565b5b600182019050919050565b6000613dba82613cb7565b9150613dc583613cb7565b925082613dd557613dd4613e0f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f4e6f206d6f7265204f7468657273696465000000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e7400000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4d61782070657220545820726561636865640000000000000000000000000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61460581613c4d565b811461461057600080fd5b50565b61461c81613c5f565b811461462757600080fd5b50565b61463381613c6b565b811461463e57600080fd5b50565b61464a81613cb7565b811461465557600080fd5b5056fea26469706673582212209b28e2c10ce4d088db5cd6ea82fa97174c6fc6caed4dab9624d669a18f3ca2bb64736f6c63430008070033

Deployed Bytecode Sourcemap

50149:1942:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37009:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38895:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40457:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39978:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35266:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41333:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35930:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50351:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51910:176;;;;;;;;;;;;;:::i;:::-;;41574:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35443:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51408:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51598:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38704:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50214:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37445:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10401:103;;;;;;;;;;;;;:::i;:::-;;51204:85;;;;;;;;;;;;;:::i;:::-;;9750:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51026:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51510:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39064:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50247:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50555:465;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40743:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41830:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51702:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39239:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50451:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50401:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51295:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41102:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10659:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50304:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37009:372;37111:4;37163:25;37148:40;;;:11;:40;;;;:105;;;;37220:33;37205:48;;;:11;:48;;;;37148:105;:172;;;;37285:35;37270:50;;;:11;:50;;;;37148:172;:225;;;;37337:36;37361:11;37337:23;:36::i;:::-;37148:225;37128:245;;37009:372;;;:::o;38895:100::-;38949:13;38982:5;38975:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38895:100;:::o;40457:214::-;40525:7;40553:16;40561:7;40553;:16::i;:::-;40545:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40639:15;:24;40655:7;40639:24;;;;;;;;;;;;;;;;;;;;;40632:31;;40457:214;;;:::o;39978:413::-;40051:13;40067:24;40083:7;40067:15;:24::i;:::-;40051:40;;40116:5;40110:11;;:2;:11;;;;40102:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40211:5;40195:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40220:37;40237:5;40244:12;:10;:12::i;:::-;40220:16;:37::i;:::-;40195:62;40173:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40355:28;40364:2;40368:7;40377:5;40355:8;:28::i;:::-;40040:351;39978:413;;:::o;35266:100::-;35319:7;35346:12;;35339:19;;35266:100;:::o;41333:170::-;41467:28;41477:4;41483:2;41487:7;41467:9;:28::i;:::-;41333:170;;;:::o;35930:1007::-;36019:7;36055:16;36065:5;36055:9;:16::i;:::-;36047:5;:24;36039:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36121:22;36146:13;:11;:13::i;:::-;36121:38;;36170:19;36200:25;36389:9;36384:466;36404:14;36400:1;:18;36384:466;;;36444:31;36478:11;:14;36490:1;36478:14;;;;;;;;;;;36444:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36541:1;36515:28;;:9;:14;;;:28;;;36511:111;;36588:9;:14;;;36568:34;;36511:111;36665:5;36644:26;;:17;:26;;;36640:195;;;36714:5;36699:11;:20;36695:85;;;36755:1;36748:8;;;;;;;;;36695:85;36802:13;;;;;;;36640:195;36425:425;36420:3;;;;;;;36384:466;;;;36873:56;;;;;;;;;;:::i;:::-;;;;;;;;35930:1007;;;;;:::o;50351:45::-;;;;:::o;51910:176::-;9981:12;:10;:12::i;:::-;9970:23;;:7;:5;:7::i;:::-;:23;;;9962:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4724:1:::1;5322:7;;:19;;5314:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4724:1;5455:7;:18;;;;51970:12:::2;51988:10;:15;;52011:21;51988:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51969:68;;;52052:7;52044:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;51962:124;4680:1:::1;5634:7;:22;;;;51910:176::o:0;41574:185::-;41712:39;41729:4;41735:2;41739:7;41712:39;;;;;;;;;;;;:16;:39::i;:::-;41574:185;;;:::o;35443:187::-;35510:7;35546:13;:11;:13::i;:::-;35538:5;:21;35530:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;35617:5;35610:12;;35443:187;;;:::o;51408:96::-;9981:12;:10;:12::i;:::-;9970:23;;:7;:5;:7::i;:::-;:23;;;9962:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51490:8:::1;;51480:7;:18;;;;;;;:::i;:::-;;51408:96:::0;;:::o;51598:98::-;9981:12;:10;:12::i;:::-;9970:23;;:7;:5;:7::i;:::-;:23;;;9962:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51680:10:::1;51668:9;:22;;;;51598:98:::0;:::o;38704:124::-;38768:7;38795:20;38807:7;38795:11;:20::i;:::-;:25;;;38788:32;;38704:124;;;:::o;50214:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37445:221::-;37509:7;37554:1;37537:19;;:5;:19;;;;37529:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37630:12;:19;37643:5;37630:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37622:36;;37615:43;;37445:221;;;:::o;10401:103::-;9981:12;:10;:12::i;:::-;9970:23;;:7;:5;:7::i;:::-;:23;;;9962:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10466:30:::1;10493:1;10466:18;:30::i;:::-;10401:103::o:0;51204:85::-;9981:12;:10;:12::i;:::-;9970:23;;:7;:5;:7::i;:::-;:23;;;9962:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51272:11:::1;;;;;;;;;;;51271:12;51257:11;;:26;;;;;;;;;;;;;;;;;;51204:85::o:0;9750:87::-;9796:7;9823:6;;;;;;;;;;;9816:13;;9750:87;:::o;51026:172::-;9981:12;:10;:12::i;:::-;9970:23;;:7;:5;:7::i;:::-;:23;;;9962:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51140:1:::1;51128:9;;:13;;;;:::i;:::-;51119:6;51103:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;51095:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;51163:29;51173:10;51185:6;51163:9;:29::i;:::-;51026:172:::0;:::o;51510:82::-;9981:12;:10;:12::i;:::-;9970:23;;:7;:5;:7::i;:::-;:23;;;9962:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51580:6:::1;51572:5;:14;;;;51510:82:::0;:::o;39064:104::-;39120:13;39153:7;39146:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39064:104;:::o;50247:52::-;;;;:::o;50555:465::-;50612:9;50624:5;;50612:17;;50676:1;50664:9;;:13;;;;:::i;:::-;50655:6;50639:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;50636:68;;;50695:1;50688:8;;50636:68;50718:11;;;;;;;;;;;50710:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;50818:1;50806:9;;:13;;;;:::i;:::-;50797:6;50781:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;50773:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;50877:4;50868:6;:13;;;;:::i;:::-;50855:9;:26;50847:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50948:1;50937:8;;:12;;;;:::i;:::-;50928:6;:21;50920:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;50985:29;50995:10;51007:6;50985:9;:29::i;:::-;50605:415;50555:465;:::o;40743:288::-;40850:12;:10;:12::i;:::-;40838:24;;:8;:24;;;;40830:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40951:8;40906:18;:32;40925:12;:10;:12::i;:::-;40906:32;;;;;;;;;;;;;;;:42;40939:8;40906:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41004:8;40975:48;;40990:12;:10;:12::i;:::-;40975:48;;;41014:8;40975:48;;;;;;:::i;:::-;;;;;;;;40743:288;;:::o;41830:355::-;41989:28;41999:4;42005:2;42009:7;41989:9;:28::i;:::-;42050:48;42073:4;42079:2;42083:7;42092:5;42050:22;:48::i;:::-;42028:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;41830:355;;;;:::o;51702:94::-;9981:12;:10;:12::i;:::-;9970:23;;:7;:5;:7::i;:::-;:23;;;9962:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51781:9:::1;51770:8;:20;;;;51702:94:::0;:::o;39239:335::-;39312:13;39346:16;39354:7;39346;:16::i;:::-;39338:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39427:21;39451:10;:8;:10::i;:::-;39427:34;;39504:1;39485:7;39479:21;:26;;:87;;;;;;;;;;;;;;;;;39532:7;39541:18;:7;:16;:18::i;:::-;39515:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39479:87;39472:94;;;39239:335;;;:::o;50451:32::-;;;;;;;;;;;;;:::o;50401:45::-;;;;:::o;51295:107::-;51353:7;51376:20;51390:5;51376:13;:20::i;:::-;51369:27;;51295:107;;;:::o;41102:164::-;41199:4;41223:18;:25;41242:5;41223:25;;;;;;;;;;;;;;;:35;41249:8;41223:35;;;;;;;;;;;;;;;;;;;;;;;;;41216:42;;41102:164;;;;:::o;10659:201::-;9981:12;:10;:12::i;:::-;9970:23;;:7;:5;:7::i;:::-;:23;;;9962:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10768:1:::1;10748:22;;:8;:22;;;;10740:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10824:28;10843:8;10824:18;:28::i;:::-;10659:201:::0;:::o;50304:42::-;;;;:::o;26529:157::-;26614:4;26653:25;26638:40;;;:11;:40;;;;26631:47;;26529:157;;;:::o;42440:111::-;42497:4;42531:12;;42521:7;:22;42514:29;;42440:111;;;:::o;8474:98::-;8527:7;8554:10;8547:17;;8474:98;:::o;47360:196::-;47502:2;47475:15;:24;47491:7;47475:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47540:7;47536:2;47520:28;;47529:5;47520:28;;;;;;;;;;;;47360:196;;;:::o;45240:2002::-;45355:35;45393:20;45405:7;45393:11;:20::i;:::-;45355:58;;45426:22;45468:13;:18;;;45452:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45527:12;:10;:12::i;:::-;45503:36;;:20;45515:7;45503:11;:20::i;:::-;:36;;;45452:87;:154;;;;45556:50;45573:13;:18;;;45593:12;:10;:12::i;:::-;45556:16;:50::i;:::-;45452:154;45426:181;;45628:17;45620:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45743:4;45721:26;;:13;:18;;;:26;;;45713:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45823:1;45809:16;;:2;:16;;;;45801:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45880:43;45902:4;45908:2;45912:7;45921:1;45880:21;:43::i;:::-;45988:49;46005:1;46009:7;46018:13;:18;;;45988:8;:49::i;:::-;46363:1;46333:12;:18;46346:4;46333:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46407:1;46379:12;:16;46392:2;46379:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46453:2;46425:11;:20;46437:7;46425:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46515:15;46470:11;:20;46482:7;46470:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46783:19;46815:1;46805:7;:11;46783:33;;46876:1;46835:43;;:11;:24;46847:11;46835:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46831:295;;;46903:20;46911:11;46903:7;:20::i;:::-;46899:212;;;46980:13;:18;;;46948:11;:24;46960:11;46948:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47063:13;:28;;;47021:11;:24;47033:11;47021:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;46899:212;46831:295;46308:829;47173:7;47169:2;47154:27;;47163:4;47154:27;;;;;;;;;;;;47192:42;47213:4;47219:2;47223:7;47232:1;47192:20;:42::i;:::-;45344:1898;;45240:2002;;;:::o;38105:537::-;38166:21;;:::i;:::-;38208:16;38216:7;38208;:16::i;:::-;38200:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38314:12;38329:7;38314:22;;38309:245;38346:1;38338:4;:9;38309:245;;38376:31;38410:11;:17;38422:4;38410:17;;;;;;;;;;;38376:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38476:1;38450:28;;:9;:14;;;:28;;;38446:93;;38510:9;38503:16;;;;;;38446:93;38357:197;38349:6;;;;;;;;38309:245;;;;38577:57;;;;;;;;;;:::i;:::-;;;;;;;;38105:537;;;;:::o;11020:191::-;11094:16;11113:6;;;;;;;;;;;11094:25;;11139:8;11130:6;;:17;;;;;;;;;;;;;;;;;;11194:8;11163:40;;11184:8;11163:40;;;;;;;;;;;;11083:128;11020:191;:::o;42559:104::-;42628:27;42638:2;42642:8;42628:27;;;;;;;;;;;;:9;:27::i;:::-;42559:104;;:::o;48121:804::-;48276:4;48297:15;:2;:13;;;:15::i;:::-;48293:625;;;48349:2;48333:36;;;48370:12;:10;:12::i;:::-;48384:4;48390:7;48399:5;48333:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48329:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48596:1;48579:6;:13;:18;48575:273;;;48622:61;;;;;;;;;;:::i;:::-;;;;;;;;48575:273;48798:6;48792:13;48783:6;48779:2;48775:15;48768:38;48329:534;48466:45;;;48456:55;;;:6;:55;;;;48449:62;;;;;48293:625;48902:4;48895:11;;48121:804;;;;;;;:::o;51802:102::-;51862:13;51891:7;51884:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51802:102;:::o;6036:723::-;6092:13;6322:1;6313:5;:10;6309:53;;;6340:10;;;;;;;;;;;;;;;;;;;;;6309:53;6372:12;6387:5;6372:20;;6403:14;6428:78;6443:1;6435:4;:9;6428:78;;6461:8;;;;;:::i;:::-;;;;6492:2;6484:10;;;;;:::i;:::-;;;6428:78;;;6516:19;6548:6;6538:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6516:39;;6566:154;6582:1;6573:5;:10;6566:154;;6610:1;6600:11;;;;;:::i;:::-;;;6677:2;6669:5;:10;;;;:::i;:::-;6656:2;:24;;;;:::i;:::-;6643:39;;6626:6;6633;6626:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6706:2;6697:11;;;;;:::i;:::-;;;6566:154;;;6744:6;6730:21;;;;;6036:723;;;;:::o;37674:229::-;37735:7;37780:1;37763:19;;:5;:19;;;;37755:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37862:12;:19;37875:5;37862:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;37854:41;;37847:48;;37674:229;;;:::o;49413:159::-;;;;;:::o;49984:158::-;;;;;:::o;43026:163::-;43149:32;43155:2;43159:8;43169:5;43176:4;43149:5;:32::i;:::-;43026:163;;;:::o;12451:326::-;12511:4;12768:1;12746:7;:19;;;:23;12739:30;;12451:326;;;:::o;43448:1538::-;43587:20;43610:12;;43587:35;;43655:1;43641:16;;:2;:16;;;;43633:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43726:1;43714:8;:13;;43706:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43785:61;43815:1;43819:2;43823:12;43837:8;43785:21;:61::i;:::-;44160:8;44124:12;:16;44137:2;44124:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44225:8;44184:12;:16;44197:2;44184:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44284:2;44251:11;:25;44263:12;44251:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44351:15;44301:11;:25;44313:12;44301:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44384:20;44407:12;44384:35;;44441:9;44436:415;44456:8;44452:1;:12;44436:415;;;44520:12;44516:2;44495:38;;44512:1;44495:38;;;;;;;;;;;;44556:4;44552:249;;;44619:59;44650:1;44654:2;44658:12;44672:5;44619:22;:59::i;:::-;44585:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;44552:249;44821:14;;;;;;;44466:3;;;;;;;44436:415;;;;44882:12;44867;:27;;;;44099:807;44918:60;44947:1;44951:2;44955:12;44969:8;44918:20;:60::i;:::-;43576:1410;43448: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:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:365::-;11077:3;11098:66;11162:1;11157:3;11098:66;:::i;:::-;11091:73;;11173:93;11262:3;11173:93;:::i;:::-;11291:2;11286:3;11282:12;11275:19;;10935:365;;;:::o;11306:366::-;11448:3;11469:67;11533:2;11528:3;11469:67;:::i;:::-;11462:74;;11545:93;11634:3;11545:93;:::i;:::-;11663:2;11658:3;11654:12;11647:19;;11306:366;;;:::o;11678:::-;11820:3;11841:67;11905:2;11900:3;11841:67;:::i;:::-;11834:74;;11917:93;12006:3;11917:93;:::i;:::-;12035:2;12030:3;12026:12;12019:19;;11678:366;;;:::o;12050:::-;12192:3;12213:67;12277:2;12272:3;12213:67;:::i;:::-;12206:74;;12289:93;12378:3;12289:93;:::i;:::-;12407:2;12402:3;12398:12;12391:19;;12050:366;;;:::o;12422:::-;12564:3;12585:67;12649:2;12644:3;12585:67;:::i;:::-;12578:74;;12661:93;12750:3;12661:93;:::i;:::-;12779:2;12774:3;12770:12;12763:19;;12422:366;;;:::o;12794:::-;12936:3;12957:67;13021:2;13016:3;12957:67;:::i;:::-;12950:74;;13033:93;13122:3;13033:93;:::i;:::-;13151:2;13146:3;13142:12;13135:19;;12794:366;;;:::o;13166:::-;13308:3;13329:67;13393:2;13388:3;13329:67;:::i;:::-;13322:74;;13405:93;13494:3;13405:93;:::i;:::-;13523:2;13518:3;13514:12;13507:19;;13166:366;;;:::o;13538:::-;13680:3;13701:67;13765:2;13760:3;13701:67;:::i;:::-;13694:74;;13777:93;13866:3;13777:93;:::i;:::-;13895:2;13890:3;13886:12;13879:19;;13538:366;;;:::o;13910:::-;14052:3;14073:67;14137:2;14132:3;14073:67;:::i;:::-;14066:74;;14149:93;14238:3;14149:93;:::i;:::-;14267:2;14262:3;14258:12;14251:19;;13910:366;;;:::o;14282:::-;14424:3;14445:67;14509:2;14504:3;14445:67;:::i;:::-;14438:74;;14521:93;14610:3;14521:93;:::i;:::-;14639:2;14634:3;14630:12;14623:19;;14282:366;;;:::o;14654:::-;14796:3;14817:67;14881:2;14876:3;14817:67;:::i;:::-;14810:74;;14893:93;14982:3;14893:93;:::i;:::-;15011:2;15006:3;15002:12;14995:19;;14654:366;;;:::o;15026:398::-;15185:3;15206:83;15287:1;15282:3;15206:83;:::i;:::-;15199:90;;15298:93;15387:3;15298:93;:::i;:::-;15416:1;15411:3;15407:11;15400:18;;15026:398;;;:::o;15430:366::-;15572:3;15593:67;15657:2;15652:3;15593:67;:::i;:::-;15586:74;;15669:93;15758:3;15669:93;:::i;:::-;15787:2;15782:3;15778:12;15771:19;;15430:366;;;:::o;15802:::-;15944:3;15965:67;16029:2;16024:3;15965:67;:::i;:::-;15958:74;;16041:93;16130:3;16041:93;:::i;:::-;16159:2;16154:3;16150:12;16143:19;;15802:366;;;:::o;16174:::-;16316:3;16337:67;16401:2;16396:3;16337:67;:::i;:::-;16330:74;;16413:93;16502:3;16413:93;:::i;:::-;16531:2;16526:3;16522:12;16515:19;;16174:366;;;:::o;16546:::-;16688:3;16709:67;16773:2;16768:3;16709:67;:::i;:::-;16702:74;;16785:93;16874:3;16785:93;:::i;:::-;16903:2;16898:3;16894:12;16887:19;;16546:366;;;:::o;16918:::-;17060:3;17081:67;17145:2;17140:3;17081:67;:::i;:::-;17074:74;;17157:93;17246:3;17157:93;:::i;:::-;17275:2;17270:3;17266:12;17259:19;;16918:366;;;:::o;17290:::-;17432:3;17453:67;17517:2;17512:3;17453:67;:::i;:::-;17446:74;;17529:93;17618:3;17529:93;:::i;:::-;17647:2;17642:3;17638:12;17631:19;;17290:366;;;:::o;17662:::-;17804:3;17825:67;17889:2;17884:3;17825:67;:::i;:::-;17818:74;;17901:93;17990:3;17901:93;:::i;:::-;18019:2;18014:3;18010:12;18003:19;;17662:366;;;:::o;18034:::-;18176:3;18197:67;18261:2;18256:3;18197:67;:::i;:::-;18190:74;;18273:93;18362:3;18273:93;:::i;:::-;18391:2;18386:3;18382:12;18375:19;;18034:366;;;:::o;18406:::-;18548:3;18569:67;18633:2;18628:3;18569:67;:::i;:::-;18562:74;;18645:93;18734:3;18645:93;:::i;:::-;18763:2;18758:3;18754:12;18747:19;;18406:366;;;:::o;18778:118::-;18865:24;18883:5;18865:24;:::i;:::-;18860:3;18853:37;18778:118;;:::o;18902:435::-;19082:3;19104:95;19195:3;19186:6;19104:95;:::i;:::-;19097:102;;19216:95;19307:3;19298:6;19216:95;:::i;:::-;19209:102;;19328:3;19321:10;;18902:435;;;;;:::o;19343:379::-;19527:3;19549:147;19692:3;19549:147;:::i;:::-;19542:154;;19713:3;19706:10;;19343:379;;;:::o;19728:222::-;19821:4;19859:2;19848:9;19844:18;19836:26;;19872:71;19940:1;19929:9;19925:17;19916:6;19872:71;:::i;:::-;19728:222;;;;:::o;19956:640::-;20151:4;20189:3;20178:9;20174:19;20166:27;;20203:71;20271:1;20260:9;20256:17;20247:6;20203:71;:::i;:::-;20284:72;20352:2;20341:9;20337:18;20328:6;20284:72;:::i;:::-;20366;20434:2;20423:9;20419:18;20410:6;20366:72;:::i;:::-;20485:9;20479:4;20475:20;20470:2;20459:9;20455:18;20448:48;20513:76;20584:4;20575:6;20513:76;:::i;:::-;20505:84;;19956:640;;;;;;;:::o;20602:210::-;20689:4;20727:2;20716:9;20712:18;20704:26;;20740:65;20802:1;20791:9;20787:17;20778:6;20740:65;:::i;:::-;20602:210;;;;:::o;20818:313::-;20931:4;20969:2;20958:9;20954:18;20946:26;;21018:9;21012:4;21008:20;21004:1;20993:9;20989:17;20982:47;21046:78;21119:4;21110:6;21046:78;:::i;:::-;21038:86;;20818:313;;;;:::o;21137:419::-;21303:4;21341:2;21330:9;21326:18;21318:26;;21390:9;21384:4;21380:20;21376:1;21365:9;21361:17;21354:47;21418:131;21544:4;21418:131;:::i;:::-;21410:139;;21137:419;;;:::o;21562:::-;21728:4;21766:2;21755:9;21751:18;21743:26;;21815:9;21809:4;21805:20;21801:1;21790:9;21786:17;21779:47;21843:131;21969:4;21843:131;:::i;:::-;21835:139;;21562:419;;;:::o;21987:::-;22153:4;22191:2;22180:9;22176:18;22168:26;;22240:9;22234:4;22230:20;22226:1;22215:9;22211:17;22204:47;22268:131;22394:4;22268:131;:::i;:::-;22260:139;;21987:419;;;:::o;22412:::-;22578:4;22616:2;22605:9;22601:18;22593:26;;22665:9;22659:4;22655:20;22651:1;22640:9;22636:17;22629:47;22693:131;22819:4;22693:131;:::i;:::-;22685:139;;22412:419;;;:::o;22837:::-;23003:4;23041:2;23030:9;23026:18;23018:26;;23090:9;23084:4;23080:20;23076:1;23065:9;23061:17;23054:47;23118:131;23244:4;23118:131;:::i;:::-;23110:139;;22837:419;;;:::o;23262:::-;23428:4;23466:2;23455:9;23451:18;23443:26;;23515:9;23509:4;23505:20;23501:1;23490:9;23486:17;23479:47;23543:131;23669:4;23543:131;:::i;:::-;23535:139;;23262:419;;;:::o;23687:::-;23853:4;23891:2;23880:9;23876:18;23868:26;;23940:9;23934:4;23930:20;23926:1;23915:9;23911:17;23904:47;23968:131;24094:4;23968:131;:::i;:::-;23960:139;;23687:419;;;:::o;24112:::-;24278:4;24316:2;24305:9;24301:18;24293:26;;24365:9;24359:4;24355:20;24351:1;24340:9;24336:17;24329:47;24393:131;24519:4;24393:131;:::i;:::-;24385:139;;24112:419;;;:::o;24537:::-;24703:4;24741:2;24730:9;24726:18;24718:26;;24790:9;24784:4;24780:20;24776:1;24765:9;24761:17;24754:47;24818:131;24944:4;24818:131;:::i;:::-;24810:139;;24537:419;;;:::o;24962:::-;25128:4;25166:2;25155:9;25151:18;25143:26;;25215:9;25209:4;25205:20;25201:1;25190:9;25186:17;25179:47;25243:131;25369:4;25243:131;:::i;:::-;25235:139;;24962:419;;;:::o;25387:::-;25553:4;25591:2;25580:9;25576:18;25568:26;;25640:9;25634:4;25630:20;25626:1;25615:9;25611:17;25604:47;25668:131;25794:4;25668:131;:::i;:::-;25660:139;;25387:419;;;:::o;25812:::-;25978:4;26016:2;26005:9;26001:18;25993:26;;26065:9;26059:4;26055:20;26051:1;26040:9;26036:17;26029:47;26093:131;26219:4;26093:131;:::i;:::-;26085:139;;25812:419;;;:::o;26237:::-;26403:4;26441:2;26430:9;26426:18;26418:26;;26490:9;26484:4;26480:20;26476:1;26465:9;26461:17;26454:47;26518:131;26644:4;26518:131;:::i;:::-;26510:139;;26237:419;;;:::o;26662:::-;26828:4;26866:2;26855:9;26851:18;26843:26;;26915:9;26909:4;26905:20;26901:1;26890:9;26886:17;26879:47;26943:131;27069:4;26943:131;:::i;:::-;26935:139;;26662:419;;;:::o;27087:::-;27253:4;27291:2;27280:9;27276:18;27268:26;;27340:9;27334:4;27330:20;27326:1;27315:9;27311:17;27304:47;27368:131;27494:4;27368:131;:::i;:::-;27360:139;;27087:419;;;:::o;27512:::-;27678:4;27716:2;27705:9;27701:18;27693:26;;27765:9;27759:4;27755:20;27751:1;27740:9;27736:17;27729:47;27793:131;27919:4;27793:131;:::i;:::-;27785:139;;27512:419;;;:::o;27937:::-;28103:4;28141:2;28130:9;28126:18;28118:26;;28190:9;28184:4;28180:20;28176:1;28165:9;28161:17;28154:47;28218:131;28344:4;28218:131;:::i;:::-;28210:139;;27937:419;;;:::o;28362:::-;28528:4;28566:2;28555:9;28551:18;28543:26;;28615:9;28609:4;28605:20;28601:1;28590:9;28586:17;28579:47;28643:131;28769:4;28643:131;:::i;:::-;28635:139;;28362:419;;;:::o;28787:::-;28953:4;28991:2;28980:9;28976:18;28968:26;;29040:9;29034:4;29030:20;29026:1;29015:9;29011:17;29004:47;29068:131;29194:4;29068:131;:::i;:::-;29060:139;;28787:419;;;:::o;29212:::-;29378:4;29416:2;29405:9;29401:18;29393:26;;29465:9;29459:4;29455:20;29451:1;29440:9;29436:17;29429:47;29493:131;29619:4;29493:131;:::i;:::-;29485:139;;29212:419;;;:::o;29637:::-;29803:4;29841:2;29830:9;29826:18;29818:26;;29890:9;29884:4;29880:20;29876:1;29865:9;29861:17;29854:47;29918:131;30044:4;29918:131;:::i;:::-;29910:139;;29637:419;;;:::o;30062:::-;30228:4;30266:2;30255:9;30251:18;30243:26;;30315:9;30309:4;30305:20;30301:1;30290:9;30286:17;30279:47;30343:131;30469:4;30343:131;:::i;:::-;30335:139;;30062:419;;;:::o;30487:::-;30653:4;30691:2;30680:9;30676:18;30668:26;;30740:9;30734:4;30730:20;30726:1;30715:9;30711:17;30704:47;30768:131;30894:4;30768:131;:::i;:::-;30760:139;;30487:419;;;:::o;30912:::-;31078:4;31116:2;31105:9;31101:18;31093:26;;31165:9;31159:4;31155:20;31151:1;31140:9;31136:17;31129:47;31193:131;31319:4;31193:131;:::i;:::-;31185:139;;30912:419;;;:::o;31337:::-;31503:4;31541:2;31530:9;31526:18;31518:26;;31590:9;31584:4;31580:20;31576:1;31565:9;31561:17;31554:47;31618:131;31744:4;31618:131;:::i;:::-;31610:139;;31337:419;;;:::o;31762:::-;31928:4;31966:2;31955:9;31951:18;31943:26;;32015:9;32009:4;32005:20;32001:1;31990:9;31986:17;31979:47;32043:131;32169:4;32043:131;:::i;:::-;32035:139;;31762:419;;;:::o;32187:::-;32353:4;32391:2;32380:9;32376:18;32368:26;;32440:9;32434:4;32430:20;32426:1;32415:9;32411:17;32404:47;32468:131;32594:4;32468:131;:::i;:::-;32460:139;;32187:419;;;:::o;32612:222::-;32705:4;32743:2;32732:9;32728:18;32720:26;;32756:71;32824:1;32813:9;32809:17;32800:6;32756:71;:::i;:::-;32612:222;;;;:::o;32840:129::-;32874:6;32901:20;;:::i;:::-;32891:30;;32930:33;32958:4;32950:6;32930:33;:::i;:::-;32840:129;;;:::o;32975:75::-;33008:6;33041:2;33035:9;33025:19;;32975:75;:::o;33056:307::-;33117:4;33207:18;33199:6;33196:30;33193:56;;;33229:18;;:::i;:::-;33193:56;33267:29;33289:6;33267:29;:::i;:::-;33259:37;;33351:4;33345;33341:15;33333:23;;33056:307;;;:::o;33369:98::-;33420:6;33454:5;33448:12;33438:22;;33369:98;;;:::o;33473:99::-;33525:6;33559:5;33553:12;33543:22;;33473:99;;;:::o;33578:168::-;33661:11;33695:6;33690:3;33683:19;33735:4;33730:3;33726:14;33711:29;;33578:168;;;;:::o;33752:147::-;33853:11;33890:3;33875:18;;33752:147;;;;:::o;33905:169::-;33989:11;34023:6;34018:3;34011:19;34063:4;34058:3;34054:14;34039:29;;33905:169;;;;:::o;34080:148::-;34182:11;34219:3;34204:18;;34080:148;;;;:::o;34234:305::-;34274:3;34293:20;34311:1;34293:20;:::i;:::-;34288:25;;34327:20;34345:1;34327:20;:::i;:::-;34322:25;;34481:1;34413:66;34409:74;34406:1;34403:81;34400:107;;;34487:18;;:::i;:::-;34400:107;34531:1;34528;34524:9;34517:16;;34234:305;;;;:::o;34545:185::-;34585:1;34602:20;34620:1;34602:20;:::i;:::-;34597:25;;34636:20;34654:1;34636:20;:::i;:::-;34631:25;;34675:1;34665:35;;34680:18;;:::i;:::-;34665:35;34722:1;34719;34715:9;34710:14;;34545:185;;;;:::o;34736:348::-;34776:7;34799:20;34817:1;34799:20;:::i;:::-;34794:25;;34833:20;34851:1;34833:20;:::i;:::-;34828:25;;35021:1;34953:66;34949:74;34946:1;34943:81;34938:1;34931:9;34924:17;34920:105;34917:131;;;35028:18;;:::i;:::-;34917:131;35076:1;35073;35069:9;35058:20;;34736:348;;;;:::o;35090:191::-;35130:4;35150:20;35168:1;35150:20;:::i;:::-;35145:25;;35184:20;35202:1;35184:20;:::i;:::-;35179:25;;35223:1;35220;35217:8;35214:34;;;35228:18;;:::i;:::-;35214:34;35273:1;35270;35266:9;35258:17;;35090:191;;;;:::o;35287:96::-;35324:7;35353:24;35371:5;35353:24;:::i;:::-;35342:35;;35287:96;;;:::o;35389:90::-;35423:7;35466:5;35459:13;35452:21;35441:32;;35389:90;;;:::o;35485:149::-;35521:7;35561:66;35554:5;35550:78;35539:89;;35485:149;;;:::o;35640:126::-;35677:7;35717:42;35710:5;35706:54;35695:65;;35640:126;;;:::o;35772:77::-;35809:7;35838:5;35827:16;;35772:77;;;:::o;35855:154::-;35939:6;35934:3;35929;35916:30;36001:1;35992:6;35987:3;35983:16;35976:27;35855:154;;;:::o;36015:307::-;36083:1;36093:113;36107:6;36104:1;36101:13;36093:113;;;36192:1;36187:3;36183:11;36177:18;36173:1;36168:3;36164:11;36157:39;36129:2;36126:1;36122:10;36117:15;;36093:113;;;36224:6;36221:1;36218:13;36215:101;;;36304:1;36295:6;36290:3;36286:16;36279:27;36215:101;36064:258;36015:307;;;:::o;36328:320::-;36372:6;36409:1;36403:4;36399:12;36389:22;;36456:1;36450:4;36446:12;36477:18;36467:81;;36533:4;36525:6;36521:17;36511:27;;36467:81;36595:2;36587:6;36584:14;36564:18;36561:38;36558:84;;;36614:18;;:::i;:::-;36558:84;36379:269;36328:320;;;:::o;36654:281::-;36737:27;36759:4;36737:27;:::i;:::-;36729:6;36725:40;36867:6;36855:10;36852:22;36831:18;36819:10;36816:34;36813:62;36810:88;;;36878:18;;:::i;:::-;36810:88;36918:10;36914:2;36907:22;36697:238;36654:281;;:::o;36941:233::-;36980:3;37003:24;37021:5;37003:24;:::i;:::-;36994:33;;37049:66;37042:5;37039:77;37036:103;;;37119:18;;:::i;:::-;37036:103;37166:1;37159:5;37155:13;37148:20;;36941:233;;;:::o;37180:176::-;37212:1;37229:20;37247:1;37229:20;:::i;:::-;37224:25;;37263:20;37281:1;37263:20;:::i;:::-;37258:25;;37302:1;37292:35;;37307:18;;:::i;:::-;37292:35;37348:1;37345;37341:9;37336:14;;37180:176;;;;:::o;37362:180::-;37410:77;37407:1;37400:88;37507:4;37504:1;37497:15;37531:4;37528:1;37521:15;37548:180;37596:77;37593:1;37586:88;37693:4;37690:1;37683:15;37717:4;37714:1;37707:15;37734:180;37782:77;37779:1;37772:88;37879:4;37876:1;37869:15;37903:4;37900:1;37893:15;37920:180;37968:77;37965:1;37958:88;38065:4;38062:1;38055:15;38089:4;38086:1;38079:15;38106:180;38154:77;38151:1;38144:88;38251:4;38248:1;38241:15;38275:4;38272:1;38265:15;38292:117;38401:1;38398;38391:12;38415:117;38524:1;38521;38514:12;38538:117;38647:1;38644;38637:12;38661:117;38770:1;38767;38760:12;38784:117;38893:1;38890;38883:12;38907:117;39016:1;39013;39006:12;39030:102;39071:6;39122:2;39118:7;39113:2;39106:5;39102:14;39098:28;39088:38;;39030:102;;;:::o;39138:221::-;39278:34;39274:1;39266:6;39262:14;39255:58;39347:4;39342:2;39334:6;39330:15;39323:29;39138:221;:::o;39365:225::-;39505:34;39501:1;39493:6;39489:14;39482:58;39574:8;39569:2;39561:6;39557:15;39550:33;39365:225;:::o;39596:229::-;39736:34;39732:1;39724:6;39720:14;39713:58;39805:12;39800:2;39792:6;39788:15;39781:37;39596:229;:::o;39831:182::-;39971:34;39967:1;39959:6;39955:14;39948:58;39831:182;:::o;40019:222::-;40159:34;40155:1;40147:6;40143:14;40136:58;40228:5;40223:2;40215:6;40211:15;40204:30;40019:222;:::o;40247:224::-;40387:34;40383:1;40375:6;40371:14;40364:58;40456:7;40451:2;40443:6;40439:15;40432:32;40247:224;:::o;40477:236::-;40617:34;40613:1;40605:6;40601:14;40594:58;40686:19;40681:2;40673:6;40669:15;40662:44;40477:236;:::o;40719:159::-;40859:11;40855:1;40847:6;40843:14;40836:35;40719:159;:::o;40884:244::-;41024:34;41020:1;41012:6;41008:14;41001:58;41093:27;41088:2;41080:6;41076:15;41069:52;40884:244;:::o;41134:167::-;41274:19;41270:1;41262:6;41258:14;41251:43;41134:167;:::o;41307:230::-;41447:34;41443:1;41435:6;41431:14;41424:58;41516:13;41511:2;41503:6;41499:15;41492:38;41307:230;:::o;41543:225::-;41683:34;41679:1;41671:6;41667:14;41660:58;41752:8;41747:2;41739:6;41735:15;41728:33;41543:225;:::o;41774:182::-;41914:34;41910:1;41902:6;41898:14;41891:58;41774:182;:::o;41962:234::-;42102:34;42098:1;42090:6;42086:14;42079:58;42171:17;42166:2;42158:6;42154:15;42147:42;41962:234;:::o;42202:176::-;42342:28;42338:1;42330:6;42326:14;42319:52;42202:176;:::o;42384:237::-;42524:34;42520:1;42512:6;42508:14;42501:58;42593:20;42588:2;42580:6;42576:15;42569:45;42384:237;:::o;42627:178::-;42767:30;42763:1;42755:6;42751:14;42744:54;42627:178;:::o;42811:221::-;42951:34;42947:1;42939:6;42935:14;42928:58;43020:4;43015:2;43007:6;43003:15;42996:29;42811:221;:::o;43038:114::-;;:::o;43158:166::-;43298:18;43294:1;43286:6;43282:14;43275:42;43158:166;:::o;43330:238::-;43470:34;43466:1;43458:6;43454:14;43447:58;43539:21;43534:2;43526:6;43522:15;43515:46;43330:238;:::o;43574:168::-;43714:20;43710:1;43702:6;43698:14;43691:44;43574:168;:::o;43748:220::-;43888:34;43884:1;43876:6;43872:14;43865:58;43957:3;43952:2;43944:6;43940:15;43933:28;43748:220;:::o;43974:227::-;44114:34;44110:1;44102:6;44098:14;44091:58;44183:10;44178:2;44170:6;44166:15;44159:35;43974:227;:::o;44207:233::-;44347:34;44343:1;44335:6;44331:14;44324:58;44416:16;44411:2;44403:6;44399:15;44392:41;44207:233;:::o;44446:181::-;44586:33;44582:1;44574:6;44570:14;44563:57;44446:181;:::o;44633:234::-;44773:34;44769:1;44761:6;44757:14;44750:58;44842:17;44837:2;44829:6;44825:15;44818:42;44633:234;:::o;44873:232::-;45013:34;45009:1;45001:6;44997:14;44990:58;45082:15;45077:2;45069:6;45065:15;45058:40;44873:232;:::o;45111:122::-;45184:24;45202:5;45184:24;:::i;:::-;45177:5;45174:35;45164:63;;45223:1;45220;45213:12;45164:63;45111:122;:::o;45239:116::-;45309:21;45324:5;45309:21;:::i;:::-;45302:5;45299:32;45289:60;;45345:1;45342;45335:12;45289:60;45239:116;:::o;45361:120::-;45433:23;45450:5;45433:23;:::i;:::-;45426:5;45423:34;45413:62;;45471:1;45468;45461:12;45413:62;45361:120;:::o;45487:122::-;45560:24;45578:5;45560:24;:::i;:::-;45553:5;45550:35;45540:63;;45599:1;45596;45589:12;45540:63;45487:122;:::o

Swarm Source

ipfs://9b28e2c10ce4d088db5cd6ea82fa97174c6fc6caed4dab9624d669a18f3ca2bb
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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