ETH Price: $3,503.76 (+3.94%)
Gas: 4 Gwei

Token

Ivy Bears (IB)
 

Overview

Max Total Supply

3,000 IB

Holders

566

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 IB
0x08c00e3e5757b393968493e0e44054bf72075117
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:
IvyBears

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/**
 * @title Ivy Bears contract
 * @dev Extends ERC721A - thanks azuki
 */

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/TwistedToonz.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721A: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

contract IvyBears is ERC721A, Ownable, ReentrancyGuard {

  string public        baseURI;
  uint public          price             = 0.005 ether;
  uint public          maxPerTx          = 5;
  uint public          maxPerWallet      = 10;
  uint public          totalFree         = 1000;
  uint public          maxSupply         = 3000;
  uint public          nextOwnerToExplicitlySet;
  bool public          mintEnabled;

  constructor() ERC721A("Ivy Bears", "IB"){}

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

    _safeMint(msg.sender, amt);
  }

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

    _safeMint(msg.sender, amt);
  }

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

          nextOwnerToExplicitlySet = endIndex + 1;
      }
  }
}

Contract Security Audit

Contract ABI

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

60806040526611c37937e08000600a556005600b55600a600c556103e8600d55610bb8600e553480156200003257600080fd5b506040518060400160405280600981526020017f49767920426561727300000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f49420000000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000b7929190620001cf565b508060029080519060200190620000d0929190620001cf565b505050620000f3620000e76200010160201b60201c565b6200010960201b60201c565b6001600881905550620002e4565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001dd906200027f565b90600052602060002090601f0160209004810192826200020157600085556200024d565b82601f106200021c57805160ff19168380011785556200024d565b828001600101855582156200024d579182015b828111156200024c5782518255916020019190600101906200022f565b5b5090506200025c919062000260565b5090565b5b808211156200027b57600081600090555060010162000261565b5090565b600060028204905060018216806200029857607f821691505b60208210811415620002af57620002ae620002b5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614ee880620002f46000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063b88d4fde116100ab578063d7224ba01161006f578063d7224ba014610818578063dc33e68114610843578063e985e9c514610880578063f2fde38b146108bd578063f968adbe146108e657610230565b8063b88d4fde14610733578063c6f6f2161461075c578063c87b56dd14610785578063d1239730146107c2578063d5abeb01146107ed57610230565b80639231ab2a116100f25780639231ab2a1461065b57806395d89b4114610698578063a035b1fe146106c3578063a0712d68146106ee578063a22cb4651461070a57610230565b8063715018a6146105b05780637d55094d146105c75780638da5cb5b146105de5780638db89f071461060957806391b7f5ed1461063257610230565b8063333e44e6116101bc57806355f804b31161018057806355f804b3146104b9578063563aaf11146104e25780636352211e1461050b5780636c0360eb1461054857806370a082311461057357610230565b8063333e44e6146103e65780633ccfd60b1461041157806342842e0e14610428578063453c2310146104515780634f6ccce71461047c57610230565b806318160ddd1161020357806318160ddd14610303578063228025e81461032e57806323b872dd146103575780632d20fb60146103805780632f745c59146103a957610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613660565b610911565b6040516102699190613d74565b60405180910390f35b34801561027e57600080fd5b50610287610a5b565b6040516102949190613d8f565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613707565b610aed565b6040516102d19190613d0d565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613620565b610b72565b005b34801561030f57600080fd5b50610318610c8b565b60405161032591906141cc565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613707565b610c94565b005b34801561036357600080fd5b5061037e6004803603810190610379919061350a565b610d1a565b005b34801561038c57600080fd5b506103a760048036038101906103a29190613707565b610d2a565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190613620565b610e08565b6040516103dd91906141cc565b60405180910390f35b3480156103f257600080fd5b506103fb610ffa565b60405161040891906141cc565b60405180910390f35b34801561041d57600080fd5b50610426611000565b005b34801561043457600080fd5b5061044f600480360381019061044a919061350a565b611181565b005b34801561045d57600080fd5b506104666111a1565b60405161047391906141cc565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190613707565b6111a7565b6040516104b091906141cc565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db91906136ba565b6111fa565b005b3480156104ee57600080fd5b5061050960048036038101906105049190613707565b61128c565b005b34801561051757600080fd5b50610532600480360381019061052d9190613707565b611312565b60405161053f9190613d0d565b60405180910390f35b34801561055457600080fd5b5061055d611328565b60405161056a9190613d8f565b60405180910390f35b34801561057f57600080fd5b5061059a6004803603810190610595919061349d565b6113b6565b6040516105a791906141cc565b60405180910390f35b3480156105bc57600080fd5b506105c561149f565b005b3480156105d357600080fd5b506105dc611527565b005b3480156105ea57600080fd5b506105f36115cf565b6040516106009190613d0d565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190613707565b6115f9565b005b34801561063e57600080fd5b5061065960048036038101906106549190613707565b6116e4565b005b34801561066757600080fd5b50610682600480360381019061067d9190613707565b61176a565b60405161068f91906141b1565b60405180910390f35b3480156106a457600080fd5b506106ad611782565b6040516106ba9190613d8f565b60405180910390f35b3480156106cf57600080fd5b506106d8611814565b6040516106e591906141cc565b60405180910390f35b61070860048036038101906107039190613707565b61181a565b005b34801561071657600080fd5b50610731600480360381019061072c91906135e0565b611a70565b005b34801561073f57600080fd5b5061075a6004803603810190610755919061355d565b611bf1565b005b34801561076857600080fd5b50610783600480360381019061077e9190613707565b611c4d565b005b34801561079157600080fd5b506107ac60048036038101906107a79190613707565b611cd3565b6040516107b99190613d8f565b60405180910390f35b3480156107ce57600080fd5b506107d7611d7b565b6040516107e49190613d74565b60405180910390f35b3480156107f957600080fd5b50610802611d8e565b60405161080f91906141cc565b60405180910390f35b34801561082457600080fd5b5061082d611d94565b60405161083a91906141cc565b60405180910390f35b34801561084f57600080fd5b5061086a6004803603810190610865919061349d565b611d9a565b60405161087791906141cc565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a291906134ca565b611dac565b6040516108b49190613d74565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df919061349d565b611e40565b005b3480156108f257600080fd5b506108fb611f38565b60405161090891906141cc565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109dc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a545750610a5382611f3e565b5b9050919050565b606060018054610a6a9061446a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a969061446a565b8015610ae35780601f10610ab857610100808354040283529160200191610ae3565b820191906000526020600020905b815481529060010190602001808311610ac657829003601f168201915b5050505050905090565b6000610af882611fa8565b610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e90614191565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b7d82611312565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590614071565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0d611fb5565b73ffffffffffffffffffffffffffffffffffffffff161480610c3c5750610c3b81610c36611fb5565b611dac565b5b610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290613f31565b60405180910390fd5b610c86838383611fbd565b505050565b60008054905090565b610c9c611fb5565b73ffffffffffffffffffffffffffffffffffffffff16610cba6115cf565b73ffffffffffffffffffffffffffffffffffffffff1614610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790613fd1565b60405180910390fd5b80600e8190555050565b610d2583838361206f565b505050565b610d32611fb5565b73ffffffffffffffffffffffffffffffffffffffff16610d506115cf565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90613fd1565b60405180910390fd5b60026008541415610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390614151565b60405180910390fd5b6002600881905550610dfd816125af565b600160088190555050565b6000610e13836113b6565b8210610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90613db1565b60405180910390fd5b6000610e5e610c8b565b905060008060005b83811015610fb8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f5857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610faa5786841415610fa1578195505050505050610ff4565b83806001019450505b508080600101915050610e66565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90614131565b60405180910390fd5b92915050565b600d5481565b611008611fb5565b73ffffffffffffffffffffffffffffffffffffffff166110266115cf565b73ffffffffffffffffffffffffffffffffffffffff161461107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390613fd1565b60405180910390fd5b600260085414156110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990614151565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516110f090613cf8565b60006040518083038185875af1925050503d806000811461112d576040519150601f19603f3d011682016040523d82523d6000602084013e611132565b606091505b5050905080611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90614091565b60405180910390fd5b506001600881905550565b61119c83838360405180602001604052806000815250611bf1565b505050565b600c5481565b60006111b1610c8b565b82106111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990613e91565b60405180910390fd5b819050919050565b611202611fb5565b73ffffffffffffffffffffffffffffffffffffffff166112206115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d90613fd1565b60405180910390fd5b818160099190611287929190613291565b505050565b611294611fb5565b73ffffffffffffffffffffffffffffffffffffffff166112b26115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff90613fd1565b60405180910390fd5b80600d8190555050565b600061131d826127e1565b600001519050919050565b600980546113359061446a565b80601f01602080910402602001604051908101604052809291908181526020018280546113619061446a565b80156113ae5780601f10611383576101008083540402835291602001916113ae565b820191906000526020600020905b81548152906001019060200180831161139157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90613f91565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114a7611fb5565b73ffffffffffffffffffffffffffffffffffffffff166114c56115cf565b73ffffffffffffffffffffffffffffffffffffffff161461151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290613fd1565b60405180910390fd5b611525600061297b565b565b61152f611fb5565b73ffffffffffffffffffffffffffffffffffffffff1661154d6115cf565b73ffffffffffffffffffffffffffffffffffffffff16146115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90613fd1565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611601611fb5565b73ffffffffffffffffffffffffffffffffffffffff1661161f6115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90613fd1565b60405180910390fd5b6001600e54611684919061428b565b8161168d610c8b565b611697919061428b565b106116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613f11565b60405180910390fd5b6116e13382612a41565b50565b6116ec611fb5565b73ffffffffffffffffffffffffffffffffffffffff1661170a6115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790613fd1565b60405180910390fd5b80600a8190555050565b611772613317565b61177b826127e1565b9050919050565b6060600280546117919061446a565b80601f01602080910402602001604051908101604052809291908181526020018280546117bd9061446a565b801561180a5780601f106117df5761010080835404028352916020019161180a565b820191906000526020600020905b8154815290600101906020018083116117ed57829003601f168201915b5050505050905090565b600a5481565b6000600a5490506001600d54611830919061428b565b82611839610c8b565b611843919061428b565b101561184e57600090505b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613e11565b60405180910390fd5b80826118c89190614312565b3414611909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190090614051565b60405180910390fd5b600c548261191633611d9a565b611920919061428b565b1115611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890613e71565b60405180910390fd5b6001600e54611970919061428b565b82611979610c8b565b611983919061428b565b106119c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ba90613f71565b60405180910390fd5b601060009054906101000a900460ff16611a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0990613dd1565b60405180910390fd5b6001600b54611a21919061428b565b8210611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5990614111565b60405180910390fd5b611a6c3383612a41565b5050565b611a78611fb5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add90614011565b60405180910390fd5b8060066000611af3611fb5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ba0611fb5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611be59190613d74565b60405180910390a35050565b611bfc84848461206f565b611c0884848484612a5f565b611c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3e906140b1565b60405180910390fd5b50505050565b611c55611fb5565b73ffffffffffffffffffffffffffffffffffffffff16611c736115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc090613fd1565b60405180910390fd5b80600b8190555050565b6060611cde82611fa8565b611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490613ff1565b60405180910390fd5b6000611d27612bf6565b9050600081511415611d485760405180602001604052806000815250611d73565b80611d5284612c88565b604051602001611d63929190613cd4565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600e5481565b600f5481565b6000611da582612de9565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e48611fb5565b73ffffffffffffffffffffffffffffffffffffffff16611e666115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb390613fd1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390613df1565b60405180910390fd5b611f358161297b565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061207a826127e1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120a1611fb5565b73ffffffffffffffffffffffffffffffffffffffff1614806120fd57506120c6611fb5565b73ffffffffffffffffffffffffffffffffffffffff166120e584610aed565b73ffffffffffffffffffffffffffffffffffffffff16145b8061211957506121188260000151612113611fb5565b611dac565b5b90508061215b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215290614031565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c490613fb1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561223d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223490613eb1565b60405180910390fd5b61224a8585856001612ed2565b61225a6000848460000151611fbd565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561253f5761249e81611fa8565b1561253e5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125a88585856001612ed8565b5050505050565b60008114156125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea90613f51565b60405180910390fd5b600080541415612638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262f90613e51565b60405180910390fd5b6000600f5490506000548110612683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267a90613ef1565b60405180910390fd5b600060018383010390506000546001820111156126a35760016000540390505b60008290505b8181116127d157600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127c4576000612726826127e1565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b80806001019150506126a9565b5060018101600f81905550505050565b6127e9613317565b6127f282611fa8565b612831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282890613e31565b60405180910390fd5b60008290505b6000811061293a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461292b578092505050612976565b50808060019003915050612837565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296d90614171565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a5b828260405180602001604052806000815250612ede565b5050565b6000612a808473ffffffffffffffffffffffffffffffffffffffff16612ef0565b15612be9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa9611fb5565b8786866040518563ffffffff1660e01b8152600401612acb9493929190613d28565b602060405180830381600087803b158015612ae557600080fd5b505af1925050508015612b1657506040513d601f19601f82011682018060405250810190612b13919061368d565b60015b612b99573d8060008114612b46576040519150601f19603f3d011682016040523d82523d6000602084013e612b4b565b606091505b50600081511415612b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b88906140b1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bee565b600190505b949350505050565b606060098054612c059061446a565b80601f0160208091040260200160405190810160405280929190818152602001828054612c319061446a565b8015612c7e5780601f10612c5357610100808354040283529160200191612c7e565b820191906000526020600020905b815481529060010190602001808311612c6157829003601f168201915b5050505050905090565b60606000821415612cd0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612de4565b600082905060005b60008214612d02578080612ceb906144cd565b915050600a82612cfb91906142e1565b9150612cd8565b60008167ffffffffffffffff811115612d1e57612d1d614603565b5b6040519080825280601f01601f191660200182016040528015612d505781602001600182028036833780820191505090505b5090505b60008514612ddd57600182612d69919061436c565b9150600a85612d789190614516565b6030612d84919061428b565b60f81b818381518110612d9a57612d996145d4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dd691906142e1565b9450612d54565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5190613ed1565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612eeb8383836001612f13565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f80906140d1565b60405180910390fd5b6000841415612fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc4906140f1565b60405180910390fd5b612fda6000868387612ed2565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561327457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561325f5761321f6000888488612a5f565b61325e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613255906140b1565b60405180910390fd5b5b818060010192505080806001019150506131a8565b50806000819055505061328a6000868387612ed8565b5050505050565b82805461329d9061446a565b90600052602060002090601f0160209004810192826132bf5760008555613306565b82601f106132d857803560ff1916838001178555613306565b82800160010185558215613306579182015b828111156133055782358255916020019190600101906132ea565b5b5090506133139190613351565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561336a576000816000905550600101613352565b5090565b600061338161337c8461420c565b6141e7565b90508281526020810184848401111561339d5761339c614641565b5b6133a8848285614428565b509392505050565b6000813590506133bf81614e56565b92915050565b6000813590506133d481614e6d565b92915050565b6000813590506133e981614e84565b92915050565b6000815190506133fe81614e84565b92915050565b600082601f83011261341957613418614637565b5b813561342984826020860161336e565b91505092915050565b60008083601f84011261344857613447614637565b5b8235905067ffffffffffffffff81111561346557613464614632565b5b6020830191508360018202830111156134815761348061463c565b5b9250929050565b60008135905061349781614e9b565b92915050565b6000602082840312156134b3576134b261464b565b5b60006134c1848285016133b0565b91505092915050565b600080604083850312156134e1576134e061464b565b5b60006134ef858286016133b0565b9250506020613500858286016133b0565b9150509250929050565b6000806000606084860312156135235761352261464b565b5b6000613531868287016133b0565b9350506020613542868287016133b0565b925050604061355386828701613488565b9150509250925092565b600080600080608085870312156135775761357661464b565b5b6000613585878288016133b0565b9450506020613596878288016133b0565b93505060406135a787828801613488565b925050606085013567ffffffffffffffff8111156135c8576135c7614646565b5b6135d487828801613404565b91505092959194509250565b600080604083850312156135f7576135f661464b565b5b6000613605858286016133b0565b9250506020613616858286016133c5565b9150509250929050565b600080604083850312156136375761363661464b565b5b6000613645858286016133b0565b925050602061365685828601613488565b9150509250929050565b6000602082840312156136765761367561464b565b5b6000613684848285016133da565b91505092915050565b6000602082840312156136a3576136a261464b565b5b60006136b1848285016133ef565b91505092915050565b600080602083850312156136d1576136d061464b565b5b600083013567ffffffffffffffff8111156136ef576136ee614646565b5b6136fb85828601613432565b92509250509250929050565b60006020828403121561371d5761371c61464b565b5b600061372b84828501613488565b91505092915050565b61373d816143a0565b82525050565b61374c816143a0565b82525050565b61375b816143b2565b82525050565b600061376c8261423d565b6137768185614253565b9350613786818560208601614437565b61378f81614650565b840191505092915050565b60006137a582614248565b6137af818561426f565b93506137bf818560208601614437565b6137c881614650565b840191505092915050565b60006137de82614248565b6137e88185614280565b93506137f8818560208601614437565b80840191505092915050565b600061381160228361426f565b915061381c82614661565b604082019050919050565b6000613834602a8361426f565b915061383f826146b0565b604082019050919050565b600061385760268361426f565b9150613862826146ff565b604082019050919050565b600061387a60138361426f565b91506138858261474e565b602082019050919050565b600061389d602a8361426f565b91506138a882614777565b604082019050919050565b60006138c060148361426f565b91506138cb826147c6565b602082019050919050565b60006138e360148361426f565b91506138ee826147ef565b602082019050919050565b600061390660238361426f565b915061391182614818565b604082019050919050565b600061392960258361426f565b915061393482614867565b604082019050919050565b600061394c60318361426f565b9150613957826148b6565b604082019050919050565b600061396f601c8361426f565b915061397a82614905565b602082019050919050565b600061399260098361426f565b915061399d8261492e565b602082019050919050565b60006139b560398361426f565b91506139c082614957565b604082019050919050565b60006139d860188361426f565b91506139e3826149a6565b602082019050919050565b60006139fb60118361426f565b9150613a06826149cf565b602082019050919050565b6000613a1e602b8361426f565b9150613a29826149f8565b604082019050919050565b6000613a4160268361426f565b9150613a4c82614a47565b604082019050919050565b6000613a6460208361426f565b9150613a6f82614a96565b602082019050919050565b6000613a87602f8361426f565b9150613a9282614abf565b604082019050919050565b6000613aaa601a8361426f565b9150613ab582614b0e565b602082019050919050565b6000613acd60328361426f565b9150613ad882614b37565b604082019050919050565b6000613af0601d8361426f565b9150613afb82614b86565b602082019050919050565b6000613b1360228361426f565b9150613b1e82614baf565b604082019050919050565b6000613b36600083614264565b9150613b4182614bfe565b600082019050919050565b6000613b5960108361426f565b9150613b6482614c01565b602082019050919050565b6000613b7c60338361426f565b9150613b8782614c2a565b604082019050919050565b6000613b9f60218361426f565b9150613baa82614c79565b604082019050919050565b6000613bc260288361426f565b9150613bcd82614cc8565b604082019050919050565b6000613be560138361426f565b9150613bf082614d17565b602082019050919050565b6000613c08602e8361426f565b9150613c1382614d40565b604082019050919050565b6000613c2b601f8361426f565b9150613c3682614d8f565b602082019050919050565b6000613c4e602f8361426f565b9150613c5982614db8565b604082019050919050565b6000613c71602d8361426f565b9150613c7c82614e07565b604082019050919050565b604082016000820151613c9d6000850182613734565b506020820151613cb06020850182613cc5565b50505050565b613cbf8161440a565b82525050565b613cce81614414565b82525050565b6000613ce082856137d3565b9150613cec82846137d3565b91508190509392505050565b6000613d0382613b29565b9150819050919050565b6000602082019050613d226000830184613743565b92915050565b6000608082019050613d3d6000830187613743565b613d4a6020830186613743565b613d576040830185613cb6565b8181036060830152613d698184613761565b905095945050505050565b6000602082019050613d896000830184613752565b92915050565b60006020820190508181036000830152613da9818461379a565b905092915050565b60006020820190508181036000830152613dca81613804565b9050919050565b60006020820190508181036000830152613dea81613827565b9050919050565b60006020820190508181036000830152613e0a8161384a565b9050919050565b60006020820190508181036000830152613e2a8161386d565b9050919050565b60006020820190508181036000830152613e4a81613890565b9050919050565b60006020820190508181036000830152613e6a816138b3565b9050919050565b60006020820190508181036000830152613e8a816138d6565b9050919050565b60006020820190508181036000830152613eaa816138f9565b9050919050565b60006020820190508181036000830152613eca8161391c565b9050919050565b60006020820190508181036000830152613eea8161393f565b9050919050565b60006020820190508181036000830152613f0a81613962565b9050919050565b60006020820190508181036000830152613f2a81613985565b9050919050565b60006020820190508181036000830152613f4a816139a8565b9050919050565b60006020820190508181036000830152613f6a816139cb565b9050919050565b60006020820190508181036000830152613f8a816139ee565b9050919050565b60006020820190508181036000830152613faa81613a11565b9050919050565b60006020820190508181036000830152613fca81613a34565b9050919050565b60006020820190508181036000830152613fea81613a57565b9050919050565b6000602082019050818103600083015261400a81613a7a565b9050919050565b6000602082019050818103600083015261402a81613a9d565b9050919050565b6000602082019050818103600083015261404a81613ac0565b9050919050565b6000602082019050818103600083015261406a81613ae3565b9050919050565b6000602082019050818103600083015261408a81613b06565b9050919050565b600060208201905081810360008301526140aa81613b4c565b9050919050565b600060208201905081810360008301526140ca81613b6f565b9050919050565b600060208201905081810360008301526140ea81613b92565b9050919050565b6000602082019050818103600083015261410a81613bb5565b9050919050565b6000602082019050818103600083015261412a81613bd8565b9050919050565b6000602082019050818103600083015261414a81613bfb565b9050919050565b6000602082019050818103600083015261416a81613c1e565b9050919050565b6000602082019050818103600083015261418a81613c41565b9050919050565b600060208201905081810360008301526141aa81613c64565b9050919050565b60006040820190506141c66000830184613c87565b92915050565b60006020820190506141e16000830184613cb6565b92915050565b60006141f1614202565b90506141fd828261449c565b919050565b6000604051905090565b600067ffffffffffffffff82111561422757614226614603565b5b61423082614650565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142968261440a565b91506142a18361440a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142d6576142d5614547565b5b828201905092915050565b60006142ec8261440a565b91506142f78361440a565b92508261430757614306614576565b5b828204905092915050565b600061431d8261440a565b91506143288361440a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561436157614360614547565b5b828202905092915050565b60006143778261440a565b91506143828361440a565b92508282101561439557614394614547565b5b828203905092915050565b60006143ab826143ea565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561445557808201518184015260208101905061443a565b83811115614464576000848401525b50505050565b6000600282049050600182168061448257607f821691505b60208210811415614496576144956145a5565b5b50919050565b6144a582614650565b810181811067ffffffffffffffff821117156144c4576144c3614603565b5b80604052505050565b60006144d88261440a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561450b5761450a614547565b5b600182019050919050565b60006145218261440a565b915061452c8361440a565b92508261453c5761453b614576565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f2069767920626561722e00000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f426520796f757273656c662c20686f6e65792e00000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f4e6f206d6f726520697679206265617273000000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614e5f816143a0565b8114614e6a57600080fd5b50565b614e76816143b2565b8114614e8157600080fd5b50565b614e8d816143be565b8114614e9857600080fd5b50565b614ea48161440a565b8114614eaf57600080fd5b5056fea264697066735822122028f3e892306c7d86a6c98016de1b1c34b4d70de18df06a653a6251b8d404fd3564736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e578063b88d4fde116100ab578063d7224ba01161006f578063d7224ba014610818578063dc33e68114610843578063e985e9c514610880578063f2fde38b146108bd578063f968adbe146108e657610230565b8063b88d4fde14610733578063c6f6f2161461075c578063c87b56dd14610785578063d1239730146107c2578063d5abeb01146107ed57610230565b80639231ab2a116100f25780639231ab2a1461065b57806395d89b4114610698578063a035b1fe146106c3578063a0712d68146106ee578063a22cb4651461070a57610230565b8063715018a6146105b05780637d55094d146105c75780638da5cb5b146105de5780638db89f071461060957806391b7f5ed1461063257610230565b8063333e44e6116101bc57806355f804b31161018057806355f804b3146104b9578063563aaf11146104e25780636352211e1461050b5780636c0360eb1461054857806370a082311461057357610230565b8063333e44e6146103e65780633ccfd60b1461041157806342842e0e14610428578063453c2310146104515780634f6ccce71461047c57610230565b806318160ddd1161020357806318160ddd14610303578063228025e81461032e57806323b872dd146103575780632d20fb60146103805780632f745c59146103a957610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613660565b610911565b6040516102699190613d74565b60405180910390f35b34801561027e57600080fd5b50610287610a5b565b6040516102949190613d8f565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613707565b610aed565b6040516102d19190613d0d565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613620565b610b72565b005b34801561030f57600080fd5b50610318610c8b565b60405161032591906141cc565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613707565b610c94565b005b34801561036357600080fd5b5061037e6004803603810190610379919061350a565b610d1a565b005b34801561038c57600080fd5b506103a760048036038101906103a29190613707565b610d2a565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190613620565b610e08565b6040516103dd91906141cc565b60405180910390f35b3480156103f257600080fd5b506103fb610ffa565b60405161040891906141cc565b60405180910390f35b34801561041d57600080fd5b50610426611000565b005b34801561043457600080fd5b5061044f600480360381019061044a919061350a565b611181565b005b34801561045d57600080fd5b506104666111a1565b60405161047391906141cc565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190613707565b6111a7565b6040516104b091906141cc565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db91906136ba565b6111fa565b005b3480156104ee57600080fd5b5061050960048036038101906105049190613707565b61128c565b005b34801561051757600080fd5b50610532600480360381019061052d9190613707565b611312565b60405161053f9190613d0d565b60405180910390f35b34801561055457600080fd5b5061055d611328565b60405161056a9190613d8f565b60405180910390f35b34801561057f57600080fd5b5061059a6004803603810190610595919061349d565b6113b6565b6040516105a791906141cc565b60405180910390f35b3480156105bc57600080fd5b506105c561149f565b005b3480156105d357600080fd5b506105dc611527565b005b3480156105ea57600080fd5b506105f36115cf565b6040516106009190613d0d565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b9190613707565b6115f9565b005b34801561063e57600080fd5b5061065960048036038101906106549190613707565b6116e4565b005b34801561066757600080fd5b50610682600480360381019061067d9190613707565b61176a565b60405161068f91906141b1565b60405180910390f35b3480156106a457600080fd5b506106ad611782565b6040516106ba9190613d8f565b60405180910390f35b3480156106cf57600080fd5b506106d8611814565b6040516106e591906141cc565b60405180910390f35b61070860048036038101906107039190613707565b61181a565b005b34801561071657600080fd5b50610731600480360381019061072c91906135e0565b611a70565b005b34801561073f57600080fd5b5061075a6004803603810190610755919061355d565b611bf1565b005b34801561076857600080fd5b50610783600480360381019061077e9190613707565b611c4d565b005b34801561079157600080fd5b506107ac60048036038101906107a79190613707565b611cd3565b6040516107b99190613d8f565b60405180910390f35b3480156107ce57600080fd5b506107d7611d7b565b6040516107e49190613d74565b60405180910390f35b3480156107f957600080fd5b50610802611d8e565b60405161080f91906141cc565b60405180910390f35b34801561082457600080fd5b5061082d611d94565b60405161083a91906141cc565b60405180910390f35b34801561084f57600080fd5b5061086a6004803603810190610865919061349d565b611d9a565b60405161087791906141cc565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a291906134ca565b611dac565b6040516108b49190613d74565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df919061349d565b611e40565b005b3480156108f257600080fd5b506108fb611f38565b60405161090891906141cc565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109dc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a545750610a5382611f3e565b5b9050919050565b606060018054610a6a9061446a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a969061446a565b8015610ae35780601f10610ab857610100808354040283529160200191610ae3565b820191906000526020600020905b815481529060010190602001808311610ac657829003601f168201915b5050505050905090565b6000610af882611fa8565b610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e90614191565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b7d82611312565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590614071565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0d611fb5565b73ffffffffffffffffffffffffffffffffffffffff161480610c3c5750610c3b81610c36611fb5565b611dac565b5b610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290613f31565b60405180910390fd5b610c86838383611fbd565b505050565b60008054905090565b610c9c611fb5565b73ffffffffffffffffffffffffffffffffffffffff16610cba6115cf565b73ffffffffffffffffffffffffffffffffffffffff1614610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0790613fd1565b60405180910390fd5b80600e8190555050565b610d2583838361206f565b505050565b610d32611fb5565b73ffffffffffffffffffffffffffffffffffffffff16610d506115cf565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90613fd1565b60405180910390fd5b60026008541415610dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de390614151565b60405180910390fd5b6002600881905550610dfd816125af565b600160088190555050565b6000610e13836113b6565b8210610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90613db1565b60405180910390fd5b6000610e5e610c8b565b905060008060005b83811015610fb8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f5857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610faa5786841415610fa1578195505050505050610ff4565b83806001019450505b508080600101915050610e66565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb90614131565b60405180910390fd5b92915050565b600d5481565b611008611fb5565b73ffffffffffffffffffffffffffffffffffffffff166110266115cf565b73ffffffffffffffffffffffffffffffffffffffff161461107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390613fd1565b60405180910390fd5b600260085414156110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990614151565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516110f090613cf8565b60006040518083038185875af1925050503d806000811461112d576040519150601f19603f3d011682016040523d82523d6000602084013e611132565b606091505b5050905080611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90614091565b60405180910390fd5b506001600881905550565b61119c83838360405180602001604052806000815250611bf1565b505050565b600c5481565b60006111b1610c8b565b82106111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990613e91565b60405180910390fd5b819050919050565b611202611fb5565b73ffffffffffffffffffffffffffffffffffffffff166112206115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d90613fd1565b60405180910390fd5b818160099190611287929190613291565b505050565b611294611fb5565b73ffffffffffffffffffffffffffffffffffffffff166112b26115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ff90613fd1565b60405180910390fd5b80600d8190555050565b600061131d826127e1565b600001519050919050565b600980546113359061446a565b80601f01602080910402602001604051908101604052809291908181526020018280546113619061446a565b80156113ae5780601f10611383576101008083540402835291602001916113ae565b820191906000526020600020905b81548152906001019060200180831161139157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90613f91565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114a7611fb5565b73ffffffffffffffffffffffffffffffffffffffff166114c56115cf565b73ffffffffffffffffffffffffffffffffffffffff161461151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290613fd1565b60405180910390fd5b611525600061297b565b565b61152f611fb5565b73ffffffffffffffffffffffffffffffffffffffff1661154d6115cf565b73ffffffffffffffffffffffffffffffffffffffff16146115a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159a90613fd1565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611601611fb5565b73ffffffffffffffffffffffffffffffffffffffff1661161f6115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90613fd1565b60405180910390fd5b6001600e54611684919061428b565b8161168d610c8b565b611697919061428b565b106116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613f11565b60405180910390fd5b6116e13382612a41565b50565b6116ec611fb5565b73ffffffffffffffffffffffffffffffffffffffff1661170a6115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790613fd1565b60405180910390fd5b80600a8190555050565b611772613317565b61177b826127e1565b9050919050565b6060600280546117919061446a565b80601f01602080910402602001604051908101604052809291908181526020018280546117bd9061446a565b801561180a5780601f106117df5761010080835404028352916020019161180a565b820191906000526020600020905b8154815290600101906020018083116117ed57829003601f168201915b5050505050905090565b600a5481565b6000600a5490506001600d54611830919061428b565b82611839610c8b565b611843919061428b565b101561184e57600090505b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613e11565b60405180910390fd5b80826118c89190614312565b3414611909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190090614051565b60405180910390fd5b600c548261191633611d9a565b611920919061428b565b1115611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890613e71565b60405180910390fd5b6001600e54611970919061428b565b82611979610c8b565b611983919061428b565b106119c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ba90613f71565b60405180910390fd5b601060009054906101000a900460ff16611a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0990613dd1565b60405180910390fd5b6001600b54611a21919061428b565b8210611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5990614111565b60405180910390fd5b611a6c3383612a41565b5050565b611a78611fb5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add90614011565b60405180910390fd5b8060066000611af3611fb5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ba0611fb5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611be59190613d74565b60405180910390a35050565b611bfc84848461206f565b611c0884848484612a5f565b611c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3e906140b1565b60405180910390fd5b50505050565b611c55611fb5565b73ffffffffffffffffffffffffffffffffffffffff16611c736115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc090613fd1565b60405180910390fd5b80600b8190555050565b6060611cde82611fa8565b611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490613ff1565b60405180910390fd5b6000611d27612bf6565b9050600081511415611d485760405180602001604052806000815250611d73565b80611d5284612c88565b604051602001611d63929190613cd4565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600e5481565b600f5481565b6000611da582612de9565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e48611fb5565b73ffffffffffffffffffffffffffffffffffffffff16611e666115cf565b73ffffffffffffffffffffffffffffffffffffffff1614611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb390613fd1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390613df1565b60405180910390fd5b611f358161297b565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061207a826127e1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120a1611fb5565b73ffffffffffffffffffffffffffffffffffffffff1614806120fd57506120c6611fb5565b73ffffffffffffffffffffffffffffffffffffffff166120e584610aed565b73ffffffffffffffffffffffffffffffffffffffff16145b8061211957506121188260000151612113611fb5565b611dac565b5b90508061215b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215290614031565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c490613fb1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561223d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223490613eb1565b60405180910390fd5b61224a8585856001612ed2565b61225a6000848460000151611fbd565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561253f5761249e81611fa8565b1561253e5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125a88585856001612ed8565b5050505050565b60008114156125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea90613f51565b60405180910390fd5b600080541415612638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262f90613e51565b60405180910390fd5b6000600f5490506000548110612683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267a90613ef1565b60405180910390fd5b600060018383010390506000546001820111156126a35760016000540390505b60008290505b8181116127d157600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127c4576000612726826127e1565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b80806001019150506126a9565b5060018101600f81905550505050565b6127e9613317565b6127f282611fa8565b612831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282890613e31565b60405180910390fd5b60008290505b6000811061293a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461292b578092505050612976565b50808060019003915050612837565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296d90614171565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a5b828260405180602001604052806000815250612ede565b5050565b6000612a808473ffffffffffffffffffffffffffffffffffffffff16612ef0565b15612be9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa9611fb5565b8786866040518563ffffffff1660e01b8152600401612acb9493929190613d28565b602060405180830381600087803b158015612ae557600080fd5b505af1925050508015612b1657506040513d601f19601f82011682018060405250810190612b13919061368d565b60015b612b99573d8060008114612b46576040519150601f19603f3d011682016040523d82523d6000602084013e612b4b565b606091505b50600081511415612b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b88906140b1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bee565b600190505b949350505050565b606060098054612c059061446a565b80601f0160208091040260200160405190810160405280929190818152602001828054612c319061446a565b8015612c7e5780601f10612c5357610100808354040283529160200191612c7e565b820191906000526020600020905b815481529060010190602001808311612c6157829003601f168201915b5050505050905090565b60606000821415612cd0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612de4565b600082905060005b60008214612d02578080612ceb906144cd565b915050600a82612cfb91906142e1565b9150612cd8565b60008167ffffffffffffffff811115612d1e57612d1d614603565b5b6040519080825280601f01601f191660200182016040528015612d505781602001600182028036833780820191505090505b5090505b60008514612ddd57600182612d69919061436c565b9150600a85612d789190614516565b6030612d84919061428b565b60f81b818381518110612d9a57612d996145d4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dd691906142e1565b9450612d54565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5190613ed1565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612eeb8383836001612f13565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f80906140d1565b60405180910390fd5b6000841415612fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc4906140f1565b60405180910390fd5b612fda6000868387612ed2565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561327457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561325f5761321f6000888488612a5f565b61325e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613255906140b1565b60405180910390fd5b5b818060010192505080806001019150506131a8565b50806000819055505061328a6000868387612ed8565b5050505050565b82805461329d9061446a565b90600052602060002090601f0160209004810192826132bf5760008555613306565b82601f106132d857803560ff1916838001178555613306565b82800160010185558215613306579182015b828111156133055782358255916020019190600101906132ea565b5b5090506133139190613351565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561336a576000816000905550600101613352565b5090565b600061338161337c8461420c565b6141e7565b90508281526020810184848401111561339d5761339c614641565b5b6133a8848285614428565b509392505050565b6000813590506133bf81614e56565b92915050565b6000813590506133d481614e6d565b92915050565b6000813590506133e981614e84565b92915050565b6000815190506133fe81614e84565b92915050565b600082601f83011261341957613418614637565b5b813561342984826020860161336e565b91505092915050565b60008083601f84011261344857613447614637565b5b8235905067ffffffffffffffff81111561346557613464614632565b5b6020830191508360018202830111156134815761348061463c565b5b9250929050565b60008135905061349781614e9b565b92915050565b6000602082840312156134b3576134b261464b565b5b60006134c1848285016133b0565b91505092915050565b600080604083850312156134e1576134e061464b565b5b60006134ef858286016133b0565b9250506020613500858286016133b0565b9150509250929050565b6000806000606084860312156135235761352261464b565b5b6000613531868287016133b0565b9350506020613542868287016133b0565b925050604061355386828701613488565b9150509250925092565b600080600080608085870312156135775761357661464b565b5b6000613585878288016133b0565b9450506020613596878288016133b0565b93505060406135a787828801613488565b925050606085013567ffffffffffffffff8111156135c8576135c7614646565b5b6135d487828801613404565b91505092959194509250565b600080604083850312156135f7576135f661464b565b5b6000613605858286016133b0565b9250506020613616858286016133c5565b9150509250929050565b600080604083850312156136375761363661464b565b5b6000613645858286016133b0565b925050602061365685828601613488565b9150509250929050565b6000602082840312156136765761367561464b565b5b6000613684848285016133da565b91505092915050565b6000602082840312156136a3576136a261464b565b5b60006136b1848285016133ef565b91505092915050565b600080602083850312156136d1576136d061464b565b5b600083013567ffffffffffffffff8111156136ef576136ee614646565b5b6136fb85828601613432565b92509250509250929050565b60006020828403121561371d5761371c61464b565b5b600061372b84828501613488565b91505092915050565b61373d816143a0565b82525050565b61374c816143a0565b82525050565b61375b816143b2565b82525050565b600061376c8261423d565b6137768185614253565b9350613786818560208601614437565b61378f81614650565b840191505092915050565b60006137a582614248565b6137af818561426f565b93506137bf818560208601614437565b6137c881614650565b840191505092915050565b60006137de82614248565b6137e88185614280565b93506137f8818560208601614437565b80840191505092915050565b600061381160228361426f565b915061381c82614661565b604082019050919050565b6000613834602a8361426f565b915061383f826146b0565b604082019050919050565b600061385760268361426f565b9150613862826146ff565b604082019050919050565b600061387a60138361426f565b91506138858261474e565b602082019050919050565b600061389d602a8361426f565b91506138a882614777565b604082019050919050565b60006138c060148361426f565b91506138cb826147c6565b602082019050919050565b60006138e360148361426f565b91506138ee826147ef565b602082019050919050565b600061390660238361426f565b915061391182614818565b604082019050919050565b600061392960258361426f565b915061393482614867565b604082019050919050565b600061394c60318361426f565b9150613957826148b6565b604082019050919050565b600061396f601c8361426f565b915061397a82614905565b602082019050919050565b600061399260098361426f565b915061399d8261492e565b602082019050919050565b60006139b560398361426f565b91506139c082614957565b604082019050919050565b60006139d860188361426f565b91506139e3826149a6565b602082019050919050565b60006139fb60118361426f565b9150613a06826149cf565b602082019050919050565b6000613a1e602b8361426f565b9150613a29826149f8565b604082019050919050565b6000613a4160268361426f565b9150613a4c82614a47565b604082019050919050565b6000613a6460208361426f565b9150613a6f82614a96565b602082019050919050565b6000613a87602f8361426f565b9150613a9282614abf565b604082019050919050565b6000613aaa601a8361426f565b9150613ab582614b0e565b602082019050919050565b6000613acd60328361426f565b9150613ad882614b37565b604082019050919050565b6000613af0601d8361426f565b9150613afb82614b86565b602082019050919050565b6000613b1360228361426f565b9150613b1e82614baf565b604082019050919050565b6000613b36600083614264565b9150613b4182614bfe565b600082019050919050565b6000613b5960108361426f565b9150613b6482614c01565b602082019050919050565b6000613b7c60338361426f565b9150613b8782614c2a565b604082019050919050565b6000613b9f60218361426f565b9150613baa82614c79565b604082019050919050565b6000613bc260288361426f565b9150613bcd82614cc8565b604082019050919050565b6000613be560138361426f565b9150613bf082614d17565b602082019050919050565b6000613c08602e8361426f565b9150613c1382614d40565b604082019050919050565b6000613c2b601f8361426f565b9150613c3682614d8f565b602082019050919050565b6000613c4e602f8361426f565b9150613c5982614db8565b604082019050919050565b6000613c71602d8361426f565b9150613c7c82614e07565b604082019050919050565b604082016000820151613c9d6000850182613734565b506020820151613cb06020850182613cc5565b50505050565b613cbf8161440a565b82525050565b613cce81614414565b82525050565b6000613ce082856137d3565b9150613cec82846137d3565b91508190509392505050565b6000613d0382613b29565b9150819050919050565b6000602082019050613d226000830184613743565b92915050565b6000608082019050613d3d6000830187613743565b613d4a6020830186613743565b613d576040830185613cb6565b8181036060830152613d698184613761565b905095945050505050565b6000602082019050613d896000830184613752565b92915050565b60006020820190508181036000830152613da9818461379a565b905092915050565b60006020820190508181036000830152613dca81613804565b9050919050565b60006020820190508181036000830152613dea81613827565b9050919050565b60006020820190508181036000830152613e0a8161384a565b9050919050565b60006020820190508181036000830152613e2a8161386d565b9050919050565b60006020820190508181036000830152613e4a81613890565b9050919050565b60006020820190508181036000830152613e6a816138b3565b9050919050565b60006020820190508181036000830152613e8a816138d6565b9050919050565b60006020820190508181036000830152613eaa816138f9565b9050919050565b60006020820190508181036000830152613eca8161391c565b9050919050565b60006020820190508181036000830152613eea8161393f565b9050919050565b60006020820190508181036000830152613f0a81613962565b9050919050565b60006020820190508181036000830152613f2a81613985565b9050919050565b60006020820190508181036000830152613f4a816139a8565b9050919050565b60006020820190508181036000830152613f6a816139cb565b9050919050565b60006020820190508181036000830152613f8a816139ee565b9050919050565b60006020820190508181036000830152613faa81613a11565b9050919050565b60006020820190508181036000830152613fca81613a34565b9050919050565b60006020820190508181036000830152613fea81613a57565b9050919050565b6000602082019050818103600083015261400a81613a7a565b9050919050565b6000602082019050818103600083015261402a81613a9d565b9050919050565b6000602082019050818103600083015261404a81613ac0565b9050919050565b6000602082019050818103600083015261406a81613ae3565b9050919050565b6000602082019050818103600083015261408a81613b06565b9050919050565b600060208201905081810360008301526140aa81613b4c565b9050919050565b600060208201905081810360008301526140ca81613b6f565b9050919050565b600060208201905081810360008301526140ea81613b92565b9050919050565b6000602082019050818103600083015261410a81613bb5565b9050919050565b6000602082019050818103600083015261412a81613bd8565b9050919050565b6000602082019050818103600083015261414a81613bfb565b9050919050565b6000602082019050818103600083015261416a81613c1e565b9050919050565b6000602082019050818103600083015261418a81613c41565b9050919050565b600060208201905081810360008301526141aa81613c64565b9050919050565b60006040820190506141c66000830184613c87565b92915050565b60006020820190506141e16000830184613cb6565b92915050565b60006141f1614202565b90506141fd828261449c565b919050565b6000604051905090565b600067ffffffffffffffff82111561422757614226614603565b5b61423082614650565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142968261440a565b91506142a18361440a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142d6576142d5614547565b5b828201905092915050565b60006142ec8261440a565b91506142f78361440a565b92508261430757614306614576565b5b828204905092915050565b600061431d8261440a565b91506143288361440a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561436157614360614547565b5b828202905092915050565b60006143778261440a565b91506143828361440a565b92508282101561439557614394614547565b5b828203905092915050565b60006143ab826143ea565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561445557808201518184015260208101905061443a565b83811115614464576000848401525b50505050565b6000600282049050600182168061448257607f821691505b60208210811415614496576144956145a5565b5b50919050565b6144a582614650565b810181811067ffffffffffffffff821117156144c4576144c3614603565b5b80604052505050565b60006144d88261440a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561450b5761450a614547565b5b600182019050919050565b60006145218261440a565b915061452c8361440a565b92508261453c5761453b614576565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f2069767920626561722e00000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f426520796f757273656c662c20686f6e65792e00000000000000000000000000600082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f4e6f206d6f726520697679206265617273000000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614e5f816143a0565b8114614e6a57600080fd5b50565b614e76816143b2565b8114614e8157600080fd5b50565b614e8d816143be565b8114614e9857600080fd5b50565b614ea48161440a565b8114614eaf57600080fd5b5056fea264697066735822122028f3e892306c7d86a6c98016de1b1c34b4d70de18df06a653a6251b8d404fd3564736f6c63430008070033

Deployed Bytecode Sourcemap

50233:3750:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37093:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38979:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40541:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40062:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35350:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52092:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41417:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52486:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36014:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50480:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52304:176;;;;;;;;;;;;;:::i;:::-;;41658:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50432:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35527:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51698:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51888:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38788:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50295:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37529:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10485:103;;;;;;;;;;;;;:::i;:::-;;51494:85;;;;;;;;;;;;;:::i;:::-;;9834:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51325:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51800:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52610:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39148:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50328:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50717:602;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40827:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41914:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51992:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39323:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50630:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50530:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50580;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51585:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41186:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10743:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50385:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37093:372;37195:4;37247:25;37232:40;;;:11;:40;;;;:105;;;;37304:33;37289:48;;;:11;:48;;;;37232:105;:172;;;;37369:35;37354:50;;;:11;:50;;;;37232:172;:225;;;;37421:36;37445:11;37421:23;:36::i;:::-;37232:225;37212:245;;37093:372;;;:::o;38979:100::-;39033:13;39066:5;39059:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38979:100;:::o;40541:214::-;40609:7;40637:16;40645:7;40637;:16::i;:::-;40629:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40723:15;:24;40739:7;40723:24;;;;;;;;;;;;;;;;;;;;;40716:31;;40541:214;;;:::o;40062:413::-;40135:13;40151:24;40167:7;40151:15;:24::i;:::-;40135:40;;40200:5;40194:11;;:2;:11;;;;40186:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40295:5;40279:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40304:37;40321:5;40328:12;:10;:12::i;:::-;40304:16;:37::i;:::-;40279:62;40257:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40439:28;40448:2;40452:7;40461:5;40439:8;:28::i;:::-;40124:351;40062:413;;:::o;35350:100::-;35403:7;35430:12;;35423:19;;35350:100;:::o;52092:98::-;10065:12;:10;:12::i;:::-;10054:23;;:7;:5;:7::i;:::-;:23;;;10046:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52174:10:::1;52162:9;:22;;;;52092:98:::0;:::o;41417:170::-;41551:28;41561:4;41567:2;41571:7;41551:9;:28::i;:::-;41417:170;;;:::o;52486:118::-;10065:12;:10;:12::i;:::-;10054:23;;:7;:5;:7::i;:::-;:23;;;10046:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4808:1:::1;5406:7;;:19;;5398:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4808:1;5539:7;:18;;;;52570:28:::2;52589:8;52570:18;:28::i;:::-;4764:1:::1;5718:7;:22;;;;52486:118:::0;:::o;36014:1007::-;36103:7;36139:16;36149:5;36139:9;:16::i;:::-;36131:5;:24;36123:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36205:22;36230:13;:11;:13::i;:::-;36205:38;;36254:19;36284:25;36473:9;36468:466;36488:14;36484:1;:18;36468:466;;;36528:31;36562:11;:14;36574:1;36562:14;;;;;;;;;;;36528:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36625:1;36599:28;;:9;:14;;;:28;;;36595:111;;36672:9;:14;;;36652:34;;36595:111;36749:5;36728:26;;:17;:26;;;36724:195;;;36798:5;36783:11;:20;36779:85;;;36839:1;36832:8;;;;;;;;;36779:85;36886:13;;;;;;;36724:195;36509:425;36504:3;;;;;;;36468:466;;;;36957:56;;;;;;;;;;:::i;:::-;;;;;;;;36014:1007;;;;;:::o;50480:45::-;;;;:::o;52304:176::-;10065:12;:10;:12::i;:::-;10054:23;;:7;:5;:7::i;:::-;:23;;;10046:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4808:1:::1;5406:7;;:19;;5398:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4808:1;5539:7;:18;;;;52364:12:::2;52382:10;:15;;52405:21;52382:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52363:68;;;52446:7;52438:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;52356:124;4764:1:::1;5718:7;:22;;;;52304:176::o:0;41658:185::-;41796:39;41813:4;41819:2;41823:7;41796:39;;;;;;;;;;;;:16;:39::i;:::-;41658:185;;;:::o;50432:43::-;;;;:::o;35527:187::-;35594:7;35630:13;:11;:13::i;:::-;35622:5;:21;35614:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;35701:5;35694:12;;35527:187;;;:::o;51698:96::-;10065:12;:10;:12::i;:::-;10054:23;;:7;:5;:7::i;:::-;:23;;;10046:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51780:8:::1;;51770:7;:18;;;;;;;:::i;:::-;;51698:96:::0;;:::o;51888:98::-;10065:12;:10;:12::i;:::-;10054:23;;:7;:5;:7::i;:::-;:23;;;10046:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51970:10:::1;51958:9;:22;;;;51888:98:::0;:::o;38788:124::-;38852:7;38879:20;38891:7;38879:11;:20::i;:::-;:25;;;38872:32;;38788:124;;;:::o;50295:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37529:221::-;37593:7;37638:1;37621:19;;:5;:19;;;;37613:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37714:12;:19;37727:5;37714:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37706:36;;37699:43;;37529:221;;;:::o;10485:103::-;10065:12;:10;:12::i;:::-;10054:23;;:7;:5;:7::i;:::-;:23;;;10046:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10550:30:::1;10577:1;10550:18;:30::i;:::-;10485:103::o:0;51494:85::-;10065:12;:10;:12::i;:::-;10054:23;;:7;:5;:7::i;:::-;:23;;;10046:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51562:11:::1;;;;;;;;;;;51561:12;51547:11;;:26;;;;;;;;;;;;;;;;;;51494:85::o:0;9834:87::-;9880:7;9907:6;;;;;;;;;;;9900:13;;9834:87;:::o;51325:163::-;10065:12;:10;:12::i;:::-;10054:23;;:7;:5;:7::i;:::-;:23;;;10046:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51433:1:::1;51421:9;;:13;;;;:::i;:::-;51415:3;51399:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51391:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51456:26;51466:10;51478:3;51456:9;:26::i;:::-;51325:163:::0;:::o;51800:82::-;10065:12;:10;:12::i;:::-;10054:23;;:7;:5;:7::i;:::-;:23;;;10046:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51870:6:::1;51862:5;:14;;;;51800:82:::0;:::o;52610:132::-;52676:21;;:::i;:::-;52716:20;52728:7;52716:11;:20::i;:::-;52709:27;;52610:132;;;:::o;39148:104::-;39204:13;39237:7;39230:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39148:104;:::o;50328:52::-;;;;:::o;50717:602::-;50771:9;50783:5;;50771:17;;50832:1;50820:9;;:13;;;;:::i;:::-;50814:3;50798:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;50795:65;;;50851:1;50844:8;;50795:65;50888:9;50874:23;;:10;:23;;;50866:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;50954:4;50948:3;:10;;;;:::i;:::-;50935:9;:23;50927:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51040:12;;51033:3;51006:24;51019:10;51006:12;:24::i;:::-;:30;;;;:::i;:::-;:46;;50998:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;51125:1;51113:9;;:13;;;;:::i;:::-;51107:3;51091:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;51083:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51162:11;;;;;;;;;;;51154:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51253:1;51242:8;;:12;;;;:::i;:::-;51236:3;:18;51227:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;51287:26;51297:10;51309:3;51287:9;:26::i;:::-;50764:555;50717:602;:::o;40827:288::-;40934:12;:10;:12::i;:::-;40922:24;;:8;:24;;;;40914:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41035:8;40990:18;:32;41009:12;:10;:12::i;:::-;40990:32;;;;;;;;;;;;;;;:42;41023:8;40990:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41088:8;41059:48;;41074:12;:10;:12::i;:::-;41059:48;;;41098:8;41059:48;;;;;;:::i;:::-;;;;;;;;40827:288;;:::o;41914:355::-;42073:28;42083:4;42089:2;42093:7;42073:9;:28::i;:::-;42134:48;42157:4;42163:2;42167:7;42176:5;42134:22;:48::i;:::-;42112:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;41914:355;;;;:::o;51992:94::-;10065:12;:10;:12::i;:::-;10054:23;;:7;:5;:7::i;:::-;:23;;;10046:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52071:9:::1;52060:8;:20;;;;51992:94:::0;:::o;39323:335::-;39396:13;39430:16;39438:7;39430;:16::i;:::-;39422:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39511:21;39535:10;:8;:10::i;:::-;39511:34;;39588:1;39569:7;39563:21;:26;;:87;;;;;;;;;;;;;;;;;39616:7;39625:18;:7;:16;:18::i;:::-;39599:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39563:87;39556:94;;;39323:335;;;:::o;50630:32::-;;;;;;;;;;;;;:::o;50530:45::-;;;;:::o;50580:::-;;;;:::o;51585:107::-;51643:7;51666:20;51680:5;51666:13;:20::i;:::-;51659:27;;51585:107;;;:::o;41186:164::-;41283:4;41307:18;:25;41326:5;41307:25;;;;;;;;;;;;;;;:35;41333:8;41307:35;;;;;;;;;;;;;;;;;;;;;;;;;41300:42;;41186:164;;;;:::o;10743:201::-;10065:12;:10;:12::i;:::-;10054:23;;:7;:5;:7::i;:::-;:23;;;10046:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10852:1:::1;10832:22;;:8;:22;;;;10824:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10908:28;10927:8;10908:18;:28::i;:::-;10743:201:::0;:::o;50385:42::-;;;;:::o;26613:157::-;26698:4;26737:25;26722:40;;;:11;:40;;;;26715:47;;26613:157;;;:::o;42524:111::-;42581:4;42615:12;;42605:7;:22;42598:29;;42524:111;;;:::o;8558:98::-;8611:7;8638:10;8631:17;;8558:98;:::o;47444:196::-;47586:2;47559:15;:24;47575:7;47559:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47624:7;47620:2;47604:28;;47613:5;47604:28;;;;;;;;;;;;47444:196;;;:::o;45324:2002::-;45439:35;45477:20;45489:7;45477:11;:20::i;:::-;45439:58;;45510:22;45552:13;:18;;;45536:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45611:12;:10;:12::i;:::-;45587:36;;:20;45599:7;45587:11;:20::i;:::-;:36;;;45536:87;:154;;;;45640:50;45657:13;:18;;;45677:12;:10;:12::i;:::-;45640:16;:50::i;:::-;45536:154;45510:181;;45712:17;45704:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45827:4;45805:26;;:13;:18;;;:26;;;45797:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45907:1;45893:16;;:2;:16;;;;45885:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45964:43;45986:4;45992:2;45996:7;46005:1;45964:21;:43::i;:::-;46072:49;46089:1;46093:7;46102:13;:18;;;46072:8;:49::i;:::-;46447:1;46417:12;:18;46430:4;46417:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46491:1;46463:12;:16;46476:2;46463:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46537:2;46509:11;:20;46521:7;46509:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46599:15;46554:11;:20;46566:7;46554:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46867:19;46899:1;46889:7;:11;46867:33;;46960:1;46919:43;;:11;:24;46931:11;46919:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46915:295;;;46987:20;46995:11;46987:7;:20::i;:::-;46983:212;;;47064:13;:18;;;47032:11;:24;47044:11;47032:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47147:13;:28;;;47105:11;:24;47117:11;47105:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;46983:212;46915:295;46392:829;47257:7;47253:2;47238:27;;47247:4;47238:27;;;;;;;;;;;;47276:42;47297:4;47303:2;47307:7;47316:1;47276:20;:42::i;:::-;45428:1898;;45324:2002;;;:::o;52850:1130::-;52934:1;52922:8;:13;;52914:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;52997:1;52981:12;;:17;;52973:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;53032:33;53068:24;;53032:60;;53137:12;;53109:25;:40;53101:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;53320:16;53378:1;53367:8;53339:25;:36;:40;53320:59;;53472:12;;53468:1;53457:8;:12;:27;53453:91;;;53529:1;53514:12;;:16;53503:27;;53453:91;53563:9;53575:25;53563:37;;53558:354;53607:8;53602:1;:13;53558:354;;53674:1;53643:33;;:11;:14;53655:1;53643:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;53639:260;;;53699:31;53733:14;53745:1;53733:11;:14::i;:::-;53699:48;;53790:9;:14;;;53768:11;:14;53780:1;53768:14;;;;;;;;;;;:19;;;:36;;;;;;;;;;;;;;;;;;53857:9;:24;;;53825:11;:14;53837:1;53825:14;;;;;;;;;;;:29;;;:56;;;;;;;;;;;;;;;;;;53678:221;53639:260;53617:3;;;;;;;53558:354;;;;53964:1;53953:8;:12;53926:24;:39;;;;53297:678;52905:1075;52850:1130;:::o;38189:537::-;38250:21;;:::i;:::-;38292:16;38300:7;38292;:16::i;:::-;38284:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38398:12;38413:7;38398:22;;38393:245;38430:1;38422:4;:9;38393:245;;38460:31;38494:11;:17;38506:4;38494:17;;;;;;;;;;;38460:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38560:1;38534:28;;:9;:14;;;:28;;;38530:93;;38594:9;38587:16;;;;;;38530:93;38441:197;38433:6;;;;;;;;38393:245;;;;38661:57;;;;;;;;;;:::i;:::-;;;;;;;;38189:537;;;;:::o;11104:191::-;11178:16;11197:6;;;;;;;;;;;11178:25;;11223:8;11214:6;;:17;;;;;;;;;;;;;;;;;;11278:8;11247:40;;11268:8;11247:40;;;;;;;;;;;;11167:128;11104:191;:::o;42643:104::-;42712:27;42722:2;42726:8;42712:27;;;;;;;;;;;;:9;:27::i;:::-;42643:104;;:::o;48205:804::-;48360:4;48381:15;:2;:13;;;:15::i;:::-;48377:625;;;48433:2;48417:36;;;48454:12;:10;:12::i;:::-;48468:4;48474:7;48483:5;48417:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48413:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48680:1;48663:6;:13;:18;48659:273;;;48706:61;;;;;;;;;;:::i;:::-;;;;;;;;48659:273;48882:6;48876:13;48867:6;48863:2;48859:15;48852:38;48413:534;48550:45;;;48540:55;;;:6;:55;;;;48533:62;;;;;48377:625;48986:4;48979:11;;48205:804;;;;;;;:::o;52196:102::-;52256:13;52285:7;52278:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52196:102;:::o;6120:723::-;6176:13;6406:1;6397:5;:10;6393:53;;;6424:10;;;;;;;;;;;;;;;;;;;;;6393:53;6456:12;6471:5;6456:20;;6487:14;6512:78;6527:1;6519:4;:9;6512:78;;6545:8;;;;;:::i;:::-;;;;6576:2;6568:10;;;;;:::i;:::-;;;6512:78;;;6600:19;6632:6;6622:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6600:39;;6650:154;6666:1;6657:5;:10;6650:154;;6694:1;6684:11;;;;;:::i;:::-;;;6761:2;6753:5;:10;;;;:::i;:::-;6740:2;:24;;;;:::i;:::-;6727:39;;6710:6;6717;6710:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6790:2;6781:11;;;;;:::i;:::-;;;6650:154;;;6828:6;6814:21;;;;;6120:723;;;;:::o;37758:229::-;37819:7;37864:1;37847:19;;:5;:19;;;;37839:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37946:12;:19;37959:5;37946:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;37938:41;;37931:48;;37758:229;;;:::o;49497:159::-;;;;;:::o;50068:158::-;;;;;:::o;43110:163::-;43233:32;43239:2;43243:8;43253:5;43260:4;43233:5;:32::i;:::-;43110:163;;;:::o;12535:326::-;12595:4;12852:1;12830:7;:19;;;:23;12823:30;;12535:326;;;:::o;43532:1538::-;43671:20;43694:12;;43671:35;;43739:1;43725:16;;:2;:16;;;;43717:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43810:1;43798:8;:13;;43790:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43869:61;43899:1;43903:2;43907:12;43921:8;43869:21;:61::i;:::-;44244:8;44208:12;:16;44221:2;44208:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44309:8;44268:12;:16;44281:2;44268:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44368:2;44335:11;:25;44347:12;44335:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44435:15;44385:11;:25;44397:12;44385:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44468:20;44491:12;44468:35;;44525:9;44520:415;44540:8;44536:1;:12;44520:415;;;44604:12;44600:2;44579:38;;44596:1;44579:38;;;;;;;;;;;;44640:4;44636:249;;;44703:59;44734:1;44738:2;44742:12;44756:5;44703:22;:59::i;:::-;44669:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;44636:249;44905:14;;;;;;;44550:3;;;;;;;44520:415;;;;44966:12;44951;:27;;;;44183:807;45002:60;45031:1;45035:2;45039:12;45053:8;45002:20;:60::i;:::-;43660:1410;43532:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:109::-;7292:21;7307:5;7292:21;:::i;:::-;7287:3;7280:34;7211:109;;:::o;7326:360::-;7412:3;7440:38;7472:5;7440:38;:::i;:::-;7494:70;7557:6;7552:3;7494:70;:::i;:::-;7487:77;;7573:52;7618:6;7613:3;7606:4;7599:5;7595:16;7573:52;:::i;:::-;7650:29;7672:6;7650:29;:::i;:::-;7645:3;7641:39;7634:46;;7416:270;7326:360;;;;:::o;7692:364::-;7780:3;7808:39;7841:5;7808:39;:::i;:::-;7863:71;7927:6;7922:3;7863:71;:::i;:::-;7856:78;;7943:52;7988:6;7983:3;7976:4;7969:5;7965:16;7943:52;:::i;:::-;8020:29;8042:6;8020:29;:::i;:::-;8015:3;8011:39;8004:46;;7784:272;7692:364;;;;:::o;8062:377::-;8168:3;8196:39;8229:5;8196:39;:::i;:::-;8251:89;8333:6;8328:3;8251:89;:::i;:::-;8244:96;;8349:52;8394:6;8389:3;8382:4;8375:5;8371:16;8349:52;:::i;:::-;8426:6;8421:3;8417:16;8410:23;;8172:267;8062:377;;;;:::o;8445:366::-;8587:3;8608:67;8672:2;8667:3;8608:67;:::i;:::-;8601:74;;8684:93;8773:3;8684:93;:::i;:::-;8802:2;8797:3;8793:12;8786:19;;8445:366;;;:::o;8817:::-;8959:3;8980:67;9044:2;9039:3;8980:67;:::i;:::-;8973:74;;9056:93;9145:3;9056:93;:::i;:::-;9174:2;9169:3;9165:12;9158:19;;8817:366;;;:::o;9189:::-;9331:3;9352:67;9416:2;9411:3;9352:67;:::i;:::-;9345:74;;9428:93;9517:3;9428:93;:::i;:::-;9546:2;9541:3;9537:12;9530:19;;9189:366;;;:::o;9561:::-;9703:3;9724:67;9788:2;9783:3;9724:67;:::i;:::-;9717:74;;9800:93;9889:3;9800:93;:::i;:::-;9918:2;9913:3;9909:12;9902:19;;9561:366;;;:::o;9933:::-;10075:3;10096:67;10160:2;10155:3;10096:67;:::i;:::-;10089:74;;10172:93;10261:3;10172:93;:::i;:::-;10290:2;10285:3;10281:12;10274:19;;9933:366;;;:::o;10305:::-;10447:3;10468:67;10532:2;10527:3;10468:67;:::i;:::-;10461:74;;10544:93;10633:3;10544:93;:::i;:::-;10662:2;10657:3;10653:12;10646:19;;10305:366;;;:::o;10677:::-;10819:3;10840:67;10904:2;10899:3;10840:67;:::i;:::-;10833:74;;10916:93;11005:3;10916:93;:::i;:::-;11034:2;11029:3;11025:12;11018:19;;10677:366;;;:::o;11049:::-;11191:3;11212:67;11276:2;11271:3;11212:67;:::i;:::-;11205:74;;11288:93;11377:3;11288:93;:::i;:::-;11406:2;11401:3;11397:12;11390:19;;11049:366;;;:::o;11421:::-;11563:3;11584:67;11648:2;11643:3;11584:67;:::i;:::-;11577:74;;11660:93;11749:3;11660:93;:::i;:::-;11778:2;11773:3;11769:12;11762:19;;11421:366;;;:::o;11793:::-;11935:3;11956:67;12020:2;12015:3;11956:67;:::i;:::-;11949:74;;12032:93;12121:3;12032:93;:::i;:::-;12150:2;12145:3;12141:12;12134:19;;11793:366;;;:::o;12165:::-;12307:3;12328:67;12392:2;12387:3;12328:67;:::i;:::-;12321:74;;12404:93;12493:3;12404:93;:::i;:::-;12522:2;12517:3;12513:12;12506:19;;12165:366;;;:::o;12537:365::-;12679:3;12700:66;12764:1;12759:3;12700:66;:::i;:::-;12693:73;;12775:93;12864:3;12775:93;:::i;:::-;12893:2;12888:3;12884:12;12877:19;;12537:365;;;:::o;12908:366::-;13050:3;13071:67;13135:2;13130:3;13071:67;:::i;:::-;13064:74;;13147:93;13236:3;13147:93;:::i;:::-;13265:2;13260:3;13256:12;13249:19;;12908:366;;;:::o;13280:::-;13422:3;13443:67;13507:2;13502:3;13443:67;:::i;:::-;13436:74;;13519:93;13608:3;13519:93;:::i;:::-;13637:2;13632:3;13628:12;13621:19;;13280:366;;;:::o;13652:::-;13794:3;13815:67;13879:2;13874:3;13815:67;:::i;:::-;13808:74;;13891:93;13980:3;13891:93;:::i;:::-;14009:2;14004:3;14000:12;13993:19;;13652:366;;;:::o;14024:::-;14166:3;14187:67;14251:2;14246:3;14187:67;:::i;:::-;14180:74;;14263:93;14352:3;14263:93;:::i;:::-;14381:2;14376:3;14372:12;14365:19;;14024:366;;;:::o;14396:::-;14538:3;14559:67;14623:2;14618:3;14559:67;:::i;:::-;14552:74;;14635:93;14724:3;14635:93;:::i;:::-;14753:2;14748:3;14744:12;14737:19;;14396:366;;;:::o;14768:::-;14910:3;14931:67;14995:2;14990:3;14931:67;:::i;:::-;14924:74;;15007:93;15096:3;15007:93;:::i;:::-;15125:2;15120:3;15116:12;15109:19;;14768:366;;;:::o;15140:::-;15282:3;15303:67;15367:2;15362:3;15303:67;:::i;:::-;15296:74;;15379:93;15468:3;15379:93;:::i;:::-;15497:2;15492:3;15488:12;15481:19;;15140:366;;;:::o;15512:::-;15654:3;15675:67;15739:2;15734:3;15675:67;:::i;:::-;15668:74;;15751:93;15840:3;15751:93;:::i;:::-;15869:2;15864:3;15860:12;15853:19;;15512:366;;;:::o;15884:::-;16026:3;16047:67;16111:2;16106:3;16047:67;:::i;:::-;16040:74;;16123:93;16212:3;16123:93;:::i;:::-;16241:2;16236:3;16232:12;16225:19;;15884:366;;;:::o;16256:::-;16398:3;16419:67;16483:2;16478:3;16419:67;:::i;:::-;16412:74;;16495:93;16584:3;16495:93;:::i;:::-;16613:2;16608:3;16604:12;16597:19;;16256:366;;;:::o;16628:::-;16770:3;16791:67;16855:2;16850:3;16791:67;:::i;:::-;16784:74;;16867:93;16956:3;16867:93;:::i;:::-;16985:2;16980:3;16976:12;16969:19;;16628:366;;;:::o;17000:398::-;17159:3;17180:83;17261:1;17256:3;17180:83;:::i;:::-;17173:90;;17272:93;17361:3;17272:93;:::i;:::-;17390:1;17385:3;17381:11;17374:18;;17000:398;;;:::o;17404:366::-;17546:3;17567:67;17631:2;17626:3;17567:67;:::i;:::-;17560:74;;17643:93;17732:3;17643:93;:::i;:::-;17761:2;17756:3;17752:12;17745:19;;17404:366;;;:::o;17776:::-;17918:3;17939:67;18003:2;17998:3;17939:67;:::i;:::-;17932:74;;18015:93;18104:3;18015:93;:::i;:::-;18133:2;18128:3;18124:12;18117:19;;17776:366;;;:::o;18148:::-;18290:3;18311:67;18375:2;18370:3;18311:67;:::i;:::-;18304:74;;18387:93;18476:3;18387:93;:::i;:::-;18505:2;18500:3;18496:12;18489:19;;18148:366;;;:::o;18520:::-;18662:3;18683:67;18747:2;18742:3;18683:67;:::i;:::-;18676:74;;18759:93;18848:3;18759:93;:::i;:::-;18877:2;18872:3;18868:12;18861:19;;18520:366;;;:::o;18892:::-;19034:3;19055:67;19119:2;19114:3;19055:67;:::i;:::-;19048:74;;19131:93;19220:3;19131:93;:::i;:::-;19249:2;19244:3;19240:12;19233:19;;18892:366;;;:::o;19264:::-;19406:3;19427:67;19491:2;19486:3;19427:67;:::i;:::-;19420:74;;19503:93;19592:3;19503:93;:::i;:::-;19621:2;19616:3;19612:12;19605:19;;19264:366;;;:::o;19636:::-;19778:3;19799:67;19863:2;19858:3;19799:67;:::i;:::-;19792:74;;19875:93;19964:3;19875:93;:::i;:::-;19993:2;19988:3;19984:12;19977:19;;19636:366;;;:::o;20008:::-;20150:3;20171:67;20235:2;20230:3;20171:67;:::i;:::-;20164:74;;20247:93;20336:3;20247:93;:::i;:::-;20365:2;20360:3;20356:12;20349:19;;20008:366;;;:::o;20380:::-;20522:3;20543:67;20607:2;20602:3;20543:67;:::i;:::-;20536:74;;20619:93;20708:3;20619:93;:::i;:::-;20737:2;20732:3;20728:12;20721:19;;20380:366;;;:::o;20822:529::-;20983:4;20978:3;20974:14;21070:4;21063:5;21059:16;21053:23;21089:63;21146:4;21141:3;21137:14;21123:12;21089:63;:::i;:::-;20998:164;21254:4;21247:5;21243:16;21237:23;21273:61;21328:4;21323:3;21319:14;21305:12;21273:61;:::i;:::-;21172:172;20952:399;20822:529;;:::o;21357:118::-;21444:24;21462:5;21444:24;:::i;:::-;21439:3;21432:37;21357:118;;:::o;21481:105::-;21556:23;21573:5;21556:23;:::i;:::-;21551:3;21544:36;21481:105;;:::o;21592:435::-;21772:3;21794:95;21885:3;21876:6;21794:95;:::i;:::-;21787:102;;21906:95;21997:3;21988:6;21906:95;:::i;:::-;21899:102;;22018:3;22011:10;;21592:435;;;;;:::o;22033:379::-;22217:3;22239:147;22382:3;22239:147;:::i;:::-;22232:154;;22403:3;22396:10;;22033:379;;;:::o;22418:222::-;22511:4;22549:2;22538:9;22534:18;22526:26;;22562:71;22630:1;22619:9;22615:17;22606:6;22562:71;:::i;:::-;22418:222;;;;:::o;22646:640::-;22841:4;22879:3;22868:9;22864:19;22856:27;;22893:71;22961:1;22950:9;22946:17;22937:6;22893:71;:::i;:::-;22974:72;23042:2;23031:9;23027:18;23018:6;22974:72;:::i;:::-;23056;23124:2;23113:9;23109:18;23100:6;23056:72;:::i;:::-;23175:9;23169:4;23165:20;23160:2;23149:9;23145:18;23138:48;23203:76;23274:4;23265:6;23203:76;:::i;:::-;23195:84;;22646:640;;;;;;;:::o;23292:210::-;23379:4;23417:2;23406:9;23402:18;23394:26;;23430:65;23492:1;23481:9;23477:17;23468:6;23430:65;:::i;:::-;23292:210;;;;:::o;23508:313::-;23621:4;23659:2;23648:9;23644:18;23636:26;;23708:9;23702:4;23698:20;23694:1;23683:9;23679:17;23672:47;23736:78;23809:4;23800:6;23736:78;:::i;:::-;23728:86;;23508:313;;;;:::o;23827:419::-;23993:4;24031:2;24020:9;24016:18;24008:26;;24080:9;24074:4;24070:20;24066:1;24055:9;24051:17;24044:47;24108:131;24234:4;24108:131;:::i;:::-;24100:139;;23827:419;;;:::o;24252:::-;24418:4;24456:2;24445:9;24441:18;24433:26;;24505:9;24499:4;24495:20;24491:1;24480:9;24476:17;24469:47;24533:131;24659:4;24533:131;:::i;:::-;24525:139;;24252:419;;;:::o;24677:::-;24843:4;24881:2;24870:9;24866:18;24858:26;;24930:9;24924:4;24920:20;24916:1;24905:9;24901:17;24894:47;24958:131;25084:4;24958:131;:::i;:::-;24950:139;;24677:419;;;:::o;25102:::-;25268:4;25306:2;25295:9;25291:18;25283:26;;25355:9;25349:4;25345:20;25341:1;25330:9;25326:17;25319:47;25383:131;25509:4;25383:131;:::i;:::-;25375:139;;25102:419;;;:::o;25527:::-;25693:4;25731:2;25720:9;25716:18;25708:26;;25780:9;25774:4;25770:20;25766:1;25755:9;25751:17;25744:47;25808:131;25934:4;25808:131;:::i;:::-;25800:139;;25527:419;;;:::o;25952:::-;26118:4;26156:2;26145:9;26141:18;26133:26;;26205:9;26199:4;26195:20;26191:1;26180:9;26176:17;26169:47;26233:131;26359:4;26233:131;:::i;:::-;26225:139;;25952:419;;;:::o;26377:::-;26543:4;26581:2;26570:9;26566:18;26558:26;;26630:9;26624:4;26620:20;26616:1;26605:9;26601:17;26594:47;26658:131;26784:4;26658:131;:::i;:::-;26650:139;;26377:419;;;:::o;26802:::-;26968:4;27006:2;26995:9;26991:18;26983:26;;27055:9;27049:4;27045:20;27041:1;27030:9;27026:17;27019:47;27083:131;27209:4;27083:131;:::i;:::-;27075:139;;26802:419;;;:::o;27227:::-;27393:4;27431:2;27420:9;27416:18;27408:26;;27480:9;27474:4;27470:20;27466:1;27455:9;27451:17;27444:47;27508:131;27634:4;27508:131;:::i;:::-;27500:139;;27227:419;;;:::o;27652:::-;27818:4;27856:2;27845:9;27841:18;27833:26;;27905:9;27899:4;27895:20;27891:1;27880:9;27876:17;27869:47;27933:131;28059:4;27933:131;:::i;:::-;27925:139;;27652:419;;;:::o;28077:::-;28243:4;28281:2;28270:9;28266:18;28258:26;;28330:9;28324:4;28320:20;28316:1;28305:9;28301:17;28294:47;28358:131;28484:4;28358:131;:::i;:::-;28350:139;;28077:419;;;:::o;28502:::-;28668:4;28706:2;28695:9;28691:18;28683:26;;28755:9;28749:4;28745:20;28741:1;28730:9;28726:17;28719:47;28783:131;28909:4;28783:131;:::i;:::-;28775:139;;28502:419;;;:::o;28927:::-;29093:4;29131:2;29120:9;29116:18;29108:26;;29180:9;29174:4;29170:20;29166:1;29155:9;29151:17;29144:47;29208:131;29334:4;29208:131;:::i;:::-;29200:139;;28927:419;;;:::o;29352:::-;29518:4;29556:2;29545:9;29541:18;29533:26;;29605:9;29599:4;29595:20;29591:1;29580:9;29576:17;29569:47;29633:131;29759:4;29633:131;:::i;:::-;29625:139;;29352:419;;;:::o;29777:::-;29943:4;29981:2;29970:9;29966:18;29958:26;;30030:9;30024:4;30020:20;30016:1;30005:9;30001:17;29994:47;30058:131;30184:4;30058:131;:::i;:::-;30050:139;;29777:419;;;:::o;30202:::-;30368:4;30406:2;30395:9;30391:18;30383:26;;30455:9;30449:4;30445:20;30441:1;30430:9;30426:17;30419:47;30483:131;30609:4;30483:131;:::i;:::-;30475:139;;30202:419;;;:::o;30627:::-;30793:4;30831:2;30820:9;30816:18;30808:26;;30880:9;30874:4;30870:20;30866:1;30855:9;30851:17;30844:47;30908:131;31034:4;30908:131;:::i;:::-;30900:139;;30627:419;;;:::o;31052:::-;31218:4;31256:2;31245:9;31241:18;31233:26;;31305:9;31299:4;31295:20;31291:1;31280:9;31276:17;31269:47;31333:131;31459:4;31333:131;:::i;:::-;31325:139;;31052:419;;;:::o;31477:::-;31643:4;31681:2;31670:9;31666:18;31658:26;;31730:9;31724:4;31720:20;31716:1;31705:9;31701:17;31694:47;31758:131;31884:4;31758:131;:::i;:::-;31750:139;;31477:419;;;:::o;31902:::-;32068:4;32106:2;32095:9;32091:18;32083:26;;32155:9;32149:4;32145:20;32141:1;32130:9;32126:17;32119:47;32183:131;32309:4;32183:131;:::i;:::-;32175:139;;31902:419;;;:::o;32327:::-;32493:4;32531:2;32520:9;32516:18;32508:26;;32580:9;32574:4;32570:20;32566:1;32555:9;32551:17;32544:47;32608:131;32734:4;32608:131;:::i;:::-;32600:139;;32327:419;;;:::o;32752:::-;32918:4;32956:2;32945:9;32941:18;32933:26;;33005:9;32999:4;32995:20;32991:1;32980:9;32976:17;32969:47;33033:131;33159:4;33033:131;:::i;:::-;33025:139;;32752:419;;;:::o;33177:::-;33343:4;33381:2;33370:9;33366:18;33358:26;;33430:9;33424:4;33420:20;33416:1;33405:9;33401:17;33394:47;33458:131;33584:4;33458:131;:::i;:::-;33450:139;;33177:419;;;:::o;33602:::-;33768:4;33806:2;33795:9;33791:18;33783:26;;33855:9;33849:4;33845:20;33841:1;33830:9;33826:17;33819:47;33883:131;34009:4;33883:131;:::i;:::-;33875:139;;33602:419;;;:::o;34027:::-;34193:4;34231:2;34220:9;34216:18;34208:26;;34280:9;34274:4;34270:20;34266:1;34255:9;34251:17;34244:47;34308:131;34434:4;34308:131;:::i;:::-;34300:139;;34027:419;;;:::o;34452:::-;34618:4;34656:2;34645:9;34641:18;34633:26;;34705:9;34699:4;34695:20;34691:1;34680:9;34676:17;34669:47;34733:131;34859:4;34733:131;:::i;:::-;34725:139;;34452:419;;;:::o;34877:::-;35043:4;35081:2;35070:9;35066:18;35058:26;;35130:9;35124:4;35120:20;35116:1;35105:9;35101:17;35094:47;35158:131;35284:4;35158:131;:::i;:::-;35150:139;;34877:419;;;:::o;35302:::-;35468:4;35506:2;35495:9;35491:18;35483:26;;35555:9;35549:4;35545:20;35541:1;35530:9;35526:17;35519:47;35583:131;35709:4;35583:131;:::i;:::-;35575:139;;35302:419;;;:::o;35727:::-;35893:4;35931:2;35920:9;35916:18;35908:26;;35980:9;35974:4;35970:20;35966:1;35955:9;35951:17;35944:47;36008:131;36134:4;36008:131;:::i;:::-;36000:139;;35727:419;;;:::o;36152:::-;36318:4;36356:2;36345:9;36341:18;36333:26;;36405:9;36399:4;36395:20;36391:1;36380:9;36376:17;36369:47;36433:131;36559:4;36433:131;:::i;:::-;36425:139;;36152:419;;;:::o;36577:::-;36743:4;36781:2;36770:9;36766:18;36758:26;;36830:9;36824:4;36820:20;36816:1;36805:9;36801:17;36794:47;36858:131;36984:4;36858:131;:::i;:::-;36850:139;;36577:419;;;:::o;37002:::-;37168:4;37206:2;37195:9;37191:18;37183:26;;37255:9;37249:4;37245:20;37241:1;37230:9;37226:17;37219:47;37283:131;37409:4;37283:131;:::i;:::-;37275:139;;37002:419;;;:::o;37427:350::-;37584:4;37622:2;37611:9;37607:18;37599:26;;37635:135;37767:1;37756:9;37752:17;37743:6;37635:135;:::i;:::-;37427:350;;;;:::o;37783:222::-;37876:4;37914:2;37903:9;37899:18;37891:26;;37927:71;37995:1;37984:9;37980:17;37971:6;37927:71;:::i;:::-;37783:222;;;;:::o;38011:129::-;38045:6;38072:20;;:::i;:::-;38062:30;;38101:33;38129:4;38121:6;38101:33;:::i;:::-;38011:129;;;:::o;38146:75::-;38179:6;38212:2;38206:9;38196:19;;38146:75;:::o;38227:307::-;38288:4;38378:18;38370:6;38367:30;38364:56;;;38400:18;;:::i;:::-;38364:56;38438:29;38460:6;38438:29;:::i;:::-;38430:37;;38522:4;38516;38512:15;38504:23;;38227:307;;;:::o;38540:98::-;38591:6;38625:5;38619:12;38609:22;;38540:98;;;:::o;38644:99::-;38696:6;38730:5;38724:12;38714:22;;38644:99;;;:::o;38749:168::-;38832:11;38866:6;38861:3;38854:19;38906:4;38901:3;38897:14;38882:29;;38749:168;;;;:::o;38923:147::-;39024:11;39061:3;39046:18;;38923:147;;;;:::o;39076:169::-;39160:11;39194:6;39189:3;39182:19;39234:4;39229:3;39225:14;39210:29;;39076:169;;;;:::o;39251:148::-;39353:11;39390:3;39375:18;;39251:148;;;;:::o;39405:305::-;39445:3;39464:20;39482:1;39464:20;:::i;:::-;39459:25;;39498:20;39516:1;39498:20;:::i;:::-;39493:25;;39652:1;39584:66;39580:74;39577:1;39574:81;39571:107;;;39658:18;;:::i;:::-;39571:107;39702:1;39699;39695:9;39688:16;;39405:305;;;;:::o;39716:185::-;39756:1;39773:20;39791:1;39773:20;:::i;:::-;39768:25;;39807:20;39825:1;39807:20;:::i;:::-;39802:25;;39846:1;39836:35;;39851:18;;:::i;:::-;39836:35;39893:1;39890;39886:9;39881:14;;39716:185;;;;:::o;39907:348::-;39947:7;39970:20;39988:1;39970:20;:::i;:::-;39965:25;;40004:20;40022:1;40004:20;:::i;:::-;39999:25;;40192:1;40124:66;40120:74;40117:1;40114:81;40109:1;40102:9;40095:17;40091:105;40088:131;;;40199:18;;:::i;:::-;40088:131;40247:1;40244;40240:9;40229:20;;39907:348;;;;:::o;40261:191::-;40301:4;40321:20;40339:1;40321:20;:::i;:::-;40316:25;;40355:20;40373:1;40355:20;:::i;:::-;40350:25;;40394:1;40391;40388:8;40385:34;;;40399:18;;:::i;:::-;40385:34;40444:1;40441;40437:9;40429:17;;40261:191;;;;:::o;40458:96::-;40495:7;40524:24;40542:5;40524:24;:::i;:::-;40513:35;;40458:96;;;:::o;40560:90::-;40594:7;40637:5;40630:13;40623:21;40612:32;;40560:90;;;:::o;40656:149::-;40692:7;40732:66;40725:5;40721:78;40710:89;;40656:149;;;:::o;40811:126::-;40848:7;40888:42;40881:5;40877:54;40866:65;;40811:126;;;:::o;40943:77::-;40980:7;41009:5;40998:16;;40943:77;;;:::o;41026:101::-;41062:7;41102:18;41095:5;41091:30;41080:41;;41026:101;;;:::o;41133:154::-;41217:6;41212:3;41207;41194:30;41279:1;41270:6;41265:3;41261:16;41254:27;41133:154;;;:::o;41293:307::-;41361:1;41371:113;41385:6;41382:1;41379:13;41371:113;;;41470:1;41465:3;41461:11;41455:18;41451:1;41446:3;41442:11;41435:39;41407:2;41404:1;41400:10;41395:15;;41371:113;;;41502:6;41499:1;41496:13;41493:101;;;41582:1;41573:6;41568:3;41564:16;41557:27;41493:101;41342:258;41293:307;;;:::o;41606:320::-;41650:6;41687:1;41681:4;41677:12;41667:22;;41734:1;41728:4;41724:12;41755:18;41745:81;;41811:4;41803:6;41799:17;41789:27;;41745:81;41873:2;41865:6;41862:14;41842:18;41839:38;41836:84;;;41892:18;;:::i;:::-;41836:84;41657:269;41606:320;;;:::o;41932:281::-;42015:27;42037:4;42015:27;:::i;:::-;42007:6;42003:40;42145:6;42133:10;42130:22;42109:18;42097:10;42094:34;42091:62;42088:88;;;42156:18;;:::i;:::-;42088:88;42196:10;42192:2;42185:22;41975:238;41932:281;;:::o;42219:233::-;42258:3;42281:24;42299:5;42281:24;:::i;:::-;42272:33;;42327:66;42320:5;42317:77;42314:103;;;42397:18;;:::i;:::-;42314:103;42444:1;42437:5;42433:13;42426:20;;42219:233;;;:::o;42458:176::-;42490:1;42507:20;42525:1;42507:20;:::i;:::-;42502:25;;42541:20;42559:1;42541:20;:::i;:::-;42536:25;;42580:1;42570:35;;42585:18;;:::i;:::-;42570:35;42626:1;42623;42619:9;42614:14;;42458:176;;;;:::o;42640:180::-;42688:77;42685:1;42678:88;42785:4;42782:1;42775:15;42809:4;42806:1;42799:15;42826:180;42874:77;42871:1;42864:88;42971:4;42968:1;42961:15;42995:4;42992:1;42985:15;43012:180;43060:77;43057:1;43050:88;43157:4;43154:1;43147:15;43181:4;43178:1;43171:15;43198:180;43246:77;43243:1;43236:88;43343:4;43340:1;43333:15;43367:4;43364:1;43357:15;43384:180;43432:77;43429:1;43422:88;43529:4;43526:1;43519:15;43553:4;43550:1;43543:15;43570:117;43679:1;43676;43669:12;43693:117;43802:1;43799;43792:12;43816:117;43925:1;43922;43915:12;43939:117;44048:1;44045;44038:12;44062:117;44171:1;44168;44161:12;44185:117;44294:1;44291;44284:12;44308:102;44349:6;44400:2;44396:7;44391:2;44384:5;44380:14;44376:28;44366:38;;44308:102;;;:::o;44416:221::-;44556:34;44552:1;44544:6;44540:14;44533:58;44625:4;44620:2;44612:6;44608:15;44601:29;44416:221;:::o;44643:229::-;44783:34;44779:1;44771:6;44767:14;44760:58;44852:12;44847:2;44839:6;44835:15;44828:37;44643:229;:::o;44878:225::-;45018:34;45014:1;45006:6;45002:14;44995:58;45087:8;45082:2;45074:6;45070:15;45063:33;44878:225;:::o;45109:169::-;45249:21;45245:1;45237:6;45233:14;45226:45;45109:169;:::o;45284:229::-;45424:34;45420:1;45412:6;45408:14;45401:58;45493:12;45488:2;45480:6;45476:15;45469:37;45284:229;:::o;45519:170::-;45659:22;45655:1;45647:6;45643:14;45636:46;45519:170;:::o;45695:::-;45835:22;45831:1;45823:6;45819:14;45812:46;45695:170;:::o;45871:222::-;46011:34;46007:1;45999:6;45995:14;45988:58;46080:5;46075:2;46067:6;46063:15;46056:30;45871:222;:::o;46099:224::-;46239:34;46235:1;46227:6;46223:14;46216:58;46308:7;46303:2;46295:6;46291:15;46284:32;46099:224;:::o;46329:236::-;46469:34;46465:1;46457:6;46453:14;46446:58;46538:19;46533:2;46525:6;46521:15;46514:44;46329:236;:::o;46571:178::-;46711:30;46707:1;46699:6;46695:14;46688:54;46571:178;:::o;46755:159::-;46895:11;46891:1;46883:6;46879:14;46872:35;46755:159;:::o;46920:244::-;47060:34;47056:1;47048:6;47044:14;47037:58;47129:27;47124:2;47116:6;47112:15;47105:52;46920:244;:::o;47170:174::-;47310:26;47306:1;47298:6;47294:14;47287:50;47170:174;:::o;47350:167::-;47490:19;47486:1;47478:6;47474:14;47467:43;47350:167;:::o;47523:230::-;47663:34;47659:1;47651:6;47647:14;47640:58;47732:13;47727:2;47719:6;47715:15;47708:38;47523:230;:::o;47759:225::-;47899:34;47895:1;47887:6;47883:14;47876:58;47968:8;47963:2;47955:6;47951:15;47944:33;47759:225;:::o;47990:182::-;48130:34;48126:1;48118:6;48114:14;48107:58;47990:182;:::o;48178:234::-;48318:34;48314:1;48306:6;48302:14;48295:58;48387:17;48382:2;48374:6;48370:15;48363:42;48178:234;:::o;48418:176::-;48558:28;48554:1;48546:6;48542:14;48535:52;48418:176;:::o;48600:237::-;48740:34;48736:1;48728:6;48724:14;48717:58;48809:20;48804:2;48796:6;48792:15;48785:45;48600:237;:::o;48843:179::-;48983:31;48979:1;48971:6;48967:14;48960:55;48843:179;:::o;49028:221::-;49168:34;49164:1;49156:6;49152:14;49145:58;49237:4;49232:2;49224:6;49220:15;49213:29;49028:221;:::o;49255:114::-;;:::o;49375:166::-;49515:18;49511:1;49503:6;49499:14;49492:42;49375:166;:::o;49547:238::-;49687:34;49683:1;49675:6;49671:14;49664:58;49756:21;49751:2;49743:6;49739:15;49732:46;49547:238;:::o;49791:220::-;49931:34;49927:1;49919:6;49915:14;49908:58;50000:3;49995:2;49987:6;49983:15;49976:28;49791:220;:::o;50017:227::-;50157:34;50153:1;50145:6;50141:14;50134:58;50226:10;50221:2;50213:6;50209:15;50202:35;50017:227;:::o;50250:169::-;50390:21;50386:1;50378:6;50374:14;50367:45;50250:169;:::o;50425:233::-;50565:34;50561:1;50553:6;50549:14;50542:58;50634:16;50629:2;50621:6;50617:15;50610:41;50425:233;:::o;50664:181::-;50804:33;50800:1;50792:6;50788:14;50781:57;50664:181;:::o;50851:234::-;50991:34;50987:1;50979:6;50975:14;50968:58;51060:17;51055:2;51047:6;51043:15;51036:42;50851:234;:::o;51091:232::-;51231:34;51227:1;51219:6;51215:14;51208:58;51300:15;51295:2;51287:6;51283:15;51276:40;51091:232;:::o;51329:122::-;51402:24;51420:5;51402:24;:::i;:::-;51395:5;51392:35;51382:63;;51441:1;51438;51431:12;51382:63;51329:122;:::o;51457:116::-;51527:21;51542:5;51527:21;:::i;:::-;51520:5;51517:32;51507:60;;51563:1;51560;51553:12;51507:60;51457:116;:::o;51579:120::-;51651:23;51668:5;51651:23;:::i;:::-;51644:5;51641:34;51631:62;;51689:1;51686;51679:12;51631:62;51579:120;:::o;51705:122::-;51778:24;51796:5;51778:24;:::i;:::-;51771:5;51768:35;51758:63;;51817:1;51814;51807:12;51758:63;51705:122;:::o

Swarm Source

ipfs://28f3e892306c7d86a6c98016de1b1c34b4d70de18df06a653a6251b8d404fd35
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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