ETH Price: $2,359.17 (+1.57%)

Token

BONKED NFT (BONKED NFT)
 

Overview

Max Total Supply

83 BONKED NFT

Holders

41

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BONKED NFT
0x4e740Cc1569831AE7a6dd4c518A3056e1574153C
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:
BONKEDNFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-17
*/

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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 (last updated v4.8.0) (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`.
     *
     * 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;

    /**
     * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

// 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 (last updated v4.8.0) (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: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @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 from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256, /* firstTokenId */
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (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 See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

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


pragma solidity ^0.8.0;













// try pay with BONKED
pragma solidity >=0.4.0;

interface IBEP20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the token decimals.
     */
    function decimals() external view returns (uint8);

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

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

    /**
     * @dev Returns the bep token owner.
     */
    function getOwner() external view returns (address);

    /**
     * @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);
}


contract BONKEDNFT is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 5 * 1e16;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmount = 5;
  bool public paused = false;
  mapping(address => bool) public whitelisted;
   uint amountBONKED;
     address payTokenBONKED;
     address vault;
     
  

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
  }

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

  // public
  function mint(address _to, uint256 _mintAmount) public payable {
    IBEP20 BONKED = IBEP20(payTokenBONKED);
    require(BONKED.transferFrom(msg.sender, vault, amountBONKED));
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
        if(whitelisted[msg.sender] != true) {
          require(msg.value >= cost * _mintAmount);
        }
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_to, supply + i);
    }
  }

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

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

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

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

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
  }

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
 function whitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = true;
  }
 
  function removeWhitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = false;
  }

  function withdraw() public payable onlyOwner {
    require(payable(msg.sender).send(address(this).balance));
  }
  
      function setPayBONKED(address _pay) public onlyOwner {
   payTokenBONKED = _pay; 
         
     }
     
     function setPriceBONKED(uint _price) public onlyOwner {
    amountBONKED = _price;
    }
    
    function setVault(address _vault) public onlyOwner {
   vault = _vault;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pay","type":"address"}],"name":"setPayBONKED","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPriceBONKED","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90816200004a919062000539565b5066b1a2bc2ec50000600d55612710600e556005600f556000601060006101000a81548160ff0219169083151502179055503480156200008957600080fd5b5060405162004e3b38038062004e3b8339818101604052810190620000af919062000784565b82828160009081620000c2919062000539565b508060019081620000d4919062000539565b505050620000f7620000eb6200011160201b60201c565b6200011960201b60201c565b6200010881620001df60201b60201c565b505050620008c0565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001ef6200020460201b60201c565b80600b908162000200919062000539565b5050565b620002146200011160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200023a6200029560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000293576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028a906200089e565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200034157607f821691505b602082108103620003575762000356620002f9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003c17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000382565b620003cd868362000382565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200041a620004146200040e84620003e5565b620003ef565b620003e5565b9050919050565b6000819050919050565b6200043683620003f9565b6200044e620004458262000421565b8484546200038f565b825550505050565b600090565b6200046562000456565b620004728184846200042b565b505050565b5b818110156200049a576200048e6000826200045b565b60018101905062000478565b5050565b601f821115620004e957620004b3816200035d565b620004be8462000372565b81016020851015620004ce578190505b620004e6620004dd8562000372565b83018262000477565b50505b505050565b600082821c905092915050565b60006200050e60001984600802620004ee565b1980831691505092915050565b6000620005298383620004fb565b9150826002028217905092915050565b6200054482620002bf565b67ffffffffffffffff81111562000560576200055f620002ca565b5b6200056c825462000328565b620005798282856200049e565b600060209050601f831160018114620005b157600084156200059c578287015190505b620005a885826200051b565b86555062000618565b601f198416620005c1866200035d565b60005b82811015620005eb57848901518255600182019150602085019450602081019050620005c4565b868310156200060b578489015162000607601f891682620004fb565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200065a826200063e565b810181811067ffffffffffffffff821117156200067c576200067b620002ca565b5b80604052505050565b60006200069162000620565b90506200069f82826200064f565b919050565b600067ffffffffffffffff821115620006c257620006c1620002ca565b5b620006cd826200063e565b9050602081019050919050565b60005b83811015620006fa578082015181840152602081019050620006dd565b60008484015250505050565b60006200071d6200071784620006a4565b62000685565b9050828152602081018484840111156200073c576200073b62000639565b5b62000749848285620006da565b509392505050565b600082601f83011262000769576200076862000634565b5b81516200077b84826020860162000706565b91505092915050565b600080600060608486031215620007a0576200079f6200062a565b5b600084015167ffffffffffffffff811115620007c157620007c06200062f565b5b620007cf8682870162000751565b935050602084015167ffffffffffffffff811115620007f357620007f26200062f565b5b620008018682870162000751565b925050604084015167ffffffffffffffff8111156200082557620008246200062f565b5b620008338682870162000751565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620008866020836200083d565b915062000893826200084e565b602082019050919050565b60006020820190508181036000830152620008b98162000877565b9050919050565b61456b80620008d06000396000f3fe6080604052600436106102305760003560e01c80634f6ccce71161012e57806395d89b41116100ab578063d5abeb011161006f578063d5abeb011461081b578063d936547e14610846578063da3ef23f14610883578063e985e9c5146108ac578063f2fde38b146108e957610230565b806395d89b4114610736578063a22cb46514610761578063b88d4fde1461078a578063c6682862146107b3578063c87b56dd146107de57610230565b80636c0360eb116100f25780636c0360eb1461066357806370a082311461068e578063715018a6146106cb5780637f00c7a6146106e25780638da5cb5b1461070b57610230565b80634f6ccce71461056c57806355f804b3146105a95780635c975abb146105d25780636352211e146105fd5780636817031b1461063a57610230565b8063239c70ae116101bc57806340c10f191161018057806340c10f191461049857806342842e0e146104b4578063438b6300146104dd57806344a0d68a1461051a5780634a4c560d1461054357610230565b8063239c70ae146103d457806323b872dd146103ff5780632f745c591461042857806330cc7ae0146104655780633ccfd60b1461048e57610230565b806306fdde031161020357806306fdde03146102ed578063081812fc14610318578063095ea7b31461035557806313faede61461037e57806318160ddd146103a957610230565b80630169f4011461023557806301ffc9a71461025e57806302329a291461029b57806306a483b2146102c4575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612e02565b610912565b005b34801561026a57600080fd5b5061028560048036038101906102809190612e87565b610924565b6040516102929190612ecf565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd9190612f16565b61099e565b005b3480156102d057600080fd5b506102eb60048036038101906102e69190612fa1565b6109c3565b005b3480156102f957600080fd5b50610302610a0f565b60405161030f919061305e565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612e02565b610aa1565b60405161034c919061308f565b60405180910390f35b34801561036157600080fd5b5061037c600480360381019061037791906130aa565b610ae7565b005b34801561038a57600080fd5b50610393610bfe565b6040516103a091906130f9565b60405180910390f35b3480156103b557600080fd5b506103be610c04565b6040516103cb91906130f9565b60405180910390f35b3480156103e057600080fd5b506103e9610c11565b6040516103f691906130f9565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190613114565b610c17565b005b34801561043457600080fd5b5061044f600480360381019061044a91906130aa565b610c77565b60405161045c91906130f9565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190612fa1565b610d1c565b005b610496610d7f565b005b6104b260048036038101906104ad91906130aa565b610dc7565b005b3480156104c057600080fd5b506104db60048036038101906104d69190613114565b610fe2565b005b3480156104e957600080fd5b5061050460048036038101906104ff9190612fa1565b611002565b6040516105119190613225565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190612e02565b6110b0565b005b34801561054f57600080fd5b5061056a60048036038101906105659190612fa1565b6110c2565b005b34801561057857600080fd5b50610593600480360381019061058e9190612e02565b611125565b6040516105a091906130f9565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb919061337c565b611196565b005b3480156105de57600080fd5b506105e76111b1565b6040516105f49190612ecf565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f9190612e02565b6111c4565b604051610631919061308f565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190612fa1565b61124a565b005b34801561066f57600080fd5b50610678611296565b604051610685919061305e565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612fa1565b611324565b6040516106c291906130f9565b60405180910390f35b3480156106d757600080fd5b506106e06113db565b005b3480156106ee57600080fd5b5061070960048036038101906107049190612e02565b6113ef565b005b34801561071757600080fd5b50610720611401565b60405161072d919061308f565b60405180910390f35b34801561074257600080fd5b5061074b61142b565b604051610758919061305e565b60405180910390f35b34801561076d57600080fd5b50610788600480360381019061078391906133c5565b6114bd565b005b34801561079657600080fd5b506107b160048036038101906107ac91906134a6565b6114d3565b005b3480156107bf57600080fd5b506107c8611535565b6040516107d5919061305e565b60405180910390f35b3480156107ea57600080fd5b5061080560048036038101906108009190612e02565b6115c3565b604051610812919061305e565b60405180910390f35b34801561082757600080fd5b5061083061166d565b60405161083d91906130f9565b60405180910390f35b34801561085257600080fd5b5061086d60048036038101906108689190612fa1565b611673565b60405161087a9190612ecf565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a5919061337c565b611693565b005b3480156108b857600080fd5b506108d360048036038101906108ce9190613529565b6116ae565b6040516108e09190612ecf565b60405180910390f35b3480156108f557600080fd5b50610910600480360381019061090b9190612fa1565b611742565b005b61091a6117c5565b8060128190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610997575061099682611843565b5b9050919050565b6109a66117c5565b80601060006101000a81548160ff02191690831515021790555050565b6109cb6117c5565b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610a1e90613598565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4a90613598565b8015610a975780601f10610a6c57610100808354040283529160200191610a97565b820191906000526020600020905b815481529060010190602001808311610a7a57829003601f168201915b5050505050905090565b6000610aac82611925565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af2826111c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b599061363b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b81611970565b73ffffffffffffffffffffffffffffffffffffffff161480610bb05750610baf81610baa611970565b6116ae565b5b610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be6906136cd565b60405180910390fd5b610bf98383611978565b505050565b600d5481565b6000600880549050905090565b600f5481565b610c28610c22611970565b82611a31565b610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e9061375f565b60405180910390fd5b610c72838383611ac6565b505050565b6000610c8283611324565b8210610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba906137f1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d246117c5565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610d876117c5565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610dc557600080fd5b565b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166323b872dd33601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166012546040518463ffffffff1660e01b8152600401610e4f93929190613811565b6020604051808303816000875af1158015610e6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e92919061385d565b610e9b57600080fd5b6000610ea5610c04565b9050601060009054906101000a900460ff1615610ec157600080fd5b60008311610ece57600080fd5b600f54831115610edd57600080fd5b600e548382610eec91906138b9565b1115610ef757600080fd5b610eff611401565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fa55760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610fa45782600d54610f9791906138ed565b341015610fa357600080fd5b5b5b6000600190505b838111610fdb57610fc8858284610fc391906138b9565b611dbf565b8080610fd39061392f565b915050610fac565b5050505050565b610ffd838383604051806020016040528060008152506114d3565b505050565b6060600061100f83611324565b905060008167ffffffffffffffff81111561102d5761102c613251565b5b60405190808252806020026020018201604052801561105b5781602001602082028036833780820191505090505b50905060005b828110156110a5576110738582610c77565b82828151811061108657611085613977565b5b602002602001018181525050808061109d9061392f565b915050611061565b508092505050919050565b6110b86117c5565b80600d8190555050565b6110ca6117c5565b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600061112f610c04565b8210611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790613a18565b60405180910390fd5b6008828154811061118457611183613977565b5b90600052602060002001549050919050565b61119e6117c5565b80600b90816111ad9190613be4565b5050565b601060009054906101000a900460ff1681565b6000806111d083611ddd565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123890613d02565b60405180910390fd5b80915050919050565b6112526117c5565b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b80546112a390613598565b80601f01602080910402602001604051908101604052809291908181526020018280546112cf90613598565b801561131c5780601f106112f15761010080835404028352916020019161131c565b820191906000526020600020905b8154815290600101906020018083116112ff57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b90613d94565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113e36117c5565b6113ed6000611e1a565b565b6113f76117c5565b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461143a90613598565b80601f016020809104026020016040519081016040528092919081815260200182805461146690613598565b80156114b35780601f10611488576101008083540402835291602001916114b3565b820191906000526020600020905b81548152906001019060200180831161149657829003601f168201915b5050505050905090565b6114cf6114c8611970565b8383611ee0565b5050565b6114e46114de611970565b83611a31565b611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a9061375f565b60405180910390fd5b61152f8484848461204c565b50505050565b600c805461154290613598565b80601f016020809104026020016040519081016040528092919081815260200182805461156e90613598565b80156115bb5780601f10611590576101008083540402835291602001916115bb565b820191906000526020600020905b81548152906001019060200180831161159e57829003601f168201915b505050505081565b60606115ce826120a8565b61160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490613e26565b60405180910390fd5b60006116176120e9565b905060008151116116375760405180602001604052806000815250611665565b806116418461217b565b600c60405160200161165593929190613f05565b6040516020818303038152906040525b915050919050565b600e5481565b60116020528060005260406000206000915054906101000a900460ff1681565b61169b6117c5565b80600c90816116aa9190613be4565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61174a6117c5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613fa8565b60405180910390fd5b6117c281611e1a565b50565b6117cd611970565b73ffffffffffffffffffffffffffffffffffffffff166117eb611401565b73ffffffffffffffffffffffffffffffffffffffff1614611841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183890614014565b60405180910390fd5b565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061190e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061191e575061191d82612249565b5b9050919050565b61192e816120a8565b61196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490613d02565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119eb836111c4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611a3d836111c4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a7f5750611a7e81856116ae565b5b80611abd57508373ffffffffffffffffffffffffffffffffffffffff16611aa584610aa1565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ae6826111c4565b73ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b33906140a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290614138565b60405180910390fd5b611bb883838360016122b3565b8273ffffffffffffffffffffffffffffffffffffffff16611bd8826111c4565b73ffffffffffffffffffffffffffffffffffffffff1614611c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c25906140a6565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dba8383836001612411565b505050565b611dd9828260405180602001604052806000815250612417565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f45906141a4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161203f9190612ecf565b60405180910390a3505050565b612057848484611ac6565b61206384848484612472565b6120a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209990614236565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166120ca83611ddd565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b80546120f890613598565b80601f016020809104026020016040519081016040528092919081815260200182805461212490613598565b80156121715780601f1061214657610100808354040283529160200191612171565b820191906000526020600020905b81548152906001019060200180831161215457829003601f168201915b5050505050905090565b60606000600161218a846125f9565b01905060008167ffffffffffffffff8111156121a9576121a8613251565b5b6040519080825280601f01601f1916602001820160405280156121db5781602001600182028036833780820191505090505b509050600082602001820190505b60011561223e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161223257612231614256565b5b049450600085036121e9575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122bf8484848461274c565b6001811115612303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fa906142f7565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361234a5761234581612872565b612389565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146123885761238785826128bb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036123cb576123c681612a28565b61240a565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612409576124088482612af9565b5b5b5050505050565b50505050565b6124218383612b78565b61242e6000848484612472565b61246d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246490614236565b60405180910390fd5b505050565b60006124938473ffffffffffffffffffffffffffffffffffffffff16612d95565b156125ec578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124bc611970565b8786866040518563ffffffff1660e01b81526004016124de949392919061436c565b6020604051808303816000875af192505050801561251a57506040513d601f19601f8201168201806040525081019061251791906143cd565b60015b61259c573d806000811461254a576040519150601f19603f3d011682016040523d82523d6000602084013e61254f565b606091505b506000815103612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b90614236565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125f1565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612657577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161264d5761264c614256565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612694576d04ee2d6d415b85acef8100000000838161268a57612689614256565b5b0492506020810190505b662386f26fc1000083106126c357662386f26fc1000083816126b9576126b8614256565b5b0492506010810190505b6305f5e10083106126ec576305f5e10083816126e2576126e1614256565b5b0492506008810190505b612710831061271157612710838161270757612706614256565b5b0492506004810190505b60648310612734576064838161272a57612729614256565b5b0492506002810190505b600a8310612743576001810190505b80915050919050565b600181111561286c57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146127e05780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127d891906143fa565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461286b5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461286391906138b9565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016128c884611324565b6128d291906143fa565b90506000600760008481526020019081526020016000205490508181146129b7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a3c91906143fa565b9050600060096000848152602001908152602001600020549050600060088381548110612a6c57612a6b613977565b5b906000526020600020015490508060088381548110612a8e57612a8d613977565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612add57612adc61442e565b5b6001900381819060005260206000200160009055905550505050565b6000612b0483611324565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bde906144a9565b60405180910390fd5b612bf0816120a8565b15612c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2790614515565b60405180910390fd5b612c3e6000838360016122b3565b612c47816120a8565b15612c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7e90614515565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d91600083836001612411565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612ddf81612dcc565b8114612dea57600080fd5b50565b600081359050612dfc81612dd6565b92915050565b600060208284031215612e1857612e17612dc2565b5b6000612e2684828501612ded565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e6481612e2f565b8114612e6f57600080fd5b50565b600081359050612e8181612e5b565b92915050565b600060208284031215612e9d57612e9c612dc2565b5b6000612eab84828501612e72565b91505092915050565b60008115159050919050565b612ec981612eb4565b82525050565b6000602082019050612ee46000830184612ec0565b92915050565b612ef381612eb4565b8114612efe57600080fd5b50565b600081359050612f1081612eea565b92915050565b600060208284031215612f2c57612f2b612dc2565b5b6000612f3a84828501612f01565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f6e82612f43565b9050919050565b612f7e81612f63565b8114612f8957600080fd5b50565b600081359050612f9b81612f75565b92915050565b600060208284031215612fb757612fb6612dc2565b5b6000612fc584828501612f8c565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613008578082015181840152602081019050612fed565b60008484015250505050565b6000601f19601f8301169050919050565b600061303082612fce565b61303a8185612fd9565b935061304a818560208601612fea565b61305381613014565b840191505092915050565b600060208201905081810360008301526130788184613025565b905092915050565b61308981612f63565b82525050565b60006020820190506130a46000830184613080565b92915050565b600080604083850312156130c1576130c0612dc2565b5b60006130cf85828601612f8c565b92505060206130e085828601612ded565b9150509250929050565b6130f381612dcc565b82525050565b600060208201905061310e60008301846130ea565b92915050565b60008060006060848603121561312d5761312c612dc2565b5b600061313b86828701612f8c565b935050602061314c86828701612f8c565b925050604061315d86828701612ded565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61319c81612dcc565b82525050565b60006131ae8383613193565b60208301905092915050565b6000602082019050919050565b60006131d282613167565b6131dc8185613172565b93506131e783613183565b8060005b838110156132185781516131ff88826131a2565b975061320a836131ba565b9250506001810190506131eb565b5085935050505092915050565b6000602082019050818103600083015261323f81846131c7565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61328982613014565b810181811067ffffffffffffffff821117156132a8576132a7613251565b5b80604052505050565b60006132bb612db8565b90506132c78282613280565b919050565b600067ffffffffffffffff8211156132e7576132e6613251565b5b6132f082613014565b9050602081019050919050565b82818337600083830152505050565b600061331f61331a846132cc565b6132b1565b90508281526020810184848401111561333b5761333a61324c565b5b6133468482856132fd565b509392505050565b600082601f83011261336357613362613247565b5b813561337384826020860161330c565b91505092915050565b60006020828403121561339257613391612dc2565b5b600082013567ffffffffffffffff8111156133b0576133af612dc7565b5b6133bc8482850161334e565b91505092915050565b600080604083850312156133dc576133db612dc2565b5b60006133ea85828601612f8c565b92505060206133fb85828601612f01565b9150509250929050565b600067ffffffffffffffff8211156134205761341f613251565b5b61342982613014565b9050602081019050919050565b600061344961344484613405565b6132b1565b9050828152602081018484840111156134655761346461324c565b5b6134708482856132fd565b509392505050565b600082601f83011261348d5761348c613247565b5b813561349d848260208601613436565b91505092915050565b600080600080608085870312156134c0576134bf612dc2565b5b60006134ce87828801612f8c565b94505060206134df87828801612f8c565b93505060406134f087828801612ded565b925050606085013567ffffffffffffffff81111561351157613510612dc7565b5b61351d87828801613478565b91505092959194509250565b600080604083850312156135405761353f612dc2565b5b600061354e85828601612f8c565b925050602061355f85828601612f8c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135b057607f821691505b6020821081036135c3576135c2613569565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613625602183612fd9565b9150613630826135c9565b604082019050919050565b6000602082019050818103600083015261365481613618565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006136b7603d83612fd9565b91506136c28261365b565b604082019050919050565b600060208201905081810360008301526136e6816136aa565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613749602d83612fd9565b9150613754826136ed565b604082019050919050565b600060208201905081810360008301526137788161373c565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006137db602b83612fd9565b91506137e68261377f565b604082019050919050565b6000602082019050818103600083015261380a816137ce565b9050919050565b60006060820190506138266000830186613080565b6138336020830185613080565b61384060408301846130ea565b949350505050565b60008151905061385781612eea565b92915050565b60006020828403121561387357613872612dc2565b5b600061388184828501613848565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138c482612dcc565b91506138cf83612dcc565b92508282019050808211156138e7576138e661388a565b5b92915050565b60006138f882612dcc565b915061390383612dcc565b925082820261391181612dcc565b915082820484148315176139285761392761388a565b5b5092915050565b600061393a82612dcc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361396c5761396b61388a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613a02602c83612fd9565b9150613a0d826139a6565b604082019050919050565b60006020820190508181036000830152613a31816139f5565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613a9a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613a5d565b613aa48683613a5d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613ae1613adc613ad784612dcc565b613abc565b612dcc565b9050919050565b6000819050919050565b613afb83613ac6565b613b0f613b0782613ae8565b848454613a6a565b825550505050565b600090565b613b24613b17565b613b2f818484613af2565b505050565b5b81811015613b5357613b48600082613b1c565b600181019050613b35565b5050565b601f821115613b9857613b6981613a38565b613b7284613a4d565b81016020851015613b81578190505b613b95613b8d85613a4d565b830182613b34565b50505b505050565b600082821c905092915050565b6000613bbb60001984600802613b9d565b1980831691505092915050565b6000613bd48383613baa565b9150826002028217905092915050565b613bed82612fce565b67ffffffffffffffff811115613c0657613c05613251565b5b613c108254613598565b613c1b828285613b57565b600060209050601f831160018114613c4e5760008415613c3c578287015190505b613c468582613bc8565b865550613cae565b601f198416613c5c86613a38565b60005b82811015613c8457848901518255600182019150602085019450602081019050613c5f565b86831015613ca15784890151613c9d601f891682613baa565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613cec601883612fd9565b9150613cf782613cb6565b602082019050919050565b60006020820190508181036000830152613d1b81613cdf565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613d7e602983612fd9565b9150613d8982613d22565b604082019050919050565b60006020820190508181036000830152613dad81613d71565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613e10602f83612fd9565b9150613e1b82613db4565b604082019050919050565b60006020820190508181036000830152613e3f81613e03565b9050919050565b600081905092915050565b6000613e5c82612fce565b613e668185613e46565b9350613e76818560208601612fea565b80840191505092915050565b60008154613e8f81613598565b613e998186613e46565b94506001821660008114613eb45760018114613ec957613efc565b60ff1983168652811515820286019350613efc565b613ed285613a38565b60005b83811015613ef457815481890152600182019150602081019050613ed5565b838801955050505b50505092915050565b6000613f118286613e51565b9150613f1d8285613e51565b9150613f298284613e82565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f92602683612fd9565b9150613f9d82613f36565b604082019050919050565b60006020820190508181036000830152613fc181613f85565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ffe602083612fd9565b915061400982613fc8565b602082019050919050565b6000602082019050818103600083015261402d81613ff1565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614090602583612fd9565b915061409b82614034565b604082019050919050565b600060208201905081810360008301526140bf81614083565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614122602483612fd9565b915061412d826140c6565b604082019050919050565b6000602082019050818103600083015261415181614115565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061418e601983612fd9565b915061419982614158565b602082019050919050565b600060208201905081810360008301526141bd81614181565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614220603283612fd9565b915061422b826141c4565b604082019050919050565b6000602082019050818103600083015261424f81614213565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b60006142e1603583612fd9565b91506142ec82614285565b604082019050919050565b60006020820190508181036000830152614310816142d4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061433e82614317565b6143488185614322565b9350614358818560208601612fea565b61436181613014565b840191505092915050565b60006080820190506143816000830187613080565b61438e6020830186613080565b61439b60408301856130ea565b81810360608301526143ad8184614333565b905095945050505050565b6000815190506143c781612e5b565b92915050565b6000602082840312156143e3576143e2612dc2565b5b60006143f1848285016143b8565b91505092915050565b600061440582612dcc565b915061441083612dcc565b92508282039050818111156144285761442761388a565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614493602083612fd9565b915061449e8261445d565b602082019050919050565b600060208201905081810360008301526144c281614486565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006144ff601c83612fd9565b915061450a826144c9565b602082019050919050565b6000602082019050818103600083015261452e816144f2565b905091905056fea2646970667358221220a7b03c0f95e77b9f14627e9b5a959b72b68777e9df4e85b42879332a6006d3ec64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a424f4e4b4544204e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a424f4e4b4544204e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d62706b44703577333267756a4444685a614366316836426f55464d6975757457694d487244573643466d70692f00000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c80634f6ccce71161012e57806395d89b41116100ab578063d5abeb011161006f578063d5abeb011461081b578063d936547e14610846578063da3ef23f14610883578063e985e9c5146108ac578063f2fde38b146108e957610230565b806395d89b4114610736578063a22cb46514610761578063b88d4fde1461078a578063c6682862146107b3578063c87b56dd146107de57610230565b80636c0360eb116100f25780636c0360eb1461066357806370a082311461068e578063715018a6146106cb5780637f00c7a6146106e25780638da5cb5b1461070b57610230565b80634f6ccce71461056c57806355f804b3146105a95780635c975abb146105d25780636352211e146105fd5780636817031b1461063a57610230565b8063239c70ae116101bc57806340c10f191161018057806340c10f191461049857806342842e0e146104b4578063438b6300146104dd57806344a0d68a1461051a5780634a4c560d1461054357610230565b8063239c70ae146103d457806323b872dd146103ff5780632f745c591461042857806330cc7ae0146104655780633ccfd60b1461048e57610230565b806306fdde031161020357806306fdde03146102ed578063081812fc14610318578063095ea7b31461035557806313faede61461037e57806318160ddd146103a957610230565b80630169f4011461023557806301ffc9a71461025e57806302329a291461029b57806306a483b2146102c4575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612e02565b610912565b005b34801561026a57600080fd5b5061028560048036038101906102809190612e87565b610924565b6040516102929190612ecf565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd9190612f16565b61099e565b005b3480156102d057600080fd5b506102eb60048036038101906102e69190612fa1565b6109c3565b005b3480156102f957600080fd5b50610302610a0f565b60405161030f919061305e565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612e02565b610aa1565b60405161034c919061308f565b60405180910390f35b34801561036157600080fd5b5061037c600480360381019061037791906130aa565b610ae7565b005b34801561038a57600080fd5b50610393610bfe565b6040516103a091906130f9565b60405180910390f35b3480156103b557600080fd5b506103be610c04565b6040516103cb91906130f9565b60405180910390f35b3480156103e057600080fd5b506103e9610c11565b6040516103f691906130f9565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190613114565b610c17565b005b34801561043457600080fd5b5061044f600480360381019061044a91906130aa565b610c77565b60405161045c91906130f9565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190612fa1565b610d1c565b005b610496610d7f565b005b6104b260048036038101906104ad91906130aa565b610dc7565b005b3480156104c057600080fd5b506104db60048036038101906104d69190613114565b610fe2565b005b3480156104e957600080fd5b5061050460048036038101906104ff9190612fa1565b611002565b6040516105119190613225565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c9190612e02565b6110b0565b005b34801561054f57600080fd5b5061056a60048036038101906105659190612fa1565b6110c2565b005b34801561057857600080fd5b50610593600480360381019061058e9190612e02565b611125565b6040516105a091906130f9565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb919061337c565b611196565b005b3480156105de57600080fd5b506105e76111b1565b6040516105f49190612ecf565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f9190612e02565b6111c4565b604051610631919061308f565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c9190612fa1565b61124a565b005b34801561066f57600080fd5b50610678611296565b604051610685919061305e565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612fa1565b611324565b6040516106c291906130f9565b60405180910390f35b3480156106d757600080fd5b506106e06113db565b005b3480156106ee57600080fd5b5061070960048036038101906107049190612e02565b6113ef565b005b34801561071757600080fd5b50610720611401565b60405161072d919061308f565b60405180910390f35b34801561074257600080fd5b5061074b61142b565b604051610758919061305e565b60405180910390f35b34801561076d57600080fd5b50610788600480360381019061078391906133c5565b6114bd565b005b34801561079657600080fd5b506107b160048036038101906107ac91906134a6565b6114d3565b005b3480156107bf57600080fd5b506107c8611535565b6040516107d5919061305e565b60405180910390f35b3480156107ea57600080fd5b5061080560048036038101906108009190612e02565b6115c3565b604051610812919061305e565b60405180910390f35b34801561082757600080fd5b5061083061166d565b60405161083d91906130f9565b60405180910390f35b34801561085257600080fd5b5061086d60048036038101906108689190612fa1565b611673565b60405161087a9190612ecf565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a5919061337c565b611693565b005b3480156108b857600080fd5b506108d360048036038101906108ce9190613529565b6116ae565b6040516108e09190612ecf565b60405180910390f35b3480156108f557600080fd5b50610910600480360381019061090b9190612fa1565b611742565b005b61091a6117c5565b8060128190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610997575061099682611843565b5b9050919050565b6109a66117c5565b80601060006101000a81548160ff02191690831515021790555050565b6109cb6117c5565b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610a1e90613598565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4a90613598565b8015610a975780601f10610a6c57610100808354040283529160200191610a97565b820191906000526020600020905b815481529060010190602001808311610a7a57829003601f168201915b5050505050905090565b6000610aac82611925565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af2826111c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b599061363b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b81611970565b73ffffffffffffffffffffffffffffffffffffffff161480610bb05750610baf81610baa611970565b6116ae565b5b610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be6906136cd565b60405180910390fd5b610bf98383611978565b505050565b600d5481565b6000600880549050905090565b600f5481565b610c28610c22611970565b82611a31565b610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e9061375f565b60405180910390fd5b610c72838383611ac6565b505050565b6000610c8283611324565b8210610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba906137f1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d246117c5565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610d876117c5565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610dc557600080fd5b565b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166323b872dd33601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166012546040518463ffffffff1660e01b8152600401610e4f93929190613811565b6020604051808303816000875af1158015610e6e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e92919061385d565b610e9b57600080fd5b6000610ea5610c04565b9050601060009054906101000a900460ff1615610ec157600080fd5b60008311610ece57600080fd5b600f54831115610edd57600080fd5b600e548382610eec91906138b9565b1115610ef757600080fd5b610eff611401565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fa55760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610fa45782600d54610f9791906138ed565b341015610fa357600080fd5b5b5b6000600190505b838111610fdb57610fc8858284610fc391906138b9565b611dbf565b8080610fd39061392f565b915050610fac565b5050505050565b610ffd838383604051806020016040528060008152506114d3565b505050565b6060600061100f83611324565b905060008167ffffffffffffffff81111561102d5761102c613251565b5b60405190808252806020026020018201604052801561105b5781602001602082028036833780820191505090505b50905060005b828110156110a5576110738582610c77565b82828151811061108657611085613977565b5b602002602001018181525050808061109d9061392f565b915050611061565b508092505050919050565b6110b86117c5565b80600d8190555050565b6110ca6117c5565b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600061112f610c04565b8210611170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116790613a18565b60405180910390fd5b6008828154811061118457611183613977565b5b90600052602060002001549050919050565b61119e6117c5565b80600b90816111ad9190613be4565b5050565b601060009054906101000a900460ff1681565b6000806111d083611ddd565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123890613d02565b60405180910390fd5b80915050919050565b6112526117c5565b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b80546112a390613598565b80601f01602080910402602001604051908101604052809291908181526020018280546112cf90613598565b801561131c5780601f106112f15761010080835404028352916020019161131c565b820191906000526020600020905b8154815290600101906020018083116112ff57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b90613d94565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113e36117c5565b6113ed6000611e1a565b565b6113f76117c5565b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461143a90613598565b80601f016020809104026020016040519081016040528092919081815260200182805461146690613598565b80156114b35780601f10611488576101008083540402835291602001916114b3565b820191906000526020600020905b81548152906001019060200180831161149657829003601f168201915b5050505050905090565b6114cf6114c8611970565b8383611ee0565b5050565b6114e46114de611970565b83611a31565b611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a9061375f565b60405180910390fd5b61152f8484848461204c565b50505050565b600c805461154290613598565b80601f016020809104026020016040519081016040528092919081815260200182805461156e90613598565b80156115bb5780601f10611590576101008083540402835291602001916115bb565b820191906000526020600020905b81548152906001019060200180831161159e57829003601f168201915b505050505081565b60606115ce826120a8565b61160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490613e26565b60405180910390fd5b60006116176120e9565b905060008151116116375760405180602001604052806000815250611665565b806116418461217b565b600c60405160200161165593929190613f05565b6040516020818303038152906040525b915050919050565b600e5481565b60116020528060005260406000206000915054906101000a900460ff1681565b61169b6117c5565b80600c90816116aa9190613be4565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61174a6117c5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613fa8565b60405180910390fd5b6117c281611e1a565b50565b6117cd611970565b73ffffffffffffffffffffffffffffffffffffffff166117eb611401565b73ffffffffffffffffffffffffffffffffffffffff1614611841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183890614014565b60405180910390fd5b565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061190e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061191e575061191d82612249565b5b9050919050565b61192e816120a8565b61196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490613d02565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119eb836111c4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611a3d836111c4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a7f5750611a7e81856116ae565b5b80611abd57508373ffffffffffffffffffffffffffffffffffffffff16611aa584610aa1565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ae6826111c4565b73ffffffffffffffffffffffffffffffffffffffff1614611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b33906140a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290614138565b60405180910390fd5b611bb883838360016122b3565b8273ffffffffffffffffffffffffffffffffffffffff16611bd8826111c4565b73ffffffffffffffffffffffffffffffffffffffff1614611c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c25906140a6565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dba8383836001612411565b505050565b611dd9828260405180602001604052806000815250612417565b5050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f45906141a4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161203f9190612ecf565b60405180910390a3505050565b612057848484611ac6565b61206384848484612472565b6120a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209990614236565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166120ca83611ddd565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b80546120f890613598565b80601f016020809104026020016040519081016040528092919081815260200182805461212490613598565b80156121715780601f1061214657610100808354040283529160200191612171565b820191906000526020600020905b81548152906001019060200180831161215457829003601f168201915b5050505050905090565b60606000600161218a846125f9565b01905060008167ffffffffffffffff8111156121a9576121a8613251565b5b6040519080825280601f01601f1916602001820160405280156121db5781602001600182028036833780820191505090505b509050600082602001820190505b60011561223e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161223257612231614256565b5b049450600085036121e9575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6122bf8484848461274c565b6001811115612303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fa906142f7565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361234a5761234581612872565b612389565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146123885761238785826128bb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036123cb576123c681612a28565b61240a565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612409576124088482612af9565b5b5b5050505050565b50505050565b6124218383612b78565b61242e6000848484612472565b61246d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246490614236565b60405180910390fd5b505050565b60006124938473ffffffffffffffffffffffffffffffffffffffff16612d95565b156125ec578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124bc611970565b8786866040518563ffffffff1660e01b81526004016124de949392919061436c565b6020604051808303816000875af192505050801561251a57506040513d601f19601f8201168201806040525081019061251791906143cd565b60015b61259c573d806000811461254a576040519150601f19603f3d011682016040523d82523d6000602084013e61254f565b606091505b506000815103612594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258b90614236565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125f1565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612657577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161264d5761264c614256565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612694576d04ee2d6d415b85acef8100000000838161268a57612689614256565b5b0492506020810190505b662386f26fc1000083106126c357662386f26fc1000083816126b9576126b8614256565b5b0492506010810190505b6305f5e10083106126ec576305f5e10083816126e2576126e1614256565b5b0492506008810190505b612710831061271157612710838161270757612706614256565b5b0492506004810190505b60648310612734576064838161272a57612729614256565b5b0492506002810190505b600a8310612743576001810190505b80915050919050565b600181111561286c57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146127e05780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127d891906143fa565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461286b5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461286391906138b9565b925050819055505b5b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016128c884611324565b6128d291906143fa565b90506000600760008481526020019081526020016000205490508181146129b7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612a3c91906143fa565b9050600060096000848152602001908152602001600020549050600060088381548110612a6c57612a6b613977565b5b906000526020600020015490508060088381548110612a8e57612a8d613977565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612add57612adc61442e565b5b6001900381819060005260206000200160009055905550505050565b6000612b0483611324565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bde906144a9565b60405180910390fd5b612bf0816120a8565b15612c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2790614515565b60405180910390fd5b612c3e6000838360016122b3565b612c47816120a8565b15612c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7e90614515565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d91600083836001612411565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612ddf81612dcc565b8114612dea57600080fd5b50565b600081359050612dfc81612dd6565b92915050565b600060208284031215612e1857612e17612dc2565b5b6000612e2684828501612ded565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e6481612e2f565b8114612e6f57600080fd5b50565b600081359050612e8181612e5b565b92915050565b600060208284031215612e9d57612e9c612dc2565b5b6000612eab84828501612e72565b91505092915050565b60008115159050919050565b612ec981612eb4565b82525050565b6000602082019050612ee46000830184612ec0565b92915050565b612ef381612eb4565b8114612efe57600080fd5b50565b600081359050612f1081612eea565b92915050565b600060208284031215612f2c57612f2b612dc2565b5b6000612f3a84828501612f01565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f6e82612f43565b9050919050565b612f7e81612f63565b8114612f8957600080fd5b50565b600081359050612f9b81612f75565b92915050565b600060208284031215612fb757612fb6612dc2565b5b6000612fc584828501612f8c565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613008578082015181840152602081019050612fed565b60008484015250505050565b6000601f19601f8301169050919050565b600061303082612fce565b61303a8185612fd9565b935061304a818560208601612fea565b61305381613014565b840191505092915050565b600060208201905081810360008301526130788184613025565b905092915050565b61308981612f63565b82525050565b60006020820190506130a46000830184613080565b92915050565b600080604083850312156130c1576130c0612dc2565b5b60006130cf85828601612f8c565b92505060206130e085828601612ded565b9150509250929050565b6130f381612dcc565b82525050565b600060208201905061310e60008301846130ea565b92915050565b60008060006060848603121561312d5761312c612dc2565b5b600061313b86828701612f8c565b935050602061314c86828701612f8c565b925050604061315d86828701612ded565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61319c81612dcc565b82525050565b60006131ae8383613193565b60208301905092915050565b6000602082019050919050565b60006131d282613167565b6131dc8185613172565b93506131e783613183565b8060005b838110156132185781516131ff88826131a2565b975061320a836131ba565b9250506001810190506131eb565b5085935050505092915050565b6000602082019050818103600083015261323f81846131c7565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61328982613014565b810181811067ffffffffffffffff821117156132a8576132a7613251565b5b80604052505050565b60006132bb612db8565b90506132c78282613280565b919050565b600067ffffffffffffffff8211156132e7576132e6613251565b5b6132f082613014565b9050602081019050919050565b82818337600083830152505050565b600061331f61331a846132cc565b6132b1565b90508281526020810184848401111561333b5761333a61324c565b5b6133468482856132fd565b509392505050565b600082601f83011261336357613362613247565b5b813561337384826020860161330c565b91505092915050565b60006020828403121561339257613391612dc2565b5b600082013567ffffffffffffffff8111156133b0576133af612dc7565b5b6133bc8482850161334e565b91505092915050565b600080604083850312156133dc576133db612dc2565b5b60006133ea85828601612f8c565b92505060206133fb85828601612f01565b9150509250929050565b600067ffffffffffffffff8211156134205761341f613251565b5b61342982613014565b9050602081019050919050565b600061344961344484613405565b6132b1565b9050828152602081018484840111156134655761346461324c565b5b6134708482856132fd565b509392505050565b600082601f83011261348d5761348c613247565b5b813561349d848260208601613436565b91505092915050565b600080600080608085870312156134c0576134bf612dc2565b5b60006134ce87828801612f8c565b94505060206134df87828801612f8c565b93505060406134f087828801612ded565b925050606085013567ffffffffffffffff81111561351157613510612dc7565b5b61351d87828801613478565b91505092959194509250565b600080604083850312156135405761353f612dc2565b5b600061354e85828601612f8c565b925050602061355f85828601612f8c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135b057607f821691505b6020821081036135c3576135c2613569565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613625602183612fd9565b9150613630826135c9565b604082019050919050565b6000602082019050818103600083015261365481613618565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006136b7603d83612fd9565b91506136c28261365b565b604082019050919050565b600060208201905081810360008301526136e6816136aa565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000613749602d83612fd9565b9150613754826136ed565b604082019050919050565b600060208201905081810360008301526137788161373c565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006137db602b83612fd9565b91506137e68261377f565b604082019050919050565b6000602082019050818103600083015261380a816137ce565b9050919050565b60006060820190506138266000830186613080565b6138336020830185613080565b61384060408301846130ea565b949350505050565b60008151905061385781612eea565b92915050565b60006020828403121561387357613872612dc2565b5b600061388184828501613848565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138c482612dcc565b91506138cf83612dcc565b92508282019050808211156138e7576138e661388a565b5b92915050565b60006138f882612dcc565b915061390383612dcc565b925082820261391181612dcc565b915082820484148315176139285761392761388a565b5b5092915050565b600061393a82612dcc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361396c5761396b61388a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613a02602c83612fd9565b9150613a0d826139a6565b604082019050919050565b60006020820190508181036000830152613a31816139f5565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613a9a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613a5d565b613aa48683613a5d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613ae1613adc613ad784612dcc565b613abc565b612dcc565b9050919050565b6000819050919050565b613afb83613ac6565b613b0f613b0782613ae8565b848454613a6a565b825550505050565b600090565b613b24613b17565b613b2f818484613af2565b505050565b5b81811015613b5357613b48600082613b1c565b600181019050613b35565b5050565b601f821115613b9857613b6981613a38565b613b7284613a4d565b81016020851015613b81578190505b613b95613b8d85613a4d565b830182613b34565b50505b505050565b600082821c905092915050565b6000613bbb60001984600802613b9d565b1980831691505092915050565b6000613bd48383613baa565b9150826002028217905092915050565b613bed82612fce565b67ffffffffffffffff811115613c0657613c05613251565b5b613c108254613598565b613c1b828285613b57565b600060209050601f831160018114613c4e5760008415613c3c578287015190505b613c468582613bc8565b865550613cae565b601f198416613c5c86613a38565b60005b82811015613c8457848901518255600182019150602085019450602081019050613c5f565b86831015613ca15784890151613c9d601f891682613baa565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613cec601883612fd9565b9150613cf782613cb6565b602082019050919050565b60006020820190508181036000830152613d1b81613cdf565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613d7e602983612fd9565b9150613d8982613d22565b604082019050919050565b60006020820190508181036000830152613dad81613d71565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613e10602f83612fd9565b9150613e1b82613db4565b604082019050919050565b60006020820190508181036000830152613e3f81613e03565b9050919050565b600081905092915050565b6000613e5c82612fce565b613e668185613e46565b9350613e76818560208601612fea565b80840191505092915050565b60008154613e8f81613598565b613e998186613e46565b94506001821660008114613eb45760018114613ec957613efc565b60ff1983168652811515820286019350613efc565b613ed285613a38565b60005b83811015613ef457815481890152600182019150602081019050613ed5565b838801955050505b50505092915050565b6000613f118286613e51565b9150613f1d8285613e51565b9150613f298284613e82565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f92602683612fd9565b9150613f9d82613f36565b604082019050919050565b60006020820190508181036000830152613fc181613f85565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ffe602083612fd9565b915061400982613fc8565b602082019050919050565b6000602082019050818103600083015261402d81613ff1565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614090602583612fd9565b915061409b82614034565b604082019050919050565b600060208201905081810360008301526140bf81614083565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614122602483612fd9565b915061412d826140c6565b604082019050919050565b6000602082019050818103600083015261415181614115565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061418e601983612fd9565b915061419982614158565b602082019050919050565b600060208201905081810360008301526141bd81614181565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614220603283612fd9565b915061422b826141c4565b604082019050919050565b6000602082019050818103600083015261424f81614213565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b60006142e1603583612fd9565b91506142ec82614285565b604082019050919050565b60006020820190508181036000830152614310816142d4565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061433e82614317565b6143488185614322565b9350614358818560208601612fea565b61436181613014565b840191505092915050565b60006080820190506143816000830187613080565b61438e6020830186613080565b61439b60408301856130ea565b81810360608301526143ad8184614333565b905095945050505050565b6000815190506143c781612e5b565b92915050565b6000602082840312156143e3576143e2612dc2565b5b60006143f1848285016143b8565b91505092915050565b600061440582612dcc565b915061441083612dcc565b92508282039050818111156144285761442761388a565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614493602083612fd9565b915061449e8261445d565b602082019050919050565b600060208201905081810360008301526144c281614486565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006144ff601c83612fd9565b915061450a826144c9565b602082019050919050565b6000602082019050818103600083015261452e816144f2565b905091905056fea2646970667358221220a7b03c0f95e77b9f14627e9b5a959b72b68777e9df4e85b42879332a6006d3ec64736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a424f4e4b4544204e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a424f4e4b4544204e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d62706b44703577333267756a4444685a614366316836426f55464d6975757457694d487244573643466d70692f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): BONKED NFT
Arg [1] : _symbol (string): BONKED NFT
Arg [2] : _initBaseURI (string): ipfs://QmbpkDp5w32gujDDhZaCf1h6BoUFMiuutWiMHrDW6CFmpi/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 424f4e4b4544204e465400000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 424f4e4b4544204e465400000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d62706b44703577333267756a4444685a61436631683642
Arg [9] : 6f55464d6975757457694d487244573643466d70692f00000000000000000000


Deployed Bytecode Sourcemap

65714:3307:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68837:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56490:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68311:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68722:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39472:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40984:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40502:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65867:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57130:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65939:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41684:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56798:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68490:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68596:114;;;:::i;:::-;;66448:614;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42090:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67068:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67867:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68390:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57320:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68079:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65976:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39182:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68939:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65799:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38913:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;67955:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39641:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41227:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42346:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65825:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67422:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65902:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66007:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68183:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41453:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68837:90;2014:13;:11;:13::i;:::-;68913:6:::1;68898:12;:21;;;;68837:90:::0;:::o;56490:224::-;56592:4;56631:35;56616:50;;;:11;:50;;;;:90;;;;56670:36;56694:11;56670:23;:36::i;:::-;56616:90;56609:97;;56490:224;;;:::o;68311:73::-;2014:13;:11;:13::i;:::-;68372:6:::1;68363;;:15;;;;;;;;;;;;;;;;;;68311:73:::0;:::o;68722:101::-;2014:13;:11;:13::i;:::-;68798:4:::1;68781:14;;:21;;;;;;;;;;;;;;;;;;68722:101:::0;:::o;39472:100::-;39526:13;39559:5;39552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39472:100;:::o;40984:171::-;41060:7;41080:23;41095:7;41080:14;:23::i;:::-;41123:15;:24;41139:7;41123:24;;;;;;;;;;;;;;;;;;;;;41116:31;;40984:171;;;:::o;40502:416::-;40583:13;40599:23;40614:7;40599:14;:23::i;:::-;40583:39;;40647:5;40641:11;;:2;:11;;;40633:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40741:5;40725:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40750:37;40767:5;40774:12;:10;:12::i;:::-;40750:16;:37::i;:::-;40725:62;40703:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;40889:21;40898:2;40902:7;40889:8;:21::i;:::-;40572:346;40502:416;;:::o;65867:30::-;;;;:::o;57130:113::-;57191:7;57218:10;:17;;;;57211:24;;57130:113;:::o;65939:32::-;;;;:::o;41684:335::-;41879:41;41898:12;:10;:12::i;:::-;41912:7;41879:18;:41::i;:::-;41871:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;41983:28;41993:4;41999:2;42003:7;41983:9;:28::i;:::-;41684:335;;;:::o;56798:256::-;56895:7;56931:23;56948:5;56931:16;:23::i;:::-;56923:5;:31;56915:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;57020:12;:19;57033:5;57020:19;;;;;;;;;;;;;;;:26;57040:5;57020:26;;;;;;;;;;;;57013:33;;56798:256;;;;:::o;68490:100::-;2014:13;:11;:13::i;:::-;68579:5:::1;68558:11;:18;68570:5;68558:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;68490:100:::0;:::o;68596:114::-;2014:13;:11;:13::i;:::-;68664:10:::1;68656:24;;:47;68681:21;68656:47;;;;;;;;;;;;;;;;;;;;;;;68648:56;;;::::0;::::1;;68596:114::o:0;66448:614::-;66518:13;66541:14;;;;;;;;;;;66518:38;;66571:6;:19;;;66591:10;66603:5;;;;;;;;;;;66610:12;;66571:52;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66563:61;;;;;;66631:14;66648:13;:11;:13::i;:::-;66631:30;;66677:6;;;;;;;;;;;66676:7;66668:16;;;;;;66713:1;66699:11;:15;66691:24;;;;;;66745:13;;66730:11;:28;;66722:37;;;;;;66798:9;;66783:11;66774:6;:20;;;;:::i;:::-;:33;;66766:42;;;;;;66835:7;:5;:7::i;:::-;66821:21;;:10;:21;;;66817:146;;66885:4;66858:31;;:11;:23;66870:10;66858:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;66855:101;;66932:11;66925:4;;:18;;;;:::i;:::-;66912:9;:31;;66904:40;;;;;;66855:101;66817:146;66976:9;66988:1;66976:13;;66971:86;66996:11;66991:1;:16;66971:86;;67023:26;67033:3;67047:1;67038:6;:10;;;;:::i;:::-;67023:9;:26::i;:::-;67009:3;;;;;:::i;:::-;;;;66971:86;;;;66511:551;;66448:614;;:::o;42090:185::-;42228:39;42245:4;42251:2;42255:7;42228:39;;;;;;;;;;;;:16;:39::i;:::-;42090:185;;;:::o;67068:348::-;67143:16;67171:23;67197:17;67207:6;67197:9;:17::i;:::-;67171:43;;67221:25;67263:15;67249:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67221:58;;67291:9;67286:103;67306:15;67302:1;:19;67286:103;;;67351:30;67371:6;67379:1;67351:19;:30::i;:::-;67337:8;67346:1;67337:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;67323:3;;;;;:::i;:::-;;;;67286:103;;;;67402:8;67395:15;;;;67068:348;;;:::o;67867:82::-;2014:13;:11;:13::i;:::-;67935:8:::1;67928:4;:15;;;;67867:82:::0;:::o;68390:93::-;2014:13;:11;:13::i;:::-;68473:4:::1;68452:11;:18;68464:5;68452:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;68390:93:::0;:::o;57320:233::-;57395:7;57431:30;:28;:30::i;:::-;57423:5;:38;57415:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;57528:10;57539:5;57528:17;;;;;;;;:::i;:::-;;;;;;;;;;57521:24;;57320:233;;;:::o;68079:98::-;2014:13;:11;:13::i;:::-;68160:11:::1;68150:7;:21;;;;;;:::i;:::-;;68079:98:::0;:::o;65976:26::-;;;;;;;;;;;;;:::o;39182:223::-;39254:7;39274:13;39290:17;39299:7;39290:8;:17::i;:::-;39274:33;;39343:1;39326:19;;:5;:19;;;39318:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;39392:5;39385:12;;;39182:223;;;:::o;68939:79::-;2014:13;:11;:13::i;:::-;69004:6:::1;68996:5;;:14;;;;;;;;;;;;;;;;;;68939:79:::0;:::o;65799:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38913:207::-;38985:7;39030:1;39013:19;;:5;:19;;;39005:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39096:9;:16;39106:5;39096:16;;;;;;;;;;;;;;;;39089:23;;38913:207;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;67955:118::-;2014:13;:11;:13::i;:::-;68050:17:::1;68034:13;:33;;;;67955:118:::0;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;39641:104::-;39697:13;39730:7;39723:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39641:104;:::o;41227:155::-;41322:52;41341:12;:10;:12::i;:::-;41355:8;41365;41322:18;:52::i;:::-;41227:155;;:::o;42346:322::-;42520:41;42539:12;:10;:12::i;:::-;42553:7;42520:18;:41::i;:::-;42512:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;42622:38;42636:4;42642:2;42646:7;42655:4;42622:13;:38::i;:::-;42346:322;;;;:::o;65825:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67422:423::-;67520:13;67561:16;67569:7;67561;:16::i;:::-;67545:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;67651:28;67682:10;:8;:10::i;:::-;67651:41;;67737:1;67712:14;67706:28;:32;:133;;;;;;;;;;;;;;;;;67774:14;67790:18;:7;:16;:18::i;:::-;67810:13;67757:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67706:133;67699:140;;;67422:423;;;:::o;65902:32::-;;;;:::o;66007:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;68183:122::-;2014:13;:11;:13::i;:::-;68282:17:::1;68266:13;:33;;;;;;:::i;:::-;;68183:122:::0;:::o;41453:164::-;41550:4;41574:18;:25;41593:5;41574:25;;;;;;;;;;;;;;;:35;41600:8;41574:35;;;;;;;;;;;;;;;;;;;;;;;;;41567:42;;41453:164;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;::::0;3115:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;38544:305::-;38646:4;38698:25;38683:40;;;:11;:40;;;;:105;;;;38755:33;38740:48;;;:11;:48;;;;38683:105;:158;;;;38805:36;38829:11;38805:23;:36::i;:::-;38683:158;38663:178;;38544:305;;;:::o;50803:135::-;50885:16;50893:7;50885;:16::i;:::-;50877:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;50803:135;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;50082:174::-;50184:2;50157:15;:24;50173:7;50157:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50240:7;50236:2;50202:46;;50211:23;50226:7;50211:14;:23::i;:::-;50202:46;;;;;;;;;;;;50082:174;;:::o;44701:264::-;44794:4;44811:13;44827:23;44842:7;44827:14;:23::i;:::-;44811:39;;44880:5;44869:16;;:7;:16;;;:52;;;;44889:32;44906:5;44913:7;44889:16;:32::i;:::-;44869:52;:87;;;;44949:7;44925:31;;:20;44937:7;44925:11;:20::i;:::-;:31;;;44869:87;44861:96;;;44701:264;;;;:::o;48700:1263::-;48859:4;48832:31;;:23;48847:7;48832:14;:23::i;:::-;:31;;;48824:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;48938:1;48924:16;;:2;:16;;;48916:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48994:42;49015:4;49021:2;49025:7;49034:1;48994:20;:42::i;:::-;49166:4;49139:31;;:23;49154:7;49139:14;:23::i;:::-;:31;;;49131:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;49284:15;:24;49300:7;49284:24;;;;;;;;;;;;49277:31;;;;;;;;;;;49779:1;49760:9;:15;49770:4;49760:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;49812:1;49795:9;:13;49805:2;49795:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;49854:2;49835:7;:16;49843:7;49835:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49893:7;49889:2;49874:27;;49883:4;49874:27;;;;;;;;;;;;49914:41;49934:4;49940:2;49944:7;49953:1;49914:19;:41::i;:::-;48700:1263;;;:::o;45307:110::-;45383:26;45393:2;45397:7;45383:26;;;;;;;;;;;;:9;:26::i;:::-;45307:110;;:::o;43976:117::-;44042:7;44069;:16;44077:7;44069:16;;;;;;;;;;;;;;;;;;;;;44062:23;;43976:117;;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;50399:315::-;50554:8;50545:17;;:5;:17;;;50537:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;50641:8;50603:18;:25;50622:5;50603:25;;;;;;;;;;;;;;;:35;50629:8;50603:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;50687:8;50665:41;;50680:5;50665:41;;;50697:8;50665:41;;;;;;:::i;:::-;;;;;;;;50399:315;;;:::o;43549:313::-;43705:28;43715:4;43721:2;43725:7;43705:9;:28::i;:::-;43752:47;43775:4;43781:2;43785:7;43794:4;43752:22;:47::i;:::-;43744:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;43549:313;;;;:::o;44406:128::-;44471:4;44524:1;44495:31;;:17;44504:7;44495:8;:17::i;:::-;:31;;;;44488:38;;44406:128;;;:::o;66327:102::-;66387:13;66416:7;66409:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66327:102;:::o;27380:716::-;27436:13;27487:14;27524:1;27504:17;27515:5;27504:10;:17::i;:::-;:21;27487:38;;27540:20;27574:6;27563:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27540:41;;27596:11;27725:6;27721:2;27717:15;27709:6;27705:28;27698:35;;27762:288;27769:4;27762:288;;;27794:5;;;;;;;;27936:8;27931:2;27924:5;27920:14;27915:30;27910:3;27902:44;27992:2;27983:11;;;;;;:::i;:::-;;;;;28026:1;28017:5;:10;27762:288;28013:21;27762:288;28071:6;28064:13;;;;;27380:716;;;:::o;31056:157::-;31141:4;31180:25;31165:40;;;:11;:40;;;;31158:47;;31056:157;;;:::o;57627:915::-;57804:61;57831:4;57837:2;57841:12;57855:9;57804:26;:61::i;:::-;57894:1;57882:9;:13;57878:222;;;58025:63;;;;;;;;;;:::i;:::-;;;;;;;;57878:222;58112:15;58130:12;58112:30;;58175:1;58159:18;;:4;:18;;;58155:187;;58194:40;58226:7;58194:31;:40::i;:::-;58155:187;;;58264:2;58256:10;;:4;:10;;;58252:90;;58283:47;58316:4;58322:7;58283:32;:47::i;:::-;58252:90;58155:187;58370:1;58356:16;;:2;:16;;;58352:183;;58389:45;58426:7;58389:36;:45::i;:::-;58352:183;;;58462:4;58456:10;;:2;:10;;;58452:83;;58483:40;58511:2;58515:7;58483:27;:40::i;:::-;58452:83;58352:183;57793:749;57627:915;;;;:::o;54219:158::-;;;;;:::o;45644:319::-;45773:18;45779:2;45783:7;45773:5;:18::i;:::-;45824:53;45855:1;45859:2;45863:7;45872:4;45824:22;:53::i;:::-;45802:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;45644:319;;;:::o;51502:853::-;51656:4;51677:15;:2;:13;;;:15::i;:::-;51673:675;;;51729:2;51713:36;;;51750:12;:10;:12::i;:::-;51764:4;51770:7;51779:4;51713:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51709:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51971:1;51954:6;:13;:18;51950:328;;51997:60;;;;;;;;;;:::i;:::-;;;;;;;;51950:328;52228:6;52222:13;52213:6;52209:2;52205:15;52198:38;51709:584;51845:41;;;51835:51;;;:6;:51;;;;51828:58;;;;;51673:675;52332:4;52325:11;;51502:853;;;;;;;:::o;24246:922::-;24299:7;24319:14;24336:1;24319:18;;24386:6;24377:5;:15;24373:102;;24422:6;24413:15;;;;;;:::i;:::-;;;;;24457:2;24447:12;;;;24373:102;24502:6;24493:5;:15;24489:102;;24538:6;24529:15;;;;;;:::i;:::-;;;;;24573:2;24563:12;;;;24489:102;24618:6;24609:5;:15;24605:102;;24654:6;24645:15;;;;;;:::i;:::-;;;;;24689:2;24679:12;;;;24605:102;24734:5;24725;:14;24721:99;;24769:5;24760:14;;;;;;:::i;:::-;;;;;24803:1;24793:11;;;;24721:99;24847:5;24838;:14;24834:99;;24882:5;24873:14;;;;;;:::i;:::-;;;;;24916:1;24906:11;;;;24834:99;24960:5;24951;:14;24947:99;;24995:5;24986:14;;;;;;:::i;:::-;;;;;25029:1;25019:11;;;;24947:99;25073:5;25064;:14;25060:66;;25109:1;25099:11;;;;25060:66;25154:6;25147:13;;;24246:922;;;:::o;53087:410::-;53277:1;53265:9;:13;53261:229;;;53315:1;53299:18;;:4;:18;;;53295:87;;53357:9;53338;:15;53348:4;53338:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;53295:87;53414:1;53400:16;;:2;:16;;;53396:83;;53454:9;53437;:13;53447:2;53437:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;53396:83;53261:229;53087:410;;;;:::o;59265:164::-;59369:10;:17;;;;59342:15;:24;59358:7;59342:24;;;;;;;;;;;:44;;;;59397:10;59413:7;59397:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59265:164;:::o;60056:988::-;60322:22;60372:1;60347:22;60364:4;60347:16;:22::i;:::-;:26;;;;:::i;:::-;60322:51;;60384:18;60405:17;:26;60423:7;60405:26;;;;;;;;;;;;60384:47;;60552:14;60538:10;:28;60534:328;;60583:19;60605:12;:18;60618:4;60605:18;;;;;;;;;;;;;;;:34;60624:14;60605:34;;;;;;;;;;;;60583:56;;60689:11;60656:12;:18;60669:4;60656:18;;;;;;;;;;;;;;;:30;60675:10;60656:30;;;;;;;;;;;:44;;;;60806:10;60773:17;:30;60791:11;60773:30;;;;;;;;;;;:43;;;;60568:294;60534:328;60958:17;:26;60976:7;60958:26;;;;;;;;;;;60951:33;;;61002:12;:18;61015:4;61002:18;;;;;;;;;;;;;;;:34;61021:14;61002:34;;;;;;;;;;;60995:41;;;60137:907;;60056:988;;:::o;61339:1079::-;61592:22;61637:1;61617:10;:17;;;;:21;;;;:::i;:::-;61592:46;;61649:18;61670:15;:24;61686:7;61670:24;;;;;;;;;;;;61649:45;;62021:19;62043:10;62054:14;62043:26;;;;;;;;:::i;:::-;;;;;;;;;;62021:48;;62107:11;62082:10;62093;62082:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;62218:10;62187:15;:28;62203:11;62187:28;;;;;;;;;;;:41;;;;62359:15;:24;62375:7;62359:24;;;;;;;;;;;62352:31;;;62394:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;61410:1008;;;61339:1079;:::o;58843:221::-;58928:14;58945:20;58962:2;58945:16;:20::i;:::-;58928:37;;59003:7;58976:12;:16;58989:2;58976:16;;;;;;;;;;;;;;;:24;58993:6;58976:24;;;;;;;;;;;:34;;;;59050:6;59021:17;:26;59039:7;59021:26;;;;;;;;;;;:35;;;;58917:147;58843:221;;:::o;46299:942::-;46393:1;46379:16;;:2;:16;;;46371:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;46452:16;46460:7;46452;:16::i;:::-;46451:17;46443:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46514:48;46543:1;46547:2;46551:7;46560:1;46514:20;:48::i;:::-;46661:16;46669:7;46661;:16::i;:::-;46660:17;46652:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47076:1;47059:9;:13;47069:2;47059:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;47120:2;47101:7;:16;47109:7;47101:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47165:7;47161:2;47140:33;;47157:1;47140:33;;;;;;;;;;;;47186:47;47214:1;47218:2;47222:7;47231:1;47186:19;:47::i;:::-;46299:942;;:::o;5880:326::-;5940:4;6197:1;6175:7;:19;;;:23;6168:30;;5880:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:149::-;1061:7;1101:66;1094:5;1090:78;1079:89;;1025:149;;;:::o;1180:120::-;1252:23;1269:5;1252:23;:::i;:::-;1245:5;1242:34;1232:62;;1290:1;1287;1280:12;1232:62;1180:120;:::o;1306:137::-;1351:5;1389:6;1376:20;1367:29;;1405:32;1431:5;1405:32;:::i;:::-;1306:137;;;;:::o;1449:327::-;1507:6;1556:2;1544:9;1535:7;1531:23;1527:32;1524:119;;;1562:79;;:::i;:::-;1524:119;1682:1;1707:52;1751:7;1742:6;1731:9;1727:22;1707:52;:::i;:::-;1697:62;;1653:116;1449:327;;;;:::o;1782:90::-;1816:7;1859:5;1852:13;1845:21;1834:32;;1782:90;;;:::o;1878:109::-;1959:21;1974:5;1959:21;:::i;:::-;1954:3;1947:34;1878:109;;:::o;1993:210::-;2080:4;2118:2;2107:9;2103:18;2095:26;;2131:65;2193:1;2182:9;2178:17;2169:6;2131:65;:::i;:::-;1993:210;;;;:::o;2209:116::-;2279:21;2294:5;2279:21;:::i;:::-;2272:5;2269:32;2259:60;;2315:1;2312;2305:12;2259:60;2209:116;:::o;2331:133::-;2374:5;2412:6;2399:20;2390:29;;2428:30;2452:5;2428:30;:::i;:::-;2331:133;;;;:::o;2470:323::-;2526:6;2575:2;2563:9;2554:7;2550:23;2546:32;2543:119;;;2581:79;;:::i;:::-;2543:119;2701:1;2726:50;2768:7;2759:6;2748:9;2744:22;2726:50;:::i;:::-;2716:60;;2672:114;2470:323;;;;:::o;2799:126::-;2836:7;2876:42;2869:5;2865:54;2854:65;;2799:126;;;:::o;2931:96::-;2968:7;2997:24;3015:5;2997:24;:::i;:::-;2986:35;;2931:96;;;:::o;3033:122::-;3106:24;3124:5;3106:24;:::i;:::-;3099:5;3096:35;3086:63;;3145:1;3142;3135:12;3086:63;3033:122;:::o;3161:139::-;3207:5;3245:6;3232:20;3223:29;;3261:33;3288:5;3261:33;:::i;:::-;3161:139;;;;:::o;3306:329::-;3365:6;3414:2;3402:9;3393:7;3389:23;3385:32;3382:119;;;3420:79;;:::i;:::-;3382:119;3540:1;3565:53;3610:7;3601:6;3590:9;3586:22;3565:53;:::i;:::-;3555:63;;3511:117;3306:329;;;;:::o;3641:99::-;3693:6;3727:5;3721:12;3711:22;;3641:99;;;:::o;3746:169::-;3830:11;3864:6;3859:3;3852:19;3904:4;3899:3;3895:14;3880:29;;3746:169;;;;:::o;3921:246::-;4002:1;4012:113;4026:6;4023:1;4020:13;4012:113;;;4111:1;4106:3;4102:11;4096:18;4092:1;4087:3;4083:11;4076:39;4048:2;4045:1;4041:10;4036:15;;4012:113;;;4159:1;4150:6;4145:3;4141:16;4134:27;3983:184;3921:246;;;:::o;4173:102::-;4214:6;4265:2;4261:7;4256:2;4249:5;4245:14;4241:28;4231:38;;4173:102;;;:::o;4281:377::-;4369:3;4397:39;4430:5;4397:39;:::i;:::-;4452:71;4516:6;4511:3;4452:71;:::i;:::-;4445:78;;4532:65;4590:6;4585:3;4578:4;4571:5;4567:16;4532:65;:::i;:::-;4622:29;4644:6;4622:29;:::i;:::-;4617:3;4613:39;4606:46;;4373:285;4281:377;;;;:::o;4664:313::-;4777:4;4815:2;4804:9;4800:18;4792:26;;4864:9;4858:4;4854:20;4850:1;4839:9;4835:17;4828:47;4892:78;4965:4;4956:6;4892:78;:::i;:::-;4884:86;;4664:313;;;;:::o;4983:118::-;5070:24;5088:5;5070:24;:::i;:::-;5065:3;5058:37;4983:118;;:::o;5107:222::-;5200:4;5238:2;5227:9;5223:18;5215:26;;5251:71;5319:1;5308:9;5304:17;5295:6;5251:71;:::i;:::-;5107:222;;;;:::o;5335:474::-;5403:6;5411;5460:2;5448:9;5439:7;5435:23;5431:32;5428:119;;;5466:79;;:::i;:::-;5428:119;5586:1;5611:53;5656:7;5647:6;5636:9;5632:22;5611:53;:::i;:::-;5601:63;;5557:117;5713:2;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5684:118;5335:474;;;;;:::o;5815:118::-;5902:24;5920:5;5902:24;:::i;:::-;5897:3;5890:37;5815:118;;:::o;5939:222::-;6032:4;6070:2;6059:9;6055:18;6047:26;;6083:71;6151:1;6140:9;6136:17;6127:6;6083:71;:::i;:::-;5939:222;;;;:::o;6167:619::-;6244:6;6252;6260;6309:2;6297:9;6288:7;6284:23;6280:32;6277:119;;;6315:79;;:::i;:::-;6277:119;6435:1;6460:53;6505:7;6496:6;6485:9;6481:22;6460:53;:::i;:::-;6450:63;;6406:117;6562:2;6588:53;6633:7;6624:6;6613:9;6609:22;6588:53;:::i;:::-;6578:63;;6533:118;6690:2;6716:53;6761:7;6752:6;6741:9;6737:22;6716:53;:::i;:::-;6706:63;;6661:118;6167:619;;;;;:::o;6792:114::-;6859:6;6893:5;6887:12;6877:22;;6792:114;;;:::o;6912:184::-;7011:11;7045:6;7040:3;7033:19;7085:4;7080:3;7076:14;7061:29;;6912:184;;;;:::o;7102:132::-;7169:4;7192:3;7184:11;;7222:4;7217:3;7213:14;7205:22;;7102:132;;;:::o;7240:108::-;7317:24;7335:5;7317:24;:::i;:::-;7312:3;7305:37;7240:108;;:::o;7354:179::-;7423:10;7444:46;7486:3;7478:6;7444:46;:::i;:::-;7522:4;7517:3;7513:14;7499:28;;7354:179;;;;:::o;7539:113::-;7609:4;7641;7636:3;7632:14;7624:22;;7539:113;;;:::o;7688:732::-;7807:3;7836:54;7884:5;7836:54;:::i;:::-;7906:86;7985:6;7980:3;7906:86;:::i;:::-;7899:93;;8016:56;8066:5;8016:56;:::i;:::-;8095:7;8126:1;8111:284;8136:6;8133:1;8130:13;8111:284;;;8212:6;8206:13;8239:63;8298:3;8283:13;8239:63;:::i;:::-;8232:70;;8325:60;8378:6;8325:60;:::i;:::-;8315:70;;8171:224;8158:1;8155;8151:9;8146:14;;8111:284;;;8115:14;8411:3;8404:10;;7812:608;;;7688:732;;;;:::o;8426:373::-;8569:4;8607:2;8596:9;8592:18;8584:26;;8656:9;8650:4;8646:20;8642:1;8631:9;8627:17;8620:47;8684:108;8787:4;8778:6;8684:108;:::i;:::-;8676:116;;8426:373;;;;:::o;8805:117::-;8914:1;8911;8904:12;8928:117;9037:1;9034;9027:12;9051:180;9099:77;9096:1;9089:88;9196:4;9193:1;9186:15;9220:4;9217:1;9210:15;9237:281;9320:27;9342:4;9320:27;:::i;:::-;9312:6;9308:40;9450:6;9438:10;9435:22;9414:18;9402:10;9399:34;9396:62;9393:88;;;9461:18;;:::i;:::-;9393:88;9501:10;9497:2;9490:22;9280:238;9237:281;;:::o;9524:129::-;9558:6;9585:20;;:::i;:::-;9575:30;;9614:33;9642:4;9634:6;9614:33;:::i;:::-;9524:129;;;:::o;9659:308::-;9721:4;9811:18;9803:6;9800:30;9797:56;;;9833:18;;:::i;:::-;9797:56;9871:29;9893:6;9871:29;:::i;:::-;9863:37;;9955:4;9949;9945:15;9937:23;;9659:308;;;:::o;9973:146::-;10070:6;10065:3;10060;10047:30;10111:1;10102:6;10097:3;10093:16;10086:27;9973:146;;;:::o;10125:425::-;10203:5;10228:66;10244:49;10286:6;10244:49;:::i;:::-;10228:66;:::i;:::-;10219:75;;10317:6;10310:5;10303:21;10355:4;10348:5;10344:16;10393:3;10384:6;10379:3;10375:16;10372:25;10369:112;;;10400:79;;:::i;:::-;10369:112;10490:54;10537:6;10532:3;10527;10490:54;:::i;:::-;10209:341;10125:425;;;;;:::o;10570:340::-;10626:5;10675:3;10668:4;10660:6;10656:17;10652:27;10642:122;;10683:79;;:::i;:::-;10642:122;10800:6;10787:20;10825:79;10900:3;10892:6;10885:4;10877:6;10873:17;10825:79;:::i;:::-;10816:88;;10632:278;10570:340;;;;:::o;10916:509::-;10985:6;11034:2;11022:9;11013:7;11009:23;11005:32;11002:119;;;11040:79;;:::i;:::-;11002:119;11188:1;11177:9;11173:17;11160:31;11218:18;11210:6;11207:30;11204:117;;;11240:79;;:::i;:::-;11204:117;11345:63;11400:7;11391:6;11380:9;11376:22;11345:63;:::i;:::-;11335:73;;11131:287;10916:509;;;;:::o;11431:468::-;11496:6;11504;11553:2;11541:9;11532:7;11528:23;11524:32;11521:119;;;11559:79;;:::i;:::-;11521:119;11679:1;11704:53;11749:7;11740:6;11729:9;11725:22;11704:53;:::i;:::-;11694:63;;11650:117;11806:2;11832:50;11874:7;11865:6;11854:9;11850:22;11832:50;:::i;:::-;11822:60;;11777:115;11431:468;;;;;:::o;11905:307::-;11966:4;12056:18;12048:6;12045:30;12042:56;;;12078:18;;:::i;:::-;12042:56;12116:29;12138:6;12116:29;:::i;:::-;12108:37;;12200:4;12194;12190:15;12182:23;;11905:307;;;:::o;12218:423::-;12295:5;12320:65;12336:48;12377:6;12336:48;:::i;:::-;12320:65;:::i;:::-;12311:74;;12408:6;12401:5;12394:21;12446:4;12439:5;12435:16;12484:3;12475:6;12470:3;12466:16;12463:25;12460:112;;;12491:79;;:::i;:::-;12460:112;12581:54;12628:6;12623:3;12618;12581:54;:::i;:::-;12301:340;12218:423;;;;;:::o;12660:338::-;12715:5;12764:3;12757:4;12749:6;12745:17;12741:27;12731:122;;12772:79;;:::i;:::-;12731:122;12889:6;12876:20;12914:78;12988:3;12980:6;12973:4;12965:6;12961:17;12914:78;:::i;:::-;12905:87;;12721:277;12660:338;;;;:::o;13004:943::-;13099:6;13107;13115;13123;13172:3;13160:9;13151:7;13147:23;13143:33;13140:120;;;13179:79;;:::i;:::-;13140:120;13299:1;13324:53;13369:7;13360:6;13349:9;13345:22;13324:53;:::i;:::-;13314:63;;13270:117;13426:2;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13397:118;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13710:2;13699:9;13695:18;13682:32;13741:18;13733:6;13730:30;13727:117;;;13763:79;;:::i;:::-;13727:117;13868:62;13922:7;13913:6;13902:9;13898:22;13868:62;:::i;:::-;13858:72;;13653:287;13004:943;;;;;;;:::o;13953:474::-;14021:6;14029;14078:2;14066:9;14057:7;14053:23;14049:32;14046:119;;;14084:79;;:::i;:::-;14046:119;14204:1;14229:53;14274:7;14265:6;14254:9;14250:22;14229:53;:::i;:::-;14219:63;;14175:117;14331:2;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14302:118;13953:474;;;;;:::o;14433:180::-;14481:77;14478:1;14471:88;14578:4;14575:1;14568:15;14602:4;14599:1;14592:15;14619:320;14663:6;14700:1;14694:4;14690:12;14680:22;;14747:1;14741:4;14737:12;14768:18;14758:81;;14824:4;14816:6;14812:17;14802:27;;14758:81;14886:2;14878:6;14875:14;14855:18;14852:38;14849:84;;14905:18;;:::i;:::-;14849:84;14670:269;14619:320;;;:::o;14945:220::-;15085:34;15081:1;15073:6;15069:14;15062:58;15154:3;15149:2;15141:6;15137:15;15130:28;14945:220;:::o;15171:366::-;15313:3;15334:67;15398:2;15393:3;15334:67;:::i;:::-;15327:74;;15410:93;15499:3;15410:93;:::i;:::-;15528:2;15523:3;15519:12;15512:19;;15171:366;;;:::o;15543:419::-;15709:4;15747:2;15736:9;15732:18;15724:26;;15796:9;15790:4;15786:20;15782:1;15771:9;15767:17;15760:47;15824:131;15950:4;15824:131;:::i;:::-;15816:139;;15543:419;;;:::o;15968:248::-;16108:34;16104:1;16096:6;16092:14;16085:58;16177:31;16172:2;16164:6;16160:15;16153:56;15968:248;:::o;16222:366::-;16364:3;16385:67;16449:2;16444:3;16385:67;:::i;:::-;16378:74;;16461:93;16550:3;16461:93;:::i;:::-;16579:2;16574:3;16570:12;16563:19;;16222:366;;;:::o;16594:419::-;16760:4;16798:2;16787:9;16783:18;16775:26;;16847:9;16841:4;16837:20;16833:1;16822:9;16818:17;16811:47;16875:131;17001:4;16875:131;:::i;:::-;16867:139;;16594:419;;;:::o;17019:232::-;17159:34;17155:1;17147:6;17143:14;17136:58;17228:15;17223:2;17215:6;17211:15;17204:40;17019:232;:::o;17257:366::-;17399:3;17420:67;17484:2;17479:3;17420:67;:::i;:::-;17413:74;;17496:93;17585:3;17496:93;:::i;:::-;17614:2;17609:3;17605:12;17598:19;;17257:366;;;:::o;17629:419::-;17795:4;17833:2;17822:9;17818:18;17810:26;;17882:9;17876:4;17872:20;17868:1;17857:9;17853:17;17846:47;17910:131;18036:4;17910:131;:::i;:::-;17902:139;;17629:419;;;:::o;18054:230::-;18194:34;18190:1;18182:6;18178:14;18171:58;18263:13;18258:2;18250:6;18246:15;18239:38;18054:230;:::o;18290:366::-;18432:3;18453:67;18517:2;18512:3;18453:67;:::i;:::-;18446:74;;18529:93;18618:3;18529:93;:::i;:::-;18647:2;18642:3;18638:12;18631:19;;18290:366;;;:::o;18662:419::-;18828:4;18866:2;18855:9;18851:18;18843:26;;18915:9;18909:4;18905:20;18901:1;18890:9;18886:17;18879:47;18943:131;19069:4;18943:131;:::i;:::-;18935:139;;18662:419;;;:::o;19087:442::-;19236:4;19274:2;19263:9;19259:18;19251:26;;19287:71;19355:1;19344:9;19340:17;19331:6;19287:71;:::i;:::-;19368:72;19436:2;19425:9;19421:18;19412:6;19368:72;:::i;:::-;19450;19518:2;19507:9;19503:18;19494:6;19450:72;:::i;:::-;19087:442;;;;;;:::o;19535:137::-;19589:5;19620:6;19614:13;19605:22;;19636:30;19660:5;19636:30;:::i;:::-;19535:137;;;;:::o;19678:345::-;19745:6;19794:2;19782:9;19773:7;19769:23;19765:32;19762:119;;;19800:79;;:::i;:::-;19762:119;19920:1;19945:61;19998:7;19989:6;19978:9;19974:22;19945:61;:::i;:::-;19935:71;;19891:125;19678:345;;;;:::o;20029:180::-;20077:77;20074:1;20067:88;20174:4;20171:1;20164:15;20198:4;20195:1;20188:15;20215:191;20255:3;20274:20;20292:1;20274:20;:::i;:::-;20269:25;;20308:20;20326:1;20308:20;:::i;:::-;20303:25;;20351:1;20348;20344:9;20337:16;;20372:3;20369:1;20366:10;20363:36;;;20379:18;;:::i;:::-;20363:36;20215:191;;;;:::o;20412:410::-;20452:7;20475:20;20493:1;20475:20;:::i;:::-;20470:25;;20509:20;20527:1;20509:20;:::i;:::-;20504:25;;20564:1;20561;20557:9;20586:30;20604:11;20586:30;:::i;:::-;20575:41;;20765:1;20756:7;20752:15;20749:1;20746:22;20726:1;20719:9;20699:83;20676:139;;20795:18;;:::i;:::-;20676:139;20460:362;20412:410;;;;:::o;20828:233::-;20867:3;20890:24;20908:5;20890:24;:::i;:::-;20881:33;;20936:66;20929:5;20926:77;20923:103;;21006:18;;:::i;:::-;20923:103;21053:1;21046:5;21042:13;21035:20;;20828:233;;;:::o;21067:180::-;21115:77;21112:1;21105:88;21212:4;21209:1;21202:15;21236:4;21233:1;21226:15;21253:231;21393:34;21389:1;21381:6;21377:14;21370:58;21462:14;21457:2;21449:6;21445:15;21438:39;21253:231;:::o;21490:366::-;21632:3;21653:67;21717:2;21712:3;21653:67;:::i;:::-;21646:74;;21729:93;21818:3;21729:93;:::i;:::-;21847:2;21842:3;21838:12;21831:19;;21490:366;;;:::o;21862:419::-;22028:4;22066:2;22055:9;22051:18;22043:26;;22115:9;22109:4;22105:20;22101:1;22090:9;22086:17;22079:47;22143:131;22269:4;22143:131;:::i;:::-;22135:139;;21862:419;;;:::o;22287:141::-;22336:4;22359:3;22351:11;;22382:3;22379:1;22372:14;22416:4;22413:1;22403:18;22395:26;;22287:141;;;:::o;22434:93::-;22471:6;22518:2;22513;22506:5;22502:14;22498:23;22488:33;;22434:93;;;:::o;22533:107::-;22577:8;22627:5;22621:4;22617:16;22596:37;;22533:107;;;;:::o;22646:393::-;22715:6;22765:1;22753:10;22749:18;22788:97;22818:66;22807:9;22788:97;:::i;:::-;22906:39;22936:8;22925:9;22906:39;:::i;:::-;22894:51;;22978:4;22974:9;22967:5;22963:21;22954:30;;23027:4;23017:8;23013:19;23006:5;23003:30;22993:40;;22722:317;;22646:393;;;;;:::o;23045:60::-;23073:3;23094:5;23087:12;;23045:60;;;:::o;23111:142::-;23161:9;23194:53;23212:34;23221:24;23239:5;23221:24;:::i;:::-;23212:34;:::i;:::-;23194:53;:::i;:::-;23181:66;;23111:142;;;:::o;23259:75::-;23302:3;23323:5;23316:12;;23259:75;;;:::o;23340:269::-;23450:39;23481:7;23450:39;:::i;:::-;23511:91;23560:41;23584:16;23560:41;:::i;:::-;23552:6;23545:4;23539:11;23511:91;:::i;:::-;23505:4;23498:105;23416:193;23340:269;;;:::o;23615:73::-;23660:3;23615:73;:::o;23694:189::-;23771:32;;:::i;:::-;23812:65;23870:6;23862;23856:4;23812:65;:::i;:::-;23747:136;23694:189;;:::o;23889:186::-;23949:120;23966:3;23959:5;23956:14;23949:120;;;24020:39;24057:1;24050:5;24020:39;:::i;:::-;23993:1;23986:5;23982:13;23973:22;;23949:120;;;23889:186;;:::o;24081:543::-;24182:2;24177:3;24174:11;24171:446;;;24216:38;24248:5;24216:38;:::i;:::-;24300:29;24318:10;24300:29;:::i;:::-;24290:8;24286:44;24483:2;24471:10;24468:18;24465:49;;;24504:8;24489:23;;24465:49;24527:80;24583:22;24601:3;24583:22;:::i;:::-;24573:8;24569:37;24556:11;24527:80;:::i;:::-;24186:431;;24171:446;24081:543;;;:::o;24630:117::-;24684:8;24734:5;24728:4;24724:16;24703:37;;24630:117;;;;:::o;24753:169::-;24797:6;24830:51;24878:1;24874:6;24866:5;24863:1;24859:13;24830:51;:::i;:::-;24826:56;24911:4;24905;24901:15;24891:25;;24804:118;24753:169;;;;:::o;24927:295::-;25003:4;25149:29;25174:3;25168:4;25149:29;:::i;:::-;25141:37;;25211:3;25208:1;25204:11;25198:4;25195:21;25187:29;;24927:295;;;;:::o;25227:1395::-;25344:37;25377:3;25344:37;:::i;:::-;25446:18;25438:6;25435:30;25432:56;;;25468:18;;:::i;:::-;25432:56;25512:38;25544:4;25538:11;25512:38;:::i;:::-;25597:67;25657:6;25649;25643:4;25597:67;:::i;:::-;25691:1;25715:4;25702:17;;25747:2;25739:6;25736:14;25764:1;25759:618;;;;26421:1;26438:6;26435:77;;;26487:9;26482:3;26478:19;26472:26;26463:35;;26435:77;26538:67;26598:6;26591:5;26538:67;:::i;:::-;26532:4;26525:81;26394:222;25729:887;;25759:618;25811:4;25807:9;25799:6;25795:22;25845:37;25877:4;25845:37;:::i;:::-;25904:1;25918:208;25932:7;25929:1;25926:14;25918:208;;;26011:9;26006:3;26002:19;25996:26;25988:6;25981:42;26062:1;26054:6;26050:14;26040:24;;26109:2;26098:9;26094:18;26081:31;;25955:4;25952:1;25948:12;25943:17;;25918:208;;;26154:6;26145:7;26142:19;26139:179;;;26212:9;26207:3;26203:19;26197:26;26255:48;26297:4;26289:6;26285:17;26274:9;26255:48;:::i;:::-;26247:6;26240:64;26162:156;26139:179;26364:1;26360;26352:6;26348:14;26344:22;26338:4;26331:36;25766:611;;;25729:887;;25319:1303;;;25227:1395;;:::o;26628:174::-;26768:26;26764:1;26756:6;26752:14;26745:50;26628:174;:::o;26808:366::-;26950:3;26971:67;27035:2;27030:3;26971:67;:::i;:::-;26964:74;;27047:93;27136:3;27047:93;:::i;:::-;27165:2;27160:3;27156:12;27149:19;;26808:366;;;:::o;27180:419::-;27346:4;27384:2;27373:9;27369:18;27361:26;;27433:9;27427:4;27423:20;27419:1;27408:9;27404:17;27397:47;27461:131;27587:4;27461:131;:::i;:::-;27453:139;;27180:419;;;:::o;27605:228::-;27745:34;27741:1;27733:6;27729:14;27722:58;27814:11;27809:2;27801:6;27797:15;27790:36;27605:228;:::o;27839:366::-;27981:3;28002:67;28066:2;28061:3;28002:67;:::i;:::-;27995:74;;28078:93;28167:3;28078:93;:::i;:::-;28196:2;28191:3;28187:12;28180:19;;27839:366;;;:::o;28211:419::-;28377:4;28415:2;28404:9;28400:18;28392:26;;28464:9;28458:4;28454:20;28450:1;28439:9;28435:17;28428:47;28492:131;28618:4;28492:131;:::i;:::-;28484:139;;28211:419;;;:::o;28636:234::-;28776:34;28772:1;28764:6;28760:14;28753:58;28845:17;28840:2;28832:6;28828:15;28821:42;28636:234;:::o;28876:366::-;29018:3;29039:67;29103:2;29098:3;29039:67;:::i;:::-;29032:74;;29115:93;29204:3;29115:93;:::i;:::-;29233:2;29228:3;29224:12;29217:19;;28876:366;;;:::o;29248:419::-;29414:4;29452:2;29441:9;29437:18;29429:26;;29501:9;29495:4;29491:20;29487:1;29476:9;29472:17;29465:47;29529:131;29655:4;29529:131;:::i;:::-;29521:139;;29248:419;;;:::o;29673:148::-;29775:11;29812:3;29797:18;;29673:148;;;;:::o;29827:390::-;29933:3;29961:39;29994:5;29961:39;:::i;:::-;30016:89;30098:6;30093:3;30016:89;:::i;:::-;30009:96;;30114:65;30172:6;30167:3;30160:4;30153:5;30149:16;30114:65;:::i;:::-;30204:6;30199:3;30195:16;30188:23;;29937:280;29827:390;;;;:::o;30247:874::-;30350:3;30387:5;30381:12;30416:36;30442:9;30416:36;:::i;:::-;30468:89;30550:6;30545:3;30468:89;:::i;:::-;30461:96;;30588:1;30577:9;30573:17;30604:1;30599:166;;;;30779:1;30774:341;;;;30566:549;;30599:166;30683:4;30679:9;30668;30664:25;30659:3;30652:38;30745:6;30738:14;30731:22;30723:6;30719:35;30714:3;30710:45;30703:52;;30599:166;;30774:341;30841:38;30873:5;30841:38;:::i;:::-;30901:1;30915:154;30929:6;30926:1;30923:13;30915:154;;;31003:7;30997:14;30993:1;30988:3;30984:11;30977:35;31053:1;31044:7;31040:15;31029:26;;30951:4;30948:1;30944:12;30939:17;;30915:154;;;31098:6;31093:3;31089:16;31082:23;;30781:334;;30566:549;;30354:767;;30247:874;;;;:::o;31127:589::-;31352:3;31374:95;31465:3;31456:6;31374:95;:::i;:::-;31367:102;;31486:95;31577:3;31568:6;31486:95;:::i;:::-;31479:102;;31598:92;31686:3;31677:6;31598:92;:::i;:::-;31591:99;;31707:3;31700:10;;31127:589;;;;;;:::o;31722:225::-;31862:34;31858:1;31850:6;31846:14;31839:58;31931:8;31926:2;31918:6;31914:15;31907:33;31722:225;:::o;31953:366::-;32095:3;32116:67;32180:2;32175:3;32116:67;:::i;:::-;32109:74;;32192:93;32281:3;32192:93;:::i;:::-;32310:2;32305:3;32301:12;32294:19;;31953:366;;;:::o;32325:419::-;32491:4;32529:2;32518:9;32514:18;32506:26;;32578:9;32572:4;32568:20;32564:1;32553:9;32549:17;32542:47;32606:131;32732:4;32606:131;:::i;:::-;32598:139;;32325:419;;;:::o;32750:182::-;32890:34;32886:1;32878:6;32874:14;32867:58;32750:182;:::o;32938:366::-;33080:3;33101:67;33165:2;33160:3;33101:67;:::i;:::-;33094:74;;33177:93;33266:3;33177:93;:::i;:::-;33295:2;33290:3;33286:12;33279:19;;32938:366;;;:::o;33310:419::-;33476:4;33514:2;33503:9;33499:18;33491:26;;33563:9;33557:4;33553:20;33549:1;33538:9;33534:17;33527:47;33591:131;33717:4;33591:131;:::i;:::-;33583:139;;33310:419;;;:::o;33735:224::-;33875:34;33871:1;33863:6;33859:14;33852:58;33944:7;33939:2;33931:6;33927:15;33920:32;33735:224;:::o;33965:366::-;34107:3;34128:67;34192:2;34187:3;34128:67;:::i;:::-;34121:74;;34204:93;34293:3;34204:93;:::i;:::-;34322:2;34317:3;34313:12;34306:19;;33965:366;;;:::o;34337:419::-;34503:4;34541:2;34530:9;34526:18;34518:26;;34590:9;34584:4;34580:20;34576:1;34565:9;34561:17;34554:47;34618:131;34744:4;34618:131;:::i;:::-;34610:139;;34337:419;;;:::o;34762:223::-;34902:34;34898:1;34890:6;34886:14;34879:58;34971:6;34966:2;34958:6;34954:15;34947:31;34762:223;:::o;34991:366::-;35133:3;35154:67;35218:2;35213:3;35154:67;:::i;:::-;35147:74;;35230:93;35319:3;35230:93;:::i;:::-;35348:2;35343:3;35339:12;35332:19;;34991:366;;;:::o;35363:419::-;35529:4;35567:2;35556:9;35552:18;35544:26;;35616:9;35610:4;35606:20;35602:1;35591:9;35587:17;35580:47;35644:131;35770:4;35644:131;:::i;:::-;35636:139;;35363:419;;;:::o;35788:175::-;35928:27;35924:1;35916:6;35912:14;35905:51;35788:175;:::o;35969:366::-;36111:3;36132:67;36196:2;36191:3;36132:67;:::i;:::-;36125:74;;36208:93;36297:3;36208:93;:::i;:::-;36326:2;36321:3;36317:12;36310:19;;35969:366;;;:::o;36341:419::-;36507:4;36545:2;36534:9;36530:18;36522:26;;36594:9;36588:4;36584:20;36580:1;36569:9;36565:17;36558:47;36622:131;36748:4;36622:131;:::i;:::-;36614:139;;36341:419;;;:::o;36766:237::-;36906:34;36902:1;36894:6;36890:14;36883:58;36975:20;36970:2;36962:6;36958:15;36951:45;36766:237;:::o;37009:366::-;37151:3;37172:67;37236:2;37231:3;37172:67;:::i;:::-;37165:74;;37248:93;37337:3;37248:93;:::i;:::-;37366:2;37361:3;37357:12;37350:19;;37009:366;;;:::o;37381:419::-;37547:4;37585:2;37574:9;37570:18;37562:26;;37634:9;37628:4;37624:20;37620:1;37609:9;37605:17;37598:47;37662:131;37788:4;37662:131;:::i;:::-;37654:139;;37381:419;;;:::o;37806:180::-;37854:77;37851:1;37844:88;37951:4;37948:1;37941:15;37975:4;37972:1;37965:15;37992:240;38132:34;38128:1;38120:6;38116:14;38109:58;38201:23;38196:2;38188:6;38184:15;38177:48;37992:240;:::o;38238:366::-;38380:3;38401:67;38465:2;38460:3;38401:67;:::i;:::-;38394:74;;38477:93;38566:3;38477:93;:::i;:::-;38595:2;38590:3;38586:12;38579:19;;38238:366;;;:::o;38610:419::-;38776:4;38814:2;38803:9;38799:18;38791:26;;38863:9;38857:4;38853:20;38849:1;38838:9;38834:17;38827:47;38891:131;39017:4;38891:131;:::i;:::-;38883:139;;38610:419;;;:::o;39035:98::-;39086:6;39120:5;39114:12;39104:22;;39035:98;;;:::o;39139:168::-;39222:11;39256:6;39251:3;39244:19;39296:4;39291:3;39287:14;39272:29;;39139:168;;;;:::o;39313:373::-;39399:3;39427:38;39459:5;39427:38;:::i;:::-;39481:70;39544:6;39539:3;39481:70;:::i;:::-;39474:77;;39560:65;39618:6;39613:3;39606:4;39599:5;39595:16;39560:65;:::i;:::-;39650:29;39672:6;39650:29;:::i;:::-;39645:3;39641:39;39634:46;;39403:283;39313:373;;;;:::o;39692:640::-;39887:4;39925:3;39914:9;39910:19;39902:27;;39939:71;40007:1;39996:9;39992:17;39983:6;39939:71;:::i;:::-;40020:72;40088:2;40077:9;40073:18;40064:6;40020:72;:::i;:::-;40102;40170:2;40159:9;40155:18;40146:6;40102:72;:::i;:::-;40221:9;40215:4;40211:20;40206:2;40195:9;40191:18;40184:48;40249:76;40320:4;40311:6;40249:76;:::i;:::-;40241:84;;39692:640;;;;;;;:::o;40338:141::-;40394:5;40425:6;40419:13;40410:22;;40441:32;40467:5;40441:32;:::i;:::-;40338:141;;;;:::o;40485:349::-;40554:6;40603:2;40591:9;40582:7;40578:23;40574:32;40571:119;;;40609:79;;:::i;:::-;40571:119;40729:1;40754:63;40809:7;40800:6;40789:9;40785:22;40754:63;:::i;:::-;40744:73;;40700:127;40485:349;;;;:::o;40840:194::-;40880:4;40900:20;40918:1;40900:20;:::i;:::-;40895:25;;40934:20;40952:1;40934:20;:::i;:::-;40929:25;;40978:1;40975;40971:9;40963:17;;41002:1;40996:4;40993:11;40990:37;;;41007:18;;:::i;:::-;40990:37;40840:194;;;;:::o;41040:180::-;41088:77;41085:1;41078:88;41185:4;41182:1;41175:15;41209:4;41206:1;41199:15;41226:182;41366:34;41362:1;41354:6;41350:14;41343:58;41226:182;:::o;41414:366::-;41556:3;41577:67;41641:2;41636:3;41577:67;:::i;:::-;41570:74;;41653:93;41742:3;41653:93;:::i;:::-;41771:2;41766:3;41762:12;41755:19;;41414:366;;;:::o;41786:419::-;41952:4;41990:2;41979:9;41975:18;41967:26;;42039:9;42033:4;42029:20;42025:1;42014:9;42010:17;42003:47;42067:131;42193:4;42067:131;:::i;:::-;42059:139;;41786:419;;;:::o;42211:178::-;42351:30;42347:1;42339:6;42335:14;42328:54;42211:178;:::o;42395:366::-;42537:3;42558:67;42622:2;42617:3;42558:67;:::i;:::-;42551:74;;42634:93;42723:3;42634:93;:::i;:::-;42752:2;42747:3;42743:12;42736:19;;42395:366;;;:::o;42767:419::-;42933:4;42971:2;42960:9;42956:18;42948:26;;43020:9;43014:4;43010:20;43006:1;42995:9;42991:17;42984:47;43048:131;43174:4;43048:131;:::i;:::-;43040:139;;42767:419;;;:::o

Swarm Source

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