ETH Price: $3,036.82 (+2.62%)
Gas: 2 Gwei

Token

FFMfers (FFMfers)
 

Overview

Max Total Supply

6,969 FFMfers

Holders

415

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
canttrustwallet.eth
Balance
20 FFMfers
0xd8d85a9091460fc84f6cc54cf65f30012e2b29ec
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:
FFMfers

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-28
*/

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// 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/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/ERC721A.sol



pragma solidity ^0.8.10;









/**
 * @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).
 */
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 private currentIndex = 1;

  uint256 public immutable maxBatchSize;

  // 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) private _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;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

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

  /**
   * @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 = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; 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);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; 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 override {
    _transfer(from, to, tokenId);
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public 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 Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      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);

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership(
          prevOwnership.addr,
          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);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @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 {}
}
// File: contracts/FF.sol



//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel



pragma solidity >=0.7.0 <0.9.0;





contract FFMfers is ERC721A, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.0069 ether;
  uint256 public maxSupply = 6969;
  uint256 public maxsize = 20 ; // max mint per tx
  bool public paused = false;

  constructor() ERC721A("FFMfers", "FFMfers", maxsize) {
    setBaseURI("ipfs://QmUbdwPuafxtR7wvEmd5xpheTn2f1tNuaGcwvrMioPUs5C/");
  }

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

  // public
  function mint(uint256 tokens) public payable {
    require(!paused, "FFMfers: oops contract is paused");
    uint256 supply = totalSupply();
    require(tokens > 0, "FFMfers: need to mint at least 1 NFT");
    require(tokens <= maxsize, "FFMfers: max mint amount per tx exceeded");
    require(supply + tokens <= maxSupply, "FFMfers: We Soldout");
    if (supply < 500) {
      require(msg.value >= 0 * tokens, "FFMfers: It's Free Mint");
    } else {

    require(msg.value >= cost * tokens, "FFMfers: insufficient funds");
    }

      _safeMint(_msgSender(), tokens);
    
  }



  /// @dev use it for giveaway and mint for yourself
     function gift(uint256 _mintAmount, address destination) public onlyOwner {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
    
  }

  


  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    

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

  //only owner

  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }


  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxsize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","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":[{"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":"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a0604052600160005560006007556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005b92919062000380565b506618838370f34000600b55611b39600c556014600d556000600e60006101000a81548160ff0219169083151502179055503480156200009a57600080fd5b506040518060400160405280600781526020017f46464d66657273000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f46464d6665727300000000000000000000000000000000000000000000000000815250600d546000811162000150576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014790620004b7565b60405180910390fd5b82600190805190602001906200016892919062000380565b5081600290805190602001906200018192919062000380565b508060808181525050505050620001ad620001a1620001dd60201b60201c565b620001e560201b60201c565b620001d76040518060600160405280603681526020016200531f60369139620002ab60201b60201c565b620005b0565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002bb620001dd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e16200035660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200033a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003319062000529565b60405180910390fd5b80600990805190602001906200035292919062000380565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200038e906200057a565b90600052602060002090601f016020900481019282620003b25760008555620003fe565b82601f10620003cd57805160ff1916838001178555620003fe565b82800160010185558215620003fe579182015b82811115620003fd578251825591602001919060010190620003e0565b5b5090506200040d919062000411565b5090565b5b808211156200042c57600081600090555060010162000412565b5090565b600082825260208201905092915050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b60006200049f60278362000430565b9150620004ac8262000441565b604082019050919050565b60006020820190508181036000830152620004d28162000490565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200051160208362000430565b91506200051e82620004d9565b602082019050919050565b60006020820190508181036000830152620005448162000502565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200059357607f821691505b60208210811415620005aa57620005a96200054b565b5b50919050565b608051614d3e620005e160003960008181610d2d0152818161250c015281816125350152612be70152614d3e6000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610781578063d7224ba0146107ac578063da3ef23f146107d7578063e985e9c514610800578063f2fde38b1461083d5761020f565b8063a22cb465146106c7578063b88d4fde146106f0578063c668286214610719578063c87b56dd146107445761020f565b8063715018a6116100e7578063715018a61461061557806383a076be1461062c5780638da5cb5b1461065557806395d89b4114610680578063a0712d68146106ab5761020f565b80636352211e146105455780636c0360eb146105825780636c6e927e146105ad57806370a08231146105d85761020f565b80632913daa01161019b578063438b63001161016a578063438b63001461044e57806344a0d68a1461048b5780634f6ccce7146104b457806355f804b3146104f15780635c975abb1461051a5761020f565b80632913daa0146103b35780632f745c59146103de5780633ccfd60b1461041b57806342842e0e146104255761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b578063149835a01461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613171565b610866565b60405161024891906131b9565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613200565b6109b0565b005b34801561028657600080fd5b5061028f610a49565b60405161029c91906132c6565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c7919061331e565b610adb565b6040516102d9919061338c565b60405180910390f35b3480156102ee57600080fd5b50610309600480360381019061030491906133d3565b610b60565b005b34801561031757600080fd5b50610320610c79565b60405161032d9190613422565b60405180910390f35b34801561034257600080fd5b5061035d6004803603810190610358919061331e565b610c7f565b005b34801561036b57600080fd5b50610374610d05565b6040516103819190613422565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac919061343d565b610d1b565b005b3480156103bf57600080fd5b506103c8610d2b565b6040516103d59190613422565b60405180910390f35b3480156103ea57600080fd5b50610405600480360381019061040091906133d3565b610d4f565b6040516104129190613422565b60405180910390f35b610423610f4d565b005b34801561043157600080fd5b5061044c6004803603810190610447919061343d565b611042565b005b34801561045a57600080fd5b5061047560048036038101906104709190613490565b611062565b604051610482919061357b565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad919061331e565b611110565b005b3480156104c057600080fd5b506104db60048036038101906104d6919061331e565b611196565b6040516104e89190613422565b60405180910390f35b3480156104fd57600080fd5b50610518600480360381019061051391906136d2565b6111e9565b005b34801561052657600080fd5b5061052f61127f565b60405161053c91906131b9565b60405180910390f35b34801561055157600080fd5b5061056c6004803603810190610567919061331e565b611292565b604051610579919061338c565b60405180910390f35b34801561058e57600080fd5b506105976112a8565b6040516105a491906132c6565b60405180910390f35b3480156105b957600080fd5b506105c2611336565b6040516105cf9190613422565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190613490565b61133c565b60405161060c9190613422565b60405180910390f35b34801561062157600080fd5b5061062a611425565b005b34801561063857600080fd5b50610653600480360381019061064e919061371b565b6114ad565b005b34801561066157600080fd5b5061066a6115d7565b604051610677919061338c565b60405180910390f35b34801561068c57600080fd5b50610695611601565b6040516106a291906132c6565b60405180910390f35b6106c560048036038101906106c0919061331e565b611693565b005b3480156106d357600080fd5b506106ee60048036038101906106e9919061375b565b61188b565b005b3480156106fc57600080fd5b506107176004803603810190610712919061383c565b611a0c565b005b34801561072557600080fd5b5061072e611a68565b60405161073b91906132c6565b60405180910390f35b34801561075057600080fd5b5061076b6004803603810190610766919061331e565b611af6565b60405161077891906132c6565b60405180910390f35b34801561078d57600080fd5b50610796611ba0565b6040516107a39190613422565b60405180910390f35b3480156107b857600080fd5b506107c1611ba6565b6040516107ce9190613422565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f991906136d2565b611bac565b005b34801561080c57600080fd5b50610827600480360381019061082291906138bf565b611c42565b60405161083491906131b9565b60405180910390f35b34801561084957600080fd5b50610864600480360381019061085f9190613490565b611cd6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a957506109a882611dce565b5b9050919050565b6109b8611e38565b73ffffffffffffffffffffffffffffffffffffffff166109d66115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a239061394b565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b606060018054610a589061399a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a849061399a565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae682611e40565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90613a3e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6b82611292565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390613ad0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfb611e38565b73ffffffffffffffffffffffffffffffffffffffff161480610c2a5750610c2981610c24611e38565b611c42565b5b610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090613b62565b60405180910390fd5b610c74838383611e4d565b505050565b600b5481565b610c87611e38565b73ffffffffffffffffffffffffffffffffffffffff16610ca56115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf29061394b565b60405180910390fd5b80600c8190555050565b60006001600054610d169190613bb1565b905090565b610d26838383611eff565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610d5a8361133c565b8210610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290613c57565b60405180910390fd5b6000610da5610d05565b905060008060005b83811015610f0b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e9f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef75786841415610ee8578195505050505050610f47565b8380610ef390613c77565b9450505b508080610f0390613c77565b915050610dad565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613d32565b60405180910390fd5b92915050565b610f55611e38565b73ffffffffffffffffffffffffffffffffffffffff16610f736115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc09061394b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610fef90613d83565b60006040518083038185875af1925050503d806000811461102c576040519150601f19603f3d011682016040523d82523d6000602084013e611031565b606091505b505090508061103f57600080fd5b50565b61105d83838360405180602001604052806000815250611a0c565b505050565b6060600061106f8361133c565b905060008167ffffffffffffffff81111561108d5761108c6135a7565b5b6040519080825280602002602001820160405280156110bb5781602001602082028036833780820191505090505b50905060005b82811015611105576110d38582610d4f565b8282815181106110e6576110e5613d98565b5b60200260200101818152505080806110fd90613c77565b9150506110c1565b508092505050919050565b611118611e38565b73ffffffffffffffffffffffffffffffffffffffff166111366115d7565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061394b565b60405180910390fd5b80600b8190555050565b60006111a0610d05565b82106111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890613e39565b60405180910390fd5b819050919050565b6111f1611e38565b73ffffffffffffffffffffffffffffffffffffffff1661120f6115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c9061394b565b60405180910390fd5b806009908051906020019061127b929190613028565b5050565b600e60009054906101000a900460ff1681565b600061129d826124b8565b600001519050919050565b600980546112b59061399a565b80601f01602080910402602001604051908101604052809291908181526020018280546112e19061399a565b801561132e5780601f106113035761010080835404028352916020019161132e565b820191906000526020600020905b81548152906001019060200180831161131157829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490613ecb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61142d611e38565b73ffffffffffffffffffffffffffffffffffffffff1661144b6115d7565b73ffffffffffffffffffffffffffffffffffffffff16146114a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114989061394b565b60405180910390fd5b6114ab60006126bb565b565b6114b5611e38565b73ffffffffffffffffffffffffffffffffffffffff166114d36115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611529576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115209061394b565b60405180910390fd5b6000821161156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390613f37565b60405180910390fd5b6000611576610d05565b9050600c5483826115879190613f57565b11156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90613ff9565b60405180910390fd5b6115d28284612781565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546116109061399a565b80601f016020809104026020016040519081016040528092919081815260200182805461163c9061399a565b80156116895780601f1061165e57610100808354040283529160200191611689565b820191906000526020600020905b81548152906001019060200180831161166c57829003601f168201915b5050505050905090565b600e60009054906101000a900460ff16156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90614065565b60405180910390fd5b60006116ed610d05565b905060008211611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906140f7565b60405180910390fd5b600d54821115611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90614189565b60405180910390fd5b600c5482826117869190613f57565b11156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906141f5565b60405180910390fd5b6101f4811015611825578160006117de9190614215565b341015611820576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611817906142bb565b60405180910390fd5b611876565b81600b546118339190614215565b341015611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90614327565b60405180910390fd5b5b611887611881611e38565b83612781565b5050565b611893611e38565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f890614393565b60405180910390fd5b806006600061190e611e38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119bb611e38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a0091906131b9565b60405180910390a35050565b611a17848484611eff565b611a238484848461279f565b611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5990614425565b60405180910390fd5b50505050565b600a8054611a759061399a565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa19061399a565b8015611aee5780601f10611ac357610100808354040283529160200191611aee565b820191906000526020600020905b815481529060010190602001808311611ad157829003601f168201915b505050505081565b6060611b0182611e40565b611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b37906144b7565b60405180910390fd5b6000611b4a612927565b90506000815111611b6a5760405180602001604052806000815250611b98565b80611b74846129b9565b600a604051602001611b88939291906145a7565b6040516020818303038152906040525b915050919050565b600c5481565b60075481565b611bb4611e38565b73ffffffffffffffffffffffffffffffffffffffff16611bd26115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f9061394b565b60405180910390fd5b80600a9080519060200190611c3e929190613028565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cde611e38565b73ffffffffffffffffffffffffffffffffffffffff16611cfc6115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d499061394b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db99061464a565b60405180910390fd5b611dcb816126bb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f0a826124b8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f31611e38565b73ffffffffffffffffffffffffffffffffffffffff161480611f8d5750611f56611e38565b73ffffffffffffffffffffffffffffffffffffffff16611f7584610adb565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa95750611fa88260000151611fa3611e38565b611c42565b5b905080611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe2906146dc565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461205d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120549061476e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c490614800565b60405180910390fd5b6120da8585856001612b1a565b6120ea6000848460000151611e4d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612158919061483c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121fc9190614870565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123029190613f57565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124485761237881611e40565b15612447576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124b08686866001612b20565b505050505050565b6124c06130ae565b6124c982611e40565b612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90614928565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061256c5760017f00000000000000000000000000000000000000000000000000000000000000008461255f9190613bb1565b6125699190613f57565b90505b60008390505b81811061267a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612666578093505050506126b6565b50808061267290614948565b915050612572565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ad906149e4565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61279b828260405180602001604052806000815250612b26565b5050565b60006127c08473ffffffffffffffffffffffffffffffffffffffff16613005565b1561291a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127e9611e38565b8786866040518563ffffffff1660e01b815260040161280b9493929190614a59565b6020604051808303816000875af192505050801561284757506040513d601f19601f820116820180604052508101906128449190614aba565b60015b6128ca573d8060008114612877576040519150601f19603f3d011682016040523d82523d6000602084013e61287c565b606091505b506000815114156128c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b990614425565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061291f565b600190505b949350505050565b6060600980546129369061399a565b80601f01602080910402602001604051908101604052809291908181526020018280546129629061399a565b80156129af5780601f10612984576101008083540402835291602001916129af565b820191906000526020600020905b81548152906001019060200180831161299257829003601f168201915b5050505050905090565b60606000821415612a01576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b15565b600082905060005b60008214612a33578080612a1c90613c77565b915050600a82612a2c9190614b16565b9150612a09565b60008167ffffffffffffffff811115612a4f57612a4e6135a7565b5b6040519080825280601f01601f191660200182016040528015612a815781602001600182028036833780820191505090505b5090505b60008514612b0e57600182612a9a9190613bb1565b9150600a85612aa99190614b47565b6030612ab59190613f57565b60f81b818381518110612acb57612aca613d98565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b079190614b16565b9450612a85565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9390614bea565b60405180910390fd5b612ba581611e40565b15612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614c56565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3f90614ce8565b60405180910390fd5b612c556000858386612b1a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d529190614870565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d799190614870565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612fe857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f88600088848861279f565b612fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbe90614425565b60405180910390fd5b8180612fd290613c77565b9250508080612fe090613c77565b915050612f17565b5080600081905550612ffd6000878588612b20565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546130349061399a565b90600052602060002090601f016020900481019282613056576000855561309d565b82601f1061306f57805160ff191683800117855561309d565b8280016001018555821561309d579182015b8281111561309c578251825591602001919060010190613081565b5b5090506130aa91906130e8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131015760008160009055506001016130e9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61314e81613119565b811461315957600080fd5b50565b60008135905061316b81613145565b92915050565b6000602082840312156131875761318661310f565b5b60006131958482850161315c565b91505092915050565b60008115159050919050565b6131b38161319e565b82525050565b60006020820190506131ce60008301846131aa565b92915050565b6131dd8161319e565b81146131e857600080fd5b50565b6000813590506131fa816131d4565b92915050565b6000602082840312156132165761321561310f565b5b6000613224848285016131eb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561326757808201518184015260208101905061324c565b83811115613276576000848401525b50505050565b6000601f19601f8301169050919050565b60006132988261322d565b6132a28185613238565b93506132b2818560208601613249565b6132bb8161327c565b840191505092915050565b600060208201905081810360008301526132e0818461328d565b905092915050565b6000819050919050565b6132fb816132e8565b811461330657600080fd5b50565b600081359050613318816132f2565b92915050565b6000602082840312156133345761333361310f565b5b600061334284828501613309565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133768261334b565b9050919050565b6133868161336b565b82525050565b60006020820190506133a1600083018461337d565b92915050565b6133b08161336b565b81146133bb57600080fd5b50565b6000813590506133cd816133a7565b92915050565b600080604083850312156133ea576133e961310f565b5b60006133f8858286016133be565b925050602061340985828601613309565b9150509250929050565b61341c816132e8565b82525050565b60006020820190506134376000830184613413565b92915050565b6000806000606084860312156134565761345561310f565b5b6000613464868287016133be565b9350506020613475868287016133be565b925050604061348686828701613309565b9150509250925092565b6000602082840312156134a6576134a561310f565b5b60006134b4848285016133be565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134f2816132e8565b82525050565b600061350483836134e9565b60208301905092915050565b6000602082019050919050565b6000613528826134bd565b61353281856134c8565b935061353d836134d9565b8060005b8381101561356e57815161355588826134f8565b975061356083613510565b925050600181019050613541565b5085935050505092915050565b60006020820190508181036000830152613595818461351d565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135df8261327c565b810181811067ffffffffffffffff821117156135fe576135fd6135a7565b5b80604052505050565b6000613611613105565b905061361d82826135d6565b919050565b600067ffffffffffffffff82111561363d5761363c6135a7565b5b6136468261327c565b9050602081019050919050565b82818337600083830152505050565b600061367561367084613622565b613607565b905082815260208101848484011115613691576136906135a2565b5b61369c848285613653565b509392505050565b600082601f8301126136b9576136b861359d565b5b81356136c9848260208601613662565b91505092915050565b6000602082840312156136e8576136e761310f565b5b600082013567ffffffffffffffff81111561370657613705613114565b5b613712848285016136a4565b91505092915050565b600080604083850312156137325761373161310f565b5b600061374085828601613309565b9250506020613751858286016133be565b9150509250929050565b600080604083850312156137725761377161310f565b5b6000613780858286016133be565b9250506020613791858286016131eb565b9150509250929050565b600067ffffffffffffffff8211156137b6576137b56135a7565b5b6137bf8261327c565b9050602081019050919050565b60006137df6137da8461379b565b613607565b9050828152602081018484840111156137fb576137fa6135a2565b5b613806848285613653565b509392505050565b600082601f8301126138235761382261359d565b5b81356138338482602086016137cc565b91505092915050565b600080600080608085870312156138565761385561310f565b5b6000613864878288016133be565b9450506020613875878288016133be565b935050604061388687828801613309565b925050606085013567ffffffffffffffff8111156138a7576138a6613114565b5b6138b38782880161380e565b91505092959194509250565b600080604083850312156138d6576138d561310f565b5b60006138e4858286016133be565b92505060206138f5858286016133be565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613935602083613238565b9150613940826138ff565b602082019050919050565b6000602082019050818103600083015261396481613928565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139b257607f821691505b602082108114156139c6576139c561396b565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613a28602d83613238565b9150613a33826139cc565b604082019050919050565b60006020820190508181036000830152613a5781613a1b565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613aba602283613238565b9150613ac582613a5e565b604082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613b4c603983613238565b9150613b5782613af0565b604082019050919050565b60006020820190508181036000830152613b7b81613b3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bbc826132e8565b9150613bc7836132e8565b925082821015613bda57613bd9613b82565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c41602283613238565b9150613c4c82613be5565b604082019050919050565b60006020820190508181036000830152613c7081613c34565b9050919050565b6000613c82826132e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cb557613cb4613b82565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d1c602e83613238565b9150613d2782613cc0565b604082019050919050565b60006020820190508181036000830152613d4b81613d0f565b9050919050565b600081905092915050565b50565b6000613d6d600083613d52565b9150613d7882613d5d565b600082019050919050565b6000613d8e82613d60565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e23602383613238565b9150613e2e82613dc7565b604082019050919050565b60006020820190508181036000830152613e5281613e16565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613eb5602b83613238565b9150613ec082613e59565b604082019050919050565b60006020820190508181036000830152613ee481613ea8565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613f21601b83613238565b9150613f2c82613eeb565b602082019050919050565b60006020820190508181036000830152613f5081613f14565b9050919050565b6000613f62826132e8565b9150613f6d836132e8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fa257613fa1613b82565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613fe3601683613238565b9150613fee82613fad565b602082019050919050565b6000602082019050818103600083015261401281613fd6565b9050919050565b7f46464d666572733a206f6f707320636f6e747261637420697320706175736564600082015250565b600061404f602083613238565b915061405a82614019565b602082019050919050565b6000602082019050818103600083015261407e81614042565b9050919050565b7f46464d666572733a206e65656420746f206d696e74206174206c65617374203160008201527f204e465400000000000000000000000000000000000000000000000000000000602082015250565b60006140e1602483613238565b91506140ec82614085565b604082019050919050565b60006020820190508181036000830152614110816140d4565b9050919050565b7f46464d666572733a206d6178206d696e7420616d6f756e74207065722074782060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b6000614173602883613238565b915061417e82614117565b604082019050919050565b600060208201905081810360008301526141a281614166565b9050919050565b7f46464d666572733a20576520536f6c646f757400000000000000000000000000600082015250565b60006141df601383613238565b91506141ea826141a9565b602082019050919050565b6000602082019050818103600083015261420e816141d2565b9050919050565b6000614220826132e8565b915061422b836132e8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561426457614263613b82565b5b828202905092915050565b7f46464d666572733a20497427732046726565204d696e74000000000000000000600082015250565b60006142a5601783613238565b91506142b08261426f565b602082019050919050565b600060208201905081810360008301526142d481614298565b9050919050565b7f46464d666572733a20696e73756666696369656e742066756e64730000000000600082015250565b6000614311601b83613238565b915061431c826142db565b602082019050919050565b6000602082019050818103600083015261434081614304565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061437d601a83613238565b915061438882614347565b602082019050919050565b600060208201905081810360008301526143ac81614370565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061440f603383613238565b915061441a826143b3565b604082019050919050565b6000602082019050818103600083015261443e81614402565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b60006144a1603083613238565b91506144ac82614445565b604082019050919050565b600060208201905081810360008301526144d081614494565b9050919050565b600081905092915050565b60006144ed8261322d565b6144f781856144d7565b9350614507818560208601613249565b80840191505092915050565b60008190508160005260206000209050919050565b600081546145358161399a565b61453f81866144d7565b9450600182166000811461455a576001811461456b5761459e565b60ff1983168652818601935061459e565b61457485614513565b60005b8381101561459657815481890152600182019150602081019050614577565b838801955050505b50505092915050565b60006145b382866144e2565b91506145bf82856144e2565b91506145cb8284614528565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614634602683613238565b915061463f826145d8565b604082019050919050565b6000602082019050818103600083015261466381614627565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006146c6603283613238565b91506146d18261466a565b604082019050919050565b600060208201905081810360008301526146f5816146b9565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614758602683613238565b9150614763826146fc565b604082019050919050565b600060208201905081810360008301526147878161474b565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147ea602583613238565b91506147f58261478e565b604082019050919050565b60006020820190508181036000830152614819816147dd565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061484782614820565b915061485283614820565b92508282101561486557614864613b82565b5b828203905092915050565b600061487b82614820565b915061488683614820565b9250826fffffffffffffffffffffffffffffffff038211156148ab576148aa613b82565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614912602a83613238565b915061491d826148b6565b604082019050919050565b6000602082019050818103600083015261494181614905565b9050919050565b6000614953826132e8565b9150600082141561496757614966613b82565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006149ce602f83613238565b91506149d982614972565b604082019050919050565b600060208201905081810360008301526149fd816149c1565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a2b82614a04565b614a358185614a0f565b9350614a45818560208601613249565b614a4e8161327c565b840191505092915050565b6000608082019050614a6e600083018761337d565b614a7b602083018661337d565b614a886040830185613413565b8181036060830152614a9a8184614a20565b905095945050505050565b600081519050614ab481613145565b92915050565b600060208284031215614ad057614acf61310f565b5b6000614ade84828501614aa5565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b21826132e8565b9150614b2c836132e8565b925082614b3c57614b3b614ae7565b5b828204905092915050565b6000614b52826132e8565b9150614b5d836132e8565b925082614b6d57614b6c614ae7565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bd4602183613238565b9150614bdf82614b78565b604082019050919050565b60006020820190508181036000830152614c0381614bc7565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614c40601d83613238565b9150614c4b82614c0a565b602082019050919050565b60006020820190508181036000830152614c6f81614c33565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cd2602283613238565b9150614cdd82614c76565b604082019050919050565b60006020820190508181036000830152614d0181614cc5565b905091905056fea2646970667358221220a5560a3356df385cc7868faba623052b835f084398e5e4feb94f5e2d6254b72064736f6c634300080c0033697066733a2f2f516d5562647750756166787452377776456d643578706865546e326631744e756147637776724d696f50557335432f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610781578063d7224ba0146107ac578063da3ef23f146107d7578063e985e9c514610800578063f2fde38b1461083d5761020f565b8063a22cb465146106c7578063b88d4fde146106f0578063c668286214610719578063c87b56dd146107445761020f565b8063715018a6116100e7578063715018a61461061557806383a076be1461062c5780638da5cb5b1461065557806395d89b4114610680578063a0712d68146106ab5761020f565b80636352211e146105455780636c0360eb146105825780636c6e927e146105ad57806370a08231146105d85761020f565b80632913daa01161019b578063438b63001161016a578063438b63001461044e57806344a0d68a1461048b5780634f6ccce7146104b457806355f804b3146104f15780635c975abb1461051a5761020f565b80632913daa0146103b35780632f745c59146103de5780633ccfd60b1461041b57806342842e0e146104255761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b578063149835a01461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613171565b610866565b60405161024891906131b9565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613200565b6109b0565b005b34801561028657600080fd5b5061028f610a49565b60405161029c91906132c6565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c7919061331e565b610adb565b6040516102d9919061338c565b60405180910390f35b3480156102ee57600080fd5b50610309600480360381019061030491906133d3565b610b60565b005b34801561031757600080fd5b50610320610c79565b60405161032d9190613422565b60405180910390f35b34801561034257600080fd5b5061035d6004803603810190610358919061331e565b610c7f565b005b34801561036b57600080fd5b50610374610d05565b6040516103819190613422565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac919061343d565b610d1b565b005b3480156103bf57600080fd5b506103c8610d2b565b6040516103d59190613422565b60405180910390f35b3480156103ea57600080fd5b50610405600480360381019061040091906133d3565b610d4f565b6040516104129190613422565b60405180910390f35b610423610f4d565b005b34801561043157600080fd5b5061044c6004803603810190610447919061343d565b611042565b005b34801561045a57600080fd5b5061047560048036038101906104709190613490565b611062565b604051610482919061357b565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad919061331e565b611110565b005b3480156104c057600080fd5b506104db60048036038101906104d6919061331e565b611196565b6040516104e89190613422565b60405180910390f35b3480156104fd57600080fd5b50610518600480360381019061051391906136d2565b6111e9565b005b34801561052657600080fd5b5061052f61127f565b60405161053c91906131b9565b60405180910390f35b34801561055157600080fd5b5061056c6004803603810190610567919061331e565b611292565b604051610579919061338c565b60405180910390f35b34801561058e57600080fd5b506105976112a8565b6040516105a491906132c6565b60405180910390f35b3480156105b957600080fd5b506105c2611336565b6040516105cf9190613422565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190613490565b61133c565b60405161060c9190613422565b60405180910390f35b34801561062157600080fd5b5061062a611425565b005b34801561063857600080fd5b50610653600480360381019061064e919061371b565b6114ad565b005b34801561066157600080fd5b5061066a6115d7565b604051610677919061338c565b60405180910390f35b34801561068c57600080fd5b50610695611601565b6040516106a291906132c6565b60405180910390f35b6106c560048036038101906106c0919061331e565b611693565b005b3480156106d357600080fd5b506106ee60048036038101906106e9919061375b565b61188b565b005b3480156106fc57600080fd5b506107176004803603810190610712919061383c565b611a0c565b005b34801561072557600080fd5b5061072e611a68565b60405161073b91906132c6565b60405180910390f35b34801561075057600080fd5b5061076b6004803603810190610766919061331e565b611af6565b60405161077891906132c6565b60405180910390f35b34801561078d57600080fd5b50610796611ba0565b6040516107a39190613422565b60405180910390f35b3480156107b857600080fd5b506107c1611ba6565b6040516107ce9190613422565b60405180910390f35b3480156107e357600080fd5b506107fe60048036038101906107f991906136d2565b611bac565b005b34801561080c57600080fd5b50610827600480360381019061082291906138bf565b611c42565b60405161083491906131b9565b60405180910390f35b34801561084957600080fd5b50610864600480360381019061085f9190613490565b611cd6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a957506109a882611dce565b5b9050919050565b6109b8611e38565b73ffffffffffffffffffffffffffffffffffffffff166109d66115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a239061394b565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b606060018054610a589061399a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a849061399a565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae682611e40565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90613a3e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6b82611292565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390613ad0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bfb611e38565b73ffffffffffffffffffffffffffffffffffffffff161480610c2a5750610c2981610c24611e38565b611c42565b5b610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090613b62565b60405180910390fd5b610c74838383611e4d565b505050565b600b5481565b610c87611e38565b73ffffffffffffffffffffffffffffffffffffffff16610ca56115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf29061394b565b60405180910390fd5b80600c8190555050565b60006001600054610d169190613bb1565b905090565b610d26838383611eff565b505050565b7f000000000000000000000000000000000000000000000000000000000000001481565b6000610d5a8361133c565b8210610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290613c57565b60405180910390fd5b6000610da5610d05565b905060008060005b83811015610f0b576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e9f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef75786841415610ee8578195505050505050610f47565b8380610ef390613c77565b9450505b508080610f0390613c77565b915050610dad565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613d32565b60405180910390fd5b92915050565b610f55611e38565b73ffffffffffffffffffffffffffffffffffffffff16610f736115d7565b73ffffffffffffffffffffffffffffffffffffffff1614610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc09061394b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610fef90613d83565b60006040518083038185875af1925050503d806000811461102c576040519150601f19603f3d011682016040523d82523d6000602084013e611031565b606091505b505090508061103f57600080fd5b50565b61105d83838360405180602001604052806000815250611a0c565b505050565b6060600061106f8361133c565b905060008167ffffffffffffffff81111561108d5761108c6135a7565b5b6040519080825280602002602001820160405280156110bb5781602001602082028036833780820191505090505b50905060005b82811015611105576110d38582610d4f565b8282815181106110e6576110e5613d98565b5b60200260200101818152505080806110fd90613c77565b9150506110c1565b508092505050919050565b611118611e38565b73ffffffffffffffffffffffffffffffffffffffff166111366115d7565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061394b565b60405180910390fd5b80600b8190555050565b60006111a0610d05565b82106111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d890613e39565b60405180910390fd5b819050919050565b6111f1611e38565b73ffffffffffffffffffffffffffffffffffffffff1661120f6115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611265576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125c9061394b565b60405180910390fd5b806009908051906020019061127b929190613028565b5050565b600e60009054906101000a900460ff1681565b600061129d826124b8565b600001519050919050565b600980546112b59061399a565b80601f01602080910402602001604051908101604052809291908181526020018280546112e19061399a565b801561132e5780601f106113035761010080835404028352916020019161132e565b820191906000526020600020905b81548152906001019060200180831161131157829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a490613ecb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61142d611e38565b73ffffffffffffffffffffffffffffffffffffffff1661144b6115d7565b73ffffffffffffffffffffffffffffffffffffffff16146114a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114989061394b565b60405180910390fd5b6114ab60006126bb565b565b6114b5611e38565b73ffffffffffffffffffffffffffffffffffffffff166114d36115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611529576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115209061394b565b60405180910390fd5b6000821161156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390613f37565b60405180910390fd5b6000611576610d05565b9050600c5483826115879190613f57565b11156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90613ff9565b60405180910390fd5b6115d28284612781565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546116109061399a565b80601f016020809104026020016040519081016040528092919081815260200182805461163c9061399a565b80156116895780601f1061165e57610100808354040283529160200191611689565b820191906000526020600020905b81548152906001019060200180831161166c57829003601f168201915b5050505050905090565b600e60009054906101000a900460ff16156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90614065565b60405180910390fd5b60006116ed610d05565b905060008211611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906140f7565b60405180910390fd5b600d54821115611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90614189565b60405180910390fd5b600c5482826117869190613f57565b11156117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be906141f5565b60405180910390fd5b6101f4811015611825578160006117de9190614215565b341015611820576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611817906142bb565b60405180910390fd5b611876565b81600b546118339190614215565b341015611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90614327565b60405180910390fd5b5b611887611881611e38565b83612781565b5050565b611893611e38565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f890614393565b60405180910390fd5b806006600061190e611e38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119bb611e38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a0091906131b9565b60405180910390a35050565b611a17848484611eff565b611a238484848461279f565b611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5990614425565b60405180910390fd5b50505050565b600a8054611a759061399a565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa19061399a565b8015611aee5780601f10611ac357610100808354040283529160200191611aee565b820191906000526020600020905b815481529060010190602001808311611ad157829003601f168201915b505050505081565b6060611b0182611e40565b611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b37906144b7565b60405180910390fd5b6000611b4a612927565b90506000815111611b6a5760405180602001604052806000815250611b98565b80611b74846129b9565b600a604051602001611b88939291906145a7565b6040516020818303038152906040525b915050919050565b600c5481565b60075481565b611bb4611e38565b73ffffffffffffffffffffffffffffffffffffffff16611bd26115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f9061394b565b60405180910390fd5b80600a9080519060200190611c3e929190613028565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cde611e38565b73ffffffffffffffffffffffffffffffffffffffff16611cfc6115d7565b73ffffffffffffffffffffffffffffffffffffffff1614611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d499061394b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db99061464a565b60405180910390fd5b611dcb816126bb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f0a826124b8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f31611e38565b73ffffffffffffffffffffffffffffffffffffffff161480611f8d5750611f56611e38565b73ffffffffffffffffffffffffffffffffffffffff16611f7584610adb565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fa95750611fa88260000151611fa3611e38565b611c42565b5b905080611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe2906146dc565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461205d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120549061476e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c490614800565b60405180910390fd5b6120da8585856001612b1a565b6120ea6000848460000151611e4d565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612158919061483c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121fc9190614870565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123029190613f57565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124485761237881611e40565b15612447576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124b08686866001612b20565b505050505050565b6124c06130ae565b6124c982611e40565b612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90614928565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000014831061256c5760017f00000000000000000000000000000000000000000000000000000000000000148461255f9190613bb1565b6125699190613f57565b90505b60008390505b81811061267a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612666578093505050506126b6565b50808061267290614948565b915050612572565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ad906149e4565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61279b828260405180602001604052806000815250612b26565b5050565b60006127c08473ffffffffffffffffffffffffffffffffffffffff16613005565b1561291a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127e9611e38565b8786866040518563ffffffff1660e01b815260040161280b9493929190614a59565b6020604051808303816000875af192505050801561284757506040513d601f19601f820116820180604052508101906128449190614aba565b60015b6128ca573d8060008114612877576040519150601f19603f3d011682016040523d82523d6000602084013e61287c565b606091505b506000815114156128c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b990614425565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061291f565b600190505b949350505050565b6060600980546129369061399a565b80601f01602080910402602001604051908101604052809291908181526020018280546129629061399a565b80156129af5780601f10612984576101008083540402835291602001916129af565b820191906000526020600020905b81548152906001019060200180831161299257829003601f168201915b5050505050905090565b60606000821415612a01576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b15565b600082905060005b60008214612a33578080612a1c90613c77565b915050600a82612a2c9190614b16565b9150612a09565b60008167ffffffffffffffff811115612a4f57612a4e6135a7565b5b6040519080825280601f01601f191660200182016040528015612a815781602001600182028036833780820191505090505b5090505b60008514612b0e57600182612a9a9190613bb1565b9150600a85612aa99190614b47565b6030612ab59190613f57565b60f81b818381518110612acb57612aca613d98565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b079190614b16565b9450612a85565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9390614bea565b60405180910390fd5b612ba581611e40565b15612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614c56565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115612c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3f90614ce8565b60405180910390fd5b612c556000858386612b1a565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d529190614870565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d799190614870565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612fe857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f88600088848861279f565b612fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbe90614425565b60405180910390fd5b8180612fd290613c77565b9250508080612fe090613c77565b915050612f17565b5080600081905550612ffd6000878588612b20565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546130349061399a565b90600052602060002090601f016020900481019282613056576000855561309d565b82601f1061306f57805160ff191683800117855561309d565b8280016001018555821561309d579182015b8281111561309c578251825591602001919060010190613081565b5b5090506130aa91906130e8565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131015760008160009055506001016130e9565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61314e81613119565b811461315957600080fd5b50565b60008135905061316b81613145565b92915050565b6000602082840312156131875761318661310f565b5b60006131958482850161315c565b91505092915050565b60008115159050919050565b6131b38161319e565b82525050565b60006020820190506131ce60008301846131aa565b92915050565b6131dd8161319e565b81146131e857600080fd5b50565b6000813590506131fa816131d4565b92915050565b6000602082840312156132165761321561310f565b5b6000613224848285016131eb565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561326757808201518184015260208101905061324c565b83811115613276576000848401525b50505050565b6000601f19601f8301169050919050565b60006132988261322d565b6132a28185613238565b93506132b2818560208601613249565b6132bb8161327c565b840191505092915050565b600060208201905081810360008301526132e0818461328d565b905092915050565b6000819050919050565b6132fb816132e8565b811461330657600080fd5b50565b600081359050613318816132f2565b92915050565b6000602082840312156133345761333361310f565b5b600061334284828501613309565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133768261334b565b9050919050565b6133868161336b565b82525050565b60006020820190506133a1600083018461337d565b92915050565b6133b08161336b565b81146133bb57600080fd5b50565b6000813590506133cd816133a7565b92915050565b600080604083850312156133ea576133e961310f565b5b60006133f8858286016133be565b925050602061340985828601613309565b9150509250929050565b61341c816132e8565b82525050565b60006020820190506134376000830184613413565b92915050565b6000806000606084860312156134565761345561310f565b5b6000613464868287016133be565b9350506020613475868287016133be565b925050604061348686828701613309565b9150509250925092565b6000602082840312156134a6576134a561310f565b5b60006134b4848285016133be565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134f2816132e8565b82525050565b600061350483836134e9565b60208301905092915050565b6000602082019050919050565b6000613528826134bd565b61353281856134c8565b935061353d836134d9565b8060005b8381101561356e57815161355588826134f8565b975061356083613510565b925050600181019050613541565b5085935050505092915050565b60006020820190508181036000830152613595818461351d565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135df8261327c565b810181811067ffffffffffffffff821117156135fe576135fd6135a7565b5b80604052505050565b6000613611613105565b905061361d82826135d6565b919050565b600067ffffffffffffffff82111561363d5761363c6135a7565b5b6136468261327c565b9050602081019050919050565b82818337600083830152505050565b600061367561367084613622565b613607565b905082815260208101848484011115613691576136906135a2565b5b61369c848285613653565b509392505050565b600082601f8301126136b9576136b861359d565b5b81356136c9848260208601613662565b91505092915050565b6000602082840312156136e8576136e761310f565b5b600082013567ffffffffffffffff81111561370657613705613114565b5b613712848285016136a4565b91505092915050565b600080604083850312156137325761373161310f565b5b600061374085828601613309565b9250506020613751858286016133be565b9150509250929050565b600080604083850312156137725761377161310f565b5b6000613780858286016133be565b9250506020613791858286016131eb565b9150509250929050565b600067ffffffffffffffff8211156137b6576137b56135a7565b5b6137bf8261327c565b9050602081019050919050565b60006137df6137da8461379b565b613607565b9050828152602081018484840111156137fb576137fa6135a2565b5b613806848285613653565b509392505050565b600082601f8301126138235761382261359d565b5b81356138338482602086016137cc565b91505092915050565b600080600080608085870312156138565761385561310f565b5b6000613864878288016133be565b9450506020613875878288016133be565b935050604061388687828801613309565b925050606085013567ffffffffffffffff8111156138a7576138a6613114565b5b6138b38782880161380e565b91505092959194509250565b600080604083850312156138d6576138d561310f565b5b60006138e4858286016133be565b92505060206138f5858286016133be565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613935602083613238565b9150613940826138ff565b602082019050919050565b6000602082019050818103600083015261396481613928565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139b257607f821691505b602082108114156139c6576139c561396b565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613a28602d83613238565b9150613a33826139cc565b604082019050919050565b60006020820190508181036000830152613a5781613a1b565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613aba602283613238565b9150613ac582613a5e565b604082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613b4c603983613238565b9150613b5782613af0565b604082019050919050565b60006020820190508181036000830152613b7b81613b3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bbc826132e8565b9150613bc7836132e8565b925082821015613bda57613bd9613b82565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c41602283613238565b9150613c4c82613be5565b604082019050919050565b60006020820190508181036000830152613c7081613c34565b9050919050565b6000613c82826132e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cb557613cb4613b82565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d1c602e83613238565b9150613d2782613cc0565b604082019050919050565b60006020820190508181036000830152613d4b81613d0f565b9050919050565b600081905092915050565b50565b6000613d6d600083613d52565b9150613d7882613d5d565b600082019050919050565b6000613d8e82613d60565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e23602383613238565b9150613e2e82613dc7565b604082019050919050565b60006020820190508181036000830152613e5281613e16565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613eb5602b83613238565b9150613ec082613e59565b604082019050919050565b60006020820190508181036000830152613ee481613ea8565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613f21601b83613238565b9150613f2c82613eeb565b602082019050919050565b60006020820190508181036000830152613f5081613f14565b9050919050565b6000613f62826132e8565b9150613f6d836132e8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fa257613fa1613b82565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613fe3601683613238565b9150613fee82613fad565b602082019050919050565b6000602082019050818103600083015261401281613fd6565b9050919050565b7f46464d666572733a206f6f707320636f6e747261637420697320706175736564600082015250565b600061404f602083613238565b915061405a82614019565b602082019050919050565b6000602082019050818103600083015261407e81614042565b9050919050565b7f46464d666572733a206e65656420746f206d696e74206174206c65617374203160008201527f204e465400000000000000000000000000000000000000000000000000000000602082015250565b60006140e1602483613238565b91506140ec82614085565b604082019050919050565b60006020820190508181036000830152614110816140d4565b9050919050565b7f46464d666572733a206d6178206d696e7420616d6f756e74207065722074782060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b6000614173602883613238565b915061417e82614117565b604082019050919050565b600060208201905081810360008301526141a281614166565b9050919050565b7f46464d666572733a20576520536f6c646f757400000000000000000000000000600082015250565b60006141df601383613238565b91506141ea826141a9565b602082019050919050565b6000602082019050818103600083015261420e816141d2565b9050919050565b6000614220826132e8565b915061422b836132e8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561426457614263613b82565b5b828202905092915050565b7f46464d666572733a20497427732046726565204d696e74000000000000000000600082015250565b60006142a5601783613238565b91506142b08261426f565b602082019050919050565b600060208201905081810360008301526142d481614298565b9050919050565b7f46464d666572733a20696e73756666696369656e742066756e64730000000000600082015250565b6000614311601b83613238565b915061431c826142db565b602082019050919050565b6000602082019050818103600083015261434081614304565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061437d601a83613238565b915061438882614347565b602082019050919050565b600060208201905081810360008301526143ac81614370565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061440f603383613238565b915061441a826143b3565b604082019050919050565b6000602082019050818103600083015261443e81614402565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b60006144a1603083613238565b91506144ac82614445565b604082019050919050565b600060208201905081810360008301526144d081614494565b9050919050565b600081905092915050565b60006144ed8261322d565b6144f781856144d7565b9350614507818560208601613249565b80840191505092915050565b60008190508160005260206000209050919050565b600081546145358161399a565b61453f81866144d7565b9450600182166000811461455a576001811461456b5761459e565b60ff1983168652818601935061459e565b61457485614513565b60005b8381101561459657815481890152600182019150602081019050614577565b838801955050505b50505092915050565b60006145b382866144e2565b91506145bf82856144e2565b91506145cb8284614528565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614634602683613238565b915061463f826145d8565b604082019050919050565b6000602082019050818103600083015261466381614627565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006146c6603283613238565b91506146d18261466a565b604082019050919050565b600060208201905081810360008301526146f5816146b9565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614758602683613238565b9150614763826146fc565b604082019050919050565b600060208201905081810360008301526147878161474b565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006147ea602583613238565b91506147f58261478e565b604082019050919050565b60006020820190508181036000830152614819816147dd565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061484782614820565b915061485283614820565b92508282101561486557614864613b82565b5b828203905092915050565b600061487b82614820565b915061488683614820565b9250826fffffffffffffffffffffffffffffffff038211156148ab576148aa613b82565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614912602a83613238565b915061491d826148b6565b604082019050919050565b6000602082019050818103600083015261494181614905565b9050919050565b6000614953826132e8565b9150600082141561496757614966613b82565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006149ce602f83613238565b91506149d982614972565b604082019050919050565b600060208201905081810360008301526149fd816149c1565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a2b82614a04565b614a358185614a0f565b9350614a45818560208601613249565b614a4e8161327c565b840191505092915050565b6000608082019050614a6e600083018761337d565b614a7b602083018661337d565b614a886040830185613413565b8181036060830152614a9a8184614a20565b905095945050505050565b600081519050614ab481613145565b92915050565b600060208284031215614ad057614acf61310f565b5b6000614ade84828501614aa5565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b21826132e8565b9150614b2c836132e8565b925082614b3c57614b3b614ae7565b5b828204905092915050565b6000614b52826132e8565b9150614b5d836132e8565b925082614b6d57614b6c614ae7565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bd4602183613238565b9150614bdf82614b78565b604082019050919050565b60006020820190508181036000830152614c0381614bc7565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614c40601d83613238565b9150614c4b82614c0a565b602082019050919050565b60006020820190508181036000830152614c6f81614c33565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614cd2602283613238565b9150614cdd82614c76565b604082019050919050565b60006020820190508181036000830152614d0181614cc5565b905091905056fea2646970667358221220a5560a3356df385cc7868faba623052b835f084398e5e4feb94f5e2d6254b72064736f6c634300080c0033

Deployed Bytecode Sourcemap

46563:3033:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34210:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49355:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35936:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37461:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37024:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46705:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49017:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32770:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38311:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31648:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33402:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49435:158;;;:::i;:::-;;38516:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48121:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48929:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32937:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49119:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46832:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35759:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46637:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46780:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34636:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11794:103;;;;;;;;;;;;;:::i;:::-;;47802:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11143:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36091:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47141:594;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37729:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38736:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46663:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48475:430;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46744:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43067:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49223:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38066:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12052:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34210:370;34337:4;34382:25;34367:40;;;:11;:40;;;;:99;;;;34433:33;34418:48;;;:11;:48;;;;34367:99;:160;;;;34492:35;34477:50;;;:11;:50;;;;34367:160;:207;;;;34538:36;34562:11;34538:23;:36::i;:::-;34367:207;34353:221;;34210:370;;;:::o;49355:73::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49416:6:::1;49407;;:15;;;;;;;;;;;;;;;;;;49355:73:::0;:::o;35936:94::-;35990:13;36019:5;36012:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35936:94;:::o;37461:204::-;37529:7;37553:16;37561:7;37553;:16::i;:::-;37545:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;37635:15;:24;37651:7;37635:24;;;;;;;;;;;;;;;;;;;;;37628:31;;37461:204;;;:::o;37024:379::-;37093:13;37109:24;37125:7;37109:15;:24::i;:::-;37093:40;;37154:5;37148:11;;:2;:11;;;;37140:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;37239:5;37223:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;37248:37;37265:5;37272:12;:10;:12::i;:::-;37248:16;:37::i;:::-;37223:62;37207:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;37369:28;37378:2;37382:7;37391:5;37369:8;:28::i;:::-;37086:317;37024:379;;:::o;46705:34::-;;;;:::o;49017:94::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49095:10:::1;49083:9;:22;;;;49017:94:::0;:::o;32770:98::-;32823:7;32861:1;32846:12;;:16;;;;:::i;:::-;32839:23;;32770:98;:::o;38311:142::-;38419:28;38429:4;38435:2;38439:7;38419:9;:28::i;:::-;38311:142;;;:::o;31648:37::-;;;:::o;33402:744::-;33511:7;33546:16;33556:5;33546:9;:16::i;:::-;33538:5;:24;33530:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33608:22;33633:13;:11;:13::i;:::-;33608:38;;33653:19;33683:25;33733:9;33728:350;33752:14;33748:1;:18;33728:350;;;33782:31;33816:11;:14;33828:1;33816:14;;;;;;;;;;;33782:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33869:1;33843:28;;:9;:14;;;:28;;;33839:89;;33904:9;:14;;;33884:34;;33839:89;33961:5;33940:26;;:17;:26;;;33936:135;;;33998:5;33983:11;:20;33979:59;;;34025:1;34018:8;;;;;;;;;33979:59;34048:13;;;;;:::i;:::-;;;;33936:135;33773:305;33768:3;;;;;:::i;:::-;;;;33728:350;;;;34084:56;;;;;;;;;;:::i;:::-;;;;;;;;33402:744;;;;;:::o;49435:158::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49488:12:::1;49514:10;49506:24;;49538:21;49506:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49487:77;;;49579:7;49571:16;;;::::0;::::1;;49480:113;49435:158::o:0;38516:157::-;38628:39;38645:4;38651:2;38655:7;38628:39;;;;;;;;;;;;:16;:39::i;:::-;38516:157;;;:::o;48121:348::-;48196:16;48224:23;48250:17;48260:6;48250:9;:17::i;:::-;48224:43;;48274:25;48316:15;48302:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48274:58;;48344:9;48339:103;48359:15;48355:1;:19;48339:103;;;48404:30;48424:6;48432:1;48404:19;:30::i;:::-;48390:8;48399:1;48390:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;48376:3;;;;;:::i;:::-;;;;48339:103;;;;48455:8;48448:15;;;;48121:348;;;:::o;48929:80::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48995:8:::1;48988:4;:15;;;;48929:80:::0;:::o;32937:177::-;33004:7;33036:13;:11;:13::i;:::-;33028:5;:21;33020:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;33103:5;33096:12;;32937:177;;;:::o;49119:98::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49200:11:::1;49190:7;:21;;;;;;;;;;;;:::i;:::-;;49119:98:::0;:::o;46832:26::-;;;;;;;;;;;;;:::o;35759:118::-;35823:7;35846:20;35858:7;35846:11;:20::i;:::-;:25;;;35839:32;;35759:118;;;:::o;46637:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46780:27::-;;;;:::o;34636:211::-;34700:7;34741:1;34724:19;;:5;:19;;;;34716:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;34813:12;:19;34826:5;34813:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;34805:36;;34798:43;;34636:211;;;:::o;11794:103::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11859:30:::1;11886:1;11859:18;:30::i;:::-;11794:103::o:0;47802:305::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47904:1:::1;47890:11;:15;47882:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47944:14;47961:13;:11;:13::i;:::-;47944:30;;48013:9;;47998:11;47989:6;:20;;;;:::i;:::-;:33;;47981:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48060:35;48070:11;48083;48060:9;:35::i;:::-;47875:232;47802:305:::0;;:::o;11143:87::-;11189:7;11216:6;;;;;;;;;;;11209:13;;11143:87;:::o;36091:98::-;36147:13;36176:7;36169:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36091:98;:::o;47141:594::-;47202:6;;;;;;;;;;;47201:7;47193:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;47252:14;47269:13;:11;:13::i;:::-;47252:30;;47306:1;47297:6;:10;47289:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;47373:7;;47363:6;:17;;47355:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;47459:9;;47449:6;47440;:15;;;;:::i;:::-;:28;;47432:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;47512:3;47503:6;:12;47499:183;;;47551:6;47547:1;:10;;;;:::i;:::-;47534:9;:23;;47526:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;47499:183;;;47636:6;47629:4;;:13;;;;:::i;:::-;47616:9;:26;;47608:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;47499:183;47692:31;47702:12;:10;:12::i;:::-;47716:6;47692:9;:31::i;:::-;47186:549;47141:594;:::o;37729:274::-;37832:12;:10;:12::i;:::-;37820:24;;:8;:24;;;;37812:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;37929:8;37884:18;:32;37903:12;:10;:12::i;:::-;37884:32;;;;;;;;;;;;;;;:42;37917:8;37884:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;37978:8;37949:48;;37964:12;:10;:12::i;:::-;37949:48;;;37988:8;37949:48;;;;;;:::i;:::-;;;;;;;;37729:274;;:::o;38736:311::-;38873:28;38883:4;38889:2;38893:7;38873:9;:28::i;:::-;38924:48;38947:4;38953:2;38957:7;38966:5;38924:22;:48::i;:::-;38908:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;38736:311;;;;:::o;46663:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48475:430::-;48573:13;48614:16;48622:7;48614;:16::i;:::-;48598:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;48711:28;48742:10;:8;:10::i;:::-;48711:41;;48797:1;48772:14;48766:28;:32;:133;;;;;;;;;;;;;;;;;48834:14;48850:18;:7;:16;:18::i;:::-;48870:13;48817:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48766:133;48759:140;;;48475:430;;;:::o;46744:31::-;;;;:::o;43067:43::-;;;;:::o;49223:122::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49322:17:::1;49306:13;:33;;;;;;;;;;;;:::i;:::-;;49223:122:::0;:::o;38066:186::-;38188:4;38211:18;:25;38230:5;38211:25;;;;;;;;;;;;;;;:35;38237:8;38211:35;;;;;;;;;;;;;;;;;;;;;;;;;38204:42;;38066:186;;;;:::o;12052:201::-;11374:12;:10;:12::i;:::-;11363:23;;:7;:5;:7::i;:::-;:23;;;11355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12161:1:::1;12141:22;;:8;:22;;;;12133:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12217:28;12236:8;12217:18;:28::i;:::-;12052:201:::0;:::o;23927:157::-;24012:4;24051:25;24036:40;;;:11;:40;;;;24029:47;;23927:157;;;:::o;9867:98::-;9920:7;9947:10;9940:17;;9867:98;:::o;39286:105::-;39343:4;39373:12;;39363:7;:22;39356:29;;39286:105;;;:::o;42889:172::-;43013:2;42986:15;:24;43002:7;42986:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43047:7;43043:2;43027:28;;43036:5;43027:28;;;;;;;;;;;;42889:172;;;:::o;41254:1529::-;41351:35;41389:20;41401:7;41389:11;:20::i;:::-;41351:58;;41418:22;41460:13;:18;;;41444:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;41513:12;:10;:12::i;:::-;41489:36;;:20;41501:7;41489:11;:20::i;:::-;:36;;;41444:81;:142;;;;41536:50;41553:13;:18;;;41573:12;:10;:12::i;:::-;41536:16;:50::i;:::-;41444:142;41418:169;;41612:17;41596:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;41744:4;41722:26;;:13;:18;;;:26;;;41706:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;41833:1;41819:16;;:2;:16;;;;41811:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;41886:43;41908:4;41914:2;41918:7;41927:1;41886:21;:43::i;:::-;41986:49;42003:1;42007:7;42016:13;:18;;;41986:8;:49::i;:::-;42074:1;42044:12;:18;42057:4;42044:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42110:1;42082:12;:16;42095:2;42082:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42141:43;;;;;;;;42156:2;42141:43;;;;;;42167:15;42141:43;;;;;42118:11;:20;42130:7;42118:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42412:19;42444:1;42434:7;:11;;;;:::i;:::-;42412:33;;42497:1;42456:43;;:11;:24;42468:11;42456:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42452:236;;;42514:20;42522:11;42514:7;:20::i;:::-;42510:171;;;42574:97;;;;;;;;42601:13;:18;;;42574:97;;;;;;42632:13;:28;;;42574:97;;;;;42547:11;:24;42559:11;42547:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42510:171;42452:236;42720:7;42716:2;42701:27;;42710:4;42701:27;;;;;;;;;;;;42735:42;42756:4;42762:2;42766:7;42775:1;42735:20;:42::i;:::-;41344:1439;;;41254:1529;;;:::o;35099:606::-;35175:21;;:::i;:::-;35216:16;35224:7;35216;:16::i;:::-;35208:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;35288:26;35336:12;35325:7;:23;35321:93;;35405:1;35390:12;35380:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;35359:47;;35321:93;35427:12;35442:7;35427:22;;35422:212;35459:18;35451:4;:26;35422:212;;35496:31;35530:11;:17;35542:4;35530:17;;;;;;;;;;;35496:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35586:1;35560:28;;:9;:14;;;:28;;;35556:71;;35608:9;35601:16;;;;;;;35556:71;35487:147;35479:6;;;;;:::i;:::-;;;;35422:212;;;;35642:57;;;;;;;;;;:::i;:::-;;;;;;;;35099:606;;;;:::o;12413:191::-;12487:16;12506:6;;;;;;;;;;;12487:25;;12532:8;12523:6;;:17;;;;;;;;;;;;;;;;;;12587:8;12556:40;;12577:8;12556:40;;;;;;;;;;;;12476:128;12413:191;:::o;39397:98::-;39462:27;39472:2;39476:8;39462:27;;;;;;;;;;;;:9;:27::i;:::-;39397:98;;:::o;44600:690::-;44737:4;44754:15;:2;:13;;;:15::i;:::-;44750:535;;;44809:2;44793:36;;;44830:12;:10;:12::i;:::-;44844:4;44850:7;44859:5;44793:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44780:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45041:1;45024:6;:13;:18;45020:215;;;45057:61;;;;;;;;;;:::i;:::-;;;;;;;;45020:215;45203:6;45197:13;45188:6;45184:2;45180:15;45173:38;44780:464;44925:45;;;44915:55;;;:6;:55;;;;44908:62;;;;;44750:535;45273:4;45266:11;;44600:690;;;;;;;:::o;47020:102::-;47080:13;47109:7;47102:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47020:102;:::o;7429:723::-;7485:13;7715:1;7706:5;:10;7702:53;;;7733:10;;;;;;;;;;;;;;;;;;;;;7702:53;7765:12;7780:5;7765:20;;7796:14;7821:78;7836:1;7828:4;:9;7821:78;;7854:8;;;;;:::i;:::-;;;;7885:2;7877:10;;;;;:::i;:::-;;;7821:78;;;7909:19;7941:6;7931:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7909:39;;7959:154;7975:1;7966:5;:10;7959:154;;8003:1;7993:11;;;;;:::i;:::-;;;8070:2;8062:5;:10;;;;:::i;:::-;8049:2;:24;;;;:::i;:::-;8036:39;;8019:6;8026;8019:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8099:2;8090:11;;;;;:::i;:::-;;;7959:154;;;8137:6;8123:21;;;;;7429:723;;;;:::o;45752:141::-;;;;;:::o;46279:140::-;;;;;:::o;39750:1272::-;39855:20;39878:12;;39855:35;;39919:1;39905:16;;:2;:16;;;;39897:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;40096:21;40104:12;40096:7;:21::i;:::-;40095:22;40087:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40178:12;40166:8;:24;;40158:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;40238:61;40268:1;40272:2;40276:12;40290:8;40238:21;:61::i;:::-;40308:30;40341:12;:16;40354:2;40341:16;;;;;;;;;;;;;;;40308:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40383:119;;;;;;;;40433:8;40403:11;:19;;;:39;;;;:::i;:::-;40383:119;;;;;;40486:8;40451:11;:24;;;:44;;;;:::i;:::-;40383:119;;;;;40364:12;:16;40377:2;40364:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40537:43;;;;;;;;40552:2;40537:43;;;;;;40563:15;40537:43;;;;;40509:11;:25;40521:12;40509:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40589:20;40612:12;40589:35;;40638:9;40633:281;40657:8;40653:1;:12;40633:281;;;40711:12;40707:2;40686:38;;40703:1;40686:38;;;;;;;;;;;;40751:59;40782:1;40786:2;40790:12;40804:5;40751:22;:59::i;:::-;40733:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;40892:14;;;;;:::i;:::-;;;;40667:3;;;;;:::i;:::-;;;;40633:281;;;;40937:12;40922;:27;;;;40956:60;40985:1;40989:2;40993:12;41007:8;40956:20;:60::i;:::-;39848:1174;;;39750:1272;;;:::o;13844:326::-;13904:4;14161:1;14139:7;:19;;;:23;14132:30;;13844:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:329::-;6564:6;6613:2;6601:9;6592:7;6588:23;6584:32;6581:119;;;6619:79;;:::i;:::-;6581:119;6739:1;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6710:117;6505:329;;;;:::o;6840:114::-;6907:6;6941:5;6935:12;6925:22;;6840:114;;;:::o;6960:184::-;7059:11;7093:6;7088:3;7081:19;7133:4;7128:3;7124:14;7109:29;;6960:184;;;;:::o;7150:132::-;7217:4;7240:3;7232:11;;7270:4;7265:3;7261:14;7253:22;;7150:132;;;:::o;7288:108::-;7365:24;7383:5;7365:24;:::i;:::-;7360:3;7353:37;7288:108;;:::o;7402:179::-;7471:10;7492:46;7534:3;7526:6;7492:46;:::i;:::-;7570:4;7565:3;7561:14;7547:28;;7402:179;;;;:::o;7587:113::-;7657:4;7689;7684:3;7680:14;7672:22;;7587:113;;;:::o;7736:732::-;7855:3;7884:54;7932:5;7884:54;:::i;:::-;7954:86;8033:6;8028:3;7954:86;:::i;:::-;7947:93;;8064:56;8114:5;8064:56;:::i;:::-;8143:7;8174:1;8159:284;8184:6;8181:1;8178:13;8159:284;;;8260:6;8254:13;8287:63;8346:3;8331:13;8287:63;:::i;:::-;8280:70;;8373:60;8426:6;8373:60;:::i;:::-;8363:70;;8219:224;8206:1;8203;8199:9;8194:14;;8159:284;;;8163:14;8459:3;8452:10;;7860:608;;;7736:732;;;;:::o;8474:373::-;8617:4;8655:2;8644:9;8640:18;8632:26;;8704:9;8698:4;8694:20;8690:1;8679:9;8675:17;8668:47;8732:108;8835:4;8826:6;8732:108;:::i;:::-;8724:116;;8474:373;;;;:::o;8853:117::-;8962:1;8959;8952:12;8976:117;9085:1;9082;9075:12;9099:180;9147:77;9144:1;9137:88;9244:4;9241:1;9234:15;9268:4;9265:1;9258:15;9285:281;9368:27;9390:4;9368:27;:::i;:::-;9360:6;9356:40;9498:6;9486:10;9483:22;9462:18;9450:10;9447:34;9444:62;9441:88;;;9509:18;;:::i;:::-;9441:88;9549:10;9545:2;9538:22;9328:238;9285:281;;:::o;9572:129::-;9606:6;9633:20;;:::i;:::-;9623:30;;9662:33;9690:4;9682:6;9662:33;:::i;:::-;9572:129;;;:::o;9707:308::-;9769:4;9859:18;9851:6;9848:30;9845:56;;;9881:18;;:::i;:::-;9845:56;9919:29;9941:6;9919:29;:::i;:::-;9911:37;;10003:4;9997;9993:15;9985:23;;9707:308;;;:::o;10021:154::-;10105:6;10100:3;10095;10082:30;10167:1;10158:6;10153:3;10149:16;10142:27;10021:154;;;:::o;10181:412::-;10259:5;10284:66;10300:49;10342:6;10300:49;:::i;:::-;10284:66;:::i;:::-;10275:75;;10373:6;10366:5;10359:21;10411:4;10404:5;10400:16;10449:3;10440:6;10435:3;10431:16;10428:25;10425:112;;;10456:79;;:::i;:::-;10425:112;10546:41;10580:6;10575:3;10570;10546:41;:::i;:::-;10265:328;10181:412;;;;;:::o;10613:340::-;10669:5;10718:3;10711:4;10703:6;10699:17;10695:27;10685:122;;10726:79;;:::i;:::-;10685:122;10843:6;10830:20;10868:79;10943:3;10935:6;10928:4;10920:6;10916:17;10868:79;:::i;:::-;10859:88;;10675:278;10613:340;;;;:::o;10959:509::-;11028:6;11077:2;11065:9;11056:7;11052:23;11048:32;11045:119;;;11083:79;;:::i;:::-;11045:119;11231:1;11220:9;11216:17;11203:31;11261:18;11253:6;11250:30;11247:117;;;11283:79;;:::i;:::-;11247:117;11388:63;11443:7;11434:6;11423:9;11419:22;11388:63;:::i;:::-;11378:73;;11174:287;10959:509;;;;:::o;11474:474::-;11542:6;11550;11599:2;11587:9;11578:7;11574:23;11570:32;11567:119;;;11605:79;;:::i;:::-;11567:119;11725:1;11750:53;11795:7;11786:6;11775:9;11771:22;11750:53;:::i;:::-;11740:63;;11696:117;11852:2;11878:53;11923:7;11914:6;11903:9;11899:22;11878:53;:::i;:::-;11868:63;;11823:118;11474:474;;;;;:::o;11954:468::-;12019:6;12027;12076:2;12064:9;12055:7;12051:23;12047:32;12044:119;;;12082:79;;:::i;:::-;12044:119;12202:1;12227:53;12272:7;12263:6;12252:9;12248:22;12227:53;:::i;:::-;12217:63;;12173:117;12329:2;12355:50;12397:7;12388:6;12377:9;12373:22;12355:50;:::i;:::-;12345:60;;12300:115;11954:468;;;;;:::o;12428:307::-;12489:4;12579:18;12571:6;12568:30;12565:56;;;12601:18;;:::i;:::-;12565:56;12639:29;12661:6;12639:29;:::i;:::-;12631:37;;12723:4;12717;12713:15;12705:23;;12428:307;;;:::o;12741:410::-;12818:5;12843:65;12859:48;12900:6;12859:48;:::i;:::-;12843:65;:::i;:::-;12834:74;;12931:6;12924:5;12917:21;12969:4;12962:5;12958:16;13007:3;12998:6;12993:3;12989:16;12986:25;12983:112;;;13014:79;;:::i;:::-;12983:112;13104:41;13138:6;13133:3;13128;13104:41;:::i;:::-;12824:327;12741:410;;;;;:::o;13170:338::-;13225:5;13274:3;13267:4;13259:6;13255:17;13251:27;13241:122;;13282:79;;:::i;:::-;13241:122;13399:6;13386:20;13424:78;13498:3;13490:6;13483:4;13475:6;13471:17;13424:78;:::i;:::-;13415:87;;13231:277;13170:338;;;;:::o;13514:943::-;13609:6;13617;13625;13633;13682:3;13670:9;13661:7;13657:23;13653:33;13650:120;;;13689:79;;:::i;:::-;13650:120;13809:1;13834:53;13879:7;13870:6;13859:9;13855:22;13834:53;:::i;:::-;13824:63;;13780:117;13936:2;13962:53;14007:7;13998:6;13987:9;13983:22;13962:53;:::i;:::-;13952:63;;13907:118;14064:2;14090:53;14135:7;14126:6;14115:9;14111:22;14090:53;:::i;:::-;14080:63;;14035:118;14220:2;14209:9;14205:18;14192:32;14251:18;14243:6;14240:30;14237:117;;;14273:79;;:::i;:::-;14237:117;14378:62;14432:7;14423:6;14412:9;14408:22;14378:62;:::i;:::-;14368:72;;14163:287;13514:943;;;;;;;:::o;14463:474::-;14531:6;14539;14588:2;14576:9;14567:7;14563:23;14559:32;14556:119;;;14594:79;;:::i;:::-;14556:119;14714:1;14739:53;14784:7;14775:6;14764:9;14760:22;14739:53;:::i;:::-;14729:63;;14685:117;14841:2;14867:53;14912:7;14903:6;14892:9;14888:22;14867:53;:::i;:::-;14857:63;;14812:118;14463:474;;;;;:::o;14943:182::-;15083:34;15079:1;15071:6;15067:14;15060:58;14943:182;:::o;15131:366::-;15273:3;15294:67;15358:2;15353:3;15294:67;:::i;:::-;15287:74;;15370:93;15459:3;15370:93;:::i;:::-;15488:2;15483:3;15479:12;15472:19;;15131:366;;;:::o;15503:419::-;15669:4;15707:2;15696:9;15692:18;15684:26;;15756:9;15750:4;15746:20;15742:1;15731:9;15727:17;15720:47;15784:131;15910:4;15784:131;:::i;:::-;15776:139;;15503:419;;;:::o;15928:180::-;15976:77;15973:1;15966:88;16073:4;16070:1;16063:15;16097:4;16094:1;16087:15;16114:320;16158:6;16195:1;16189:4;16185:12;16175:22;;16242:1;16236:4;16232:12;16263:18;16253:81;;16319:4;16311:6;16307:17;16297:27;;16253:81;16381:2;16373:6;16370:14;16350:18;16347:38;16344:84;;;16400:18;;:::i;:::-;16344:84;16165:269;16114:320;;;:::o;16440:232::-;16580:34;16576:1;16568:6;16564:14;16557:58;16649:15;16644:2;16636:6;16632:15;16625:40;16440:232;:::o;16678:366::-;16820:3;16841:67;16905:2;16900:3;16841:67;:::i;:::-;16834:74;;16917:93;17006:3;16917:93;:::i;:::-;17035:2;17030:3;17026:12;17019:19;;16678:366;;;:::o;17050:419::-;17216:4;17254:2;17243:9;17239:18;17231:26;;17303:9;17297:4;17293:20;17289:1;17278:9;17274:17;17267:47;17331:131;17457:4;17331:131;:::i;:::-;17323:139;;17050:419;;;:::o;17475:221::-;17615:34;17611:1;17603:6;17599:14;17592:58;17684:4;17679:2;17671:6;17667:15;17660:29;17475:221;:::o;17702:366::-;17844:3;17865:67;17929:2;17924:3;17865:67;:::i;:::-;17858:74;;17941:93;18030:3;17941:93;:::i;:::-;18059:2;18054:3;18050:12;18043:19;;17702:366;;;:::o;18074:419::-;18240:4;18278:2;18267:9;18263:18;18255:26;;18327:9;18321:4;18317:20;18313:1;18302:9;18298:17;18291:47;18355:131;18481:4;18355:131;:::i;:::-;18347:139;;18074:419;;;:::o;18499:244::-;18639:34;18635:1;18627:6;18623:14;18616:58;18708:27;18703:2;18695:6;18691:15;18684:52;18499:244;:::o;18749:366::-;18891:3;18912:67;18976:2;18971:3;18912:67;:::i;:::-;18905:74;;18988:93;19077:3;18988:93;:::i;:::-;19106:2;19101:3;19097:12;19090:19;;18749:366;;;:::o;19121:419::-;19287:4;19325:2;19314:9;19310:18;19302:26;;19374:9;19368:4;19364:20;19360:1;19349:9;19345:17;19338:47;19402:131;19528:4;19402:131;:::i;:::-;19394:139;;19121:419;;;:::o;19546:180::-;19594:77;19591:1;19584:88;19691:4;19688:1;19681:15;19715:4;19712:1;19705:15;19732:191;19772:4;19792:20;19810:1;19792:20;:::i;:::-;19787:25;;19826:20;19844:1;19826:20;:::i;:::-;19821:25;;19865:1;19862;19859:8;19856:34;;;19870:18;;:::i;:::-;19856:34;19915:1;19912;19908:9;19900:17;;19732:191;;;;:::o;19929:221::-;20069:34;20065:1;20057:6;20053:14;20046:58;20138:4;20133:2;20125:6;20121:15;20114:29;19929:221;:::o;20156:366::-;20298:3;20319:67;20383:2;20378:3;20319:67;:::i;:::-;20312:74;;20395:93;20484:3;20395:93;:::i;:::-;20513:2;20508:3;20504:12;20497:19;;20156:366;;;:::o;20528:419::-;20694:4;20732:2;20721:9;20717:18;20709:26;;20781:9;20775:4;20771:20;20767:1;20756:9;20752:17;20745:47;20809:131;20935:4;20809:131;:::i;:::-;20801:139;;20528:419;;;:::o;20953:233::-;20992:3;21015:24;21033:5;21015:24;:::i;:::-;21006:33;;21061:66;21054:5;21051:77;21048:103;;;21131:18;;:::i;:::-;21048:103;21178:1;21171:5;21167:13;21160:20;;20953:233;;;:::o;21192:::-;21332:34;21328:1;21320:6;21316:14;21309:58;21401:16;21396:2;21388:6;21384:15;21377:41;21192:233;:::o;21431:366::-;21573:3;21594:67;21658:2;21653:3;21594:67;:::i;:::-;21587:74;;21670:93;21759:3;21670:93;:::i;:::-;21788:2;21783:3;21779:12;21772:19;;21431:366;;;:::o;21803:419::-;21969:4;22007:2;21996:9;21992:18;21984:26;;22056:9;22050:4;22046:20;22042:1;22031:9;22027:17;22020:47;22084:131;22210:4;22084:131;:::i;:::-;22076:139;;21803:419;;;:::o;22228:147::-;22329:11;22366:3;22351:18;;22228:147;;;;:::o;22381:114::-;;:::o;22501:398::-;22660:3;22681:83;22762:1;22757:3;22681:83;:::i;:::-;22674:90;;22773:93;22862:3;22773:93;:::i;:::-;22891:1;22886:3;22882:11;22875:18;;22501:398;;;:::o;22905:379::-;23089:3;23111:147;23254:3;23111:147;:::i;:::-;23104:154;;23275:3;23268:10;;22905:379;;;:::o;23290:180::-;23338:77;23335:1;23328:88;23435:4;23432:1;23425:15;23459:4;23456:1;23449:15;23476:222;23616:34;23612:1;23604:6;23600:14;23593:58;23685:5;23680:2;23672:6;23668:15;23661:30;23476:222;:::o;23704:366::-;23846:3;23867:67;23931:2;23926:3;23867:67;:::i;:::-;23860:74;;23943:93;24032:3;23943:93;:::i;:::-;24061:2;24056:3;24052:12;24045:19;;23704:366;;;:::o;24076:419::-;24242:4;24280:2;24269:9;24265:18;24257:26;;24329:9;24323:4;24319:20;24315:1;24304:9;24300:17;24293:47;24357:131;24483:4;24357:131;:::i;:::-;24349:139;;24076:419;;;:::o;24501:230::-;24641:34;24637:1;24629:6;24625:14;24618:58;24710:13;24705:2;24697:6;24693:15;24686:38;24501:230;:::o;24737:366::-;24879:3;24900:67;24964:2;24959:3;24900:67;:::i;:::-;24893:74;;24976:93;25065:3;24976:93;:::i;:::-;25094:2;25089:3;25085:12;25078:19;;24737:366;;;:::o;25109:419::-;25275:4;25313:2;25302:9;25298:18;25290:26;;25362:9;25356:4;25352:20;25348:1;25337:9;25333:17;25326:47;25390:131;25516:4;25390:131;:::i;:::-;25382:139;;25109:419;;;:::o;25534:177::-;25674:29;25670:1;25662:6;25658:14;25651:53;25534:177;:::o;25717:366::-;25859:3;25880:67;25944:2;25939:3;25880:67;:::i;:::-;25873:74;;25956:93;26045:3;25956:93;:::i;:::-;26074:2;26069:3;26065:12;26058:19;;25717:366;;;:::o;26089:419::-;26255:4;26293:2;26282:9;26278:18;26270:26;;26342:9;26336:4;26332:20;26328:1;26317:9;26313:17;26306:47;26370:131;26496:4;26370:131;:::i;:::-;26362:139;;26089:419;;;:::o;26514:305::-;26554:3;26573:20;26591:1;26573:20;:::i;:::-;26568:25;;26607:20;26625:1;26607:20;:::i;:::-;26602:25;;26761:1;26693:66;26689:74;26686:1;26683:81;26680:107;;;26767:18;;:::i;:::-;26680:107;26811:1;26808;26804:9;26797:16;;26514:305;;;;:::o;26825:172::-;26965:24;26961:1;26953:6;26949:14;26942:48;26825:172;:::o;27003:366::-;27145:3;27166:67;27230:2;27225:3;27166:67;:::i;:::-;27159:74;;27242:93;27331:3;27242:93;:::i;:::-;27360:2;27355:3;27351:12;27344:19;;27003:366;;;:::o;27375:419::-;27541:4;27579:2;27568:9;27564:18;27556:26;;27628:9;27622:4;27618:20;27614:1;27603:9;27599:17;27592:47;27656:131;27782:4;27656:131;:::i;:::-;27648:139;;27375:419;;;:::o;27800:182::-;27940:34;27936:1;27928:6;27924:14;27917:58;27800:182;:::o;27988:366::-;28130:3;28151:67;28215:2;28210:3;28151:67;:::i;:::-;28144:74;;28227:93;28316:3;28227:93;:::i;:::-;28345:2;28340:3;28336:12;28329:19;;27988:366;;;:::o;28360:419::-;28526:4;28564:2;28553:9;28549:18;28541:26;;28613:9;28607:4;28603:20;28599:1;28588:9;28584:17;28577:47;28641:131;28767:4;28641:131;:::i;:::-;28633:139;;28360:419;;;:::o;28785:223::-;28925:34;28921:1;28913:6;28909:14;28902:58;28994:6;28989:2;28981:6;28977:15;28970:31;28785:223;:::o;29014:366::-;29156:3;29177:67;29241:2;29236:3;29177:67;:::i;:::-;29170:74;;29253:93;29342:3;29253:93;:::i;:::-;29371:2;29366:3;29362:12;29355:19;;29014:366;;;:::o;29386:419::-;29552:4;29590:2;29579:9;29575:18;29567:26;;29639:9;29633:4;29629:20;29625:1;29614:9;29610:17;29603:47;29667:131;29793:4;29667:131;:::i;:::-;29659:139;;29386:419;;;:::o;29811:227::-;29951:34;29947:1;29939:6;29935:14;29928:58;30020:10;30015:2;30007:6;30003:15;29996:35;29811:227;:::o;30044:366::-;30186:3;30207:67;30271:2;30266:3;30207:67;:::i;:::-;30200:74;;30283:93;30372:3;30283:93;:::i;:::-;30401:2;30396:3;30392:12;30385:19;;30044:366;;;:::o;30416:419::-;30582:4;30620:2;30609:9;30605:18;30597:26;;30669:9;30663:4;30659:20;30655:1;30644:9;30640:17;30633:47;30697:131;30823:4;30697:131;:::i;:::-;30689:139;;30416:419;;;:::o;30841:169::-;30981:21;30977:1;30969:6;30965:14;30958:45;30841:169;:::o;31016:366::-;31158:3;31179:67;31243:2;31238:3;31179:67;:::i;:::-;31172:74;;31255:93;31344:3;31255:93;:::i;:::-;31373:2;31368:3;31364:12;31357:19;;31016:366;;;:::o;31388:419::-;31554:4;31592:2;31581:9;31577:18;31569:26;;31641:9;31635:4;31631:20;31627:1;31616:9;31612:17;31605:47;31669:131;31795:4;31669:131;:::i;:::-;31661:139;;31388:419;;;:::o;31813:348::-;31853:7;31876:20;31894:1;31876:20;:::i;:::-;31871:25;;31910:20;31928:1;31910:20;:::i;:::-;31905:25;;32098:1;32030:66;32026:74;32023:1;32020:81;32015:1;32008:9;32001:17;31997:105;31994:131;;;32105:18;;:::i;:::-;31994:131;32153:1;32150;32146:9;32135:20;;31813:348;;;;:::o;32167:173::-;32307:25;32303:1;32295:6;32291:14;32284:49;32167:173;:::o;32346:366::-;32488:3;32509:67;32573:2;32568:3;32509:67;:::i;:::-;32502:74;;32585:93;32674:3;32585:93;:::i;:::-;32703:2;32698:3;32694:12;32687:19;;32346:366;;;:::o;32718:419::-;32884:4;32922:2;32911:9;32907:18;32899:26;;32971:9;32965:4;32961:20;32957:1;32946:9;32942:17;32935:47;32999:131;33125:4;32999:131;:::i;:::-;32991:139;;32718:419;;;:::o;33143:177::-;33283:29;33279:1;33271:6;33267:14;33260:53;33143:177;:::o;33326:366::-;33468:3;33489:67;33553:2;33548:3;33489:67;:::i;:::-;33482:74;;33565:93;33654:3;33565:93;:::i;:::-;33683:2;33678:3;33674:12;33667:19;;33326:366;;;:::o;33698:419::-;33864:4;33902:2;33891:9;33887:18;33879:26;;33951:9;33945:4;33941:20;33937:1;33926:9;33922:17;33915:47;33979:131;34105:4;33979:131;:::i;:::-;33971:139;;33698:419;;;:::o;34123:176::-;34263:28;34259:1;34251:6;34247:14;34240:52;34123:176;:::o;34305:366::-;34447:3;34468:67;34532:2;34527:3;34468:67;:::i;:::-;34461:74;;34544:93;34633:3;34544:93;:::i;:::-;34662:2;34657:3;34653:12;34646:19;;34305:366;;;:::o;34677:419::-;34843:4;34881:2;34870:9;34866:18;34858:26;;34930:9;34924:4;34920:20;34916:1;34905:9;34901:17;34894:47;34958:131;35084:4;34958:131;:::i;:::-;34950:139;;34677:419;;;:::o;35102:238::-;35242:34;35238:1;35230:6;35226:14;35219:58;35311:21;35306:2;35298:6;35294:15;35287:46;35102:238;:::o;35346:366::-;35488:3;35509:67;35573:2;35568:3;35509:67;:::i;:::-;35502:74;;35585:93;35674:3;35585:93;:::i;:::-;35703:2;35698:3;35694:12;35687:19;;35346:366;;;:::o;35718:419::-;35884:4;35922:2;35911:9;35907:18;35899:26;;35971:9;35965:4;35961:20;35957:1;35946:9;35942:17;35935:47;35999:131;36125:4;35999:131;:::i;:::-;35991:139;;35718:419;;;:::o;36143:235::-;36283:34;36279:1;36271:6;36267:14;36260:58;36352:18;36347:2;36339:6;36335:15;36328:43;36143:235;:::o;36384:366::-;36526:3;36547:67;36611:2;36606:3;36547:67;:::i;:::-;36540:74;;36623:93;36712:3;36623:93;:::i;:::-;36741:2;36736:3;36732:12;36725:19;;36384:366;;;:::o;36756:419::-;36922:4;36960:2;36949:9;36945:18;36937:26;;37009:9;37003:4;36999:20;36995:1;36984:9;36980:17;36973:47;37037:131;37163:4;37037:131;:::i;:::-;37029:139;;36756:419;;;:::o;37181:148::-;37283:11;37320:3;37305:18;;37181:148;;;;:::o;37335:377::-;37441:3;37469:39;37502:5;37469:39;:::i;:::-;37524:89;37606:6;37601:3;37524:89;:::i;:::-;37517:96;;37622:52;37667:6;37662:3;37655:4;37648:5;37644:16;37622:52;:::i;:::-;37699:6;37694:3;37690:16;37683:23;;37445:267;37335:377;;;;:::o;37718:141::-;37767:4;37790:3;37782:11;;37813:3;37810:1;37803:14;37847:4;37844:1;37834:18;37826:26;;37718:141;;;:::o;37889:845::-;37992:3;38029:5;38023:12;38058:36;38084:9;38058:36;:::i;:::-;38110:89;38192:6;38187:3;38110:89;:::i;:::-;38103:96;;38230:1;38219:9;38215:17;38246:1;38241:137;;;;38392:1;38387:341;;;;38208:520;;38241:137;38325:4;38321:9;38310;38306:25;38301:3;38294:38;38361:6;38356:3;38352:16;38345:23;;38241:137;;38387:341;38454:38;38486:5;38454:38;:::i;:::-;38514:1;38528:154;38542:6;38539:1;38536:13;38528:154;;;38616:7;38610:14;38606:1;38601:3;38597:11;38590:35;38666:1;38657:7;38653:15;38642:26;;38564:4;38561:1;38557:12;38552:17;;38528:154;;;38711:6;38706:3;38702:16;38695:23;;38394:334;;38208:520;;37996:738;;37889:845;;;;:::o;38740:589::-;38965:3;38987:95;39078:3;39069:6;38987:95;:::i;:::-;38980:102;;39099:95;39190:3;39181:6;39099:95;:::i;:::-;39092:102;;39211:92;39299:3;39290:6;39211:92;:::i;:::-;39204:99;;39320:3;39313:10;;38740:589;;;;;;:::o;39335:225::-;39475:34;39471:1;39463:6;39459:14;39452:58;39544:8;39539:2;39531:6;39527:15;39520:33;39335:225;:::o;39566:366::-;39708:3;39729:67;39793:2;39788:3;39729:67;:::i;:::-;39722:74;;39805:93;39894:3;39805:93;:::i;:::-;39923:2;39918:3;39914:12;39907:19;;39566:366;;;:::o;39938:419::-;40104:4;40142:2;40131:9;40127:18;40119:26;;40191:9;40185:4;40181:20;40177:1;40166:9;40162:17;40155:47;40219:131;40345:4;40219:131;:::i;:::-;40211:139;;39938:419;;;:::o;40363:237::-;40503:34;40499:1;40491:6;40487:14;40480:58;40572:20;40567:2;40559:6;40555:15;40548:45;40363:237;:::o;40606:366::-;40748:3;40769:67;40833:2;40828:3;40769:67;:::i;:::-;40762:74;;40845:93;40934:3;40845:93;:::i;:::-;40963:2;40958:3;40954:12;40947:19;;40606:366;;;:::o;40978:419::-;41144:4;41182:2;41171:9;41167:18;41159:26;;41231:9;41225:4;41221:20;41217:1;41206:9;41202:17;41195:47;41259:131;41385:4;41259:131;:::i;:::-;41251:139;;40978:419;;;:::o;41403:225::-;41543:34;41539:1;41531:6;41527:14;41520:58;41612:8;41607:2;41599:6;41595:15;41588:33;41403:225;:::o;41634:366::-;41776:3;41797:67;41861:2;41856:3;41797:67;:::i;:::-;41790:74;;41873:93;41962:3;41873:93;:::i;:::-;41991:2;41986:3;41982:12;41975:19;;41634:366;;;:::o;42006:419::-;42172:4;42210:2;42199:9;42195:18;42187:26;;42259:9;42253:4;42249:20;42245:1;42234:9;42230:17;42223:47;42287:131;42413:4;42287:131;:::i;:::-;42279:139;;42006:419;;;:::o;42431:224::-;42571:34;42567:1;42559:6;42555:14;42548:58;42640:7;42635:2;42627:6;42623:15;42616:32;42431:224;:::o;42661:366::-;42803:3;42824:67;42888:2;42883:3;42824:67;:::i;:::-;42817:74;;42900:93;42989:3;42900:93;:::i;:::-;43018:2;43013:3;43009:12;43002:19;;42661:366;;;:::o;43033:419::-;43199:4;43237:2;43226:9;43222:18;43214:26;;43286:9;43280:4;43276:20;43272:1;43261:9;43257:17;43250:47;43314:131;43440:4;43314:131;:::i;:::-;43306:139;;43033:419;;;:::o;43458:118::-;43495:7;43535:34;43528:5;43524:46;43513:57;;43458:118;;;:::o;43582:191::-;43622:4;43642:20;43660:1;43642:20;:::i;:::-;43637:25;;43676:20;43694:1;43676:20;:::i;:::-;43671:25;;43715:1;43712;43709:8;43706:34;;;43720:18;;:::i;:::-;43706:34;43765:1;43762;43758:9;43750:17;;43582:191;;;;:::o;43779:273::-;43819:3;43838:20;43856:1;43838:20;:::i;:::-;43833:25;;43872:20;43890:1;43872:20;:::i;:::-;43867:25;;43994:1;43958:34;43954:42;43951:1;43948:49;43945:75;;;44000:18;;:::i;:::-;43945:75;44044:1;44041;44037:9;44030:16;;43779:273;;;;:::o;44058:229::-;44198:34;44194:1;44186:6;44182:14;44175:58;44267:12;44262:2;44254:6;44250:15;44243:37;44058:229;:::o;44293:366::-;44435:3;44456:67;44520:2;44515:3;44456:67;:::i;:::-;44449:74;;44532:93;44621:3;44532:93;:::i;:::-;44650:2;44645:3;44641:12;44634:19;;44293:366;;;:::o;44665:419::-;44831:4;44869:2;44858:9;44854:18;44846:26;;44918:9;44912:4;44908:20;44904:1;44893:9;44889:17;44882:47;44946:131;45072:4;44946:131;:::i;:::-;44938:139;;44665:419;;;:::o;45090:171::-;45129:3;45152:24;45170:5;45152:24;:::i;:::-;45143:33;;45198:4;45191:5;45188:15;45185:41;;;45206:18;;:::i;:::-;45185:41;45253:1;45246:5;45242:13;45235:20;;45090:171;;;:::o;45267:234::-;45407:34;45403:1;45395:6;45391:14;45384:58;45476:17;45471:2;45463:6;45459:15;45452:42;45267:234;:::o;45507:366::-;45649:3;45670:67;45734:2;45729:3;45670:67;:::i;:::-;45663:74;;45746:93;45835:3;45746:93;:::i;:::-;45864:2;45859:3;45855:12;45848:19;;45507:366;;;:::o;45879:419::-;46045:4;46083:2;46072:9;46068:18;46060:26;;46132:9;46126:4;46122:20;46118:1;46107:9;46103:17;46096:47;46160:131;46286:4;46160:131;:::i;:::-;46152:139;;45879:419;;;:::o;46304:98::-;46355:6;46389:5;46383:12;46373:22;;46304:98;;;:::o;46408:168::-;46491:11;46525:6;46520:3;46513:19;46565:4;46560:3;46556:14;46541:29;;46408:168;;;;:::o;46582:360::-;46668:3;46696:38;46728:5;46696:38;:::i;:::-;46750:70;46813:6;46808:3;46750:70;:::i;:::-;46743:77;;46829:52;46874:6;46869:3;46862:4;46855:5;46851:16;46829:52;:::i;:::-;46906:29;46928:6;46906:29;:::i;:::-;46901:3;46897:39;46890:46;;46672:270;46582:360;;;;:::o;46948:640::-;47143:4;47181:3;47170:9;47166:19;47158:27;;47195:71;47263:1;47252:9;47248:17;47239:6;47195:71;:::i;:::-;47276:72;47344:2;47333:9;47329:18;47320:6;47276:72;:::i;:::-;47358;47426:2;47415:9;47411:18;47402:6;47358:72;:::i;:::-;47477:9;47471:4;47467:20;47462:2;47451:9;47447:18;47440:48;47505:76;47576:4;47567:6;47505:76;:::i;:::-;47497:84;;46948:640;;;;;;;:::o;47594:141::-;47650:5;47681:6;47675:13;47666:22;;47697:32;47723:5;47697:32;:::i;:::-;47594:141;;;;:::o;47741:349::-;47810:6;47859:2;47847:9;47838:7;47834:23;47830:32;47827:119;;;47865:79;;:::i;:::-;47827:119;47985:1;48010:63;48065:7;48056:6;48045:9;48041:22;48010:63;:::i;:::-;48000:73;;47956:127;47741:349;;;;:::o;48096:180::-;48144:77;48141:1;48134:88;48241:4;48238:1;48231:15;48265:4;48262:1;48255:15;48282:185;48322:1;48339:20;48357:1;48339:20;:::i;:::-;48334:25;;48373:20;48391:1;48373:20;:::i;:::-;48368:25;;48412:1;48402:35;;48417:18;;:::i;:::-;48402:35;48459:1;48456;48452:9;48447:14;;48282:185;;;;:::o;48473:176::-;48505:1;48522:20;48540:1;48522:20;:::i;:::-;48517:25;;48556:20;48574:1;48556:20;:::i;:::-;48551:25;;48595:1;48585:35;;48600:18;;:::i;:::-;48585:35;48641:1;48638;48634:9;48629:14;;48473:176;;;;:::o;48655:220::-;48795:34;48791:1;48783:6;48779:14;48772:58;48864:3;48859:2;48851:6;48847:15;48840:28;48655:220;:::o;48881:366::-;49023:3;49044:67;49108:2;49103:3;49044:67;:::i;:::-;49037:74;;49120:93;49209:3;49120:93;:::i;:::-;49238:2;49233:3;49229:12;49222:19;;48881:366;;;:::o;49253:419::-;49419:4;49457:2;49446:9;49442:18;49434:26;;49506:9;49500:4;49496:20;49492:1;49481:9;49477:17;49470:47;49534:131;49660:4;49534:131;:::i;:::-;49526:139;;49253:419;;;:::o;49678:179::-;49818:31;49814:1;49806:6;49802:14;49795:55;49678:179;:::o;49863:366::-;50005:3;50026:67;50090:2;50085:3;50026:67;:::i;:::-;50019:74;;50102:93;50191:3;50102:93;:::i;:::-;50220:2;50215:3;50211:12;50204:19;;49863:366;;;:::o;50235:419::-;50401:4;50439:2;50428:9;50424:18;50416:26;;50488:9;50482:4;50478:20;50474:1;50463:9;50459:17;50452:47;50516:131;50642:4;50516:131;:::i;:::-;50508:139;;50235:419;;;:::o;50660:221::-;50800:34;50796:1;50788:6;50784:14;50777:58;50869:4;50864:2;50856:6;50852:15;50845:29;50660:221;:::o;50887:366::-;51029:3;51050:67;51114:2;51109:3;51050:67;:::i;:::-;51043:74;;51126:93;51215:3;51126:93;:::i;:::-;51244:2;51239:3;51235:12;51228:19;;50887:366;;;:::o;51259:419::-;51425:4;51463:2;51452:9;51448:18;51440:26;;51512:9;51506:4;51502:20;51498:1;51487:9;51483:17;51476:47;51540:131;51666:4;51540:131;:::i;:::-;51532:139;;51259:419;;;:::o

Swarm Source

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