ETH Price: $2,422.96 (-0.08%)

Token

MVRSNFT (MNFT)
 

Overview

Max Total Supply

34 MNFT

Holders

24

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 MNFT
0x94dca07651a564dbb53bb4475e12108afd31ae8f
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:
MVRSNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-30
*/

// 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/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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/security/Pausable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/MVRSnft.sol


pragma solidity ^0.8.0;







contract MVRSNFT is ERC721, ERC721Enumerable, Ownable, Pausable {
    using SafeMath for uint256;
    using Strings for uint256;
    using SafeERC20 for IERC20;

    uint256 public MAX_MINTABLE = 1001;
    bool public mintingComplete = false;
    uint256 public totalNFT = 0;
    uint256 public mintPrice = 0;

    mapping(uint256 => string) private _tokenURIs;
    bool public publicsaleIsActive = false;
    bool public preSaleIsActive = false;

    // Base URI
    string private _baseURIextended;

    constructor() ERC721("MVRSNFT", "MNFT") {
        _pause();
    }

    struct NFTItemRecord{
        uint id;
        string rarity;
        string name;
        uint256 mintPrice;
        uint totalCopies;
        uint availableCopies;
        uint mintedCopies;
    }
    function initNFTItem() public onlyOwner{

        // for Provozori
        nftItemRecord[1].id = 1;
        nftItemRecord[1].rarity = "ULTRA";
        nftItemRecord[1].name = "Provozori";
        nftItemRecord[1].mintPrice = 10 ether;
        nftItemRecord[1].totalCopies = 1;
        nftItemRecord[1].availableCopies = 1;
        nftItemRecord[1].mintedCopies = 0;

        // for Sologoni
        nftItemRecord[2].id = 2;
        nftItemRecord[2].rarity = "LEGENDARY";
        nftItemRecord[2].name = "Sologoni";
        nftItemRecord[2].mintPrice = 0.9 ether;
        nftItemRecord[2].totalCopies = 10;
        nftItemRecord[2].availableCopies = 10;
        nftItemRecord[2].mintedCopies = 0;

        // for Johnny
        nftItemRecord[3].id = 3;
        nftItemRecord[3].rarity = "LEGENDARY";
        nftItemRecord[3].name = "Johnny";
        nftItemRecord[3].mintPrice = 0.9 ether;
        nftItemRecord[3].totalCopies = 10;
        nftItemRecord[3].availableCopies = 10;
        nftItemRecord[3].mintedCopies = 0;

        // for Mats
        nftItemRecord[4].id = 4;
        nftItemRecord[4].rarity = "LEGENDARY";
        nftItemRecord[4].name = "Mats";
        nftItemRecord[4].mintPrice = 0.9 ether;
        nftItemRecord[4].totalCopies = 10;
        nftItemRecord[4].availableCopies = 10;
        nftItemRecord[4].mintedCopies = 0;

        // for Saulo
        nftItemRecord[5].id = 5;
        nftItemRecord[5].rarity = "LEGENDARY";
        nftItemRecord[5].name = "Saulo";
        nftItemRecord[5].mintPrice = 0.9 ether;
        nftItemRecord[5].totalCopies = 10;
        nftItemRecord[5].availableCopies = 10;
        nftItemRecord[5].mintedCopies = 0;

        // for Jermain
        nftItemRecord[6].id = 6;
        nftItemRecord[6].rarity = "LEGENDARY";
        nftItemRecord[6].name = "Jermain";
        nftItemRecord[6].mintPrice = 0.9 ether;
        nftItemRecord[6].totalCopies = 10;
        nftItemRecord[6].availableCopies = 10;
        nftItemRecord[6].mintedCopies = 0;

        // for Roverce
        nftItemRecord[7].id = 7;
        nftItemRecord[7].rarity = "EPIC";
        nftItemRecord[7].name = "Roverce";
        nftItemRecord[7].mintPrice = 0.25 ether;
        nftItemRecord[7].totalCopies = 15;
        nftItemRecord[7].availableCopies = 15;
        nftItemRecord[7].mintedCopies = 0;

        // for Lia
        nftItemRecord[8].id =8;
        nftItemRecord[8].rarity = "EPIC";
        nftItemRecord[8].name = "Lia";
        nftItemRecord[8].mintPrice = 0.25 ether;
        nftItemRecord[8].totalCopies = 15;
        nftItemRecord[8].availableCopies = 15;
        nftItemRecord[8].mintedCopies = 0;

        // for Mia
        nftItemRecord[9].id =9;
        nftItemRecord[9].rarity = "EPIC";
        nftItemRecord[9].name = "Mia";
        nftItemRecord[9].mintPrice = 0.25 ether;
        nftItemRecord[9].totalCopies = 15;
        nftItemRecord[9].availableCopies = 15;
        nftItemRecord[9].mintedCopies = 0;

        // for Forber
        nftItemRecord[10].id =10;
        nftItemRecord[10].rarity = "EPIC";
        nftItemRecord[10].name = "Forber";
        nftItemRecord[10].mintPrice = 0.25 ether;
        nftItemRecord[10].totalCopies = 15;
        nftItemRecord[10].availableCopies = 15;
        nftItemRecord[10].mintedCopies = 0;

        // for Rozalinda
        nftItemRecord[11].id =11;
        nftItemRecord[11].rarity = "EPIC";
        nftItemRecord[11].name = "Rozalinda";
        nftItemRecord[11].mintPrice = 0.25 ether;
        nftItemRecord[11].totalCopies = 15;
        nftItemRecord[11].availableCopies = 15;
        nftItemRecord[11].mintedCopies = 0;

        // for Febiola
        nftItemRecord[12].id =12;
        nftItemRecord[12].rarity = "EPIC";
        nftItemRecord[12].name = "Febiola";
        nftItemRecord[12].mintPrice = 0.25 ether;
        nftItemRecord[12].totalCopies = 15;
        nftItemRecord[12].availableCopies = 15;
        nftItemRecord[12].mintedCopies = 0;

        // for Liam
        nftItemRecord[13].id =13;
        nftItemRecord[13].rarity = "EPIC";
        nftItemRecord[13].name = "Liam";
        nftItemRecord[13].mintPrice = 0.25 ether;
        nftItemRecord[13].totalCopies = 15;
        nftItemRecord[13].availableCopies = 15;
        nftItemRecord[13].mintedCopies = 0;

        // for Olivia
        nftItemRecord[14].id =14;
        nftItemRecord[14].rarity = "EPIC";
        nftItemRecord[14].name = "Olivia";
        nftItemRecord[14].mintPrice = 0.25 ether;
        nftItemRecord[14].totalCopies = 15;
        nftItemRecord[14].availableCopies = 15;
        nftItemRecord[14].mintedCopies = 0;

        // for Romad
        nftItemRecord[15].id =15;
        nftItemRecord[15].rarity = "EPIC";
        nftItemRecord[15].name = "Romad";
        nftItemRecord[15].mintPrice = 0.25 ether;
        nftItemRecord[15].totalCopies = 15;
        nftItemRecord[15].availableCopies = 15;
        nftItemRecord[15].mintedCopies = 0;

        // for Henry
        nftItemRecord[16].id =16;
        nftItemRecord[16].rarity = "EPIC";
        nftItemRecord[16].name = "Henry";
        nftItemRecord[16].mintPrice = 0.25 ether;
        nftItemRecord[16].totalCopies = 15;
        nftItemRecord[16].availableCopies = 15;
        nftItemRecord[16].mintedCopies = 0;

        // for Vitalik
        nftItemRecord[17].id =17;
        nftItemRecord[17].rarity = "RARE";
        nftItemRecord[17].name = "Vitalik";
        nftItemRecord[17].mintPrice = 0.1 ether;
        nftItemRecord[17].totalCopies = 30;
        nftItemRecord[17].availableCopies = 30;
        nftItemRecord[17].mintedCopies = 0;

        // for Harper
        nftItemRecord[18].id =18;
        nftItemRecord[18].rarity = "RARE";
        nftItemRecord[18].name = "Harper";
        nftItemRecord[18].mintPrice = 0.1 ether;
        nftItemRecord[18].totalCopies = 30;
        nftItemRecord[18].availableCopies = 30;
        nftItemRecord[18].mintedCopies = 0;

        // for Noah
        nftItemRecord[19].id =19;
        nftItemRecord[19].rarity = "RARE";
        nftItemRecord[19].name = "Noah";
        nftItemRecord[19].mintPrice = 0.1 ether;
        nftItemRecord[19].totalCopies = 30;
        nftItemRecord[19].availableCopies = 30;
        nftItemRecord[19].mintedCopies = 0;

        // for roman
        nftItemRecord[20].id =20;
        nftItemRecord[20].rarity = "RARE";
        nftItemRecord[20].name = "roman";
        nftItemRecord[20].mintPrice = 0.1 ether;
        nftItemRecord[20].totalCopies = 30;
        nftItemRecord[20].availableCopies = 30;
        nftItemRecord[20].mintedCopies = 0;

        // for Morgi
        nftItemRecord[21].id =21;
        nftItemRecord[21].rarity = "RARE";
        nftItemRecord[21].name = "Morgi";
        nftItemRecord[21].mintPrice = 0.1 ether;
        nftItemRecord[21].totalCopies = 30;
        nftItemRecord[21].availableCopies = 30;
        nftItemRecord[21].mintedCopies = 0;

        // for Ava
        nftItemRecord[22].id =22;
        nftItemRecord[22].rarity = "RARE";
        nftItemRecord[22].name = "Ava";
        nftItemRecord[22].mintPrice = 0.1 ether;
        nftItemRecord[22].totalCopies = 30;
        nftItemRecord[22].availableCopies = 30;
        nftItemRecord[22].mintedCopies = 0;

        // for Jasper
        nftItemRecord[23].id =23;
        nftItemRecord[23].rarity = "RARE";
        nftItemRecord[23].name = "Jasper";
        nftItemRecord[23].mintPrice = 0.1 ether;
        nftItemRecord[23].totalCopies = 30;
        nftItemRecord[23].availableCopies = 30;
        nftItemRecord[23].mintedCopies = 0;

        // for Sophia
        nftItemRecord[24].id =24;
        nftItemRecord[24].rarity = "RARE";
        nftItemRecord[24].name = "Sophia";
        nftItemRecord[24].mintPrice = 0.1 ether;
        nftItemRecord[24].totalCopies = 30;
        nftItemRecord[24].availableCopies = 30;
        nftItemRecord[24].mintedCopies = 0;

        // for Lamar
        nftItemRecord[25].id =25;
        nftItemRecord[25].rarity = "RARE";
        nftItemRecord[25].name = "Lamar";
        nftItemRecord[25].mintPrice = 0.1 ether;
        nftItemRecord[25].totalCopies = 30;
        nftItemRecord[25].availableCopies = 30;
        nftItemRecord[25].mintedCopies = 0;

        // for Summet
        nftItemRecord[26].id =26;
        nftItemRecord[26].rarity = "RARE";
        nftItemRecord[26].name = "Summet";
        nftItemRecord[26].mintPrice = 0.1 ether;
        nftItemRecord[26].totalCopies = 30;
        nftItemRecord[26].availableCopies = 30;
        nftItemRecord[26].mintedCopies = 0;

        // for Mangit
        nftItemRecord[27].id =27;
        nftItemRecord[27].rarity = "COMMON";
        nftItemRecord[27].name = "Mangit";
        nftItemRecord[27].mintPrice = 0.04 ether;
        nftItemRecord[27].totalCopies = 50;
        nftItemRecord[27].availableCopies = 50;
        nftItemRecord[27].mintedCopies = 0;

        // for Stattom
        nftItemRecord[28].id =28;
        nftItemRecord[28].rarity = "COMMON";
        nftItemRecord[28].name = "Stattom";
        nftItemRecord[28].mintPrice = 0.04 ether;
        nftItemRecord[28].totalCopies = 50;
        nftItemRecord[28].availableCopies = 50;
        nftItemRecord[28].mintedCopies = 0;

        // for Aiguo
        nftItemRecord[29].id =29;
        nftItemRecord[29].rarity = "COMMON";
        nftItemRecord[29].name = "Aiguo";
        nftItemRecord[29].mintPrice = 0.04 ether;
        nftItemRecord[29].totalCopies = 50;
        nftItemRecord[29].availableCopies = 50;
        nftItemRecord[29].mintedCopies = 0;

        // for Java
        nftItemRecord[30].id =30;
        nftItemRecord[30].rarity = "COMMON";
        nftItemRecord[30].name = "Java";
        nftItemRecord[30].mintPrice = 0.04 ether;
        nftItemRecord[30].totalCopies = 50;
        nftItemRecord[30].availableCopies = 50;
        nftItemRecord[30].mintedCopies = 0;

        // for Fresya
        nftItemRecord[31].id =31;
        nftItemRecord[31].rarity = "COMMON";
        nftItemRecord[31].name = "Fresya";
        nftItemRecord[31].mintPrice = 0.04 ether;
        nftItemRecord[31].totalCopies = 50;
        nftItemRecord[31].availableCopies = 50;
        nftItemRecord[31].mintedCopies = 0;

        // for Baconsmith
        nftItemRecord[32].id =32;
        nftItemRecord[32].rarity = "COMMON";
        nftItemRecord[32].name = "Baconsmith";
        nftItemRecord[32].mintPrice = 0.04 ether;
        nftItemRecord[32].totalCopies = 50;
        nftItemRecord[32].availableCopies = 50;
        nftItemRecord[32].mintedCopies = 0;

        // for Nano
        nftItemRecord[33].id =33;
        nftItemRecord[33].rarity = "COMMON";
        nftItemRecord[33].name = "Nano";
        nftItemRecord[33].mintPrice = 0.04 ether;
        nftItemRecord[33].totalCopies = 50;
        nftItemRecord[33].availableCopies = 50;
        nftItemRecord[33].mintedCopies = 0;

        // for Ashok
        nftItemRecord[34].id =34;
        nftItemRecord[34].rarity = "COMMON";
        nftItemRecord[34].name = "Ashok";
        nftItemRecord[34].mintPrice = 0.04 ether;
        nftItemRecord[34].totalCopies = 50;
        nftItemRecord[34].availableCopies = 50;
        nftItemRecord[34].mintedCopies = 0;

        // for Cathy
        nftItemRecord[35].id =35;
        nftItemRecord[35].rarity = "COMMON";
        nftItemRecord[35].name = "Cathy";
        nftItemRecord[35].mintPrice = 0.04 ether;
        nftItemRecord[35].totalCopies = 50;
        nftItemRecord[35].availableCopies = 50;
        nftItemRecord[35].mintedCopies = 0;

        // for Prakash
        nftItemRecord[36].id =36;
        nftItemRecord[36].rarity = "COMMON";
        nftItemRecord[36].name = "Prakash";
        nftItemRecord[36].mintPrice = 0.04 ether;
        nftItemRecord[36].totalCopies = 50;
        nftItemRecord[36].availableCopies = 50;
        nftItemRecord[36].mintedCopies = 0;

    }

    mapping(uint => NFTItemRecord) public nftItemRecord; 

    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIextended = baseURI_;
    }

    function _setTokenURI(uint256 tokenId, string memory _tokenURI)
        internal
        virtual
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIextended;
    }
        
    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }


    function mintTokens(uint id, string memory ptokenURI)
        public
        payable
        whenNotPaused
        whenMintingNotComplete
    {
    require( msg.value >= nftItemRecord[id].mintPrice,  "Ether sent is not correct" );
    require( nftItemRecord[id].availableCopies > 0,  "Sold Out" );
    require( preSaleIsActive || publicsaleIsActive, "Sale is not active yet");
            if(preSaleIsActive){
                require(isWhitelisted(msg.sender), "Is not whitelisted");
                mintingTokens(id,ptokenURI);
                whitelist[msg.sender].hasMinted = whitelist[msg.sender].hasMinted.add(1);
            }
           else {
               mintingTokens(id,ptokenURI);
            }

        if (totalNFT >= MAX_MINTABLE) {
            mintingComplete = true;
        }
    } 

    function mintingTokens(uint id, string memory ptokenURI) 
    internal{
        nftItemRecord[id].mintedCopies = nftItemRecord[id].mintedCopies.add(1);
        nftItemRecord[id].availableCopies = nftItemRecord[id].availableCopies.add(1); 
        _mint(msg.sender, totalNFT + 1);
        _setTokenURI(totalNFT + 1,ptokenURI);
        totalNFT += 1;
    }

    

    struct Whitelist {
        address addr;
        uint hasMinted;
    }
    mapping(address => Whitelist) public whitelist;
    
    address[] public whitelistAddr;

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function withdrawBalance() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "does not have any balance");
        payable(msg.sender).transfer(balance);
    }

    function getAvailableBalanceEther() public view returns (uint256) {
        return address(this).balance;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable) whenNotPaused {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function addAddressToWhitelist(address addr) onlyOwner public returns(bool success) {
        require(!isWhitelisted(addr), "Already whitelisted");
        whitelist[addr].addr = addr;
        whitelist[addr].hasMinted = 0;
        whitelistAddr.push(addr);
        success = true;
    }


    modifier whenMintingNotComplete() {
        require(mintingComplete == false, "Normal minting is complete");
        _;
    }
    
    function togglepubSaleState() public onlyOwner {
        publicsaleIsActive = !publicsaleIsActive;
        preSaleIsActive = false;
    }
    
    function togglepreSaleState() public onlyOwner {
        preSaleIsActive = !preSaleIsActive;
        if(preSaleIsActive == false){
            publicsaleIsActive = false ;
        }
    }

    function addAddressesToWhitelist(address[] memory addrs) onlyOwner public{
        for(uint i = 0; i < addrs.length; i++) {
            addAddressToWhitelist(addrs[i]);
        }
    }

    function isWhitelisted(address addr) public view returns (bool isWhiteListed) {
        return whitelist[addr].addr == addr;
    }

    function countWhitelisted() view public returns (uint) {
        return whitelistAddr.length;
    }

}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_MINTABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAddressToWhitelist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"addAddressesToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"countWhitelisted","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":[],"name":"getAvailableBalanceEther","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initNFTItem","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":[{"internalType":"address","name":"addr","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"isWhiteListed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"ptokenURI","type":"string"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingComplete","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nftItemRecord","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"rarity","type":"string"},{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"totalCopies","type":"uint256"},{"internalType":"uint256","name":"availableCopies","type":"uint256"},{"internalType":"uint256","name":"mintedCopies","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicsaleIsActive","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglepreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglepubSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"hasMinted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e9600b55600c805460ff191690556000600d819055600e556010805461ffff191690553480156200003657600080fd5b50604080518082018252600781526613559494d3919560ca1b6020808301918252835180850190945260048452631353919560e21b9084015281519192916200008291600091620001da565b50805162000098906001906020840190620001da565b505050620000b5620000af620000d260201b60201c565b620000d6565b600a805460ff60a01b19169055620000cc62000128565b620002bd565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200013c600a54600160a01b900460ff1690565b15620001815760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620001bd3390565b6040516001600160a01b03909116815260200160405180910390a1565b828054620001e89062000280565b90600052602060002090601f0160209004810192826200020c576000855562000257565b82601f106200022757805160ff191683800117855562000257565b8280016001018555821562000257579182015b82811115620002575782518255916020019190600101906200023a565b506200026592915062000269565b5090565b5b808211156200026557600081556001016200026a565b600181811c908216806200029557607f821691505b60208210811415620002b757634e487b7160e01b600052602260045260246000fd5b50919050565b615e6780620002cd6000396000f3fe6080604052600436106102505760003560e01c80636817c76c116101395780639b19251a116100b6578063c87b56dd1161007a578063c87b56dd146106dd578063de972357146106fd578063e2ec6ec314610717578063e985e9c514610737578063f2fde38b14610780578063f48c0b35146107a057600080fd5b80639b19251a146105f8578063a22cb46514610657578063a45b703d14610677578063b087e37c146106aa578063b88d4fde146106bd57600080fd5b80637f88f303116100fd5780637f88f3031461057b5780638456cb591461059057806385c6b79e146105a55780638da5cb5b146105c557806395d89b41146105e357600080fd5b80636817c76c146104f657806370a082311461050c578063715018a61461052c57806374689fdf146105415780637b9417c81461055b57600080fd5b80633af32abf116101d257806342842e0e1161019657806342842e0e146104425780634f6ccce71461046257806355f804b3146104825780635c975abb146104a25780635fd8c710146104c15780636352211e146104d657600080fd5b80633af32abf146103b35780633f4ba83a146103ef5780633f879faf146104045780633fc287c11461041a57806341eeb07f1461042d57600080fd5b806318160ddd1161021957806318160ddd1461032a578063197a7dd01461033f5780631f0234d81461035457806323b872dd146103735780632f745c591461039357600080fd5b80624563791461025557806301ffc9a71461027e57806306fdde03146102ae578063081812fc146102d0578063095ea7b314610308575b600080fd5b34801561026157600080fd5b5061026b600d5481565b6040519081526020015b60405180910390f35b34801561028a57600080fd5b5061029e6102993660046159d5565b6107b5565b6040519015158152602001610275565b3480156102ba57600080fd5b506102c36107c6565b6040516102759190615b3c565b3480156102dc57600080fd5b506102f06102eb366004615a44565b610858565b6040516001600160a01b039091168152602001610275565b34801561031457600080fd5b506103286103233660046158f7565b6108f2565b005b34801561033657600080fd5b5060085461026b565b34801561034b57600080fd5b50610328610a08565b34801561036057600080fd5b5060105461029e90610100900460ff1681565b34801561037f57600080fd5b5061032861038e366004615803565b610a4c565b34801561039f57600080fd5b5061026b6103ae3660046158f7565b610a7d565b3480156103bf57600080fd5b5061029e6103ce3660046157b5565b6001600160a01b039081166000818152601360205260409020549091161490565b3480156103fb57600080fd5b50610328610b13565b34801561041057600080fd5b5061026b600b5481565b34801561042657600080fd5b504761026b565b34801561043957600080fd5b5060145461026b565b34801561044e57600080fd5b5061032861045d366004615803565b610b47565b34801561046e57600080fd5b5061026b61047d366004615a44565b610b62565b34801561048e57600080fd5b5061032861049d366004615a0f565b610bf5565b3480156104ae57600080fd5b50600a54600160a01b900460ff1661029e565b3480156104cd57600080fd5b50610328610c36565b3480156104e257600080fd5b506102f06104f1366004615a44565b610cdb565b34801561050257600080fd5b5061026b600e5481565b34801561051857600080fd5b5061026b6105273660046157b5565b610d52565b34801561053857600080fd5b50610328610dd9565b34801561054d57600080fd5b50600c5461029e9060ff1681565b34801561056757600080fd5b5061029e6105763660046157b5565b610e0d565b34801561058757600080fd5b50610328610f09565b34801561059c57600080fd5b50610328614249565b3480156105b157600080fd5b506102f06105c0366004615a44565b61427b565b3480156105d157600080fd5b50600a546001600160a01b03166102f0565b3480156105ef57600080fd5b506102c36142a5565b34801561060457600080fd5b506106386106133660046157b5565b601360205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b039093168352602083019190915201610275565b34801561066357600080fd5b506103286106723660046158bb565b6142b4565b34801561068357600080fd5b50610697610692366004615a44565b6142bf565b6040516102759796959493929190615c51565b6103286106b8366004615a5d565b61440a565b3480156106c957600080fd5b506103286106d836600461583f565b61465f565b3480156106e957600080fd5b506102c36106f8366004615a44565b614697565b34801561070957600080fd5b5060105461029e9060ff1681565b34801561072357600080fd5b50610328610732366004615921565b614819565b34801561074357600080fd5b5061029e6107523660046157d0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078c57600080fd5b5061032861079b3660046157b5565b614884565b3480156107ac57600080fd5b5061032861491f565b60006107c08261497c565b92915050565b6060600080546107d590615d43565b80601f016020809104026020016040519081016040528092919081815260200182805461080190615d43565b801561084e5780601f106108235761010080835404028352916020019161084e565b820191906000526020600020905b81548152906001019060200180831161083157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108d65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108fd82610cdb565b9050806001600160a01b0316836001600160a01b0316141561096b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108cd565b336001600160a01b038216148061098757506109878133610752565b6109f95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108cd565b610a0383836149a1565b505050565b600a546001600160a01b03163314610a325760405162461bcd60e51b81526004016108cd90615bcb565b6010805461ff001960ff8216151661ffff19909116179055565b610a563382614a0f565b610a725760405162461bcd60e51b81526004016108cd90615c00565b610a03838383614b06565b6000610a8883610d52565b8210610aea5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108cd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b3d5760405162461bcd60e51b81526004016108cd90615bcb565b610b45614cb1565b565b610a038383836040518060200160405280600081525061465f565b6000610b6d60085490565b8210610bd05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108cd565b60088281548110610be357610be3615def565b90600052602060002001549050919050565b600a546001600160a01b03163314610c1f5760405162461bcd60e51b81526004016108cd90615bcb565b8051610c32906011906020840190615688565b5050565b600a546001600160a01b03163314610c605760405162461bcd60e51b81526004016108cd90615bcb565b4780610cae5760405162461bcd60e51b815260206004820152601960248201527f646f6573206e6f74206861766520616e792062616c616e63650000000000000060448201526064016108cd565b604051339082156108fc029083906000818181858888f19350505050158015610c32573d6000803e3d6000fd5b6000818152600260205260408120546001600160a01b0316806107c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108cd565b60006001600160a01b038216610dbd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108cd565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e035760405162461bcd60e51b81526004016108cd90615bcb565b610b456000614d4e565b600a546000906001600160a01b03163314610e3a5760405162461bcd60e51b81526004016108cd90615bcb565b6001600160a01b038083166000818152601360205260409020549091161415610e9b5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481dda1a5d195b1a5cdd1959606a1b60448201526064016108cd565b506001600160a01b0316600081815260136020526040812080546001600160a01b031990811684178255600191820183905560148054808401825593527fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec9092018054909216909217905590565b600a546001600160a01b03163314610f335760405162461bcd60e51b81526004016108cd90615bcb565b60017f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a3819055604080518082019091526005815264554c54524160d81b6020828101918252600093909352601290925251610faf917f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a491615688565b5060408051808201909152600981526850726f766f7a6f726960b81b60208083019182526001600052601290529051611009917f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a591615688565b50678ac7230489e800007f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a65560017f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a78190557f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a85560007f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a981905560027f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b28190556040805180820190915260098152684c4547454e4441525960b81b602082810191825292909352601290915251611121917f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b391615688565b50604080518082019091526008815267536f6c6f676f6e6960c01b6020808301918252600260005260129052905161117a917f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b491615688565b50670c7d713b49da00007f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b555600a7f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b68190557f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b75560007f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b881905560037f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86976a8190556040805180820190915260098152684c4547454e4441525960b81b602082810191825292909352601290915251611292917f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86976b91615688565b506040805180820190915260068152654a6f686e6e7960d01b602080830191825260036000526012905290516112e9917f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86976c91615688565b50670c7d713b49da00007f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86976d55600a7f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86976e8190557f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86976f5560007f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86977081905560047fb4fcd034df3d20faa1c133b66d862ce92732727d40916b48ffb4020cb00fe0538190556040805180820190915260098152684c4547454e4441525960b81b602082810191825292909352601290915251611401917fb4fcd034df3d20faa1c133b66d862ce92732727d40916b48ffb4020cb00fe05491615688565b50604080518082019091526004808252634d61747360e01b602080840191825260009290925260129091529051611459917fb4fcd034df3d20faa1c133b66d862ce92732727d40916b48ffb4020cb00fe05591615688565b50670c7d713b49da00007fb4fcd034df3d20faa1c133b66d862ce92732727d40916b48ffb4020cb00fe05655600a7fb4fcd034df3d20faa1c133b66d862ce92732727d40916b48ffb4020cb00fe0578190557fb4fcd034df3d20faa1c133b66d862ce92732727d40916b48ffb4020cb00fe0585560007fb4fcd034df3d20faa1c133b66d862ce92732727d40916b48ffb4020cb00fe05981905560057f45429b9195d4ec5c0cf6c69e9c21a4ca0ea773b702c2de5735f85d2631f267468190556040805180820190915260098152684c4547454e4441525960b81b602082810191825292909352601290915251611571917f45429b9195d4ec5c0cf6c69e9c21a4ca0ea773b702c2de5735f85d2631f2674791615688565b50604080518082019091526005808252645361756c6f60d81b6020808401918252600092909252601290915290516115ca917f45429b9195d4ec5c0cf6c69e9c21a4ca0ea773b702c2de5735f85d2631f2674891615688565b50670c7d713b49da00007f45429b9195d4ec5c0cf6c69e9c21a4ca0ea773b702c2de5735f85d2631f2674955600a7f45429b9195d4ec5c0cf6c69e9c21a4ca0ea773b702c2de5735f85d2631f2674a8190557f45429b9195d4ec5c0cf6c69e9c21a4ca0ea773b702c2de5735f85d2631f2674b5560007f45429b9195d4ec5c0cf6c69e9c21a4ca0ea773b702c2de5735f85d2631f2674c81905560067f1223f9031f9dca49a7844c397098ce9a4e80513444d0a8bb59820dff564808e48190556040805180820190915260098152684c4547454e4441525960b81b6020828101918252929093526012909152516116e2917f1223f9031f9dca49a7844c397098ce9a4e80513444d0a8bb59820dff564808e591615688565b506040805180820190915260078152662532b936b0b4b760c91b6020808301918252600660005260129052905161173a917f1223f9031f9dca49a7844c397098ce9a4e80513444d0a8bb59820dff564808e691615688565b50670c7d713b49da00007f1223f9031f9dca49a7844c397098ce9a4e80513444d0a8bb59820dff564808e755600a7f1223f9031f9dca49a7844c397098ce9a4e80513444d0a8bb59820dff564808e88190557f1223f9031f9dca49a7844c397098ce9a4e80513444d0a8bb59820dff564808e95560007f1223f9031f9dca49a7844c397098ce9a4e80513444d0a8bb59820dff564808ea81905560077f724fd36bd271795fe7866d4cc83b61084ef704502b00c2e0b28047123b3c1acc8190556040805180820190915260048152634550494360e01b60208281019182529290935260129091525161184d917f724fd36bd271795fe7866d4cc83b61084ef704502b00c2e0b28047123b3c1acd91615688565b5060408051808201909152600780825266526f766572636560c81b6020808401918252600092909252601290915290516118a8917f724fd36bd271795fe7866d4cc83b61084ef704502b00c2e0b28047123b3c1ace91615688565b506703782dace9d900007f724fd36bd271795fe7866d4cc83b61084ef704502b00c2e0b28047123b3c1acf55600f7f724fd36bd271795fe7866d4cc83b61084ef704502b00c2e0b28047123b3c1ad08190557f724fd36bd271795fe7866d4cc83b61084ef704502b00c2e0b28047123b3c1ad15560007f724fd36bd271795fe7866d4cc83b61084ef704502b00c2e0b28047123b3c1ad281905560087f855d8d6df66418fea944661cfca175a2245b01f09908f1f662c4fa2b3cbf92998190556040805180820190915260048152634550494360e01b6020828101918252929093526012909152516119bb917f855d8d6df66418fea944661cfca175a2245b01f09908f1f662c4fa2b3cbf929a91615688565b506040805180820190915260038152624c696160e81b60208083019182526008600052601290529051611a0f917f855d8d6df66418fea944661cfca175a2245b01f09908f1f662c4fa2b3cbf929b91615688565b506703782dace9d900007f855d8d6df66418fea944661cfca175a2245b01f09908f1f662c4fa2b3cbf929c55600f7f855d8d6df66418fea944661cfca175a2245b01f09908f1f662c4fa2b3cbf929d8190557f855d8d6df66418fea944661cfca175a2245b01f09908f1f662c4fa2b3cbf929e5560007f855d8d6df66418fea944661cfca175a2245b01f09908f1f662c4fa2b3cbf929f81905560097fb9bfc87ab6d50430c17fad3d76aa4e9fce5cb9f8a8035e5ad64505fa1e31bdb98190556040805180820190915260048152634550494360e01b602082810191825292909352601290915251611b22917fb9bfc87ab6d50430c17fad3d76aa4e9fce5cb9f8a8035e5ad64505fa1e31bdba91615688565b506040805180820190915260038152624d696160e81b60208083019182526009600052601290529051611b76917fb9bfc87ab6d50430c17fad3d76aa4e9fce5cb9f8a8035e5ad64505fa1e31bdbb91615688565b506703782dace9d900007fb9bfc87ab6d50430c17fad3d76aa4e9fce5cb9f8a8035e5ad64505fa1e31bdbc55600f7fb9bfc87ab6d50430c17fad3d76aa4e9fce5cb9f8a8035e5ad64505fa1e31bdbd8190557fb9bfc87ab6d50430c17fad3d76aa4e9fce5cb9f8a8035e5ad64505fa1e31bdbe5560007fb9bfc87ab6d50430c17fad3d76aa4e9fce5cb9f8a8035e5ad64505fa1e31bdbf819055600a7f4d862627e71449ad0902e42fb445c6fefb557d066705175da90fdc325bd76e4e8190556040805180820190915260048152634550494360e01b602082810191825292909352601290915251611c89917f4d862627e71449ad0902e42fb445c6fefb557d066705175da90fdc325bd76e4f91615688565b506040805180820190915260068152652337b93132b960d11b6020808301918252600a600052601290529051611ce0917f4d862627e71449ad0902e42fb445c6fefb557d066705175da90fdc325bd76e5091615688565b506703782dace9d900007f4d862627e71449ad0902e42fb445c6fefb557d066705175da90fdc325bd76e5155600f7f4d862627e71449ad0902e42fb445c6fefb557d066705175da90fdc325bd76e528190557f4d862627e71449ad0902e42fb445c6fefb557d066705175da90fdc325bd76e535560007f4d862627e71449ad0902e42fb445c6fefb557d066705175da90fdc325bd76e54819055600b7f2495f4cb142bcb5be5e6e3ea9aaf4f6b4f9ecc9f26c2c53a2c4a12cbcae156ee8190556040805180820190915260048152634550494360e01b602082810191825292909352601290915251611df3917f2495f4cb142bcb5be5e6e3ea9aaf4f6b4f9ecc9f26c2c53a2c4a12cbcae156ef91615688565b50604080518082019091526009815268526f7a616c696e646160b81b6020808301918252600b600052601290529051611e4d917f2495f4cb142bcb5be5e6e3ea9aaf4f6b4f9ecc9f26c2c53a2c4a12cbcae156f091615688565b506703782dace9d900007f2495f4cb142bcb5be5e6e3ea9aaf4f6b4f9ecc9f26c2c53a2c4a12cbcae156f155600f7f2495f4cb142bcb5be5e6e3ea9aaf4f6b4f9ecc9f26c2c53a2c4a12cbcae156f28190557f2495f4cb142bcb5be5e6e3ea9aaf4f6b4f9ecc9f26c2c53a2c4a12cbcae156f35560007f2495f4cb142bcb5be5e6e3ea9aaf4f6b4f9ecc9f26c2c53a2c4a12cbcae156f4819055600c7f102203beef086490b6ace526d3f440341863884040816888f0c1d8918d4daa7a8190556040805180820190915260048152634550494360e01b602082810191825292909352601290915251611f60917f102203beef086490b6ace526d3f440341863884040816888f0c1d8918d4daa7b91615688565b50604080518082019091526007815266466562696f6c6160c81b6020808301918252600c600052601290529051611fb8917f102203beef086490b6ace526d3f440341863884040816888f0c1d8918d4daa7c91615688565b506703782dace9d900007f102203beef086490b6ace526d3f440341863884040816888f0c1d8918d4daa7d55600f7f102203beef086490b6ace526d3f440341863884040816888f0c1d8918d4daa7e8190557f102203beef086490b6ace526d3f440341863884040816888f0c1d8918d4daa7f5560007f102203beef086490b6ace526d3f440341863884040816888f0c1d8918d4daa80819055600d7f08002daeba8533611007c300fe5b0f2097c5e194f0f4087c9468255bee0bf7d98190556040805180820190915260048152634550494360e01b6020828101918252929093526012909152516120cb917f08002daeba8533611007c300fe5b0f2097c5e194f0f4087c9468255bee0bf7da91615688565b506040805180820190915260048152634c69616d60e01b6020808301918252600d600052601290529051612120917f08002daeba8533611007c300fe5b0f2097c5e194f0f4087c9468255bee0bf7db91615688565b506703782dace9d900007f08002daeba8533611007c300fe5b0f2097c5e194f0f4087c9468255bee0bf7dc55600f7f08002daeba8533611007c300fe5b0f2097c5e194f0f4087c9468255bee0bf7dd8190557f08002daeba8533611007c300fe5b0f2097c5e194f0f4087c9468255bee0bf7de5560007f08002daeba8533611007c300fe5b0f2097c5e194f0f4087c9468255bee0bf7df819055600e7f8f34c6b109aecf3bfac1757bacc0152b60fcb822751554c6190a91f3c234a2788190556040805180820190915260048152634550494360e01b602082810191825292909352601290915251612233917f8f34c6b109aecf3bfac1757bacc0152b60fcb822751554c6190a91f3c234a27991615688565b506040805180820190915260068152654f6c6976696160d01b6020808301918252600e60005260129052905161228a917f8f34c6b109aecf3bfac1757bacc0152b60fcb822751554c6190a91f3c234a27a91615688565b506703782dace9d900007f8f34c6b109aecf3bfac1757bacc0152b60fcb822751554c6190a91f3c234a27b55600f7f8f34c6b109aecf3bfac1757bacc0152b60fcb822751554c6190a91f3c234a27c8190557f8f34c6b109aecf3bfac1757bacc0152b60fcb822751554c6190a91f3c234a27d81905560007f8f34c6b109aecf3bfac1757bacc0152b60fcb822751554c6190a91f3c234a27e8190557f12864ea1602358025af3b40bb8d939272d37cf8b937fccc858336e2eaa450d808290556040805180820190915260048152634550494360e01b6020828101918252939092526012909252905161239e917f12864ea1602358025af3b40bb8d939272d37cf8b937fccc858336e2eaa450d8191615688565b50604080518082019091526005815264149bdb585960da1b6020808301918252600f6000526012905290516123f4917f12864ea1602358025af3b40bb8d939272d37cf8b937fccc858336e2eaa450d8291615688565b506703782dace9d900007f12864ea1602358025af3b40bb8d939272d37cf8b937fccc858336e2eaa450d8355600f7f12864ea1602358025af3b40bb8d939272d37cf8b937fccc858336e2eaa450d848190557f12864ea1602358025af3b40bb8d939272d37cf8b937fccc858336e2eaa450d855560007f12864ea1602358025af3b40bb8d939272d37cf8b937fccc858336e2eaa450d8681905560107f47cca4e5cf2ef3d1cf48e381e7c50f235175233c59e08319e054e746d4722a988190556040805180820190915260048152634550494360e01b602082810191825292909352601290915251612507917f47cca4e5cf2ef3d1cf48e381e7c50f235175233c59e08319e054e746d4722a9991615688565b5060408051808201909152600581526448656e727960d81b6020808301918252601060005260129052905161255d917f47cca4e5cf2ef3d1cf48e381e7c50f235175233c59e08319e054e746d4722a9a91615688565b506703782dace9d900007f47cca4e5cf2ef3d1cf48e381e7c50f235175233c59e08319e054e746d4722a9b55600f7f47cca4e5cf2ef3d1cf48e381e7c50f235175233c59e08319e054e746d4722a9c8190557f47cca4e5cf2ef3d1cf48e381e7c50f235175233c59e08319e054e746d4722a9d5560007f47cca4e5cf2ef3d1cf48e381e7c50f235175233c59e08319e054e746d4722a9e81905560117f6b485436b9b234417e59960d9ab1366322cfad1c365f281a05863557ce7f5ce48190556040805180820190915260048152635241524560e01b602082810191825292909352601290915251612670917f6b485436b9b234417e59960d9ab1366322cfad1c365f281a05863557ce7f5ce591615688565b50604080518082019091526007815266566974616c696b60c81b602080830191825260116000526012905290516126c8917f6b485436b9b234417e59960d9ab1366322cfad1c365f281a05863557ce7f5ce691615688565b5067016345785d8a00007f6b485436b9b234417e59960d9ab1366322cfad1c365f281a05863557ce7f5ce755601e7f6b485436b9b234417e59960d9ab1366322cfad1c365f281a05863557ce7f5ce88190557f6b485436b9b234417e59960d9ab1366322cfad1c365f281a05863557ce7f5ce95560007f6b485436b9b234417e59960d9ab1366322cfad1c365f281a05863557ce7f5cea81905560127f9f06b6a21011ceaf77e412292865f39f3e7ad40a4f4dee40defc38983937e0b78190556040805180820190915260048152635241524560e01b6020828101918252938390529190925290516127db917f9f06b6a21011ceaf77e412292865f39f3e7ad40a4f4dee40defc38983937e0b891615688565b506040805180820190915260068152652430b93832b960d11b60208083019182526012600081905290529051612832917f9f06b6a21011ceaf77e412292865f39f3e7ad40a4f4dee40defc38983937e0b991615688565b5067016345785d8a00007f9f06b6a21011ceaf77e412292865f39f3e7ad40a4f4dee40defc38983937e0ba55601e7f9f06b6a21011ceaf77e412292865f39f3e7ad40a4f4dee40defc38983937e0bb8190557f9f06b6a21011ceaf77e412292865f39f3e7ad40a4f4dee40defc38983937e0bc5560007f9f06b6a21011ceaf77e412292865f39f3e7ad40a4f4dee40defc38983937e0bd81905560137f51bff16c12f072e1c63eaac76d27ed06d041061648bf74844ad006ae6bd44d6e8190556040805180820190915260048152635241524560e01b602082810191825292909352601290915251612945917f51bff16c12f072e1c63eaac76d27ed06d041061648bf74844ad006ae6bd44d6f91615688565b5060408051808201909152600481526309cdec2d60e31b6020808301918252601360005260129052905161299a917f51bff16c12f072e1c63eaac76d27ed06d041061648bf74844ad006ae6bd44d7091615688565b5067016345785d8a00007f51bff16c12f072e1c63eaac76d27ed06d041061648bf74844ad006ae6bd44d7155601e7f51bff16c12f072e1c63eaac76d27ed06d041061648bf74844ad006ae6bd44d728190557f51bff16c12f072e1c63eaac76d27ed06d041061648bf74844ad006ae6bd44d735560007f51bff16c12f072e1c63eaac76d27ed06d041061648bf74844ad006ae6bd44d7481905560147f17bb5cf2fc7a6f50cc94c2441aa8b40633d519c366ef1355ea0dd04dd3027f208190556040805180820190915260048152635241524560e01b602082810191825292909352601290915251612aad917f17bb5cf2fc7a6f50cc94c2441aa8b40633d519c366ef1355ea0dd04dd3027f2191615688565b506040805180820190915260058152643937b6b0b760d91b60208083019182526014600052601290529051612b03917f17bb5cf2fc7a6f50cc94c2441aa8b40633d519c366ef1355ea0dd04dd3027f2291615688565b5067016345785d8a00007f17bb5cf2fc7a6f50cc94c2441aa8b40633d519c366ef1355ea0dd04dd3027f2355601e7f17bb5cf2fc7a6f50cc94c2441aa8b40633d519c366ef1355ea0dd04dd3027f248190557f17bb5cf2fc7a6f50cc94c2441aa8b40633d519c366ef1355ea0dd04dd3027f255560007f17bb5cf2fc7a6f50cc94c2441aa8b40633d519c366ef1355ea0dd04dd3027f2681905560157fa5769ab4976232a10e433776f09325b00d3bcdda881193f84d5157d906680d178190556040805180820190915260048152635241524560e01b602082810191825292909352601290915251612c16917fa5769ab4976232a10e433776f09325b00d3bcdda881193f84d5157d906680d1891615688565b506040805180820190915260058152644d6f72676960d81b60208083019182526015600052601290529051612c6c917fa5769ab4976232a10e433776f09325b00d3bcdda881193f84d5157d906680d1991615688565b5067016345785d8a00007fa5769ab4976232a10e433776f09325b00d3bcdda881193f84d5157d906680d1a55601e7fa5769ab4976232a10e433776f09325b00d3bcdda881193f84d5157d906680d1b8190557fa5769ab4976232a10e433776f09325b00d3bcdda881193f84d5157d906680d1c5560007fa5769ab4976232a10e433776f09325b00d3bcdda881193f84d5157d906680d1d81905560167fc4f8f7f5ee45326dd80cc2262cf4948c0aa62c4ed9b775cbe9662ca3618994d38190556040805180820190915260048152635241524560e01b602082810191825292909352601290915251612d7f917fc4f8f7f5ee45326dd80cc2262cf4948c0aa62c4ed9b775cbe9662ca3618994d491615688565b5060408051808201909152600381526241766160e81b60208083019182526016600052601290529051612dd3917fc4f8f7f5ee45326dd80cc2262cf4948c0aa62c4ed9b775cbe9662ca3618994d591615688565b5067016345785d8a00007fc4f8f7f5ee45326dd80cc2262cf4948c0aa62c4ed9b775cbe9662ca3618994d655601e7fc4f8f7f5ee45326dd80cc2262cf4948c0aa62c4ed9b775cbe9662ca3618994d78190557fc4f8f7f5ee45326dd80cc2262cf4948c0aa62c4ed9b775cbe9662ca3618994d85560007fc4f8f7f5ee45326dd80cc2262cf4948c0aa62c4ed9b775cbe9662ca3618994d981905560177fafbfd0ac8ae8fb905ca0f4c88b8a1707eac98e507a6ea9cfef95c6c8a61605e28190556040805180820190915260048152635241524560e01b602082810191825292909352601290915251612ee6917fafbfd0ac8ae8fb905ca0f4c88b8a1707eac98e507a6ea9cfef95c6c8a61605e391615688565b506040805180820190915260068152652530b9b832b960d11b60208083019182526017600052601290529051612f3d917fafbfd0ac8ae8fb905ca0f4c88b8a1707eac98e507a6ea9cfef95c6c8a61605e491615688565b5067016345785d8a00007fafbfd0ac8ae8fb905ca0f4c88b8a1707eac98e507a6ea9cfef95c6c8a61605e555601e7fafbfd0ac8ae8fb905ca0f4c88b8a1707eac98e507a6ea9cfef95c6c8a61605e68190557fafbfd0ac8ae8fb905ca0f4c88b8a1707eac98e507a6ea9cfef95c6c8a61605e75560007fafbfd0ac8ae8fb905ca0f4c88b8a1707eac98e507a6ea9cfef95c6c8a61605e881905560187fa33a2de9f35e8e968dcae4e0cc19fddc2553dfbee26765fe58185d6a64f8671f8190556040805180820190915260048152635241524560e01b602082810191825292909352601290915251613050917fa33a2de9f35e8e968dcae4e0cc19fddc2553dfbee26765fe58185d6a64f8672091615688565b50604080518082019091526006815265536f7068696160d01b602080830191825260186000526012905290516130a7917fa33a2de9f35e8e968dcae4e0cc19fddc2553dfbee26765fe58185d6a64f8672191615688565b5067016345785d8a00007fa33a2de9f35e8e968dcae4e0cc19fddc2553dfbee26765fe58185d6a64f8672255601e7fa33a2de9f35e8e968dcae4e0cc19fddc2553dfbee26765fe58185d6a64f867238190557fa33a2de9f35e8e968dcae4e0cc19fddc2553dfbee26765fe58185d6a64f867245560007fa33a2de9f35e8e968dcae4e0cc19fddc2553dfbee26765fe58185d6a64f8672581905560197f799a11cccb7c7d688c679c3a3d7f03e6af337f5bda872b434ee1b298e35f586b8190556040805180820190915260048152635241524560e01b6020828101918252929093526012909152516131ba917f799a11cccb7c7d688c679c3a3d7f03e6af337f5bda872b434ee1b298e35f586c91615688565b506040805180820190915260058152642630b6b0b960d91b60208083019182526019600052601290529051613210917f799a11cccb7c7d688c679c3a3d7f03e6af337f5bda872b434ee1b298e35f586d91615688565b5067016345785d8a00007f799a11cccb7c7d688c679c3a3d7f03e6af337f5bda872b434ee1b298e35f586e55601e7f799a11cccb7c7d688c679c3a3d7f03e6af337f5bda872b434ee1b298e35f586f8190557f799a11cccb7c7d688c679c3a3d7f03e6af337f5bda872b434ee1b298e35f58705560007f799a11cccb7c7d688c679c3a3d7f03e6af337f5bda872b434ee1b298e35f5871819055601a7f8d9e86ecc9cfa3b901ca58331d0593350d9cdcce273b033d26089acd5d7d88e58190556040805180820190915260048152635241524560e01b602082810191825292909352601290915251613323917f8d9e86ecc9cfa3b901ca58331d0593350d9cdcce273b033d26089acd5d7d88e691615688565b5060408051808201909152600681526514dd5b5b595d60d21b6020808301918252601a60005260129052905161337a917f8d9e86ecc9cfa3b901ca58331d0593350d9cdcce273b033d26089acd5d7d88e791615688565b5067016345785d8a00007f8d9e86ecc9cfa3b901ca58331d0593350d9cdcce273b033d26089acd5d7d88e855601e7f8d9e86ecc9cfa3b901ca58331d0593350d9cdcce273b033d26089acd5d7d88e98190557f8d9e86ecc9cfa3b901ca58331d0593350d9cdcce273b033d26089acd5d7d88ea5560007f8d9e86ecc9cfa3b901ca58331d0593350d9cdcce273b033d26089acd5d7d88eb819055601b7ffe245b8a86dfed39e50e140f946f5f90c9b63f021ac305c5c49c6ec6ae1bd96581905560408051808201909152600681526521a7a6a6a7a760d11b60208281019182529290935260129091525161348f917ffe245b8a86dfed39e50e140f946f5f90c9b63f021ac305c5c49c6ec6ae1bd96691615688565b5060408051808201909152600681526513585b99da5d60d21b6020808301918252601b6000526012905290516134e6917ffe245b8a86dfed39e50e140f946f5f90c9b63f021ac305c5c49c6ec6ae1bd96791615688565b50668e1bc9bf0400007ffe245b8a86dfed39e50e140f946f5f90c9b63f021ac305c5c49c6ec6ae1bd9685560327ffe245b8a86dfed39e50e140f946f5f90c9b63f021ac305c5c49c6ec6ae1bd9698190557ffe245b8a86dfed39e50e140f946f5f90c9b63f021ac305c5c49c6ec6ae1bd96a5560007ffe245b8a86dfed39e50e140f946f5f90c9b63f021ac305c5c49c6ec6ae1bd96b819055601c7f3affdb785d36316c9fef177f91340fd0f5bb90c89bc8295707f713a205d77f4581905560408051808201909152600681526521a7a6a6a7a760d11b6020828101918252929093526012909152516135fa917f3affdb785d36316c9fef177f91340fd0f5bb90c89bc8295707f713a205d77f4691615688565b5060408051808201909152600781526653746174746f6d60c81b6020808301918252601c600052601290529051613652917f3affdb785d36316c9fef177f91340fd0f5bb90c89bc8295707f713a205d77f4791615688565b50668e1bc9bf0400007f3affdb785d36316c9fef177f91340fd0f5bb90c89bc8295707f713a205d77f485560327f3affdb785d36316c9fef177f91340fd0f5bb90c89bc8295707f713a205d77f498190557f3affdb785d36316c9fef177f91340fd0f5bb90c89bc8295707f713a205d77f4a5560007f3affdb785d36316c9fef177f91340fd0f5bb90c89bc8295707f713a205d77f4b819055601d7fb72da517d4eb156f9f42b216ddad816baf88089ca2cb36ef04c955788956d4a181905560408051808201909152600681526521a7a6a6a7a760d11b602082810191825292909352601290915251613766917fb72da517d4eb156f9f42b216ddad816baf88089ca2cb36ef04c955788956d4a291615688565b50604080518082019091526005815264416967756f60d81b6020808301918252601d6000526012905290516137bc917fb72da517d4eb156f9f42b216ddad816baf88089ca2cb36ef04c955788956d4a391615688565b50668e1bc9bf0400007fb72da517d4eb156f9f42b216ddad816baf88089ca2cb36ef04c955788956d4a45560327fb72da517d4eb156f9f42b216ddad816baf88089ca2cb36ef04c955788956d4a58190557fb72da517d4eb156f9f42b216ddad816baf88089ca2cb36ef04c955788956d4a65560007fb72da517d4eb156f9f42b216ddad816baf88089ca2cb36ef04c955788956d4a7819055601e7f199c10702fca258f95ab9753bf853327fbf122a4162eee7785be8128605a78cf81905560408051808201909152600681526521a7a6a6a7a760d11b6020828101918252929093526012909152516138d0917f199c10702fca258f95ab9753bf853327fbf122a4162eee7785be8128605a78d091615688565b506040805180820190915260048152634a61766160e01b6020808301918252601e600052601290529051613925917f199c10702fca258f95ab9753bf853327fbf122a4162eee7785be8128605a78d191615688565b50668e1bc9bf0400007f199c10702fca258f95ab9753bf853327fbf122a4162eee7785be8128605a78d25560327f199c10702fca258f95ab9753bf853327fbf122a4162eee7785be8128605a78d38190557f199c10702fca258f95ab9753bf853327fbf122a4162eee7785be8128605a78d45560007f199c10702fca258f95ab9753bf853327fbf122a4162eee7785be8128605a78d5819055601f7f961118bcd62da87bc22f0cc4bd1b1e975b70e00fd04a08793bfda0486ceac1ff81905560408051808201909152600681526521a7a6a6a7a760d11b602082810191825292909352601290915251613a39917f961118bcd62da87bc22f0cc4bd1b1e975b70e00fd04a08793bfda0486ceac20091615688565b5060408051808201909152600681526546726573796160d01b6020808301918252601f600052601290529051613a90917f961118bcd62da87bc22f0cc4bd1b1e975b70e00fd04a08793bfda0486ceac20191615688565b50668e1bc9bf0400007f961118bcd62da87bc22f0cc4bd1b1e975b70e00fd04a08793bfda0486ceac2025560327f961118bcd62da87bc22f0cc4bd1b1e975b70e00fd04a08793bfda0486ceac2038190557f961118bcd62da87bc22f0cc4bd1b1e975b70e00fd04a08793bfda0486ceac2045560007f961118bcd62da87bc22f0cc4bd1b1e975b70e00fd04a08793bfda0486ceac20581905560207fa8d458a6980a72f73250fbc8c118acfc7fc38977187b531abf1e3fbf70ce1f0581905560408051808201909152600681526521a7a6a6a7a760d11b81830190815292829052601290915251613ba2917fa8d458a6980a72f73250fbc8c118acfc7fc38977187b531abf1e3fbf70ce1f0691615688565b5060408051808201909152600a815269084c2c6dedce6dad2e8d60b31b60208083019182526000819052601290529051613bfd917fa8d458a6980a72f73250fbc8c118acfc7fc38977187b531abf1e3fbf70ce1f0791615688565b50668e1bc9bf0400007fa8d458a6980a72f73250fbc8c118acfc7fc38977187b531abf1e3fbf70ce1f085560327fa8d458a6980a72f73250fbc8c118acfc7fc38977187b531abf1e3fbf70ce1f098190557fa8d458a6980a72f73250fbc8c118acfc7fc38977187b531abf1e3fbf70ce1f0a5560007fa8d458a6980a72f73250fbc8c118acfc7fc38977187b531abf1e3fbf70ce1f0b81905560217f39c1e2f83c04b7a5f78dbd649407d88e8f3b7add5c5ef2a570824616495d1ccf81905560408051808201909152600681526521a7a6a6a7a760d11b602082810191825292909352601290915251613d11917f39c1e2f83c04b7a5f78dbd649407d88e8f3b7add5c5ef2a570824616495d1cd091615688565b506040805180820190915260048152634e616e6f60e01b60208083019182526021600052601290529051613d66917f39c1e2f83c04b7a5f78dbd649407d88e8f3b7add5c5ef2a570824616495d1cd191615688565b50668e1bc9bf0400007f39c1e2f83c04b7a5f78dbd649407d88e8f3b7add5c5ef2a570824616495d1cd25560327f39c1e2f83c04b7a5f78dbd649407d88e8f3b7add5c5ef2a570824616495d1cd38190557f39c1e2f83c04b7a5f78dbd649407d88e8f3b7add5c5ef2a570824616495d1cd45560007f39c1e2f83c04b7a5f78dbd649407d88e8f3b7add5c5ef2a570824616495d1cd581905560227fb68c6efe9309d69c37dfa4af67479a9c5df214daac0566e0cede6e45a096b4cd81905560408051808201909152600681526521a7a6a6a7a760d11b602082810191825292909352601290915251613e7a917fb68c6efe9309d69c37dfa4af67479a9c5df214daac0566e0cede6e45a096b4ce91615688565b506040805180820190915260058152644173686f6b60d81b60208083019182526022600052601290529051613ed0917fb68c6efe9309d69c37dfa4af67479a9c5df214daac0566e0cede6e45a096b4cf91615688565b50668e1bc9bf0400007fb68c6efe9309d69c37dfa4af67479a9c5df214daac0566e0cede6e45a096b4d05560327fb68c6efe9309d69c37dfa4af67479a9c5df214daac0566e0cede6e45a096b4d18190557fb68c6efe9309d69c37dfa4af67479a9c5df214daac0566e0cede6e45a096b4d25560007fb68c6efe9309d69c37dfa4af67479a9c5df214daac0566e0cede6e45a096b4d381905560237f506a6306524c79863166c6c06b84986e9921e6b51a71f1649ad7529b61ee00e281905560408051808201909152600681526521a7a6a6a7a760d11b602082810191825292909352601290915251613fe4917f506a6306524c79863166c6c06b84986e9921e6b51a71f1649ad7529b61ee00e391615688565b50604080518082019091526005815264436174687960d81b6020808301918252602360005260129052905161403a917f506a6306524c79863166c6c06b84986e9921e6b51a71f1649ad7529b61ee00e491615688565b50668e1bc9bf0400007f506a6306524c79863166c6c06b84986e9921e6b51a71f1649ad7529b61ee00e55560327f506a6306524c79863166c6c06b84986e9921e6b51a71f1649ad7529b61ee00e68190557f506a6306524c79863166c6c06b84986e9921e6b51a71f1649ad7529b61ee00e75560007f506a6306524c79863166c6c06b84986e9921e6b51a71f1649ad7529b61ee00e881905560247fdbe3f9ea70dba34eaca51dfd95e30f99a566492c231bb38ba19055a26cf1f50181905560408051808201909152600681526521a7a6a6a7a760d11b60208281019182529290935260129091525161414e917fdbe3f9ea70dba34eaca51dfd95e30f99a566492c231bb38ba19055a26cf1f50291615688565b506040805180820190915260078152660a0e4c2d6c2e6d60cb1b602080830191825260246000526012905290516141a6917fdbe3f9ea70dba34eaca51dfd95e30f99a566492c231bb38ba19055a26cf1f50391615688565b50602460009081526012602052668e1bc9bf0400007fdbe3f9ea70dba34eaca51dfd95e30f99a566492c231bb38ba19055a26cf1f5045560327fdbe3f9ea70dba34eaca51dfd95e30f99a566492c231bb38ba19055a26cf1f5058190557fdbe3f9ea70dba34eaca51dfd95e30f99a566492c231bb38ba19055a26cf1f506557fdbe3f9ea70dba34eaca51dfd95e30f99a566492c231bb38ba19055a26cf1f50755565b600a546001600160a01b031633146142735760405162461bcd60e51b81526004016108cd90615bcb565b610b45614da0565b6014818154811061428b57600080fd5b6000918252602090912001546001600160a01b0316905081565b6060600180546107d590615d43565b610c32338383614e05565b601260205260009081526040902080546001820180549192916142e190615d43565b80601f016020809104026020016040519081016040528092919081815260200182805461430d90615d43565b801561435a5780601f1061432f5761010080835404028352916020019161435a565b820191906000526020600020905b81548152906001019060200180831161433d57829003601f168201915b50505050509080600201805461436f90615d43565b80601f016020809104026020016040519081016040528092919081815260200182805461439b90615d43565b80156143e85780601f106143bd576101008083540402835291602001916143e8565b820191906000526020600020905b8154815290600101906020018083116143cb57829003601f168201915b5050505050908060030154908060040154908060050154908060060154905087565b600a54600160a01b900460ff16156144345760405162461bcd60e51b81526004016108cd90615ba1565b600c5460ff16156144875760405162461bcd60e51b815260206004820152601a60248201527f4e6f726d616c206d696e74696e6720697320636f6d706c65746500000000000060448201526064016108cd565b6000828152601260205260409020600301543410156144e85760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f72726563740000000000000060448201526064016108cd565b6000828152601260205260409020600501546145315760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016108cd565b601054610100900460ff1680614549575060105460ff165b61458e5760405162461bcd60e51b815260206004820152601660248201527514d85b19481a5cc81b9bdd081858dd1a5d99481e595d60521b60448201526064016108cd565b601054610100900460ff161561463957336000818152601360205260409020546001600160a01b0316146145f95760405162461bcd60e51b8152602060048201526012602482015271125cc81b9bdd081dda1a5d195b1a5cdd195960721b60448201526064016108cd565b6146038282614ed4565b33600090815260136020526040902060019081015461462191614f75565b33600090815260136020526040902060010155614643565b6146438282614ed4565b600b54600d5410610c3257600c805460ff191660011790555050565b6146693383614a0f565b6146855760405162461bcd60e51b81526004016108cd90615c00565b61469184848484614f88565b50505050565b6000818152600260205260409020546060906001600160a01b03166147165760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108cd565b6000828152600f60205260408120805461472f90615d43565b80601f016020809104026020016040519081016040528092919081815260200182805461475b90615d43565b80156147a85780601f1061477d576101008083540402835291602001916147a8565b820191906000526020600020905b81548152906001019060200180831161478b57829003601f168201915b5050505050905060006147b9614fbb565b90508051600014156147cc575092915050565b8151156147fe5780826040516020016147e6929190615ad0565b60405160208183030381529060405292505050919050565b8061480885614fca565b6040516020016147e6929190615ad0565b600a546001600160a01b031633146148435760405162461bcd60e51b81526004016108cd90615bcb565b60005b8151811015610c325761487182828151811061486457614864615def565b6020026020010151610e0d565b508061487c81615d7e565b915050614846565b600a546001600160a01b031633146148ae5760405162461bcd60e51b81526004016108cd90615bcb565b6001600160a01b0381166149135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108cd565b61491c81614d4e565b50565b600a546001600160a01b031633146149495760405162461bcd60e51b81526004016108cd90615bcb565b6010805460ff610100808304821615810261ff00199093169290921792839055910416610b45576010805460ff19169055565b60006001600160e01b0319821663780e9d6360e01b14806107c057506107c0826150c8565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906149d682610cdb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316614a885760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108cd565b6000614a9383610cdb565b9050806001600160a01b0316846001600160a01b03161480614ace5750836001600160a01b0316614ac384610858565b6001600160a01b0316145b80614afe57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316614b1982610cdb565b6001600160a01b031614614b815760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108cd565b6001600160a01b038216614be35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108cd565b614bee838383615118565b614bf96000826149a1565b6001600160a01b0383166000908152600360205260408120805460019290614c22908490615d00565b90915550506001600160a01b0382166000908152600360205260408120805460019290614c50908490615cd4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a54600160a01b900460ff16614d015760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108cd565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a54600160a01b900460ff1615614dca5760405162461bcd60e51b81526004016108cd90615ba1565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258614d313390565b816001600160a01b0316836001600160a01b03161415614e675760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108cd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600082815260126020526040902060060154614ef1906001614f75565b6000838152601260205260409020600681019190915560050154614f16906001614f75565b600083815260126020526040902060050155600d54614f41903390614f3c906001615cd4565b61514d565b614f59600d546001614f539190615cd4565b8261529b565b6001600d6000828254614f6c9190615cd4565b90915550505050565b6000614f818284615cd4565b9392505050565b614f93848484614b06565b614f9f84848484615333565b6146915760405162461bcd60e51b81526004016108cd90615b4f565b6060601180546107d590615d43565b606081614fee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115615018578061500281615d7e565b91506150119050600a83615cec565b9150614ff2565b60008167ffffffffffffffff81111561503357615033615e05565b6040519080825280601f01601f19166020018201604052801561505d576020820181803683370190505b5090505b8415614afe57615072600183615d00565b915061507f600a86615d99565b61508a906030615cd4565b60f81b81838151811061509f5761509f615def565b60200101906001600160f81b031916908160001a9053506150c1600a86615cec565b9450615061565b60006001600160e01b031982166380ac58cd60e01b14806150f957506001600160e01b03198216635b5e139f60e01b145b806107c057506301ffc9a760e01b6001600160e01b03198316146107c0565b600a54600160a01b900460ff16156151425760405162461bcd60e51b81526004016108cd90615ba1565b610a03838383615440565b6001600160a01b0382166151a35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108cd565b6000818152600260205260409020546001600160a01b0316156152085760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108cd565b61521460008383615118565b6001600160a01b038216600090815260036020526040812080546001929061523d908490615cd4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000828152600260205260409020546001600160a01b03166153145760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108cd565b6000828152600f602090815260409091208251610a0392840190615688565b60006001600160a01b0384163b1561543557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290615377903390899088908890600401615aff565b602060405180830381600087803b15801561539157600080fd5b505af19250505080156153c1575060408051601f3d908101601f191682019092526153be918101906159f2565b60015b61541b573d8080156153ef576040519150601f19603f3d011682016040523d82523d6000602084013e6153f4565b606091505b5080516154135760405162461bcd60e51b81526004016108cd90615b4f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050614afe565b506001949350505050565b6001600160a01b03831661549b5761549681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6154be565b816001600160a01b0316836001600160a01b0316146154be576154be83826154f8565b6001600160a01b0382166154d557610a0381615595565b826001600160a01b0316826001600160a01b031614610a0357610a038282615644565b6000600161550584610d52565b61550f9190615d00565b600083815260076020526040902054909150808214615562576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906155a790600190615d00565b600083815260096020526040812054600880549394509092849081106155cf576155cf615def565b9060005260206000200154905080600883815481106155f0576155f0615def565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061562857615628615dd9565b6001900381819060005260206000200160009055905550505050565b600061564f83610d52565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461569490615d43565b90600052602060002090601f0160209004810192826156b657600085556156fc565b82601f106156cf57805160ff19168380011785556156fc565b828001600101855582156156fc579182015b828111156156fc5782518255916020019190600101906156e1565b5061570892915061570c565b5090565b5b80821115615708576000815560010161570d565b600067ffffffffffffffff83111561573b5761573b615e05565b61574e601f8401601f1916602001615ca3565b905082815283838301111561576257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461579057600080fd5b919050565b600082601f8301126157a657600080fd5b614f8183833560208501615721565b6000602082840312156157c757600080fd5b614f8182615779565b600080604083850312156157e357600080fd5b6157ec83615779565b91506157fa60208401615779565b90509250929050565b60008060006060848603121561581857600080fd5b61582184615779565b925061582f60208501615779565b9150604084013590509250925092565b6000806000806080858703121561585557600080fd5b61585e85615779565b935061586c60208601615779565b925060408501359150606085013567ffffffffffffffff81111561588f57600080fd5b8501601f810187136158a057600080fd5b6158af87823560208401615721565b91505092959194509250565b600080604083850312156158ce57600080fd5b6158d783615779565b9150602083013580151581146158ec57600080fd5b809150509250929050565b6000806040838503121561590a57600080fd5b61591383615779565b946020939093013593505050565b6000602080838503121561593457600080fd5b823567ffffffffffffffff8082111561594c57600080fd5b818501915085601f83011261596057600080fd5b81358181111561597257615972615e05565b8060051b9150615983848301615ca3565b8181528481019084860184860187018a101561599e57600080fd5b600095505b838610156159c8576159b481615779565b8352600195909501949186019186016159a3565b5098975050505050505050565b6000602082840312156159e757600080fd5b8135614f8181615e1b565b600060208284031215615a0457600080fd5b8151614f8181615e1b565b600060208284031215615a2157600080fd5b813567ffffffffffffffff811115615a3857600080fd5b614afe84828501615795565b600060208284031215615a5657600080fd5b5035919050565b60008060408385031215615a7057600080fd5b82359150602083013567ffffffffffffffff811115615a8e57600080fd5b615a9a85828601615795565b9150509250929050565b60008151808452615abc816020860160208601615d17565b601f01601f19169290920160200192915050565b60008351615ae2818460208801615d17565b835190830190615af6818360208801615d17565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615b3290830184615aa4565b9695505050505050565b602081526000614f816020830184615aa4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b87815260e060208201526000615c6a60e0830189615aa4565b8281036040840152615c7c8189615aa4565b9150508560608301528460808301528360a08301528260c083015298975050505050505050565b604051601f8201601f1916810167ffffffffffffffff81118282101715615ccc57615ccc615e05565b604052919050565b60008219821115615ce757615ce7615dad565b500190565b600082615cfb57615cfb615dc3565b500490565b600082821015615d1257615d12615dad565b500390565b60005b83811015615d32578181015183820152602001615d1a565b838111156146915750506000910152565b600181811c90821680615d5757607f821691505b60208210811415615d7857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415615d9257615d92615dad565b5060010190565b600082615da857615da8615dc3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461491c57600080fdfea26469706673582212203c9a8853abff5b338f52c28ec29f770dd2299a634e1bf8c2a47be9c2a1b9e0df64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102505760003560e01c80636817c76c116101395780639b19251a116100b6578063c87b56dd1161007a578063c87b56dd146106dd578063de972357146106fd578063e2ec6ec314610717578063e985e9c514610737578063f2fde38b14610780578063f48c0b35146107a057600080fd5b80639b19251a146105f8578063a22cb46514610657578063a45b703d14610677578063b087e37c146106aa578063b88d4fde146106bd57600080fd5b80637f88f303116100fd5780637f88f3031461057b5780638456cb591461059057806385c6b79e146105a55780638da5cb5b146105c557806395d89b41146105e357600080fd5b80636817c76c146104f657806370a082311461050c578063715018a61461052c57806374689fdf146105415780637b9417c81461055b57600080fd5b80633af32abf116101d257806342842e0e1161019657806342842e0e146104425780634f6ccce71461046257806355f804b3146104825780635c975abb146104a25780635fd8c710146104c15780636352211e146104d657600080fd5b80633af32abf146103b35780633f4ba83a146103ef5780633f879faf146104045780633fc287c11461041a57806341eeb07f1461042d57600080fd5b806318160ddd1161021957806318160ddd1461032a578063197a7dd01461033f5780631f0234d81461035457806323b872dd146103735780632f745c591461039357600080fd5b80624563791461025557806301ffc9a71461027e57806306fdde03146102ae578063081812fc146102d0578063095ea7b314610308575b600080fd5b34801561026157600080fd5b5061026b600d5481565b6040519081526020015b60405180910390f35b34801561028a57600080fd5b5061029e6102993660046159d5565b6107b5565b6040519015158152602001610275565b3480156102ba57600080fd5b506102c36107c6565b6040516102759190615b3c565b3480156102dc57600080fd5b506102f06102eb366004615a44565b610858565b6040516001600160a01b039091168152602001610275565b34801561031457600080fd5b506103286103233660046158f7565b6108f2565b005b34801561033657600080fd5b5060085461026b565b34801561034b57600080fd5b50610328610a08565b34801561036057600080fd5b5060105461029e90610100900460ff1681565b34801561037f57600080fd5b5061032861038e366004615803565b610a4c565b34801561039f57600080fd5b5061026b6103ae3660046158f7565b610a7d565b3480156103bf57600080fd5b5061029e6103ce3660046157b5565b6001600160a01b039081166000818152601360205260409020549091161490565b3480156103fb57600080fd5b50610328610b13565b34801561041057600080fd5b5061026b600b5481565b34801561042657600080fd5b504761026b565b34801561043957600080fd5b5060145461026b565b34801561044e57600080fd5b5061032861045d366004615803565b610b47565b34801561046e57600080fd5b5061026b61047d366004615a44565b610b62565b34801561048e57600080fd5b5061032861049d366004615a0f565b610bf5565b3480156104ae57600080fd5b50600a54600160a01b900460ff1661029e565b3480156104cd57600080fd5b50610328610c36565b3480156104e257600080fd5b506102f06104f1366004615a44565b610cdb565b34801561050257600080fd5b5061026b600e5481565b34801561051857600080fd5b5061026b6105273660046157b5565b610d52565b34801561053857600080fd5b50610328610dd9565b34801561054d57600080fd5b50600c5461029e9060ff1681565b34801561056757600080fd5b5061029e6105763660046157b5565b610e0d565b34801561058757600080fd5b50610328610f09565b34801561059c57600080fd5b50610328614249565b3480156105b157600080fd5b506102f06105c0366004615a44565b61427b565b3480156105d157600080fd5b50600a546001600160a01b03166102f0565b3480156105ef57600080fd5b506102c36142a5565b34801561060457600080fd5b506106386106133660046157b5565b601360205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b039093168352602083019190915201610275565b34801561066357600080fd5b506103286106723660046158bb565b6142b4565b34801561068357600080fd5b50610697610692366004615a44565b6142bf565b6040516102759796959493929190615c51565b6103286106b8366004615a5d565b61440a565b3480156106c957600080fd5b506103286106d836600461583f565b61465f565b3480156106e957600080fd5b506102c36106f8366004615a44565b614697565b34801561070957600080fd5b5060105461029e9060ff1681565b34801561072357600080fd5b50610328610732366004615921565b614819565b34801561074357600080fd5b5061029e6107523660046157d0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078c57600080fd5b5061032861079b3660046157b5565b614884565b3480156107ac57600080fd5b5061032861491f565b60006107c08261497c565b92915050565b6060600080546107d590615d43565b80601f016020809104026020016040519081016040528092919081815260200182805461080190615d43565b801561084e5780601f106108235761010080835404028352916020019161084e565b820191906000526020600020905b81548152906001019060200180831161083157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108d65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108fd82610cdb565b9050806001600160a01b0316836001600160a01b0316141561096b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108cd565b336001600160a01b038216148061098757506109878133610752565b6109f95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108cd565b610a0383836149a1565b505050565b600a546001600160a01b03163314610a325760405162461bcd60e51b81526004016108cd90615bcb565b6010805461ff001960ff8216151661ffff19909116179055565b610a563382614a0f565b610a725760405162461bcd60e51b81526004016108cd90615c00565b610a03838383614b06565b6000610a8883610d52565b8210610aea5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108cd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b3d5760405162461bcd60e51b81526004016108cd90615bcb565b610b45614cb1565b565b610a038383836040518060200160405280600081525061465f565b6000610b6d60085490565b8210610bd05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108cd565b60088281548110610be357610be3615def565b90600052602060002001549050919050565b600a546001600160a01b03163314610c1f5760405162461bcd60e51b81526004016108cd90615bcb565b8051610c32906011906020840190615688565b5050565b600a546001600160a01b03163314610c605760405162461bcd60e51b81526004016108cd90615bcb565b4780610cae5760405162461bcd60e51b815260206004820152601960248201527f646f6573206e6f74206861766520616e792062616c616e63650000000000000060448201526064016108cd565b604051339082156108fc029083906000818181858888f19350505050158015610c32573d6000803e3d6000fd5b6000818152600260205260408120546001600160a01b0316806107c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108cd565b60006001600160a01b038216610dbd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108cd565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e035760405162461bcd60e51b81526004016108cd90615bcb565b610b456000614d4e565b600a546000906001600160a01b03163314610e3a5760405162461bcd60e51b81526004016108cd90615bcb565b6001600160a01b038083166000818152601360205260409020549091161415610e9b5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481dda1a5d195b1a5cdd1959606a1b60448201526064016108cd565b506001600160a01b0316600081815260136020526040812080546001600160a01b031990811684178255600191820183905560148054808401825593527fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec9092018054909216909217905590565b600a546001600160a01b03163314610f335760405162461bcd60e51b81526004016108cd90615bcb565b60017f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a3819055604080518082019091526005815264554c54524160d81b6020828101918252600093909352601290925251610faf917f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a491615688565b5060408051808201909152600981526850726f766f7a6f726960b81b60208083019182526001600052601290529051611009917f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a591615688565b50678ac7230489e800007f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a65560017f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a78190557f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a85560007f71a67924699a20698523213e55fe499d539379d7769cd5567e2c45d583f815a981905560027f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b28190556040805180820190915260098152684c4547454e4441525960b81b602082810191825292909352601290915251611121917f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b391615688565b50604080518082019091526008815267536f6c6f676f6e6960c01b6020808301918252600260005260129052905161117a917f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b491615688565b50670c7d713b49da00007f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b555600a7f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b68190557f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b75560007f8e1fee8c88a9e04123b21e90cae2727a7715bf522a1e46eb5934ccd05203a6b881905560037f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86976a8190556040805180820190915260098152684c4547454e4441525960b81b602082810191825292909352601290915251611292917f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86976b91615688565b506040805180820190915260068152654a6f686e6e7960d01b602080830191825260036000526012905290516112e9917f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86976c91615688565b50670c7d713b49da00007f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86976d55600a7f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86976e8190557f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86976f5560007f0f36ad39aee03e7108cc48f54934702a5f0d4066f10344cebf8198978d86977081905560047fb4fcd034df3d20faa1c133b66d862ce92732727d40916b48ffb4020cb00fe0538190556040805180820190915260098152684c4547454e4441525960b81b602082810191825292909352601290915251611401917fb4fcd034df3d20faa1c133b66d862ce92732727d40916b48ffb4020cb00fe05491615688565b50604080518082019091526004808252634d61747360e01b602080840191825260009290925260129091529051611459917fb4fcd034df3d20faa1c133b66d862ce92732727d40916b48ffb4020cb00fe05591615688565b50670c7d713b49da00007fb4fcd034df3d20faa1c133b66d862ce92732727d40916b48ffb4020cb00fe05655600a7fb4fcd034df3d20faa1c133b66d862ce92732727d40916b48ffb4020cb00fe0578190557fb4fcd034df3d20faa1c133b66d862ce92732727d40916b48ffb4020cb00fe0585560007fb4fcd034df3d20faa1c133b66d862ce92732727d40916b48ffb4020cb00fe05981905560057f45429b9195d4ec5c0cf6c69e9c21a4ca0ea773b702c2de5735f85d2631f267468190556040805180820190915260098152684c4547454e4441525960b81b602082810191825292909352601290915251611571917f45429b9195d4ec5c0cf6c69e9c21a4ca0ea773b702c2de5735f85d2631f2674791615688565b50604080518082019091526005808252645361756c6f60d81b6020808401918252600092909252601290915290516115ca917f45429b9195d4ec5c0cf6c69e9c21a4ca0ea773b702c2de5735f85d2631f2674891615688565b50670c7d713b49da00007f45429b9195d4ec5c0cf6c69e9c21a4ca0ea773b702c2de5735f85d2631f2674955600a7f45429b9195d4ec5c0cf6c69e9c21a4ca0ea773b702c2de5735f85d2631f2674a8190557f45429b9195d4ec5c0cf6c69e9c21a4ca0ea773b702c2de5735f85d2631f2674b5560007f45429b9195d4ec5c0cf6c69e9c21a4ca0ea773b702c2de5735f85d2631f2674c81905560067f1223f9031f9dca49a7844c397098ce9a4e80513444d0a8bb59820dff564808e48190556040805180820190915260098152684c4547454e4441525960b81b6020828101918252929093526012909152516116e2917f1223f9031f9dca49a7844c397098ce9a4e80513444d0a8bb59820dff564808e591615688565b506040805180820190915260078152662532b936b0b4b760c91b6020808301918252600660005260129052905161173a917f1223f9031f9dca49a7844c397098ce9a4e80513444d0a8bb59820dff564808e691615688565b50670c7d713b49da00007f1223f9031f9dca49a7844c397098ce9a4e80513444d0a8bb59820dff564808e755600a7f1223f9031f9dca49a7844c397098ce9a4e80513444d0a8bb59820dff564808e88190557f1223f9031f9dca49a7844c397098ce9a4e80513444d0a8bb59820dff564808e95560007f1223f9031f9dca49a7844c397098ce9a4e80513444d0a8bb59820dff564808ea81905560077f724fd36bd271795fe7866d4cc83b61084ef704502b00c2e0b28047123b3c1acc8190556040805180820190915260048152634550494360e01b60208281019182529290935260129091525161184d917f724fd36bd271795fe7866d4cc83b61084ef704502b00c2e0b28047123b3c1acd91615688565b5060408051808201909152600780825266526f766572636560c81b6020808401918252600092909252601290915290516118a8917f724fd36bd271795fe7866d4cc83b61084ef704502b00c2e0b28047123b3c1ace91615688565b506703782dace9d900007f724fd36bd271795fe7866d4cc83b61084ef704502b00c2e0b28047123b3c1acf55600f7f724fd36bd271795fe7866d4cc83b61084ef704502b00c2e0b28047123b3c1ad08190557f724fd36bd271795fe7866d4cc83b61084ef704502b00c2e0b28047123b3c1ad15560007f724fd36bd271795fe7866d4cc83b61084ef704502b00c2e0b28047123b3c1ad281905560087f855d8d6df66418fea944661cfca175a2245b01f09908f1f662c4fa2b3cbf92998190556040805180820190915260048152634550494360e01b6020828101918252929093526012909152516119bb917f855d8d6df66418fea944661cfca175a2245b01f09908f1f662c4fa2b3cbf929a91615688565b506040805180820190915260038152624c696160e81b60208083019182526008600052601290529051611a0f917f855d8d6df66418fea944661cfca175a2245b01f09908f1f662c4fa2b3cbf929b91615688565b506703782dace9d900007f855d8d6df66418fea944661cfca175a2245b01f09908f1f662c4fa2b3cbf929c55600f7f855d8d6df66418fea944661cfca175a2245b01f09908f1f662c4fa2b3cbf929d8190557f855d8d6df66418fea944661cfca175a2245b01f09908f1f662c4fa2b3cbf929e5560007f855d8d6df66418fea944661cfca175a2245b01f09908f1f662c4fa2b3cbf929f81905560097fb9bfc87ab6d50430c17fad3d76aa4e9fce5cb9f8a8035e5ad64505fa1e31bdb98190556040805180820190915260048152634550494360e01b602082810191825292909352601290915251611b22917fb9bfc87ab6d50430c17fad3d76aa4e9fce5cb9f8a8035e5ad64505fa1e31bdba91615688565b506040805180820190915260038152624d696160e81b60208083019182526009600052601290529051611b76917fb9bfc87ab6d50430c17fad3d76aa4e9fce5cb9f8a8035e5ad64505fa1e31bdbb91615688565b506703782dace9d900007fb9bfc87ab6d50430c17fad3d76aa4e9fce5cb9f8a8035e5ad64505fa1e31bdbc55600f7fb9bfc87ab6d50430c17fad3d76aa4e9fce5cb9f8a8035e5ad64505fa1e31bdbd8190557fb9bfc87ab6d50430c17fad3d76aa4e9fce5cb9f8a8035e5ad64505fa1e31bdbe5560007fb9bfc87ab6d50430c17fad3d76aa4e9fce5cb9f8a8035e5ad64505fa1e31bdbf819055600a7f4d862627e71449ad0902e42fb445c6fefb557d066705175da90fdc325bd76e4e8190556040805180820190915260048152634550494360e01b602082810191825292909352601290915251611c89917f4d862627e71449ad0902e42fb445c6fefb557d066705175da90fdc325bd76e4f91615688565b506040805180820190915260068152652337b93132b960d11b6020808301918252600a600052601290529051611ce0917f4d862627e71449ad0902e42fb445c6fefb557d066705175da90fdc325bd76e5091615688565b506703782dace9d900007f4d862627e71449ad0902e42fb445c6fefb557d066705175da90fdc325bd76e5155600f7f4d862627e71449ad0902e42fb445c6fefb557d066705175da90fdc325bd76e528190557f4d862627e71449ad0902e42fb445c6fefb557d066705175da90fdc325bd76e535560007f4d862627e71449ad0902e42fb445c6fefb557d066705175da90fdc325bd76e54819055600b7f2495f4cb142bcb5be5e6e3ea9aaf4f6b4f9ecc9f26c2c53a2c4a12cbcae156ee8190556040805180820190915260048152634550494360e01b602082810191825292909352601290915251611df3917f2495f4cb142bcb5be5e6e3ea9aaf4f6b4f9ecc9f26c2c53a2c4a12cbcae156ef91615688565b50604080518082019091526009815268526f7a616c696e646160b81b6020808301918252600b600052601290529051611e4d917f2495f4cb142bcb5be5e6e3ea9aaf4f6b4f9ecc9f26c2c53a2c4a12cbcae156f091615688565b506703782dace9d900007f2495f4cb142bcb5be5e6e3ea9aaf4f6b4f9ecc9f26c2c53a2c4a12cbcae156f155600f7f2495f4cb142bcb5be5e6e3ea9aaf4f6b4f9ecc9f26c2c53a2c4a12cbcae156f28190557f2495f4cb142bcb5be5e6e3ea9aaf4f6b4f9ecc9f26c2c53a2c4a12cbcae156f35560007f2495f4cb142bcb5be5e6e3ea9aaf4f6b4f9ecc9f26c2c53a2c4a12cbcae156f4819055600c7f102203beef086490b6ace526d3f440341863884040816888f0c1d8918d4daa7a8190556040805180820190915260048152634550494360e01b602082810191825292909352601290915251611f60917f102203beef086490b6ace526d3f440341863884040816888f0c1d8918d4daa7b91615688565b50604080518082019091526007815266466562696f6c6160c81b6020808301918252600c600052601290529051611fb8917f102203beef086490b6ace526d3f440341863884040816888f0c1d8918d4daa7c91615688565b506703782dace9d900007f102203beef086490b6ace526d3f440341863884040816888f0c1d8918d4daa7d55600f7f102203beef086490b6ace526d3f440341863884040816888f0c1d8918d4daa7e8190557f102203beef086490b6ace526d3f440341863884040816888f0c1d8918d4daa7f5560007f102203beef086490b6ace526d3f440341863884040816888f0c1d8918d4daa80819055600d7f08002daeba8533611007c300fe5b0f2097c5e194f0f4087c9468255bee0bf7d98190556040805180820190915260048152634550494360e01b6020828101918252929093526012909152516120cb917f08002daeba8533611007c300fe5b0f2097c5e194f0f4087c9468255bee0bf7da91615688565b506040805180820190915260048152634c69616d60e01b6020808301918252600d600052601290529051612120917f08002daeba8533611007c300fe5b0f2097c5e194f0f4087c9468255bee0bf7db91615688565b506703782dace9d900007f08002daeba8533611007c300fe5b0f2097c5e194f0f4087c9468255bee0bf7dc55600f7f08002daeba8533611007c300fe5b0f2097c5e194f0f4087c9468255bee0bf7dd8190557f08002daeba8533611007c300fe5b0f2097c5e194f0f4087c9468255bee0bf7de5560007f08002daeba8533611007c300fe5b0f2097c5e194f0f4087c9468255bee0bf7df819055600e7f8f34c6b109aecf3bfac1757bacc0152b60fcb822751554c6190a91f3c234a2788190556040805180820190915260048152634550494360e01b602082810191825292909352601290915251612233917f8f34c6b109aecf3bfac1757bacc0152b60fcb822751554c6190a91f3c234a27991615688565b506040805180820190915260068152654f6c6976696160d01b6020808301918252600e60005260129052905161228a917f8f34c6b109aecf3bfac1757bacc0152b60fcb822751554c6190a91f3c234a27a91615688565b506703782dace9d900007f8f34c6b109aecf3bfac1757bacc0152b60fcb822751554c6190a91f3c234a27b55600f7f8f34c6b109aecf3bfac1757bacc0152b60fcb822751554c6190a91f3c234a27c8190557f8f34c6b109aecf3bfac1757bacc0152b60fcb822751554c6190a91f3c234a27d81905560007f8f34c6b109aecf3bfac1757bacc0152b60fcb822751554c6190a91f3c234a27e8190557f12864ea1602358025af3b40bb8d939272d37cf8b937fccc858336e2eaa450d808290556040805180820190915260048152634550494360e01b6020828101918252939092526012909252905161239e917f12864ea1602358025af3b40bb8d939272d37cf8b937fccc858336e2eaa450d8191615688565b50604080518082019091526005815264149bdb585960da1b6020808301918252600f6000526012905290516123f4917f12864ea1602358025af3b40bb8d939272d37cf8b937fccc858336e2eaa450d8291615688565b506703782dace9d900007f12864ea1602358025af3b40bb8d939272d37cf8b937fccc858336e2eaa450d8355600f7f12864ea1602358025af3b40bb8d939272d37cf8b937fccc858336e2eaa450d848190557f12864ea1602358025af3b40bb8d939272d37cf8b937fccc858336e2eaa450d855560007f12864ea1602358025af3b40bb8d939272d37cf8b937fccc858336e2eaa450d8681905560107f47cca4e5cf2ef3d1cf48e381e7c50f235175233c59e08319e054e746d4722a988190556040805180820190915260048152634550494360e01b602082810191825292909352601290915251612507917f47cca4e5cf2ef3d1cf48e381e7c50f235175233c59e08319e054e746d4722a9991615688565b5060408051808201909152600581526448656e727960d81b6020808301918252601060005260129052905161255d917f47cca4e5cf2ef3d1cf48e381e7c50f235175233c59e08319e054e746d4722a9a91615688565b506703782dace9d900007f47cca4e5cf2ef3d1cf48e381e7c50f235175233c59e08319e054e746d4722a9b55600f7f47cca4e5cf2ef3d1cf48e381e7c50f235175233c59e08319e054e746d4722a9c8190557f47cca4e5cf2ef3d1cf48e381e7c50f235175233c59e08319e054e746d4722a9d5560007f47cca4e5cf2ef3d1cf48e381e7c50f235175233c59e08319e054e746d4722a9e81905560117f6b485436b9b234417e59960d9ab1366322cfad1c365f281a05863557ce7f5ce48190556040805180820190915260048152635241524560e01b602082810191825292909352601290915251612670917f6b485436b9b234417e59960d9ab1366322cfad1c365f281a05863557ce7f5ce591615688565b50604080518082019091526007815266566974616c696b60c81b602080830191825260116000526012905290516126c8917f6b485436b9b234417e59960d9ab1366322cfad1c365f281a05863557ce7f5ce691615688565b5067016345785d8a00007f6b485436b9b234417e59960d9ab1366322cfad1c365f281a05863557ce7f5ce755601e7f6b485436b9b234417e59960d9ab1366322cfad1c365f281a05863557ce7f5ce88190557f6b485436b9b234417e59960d9ab1366322cfad1c365f281a05863557ce7f5ce95560007f6b485436b9b234417e59960d9ab1366322cfad1c365f281a05863557ce7f5cea81905560127f9f06b6a21011ceaf77e412292865f39f3e7ad40a4f4dee40defc38983937e0b78190556040805180820190915260048152635241524560e01b6020828101918252938390529190925290516127db917f9f06b6a21011ceaf77e412292865f39f3e7ad40a4f4dee40defc38983937e0b891615688565b506040805180820190915260068152652430b93832b960d11b60208083019182526012600081905290529051612832917f9f06b6a21011ceaf77e412292865f39f3e7ad40a4f4dee40defc38983937e0b991615688565b5067016345785d8a00007f9f06b6a21011ceaf77e412292865f39f3e7ad40a4f4dee40defc38983937e0ba55601e7f9f06b6a21011ceaf77e412292865f39f3e7ad40a4f4dee40defc38983937e0bb8190557f9f06b6a21011ceaf77e412292865f39f3e7ad40a4f4dee40defc38983937e0bc5560007f9f06b6a21011ceaf77e412292865f39f3e7ad40a4f4dee40defc38983937e0bd81905560137f51bff16c12f072e1c63eaac76d27ed06d041061648bf74844ad006ae6bd44d6e8190556040805180820190915260048152635241524560e01b602082810191825292909352601290915251612945917f51bff16c12f072e1c63eaac76d27ed06d041061648bf74844ad006ae6bd44d6f91615688565b5060408051808201909152600481526309cdec2d60e31b6020808301918252601360005260129052905161299a917f51bff16c12f072e1c63eaac76d27ed06d041061648bf74844ad006ae6bd44d7091615688565b5067016345785d8a00007f51bff16c12f072e1c63eaac76d27ed06d041061648bf74844ad006ae6bd44d7155601e7f51bff16c12f072e1c63eaac76d27ed06d041061648bf74844ad006ae6bd44d728190557f51bff16c12f072e1c63eaac76d27ed06d041061648bf74844ad006ae6bd44d735560007f51bff16c12f072e1c63eaac76d27ed06d041061648bf74844ad006ae6bd44d7481905560147f17bb5cf2fc7a6f50cc94c2441aa8b40633d519c366ef1355ea0dd04dd3027f208190556040805180820190915260048152635241524560e01b602082810191825292909352601290915251612aad917f17bb5cf2fc7a6f50cc94c2441aa8b40633d519c366ef1355ea0dd04dd3027f2191615688565b506040805180820190915260058152643937b6b0b760d91b60208083019182526014600052601290529051612b03917f17bb5cf2fc7a6f50cc94c2441aa8b40633d519c366ef1355ea0dd04dd3027f2291615688565b5067016345785d8a00007f17bb5cf2fc7a6f50cc94c2441aa8b40633d519c366ef1355ea0dd04dd3027f2355601e7f17bb5cf2fc7a6f50cc94c2441aa8b40633d519c366ef1355ea0dd04dd3027f248190557f17bb5cf2fc7a6f50cc94c2441aa8b40633d519c366ef1355ea0dd04dd3027f255560007f17bb5cf2fc7a6f50cc94c2441aa8b40633d519c366ef1355ea0dd04dd3027f2681905560157fa5769ab4976232a10e433776f09325b00d3bcdda881193f84d5157d906680d178190556040805180820190915260048152635241524560e01b602082810191825292909352601290915251612c16917fa5769ab4976232a10e433776f09325b00d3bcdda881193f84d5157d906680d1891615688565b506040805180820190915260058152644d6f72676960d81b60208083019182526015600052601290529051612c6c917fa5769ab4976232a10e433776f09325b00d3bcdda881193f84d5157d906680d1991615688565b5067016345785d8a00007fa5769ab4976232a10e433776f09325b00d3bcdda881193f84d5157d906680d1a55601e7fa5769ab4976232a10e433776f09325b00d3bcdda881193f84d5157d906680d1b8190557fa5769ab4976232a10e433776f09325b00d3bcdda881193f84d5157d906680d1c5560007fa5769ab4976232a10e433776f09325b00d3bcdda881193f84d5157d906680d1d81905560167fc4f8f7f5ee45326dd80cc2262cf4948c0aa62c4ed9b775cbe9662ca3618994d38190556040805180820190915260048152635241524560e01b602082810191825292909352601290915251612d7f917fc4f8f7f5ee45326dd80cc2262cf4948c0aa62c4ed9b775cbe9662ca3618994d491615688565b5060408051808201909152600381526241766160e81b60208083019182526016600052601290529051612dd3917fc4f8f7f5ee45326dd80cc2262cf4948c0aa62c4ed9b775cbe9662ca3618994d591615688565b5067016345785d8a00007fc4f8f7f5ee45326dd80cc2262cf4948c0aa62c4ed9b775cbe9662ca3618994d655601e7fc4f8f7f5ee45326dd80cc2262cf4948c0aa62c4ed9b775cbe9662ca3618994d78190557fc4f8f7f5ee45326dd80cc2262cf4948c0aa62c4ed9b775cbe9662ca3618994d85560007fc4f8f7f5ee45326dd80cc2262cf4948c0aa62c4ed9b775cbe9662ca3618994d981905560177fafbfd0ac8ae8fb905ca0f4c88b8a1707eac98e507a6ea9cfef95c6c8a61605e28190556040805180820190915260048152635241524560e01b602082810191825292909352601290915251612ee6917fafbfd0ac8ae8fb905ca0f4c88b8a1707eac98e507a6ea9cfef95c6c8a61605e391615688565b506040805180820190915260068152652530b9b832b960d11b60208083019182526017600052601290529051612f3d917fafbfd0ac8ae8fb905ca0f4c88b8a1707eac98e507a6ea9cfef95c6c8a61605e491615688565b5067016345785d8a00007fafbfd0ac8ae8fb905ca0f4c88b8a1707eac98e507a6ea9cfef95c6c8a61605e555601e7fafbfd0ac8ae8fb905ca0f4c88b8a1707eac98e507a6ea9cfef95c6c8a61605e68190557fafbfd0ac8ae8fb905ca0f4c88b8a1707eac98e507a6ea9cfef95c6c8a61605e75560007fafbfd0ac8ae8fb905ca0f4c88b8a1707eac98e507a6ea9cfef95c6c8a61605e881905560187fa33a2de9f35e8e968dcae4e0cc19fddc2553dfbee26765fe58185d6a64f8671f8190556040805180820190915260048152635241524560e01b602082810191825292909352601290915251613050917fa33a2de9f35e8e968dcae4e0cc19fddc2553dfbee26765fe58185d6a64f8672091615688565b50604080518082019091526006815265536f7068696160d01b602080830191825260186000526012905290516130a7917fa33a2de9f35e8e968dcae4e0cc19fddc2553dfbee26765fe58185d6a64f8672191615688565b5067016345785d8a00007fa33a2de9f35e8e968dcae4e0cc19fddc2553dfbee26765fe58185d6a64f8672255601e7fa33a2de9f35e8e968dcae4e0cc19fddc2553dfbee26765fe58185d6a64f867238190557fa33a2de9f35e8e968dcae4e0cc19fddc2553dfbee26765fe58185d6a64f867245560007fa33a2de9f35e8e968dcae4e0cc19fddc2553dfbee26765fe58185d6a64f8672581905560197f799a11cccb7c7d688c679c3a3d7f03e6af337f5bda872b434ee1b298e35f586b8190556040805180820190915260048152635241524560e01b6020828101918252929093526012909152516131ba917f799a11cccb7c7d688c679c3a3d7f03e6af337f5bda872b434ee1b298e35f586c91615688565b506040805180820190915260058152642630b6b0b960d91b60208083019182526019600052601290529051613210917f799a11cccb7c7d688c679c3a3d7f03e6af337f5bda872b434ee1b298e35f586d91615688565b5067016345785d8a00007f799a11cccb7c7d688c679c3a3d7f03e6af337f5bda872b434ee1b298e35f586e55601e7f799a11cccb7c7d688c679c3a3d7f03e6af337f5bda872b434ee1b298e35f586f8190557f799a11cccb7c7d688c679c3a3d7f03e6af337f5bda872b434ee1b298e35f58705560007f799a11cccb7c7d688c679c3a3d7f03e6af337f5bda872b434ee1b298e35f5871819055601a7f8d9e86ecc9cfa3b901ca58331d0593350d9cdcce273b033d26089acd5d7d88e58190556040805180820190915260048152635241524560e01b602082810191825292909352601290915251613323917f8d9e86ecc9cfa3b901ca58331d0593350d9cdcce273b033d26089acd5d7d88e691615688565b5060408051808201909152600681526514dd5b5b595d60d21b6020808301918252601a60005260129052905161337a917f8d9e86ecc9cfa3b901ca58331d0593350d9cdcce273b033d26089acd5d7d88e791615688565b5067016345785d8a00007f8d9e86ecc9cfa3b901ca58331d0593350d9cdcce273b033d26089acd5d7d88e855601e7f8d9e86ecc9cfa3b901ca58331d0593350d9cdcce273b033d26089acd5d7d88e98190557f8d9e86ecc9cfa3b901ca58331d0593350d9cdcce273b033d26089acd5d7d88ea5560007f8d9e86ecc9cfa3b901ca58331d0593350d9cdcce273b033d26089acd5d7d88eb819055601b7ffe245b8a86dfed39e50e140f946f5f90c9b63f021ac305c5c49c6ec6ae1bd96581905560408051808201909152600681526521a7a6a6a7a760d11b60208281019182529290935260129091525161348f917ffe245b8a86dfed39e50e140f946f5f90c9b63f021ac305c5c49c6ec6ae1bd96691615688565b5060408051808201909152600681526513585b99da5d60d21b6020808301918252601b6000526012905290516134e6917ffe245b8a86dfed39e50e140f946f5f90c9b63f021ac305c5c49c6ec6ae1bd96791615688565b50668e1bc9bf0400007ffe245b8a86dfed39e50e140f946f5f90c9b63f021ac305c5c49c6ec6ae1bd9685560327ffe245b8a86dfed39e50e140f946f5f90c9b63f021ac305c5c49c6ec6ae1bd9698190557ffe245b8a86dfed39e50e140f946f5f90c9b63f021ac305c5c49c6ec6ae1bd96a5560007ffe245b8a86dfed39e50e140f946f5f90c9b63f021ac305c5c49c6ec6ae1bd96b819055601c7f3affdb785d36316c9fef177f91340fd0f5bb90c89bc8295707f713a205d77f4581905560408051808201909152600681526521a7a6a6a7a760d11b6020828101918252929093526012909152516135fa917f3affdb785d36316c9fef177f91340fd0f5bb90c89bc8295707f713a205d77f4691615688565b5060408051808201909152600781526653746174746f6d60c81b6020808301918252601c600052601290529051613652917f3affdb785d36316c9fef177f91340fd0f5bb90c89bc8295707f713a205d77f4791615688565b50668e1bc9bf0400007f3affdb785d36316c9fef177f91340fd0f5bb90c89bc8295707f713a205d77f485560327f3affdb785d36316c9fef177f91340fd0f5bb90c89bc8295707f713a205d77f498190557f3affdb785d36316c9fef177f91340fd0f5bb90c89bc8295707f713a205d77f4a5560007f3affdb785d36316c9fef177f91340fd0f5bb90c89bc8295707f713a205d77f4b819055601d7fb72da517d4eb156f9f42b216ddad816baf88089ca2cb36ef04c955788956d4a181905560408051808201909152600681526521a7a6a6a7a760d11b602082810191825292909352601290915251613766917fb72da517d4eb156f9f42b216ddad816baf88089ca2cb36ef04c955788956d4a291615688565b50604080518082019091526005815264416967756f60d81b6020808301918252601d6000526012905290516137bc917fb72da517d4eb156f9f42b216ddad816baf88089ca2cb36ef04c955788956d4a391615688565b50668e1bc9bf0400007fb72da517d4eb156f9f42b216ddad816baf88089ca2cb36ef04c955788956d4a45560327fb72da517d4eb156f9f42b216ddad816baf88089ca2cb36ef04c955788956d4a58190557fb72da517d4eb156f9f42b216ddad816baf88089ca2cb36ef04c955788956d4a65560007fb72da517d4eb156f9f42b216ddad816baf88089ca2cb36ef04c955788956d4a7819055601e7f199c10702fca258f95ab9753bf853327fbf122a4162eee7785be8128605a78cf81905560408051808201909152600681526521a7a6a6a7a760d11b6020828101918252929093526012909152516138d0917f199c10702fca258f95ab9753bf853327fbf122a4162eee7785be8128605a78d091615688565b506040805180820190915260048152634a61766160e01b6020808301918252601e600052601290529051613925917f199c10702fca258f95ab9753bf853327fbf122a4162eee7785be8128605a78d191615688565b50668e1bc9bf0400007f199c10702fca258f95ab9753bf853327fbf122a4162eee7785be8128605a78d25560327f199c10702fca258f95ab9753bf853327fbf122a4162eee7785be8128605a78d38190557f199c10702fca258f95ab9753bf853327fbf122a4162eee7785be8128605a78d45560007f199c10702fca258f95ab9753bf853327fbf122a4162eee7785be8128605a78d5819055601f7f961118bcd62da87bc22f0cc4bd1b1e975b70e00fd04a08793bfda0486ceac1ff81905560408051808201909152600681526521a7a6a6a7a760d11b602082810191825292909352601290915251613a39917f961118bcd62da87bc22f0cc4bd1b1e975b70e00fd04a08793bfda0486ceac20091615688565b5060408051808201909152600681526546726573796160d01b6020808301918252601f600052601290529051613a90917f961118bcd62da87bc22f0cc4bd1b1e975b70e00fd04a08793bfda0486ceac20191615688565b50668e1bc9bf0400007f961118bcd62da87bc22f0cc4bd1b1e975b70e00fd04a08793bfda0486ceac2025560327f961118bcd62da87bc22f0cc4bd1b1e975b70e00fd04a08793bfda0486ceac2038190557f961118bcd62da87bc22f0cc4bd1b1e975b70e00fd04a08793bfda0486ceac2045560007f961118bcd62da87bc22f0cc4bd1b1e975b70e00fd04a08793bfda0486ceac20581905560207fa8d458a6980a72f73250fbc8c118acfc7fc38977187b531abf1e3fbf70ce1f0581905560408051808201909152600681526521a7a6a6a7a760d11b81830190815292829052601290915251613ba2917fa8d458a6980a72f73250fbc8c118acfc7fc38977187b531abf1e3fbf70ce1f0691615688565b5060408051808201909152600a815269084c2c6dedce6dad2e8d60b31b60208083019182526000819052601290529051613bfd917fa8d458a6980a72f73250fbc8c118acfc7fc38977187b531abf1e3fbf70ce1f0791615688565b50668e1bc9bf0400007fa8d458a6980a72f73250fbc8c118acfc7fc38977187b531abf1e3fbf70ce1f085560327fa8d458a6980a72f73250fbc8c118acfc7fc38977187b531abf1e3fbf70ce1f098190557fa8d458a6980a72f73250fbc8c118acfc7fc38977187b531abf1e3fbf70ce1f0a5560007fa8d458a6980a72f73250fbc8c118acfc7fc38977187b531abf1e3fbf70ce1f0b81905560217f39c1e2f83c04b7a5f78dbd649407d88e8f3b7add5c5ef2a570824616495d1ccf81905560408051808201909152600681526521a7a6a6a7a760d11b602082810191825292909352601290915251613d11917f39c1e2f83c04b7a5f78dbd649407d88e8f3b7add5c5ef2a570824616495d1cd091615688565b506040805180820190915260048152634e616e6f60e01b60208083019182526021600052601290529051613d66917f39c1e2f83c04b7a5f78dbd649407d88e8f3b7add5c5ef2a570824616495d1cd191615688565b50668e1bc9bf0400007f39c1e2f83c04b7a5f78dbd649407d88e8f3b7add5c5ef2a570824616495d1cd25560327f39c1e2f83c04b7a5f78dbd649407d88e8f3b7add5c5ef2a570824616495d1cd38190557f39c1e2f83c04b7a5f78dbd649407d88e8f3b7add5c5ef2a570824616495d1cd45560007f39c1e2f83c04b7a5f78dbd649407d88e8f3b7add5c5ef2a570824616495d1cd581905560227fb68c6efe9309d69c37dfa4af67479a9c5df214daac0566e0cede6e45a096b4cd81905560408051808201909152600681526521a7a6a6a7a760d11b602082810191825292909352601290915251613e7a917fb68c6efe9309d69c37dfa4af67479a9c5df214daac0566e0cede6e45a096b4ce91615688565b506040805180820190915260058152644173686f6b60d81b60208083019182526022600052601290529051613ed0917fb68c6efe9309d69c37dfa4af67479a9c5df214daac0566e0cede6e45a096b4cf91615688565b50668e1bc9bf0400007fb68c6efe9309d69c37dfa4af67479a9c5df214daac0566e0cede6e45a096b4d05560327fb68c6efe9309d69c37dfa4af67479a9c5df214daac0566e0cede6e45a096b4d18190557fb68c6efe9309d69c37dfa4af67479a9c5df214daac0566e0cede6e45a096b4d25560007fb68c6efe9309d69c37dfa4af67479a9c5df214daac0566e0cede6e45a096b4d381905560237f506a6306524c79863166c6c06b84986e9921e6b51a71f1649ad7529b61ee00e281905560408051808201909152600681526521a7a6a6a7a760d11b602082810191825292909352601290915251613fe4917f506a6306524c79863166c6c06b84986e9921e6b51a71f1649ad7529b61ee00e391615688565b50604080518082019091526005815264436174687960d81b6020808301918252602360005260129052905161403a917f506a6306524c79863166c6c06b84986e9921e6b51a71f1649ad7529b61ee00e491615688565b50668e1bc9bf0400007f506a6306524c79863166c6c06b84986e9921e6b51a71f1649ad7529b61ee00e55560327f506a6306524c79863166c6c06b84986e9921e6b51a71f1649ad7529b61ee00e68190557f506a6306524c79863166c6c06b84986e9921e6b51a71f1649ad7529b61ee00e75560007f506a6306524c79863166c6c06b84986e9921e6b51a71f1649ad7529b61ee00e881905560247fdbe3f9ea70dba34eaca51dfd95e30f99a566492c231bb38ba19055a26cf1f50181905560408051808201909152600681526521a7a6a6a7a760d11b60208281019182529290935260129091525161414e917fdbe3f9ea70dba34eaca51dfd95e30f99a566492c231bb38ba19055a26cf1f50291615688565b506040805180820190915260078152660a0e4c2d6c2e6d60cb1b602080830191825260246000526012905290516141a6917fdbe3f9ea70dba34eaca51dfd95e30f99a566492c231bb38ba19055a26cf1f50391615688565b50602460009081526012602052668e1bc9bf0400007fdbe3f9ea70dba34eaca51dfd95e30f99a566492c231bb38ba19055a26cf1f5045560327fdbe3f9ea70dba34eaca51dfd95e30f99a566492c231bb38ba19055a26cf1f5058190557fdbe3f9ea70dba34eaca51dfd95e30f99a566492c231bb38ba19055a26cf1f506557fdbe3f9ea70dba34eaca51dfd95e30f99a566492c231bb38ba19055a26cf1f50755565b600a546001600160a01b031633146142735760405162461bcd60e51b81526004016108cd90615bcb565b610b45614da0565b6014818154811061428b57600080fd5b6000918252602090912001546001600160a01b0316905081565b6060600180546107d590615d43565b610c32338383614e05565b601260205260009081526040902080546001820180549192916142e190615d43565b80601f016020809104026020016040519081016040528092919081815260200182805461430d90615d43565b801561435a5780601f1061432f5761010080835404028352916020019161435a565b820191906000526020600020905b81548152906001019060200180831161433d57829003601f168201915b50505050509080600201805461436f90615d43565b80601f016020809104026020016040519081016040528092919081815260200182805461439b90615d43565b80156143e85780601f106143bd576101008083540402835291602001916143e8565b820191906000526020600020905b8154815290600101906020018083116143cb57829003601f168201915b5050505050908060030154908060040154908060050154908060060154905087565b600a54600160a01b900460ff16156144345760405162461bcd60e51b81526004016108cd90615ba1565b600c5460ff16156144875760405162461bcd60e51b815260206004820152601a60248201527f4e6f726d616c206d696e74696e6720697320636f6d706c65746500000000000060448201526064016108cd565b6000828152601260205260409020600301543410156144e85760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f72726563740000000000000060448201526064016108cd565b6000828152601260205260409020600501546145315760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b60448201526064016108cd565b601054610100900460ff1680614549575060105460ff165b61458e5760405162461bcd60e51b815260206004820152601660248201527514d85b19481a5cc81b9bdd081858dd1a5d99481e595d60521b60448201526064016108cd565b601054610100900460ff161561463957336000818152601360205260409020546001600160a01b0316146145f95760405162461bcd60e51b8152602060048201526012602482015271125cc81b9bdd081dda1a5d195b1a5cdd195960721b60448201526064016108cd565b6146038282614ed4565b33600090815260136020526040902060019081015461462191614f75565b33600090815260136020526040902060010155614643565b6146438282614ed4565b600b54600d5410610c3257600c805460ff191660011790555050565b6146693383614a0f565b6146855760405162461bcd60e51b81526004016108cd90615c00565b61469184848484614f88565b50505050565b6000818152600260205260409020546060906001600160a01b03166147165760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108cd565b6000828152600f60205260408120805461472f90615d43565b80601f016020809104026020016040519081016040528092919081815260200182805461475b90615d43565b80156147a85780601f1061477d576101008083540402835291602001916147a8565b820191906000526020600020905b81548152906001019060200180831161478b57829003601f168201915b5050505050905060006147b9614fbb565b90508051600014156147cc575092915050565b8151156147fe5780826040516020016147e6929190615ad0565b60405160208183030381529060405292505050919050565b8061480885614fca565b6040516020016147e6929190615ad0565b600a546001600160a01b031633146148435760405162461bcd60e51b81526004016108cd90615bcb565b60005b8151811015610c325761487182828151811061486457614864615def565b6020026020010151610e0d565b508061487c81615d7e565b915050614846565b600a546001600160a01b031633146148ae5760405162461bcd60e51b81526004016108cd90615bcb565b6001600160a01b0381166149135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108cd565b61491c81614d4e565b50565b600a546001600160a01b031633146149495760405162461bcd60e51b81526004016108cd90615bcb565b6010805460ff610100808304821615810261ff00199093169290921792839055910416610b45576010805460ff19169055565b60006001600160e01b0319821663780e9d6360e01b14806107c057506107c0826150c8565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906149d682610cdb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316614a885760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108cd565b6000614a9383610cdb565b9050806001600160a01b0316846001600160a01b03161480614ace5750836001600160a01b0316614ac384610858565b6001600160a01b0316145b80614afe57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316614b1982610cdb565b6001600160a01b031614614b815760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108cd565b6001600160a01b038216614be35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108cd565b614bee838383615118565b614bf96000826149a1565b6001600160a01b0383166000908152600360205260408120805460019290614c22908490615d00565b90915550506001600160a01b0382166000908152600360205260408120805460019290614c50908490615cd4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a54600160a01b900460ff16614d015760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108cd565b600a805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a54600160a01b900460ff1615614dca5760405162461bcd60e51b81526004016108cd90615ba1565b600a805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258614d313390565b816001600160a01b0316836001600160a01b03161415614e675760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108cd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600082815260126020526040902060060154614ef1906001614f75565b6000838152601260205260409020600681019190915560050154614f16906001614f75565b600083815260126020526040902060050155600d54614f41903390614f3c906001615cd4565b61514d565b614f59600d546001614f539190615cd4565b8261529b565b6001600d6000828254614f6c9190615cd4565b90915550505050565b6000614f818284615cd4565b9392505050565b614f93848484614b06565b614f9f84848484615333565b6146915760405162461bcd60e51b81526004016108cd90615b4f565b6060601180546107d590615d43565b606081614fee5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115615018578061500281615d7e565b91506150119050600a83615cec565b9150614ff2565b60008167ffffffffffffffff81111561503357615033615e05565b6040519080825280601f01601f19166020018201604052801561505d576020820181803683370190505b5090505b8415614afe57615072600183615d00565b915061507f600a86615d99565b61508a906030615cd4565b60f81b81838151811061509f5761509f615def565b60200101906001600160f81b031916908160001a9053506150c1600a86615cec565b9450615061565b60006001600160e01b031982166380ac58cd60e01b14806150f957506001600160e01b03198216635b5e139f60e01b145b806107c057506301ffc9a760e01b6001600160e01b03198316146107c0565b600a54600160a01b900460ff16156151425760405162461bcd60e51b81526004016108cd90615ba1565b610a03838383615440565b6001600160a01b0382166151a35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108cd565b6000818152600260205260409020546001600160a01b0316156152085760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108cd565b61521460008383615118565b6001600160a01b038216600090815260036020526040812080546001929061523d908490615cd4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000828152600260205260409020546001600160a01b03166153145760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108cd565b6000828152600f602090815260409091208251610a0392840190615688565b60006001600160a01b0384163b1561543557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290615377903390899088908890600401615aff565b602060405180830381600087803b15801561539157600080fd5b505af19250505080156153c1575060408051601f3d908101601f191682019092526153be918101906159f2565b60015b61541b573d8080156153ef576040519150601f19603f3d011682016040523d82523d6000602084013e6153f4565b606091505b5080516154135760405162461bcd60e51b81526004016108cd90615b4f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050614afe565b506001949350505050565b6001600160a01b03831661549b5761549681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6154be565b816001600160a01b0316836001600160a01b0316146154be576154be83826154f8565b6001600160a01b0382166154d557610a0381615595565b826001600160a01b0316826001600160a01b031614610a0357610a038282615644565b6000600161550584610d52565b61550f9190615d00565b600083815260076020526040902054909150808214615562576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906155a790600190615d00565b600083815260096020526040812054600880549394509092849081106155cf576155cf615def565b9060005260206000200154905080600883815481106155f0576155f0615def565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061562857615628615dd9565b6001900381819060005260206000200160009055905550505050565b600061564f83610d52565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461569490615d43565b90600052602060002090601f0160209004810192826156b657600085556156fc565b82601f106156cf57805160ff19168380011785556156fc565b828001600101855582156156fc579182015b828111156156fc5782518255916020019190600101906156e1565b5061570892915061570c565b5090565b5b80821115615708576000815560010161570d565b600067ffffffffffffffff83111561573b5761573b615e05565b61574e601f8401601f1916602001615ca3565b905082815283838301111561576257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461579057600080fd5b919050565b600082601f8301126157a657600080fd5b614f8183833560208501615721565b6000602082840312156157c757600080fd5b614f8182615779565b600080604083850312156157e357600080fd5b6157ec83615779565b91506157fa60208401615779565b90509250929050565b60008060006060848603121561581857600080fd5b61582184615779565b925061582f60208501615779565b9150604084013590509250925092565b6000806000806080858703121561585557600080fd5b61585e85615779565b935061586c60208601615779565b925060408501359150606085013567ffffffffffffffff81111561588f57600080fd5b8501601f810187136158a057600080fd5b6158af87823560208401615721565b91505092959194509250565b600080604083850312156158ce57600080fd5b6158d783615779565b9150602083013580151581146158ec57600080fd5b809150509250929050565b6000806040838503121561590a57600080fd5b61591383615779565b946020939093013593505050565b6000602080838503121561593457600080fd5b823567ffffffffffffffff8082111561594c57600080fd5b818501915085601f83011261596057600080fd5b81358181111561597257615972615e05565b8060051b9150615983848301615ca3565b8181528481019084860184860187018a101561599e57600080fd5b600095505b838610156159c8576159b481615779565b8352600195909501949186019186016159a3565b5098975050505050505050565b6000602082840312156159e757600080fd5b8135614f8181615e1b565b600060208284031215615a0457600080fd5b8151614f8181615e1b565b600060208284031215615a2157600080fd5b813567ffffffffffffffff811115615a3857600080fd5b614afe84828501615795565b600060208284031215615a5657600080fd5b5035919050565b60008060408385031215615a7057600080fd5b82359150602083013567ffffffffffffffff811115615a8e57600080fd5b615a9a85828601615795565b9150509250929050565b60008151808452615abc816020860160208601615d17565b601f01601f19169290920160200192915050565b60008351615ae2818460208801615d17565b835190830190615af6818360208801615d17565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090615b3290830184615aa4565b9695505050505050565b602081526000614f816020830184615aa4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b87815260e060208201526000615c6a60e0830189615aa4565b8281036040840152615c7c8189615aa4565b9150508560608301528460808301528360a08301528260c083015298975050505050505050565b604051601f8201601f1916810167ffffffffffffffff81118282101715615ccc57615ccc615e05565b604052919050565b60008219821115615ce757615ce7615dad565b500190565b600082615cfb57615cfb615dc3565b500490565b600082821015615d1257615d12615dad565b500390565b60005b83811015615d32578181015183820152602001615d1a565b838111156146915750506000910152565b600181811c90821680615d5757607f821691505b60208210811415615d7857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415615d9257615d92615dad565b5060010190565b600082615da857615da8615dc3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461491c57600080fdfea26469706673582212203c9a8853abff5b338f52c28ec29f770dd2299a634e1bf8c2a47be9c2a1b9e0df64736f6c63430008070033

Deployed Bytecode Sourcemap

60723:18030:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60977:27;;;;;;;;;;;;;;;;;;;18317:25:1;;;18305:2;18290:18;60977:27:0;;;;;;;;77279:229;;;;;;;;;;-1:-1:-1;77279:229:0;;;;;:::i;:::-;;:::i;:::-;;;7161:14:1;;7154:22;7136:41;;7124:2;7109:18;77279:229:0;6996:187:1;41994:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43553:221::-;;;;;;;;;;-1:-1:-1;43553:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6180:32:1;;;6162:51;;6150:2;6135:18;43553:221:0;6016:203:1;43076:411:0;;;;;;;;;;-1:-1:-1;43076:411:0;;;;;:::i;:::-;;:::i;:::-;;55140:113;;;;;;;;;;-1:-1:-1;55228:10:0;:17;55140:113;;77959:140;;;;;;;;;;;;;:::i;61145:35::-;;;;;;;;;;-1:-1:-1;61145:35:0;;;;;;;;;;;44303:339;;;;;;;;;;-1:-1:-1;44303:339:0;;;;;:::i;:::-;;:::i;54808:256::-;;;;;;;;;;-1:-1:-1;54808:256:0;;;;;:::i;:::-;;:::i;78507:132::-;;;;;;;;;;-1:-1:-1;78507:132:0;;;;;:::i;:::-;-1:-1:-1;;;;;78603:28:0;;;78565:18;78603:15;;;:9;:15;;;;;:20;;;;:28;;78507:132;76622:65;;;;;;;;;;;;;:::i;60894:34::-;;;;;;;;;;;;;;;;76913:113;;;;;;;;;;-1:-1:-1;76997:21:0;76913:113;;78647:101;;;;;;;;;;-1:-1:-1;78720:13:0;:20;78647:101;;44713:185;;;;;;;;;;-1:-1:-1;44713:185:0;;;;;:::i;:::-;;:::i;55330:233::-;;;;;;;;;;-1:-1:-1;55330:233:0;;;;;:::i;:::-;;:::i;73761:109::-;;;;;;;;;;-1:-1:-1;73761:109:0;;;;;:::i;:::-;;:::i;14072:86::-;;;;;;;;;;-1:-1:-1;14143:7:0;;-1:-1:-1;;;14143:7:0;;;;14072:86;;76695:210;;;;;;;;;;;;;:::i;41688:239::-;;;;;;;;;;-1:-1:-1;41688:239:0;;;;;:::i;:::-;;:::i;61011:28::-;;;;;;;;;;;;;;;;41418:208;;;;;;;;;;-1:-1:-1;41418:208:0;;;;;:::i;:::-;;:::i;16971:103::-;;;;;;;;;;;;;:::i;60935:35::-;;;;;;;;;;-1:-1:-1;60935:35:0;;;;;;;;77516:293;;;;;;;;;;-1:-1:-1;77516:293:0;;;;;:::i;:::-;;:::i;61533:12159::-;;;;;;;;;;;;;:::i;76553:61::-;;;;;;;;;;;;;:::i;76514:30::-;;;;;;;;;;-1:-1:-1;76514:30:0;;;;;:::i;:::-;;:::i;16320:87::-;;;;;;;;;;-1:-1:-1;16393:6:0;;-1:-1:-1;;;;;16393:6:0;16320:87;;42163:104;;;;;;;;;;;;;:::i;76455:46::-;;;;;;;;;;-1:-1:-1;76455:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;76455:46:0;;;;;;;;;;-1:-1:-1;;;;;6909:32:1;;;6891:51;;6973:2;6958:18;;6951:34;;;;6864:18;76455:46:0;6717:274:1;43846:155:0;;;;;;;;;;-1:-1:-1;43846:155:0;;;;;:::i;:::-;;:::i;73700:51::-;;;;;;;;;;-1:-1:-1;73700:51:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;:::i;75168:822::-;;;;;;:::i;:::-;;:::i;44969:328::-;;;;;;;;;;-1:-1:-1;44969:328:0;;;;;:::i;:::-;;:::i;74298:860::-;;;;;;;;;;-1:-1:-1;74298:860:0;;;;;:::i;:::-;;:::i;61100:38::-;;;;;;;;;;-1:-1:-1;61100:38:0;;;;;;;;78311:188;;;;;;;;;;-1:-1:-1;78311:188:0;;;;;:::i;:::-;;:::i;44072:164::-;;;;;;;;;;-1:-1:-1;44072:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;44193:25:0;;;44169:4;44193:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44072:164;17229:201;;;;;;;;;;-1:-1:-1;17229:201:0;;;;;:::i;:::-;;:::i;78111:192::-;;;;;;;;;;;;;:::i;77279:229::-;77435:4;77464:36;77488:11;77464:23;:36::i;:::-;77457:43;77279:229;-1:-1:-1;;77279:229:0:o;41994:100::-;42048:13;42081:5;42074:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41994:100;:::o;43553:221::-;43629:7;46896:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46896:16:0;43649:73;;;;-1:-1:-1;;;43649:73:0;;13369:2:1;43649:73:0;;;13351:21:1;13408:2;13388:18;;;13381:30;13447:34;13427:18;;;13420:62;-1:-1:-1;;;13498:18:1;;;13491:42;13550:19;;43649:73:0;;;;;;;;;-1:-1:-1;43742:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43742:24:0;;43553:221::o;43076:411::-;43157:13;43173:23;43188:7;43173:14;:23::i;:::-;43157:39;;43221:5;-1:-1:-1;;;;;43215:11:0;:2;-1:-1:-1;;;;;43215:11:0;;;43207:57;;;;-1:-1:-1;;;43207:57:0;;15730:2:1;43207:57:0;;;15712:21:1;15769:2;15749:18;;;15742:30;15808:34;15788:18;;;15781:62;-1:-1:-1;;;15859:18:1;;;15852:31;15900:19;;43207:57:0;15528:397:1;43207:57:0;12806:10;-1:-1:-1;;;;;43299:21:0;;;;:62;;-1:-1:-1;43324:37:0;43341:5;12806:10;44072:164;:::i;43324:37::-;43277:168;;;;-1:-1:-1;;;43277:168:0;;11762:2:1;43277:168:0;;;11744:21:1;11801:2;11781:18;;;11774:30;11840:34;11820:18;;;11813:62;11911:26;11891:18;;;11884:54;11955:19;;43277:168:0;11560:420:1;43277:168:0;43458:21;43467:2;43471:7;43458:8;:21::i;:::-;43146:341;43076:411;;:::o;77959:140::-;16393:6;;-1:-1:-1;;;;;16393:6:0;12806:10;16540:23;16532:68;;;;-1:-1:-1;;;16532:68:0;;;;;;;:::i;:::-;78039:18:::1;::::0;;-1:-1:-1;;78039:18:0::1;::::0;::::1;78038:19;78068:23:::0;-1:-1:-1;;78068:23:0;;;;;;77959:140::o;44303:339::-;44498:41;12806:10;44531:7;44498:18;:41::i;:::-;44490:103;;;;-1:-1:-1;;;44490:103:0;;;;;;;:::i;:::-;44606:28;44616:4;44622:2;44626:7;44606:9;:28::i;54808:256::-;54905:7;54941:23;54958:5;54941:16;:23::i;:::-;54933:5;:31;54925:87;;;;-1:-1:-1;;;54925:87:0;;7963:2:1;54925:87:0;;;7945:21:1;8002:2;7982:18;;;7975:30;8041:34;8021:18;;;8014:62;-1:-1:-1;;;8092:18:1;;;8085:41;8143:19;;54925:87:0;7761:407:1;54925:87:0;-1:-1:-1;;;;;;55030:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;54808:256::o;76622:65::-;16393:6;;-1:-1:-1;;;;;16393:6:0;12806:10;16540:23;16532:68;;;;-1:-1:-1;;;16532:68:0;;;;;;;:::i;:::-;76669:10:::1;:8;:10::i;:::-;76622:65::o:0;44713:185::-;44851:39;44868:4;44874:2;44878:7;44851:39;;;;;;;;;;;;:16;:39::i;55330:233::-;55405:7;55441:30;55228:10;:17;;55140:113;55441:30;55433:5;:38;55425:95;;;;-1:-1:-1;;;55425:95:0;;17605:2:1;55425:95:0;;;17587:21:1;17644:2;17624:18;;;17617:30;17683:34;17663:18;;;17656:62;-1:-1:-1;;;17734:18:1;;;17727:42;17786:19;;55425:95:0;17403:408:1;55425:95:0;55538:10;55549:5;55538:17;;;;;;;;:::i;:::-;;;;;;;;;55531:24;;55330:233;;;:::o;73761:109::-;16393:6;;-1:-1:-1;;;;;16393:6:0;12806:10;16540:23;16532:68;;;;-1:-1:-1;;;16532:68:0;;;;;;;:::i;:::-;73835:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;73761:109:::0;:::o;76695:210::-;16393:6;;-1:-1:-1;;;;;16393:6:0;12806:10;16540:23;16532:68;;;;-1:-1:-1;;;16532:68:0;;;;;;;:::i;:::-;76768:21:::1;76808:11:::0;76800:49:::1;;;::::0;-1:-1:-1;;;76800:49:0;;16132:2:1;76800:49:0::1;::::0;::::1;16114:21:1::0;16171:2;16151:18;;;16144:30;16210:27;16190:18;;;16183:55;16255:18;;76800:49:0::1;15930:349:1::0;76800:49:0::1;76860:37;::::0;76868:10:::1;::::0;76860:37;::::1;;;::::0;76889:7;;76860:37:::1;::::0;;;76889:7;76868:10;76860:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;41688:239:::0;41760:7;41796:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41796:16:0;41831:19;41823:73;;;;-1:-1:-1;;;41823:73:0;;12598:2:1;41823:73:0;;;12580:21:1;12637:2;12617:18;;;12610:30;12676:34;12656:18;;;12649:62;-1:-1:-1;;;12727:18:1;;;12720:39;12776:19;;41823:73:0;12396:405:1;41418:208:0;41490:7;-1:-1:-1;;;;;41518:19:0;;41510:74;;;;-1:-1:-1;;;41510:74:0;;12187:2:1;41510:74:0;;;12169:21:1;12226:2;12206:18;;;12199:30;12265:34;12245:18;;;12238:62;-1:-1:-1;;;12316:18:1;;;12309:40;12366:19;;41510:74:0;11985:406:1;41510:74:0;-1:-1:-1;;;;;;41602:16:0;;;;;:9;:16;;;;;;;41418:208::o;16971:103::-;16393:6;;-1:-1:-1;;;;;16393:6:0;12806:10;16540:23;16532:68;;;;-1:-1:-1;;;16532:68:0;;;;;;;:::i;:::-;17036:30:::1;17063:1;17036:18;:30::i;77516:293::-:0;16393:6;;77586:12;;-1:-1:-1;;;;;16393:6:0;12806:10;16540:23;16532:68;;;;-1:-1:-1;;;16532:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;78603:28:0;;;78565:18;78603:15;;;:9;:15;;;;;:20;;;;:28;77619:20:::1;77611:52;;;::::0;-1:-1:-1;;;77611:52:0;;15382:2:1;77611:52:0::1;::::0;::::1;15364:21:1::0;15421:2;15401:18;;;15394:30;-1:-1:-1;;;15440:18:1;;;15433:49;15499:18;;77611:52:0::1;15180:343:1::0;77611:52:0::1;-1:-1:-1::0;;;;;;77674:15:0::1;;::::0;;;:9:::1;:15;::::0;;;;:27;;-1:-1:-1;;;;;;77674:27:0;;::::1;::::0;::::1;::::0;;;77712:25;;::::1;:29:::0;;;77752:13:::1;:24:::0;;;;::::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;77674:27;77516:293::o;61533:12159::-;16393:6;;-1:-1:-1;;;;;16393:6:0;12806:10;16540:23;16532:68;;;;-1:-1:-1;;;16532:68:0;;;;;;;:::i;:::-;61633:1:::1;61611:16:::0;:23;;;:16;61645:33;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;61611:16:0::1;61645:33:::0;;::::1;::::0;;;61611:16:::1;61645::::0;;;;61611:13:::1;61645:16:::0;;;:33;::::1;::::0;:23;;:33:::1;:::i;:::-;-1:-1:-1::0;61689:35:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;61689:35:0::1;::::0;;::::1;::::0;;;61703:1:::1;-1:-1:-1::0;61689:16:0;:13:::1;:16:::0;;:35;;::::1;::::0;:21;;:35:::1;:::i;:::-;-1:-1:-1::0;61764:8:0::1;61735:26:::0;:37;61749:1:::1;61783:28:::0;:32;;;61826;:36;61735:16:::1;61873:29:::0;:33;;;61966:1:::1;61944:16:::0;:23;;;61735:16;61978:37;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;61735:16:0::1;61978:37:::0;;::::1;::::0;;;:16;;;;61735:13:::1;61978:16:::0;;;:37;::::1;::::0;:23;;:37:::1;:::i;:::-;-1:-1:-1::0;62026:34:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;62026:34:0::1;::::0;;::::1;::::0;;;62040:1:::1;-1:-1:-1::0;62026:16:0;:13:::1;:16:::0;;:34;;::::1;::::0;:21;;:34:::1;:::i;:::-;-1:-1:-1::0;62100:9:0::1;62071:26:::0;:38;62151:2:::1;62120:28:::0;:33;;;62164:32;:37;62071:16:::1;62212:29:::0;:33;;;62071:26:::1;62281:16:::0;:23;;;62071:16;62315:37;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;62071:16:0::1;62315:37:::0;;::::1;::::0;;;:16;;;;62071:13:::1;62315:16:::0;;;:37;::::1;::::0;:23;;:37:::1;:::i;:::-;-1:-1:-1::0;62363:32:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;62363:32:0::1;::::0;;::::1;::::0;;;62377:1:::1;-1:-1:-1::0;62363:16:0;:13:::1;:16:::0;;:32;;::::1;::::0;:21;;:32:::1;:::i;:::-;-1:-1:-1::0;62435:9:0::1;62406:26:::0;:38;62486:2:::1;62455:28:::0;:33;;;62499:32;:37;62406:16:::1;62547:29:::0;:33;;;62455:28:::1;62614:16:::0;:23;;;62406:16;62648:37;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;62406:16:0::1;62648:37:::0;;::::1;::::0;;;:16;;;;62406:13:::1;62648:16:::0;;;:37;::::1;::::0;:23;;:37:::1;:::i;:::-;-1:-1:-1::0;62696:30:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;;62696:30:0::1;::::0;;::::1;::::0;;;-1:-1:-1;62696:16:0;;;;:13:::1;:16:::0;;;:30;;::::1;::::0;:21;;:30:::1;:::i;:::-;-1:-1:-1::0;62766:9:0::1;62737:26:::0;:38;62817:2:::1;62786:28:::0;:33;;;62830:32;:37;62737:16:::1;62878:29:::0;:33;;;62830:32:::1;62946:16:::0;:23;;;62737:16;62980:37;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;62737:16:0::1;62980:37:::0;;::::1;::::0;;;:16;;;;62737:13:::1;62980:16:::0;;;:37;::::1;::::0;:23;;:37:::1;:::i;:::-;-1:-1:-1::0;63028:31:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;;63028:31:0::1;::::0;;::::1;::::0;;;-1:-1:-1;63028:16:0;;;;:13:::1;:16:::0;;;:31;;::::1;::::0;:21;;:31:::1;:::i;:::-;-1:-1:-1::0;63099:9:0::1;63070:26:::0;:38;63150:2:::1;63119:28:::0;:33;;;63163:32;:37;63070:16:::1;63211:29:::0;:33;;;:29:::1;63281:16:::0;:23;;;63070:16;63315:37;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;63070:16:0::1;63315:37:::0;;::::1;::::0;;;:16;;;;63070:13:::1;63315:16:::0;;;:37;::::1;::::0;:23;;:37:::1;:::i;:::-;-1:-1:-1::0;63363:33:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;63363:33:0::1;::::0;;::::1;::::0;;;63377:1:::1;-1:-1:-1::0;63363:16:0;:13:::1;:16:::0;;:33;;::::1;::::0;:21;;:33:::1;:::i;:::-;-1:-1:-1::0;63436:9:0::1;63407:26:::0;:38;63487:2:::1;63456:28:::0;:33;;;63500:32;:37;63407:16:::1;63548:29:::0;:33;;;63640:1:::1;63618:16:::0;:23;;;63407:16;63652:32;;;;::::1;::::0;;;63456:28:::1;63652:32:::0;;-1:-1:-1;;;63407:16:0::1;63652:32:::0;;::::1;::::0;;;:16;;;;63407:13:::1;63652:16:::0;;;:32;::::1;::::0;:23;;:32:::1;:::i;:::-;-1:-1:-1::0;63695:33:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;;63695:33:0::1;::::0;;::::1;::::0;;;-1:-1:-1;63695:16:0;;;;:13:::1;:16:::0;;;:33;;::::1;::::0;:21;;:33:::1;:::i;:::-;-1:-1:-1::0;63768:10:0::1;63739:26:::0;:39;63820:2:::1;63789:28:::0;:33;;;63833:32;:37;63739:16:::1;63881:29:::0;:33;;;63968:1:::1;63947:16:::0;:22;;;63739:16;63980:32;;;;::::1;::::0;;;63789:28:::1;63980:32:::0;;-1:-1:-1;;;63739:16:0::1;63980:32:::0;;::::1;::::0;;;:16;;;;63739:13:::1;63980:16:::0;;;:32;::::1;::::0;:23;;:32:::1;:::i;:::-;-1:-1:-1::0;64023:29:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;64023:29:0::1;::::0;;::::1;::::0;;;64037:1:::1;-1:-1:-1::0;64023:16:0;:13:::1;:16:::0;;:29;;::::1;::::0;:21;;:29:::1;:::i;:::-;-1:-1:-1::0;64092:10:0::1;64063:26:::0;:39;64144:2:::1;64113:28:::0;:33;;;64157:32;:37;64063:16:::1;64205:29:::0;:33;;;64292:1:::1;64271:16:::0;:22;;;64063:16;64304:32;;;;::::1;::::0;;;64113:28:::1;64304:32:::0;;-1:-1:-1;;;64063:16:0::1;64304:32:::0;;::::1;::::0;;;:16;;;;64063:13:::1;64304:16:::0;;;:32;::::1;::::0;:23;;:32:::1;:::i;:::-;-1:-1:-1::0;64347:29:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;64347:29:0::1;::::0;;::::1;::::0;;;64361:1:::1;-1:-1:-1::0;64347:16:0;:13:::1;:16:::0;;:29;;::::1;::::0;:21;;:29:::1;:::i;:::-;-1:-1:-1::0;64416:10:0::1;64387:26:::0;:39;64468:2:::1;64437:28:::0;:33;;;64481:32;:37;64387:16:::1;64529:29:::0;:33;;;64620:2:::1;64598:17:::0;:24;;;64387:16;64633:33;;;;::::1;::::0;;;64437:28:::1;64633:33:::0;;-1:-1:-1;;;64387:16:0::1;64633:33:::0;;::::1;::::0;;;:17;;;;64387:13:::1;64633:17:::0;;;:33;::::1;::::0;:24;;:33:::1;:::i;:::-;-1:-1:-1::0;64677:33:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;64677:33:0::1;::::0;;::::1;::::0;;;64691:2:::1;-1:-1:-1::0;64677:17:0;:13:::1;:17:::0;;:33;;::::1;::::0;:22;;:33:::1;:::i;:::-;-1:-1:-1::0;64751:10:0::1;64721:27:::0;:40;64804:2:::1;64772:29:::0;:34;;;64817:33;:38;64721:17:::1;64866:30:::0;:34;;;64961:2:::1;64939:17:::0;:24;;;64721:17;64974:33;;;;::::1;::::0;;;64772:29:::1;64974:33:::0;;-1:-1:-1;;;64721:17:0::1;64974:33:::0;;::::1;::::0;;;:17;;;;64721:13:::1;64974:17:::0;;;:33;::::1;::::0;:24;;:33:::1;:::i;:::-;-1:-1:-1::0;65018:36:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;65018:36:0::1;::::0;;::::1;::::0;;;65032:2:::1;-1:-1:-1::0;65018:17:0;:13:::1;:17:::0;;:36;;::::1;::::0;:22;;:36:::1;:::i;:::-;-1:-1:-1::0;65095:10:0::1;65065:27:::0;:40;65148:2:::1;65116:29:::0;:34;;;65161:33;:38;65065:17:::1;65210:30:::0;:34;;;65303:2:::1;65281:17:::0;:24;;;65065:17;65316:33;;;;::::1;::::0;;;65116:29:::1;65316:33:::0;;-1:-1:-1;;;65065:17:0::1;65316:33:::0;;::::1;::::0;;;:17;;;;65065:13:::1;65316:17:::0;;;:33;::::1;::::0;:24;;:33:::1;:::i;:::-;-1:-1:-1::0;65360:34:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;65360:34:0::1;::::0;;::::1;::::0;;;65374:2:::1;-1:-1:-1::0;65360:17:0;:13:::1;:17:::0;;:34;;::::1;::::0;:22;;:34:::1;:::i;:::-;-1:-1:-1::0;65435:10:0::1;65405:27:::0;:40;65488:2:::1;65456:29:::0;:34;;;65501:33;:38;65405:17:::1;65550:30:::0;:34;;;65640:2:::1;65618:17:::0;:24;;;65405:17;65653:33;;;;::::1;::::0;;;65456:29:::1;65653:33:::0;;-1:-1:-1;;;65405:17:0::1;65653:33:::0;;::::1;::::0;;;:17;;;;65405:13:::1;65653:17:::0;;;:33;::::1;::::0;:24;;:33:::1;:::i;:::-;-1:-1:-1::0;65697:31:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;65697:31:0::1;::::0;;::::1;::::0;;;65711:2:::1;-1:-1:-1::0;65697:17:0;:13:::1;:17:::0;;:31;;::::1;::::0;:22;;:31:::1;:::i;:::-;-1:-1:-1::0;65769:10:0::1;65739:27:::0;:40;65822:2:::1;65790:29:::0;:34;;;65835:33;:38;65739:17:::1;65884:30:::0;:34;;;65976:2:::1;65954:17:::0;:24;;;65739:17;65989:33;;;;::::1;::::0;;;65790:29:::1;65989:33:::0;;-1:-1:-1;;;65739:17:0::1;65989:33:::0;;::::1;::::0;;;:17;;;;65739:13:::1;65989:17:::0;;;:33;::::1;::::0;:24;;:33:::1;:::i;:::-;-1:-1:-1::0;66033:33:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;66033:33:0::1;::::0;;::::1;::::0;;;66047:2:::1;-1:-1:-1::0;66033:17:0;:13:::1;:17:::0;;:33;;::::1;::::0;:22;;:33:::1;:::i;:::-;-1:-1:-1::0;66107:10:0::1;66077:27:::0;:40;66160:2:::1;66128:29:::0;:34;;;66173:33;:38;;;66077:17:::1;66222:30:::0;:34;;;66291:17;:24;;;66077:17;66326:33;;;;::::1;::::0;;;66128:29:::1;66326:33:::0;;-1:-1:-1;;;66077:17:0::1;66326:33:::0;;::::1;::::0;;;:17;;;;66077:13:::1;66326:17:::0;;;:33;;::::1;::::0;:24;;:33:::1;:::i;:::-;-1:-1:-1::0;66370:32:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;66370:32:0::1;::::0;;::::1;::::0;;;66384:2:::1;-1:-1:-1::0;66370:17:0;:13:::1;:17:::0;;:32;;::::1;::::0;:22;;:32:::1;:::i;:::-;-1:-1:-1::0;66443:10:0::1;66413:27:::0;:40;66427:2:::1;66464:29:::0;:34;;;66509:33;:38;66413:17:::1;66558:30:::0;:34;;;66649:2:::1;66627:17:::0;:24;;;66413:17;66662:33;;;;::::1;::::0;;;66464:29:::1;66662:33:::0;;-1:-1:-1;;;66413:17:0::1;66662:33:::0;;::::1;::::0;;;:17;;;;66413:13:::1;66662:17:::0;;;:33;::::1;::::0;:24;;:33:::1;:::i;:::-;-1:-1:-1::0;66706:32:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;66706:32:0::1;::::0;;::::1;::::0;;;66720:2:::1;-1:-1:-1::0;66706:17:0;:13:::1;:17:::0;;:32;;::::1;::::0;:22;;:32:::1;:::i;:::-;-1:-1:-1::0;66779:10:0::1;66749:27:::0;:40;66832:2:::1;66800:29:::0;:34;;;66845:33;:38;66749:17:::1;66894:30:::0;:34;;;66987:2:::1;66965:17:::0;:24;;;66749:17;67000:33;;;;::::1;::::0;;;66800:29:::1;67000:33:::0;;-1:-1:-1;;;66749:17:0::1;67000:33:::0;;::::1;::::0;;;:17;;;;66749:13:::1;67000:17:::0;;;:33;::::1;::::0;:24;;:33:::1;:::i;:::-;-1:-1:-1::0;67044:34:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;67044:34:0::1;::::0;;::::1;::::0;;;67058:2:::1;-1:-1:-1::0;67044:17:0;:13:::1;:17:::0;;:34;;::::1;::::0;:22;;:34:::1;:::i;:::-;-1:-1:-1::0;67119:9:0::1;67089:27:::0;:39;67171:2:::1;67139:29:::0;:34;;;67184:33;:38;67089:17:::1;67233:30:::0;:34;;;67089:13:::1;67303:17:::0;:24;;;67089:17;67338:33;;;;::::1;::::0;;;67139:29:::1;67338:33:::0;;-1:-1:-1;;;67089:17:0::1;67338:33:::0;;::::1;::::0;;;:17;;;;;;;;:33;;::::1;::::0;:24;;:33:::1;:::i;:::-;-1:-1:-1::0;67382:33:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;67382:33:0::1;::::0;;::::1;::::0;;;:13:::1;-1:-1:-1::0;67382:17:0;;;;;:33;;::::1;::::0;:22;;:33:::1;:::i;:::-;-1:-1:-1::0;67456:9:0::1;67426:27:::0;:39;67508:2:::1;67476:29:::0;:34;;;67521:33;:38;67426:17:::1;67570:30:::0;:34;;;67660:2:::1;67638:17:::0;:24;;;67426:17;67673:33;;;;::::1;::::0;;;67476:29:::1;67673:33:::0;;-1:-1:-1;;;67426:17:0::1;67673:33:::0;;::::1;::::0;;;:17;;;;67426:13:::1;67673:17:::0;;;:33;::::1;::::0;:24;;:33:::1;:::i;:::-;-1:-1:-1::0;67717:31:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;67717:31:0::1;::::0;;::::1;::::0;;;67731:2:::1;-1:-1:-1::0;67717:17:0;:13:::1;:17:::0;;:31;;::::1;::::0;:22;;:31:::1;:::i;:::-;-1:-1:-1::0;67789:9:0::1;67759:27:::0;:39;67841:2:::1;67809:29:::0;:34;;;67854:33;:38;67759:17:::1;67903:30:::0;:34;;;67994:2:::1;67972:17:::0;:24;;;67759:17;68007:33;;;;::::1;::::0;;;67809:29:::1;68007:33:::0;;-1:-1:-1;;;67759:17:0::1;68007:33:::0;;::::1;::::0;;;:17;;;;67759:13:::1;68007:17:::0;;;:33;::::1;::::0;:24;;:33:::1;:::i;:::-;-1:-1:-1::0;68051:32:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;68051:32:0::1;::::0;;::::1;::::0;;;68065:2:::1;-1:-1:-1::0;68051:17:0;:13:::1;:17:::0;;:32;;::::1;::::0;:22;;:32:::1;:::i;:::-;-1:-1:-1::0;68124:9:0::1;68094:27:::0;:39;68176:2:::1;68144:29:::0;:34;;;68189:33;:38;68094:17:::1;68238:30:::0;:34;;;68329:2:::1;68307:17:::0;:24;;;68094:17;68342:33;;;;::::1;::::0;;;68144:29:::1;68342:33:::0;;-1:-1:-1;;;68094:17:0::1;68342:33:::0;;::::1;::::0;;;:17;;;;68094:13:::1;68342:17:::0;;;:33;::::1;::::0;:24;;:33:::1;:::i;:::-;-1:-1:-1::0;68386:32:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;68386:32:0::1;::::0;;::::1;::::0;;;68400:2:::1;-1:-1:-1::0;68386:17:0;:13:::1;:17:::0;;:32;;::::1;::::0;:22;;:32:::1;:::i;:::-;-1:-1:-1::0;68459:9:0::1;68429:27:::0;:39;68511:2:::1;68479:29:::0;:34;;;68524:33;:38;68429:17:::1;68573:30:::0;:34;;;68662:2:::1;68640:17:::0;:24;;;68429:17;68675:33;;;;::::1;::::0;;;68479:29:::1;68675:33:::0;;-1:-1:-1;;;68429:17:0::1;68675:33:::0;;::::1;::::0;;;:17;;;;68429:13:::1;68675:17:::0;;;:33;::::1;::::0;:24;;:33:::1;:::i;:::-;-1:-1:-1::0;68719:30:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;68719:30:0::1;::::0;;::::1;::::0;;;68733:2:::1;-1:-1:-1::0;68719:17:0;:13:::1;:17:::0;;:30;;::::1;::::0;:22;;:30:::1;:::i;:::-;-1:-1:-1::0;68790:9:0::1;68760:27:::0;:39;68842:2:::1;68810:29:::0;:34;;;68855:33;:38;68760:17:::1;68904:30:::0;:34;;;68996:2:::1;68974:17:::0;:24;;;68760:17;69009:33;;;;::::1;::::0;;;68810:29:::1;69009:33:::0;;-1:-1:-1;;;68760:17:0::1;69009:33:::0;;::::1;::::0;;;:17;;;;68760:13:::1;69009:17:::0;;;:33;::::1;::::0;:24;;:33:::1;:::i;:::-;-1:-1:-1::0;69053:33:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;69053:33:0::1;::::0;;::::1;::::0;;;69067:2:::1;-1:-1:-1::0;69053:17:0;:13:::1;:17:::0;;:33;;::::1;::::0;:22;;:33:::1;:::i;:::-;-1:-1:-1::0;69127:9:0::1;69097:27:::0;:39;69179:2:::1;69147:29:::0;:34;;;69192:33;:38;69097:17:::1;69241:30:::0;:34;;;69333:2:::1;69311:17:::0;:24;;;69097:17;69346:33;;;;::::1;::::0;;;69147:29:::1;69346:33:::0;;-1:-1:-1;;;69097:17:0::1;69346:33:::0;;::::1;::::0;;;:17;;;;69097:13:::1;69346:17:::0;;;:33;::::1;::::0;:24;;:33:::1;:::i;:::-;-1:-1:-1::0;69390:33:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;69390:33:0::1;::::0;;::::1;::::0;;;69404:2:::1;-1:-1:-1::0;69390:17:0;:13:::1;:17:::0;;:33;;::::1;::::0;:22;;:33:::1;:::i;:::-;-1:-1:-1::0;69464:9:0::1;69434:27:::0;:39;69516:2:::1;69484:29:::0;:34;;;69529:33;:38;69434:17:::1;69578:30:::0;:34;;;69669:2:::1;69647:17:::0;:24;;;69434:17;69682:33;;;;::::1;::::0;;;69484:29:::1;69682:33:::0;;-1:-1:-1;;;69434:17:0::1;69682:33:::0;;::::1;::::0;;;:17;;;;69434:13:::1;69682:17:::0;;;:33;::::1;::::0;:24;;:33:::1;:::i;:::-;-1:-1:-1::0;69726:32:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;69726:32:0::1;::::0;;::::1;::::0;;;69740:2:::1;-1:-1:-1::0;69726:17:0;:13:::1;:17:::0;;:32;;::::1;::::0;:22;;:32:::1;:::i;:::-;-1:-1:-1::0;69799:9:0::1;69769:27:::0;:39;69851:2:::1;69819:29:::0;:34;;;69864:33;:38;69769:17:::1;69913:30:::0;:34;;;70005:2:::1;69983:17:::0;:24;;;69769:17;70018:33;;;;::::1;::::0;;;69819:29:::1;70018:33:::0;;-1:-1:-1;;;69769:17:0::1;70018:33:::0;;::::1;::::0;;;:17;;;;69769:13:::1;70018:17:::0;;;:33;::::1;::::0;:24;;:33:::1;:::i;:::-;-1:-1:-1::0;70062:33:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;70062:33:0::1;::::0;;::::1;::::0;;;70076:2:::1;-1:-1:-1::0;70062:17:0;:13:::1;:17:::0;;:33;;::::1;::::0;:22;;:33:::1;:::i;:::-;-1:-1:-1::0;70136:9:0::1;70106:27:::0;:39;70188:2:::1;70156:29:::0;:34;;;70201:33;:38;70106:17:::1;70250:30:::0;:34;;;70342:2:::1;70320:17:::0;:24;;;70106:17;70355:35;;;;::::1;::::0;;;70250:30:::1;70355:35:::0;;-1:-1:-1;;;70106:17:0::1;70355:35:::0;;::::1;::::0;;;:17;;;;70106:13:::1;70355:17:::0;;;:35;::::1;::::0;:24;;:35:::1;:::i;:::-;-1:-1:-1::0;70401:33:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;70401:33:0::1;::::0;;::::1;::::0;;;70415:2:::1;-1:-1:-1::0;70401:17:0;:13:::1;:17:::0;;:33;;::::1;::::0;:22;;:33:::1;:::i;:::-;-1:-1:-1::0;70475:10:0::1;70445:27:::0;:40;70528:2:::1;70496:29:::0;:34;;;70541:33;:38;70445:17:::1;70590:30:::0;:34;;;70683:2:::1;70661:17:::0;:24;;;70445:17;70696:35;;;;::::1;::::0;;;70590:30:::1;70696:35:::0;;-1:-1:-1;;;70445:17:0::1;70696:35:::0;;::::1;::::0;;;:17;;;;70445:13:::1;70696:17:::0;;;:35;::::1;::::0;:24;;:35:::1;:::i;:::-;-1:-1:-1::0;70742:34:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;70742:34:0::1;::::0;;::::1;::::0;;;70756:2:::1;-1:-1:-1::0;70742:17:0;:13:::1;:17:::0;;:34;;::::1;::::0;:22;;:34:::1;:::i;:::-;-1:-1:-1::0;70817:10:0::1;70787:27:::0;:40;70870:2:::1;70838:29:::0;:34;;;70883:33;:38;70787:17:::1;70932:30:::0;:34;;;71023:2:::1;71001:17:::0;:24;;;70787:17;71036:35;;;;::::1;::::0;;;70932:30:::1;71036:35:::0;;-1:-1:-1;;;70787:17:0::1;71036:35:::0;;::::1;::::0;;;:17;;;;70787:13:::1;71036:17:::0;;;:35;::::1;::::0;:24;;:35:::1;:::i;:::-;-1:-1:-1::0;71082:32:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;71082:32:0::1;::::0;;::::1;::::0;;;71096:2:::1;-1:-1:-1::0;71082:17:0;:13:::1;:17:::0;;:32;;::::1;::::0;:22;;:32:::1;:::i;:::-;-1:-1:-1::0;71155:10:0::1;71125:27:::0;:40;71208:2:::1;71176:29:::0;:34;;;71221:33;:38;71125:17:::1;71270:30:::0;:34;;;71360:2:::1;71338:17:::0;:24;;;71125:17;71373:35;;;;::::1;::::0;;;71270:30:::1;71373:35:::0;;-1:-1:-1;;;71125:17:0::1;71373:35:::0;;::::1;::::0;;;:17;;;;71125:13:::1;71373:17:::0;;;:35;::::1;::::0;:24;;:35:::1;:::i;:::-;-1:-1:-1::0;71419:31:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;71419:31:0::1;::::0;;::::1;::::0;;;71433:2:::1;-1:-1:-1::0;71419:17:0;:13:::1;:17:::0;;:31;;::::1;::::0;:22;;:31:::1;:::i;:::-;-1:-1:-1::0;71491:10:0::1;71461:27:::0;:40;71544:2:::1;71512:29:::0;:34;;;71557:33;:38;71461:17:::1;71606:30:::0;:34;;;71698:2:::1;71676:17:::0;:24;;;71461:17;71711:35;;;;::::1;::::0;;;71606:30:::1;71711:35:::0;;-1:-1:-1;;;71461:17:0::1;71711:35:::0;;::::1;::::0;;;:17;;;;71461:13:::1;71711:17:::0;;;:35;::::1;::::0;:24;;:35:::1;:::i;:::-;-1:-1:-1::0;71757:33:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;71757:33:0::1;::::0;;::::1;::::0;;;71771:2:::1;-1:-1:-1::0;71757:17:0;:13:::1;:17:::0;;:33;;::::1;::::0;:22;;:33:::1;:::i;:::-;-1:-1:-1::0;71831:10:0::1;71801:27:::0;:40;71884:2:::1;71852:29:::0;:34;;;71897:33;:38;71801:17:::1;71946:30:::0;:34;;;71801:17:::1;72020::::0;:24;;;71801:17;72055:35;;;;::::1;::::0;;;71946:30:::1;72055:35:::0;;-1:-1:-1;;;72055:35:0;;::::1;::::0;;;:17;;;;71801:13:::1;72055:17:::0;;;:35;::::1;::::0;:24;;:35:::1;:::i;:::-;-1:-1:-1::0;72101:37:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;72101:37:0::1;::::0;;::::1;::::0;;;-1:-1:-1;72101:17:0;;;:13:::1;:17:::0;;:37;;::::1;::::0;:22;;:37:::1;:::i;:::-;-1:-1:-1::0;72179:10:0::1;72149:27:::0;:40;72232:2:::1;72200:29:::0;:34;;;72245:33;:38;72149:17:::1;72294:30:::0;:34;;;72384:2:::1;72362:17:::0;:24;;;72149:17;72397:35;;;;::::1;::::0;;;72294:30:::1;72397:35:::0;;-1:-1:-1;;;72163:2:0::1;72397:35:::0;;::::1;::::0;;;:17;;;;72149:13:::1;72397:17:::0;;;:35;::::1;::::0;:24;;:35:::1;:::i;:::-;-1:-1:-1::0;72443:31:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;72443:31:0::1;::::0;;::::1;::::0;;;72457:2:::1;-1:-1:-1::0;72443:17:0;:13:::1;:17:::0;;:31;;::::1;::::0;:22;;:31:::1;:::i;:::-;-1:-1:-1::0;72515:10:0::1;72485:27:::0;:40;72568:2:::1;72536:29:::0;:34;;;72581:33;:38;72485:17:::1;72630:30:::0;:34;;;72721:2:::1;72699:17:::0;:24;;;72485:17;72734:35;;;;::::1;::::0;;;72630:30:::1;72734:35:::0;;-1:-1:-1;;;72485:17:0::1;72734:35:::0;;::::1;::::0;;;:17;;;;72485:13:::1;72734:17:::0;;;:35;::::1;::::0;:24;;:35:::1;:::i;:::-;-1:-1:-1::0;72780:32:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;72780:32:0::1;::::0;;::::1;::::0;;;72794:2:::1;-1:-1:-1::0;72780:17:0;:13:::1;:17:::0;;:32;;::::1;::::0;:22;;:32:::1;:::i;:::-;-1:-1:-1::0;72853:10:0::1;72823:27:::0;:40;72906:2:::1;72874:29:::0;:34;;;72919:33;:38;72823:17:::1;72968:30:::0;:34;;;73059:2:::1;73037:17:::0;:24;;;72823:17;73072:35;;;;::::1;::::0;;;72968:30:::1;73072:35:::0;;-1:-1:-1;;;72823:17:0::1;73072:35:::0;;::::1;::::0;;;:17;;;;72823:13:::1;73072:17:::0;;;:35;::::1;::::0;:24;;:35:::1;:::i;:::-;-1:-1:-1::0;73118:32:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;73118:32:0::1;::::0;;::::1;::::0;;;73132:2:::1;-1:-1:-1::0;73118:17:0;:13:::1;:17:::0;;:32;;::::1;::::0;:22;;:32:::1;:::i;:::-;-1:-1:-1::0;73191:10:0::1;73161:27:::0;:40;73244:2:::1;73212:29:::0;:34;;;73257:33;:38;73161:17:::1;73306:30:::0;:34;;;73399:2:::1;73377:17:::0;:24;;;73161:17;73412:35;;;;::::1;::::0;;;73306:30:::1;73412:35:::0;;-1:-1:-1;;;73161:17:0::1;73412:35:::0;;::::1;::::0;;;:17;;;;73161:13:::1;73412:17:::0;;;:35;::::1;::::0;:24;;:35:::1;:::i;:::-;-1:-1:-1::0;73458:34:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;73458:34:0::1;::::0;;::::1;::::0;;;73472:2:::1;-1:-1:-1::0;73458:17:0;:13:::1;:17:::0;;:34;;::::1;::::0;:22;;:34:::1;:::i;:::-;-1:-1:-1::0;73517:2:0::1;73503:17;::::0;;;:13:::1;:17;::::0;73533:10:::1;73503:27:::0;:40;73586:2:::1;73554:29:::0;:34;;;73599:33;:38;73648:30;:34;61533:12159::o;76553:61::-;16393:6;;-1:-1:-1;;;;;16393:6:0;12806:10;16540:23;16532:68;;;;-1:-1:-1;;;16532:68:0;;;;;;;:::i;:::-;76598:8:::1;:6;:8::i;76514:30::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;76514:30:0;;-1:-1:-1;76514:30:0;:::o;42163:104::-;42219:13;42252:7;42245:14;;;;;:::i;43846:155::-;43941:52;12806:10;43974:8;43984;43941:18;:52::i;73700:51::-;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;75168:822::-;14143:7;;-1:-1:-1;;;14143:7:0;;;;14397:9;14389:38;;;;-1:-1:-1;;;14389:38:0;;;;;;;:::i;:::-;77872:15:::1;::::0;::::1;;:24;77864:63;;;::::0;-1:-1:-1;;;77864:63:0;;18018:2:1;77864:63:0::1;::::0;::::1;18000:21:1::0;18057:2;18037:18;;;18030:30;18096:28;18076:18;;;18069:56;18142:18;;77864:63:0::1;17816:350:1::0;77864:63:0::1;75344:17:::2;::::0;;;:13:::2;:17;::::0;;;;:27:::2;;::::0;75331:9:::2;:40;;75322:81;;;::::0;-1:-1:-1;;;75322:81:0;;16486:2:1;75322:81:0::2;::::0;::::2;16468:21:1::0;16525:2;16505:18;;;16498:30;16564:27;16544:18;;;16537:55;16609:18;;75322:81:0::2;16284:349:1::0;75322:81:0::2;75455:1;75419:17:::0;;;:13:::2;:17;::::0;;;;:33:::2;;::::0;75410:61:::2;;;::::0;-1:-1:-1;;;75410:61:0;;8794:2:1;75410:61:0::2;::::0;::::2;8776:21:1::0;8833:1;8813:18;;;8806:29;-1:-1:-1;;;8851:18:1;;;8844:38;8899:18;;75410:61:0::2;8592:331:1::0;75410:61:0::2;75487:15;::::0;::::2;::::0;::::2;;;::::0;:37:::2;;-1:-1:-1::0;75506:18:0::2;::::0;::::2;;75487:37;75478:73;;;::::0;-1:-1:-1;;;75478:73:0;;9894:2:1;75478:73:0::2;::::0;::::2;9876:21:1::0;9933:2;9913:18;;;9906:30;-1:-1:-1;;;9952:18:1;;;9945:52;10014:18;;75478:73:0::2;9692:346:1::0;75478:73:0::2;75569:15;::::0;::::2;::::0;::::2;;;75566:326;;;75626:10;78565:18:::0;78603:15;;;:9;:15;;;;;:20;-1:-1:-1;;;;;78603:20:0;:28;75604:56:::2;;;::::0;-1:-1:-1;;;75604:56:0;;17258:2:1;75604:56:0::2;::::0;::::2;17240:21:1::0;17297:2;17277:18;;;17270:30;-1:-1:-1;;;17316:18:1;;;17309:48;17374:18;;75604:56:0::2;17056:342:1::0;75604:56:0::2;75679:27;75693:2;75696:9;75679:13;:27::i;:::-;75769:10;75759:21;::::0;;;:9:::2;:21;::::0;;;;75795:1:::2;75759:31:::0;;::::2;::::0;:38:::2;::::0;:35:::2;:38::i;:::-;75735:10;75725:21;::::0;;;:9:::2;:21;::::0;;;;:31:::2;;:72:::0;75566:326:::2;;;75849:27;75863:2;75866:9;75849:13;:27::i;:::-;75920:12;;75908:8;;:24;75904:79;;75949:15;:22:::0;;-1:-1:-1;;75949:22:0::2;75967:4;75949:22;::::0;;75168:822;;:::o;44969:328::-;45144:41;12806:10;45177:7;45144:18;:41::i;:::-;45136:103;;;;-1:-1:-1;;;45136:103:0;;;;;;;:::i;:::-;45250:39;45264:4;45270:2;45274:7;45283:5;45250:13;:39::i;:::-;44969:328;;;;:::o;74298:860::-;46872:4;46896:16;;;:7;:16;;;;;;74396:13;;-1:-1:-1;;;;;46896:16:0;74427:113;;;;-1:-1:-1;;;74427:113:0;;14966:2:1;74427:113:0;;;14948:21:1;15005:2;14985:18;;;14978:30;15044:34;15024:18;;;15017:62;-1:-1:-1;;;15095:18:1;;;15088:45;15150:19;;74427:113:0;14764:411:1;74427:113:0;74553:23;74579:19;;;:10;:19;;;;;74553:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74609:18;74630:10;:8;:10::i;:::-;74609:31;;74722:4;74716:18;74738:1;74716:23;74712:72;;;-1:-1:-1;74763:9:0;74298:860;-1:-1:-1;;74298:860:0:o;74712:72::-;74888:23;;:27;74884:108;;74963:4;74969:9;74946:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74932:48;;;;74298:860;;;:::o;74884:108::-;75124:4;75130:18;:7;:16;:18::i;:::-;75107:42;;;;;;;;;:::i;78311:188::-;16393:6;;-1:-1:-1;;;;;16393:6:0;12806:10;16540:23;16532:68;;;;-1:-1:-1;;;16532:68:0;;;;;;;:::i;:::-;78399:6:::1;78395:97;78415:5;:12;78411:1;:16;78395:97;;;78449:31;78471:5;78477:1;78471:8;;;;;;;;:::i;:::-;;;;;;;78449:21;:31::i;:::-;-1:-1:-1::0;78429:3:0;::::1;::::0;::::1;:::i;:::-;;;;78395:97;;17229:201:::0;16393:6;;-1:-1:-1;;;;;16393:6:0;12806:10;16540:23;16532:68;;;;-1:-1:-1;;;16532:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17318:22:0;::::1;17310:73;;;::::0;-1:-1:-1;;;17310:73:0;;9130:2:1;17310:73:0::1;::::0;::::1;9112:21:1::0;9169:2;9149:18;;;9142:30;9208:34;9188:18;;;9181:62;-1:-1:-1;;;9259:18:1;;;9252:36;9305:19;;17310:73:0::1;8928:402:1::0;17310:73:0::1;17394:28;17413:8;17394:18;:28::i;:::-;17229:201:::0;:::o;78111:192::-;16393:6;;-1:-1:-1;;;;;16393:6:0;12806:10;16540:23;16532:68;;;;-1:-1:-1;;;16532:68:0;;;;;;;:::i;:::-;78188:15:::1;::::0;;::::1;;::::0;;::::1;::::0;::::1;78187:16;78169:34:::0;::::1;-1:-1:-1::0;;78169:34:0;;::::1;::::0;;;::::1;::::0;;;;78217:15;::::1;;78214:82;;78257:18;:26:::0;;-1:-1:-1;;78257:26:0::1;::::0;;78111:192::o;54500:224::-;54602:4;-1:-1:-1;;;;;;54626:50:0;;-1:-1:-1;;;54626:50:0;;:90;;;54680:36;54704:11;54680:23;:36::i;50789:174::-;50864:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;50864:29:0;-1:-1:-1;;;;;50864:29:0;;;;;;;;:24;;50918:23;50864:24;50918:14;:23::i;:::-;-1:-1:-1;;;;;50909:46:0;;;;;;;;;;;50789:174;;:::o;47101:348::-;47194:4;46896:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46896:16:0;47211:73;;;;-1:-1:-1;;;47211:73:0;;11004:2:1;47211:73:0;;;10986:21:1;11043:2;11023:18;;;11016:30;11082:34;11062:18;;;11055:62;-1:-1:-1;;;11133:18:1;;;11126:42;11185:19;;47211:73:0;10802:408:1;47211:73:0;47295:13;47311:23;47326:7;47311:14;:23::i;:::-;47295:39;;47364:5;-1:-1:-1;;;;;47353:16:0;:7;-1:-1:-1;;;;;47353:16:0;;:51;;;;47397:7;-1:-1:-1;;;;;47373:31:0;:20;47385:7;47373:11;:20::i;:::-;-1:-1:-1;;;;;47373:31:0;;47353:51;:87;;;-1:-1:-1;;;;;;44193:25:0;;;44169:4;44193:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;47408:32;47345:96;47101:348;-1:-1:-1;;;;47101:348:0:o;50093:578::-;50252:4;-1:-1:-1;;;;;50225:31:0;:23;50240:7;50225:14;:23::i;:::-;-1:-1:-1;;;;;50225:31:0;;50217:85;;;;-1:-1:-1;;;50217:85:0;;14556:2:1;50217:85:0;;;14538:21:1;14595:2;14575:18;;;14568:30;14634:34;14614:18;;;14607:62;-1:-1:-1;;;14685:18:1;;;14678:39;14734:19;;50217:85:0;14354:405:1;50217:85:0;-1:-1:-1;;;;;50321:16:0;;50313:65;;;;-1:-1:-1;;;50313:65:0;;10245:2:1;50313:65:0;;;10227:21:1;10284:2;10264:18;;;10257:30;10323:34;10303:18;;;10296:62;-1:-1:-1;;;10374:18:1;;;10367:34;10418:19;;50313:65:0;10043:400:1;50313:65:0;50391:39;50412:4;50418:2;50422:7;50391:20;:39::i;:::-;50495:29;50512:1;50516:7;50495:8;:29::i;:::-;-1:-1:-1;;;;;50537:15:0;;;;;;:9;:15;;;;;:20;;50556:1;;50537:15;:20;;50556:1;;50537:20;:::i;:::-;;;;-1:-1:-1;;;;;;;50568:13:0;;;;;;:9;:13;;;;;:18;;50585:1;;50568:13;:18;;50585:1;;50568:18;:::i;:::-;;;;-1:-1:-1;;50597:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;50597:21:0;-1:-1:-1;;;;;50597:21:0;;;;;;;;;50636:27;;50597:16;;50636:27;;;;;;;50093:578;;;:::o;15131:120::-;14143:7;;-1:-1:-1;;;14143:7:0;;;;14667:41;;;;-1:-1:-1;;;14667:41:0;;7614:2:1;14667:41:0;;;7596:21:1;7653:2;7633:18;;;7626:30;-1:-1:-1;;;7672:18:1;;;7665:50;7732:18;;14667:41:0;7412:344:1;14667:41:0;15190:7:::1;:15:::0;;-1:-1:-1;;;;15190:15:0::1;::::0;;15221:22:::1;12806:10:::0;15230:12:::1;15221:22;::::0;-1:-1:-1;;;;;6180:32:1;;;6162:51;;6150:2;6135:18;15221:22:0::1;;;;;;;15131:120::o:0;17590:191::-;17683:6;;;-1:-1:-1;;;;;17700:17:0;;;-1:-1:-1;;;;;;17700:17:0;;;;;;;17733:40;;17683:6;;;17700:17;17683:6;;17733:40;;17664:16;;17733:40;17653:128;17590:191;:::o;14872:118::-;14143:7;;-1:-1:-1;;;14143:7:0;;;;14397:9;14389:38;;;;-1:-1:-1;;;14389:38:0;;;;;;;:::i;:::-;14932:7:::1;:14:::0;;-1:-1:-1;;;;14932:14:0::1;-1:-1:-1::0;;;14932:14:0::1;::::0;;14962:20:::1;14969:12;12806:10:::0;;12726:98;51105:315;51260:8;-1:-1:-1;;;;;51251:17:0;:5;-1:-1:-1;;;;;51251:17:0;;;51243:55;;;;-1:-1:-1;;;51243:55:0;;10650:2:1;51243:55:0;;;10632:21:1;10689:2;10669:18;;;10662:30;10728:27;10708:18;;;10701:55;10773:18;;51243:55:0;10448:349:1;51243:55:0;-1:-1:-1;;;;;51309:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;51309:46:0;;;;;;;;;;51371:41;;7136::1;;;51371::0;;7109:18:1;51371:41:0;;;;;;;51105:315;;;:::o;75999:361::-;76114:17;;;;:13;:17;;;;;:30;;;:37;;76149:1;76114:34;:37::i;:::-;76081:17;;;;:13;:17;;;;;:30;;;:70;;;;76198:33;;;:40;;76236:1;76198:37;:40::i;:::-;76162:17;;;;:13;:17;;;;;:33;;:76;76268:8;;76250:31;;76256:10;;76268:12;;76279:1;76268:12;:::i;:::-;76250:5;:31::i;:::-;76292:36;76305:8;;76316:1;76305:12;;;;:::i;:::-;76318:9;76292:12;:36::i;:::-;76351:1;76339:8;;:13;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;75999:361:0:o;2862:98::-;2920:7;2947:5;2951:1;2947;:5;:::i;:::-;2940:12;2862:98;-1:-1:-1;;;2862:98:0:o;46179:315::-;46336:28;46346:4;46352:2;46356:7;46336:9;:28::i;:::-;46383:48;46406:4;46412:2;46416:7;46425:5;46383:22;:48::i;:::-;46375:111;;;;-1:-1:-1;;;46375:111:0;;;;;;;:::i;74165:117::-;74225:13;74258:16;74251:23;;;;;:::i;10288:723::-;10344:13;10565:10;10561:53;;-1:-1:-1;;10592:10:0;;;;;;;;;;;;-1:-1:-1;;;10592:10:0;;;;;10288:723::o;10561:53::-;10639:5;10624:12;10680:78;10687:9;;10680:78;;10713:8;;;;:::i;:::-;;-1:-1:-1;10736:10:0;;-1:-1:-1;10744:2:0;10736:10;;:::i;:::-;;;10680:78;;;10768:19;10800:6;10790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10790:17:0;;10768:39;;10818:154;10825:10;;10818:154;;10852:11;10862:1;10852:11;;:::i;:::-;;-1:-1:-1;10921:10:0;10929:2;10921:5;:10;:::i;:::-;10908:24;;:2;:24;:::i;:::-;10895:39;;10878:6;10885;10878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10878:56:0;;;;;;;;-1:-1:-1;10949:11:0;10958:2;10949:11;;:::i;:::-;;;10818:154;;41049:305;41151:4;-1:-1:-1;;;;;;41188:40:0;;-1:-1:-1;;;41188:40:0;;:105;;-1:-1:-1;;;;;;;41245:48:0;;-1:-1:-1;;;41245:48:0;41188:105;:158;;;-1:-1:-1;;;;;;;;;;32854:40:0;;;41310:36;32745:157;77034:237;14143:7;;-1:-1:-1;;;14143:7:0;;;;14397:9;14389:38;;;;-1:-1:-1;;;14389:38:0;;;;;;;:::i;:::-;77218:45:::1;77245:4;77251:2;77255:7;77218:26;:45::i;48785:382::-:0;-1:-1:-1;;;;;48865:16:0;;48857:61;;;;-1:-1:-1;;;48857:61:0;;13008:2:1;48857:61:0;;;12990:21:1;;;13027:18;;;13020:30;13086:34;13066:18;;;13059:62;13138:18;;48857:61:0;12806:356:1;48857:61:0;46872:4;46896:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46896:16:0;:30;48929:58;;;;-1:-1:-1;;;48929:58:0;;9537:2:1;48929:58:0;;;9519:21:1;9576:2;9556:18;;;9549:30;9615;9595:18;;;9588:58;9663:18;;48929:58:0;9335:352:1;48929:58:0;49000:45;49029:1;49033:2;49037:7;49000:20;:45::i;:::-;-1:-1:-1;;;;;49058:13:0;;;;;;:9;:13;;;;;:18;;49075:1;;49058:13;:18;;49075:1;;49058:18;:::i;:::-;;;;-1:-1:-1;;49087:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;49087:21:0;-1:-1:-1;;;;;49087:21:0;;;;;;;;49126:33;;49087:16;;;49126:33;;49087:16;;49126:33;48785:382;;:::o;73878:275::-;46872:4;46896:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46896:16:0;73993:110;;;;-1:-1:-1;;;73993:110:0;;13782:2:1;73993:110:0;;;13764:21:1;13821:2;13801:18;;;13794:30;13860:34;13840:18;;;13833:62;-1:-1:-1;;;13911:18:1;;;13904:42;13963:19;;73993:110:0;13580:408:1;73993:110:0;74114:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;51985:799::-;52140:4;-1:-1:-1;;;;;52161:13:0;;18931:20;18979:8;52157:620;;52197:72;;-1:-1:-1;;;52197:72:0;;-1:-1:-1;;;;;52197:36:0;;;;;:72;;12806:10;;52248:4;;52254:7;;52263:5;;52197:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52197:72:0;;;;;;;;-1:-1:-1;;52197:72:0;;;;;;;;;;;;:::i;:::-;;;52193:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52439:13:0;;52435:272;;52482:60;;-1:-1:-1;;;52482:60:0;;;;;;;:::i;52435:272::-;52657:6;52651:13;52642:6;52638:2;52634:15;52627:38;52193:529;-1:-1:-1;;;;;;52320:51:0;-1:-1:-1;;;52320:51:0;;-1:-1:-1;52313:58:0;;52157:620;-1:-1:-1;52761:4:0;51985:799;;;;;;:::o;56176:589::-;-1:-1:-1;;;;;56382:18:0;;56378:187;;56417:40;56449:7;57592:10;:17;;57565:24;;;;:15;:24;;;;;:44;;;57620:24;;;;;;;;;;;;57488:164;56417:40;56378:187;;;56487:2;-1:-1:-1;;;;;56479:10:0;:4;-1:-1:-1;;;;;56479:10:0;;56475:90;;56506:47;56539:4;56545:7;56506:32;:47::i;:::-;-1:-1:-1;;;;;56579:16:0;;56575:183;;56612:45;56649:7;56612:36;:45::i;56575:183::-;56685:4;-1:-1:-1;;;;;56679:10:0;:2;-1:-1:-1;;;;;56679:10:0;;56675:83;;56706:40;56734:2;56738:7;56706:27;:40::i;58279:988::-;58545:22;58595:1;58570:22;58587:4;58570:16;:22::i;:::-;:26;;;;:::i;:::-;58607:18;58628:26;;;:17;:26;;;;;;58545:51;;-1:-1:-1;58761:28:0;;;58757:328;;-1:-1:-1;;;;;58828:18:0;;58806:19;58828:18;;;:12;:18;;;;;;;;:34;;;;;;;;;58879:30;;;;;;:44;;;58996:30;;:17;:30;;;;;:43;;;58757:328;-1:-1:-1;59181:26:0;;;;:17;:26;;;;;;;;59174:33;;;-1:-1:-1;;;;;59225:18:0;;;;;:12;:18;;;;;:34;;;;;;;59218:41;58279:988::o;59562:1079::-;59840:10;:17;59815:22;;59840:21;;59860:1;;59840:21;:::i;:::-;59872:18;59893:24;;;:15;:24;;;;;;60266:10;:26;;59815:46;;-1:-1:-1;59893:24:0;;59815:46;;60266:26;;;;;;:::i;:::-;;;;;;;;;60244:48;;60330:11;60305:10;60316;60305:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;60410:28;;;:15;:28;;;;;;;:41;;;60582:24;;;;;60575:31;60617:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;59633:1008;;;59562:1079;:::o;57066:221::-;57151:14;57168:20;57185:2;57168:16;:20::i;:::-;-1:-1:-1;;;;;57199:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;57244:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;57066:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:221::-;646:5;699:3;692:4;684:6;680:17;676:27;666:55;;717:1;714;707:12;666:55;739:79;814:3;805:6;792:20;785:4;777:6;773:17;739:79;:::i;829:186::-;888:6;941:2;929:9;920:7;916:23;912:32;909:52;;;957:1;954;947:12;909:52;980:29;999:9;980:29;:::i;1020:260::-;1088:6;1096;1149:2;1137:9;1128:7;1124:23;1120:32;1117:52;;;1165:1;1162;1155:12;1117:52;1188:29;1207:9;1188:29;:::i;:::-;1178:39;;1236:38;1270:2;1259:9;1255:18;1236:38;:::i;:::-;1226:48;;1020:260;;;;;:::o;1285:328::-;1362:6;1370;1378;1431:2;1419:9;1410:7;1406:23;1402:32;1399:52;;;1447:1;1444;1437:12;1399:52;1470:29;1489:9;1470:29;:::i;:::-;1460:39;;1518:38;1552:2;1541:9;1537:18;1518:38;:::i;:::-;1508:48;;1603:2;1592:9;1588:18;1575:32;1565:42;;1285:328;;;;;:::o;1618:666::-;1713:6;1721;1729;1737;1790:3;1778:9;1769:7;1765:23;1761:33;1758:53;;;1807:1;1804;1797:12;1758:53;1830:29;1849:9;1830:29;:::i;:::-;1820:39;;1878:38;1912:2;1901:9;1897:18;1878:38;:::i;:::-;1868:48;;1963:2;1952:9;1948:18;1935:32;1925:42;;2018:2;2007:9;2003:18;1990:32;2045:18;2037:6;2034:30;2031:50;;;2077:1;2074;2067:12;2031:50;2100:22;;2153:4;2145:13;;2141:27;-1:-1:-1;2131:55:1;;2182:1;2179;2172:12;2131:55;2205:73;2270:7;2265:2;2252:16;2247:2;2243;2239:11;2205:73;:::i;:::-;2195:83;;;1618:666;;;;;;;:::o;2289:347::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2533:2;2522:9;2518:18;2505:32;2580:5;2573:13;2566:21;2559:5;2556:32;2546:60;;2602:1;2599;2592:12;2546:60;2625:5;2615:15;;;2289:347;;;;;:::o;2641:254::-;2709:6;2717;2770:2;2758:9;2749:7;2745:23;2741:32;2738:52;;;2786:1;2783;2776:12;2738:52;2809:29;2828:9;2809:29;:::i;:::-;2799:39;2885:2;2870:18;;;;2857:32;;-1:-1:-1;;;2641:254:1:o;2900:963::-;2984:6;3015:2;3058;3046:9;3037:7;3033:23;3029:32;3026:52;;;3074:1;3071;3064:12;3026:52;3114:9;3101:23;3143:18;3184:2;3176:6;3173:14;3170:34;;;3200:1;3197;3190:12;3170:34;3238:6;3227:9;3223:22;3213:32;;3283:7;3276:4;3272:2;3268:13;3264:27;3254:55;;3305:1;3302;3295:12;3254:55;3341:2;3328:16;3363:2;3359;3356:10;3353:36;;;3369:18;;:::i;:::-;3415:2;3412:1;3408:10;3398:20;;3438:28;3462:2;3458;3454:11;3438:28;:::i;:::-;3500:15;;;3531:12;;;;3563:11;;;3593;;;3589:20;;3586:33;-1:-1:-1;3583:53:1;;;3632:1;3629;3622:12;3583:53;3654:1;3645:10;;3664:169;3678:2;3675:1;3672:9;3664:169;;;3735:23;3754:3;3735:23;:::i;:::-;3723:36;;3696:1;3689:9;;;;;3779:12;;;;3811;;3664:169;;;-1:-1:-1;3852:5:1;2900:963;-1:-1:-1;;;;;;;;2900:963:1:o;3868:245::-;3926:6;3979:2;3967:9;3958:7;3954:23;3950:32;3947:52;;;3995:1;3992;3985:12;3947:52;4034:9;4021:23;4053:30;4077:5;4053:30;:::i;4118:249::-;4187:6;4240:2;4228:9;4219:7;4215:23;4211:32;4208:52;;;4256:1;4253;4246:12;4208:52;4288:9;4282:16;4307:30;4331:5;4307:30;:::i;4372:322::-;4441:6;4494:2;4482:9;4473:7;4469:23;4465:32;4462:52;;;4510:1;4507;4500:12;4462:52;4550:9;4537:23;4583:18;4575:6;4572:30;4569:50;;;4615:1;4612;4605:12;4569:50;4638;4680:7;4671:6;4660:9;4656:22;4638:50;:::i;4699:180::-;4758:6;4811:2;4799:9;4790:7;4786:23;4782:32;4779:52;;;4827:1;4824;4817:12;4779:52;-1:-1:-1;4850:23:1;;4699:180;-1:-1:-1;4699:180:1:o;4884:390::-;4962:6;4970;5023:2;5011:9;5002:7;4998:23;4994:32;4991:52;;;5039:1;5036;5029:12;4991:52;5075:9;5062:23;5052:33;;5136:2;5125:9;5121:18;5108:32;5163:18;5155:6;5152:30;5149:50;;;5195:1;5192;5185:12;5149:50;5218;5260:7;5251:6;5240:9;5236:22;5218:50;:::i;:::-;5208:60;;;4884:390;;;;;:::o;5279:257::-;5320:3;5358:5;5352:12;5385:6;5380:3;5373:19;5401:63;5457:6;5450:4;5445:3;5441:14;5434:4;5427:5;5423:16;5401:63;:::i;:::-;5518:2;5497:15;-1:-1:-1;;5493:29:1;5484:39;;;;5525:4;5480:50;;5279:257;-1:-1:-1;;5279:257:1:o;5541:470::-;5720:3;5758:6;5752:13;5774:53;5820:6;5815:3;5808:4;5800:6;5796:17;5774:53;:::i;:::-;5890:13;;5849:16;;;;5912:57;5890:13;5849:16;5946:4;5934:17;;5912:57;:::i;:::-;5985:20;;5541:470;-1:-1:-1;;;;5541:470:1:o;6224:488::-;-1:-1:-1;;;;;6493:15:1;;;6475:34;;6545:15;;6540:2;6525:18;;6518:43;6592:2;6577:18;;6570:34;;;6640:3;6635:2;6620:18;;6613:31;;;6418:4;;6661:45;;6686:19;;6678:6;6661:45;:::i;:::-;6653:53;6224:488;-1:-1:-1;;;;;;6224:488:1:o;7188:219::-;7337:2;7326:9;7319:21;7300:4;7357:44;7397:2;7386:9;7382:18;7374:6;7357:44;:::i;8173:414::-;8375:2;8357:21;;;8414:2;8394:18;;;8387:30;8453:34;8448:2;8433:18;;8426:62;-1:-1:-1;;;8519:2:1;8504:18;;8497:48;8577:3;8562:19;;8173:414::o;11215:340::-;11417:2;11399:21;;;11456:2;11436:18;;;11429:30;-1:-1:-1;;;11490:2:1;11475:18;;11468:46;11546:2;11531:18;;11215:340::o;13993:356::-;14195:2;14177:21;;;14214:18;;;14207:30;14273:34;14268:2;14253:18;;14246:62;14340:2;14325:18;;13993:356::o;16638:413::-;16840:2;16822:21;;;16879:2;16859:18;;;16852:30;16918:34;16913:2;16898:18;;16891:62;-1:-1:-1;;;16984:2:1;16969:18;;16962:47;17041:3;17026:19;;16638:413::o;18353:741::-;18690:6;18679:9;18672:25;18733:3;18728:2;18717:9;18713:18;18706:31;18653:4;18760:45;18800:3;18789:9;18785:19;18777:6;18760:45;:::i;:::-;18853:9;18845:6;18841:22;18836:2;18825:9;18821:18;18814:50;18881:32;18906:6;18898;18881:32;:::i;:::-;18873:40;;;18949:6;18944:2;18933:9;18929:18;18922:34;18993:6;18987:3;18976:9;18972:19;18965:35;19037:6;19031:3;19020:9;19016:19;19009:35;19081:6;19075:3;19064:9;19060:19;19053:35;18353:741;;;;;;;;;;:::o;19099:275::-;19170:2;19164:9;19235:2;19216:13;;-1:-1:-1;;19212:27:1;19200:40;;19270:18;19255:34;;19291:22;;;19252:62;19249:88;;;19317:18;;:::i;:::-;19353:2;19346:22;19099:275;;-1:-1:-1;19099:275:1:o;19379:128::-;19419:3;19450:1;19446:6;19443:1;19440:13;19437:39;;;19456:18;;:::i;:::-;-1:-1:-1;19492:9:1;;19379:128::o;19512:120::-;19552:1;19578;19568:35;;19583:18;;:::i;:::-;-1:-1:-1;19617:9:1;;19512:120::o;19637:125::-;19677:4;19705:1;19702;19699:8;19696:34;;;19710:18;;:::i;:::-;-1:-1:-1;19747:9:1;;19637:125::o;19767:258::-;19839:1;19849:113;19863:6;19860:1;19857:13;19849:113;;;19939:11;;;19933:18;19920:11;;;19913:39;19885:2;19878:10;19849:113;;;19980:6;19977:1;19974:13;19971:48;;;-1:-1:-1;;20015:1:1;19997:16;;19990:27;19767:258::o;20030:380::-;20109:1;20105:12;;;;20152;;;20173:61;;20227:4;20219:6;20215:17;20205:27;;20173:61;20280:2;20272:6;20269:14;20249:18;20246:38;20243:161;;;20326:10;20321:3;20317:20;20314:1;20307:31;20361:4;20358:1;20351:15;20389:4;20386:1;20379:15;20243:161;;20030:380;;;:::o;20415:135::-;20454:3;-1:-1:-1;;20475:17:1;;20472:43;;;20495:18;;:::i;:::-;-1:-1:-1;20542:1:1;20531:13;;20415:135::o;20555:112::-;20587:1;20613;20603:35;;20618:18;;:::i;:::-;-1:-1:-1;20652:9:1;;20555:112::o;20672:127::-;20733:10;20728:3;20724:20;20721:1;20714:31;20764:4;20761:1;20754:15;20788:4;20785:1;20778:15;20804:127;20865:10;20860:3;20856:20;20853:1;20846:31;20896:4;20893:1;20886:15;20920:4;20917:1;20910:15;20936:127;20997:10;20992:3;20988:20;20985:1;20978:31;21028:4;21025:1;21018:15;21052:4;21049:1;21042:15;21068:127;21129:10;21124:3;21120:20;21117:1;21110:31;21160:4;21157:1;21150:15;21184:4;21181:1;21174:15;21200:127;21261:10;21256:3;21252:20;21249:1;21242:31;21292:4;21289:1;21282:15;21316:4;21313:1;21306:15;21332:131;-1:-1:-1;;;;;;21406:32:1;;21396:43;;21386:71;;21453:1;21450;21443:12

Swarm Source

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