APE Price: $1.06 (-6.71%)

Token

Aped Planets (APP)

Overview

Max Total Supply

9,928 APP

Holders

205

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Balance
3 APP
0x7db0f86fce38da63e0497d4741aa99fdc218e169
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
N2MERC721A

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2024-10-25
*/

/** ---------------------------------------------------------------------------- //
 *                                                                               //
 *                Smart contract generated by https://nfts2me.com                //
 *                                                                               //
 *                                      .::.                                     //
 *                                    ......                                     //
 *                                ....        ::.                                //
 *                             .:..           :: ...                             //
 *                         ..:.               ::     ...                         //
 *                       ::.      ..:--       ::.       ...                      //
 *                      .:    ..:::::-==:     :::::..     :                      //
 *                      .:    :::::::-====:   ::::::::    :                      //
 *                      .:    :::::::-======. ::::::::    :                      //
 *                      .:    :::::::-=======-::::::::    :                      //
 *                      .:    :::::::-========-:::::::    :                      //
 *                      .:    ::::::::========-:::::::    :                      //
 *                      .:    :::::::. .======-:::::::    :                      //
 *                      .:    :::::::.   :====-:::::::    :                      //
 *                      .:     .:::::.     -==-:::::.     :                      //
 *                       .:.       .:.      .--:..      ...                      //
 *                          .:.     :.               ...                         //
 *                             .... :.           ....                            //
 *                                 .:.        .:.                                //
 *                                      .::::.                                   //
 *                                      :--.                                     //
 *                                                                               //
 *                                                                               //
 *   NFTs2Me. Make an NFT Collection.                                            //
 *   With ZERO Coding Skills.                                                    //
 *                                                                               //
 *   NFTs2Me is not associated or affiliated with this project.                  //
 *   NFTs2Me is not liable for any bugs or issues associated with this contract. //
 *   NFTs2Me Terms of Service: https://nfts2me.com/terms-of-service/             //
 *   More info at: https://docs.nfts2me.com/                                     //
 * ----------------------------------------------------------------------------- */
/// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @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/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.20;


/**
 * @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 address zero.
     *
     * 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/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.20;

/**
 * @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/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @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/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the 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 towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (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 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

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

            uint256 twos = denominator & (0 - denominator);
            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 (unsignedRoundsUp(rounding) && 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
     * towards zero.
     *
     * 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 + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * 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 + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * 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 + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * 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 256, 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 + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;



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

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @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), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @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) {
        uint256 localValue = value;
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = HEX_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        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);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;


/**
 * @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);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.20;








/**
 * @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}.
 */
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    mapping(uint256 tokenId => address) private _owners;

    mapping(address owner => uint256) private _balances;

    mapping(uint256 tokenId => address) private _tokenApprovals;

    mapping(address owner => mapping(address operator => 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 returns (uint256) {
        if (owner == address(0)) {
            revert ERC721InvalidOwner(address(0));
        }
        return _balances[owner];
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
        _requireOwned(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string.concat(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 {
        _approve(to, tokenId, _msgSender());
    }

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

        return _getApproved(tokenId);
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        address previousOwner = _update(to, tokenId, _msgSender());
        if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
        transferFrom(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     *
     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
     * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances
     * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
     * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
     */
    function _getApproved(uint256 tokenId) internal view virtual returns (address) {
        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
     * particular (ignoring whether it is owned by `owner`).
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
        return
            spender != address(0) &&
            (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
    }

    /**
     * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
     * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets
     * the `spender` for the specific `tokenId`.
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
        if (!_isAuthorized(owner, spender, tokenId)) {
            if (owner == address(0)) {
                revert ERC721NonexistentToken(tokenId);
            } else {
                revert ERC721InsufficientApproval(spender, tokenId);
            }
        }
    }

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
     * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
     *
     * WARNING: Increasing an account's balance using this function tends to be paired with an override of the
     * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
     * remain consistent with one another.
     */
    function _increaseBalance(address account, uint128 value) internal virtual {
        unchecked {
            _balances[account] += value;
        }
    }

    /**
     * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
     * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that
     * `auth` is either the owner of the token, or approved to operate on the token (by the owner).
     *
     * Emits a {Transfer} event.
     *
     * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
        address from = _ownerOf(tokenId);

        // Perform (optional) operator check
        if (auth != address(0)) {
            _checkAuthorized(from, auth, tokenId);
        }

        // Execute the update
        if (from != address(0)) {
            // Clear approval. No need to re-authorize or emit the Approval event
            _approve(address(0), tokenId, address(0), false);

            unchecked {
                _balances[from] -= 1;
            }
        }

        if (to != address(0)) {
            unchecked {
                _balances[to] += 1;
            }
        }

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        return from;
    }

    /**
     * @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 {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner != address(0)) {
            revert ERC721InvalidSender(address(0));
        }
    }

    /**
     * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
     *
     * 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 {
        _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);
        _checkOnERC721Received(address(0), to, tokenId, data);
    }

    /**
     * @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 {
        address previousOwner = _update(address(0), tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        } else if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
     * are aware of the ERC721 standard 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 like {safeTransferFrom} in the sense that it invokes
     * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `tokenId` token must exist and be owned by `from`.
     * - `to` cannot be the zero address.
     * - `from` cannot be the zero address.
     * - 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) internal {
        _safeTransfer(from, to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
     * either the owner of the token, or approved to operate on all tokens held by this owner.
     *
     * Emits an {Approval} event.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address to, uint256 tokenId, address auth) internal {
        _approve(to, tokenId, auth, true);
    }

    /**
     * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
     * emitted in the context of transfers.
     */
    function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
        // Avoid reading the owner unless necessary
        if (emitEvent || auth != address(0)) {
            address owner = _requireOwned(tokenId);

            // We do not use _isAuthorized because single-token approvals should not be able to call approve
            if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
                revert ERC721InvalidApprover(auth);
            }

            if (emitEvent) {
                emit Approval(owner, to, tokenId);
            }
        }

        _tokenApprovals[tokenId] = to;
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Requirements:
     * - operator can't be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC721InvalidOperator(operator);
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
     * Returns the owner.
     *
     * Overrides to ownership logic should be done to {_ownerOf}.
     */
    function _requireOwned(uint256 tokenId) internal view returns (address) {
        address owner = _ownerOf(tokenId);
        if (owner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
        return owner;
    }

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the
     * recipient doesn't accept the token transfer. 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
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private {
        if (to.code.length > 0) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                if (retval != IERC721Receiver.onERC721Received.selector) {
                    revert ERC721InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert ERC721InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.20;


/**
 * @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 v5.0.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.20;




/**
 * @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.
 *
 * CAUTION: `ERC721` extensions that implement custom `balanceOf` logic, such as `ERC721Consecutive`,
 * interfere with enumerability and should not be used together with `ERC721Enumerable`.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    mapping(address owner => mapping(uint256 index => uint256)) private _ownedTokens;
    mapping(uint256 tokenId => uint256) private _ownedTokensIndex;

    uint256[] private _allTokens;
    mapping(uint256 tokenId => uint256) private _allTokensIndex;

    /**
     * @dev An `owner`'s token query was out of bounds for `index`.
     *
     * NOTE: The owner being `address(0)` indicates a global out of bounds index.
     */
    error ERC721OutOfBoundsIndex(address owner, uint256 index);

    /**
     * @dev Batch mint is not allowed.
     */
    error ERC721EnumerableForbiddenBatchMint();

    /**
     * @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 returns (uint256) {
        if (index >= balanceOf(owner)) {
            revert ERC721OutOfBoundsIndex(owner, index);
        }
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual returns (uint256) {
        if (index >= totalSupply()) {
            revert ERC721OutOfBoundsIndex(address(0), index);
        }
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_update}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual override returns (address) {
        address previousOwner = super._update(to, tokenId, auth);

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

        return previousOwner;
    }

    /**
     * @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 = balanceOf(to) - 1;
        _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 = balanceOf(from);
        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();
    }

    /**
     * See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch
     */
    function _increaseBalance(address account, uint128 amount) internal virtual override {
        if (amount > 0) {
            revert ERC721EnumerableForbiddenBatchMint();
        }
        super._increaseBalance(account, amount);
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @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 or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * 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.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @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`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) 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 FailedInnerCall();
        }
    }
}

// File: whitelisted72§.sol



pragma solidity ^0.8.20;






contract N2MERC721A is ERC721Enumerable, Ownable, ReentrancyGuard {
    using Address for address;
    using Strings for uint256;

    string public baseTokenURI = "ipfs://bafybeic5yoxvryrsvwpym7zyay56ij2gytw4yqyvvhk45hmbsy7rmginku";
    uint256 public maxSupply = 10000;
    uint256 public MAX_MINTS_PER_TX = 1000;
    uint256 public PUBLIC_SALE_PRICE = 0.01 ether;
    uint256 public WHITELIST_SALE_PRICE = 0 ether;
    uint256 public NUM_FREE_MINTS = 0;
    uint256 public MAX_FREE_PER_WALLET = 0;
    uint256 public freeNFTAlreadyMinted = 0;
    bool public isPublicSaleActive = true;

    mapping(address => bool) public whitelist;

    // Pass msg.sender as the initial owner to the Ownable constructor
    constructor() ERC721("Aped Planets", "APP") Ownable(msg.sender) {}

    function calculateMintingPrice(uint256 quantity) public view returns (uint256) {
        if (quantity == 1111) {
            return 10111 ether;
        } else if (quantity == 1013) {
            return 10011 ether;
        } else {
            return PUBLIC_SALE_PRICE * quantity;
        }
    }

    function mint(uint256 numberOfTokens) external payable nonReentrant {
        require(isPublicSaleActive, "Public sale is not open");
        require(totalSupply() + numberOfTokens <= maxSupply, "No more tokens available");

        uint256 totalPrice = calculateMintingPrice(numberOfTokens);
        if (whitelist[msg.sender]) {
            totalPrice = WHITELIST_SALE_PRICE * numberOfTokens;
        }

        address feeWallet = 0x8018Ef1762eD7Ce9e57356fb0017606dC2b3af15;

        if (freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS) {
            require(totalPrice <= msg.value, "Incorrect ETH value sent");
            payable(feeWallet).transfer(totalPrice);
        } else {
            if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) {
                require(totalPrice <= msg.value, "Incorrect ETH value sent");
                require(numberOfTokens <= MAX_MINTS_PER_TX, "Max mints per transaction exceeded");
                payable(feeWallet).transfer(totalPrice);
            } else {
                require(numberOfTokens <= MAX_FREE_PER_WALLET, "Max mints per transaction exceeded");
                freeNFTAlreadyMinted += numberOfTokens;
            }
        }

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

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

    function treasuryMint(uint256 quantity) public onlyOwner {
        require(quantity > 0, "Invalid mint amount");
        require(totalSupply() + quantity <= maxSupply, "Maximum supply exceeded");
        for (uint256 i = 0; i < quantity; i++) {
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    function withdraw() public onlyOwner nonReentrant {
        Address.sendValue(payable(msg.sender), address(this).balance);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        // Instead of using _exists, we ensure the token has an owner, indirectly checking existence.
        address owner = ownerOf(tokenId);
        require(owner != address(0), "ERC721Metadata: URI query for nonexistent token");

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

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

    function setIsPublicSaleActive(bool isPublicSaleActive_) external onlyOwner {
        isPublicSaleActive = isPublicSaleActive_;
    }

    function setNumFreeMints(uint256 numFreeMints) external onlyOwner {
        NUM_FREE_MINTS = numFreeMints;
    }

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

    function setSalePrice(uint256 price) external onlyOwner {
        PUBLIC_SALE_PRICE = price;
    }

    function setMaxLimitPerTransaction(uint256 limit) external onlyOwner {
        MAX_MINTS_PER_TX = limit;
    }

    function setFreeLimitPerWallet(uint256 limit) external onlyOwner {
        MAX_FREE_PER_WALLET = limit;
    }

    function setWhitelistSalePrice(uint256 price) external onlyOwner {
        WHITELIST_SALE_PRICE = price;
    }

    function addToWhitelist(address addr) external onlyOwner {
        whitelist[addr] = true;
    }

    function removeFromWhitelist(address addr) external onlyOwner {
        whitelist[addr] = false;
    }

    function addMultipleToWhitelist(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            whitelist[addresses[i]] = true;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"ERC721EnumerableForbiddenBatchMint","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"ERC721OutOfBoundsIndex","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addMultipleToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"calculateMintingPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","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":"address","name":"addr","type":"address"}],"name":"removeFromWhitelist","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isPublicSaleActive_","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numFreeMints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setWhitelistSalePrice","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":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806042815260200161451c60429139600c908161002b9190610491565b50612710600d556103e8600e55662386f26fc10000600f555f6010555f6011555f6012555f601355600160145f6101000a81548160ff021916908315150217905550348015610078575f80fd5b50336040518060400160405280600c81526020017f4170656420506c616e65747300000000000000000000000000000000000000008152506040518060400160405280600381526020017f4150500000000000000000000000000000000000000000000000000000000000815250815f90816100f49190610491565b5080600190816101049190610491565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610177575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161016e919061059f565b60405180910390fd5b6101868161019460201b60201c565b506001600b819055506105b8565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806102d257607f821691505b6020821081036102e5576102e461028e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026103477fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261030c565b610351868361030c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61039561039061038b84610369565b610372565b610369565b9050919050565b5f819050919050565b6103ae8361037b565b6103c26103ba8261039c565b848454610318565b825550505050565b5f90565b6103d66103ca565b6103e18184846103a5565b505050565b5b81811015610404576103f95f826103ce565b6001810190506103e7565b5050565b601f8211156104495761041a816102eb565b610423846102fd565b81016020851015610432578190505b61044661043e856102fd565b8301826103e6565b50505b505050565b5f82821c905092915050565b5f6104695f198460080261044e565b1980831691505092915050565b5f610481838361045a565b9150826002028217905092915050565b61049a82610257565b67ffffffffffffffff8111156104b3576104b2610261565b5b6104bd82546102bb565b6104c8828285610408565b5f60209050601f8311600181146104f9575f84156104e7578287015190505b6104f18582610476565b865550610558565b601f198416610507866102eb565b5f5b8281101561052e57848901518255600182019150602085019450602081019050610509565b8683101561054b5784890151610547601f89168261045a565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61058982610560565b9050919050565b6105998161057f565b82525050565b5f6020820190506105b25f830184610590565b92915050565b613f57806105c55f395ff3fe608060405260043610610266575f3560e01c8063715018a611610143578063b88d4fde116100b5578063d5abeb0111610079578063d5abeb01146108e2578063e43252d71461090c578063e985e9c514610934578063efdc778814610970578063f2fde38b14610998578063f6511f93146109c057610266565b8063b88d4fde14610800578063bc912e1a14610828578063c6a91b4214610852578063c87b56dd1461087c578063d547cfb7146108b857610266565b8063982d669e11610107578063982d669e1461070457806398710d1e1461072e5780639b19251a146107585780639e9fcffc14610794578063a0712d68146107bc578063a22cb465146107d857610266565b8063715018a61461064a5780638401f8d1146106605780638ab1d681146106885780638da5cb5b146106b057806395d89b41146106da57610266565b806323b872dd116101dc57806342842e0e116101a057806342842e0e1461051e5780634f6ccce71461054657806355f804b3146105825780636352211e146105aa5780636f8b44b0146105e657806370a082311461060e57610266565b806323b872dd1461045457806328cad13d1461047c5780632f745c59146104a45780633515fbdb146104e05780633ccfd60b1461050857610266565b80630a00ae831161022e5780630a00ae831461035e57806318160ddd146103865780631919fed7146103b0578063193ad7b4146103d85780631e84c41314610402578063202f298a1461042c57610266565b806301ffc9a71461026a57806306fdde03146102a657806307e89ec0146102d0578063081812fc146102fa578063095ea7b314610336575b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b9190612e39565b6109fc565b60405161029d9190612e7e565b60405180910390f35b3480156102b1575f80fd5b506102ba610a75565b6040516102c79190612f07565b60405180910390f35b3480156102db575f80fd5b506102e4610b04565b6040516102f19190612f3f565b60405180910390f35b348015610305575f80fd5b50610320600480360381019061031b9190612f82565b610b0a565b60405161032d9190612fec565b60405180910390f35b348015610341575f80fd5b5061035c6004803603810190610357919061302f565b610b25565b005b348015610369575f80fd5b50610384600480360381019061037f9190612f82565b610b3b565b005b348015610391575f80fd5b5061039a610b4d565b6040516103a79190612f3f565b60405180910390f35b3480156103bb575f80fd5b506103d660048036038101906103d19190612f82565b610b59565b005b3480156103e3575f80fd5b506103ec610b6b565b6040516103f99190612f3f565b60405180910390f35b34801561040d575f80fd5b50610416610b71565b6040516104239190612e7e565b60405180910390f35b348015610437575f80fd5b50610452600480360381019061044d9190612f82565b610b83565b005b34801561045f575f80fd5b5061047a6004803603810190610475919061306d565b610b95565b005b348015610487575f80fd5b506104a2600480360381019061049d91906130e7565b610c94565b005b3480156104af575f80fd5b506104ca60048036038101906104c5919061302f565b610cb8565b6040516104d79190612f3f565b60405180910390f35b3480156104eb575f80fd5b5061050660048036038101906105019190612f82565b610d5c565b005b348015610513575f80fd5b5061051c610d6e565b005b348015610529575f80fd5b50610544600480360381019061053f919061306d565b610d92565b005b348015610551575f80fd5b5061056c60048036038101906105679190612f82565b610db1565b6040516105799190612f3f565b60405180910390f35b34801561058d575f80fd5b506105a860048036038101906105a3919061323e565b610e23565b005b3480156105b5575f80fd5b506105d060048036038101906105cb9190612f82565b610e3e565b6040516105dd9190612fec565b60405180910390f35b3480156105f1575f80fd5b5061060c60048036038101906106079190612f82565b610e4f565b005b348015610619575f80fd5b50610634600480360381019061062f9190613285565b610e61565b6040516106419190612f3f565b60405180910390f35b348015610655575f80fd5b5061065e610f17565b005b34801561066b575f80fd5b506106866004803603810190610681919061330d565b610f2a565b005b348015610693575f80fd5b506106ae60048036038101906106a99190613285565b610fcd565b005b3480156106bb575f80fd5b506106c461102c565b6040516106d19190612fec565b60405180910390f35b3480156106e5575f80fd5b506106ee611054565b6040516106fb9190612f07565b60405180910390f35b34801561070f575f80fd5b506107186110e4565b6040516107259190612f3f565b60405180910390f35b348015610739575f80fd5b506107426110ea565b60405161074f9190612f3f565b60405180910390f35b348015610763575f80fd5b5061077e60048036038101906107799190613285565b6110f0565b60405161078b9190612e7e565b60405180910390f35b34801561079f575f80fd5b506107ba60048036038101906107b59190612f82565b61110d565b005b6107d660048036038101906107d19190612f82565b61111f565b005b3480156107e3575f80fd5b506107fe60048036038101906107f99190613358565b611482565b005b34801561080b575f80fd5b5061082660048036038101906108219190613434565b611498565b005b348015610833575f80fd5b5061083c6114b5565b6040516108499190612f3f565b60405180910390f35b34801561085d575f80fd5b506108666114bb565b6040516108739190612f3f565b60405180910390f35b348015610887575f80fd5b506108a2600480360381019061089d9190612f82565b6114c1565b6040516108af9190612f07565b60405180910390f35b3480156108c3575f80fd5b506108cc611598565b6040516108d99190612f07565b60405180910390f35b3480156108ed575f80fd5b506108f6611624565b6040516109039190612f3f565b60405180910390f35b348015610917575f80fd5b50610932600480360381019061092d9190613285565b61162a565b005b34801561093f575f80fd5b5061095a600480360381019061095591906134b4565b61168a565b6040516109679190612e7e565b60405180910390f35b34801561097b575f80fd5b5061099660048036038101906109919190612f82565b611718565b005b3480156109a3575f80fd5b506109be60048036038101906109b99190613285565b6117f1565b005b3480156109cb575f80fd5b506109e660048036038101906109e19190612f82565b611875565b6040516109f39190612f3f565b60405180910390f35b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6e5750610a6d826118c2565b5b9050919050565b60605f8054610a839061351f565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf9061351f565b8015610afa5780601f10610ad157610100808354040283529160200191610afa565b820191905f5260205f20905b815481529060010190602001808311610add57829003601f168201915b5050505050905090565b600f5481565b5f610b14826119a3565b50610b1e82611a29565b9050919050565b610b378282610b32611a62565b611a69565b5050565b610b43611a7b565b8060118190555050565b5f600880549050905090565b610b61611a7b565b80600f8190555050565b60135481565b60145f9054906101000a900460ff1681565b610b8b611a7b565b8060128190555050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c05575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610bfc9190612fec565b60405180910390fd5b5f610c188383610c13611a62565b611b02565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c8e578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610c859392919061354f565b60405180910390fd5b50505050565b610c9c611a7b565b8060145f6101000a81548160ff02191690831515021790555050565b5f610cc283610e61565b8210610d075782826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610cfe929190613584565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b610d64611a7b565b8060108190555050565b610d76611a7b565b610d7e611c1c565b610d883347611c6b565b610d90611d54565b565b610dac83838360405180602001604052805f815250611498565b505050565b5f610dba610b4d565b8210610dff575f826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610df6929190613584565b60405180910390fd5b60088281548110610e1357610e126135ab565b5b905f5260205f2001549050919050565b610e2b611a7b565b80600c9081610e3a9190613775565b5050565b5f610e48826119a3565b9050919050565b610e57611a7b565b80600d8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed2575f6040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610ec99190612fec565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f1f611a7b565b610f285f611d5e565b565b610f32611a7b565b5f5b82829050811015610fc857600160155f858585818110610f5757610f566135ab565b5b9050602002016020810190610f6c9190613285565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610f34565b505050565b610fd5611a7b565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110639061351f565b80601f016020809104026020016040519081016040528092919081815260200182805461108f9061351f565b80156110da5780601f106110b1576101008083540402835291602001916110da565b820191905f5260205f20905b8154815290600101906020018083116110bd57829003601f168201915b5050505050905090565b60115481565b60125481565b6015602052805f5260405f205f915054906101000a900460ff1681565b611115611a7b565b80600e8190555050565b611127611c1c565b60145f9054906101000a900460ff16611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c9061388e565b60405180910390fd5b600d5481611181610b4d565b61118b91906138d9565b11156111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390613956565b60405180910390fd5b5f6111d682611875565b905060155f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561123857816010546112359190613974565b90505b5f738018ef1762ed7ce9e57356fb0017606dc2b3af1590506011548360135461126191906138d9565b11156112f357348211156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a1906139ff565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156112ed573d5f803e3d5ffd5b50611440565b6012548361130033610e61565b61130a91906138d9565b11156113e15734821115611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a906139ff565b60405180910390fd5b600e54831115611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90613a8d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156113db573d5f803e3d5ffd5b5061143f565b601254831115611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613a8d565b60405180910390fd5b8260135f82825461143791906138d9565b925050819055505b5b5f5b8381101561147457611467336001611458610b4d565b61146291906138d9565b611e21565b8080600101915050611442565b50505061147f611d54565b50565b61149461148d611a62565b8383611e3e565b5050565b6114a3848484610b95565b6114af84848484611fa7565b50505050565b60105481565b600e5481565b60605f6114cd83610e3e565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613b1b565b60405180910390fd5b5f611546612159565b90505f8151116115645760405180602001604052805f81525061158f565b8061156e856121e9565b60405160200161157f929190613c07565b6040516020818303038152906040525b92505050919050565b600c80546115a59061351f565b80601f01602080910402602001604051908101604052809291908181526020018280546115d19061351f565b801561161c5780601f106115f35761010080835404028352916020019161161c565b820191905f5260205f20905b8154815290600101906020018083116115ff57829003601f168201915b505050505081565b600d5481565b611632611a7b565b600160155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611720611a7b565b5f8111611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613c8a565b60405180910390fd5b600d548161176e610b4d565b61177891906138d9565b11156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613cf2565b60405180910390fd5b5f5b818110156117ed576117e03360016117d1610b4d565b6117db91906138d9565b611e21565b80806001019150506117bb565b5050565b6117f9611a7b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611869575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016118609190612fec565b60405180910390fd5b61187281611d5e565b50565b5f6104578203611891576902241e5001a0469c000090506118bd565b6103f582036118ac5769021eb288a372e38c000090506118bd565b81600f546118ba9190613974565b90505b919050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061198c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061199c575061199b826122b3565b5b9050919050565b5f806119ae8361231c565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a2057826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401611a179190612f3f565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b611a768383836001612355565b505050565b611a83611a62565b73ffffffffffffffffffffffffffffffffffffffff16611aa161102c565b73ffffffffffffffffffffffffffffffffffffffff1614611b0057611ac4611a62565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611af79190612fec565b60405180910390fd5b565b5f80611b0f858585612514565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b5257611b4d8461271f565b611b91565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b9057611b8f8185612763565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611bd257611bcd846128ad565b611c11565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c1057611c0f858561296d565b5b5b809150509392505050565b6002600b5403611c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5890613d5a565b60405180910390fd5b6002600b81905550565b80471015611cb057306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401611ca79190612fec565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051611cd590613da5565b5f6040518083038185875af1925050503d805f8114611d0f576040519150601f19603f3d011682016040523d82523d5f602084013e611d14565b606091505b5050905080611d4f576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b6001600b81905550565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e3a828260405180602001604052805f8152506129f1565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611eae57816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401611ea59190612fec565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f9a9190612e7e565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1115612153578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fea611a62565b8685856040518563ffffffff1660e01b815260040161200c9493929190613e0b565b6020604051808303815f875af192505050801561204757506040513d601f19601f820116820180604052508101906120449190613e69565b60015b6120c8573d805f8114612075576040519150601f19603f3d011682016040523d82523d5f602084013e61207a565b606091505b505f8151036120c057836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016120b79190612fec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461215157836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016121489190612fec565b60405180910390fd5b505b50505050565b6060600c80546121689061351f565b80601f01602080910402602001604051908101604052809291908181526020018280546121949061351f565b80156121df5780601f106121b6576101008083540402835291602001916121df565b820191905f5260205f20905b8154815290600101906020018083116121c257829003601f168201915b5050505050905090565b60605f60016121f784612a0c565b0190505f8167ffffffffffffffff8111156122155761221461311a565b5b6040519080825280601f01601f1916602001820160405280156122475781602001600182028036833780820191505090505b5090505f82602001820190505b6001156122a8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161229d5761229c613e94565b5b0494505f8503612254575b819350505050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b808061238d57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156124bf575f61239c846119a3565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561240657508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156124195750612417818461168a565b155b1561245b57826040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526004016124529190612fec565b60405180910390fd5b81156124bd57838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b5f8061251f8461231c565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125605761255f818486612b5d565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146125eb5761259f5f855f80612355565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461266a57600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f61276d83610e61565b90505f60075f8481526020019081526020015f20549050818114612844575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f60016008805490506128c09190613ec1565b90505f60095f8481526020019081526020015f205490505f600883815481106128ec576128eb6135ab565b5b905f5260205f2001549050806008838154811061290c5761290b6135ab565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f9055600880548061295457612953613ef4565b5b600190038181905f5260205f20015f9055905550505050565b5f600161297984610e61565b6129839190613ec1565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b6129fb8383612c20565b612a075f848484611fa7565b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a68577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a5e57612a5d613e94565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612aa5576d04ee2d6d415b85acef81000000008381612a9b57612a9a613e94565b5b0492506020810190505b662386f26fc100008310612ad457662386f26fc100008381612aca57612ac9613e94565b5b0492506010810190505b6305f5e1008310612afd576305f5e1008381612af357612af2613e94565b5b0492506008810190505b6127108310612b22576127108381612b1857612b17613e94565b5b0492506004810190505b60648310612b455760648381612b3b57612b3a613e94565b5b0492506002810190505b600a8310612b54576001810190505b80915050919050565b612b68838383612d13565b612c1b575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bdc57806040517f7e273289000000000000000000000000000000000000000000000000000000008152600401612bd39190612f3f565b60405180910390fd5b81816040517f177e802f000000000000000000000000000000000000000000000000000000008152600401612c12929190613584565b60405180910390fd5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c90575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401612c879190612fec565b60405180910390fd5b5f612c9c83835f611b02565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612d0e575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401612d059190612fec565b60405180910390fd5b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dca57508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d8b5750612d8a848461168a565b5b80612dc957508273ffffffffffffffffffffffffffffffffffffffff16612db183611a29565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e1881612de4565b8114612e22575f80fd5b50565b5f81359050612e3381612e0f565b92915050565b5f60208284031215612e4e57612e4d612ddc565b5b5f612e5b84828501612e25565b91505092915050565b5f8115159050919050565b612e7881612e64565b82525050565b5f602082019050612e915f830184612e6f565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612ed982612e97565b612ee38185612ea1565b9350612ef3818560208601612eb1565b612efc81612ebf565b840191505092915050565b5f6020820190508181035f830152612f1f8184612ecf565b905092915050565b5f819050919050565b612f3981612f27565b82525050565b5f602082019050612f525f830184612f30565b92915050565b612f6181612f27565b8114612f6b575f80fd5b50565b5f81359050612f7c81612f58565b92915050565b5f60208284031215612f9757612f96612ddc565b5b5f612fa484828501612f6e565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612fd682612fad565b9050919050565b612fe681612fcc565b82525050565b5f602082019050612fff5f830184612fdd565b92915050565b61300e81612fcc565b8114613018575f80fd5b50565b5f8135905061302981613005565b92915050565b5f806040838503121561304557613044612ddc565b5b5f6130528582860161301b565b925050602061306385828601612f6e565b9150509250929050565b5f805f6060848603121561308457613083612ddc565b5b5f6130918682870161301b565b93505060206130a28682870161301b565b92505060406130b386828701612f6e565b9150509250925092565b6130c681612e64565b81146130d0575f80fd5b50565b5f813590506130e1816130bd565b92915050565b5f602082840312156130fc576130fb612ddc565b5b5f613109848285016130d3565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61315082612ebf565b810181811067ffffffffffffffff8211171561316f5761316e61311a565b5b80604052505050565b5f613181612dd3565b905061318d8282613147565b919050565b5f67ffffffffffffffff8211156131ac576131ab61311a565b5b6131b582612ebf565b9050602081019050919050565b828183375f83830152505050565b5f6131e26131dd84613192565b613178565b9050828152602081018484840111156131fe576131fd613116565b5b6132098482856131c2565b509392505050565b5f82601f83011261322557613224613112565b5b81356132358482602086016131d0565b91505092915050565b5f6020828403121561325357613252612ddc565b5b5f82013567ffffffffffffffff8111156132705761326f612de0565b5b61327c84828501613211565b91505092915050565b5f6020828403121561329a57613299612ddc565b5b5f6132a78482850161301b565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126132cd576132cc613112565b5b8235905067ffffffffffffffff8111156132ea576132e96132b0565b5b602083019150836020820283011115613306576133056132b4565b5b9250929050565b5f806020838503121561332357613322612ddc565b5b5f83013567ffffffffffffffff8111156133405761333f612de0565b5b61334c858286016132b8565b92509250509250929050565b5f806040838503121561336e5761336d612ddc565b5b5f61337b8582860161301b565b925050602061338c858286016130d3565b9150509250929050565b5f67ffffffffffffffff8211156133b0576133af61311a565b5b6133b982612ebf565b9050602081019050919050565b5f6133d86133d384613396565b613178565b9050828152602081018484840111156133f4576133f3613116565b5b6133ff8482856131c2565b509392505050565b5f82601f83011261341b5761341a613112565b5b813561342b8482602086016133c6565b91505092915050565b5f805f806080858703121561344c5761344b612ddc565b5b5f6134598782880161301b565b945050602061346a8782880161301b565b935050604061347b87828801612f6e565b925050606085013567ffffffffffffffff81111561349c5761349b612de0565b5b6134a887828801613407565b91505092959194509250565b5f80604083850312156134ca576134c9612ddc565b5b5f6134d78582860161301b565b92505060206134e88582860161301b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061353657607f821691505b602082108103613549576135486134f2565b5b50919050565b5f6060820190506135625f830186612fdd565b61356f6020830185612f30565b61357c6040830184612fdd565b949350505050565b5f6040820190506135975f830185612fdd565b6135a46020830184612f30565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026136347fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135f9565b61363e86836135f9565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61367961367461366f84612f27565b613656565b612f27565b9050919050565b5f819050919050565b6136928361365f565b6136a661369e82613680565b848454613605565b825550505050565b5f90565b6136ba6136ae565b6136c5818484613689565b505050565b5b818110156136e8576136dd5f826136b2565b6001810190506136cb565b5050565b601f82111561372d576136fe816135d8565b613707846135ea565b81016020851015613716578190505b61372a613722856135ea565b8301826136ca565b50505b505050565b5f82821c905092915050565b5f61374d5f1984600802613732565b1980831691505092915050565b5f613765838361373e565b9150826002028217905092915050565b61377e82612e97565b67ffffffffffffffff8111156137975761379661311a565b5b6137a1825461351f565b6137ac8282856136ec565b5f60209050601f8311600181146137dd575f84156137cb578287015190505b6137d5858261375a565b86555061383c565b601f1984166137eb866135d8565b5f5b82811015613812578489015182556001820191506020850194506020810190506137ed565b8683101561382f578489015161382b601f89168261373e565b8355505b6001600288020188555050505b505050505050565b7f5075626c69632073616c65206973206e6f74206f70656e0000000000000000005f82015250565b5f613878601783612ea1565b915061388382613844565b602082019050919050565b5f6020820190508181035f8301526138a58161386c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138e382612f27565b91506138ee83612f27565b9250828201905080821115613906576139056138ac565b5b92915050565b7f4e6f206d6f726520746f6b656e7320617661696c61626c6500000000000000005f82015250565b5f613940601883612ea1565b915061394b8261390c565b602082019050919050565b5f6020820190508181035f83015261396d81613934565b9050919050565b5f61397e82612f27565b915061398983612f27565b925082820261399781612f27565b915082820484148315176139ae576139ad6138ac565b5b5092915050565b7f496e636f7272656374204554482076616c75652073656e7400000000000000005f82015250565b5f6139e9601883612ea1565b91506139f4826139b5565b602082019050919050565b5f6020820190508181035f830152613a16816139dd565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e206578636565645f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f613a77602283612ea1565b9150613a8282613a1d565b604082019050919050565b5f6020820190508181035f830152613aa481613a6b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f613b05602f83612ea1565b9150613b1082613aab565b604082019050919050565b5f6020820190508181035f830152613b3281613af9565b9050919050565b5f81905092915050565b5f613b4d82612e97565b613b578185613b39565b9350613b67818560208601612eb1565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f613ba7600183613b39565b9150613bb282613b73565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f613bf1600583613b39565b9150613bfc82613bbd565b600582019050919050565b5f613c128285613b43565b9150613c1d82613b9b565b9150613c298284613b43565b9150613c3482613be5565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e74000000000000000000000000005f82015250565b5f613c74601383612ea1565b9150613c7f82613c40565b602082019050919050565b5f6020820190508181035f830152613ca181613c68565b9050919050565b7f4d6178696d756d20737570706c792065786365656465640000000000000000005f82015250565b5f613cdc601783612ea1565b9150613ce782613ca8565b602082019050919050565b5f6020820190508181035f830152613d0981613cd0565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613d44601f83612ea1565b9150613d4f82613d10565b602082019050919050565b5f6020820190508181035f830152613d7181613d38565b9050919050565b5f81905092915050565b50565b5f613d905f83613d78565b9150613d9b82613d82565b5f82019050919050565b5f613daf82613d85565b9150819050919050565b5f81519050919050565b5f82825260208201905092915050565b5f613ddd82613db9565b613de78185613dc3565b9350613df7818560208601612eb1565b613e0081612ebf565b840191505092915050565b5f608082019050613e1e5f830187612fdd565b613e2b6020830186612fdd565b613e386040830185612f30565b8181036060830152613e4a8184613dd3565b905095945050505050565b5f81519050613e6381612e0f565b92915050565b5f60208284031215613e7e57613e7d612ddc565b5b5f613e8b84828501613e55565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613ecb82612f27565b9150613ed683612f27565b9250828203905081811115613eee57613eed6138ac565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220501b5e1581387f7880260b530af5293537cf1ce55529e261f91bf8f9cd3f689c64736f6c634300081a0033697066733a2f2f626166796265696335796f787672797273767770796d377a7961793536696a3267797477347971797676686b3435686d62737937726d67696e6b75

Deployed Bytecode

0x608060405260043610610266575f3560e01c8063715018a611610143578063b88d4fde116100b5578063d5abeb0111610079578063d5abeb01146108e2578063e43252d71461090c578063e985e9c514610934578063efdc778814610970578063f2fde38b14610998578063f6511f93146109c057610266565b8063b88d4fde14610800578063bc912e1a14610828578063c6a91b4214610852578063c87b56dd1461087c578063d547cfb7146108b857610266565b8063982d669e11610107578063982d669e1461070457806398710d1e1461072e5780639b19251a146107585780639e9fcffc14610794578063a0712d68146107bc578063a22cb465146107d857610266565b8063715018a61461064a5780638401f8d1146106605780638ab1d681146106885780638da5cb5b146106b057806395d89b41146106da57610266565b806323b872dd116101dc57806342842e0e116101a057806342842e0e1461051e5780634f6ccce71461054657806355f804b3146105825780636352211e146105aa5780636f8b44b0146105e657806370a082311461060e57610266565b806323b872dd1461045457806328cad13d1461047c5780632f745c59146104a45780633515fbdb146104e05780633ccfd60b1461050857610266565b80630a00ae831161022e5780630a00ae831461035e57806318160ddd146103865780631919fed7146103b0578063193ad7b4146103d85780631e84c41314610402578063202f298a1461042c57610266565b806301ffc9a71461026a57806306fdde03146102a657806307e89ec0146102d0578063081812fc146102fa578063095ea7b314610336575b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b9190612e39565b6109fc565b60405161029d9190612e7e565b60405180910390f35b3480156102b1575f80fd5b506102ba610a75565b6040516102c79190612f07565b60405180910390f35b3480156102db575f80fd5b506102e4610b04565b6040516102f19190612f3f565b60405180910390f35b348015610305575f80fd5b50610320600480360381019061031b9190612f82565b610b0a565b60405161032d9190612fec565b60405180910390f35b348015610341575f80fd5b5061035c6004803603810190610357919061302f565b610b25565b005b348015610369575f80fd5b50610384600480360381019061037f9190612f82565b610b3b565b005b348015610391575f80fd5b5061039a610b4d565b6040516103a79190612f3f565b60405180910390f35b3480156103bb575f80fd5b506103d660048036038101906103d19190612f82565b610b59565b005b3480156103e3575f80fd5b506103ec610b6b565b6040516103f99190612f3f565b60405180910390f35b34801561040d575f80fd5b50610416610b71565b6040516104239190612e7e565b60405180910390f35b348015610437575f80fd5b50610452600480360381019061044d9190612f82565b610b83565b005b34801561045f575f80fd5b5061047a6004803603810190610475919061306d565b610b95565b005b348015610487575f80fd5b506104a2600480360381019061049d91906130e7565b610c94565b005b3480156104af575f80fd5b506104ca60048036038101906104c5919061302f565b610cb8565b6040516104d79190612f3f565b60405180910390f35b3480156104eb575f80fd5b5061050660048036038101906105019190612f82565b610d5c565b005b348015610513575f80fd5b5061051c610d6e565b005b348015610529575f80fd5b50610544600480360381019061053f919061306d565b610d92565b005b348015610551575f80fd5b5061056c60048036038101906105679190612f82565b610db1565b6040516105799190612f3f565b60405180910390f35b34801561058d575f80fd5b506105a860048036038101906105a3919061323e565b610e23565b005b3480156105b5575f80fd5b506105d060048036038101906105cb9190612f82565b610e3e565b6040516105dd9190612fec565b60405180910390f35b3480156105f1575f80fd5b5061060c60048036038101906106079190612f82565b610e4f565b005b348015610619575f80fd5b50610634600480360381019061062f9190613285565b610e61565b6040516106419190612f3f565b60405180910390f35b348015610655575f80fd5b5061065e610f17565b005b34801561066b575f80fd5b506106866004803603810190610681919061330d565b610f2a565b005b348015610693575f80fd5b506106ae60048036038101906106a99190613285565b610fcd565b005b3480156106bb575f80fd5b506106c461102c565b6040516106d19190612fec565b60405180910390f35b3480156106e5575f80fd5b506106ee611054565b6040516106fb9190612f07565b60405180910390f35b34801561070f575f80fd5b506107186110e4565b6040516107259190612f3f565b60405180910390f35b348015610739575f80fd5b506107426110ea565b60405161074f9190612f3f565b60405180910390f35b348015610763575f80fd5b5061077e60048036038101906107799190613285565b6110f0565b60405161078b9190612e7e565b60405180910390f35b34801561079f575f80fd5b506107ba60048036038101906107b59190612f82565b61110d565b005b6107d660048036038101906107d19190612f82565b61111f565b005b3480156107e3575f80fd5b506107fe60048036038101906107f99190613358565b611482565b005b34801561080b575f80fd5b5061082660048036038101906108219190613434565b611498565b005b348015610833575f80fd5b5061083c6114b5565b6040516108499190612f3f565b60405180910390f35b34801561085d575f80fd5b506108666114bb565b6040516108739190612f3f565b60405180910390f35b348015610887575f80fd5b506108a2600480360381019061089d9190612f82565b6114c1565b6040516108af9190612f07565b60405180910390f35b3480156108c3575f80fd5b506108cc611598565b6040516108d99190612f07565b60405180910390f35b3480156108ed575f80fd5b506108f6611624565b6040516109039190612f3f565b60405180910390f35b348015610917575f80fd5b50610932600480360381019061092d9190613285565b61162a565b005b34801561093f575f80fd5b5061095a600480360381019061095591906134b4565b61168a565b6040516109679190612e7e565b60405180910390f35b34801561097b575f80fd5b5061099660048036038101906109919190612f82565b611718565b005b3480156109a3575f80fd5b506109be60048036038101906109b99190613285565b6117f1565b005b3480156109cb575f80fd5b506109e660048036038101906109e19190612f82565b611875565b6040516109f39190612f3f565b60405180910390f35b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6e5750610a6d826118c2565b5b9050919050565b60605f8054610a839061351f565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf9061351f565b8015610afa5780601f10610ad157610100808354040283529160200191610afa565b820191905f5260205f20905b815481529060010190602001808311610add57829003601f168201915b5050505050905090565b600f5481565b5f610b14826119a3565b50610b1e82611a29565b9050919050565b610b378282610b32611a62565b611a69565b5050565b610b43611a7b565b8060118190555050565b5f600880549050905090565b610b61611a7b565b80600f8190555050565b60135481565b60145f9054906101000a900460ff1681565b610b8b611a7b565b8060128190555050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c05575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610bfc9190612fec565b60405180910390fd5b5f610c188383610c13611a62565b611b02565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c8e578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610c859392919061354f565b60405180910390fd5b50505050565b610c9c611a7b565b8060145f6101000a81548160ff02191690831515021790555050565b5f610cc283610e61565b8210610d075782826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610cfe929190613584565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b610d64611a7b565b8060108190555050565b610d76611a7b565b610d7e611c1c565b610d883347611c6b565b610d90611d54565b565b610dac83838360405180602001604052805f815250611498565b505050565b5f610dba610b4d565b8210610dff575f826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610df6929190613584565b60405180910390fd5b60088281548110610e1357610e126135ab565b5b905f5260205f2001549050919050565b610e2b611a7b565b80600c9081610e3a9190613775565b5050565b5f610e48826119a3565b9050919050565b610e57611a7b565b80600d8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed2575f6040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610ec99190612fec565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f1f611a7b565b610f285f611d5e565b565b610f32611a7b565b5f5b82829050811015610fc857600160155f858585818110610f5757610f566135ab565b5b9050602002016020810190610f6c9190613285565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610f34565b505050565b610fd5611a7b565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110639061351f565b80601f016020809104026020016040519081016040528092919081815260200182805461108f9061351f565b80156110da5780601f106110b1576101008083540402835291602001916110da565b820191905f5260205f20905b8154815290600101906020018083116110bd57829003601f168201915b5050505050905090565b60115481565b60125481565b6015602052805f5260405f205f915054906101000a900460ff1681565b611115611a7b565b80600e8190555050565b611127611c1c565b60145f9054906101000a900460ff16611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c9061388e565b60405180910390fd5b600d5481611181610b4d565b61118b91906138d9565b11156111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390613956565b60405180910390fd5b5f6111d682611875565b905060155f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561123857816010546112359190613974565b90505b5f738018ef1762ed7ce9e57356fb0017606dc2b3af1590506011548360135461126191906138d9565b11156112f357348211156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a1906139ff565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156112ed573d5f803e3d5ffd5b50611440565b6012548361130033610e61565b61130a91906138d9565b11156113e15734821115611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a906139ff565b60405180910390fd5b600e54831115611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90613a8d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156113db573d5f803e3d5ffd5b5061143f565b601254831115611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613a8d565b60405180910390fd5b8260135f82825461143791906138d9565b925050819055505b5b5f5b8381101561147457611467336001611458610b4d565b61146291906138d9565b611e21565b8080600101915050611442565b50505061147f611d54565b50565b61149461148d611a62565b8383611e3e565b5050565b6114a3848484610b95565b6114af84848484611fa7565b50505050565b60105481565b600e5481565b60605f6114cd83610e3e565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613b1b565b60405180910390fd5b5f611546612159565b90505f8151116115645760405180602001604052805f81525061158f565b8061156e856121e9565b60405160200161157f929190613c07565b6040516020818303038152906040525b92505050919050565b600c80546115a59061351f565b80601f01602080910402602001604051908101604052809291908181526020018280546115d19061351f565b801561161c5780601f106115f35761010080835404028352916020019161161c565b820191905f5260205f20905b8154815290600101906020018083116115ff57829003601f168201915b505050505081565b600d5481565b611632611a7b565b600160155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611720611a7b565b5f8111611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613c8a565b60405180910390fd5b600d548161176e610b4d565b61177891906138d9565b11156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613cf2565b60405180910390fd5b5f5b818110156117ed576117e03360016117d1610b4d565b6117db91906138d9565b611e21565b80806001019150506117bb565b5050565b6117f9611a7b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611869575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016118609190612fec565b60405180910390fd5b61187281611d5e565b50565b5f6104578203611891576902241e5001a0469c000090506118bd565b6103f582036118ac5769021eb288a372e38c000090506118bd565b81600f546118ba9190613974565b90505b919050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061198c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061199c575061199b826122b3565b5b9050919050565b5f806119ae8361231c565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a2057826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401611a179190612f3f565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b611a768383836001612355565b505050565b611a83611a62565b73ffffffffffffffffffffffffffffffffffffffff16611aa161102c565b73ffffffffffffffffffffffffffffffffffffffff1614611b0057611ac4611a62565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611af79190612fec565b60405180910390fd5b565b5f80611b0f858585612514565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b5257611b4d8461271f565b611b91565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b9057611b8f8185612763565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611bd257611bcd846128ad565b611c11565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c1057611c0f858561296d565b5b5b809150509392505050565b6002600b5403611c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5890613d5a565b60405180910390fd5b6002600b81905550565b80471015611cb057306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401611ca79190612fec565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051611cd590613da5565b5f6040518083038185875af1925050503d805f8114611d0f576040519150601f19603f3d011682016040523d82523d5f602084013e611d14565b606091505b5050905080611d4f576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b6001600b81905550565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e3a828260405180602001604052805f8152506129f1565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611eae57816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401611ea59190612fec565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f9a9190612e7e565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1115612153578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fea611a62565b8685856040518563ffffffff1660e01b815260040161200c9493929190613e0b565b6020604051808303815f875af192505050801561204757506040513d601f19601f820116820180604052508101906120449190613e69565b60015b6120c8573d805f8114612075576040519150601f19603f3d011682016040523d82523d5f602084013e61207a565b606091505b505f8151036120c057836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016120b79190612fec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461215157836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016121489190612fec565b60405180910390fd5b505b50505050565b6060600c80546121689061351f565b80601f01602080910402602001604051908101604052809291908181526020018280546121949061351f565b80156121df5780601f106121b6576101008083540402835291602001916121df565b820191905f5260205f20905b8154815290600101906020018083116121c257829003601f168201915b5050505050905090565b60605f60016121f784612a0c565b0190505f8167ffffffffffffffff8111156122155761221461311a565b5b6040519080825280601f01601f1916602001820160405280156122475781602001600182028036833780820191505090505b5090505f82602001820190505b6001156122a8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161229d5761229c613e94565b5b0494505f8503612254575b819350505050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b808061238d57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156124bf575f61239c846119a3565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561240657508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156124195750612417818461168a565b155b1561245b57826040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526004016124529190612fec565b60405180910390fd5b81156124bd57838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b5f8061251f8461231c565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125605761255f818486612b5d565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146125eb5761259f5f855f80612355565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461266a57600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f61276d83610e61565b90505f60075f8481526020019081526020015f20549050818114612844575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f60016008805490506128c09190613ec1565b90505f60095f8481526020019081526020015f205490505f600883815481106128ec576128eb6135ab565b5b905f5260205f2001549050806008838154811061290c5761290b6135ab565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f9055600880548061295457612953613ef4565b5b600190038181905f5260205f20015f9055905550505050565b5f600161297984610e61565b6129839190613ec1565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b6129fb8383612c20565b612a075f848484611fa7565b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a68577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a5e57612a5d613e94565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612aa5576d04ee2d6d415b85acef81000000008381612a9b57612a9a613e94565b5b0492506020810190505b662386f26fc100008310612ad457662386f26fc100008381612aca57612ac9613e94565b5b0492506010810190505b6305f5e1008310612afd576305f5e1008381612af357612af2613e94565b5b0492506008810190505b6127108310612b22576127108381612b1857612b17613e94565b5b0492506004810190505b60648310612b455760648381612b3b57612b3a613e94565b5b0492506002810190505b600a8310612b54576001810190505b80915050919050565b612b68838383612d13565b612c1b575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bdc57806040517f7e273289000000000000000000000000000000000000000000000000000000008152600401612bd39190612f3f565b60405180910390fd5b81816040517f177e802f000000000000000000000000000000000000000000000000000000008152600401612c12929190613584565b60405180910390fd5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c90575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401612c879190612fec565b60405180910390fd5b5f612c9c83835f611b02565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612d0e575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401612d059190612fec565b60405180910390fd5b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dca57508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d8b5750612d8a848461168a565b5b80612dc957508273ffffffffffffffffffffffffffffffffffffffff16612db183611a29565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e1881612de4565b8114612e22575f80fd5b50565b5f81359050612e3381612e0f565b92915050565b5f60208284031215612e4e57612e4d612ddc565b5b5f612e5b84828501612e25565b91505092915050565b5f8115159050919050565b612e7881612e64565b82525050565b5f602082019050612e915f830184612e6f565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612ed982612e97565b612ee38185612ea1565b9350612ef3818560208601612eb1565b612efc81612ebf565b840191505092915050565b5f6020820190508181035f830152612f1f8184612ecf565b905092915050565b5f819050919050565b612f3981612f27565b82525050565b5f602082019050612f525f830184612f30565b92915050565b612f6181612f27565b8114612f6b575f80fd5b50565b5f81359050612f7c81612f58565b92915050565b5f60208284031215612f9757612f96612ddc565b5b5f612fa484828501612f6e565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612fd682612fad565b9050919050565b612fe681612fcc565b82525050565b5f602082019050612fff5f830184612fdd565b92915050565b61300e81612fcc565b8114613018575f80fd5b50565b5f8135905061302981613005565b92915050565b5f806040838503121561304557613044612ddc565b5b5f6130528582860161301b565b925050602061306385828601612f6e565b9150509250929050565b5f805f6060848603121561308457613083612ddc565b5b5f6130918682870161301b565b93505060206130a28682870161301b565b92505060406130b386828701612f6e565b9150509250925092565b6130c681612e64565b81146130d0575f80fd5b50565b5f813590506130e1816130bd565b92915050565b5f602082840312156130fc576130fb612ddc565b5b5f613109848285016130d3565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61315082612ebf565b810181811067ffffffffffffffff8211171561316f5761316e61311a565b5b80604052505050565b5f613181612dd3565b905061318d8282613147565b919050565b5f67ffffffffffffffff8211156131ac576131ab61311a565b5b6131b582612ebf565b9050602081019050919050565b828183375f83830152505050565b5f6131e26131dd84613192565b613178565b9050828152602081018484840111156131fe576131fd613116565b5b6132098482856131c2565b509392505050565b5f82601f83011261322557613224613112565b5b81356132358482602086016131d0565b91505092915050565b5f6020828403121561325357613252612ddc565b5b5f82013567ffffffffffffffff8111156132705761326f612de0565b5b61327c84828501613211565b91505092915050565b5f6020828403121561329a57613299612ddc565b5b5f6132a78482850161301b565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126132cd576132cc613112565b5b8235905067ffffffffffffffff8111156132ea576132e96132b0565b5b602083019150836020820283011115613306576133056132b4565b5b9250929050565b5f806020838503121561332357613322612ddc565b5b5f83013567ffffffffffffffff8111156133405761333f612de0565b5b61334c858286016132b8565b92509250509250929050565b5f806040838503121561336e5761336d612ddc565b5b5f61337b8582860161301b565b925050602061338c858286016130d3565b9150509250929050565b5f67ffffffffffffffff8211156133b0576133af61311a565b5b6133b982612ebf565b9050602081019050919050565b5f6133d86133d384613396565b613178565b9050828152602081018484840111156133f4576133f3613116565b5b6133ff8482856131c2565b509392505050565b5f82601f83011261341b5761341a613112565b5b813561342b8482602086016133c6565b91505092915050565b5f805f806080858703121561344c5761344b612ddc565b5b5f6134598782880161301b565b945050602061346a8782880161301b565b935050604061347b87828801612f6e565b925050606085013567ffffffffffffffff81111561349c5761349b612de0565b5b6134a887828801613407565b91505092959194509250565b5f80604083850312156134ca576134c9612ddc565b5b5f6134d78582860161301b565b92505060206134e88582860161301b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061353657607f821691505b602082108103613549576135486134f2565b5b50919050565b5f6060820190506135625f830186612fdd565b61356f6020830185612f30565b61357c6040830184612fdd565b949350505050565b5f6040820190506135975f830185612fdd565b6135a46020830184612f30565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026136347fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135f9565b61363e86836135f9565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61367961367461366f84612f27565b613656565b612f27565b9050919050565b5f819050919050565b6136928361365f565b6136a661369e82613680565b848454613605565b825550505050565b5f90565b6136ba6136ae565b6136c5818484613689565b505050565b5b818110156136e8576136dd5f826136b2565b6001810190506136cb565b5050565b601f82111561372d576136fe816135d8565b613707846135ea565b81016020851015613716578190505b61372a613722856135ea565b8301826136ca565b50505b505050565b5f82821c905092915050565b5f61374d5f1984600802613732565b1980831691505092915050565b5f613765838361373e565b9150826002028217905092915050565b61377e82612e97565b67ffffffffffffffff8111156137975761379661311a565b5b6137a1825461351f565b6137ac8282856136ec565b5f60209050601f8311600181146137dd575f84156137cb578287015190505b6137d5858261375a565b86555061383c565b601f1984166137eb866135d8565b5f5b82811015613812578489015182556001820191506020850194506020810190506137ed565b8683101561382f578489015161382b601f89168261373e565b8355505b6001600288020188555050505b505050505050565b7f5075626c69632073616c65206973206e6f74206f70656e0000000000000000005f82015250565b5f613878601783612ea1565b915061388382613844565b602082019050919050565b5f6020820190508181035f8301526138a58161386c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138e382612f27565b91506138ee83612f27565b9250828201905080821115613906576139056138ac565b5b92915050565b7f4e6f206d6f726520746f6b656e7320617661696c61626c6500000000000000005f82015250565b5f613940601883612ea1565b915061394b8261390c565b602082019050919050565b5f6020820190508181035f83015261396d81613934565b9050919050565b5f61397e82612f27565b915061398983612f27565b925082820261399781612f27565b915082820484148315176139ae576139ad6138ac565b5b5092915050565b7f496e636f7272656374204554482076616c75652073656e7400000000000000005f82015250565b5f6139e9601883612ea1565b91506139f4826139b5565b602082019050919050565b5f6020820190508181035f830152613a16816139dd565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e206578636565645f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f613a77602283612ea1565b9150613a8282613a1d565b604082019050919050565b5f6020820190508181035f830152613aa481613a6b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f613b05602f83612ea1565b9150613b1082613aab565b604082019050919050565b5f6020820190508181035f830152613b3281613af9565b9050919050565b5f81905092915050565b5f613b4d82612e97565b613b578185613b39565b9350613b67818560208601612eb1565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f613ba7600183613b39565b9150613bb282613b73565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f613bf1600583613b39565b9150613bfc82613bbd565b600582019050919050565b5f613c128285613b43565b9150613c1d82613b9b565b9150613c298284613b43565b9150613c3482613be5565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e74000000000000000000000000005f82015250565b5f613c74601383612ea1565b9150613c7f82613c40565b602082019050919050565b5f6020820190508181035f830152613ca181613c68565b9050919050565b7f4d6178696d756d20737570706c792065786365656465640000000000000000005f82015250565b5f613cdc601783612ea1565b9150613ce782613ca8565b602082019050919050565b5f6020820190508181035f830152613d0981613cd0565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613d44601f83612ea1565b9150613d4f82613d10565b602082019050919050565b5f6020820190508181035f830152613d7181613d38565b9050919050565b5f81905092915050565b50565b5f613d905f83613d78565b9150613d9b82613d82565b5f82019050919050565b5f613daf82613d85565b9150819050919050565b5f81519050919050565b5f82825260208201905092915050565b5f613ddd82613db9565b613de78185613dc3565b9350613df7818560208601612eb1565b613e0081612ebf565b840191505092915050565b5f608082019050613e1e5f830187612fdd565b613e2b6020830186612fdd565b613e386040830185612f30565b8181036060830152613e4a8184613dd3565b905095945050505050565b5f81519050613e6381612e0f565b92915050565b5f60208284031215613e7e57613e7d612ddc565b5b5f613e8b84828501613e55565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613ecb82612f27565b9150613ed683612f27565b9250828203905081811115613eee57613eed6138ac565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220501b5e1581387f7880260b530af5293537cf1ce55529e261f91bf8f9cd3f689c64736f6c634300081a0033

Deployed Bytecode Sourcemap

78773:4982:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59845:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41652:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79100:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42824:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42643:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82632:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60489:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82864:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79289:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79335:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83092:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43493:588;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82489:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60153:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83211:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81697:130;;;;;;;;;;;;;:::i;:::-;;44152:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60670:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81260:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41465:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82754:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41190:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68177:103;;;;;;;;;;;;;:::i;:::-;;83549:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83437:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67502:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41812:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79204:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79244:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79381:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82972:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79890:1362;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43054:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44357:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79152:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79055:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81835:525;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78912:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79016:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83331:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43271:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81369:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68435:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79577:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59845:224;59947:4;59986:35;59971:50;;;:11;:50;;;;:90;;;;60025:36;60049:11;60025:23;:36::i;:::-;59971:90;59964:97;;59845:224;;;:::o;41652:91::-;41697:13;41730:5;41723:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41652:91;:::o;79100:45::-;;;;:::o;42824:158::-;42891:7;42911:22;42925:7;42911:13;:22::i;:::-;;42953:21;42966:7;42953:12;:21::i;:::-;42946:28;;42824:158;;;:::o;42643:115::-;42715:35;42724:2;42728:7;42737:12;:10;:12::i;:::-;42715:8;:35::i;:::-;42643:115;;:::o;82632:114::-;67388:13;:11;:13::i;:::-;82726:12:::1;82709:14;:29;;;;82632:114:::0;:::o;60489:104::-;60541:7;60568:10;:17;;;;60561:24;;60489:104;:::o;82864:100::-;67388:13;:11;:13::i;:::-;82951:5:::1;82931:17;:25;;;;82864:100:::0;:::o;79289:39::-;;;;:::o;79335:37::-;;;;;;;;;;;;;:::o;83092:111::-;67388:13;:11;:13::i;:::-;83190:5:::1;83168:19;:27;;;;83092:111:::0;:::o;43493:588::-;43602:1;43588:16;;:2;:16;;;43584:89;;43658:1;43628:33;;;;;;;;;;;:::i;:::-;;;;;;;;43584:89;43894:21;43918:34;43926:2;43930:7;43939:12;:10;:12::i;:::-;43918:7;:34::i;:::-;43894:58;;43984:4;43967:21;;:13;:21;;;43963:111;;44033:4;44039:7;44048:13;44012:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;43963:111;43573:508;43493:588;;;:::o;82489:135::-;67388:13;:11;:13::i;:::-;82597:19:::1;82576:18;;:40;;;;;;;;;;;;;;;;;;82489:135:::0;:::o;60153:260::-;60241:7;60274:16;60284:5;60274:9;:16::i;:::-;60265:5;:25;60261:101;;60337:5;60344;60314:36;;;;;;;;;;;;:::i;:::-;;;;;;;;60261:101;60379:12;:19;60392:5;60379:19;;;;;;;;;;;;;;;:26;60399:5;60379:26;;;;;;;;;;;;60372:33;;60153:260;;;;:::o;83211:112::-;67388:13;:11;:13::i;:::-;83310:5:::1;83287:20;:28;;;;83211:112:::0;:::o;81697:130::-;67388:13;:11;:13::i;:::-;71358:21:::1;:19;:21::i;:::-;81758:61:::2;81784:10;81797:21;81758:17;:61::i;:::-;71402:20:::1;:18;:20::i;:::-;81697:130::o:0;44152:134::-;44239:39;44256:4;44262:2;44266:7;44239:39;;;;;;;;;;;;:16;:39::i;:::-;44152:134;;;:::o;60670:231::-;60736:7;60769:13;:11;:13::i;:::-;60760:5;:22;60756:103;;60837:1;60841:5;60806:41;;;;;;;;;;;;:::i;:::-;;;;;;;;60756:103;60876:10;60887:5;60876:17;;;;;;;;:::i;:::-;;;;;;;;;;60869:24;;60670:231;;;:::o;81260:101::-;67388:13;:11;:13::i;:::-;81346:7:::1;81331:12;:22;;;;;;:::i;:::-;;81260:101:::0;:::o;41465:120::-;41528:7;41555:22;41569:7;41555:13;:22::i;:::-;41548:29;;41465:120;;;:::o;82754:102::-;67388:13;:11;:13::i;:::-;82838:10:::1;82826:9;:22;;;;82754:102:::0;:::o;41190:213::-;41253:7;41294:1;41277:19;;:5;:19;;;41273:89;;41347:1;41320:30;;;;;;;;;;;:::i;:::-;;;;;;;;41273:89;41379:9;:16;41389:5;41379:16;;;;;;;;;;;;;;;;41372:23;;41190:213;;;:::o;68177:103::-;67388:13;:11;:13::i;:::-;68242:30:::1;68269:1;68242:18;:30::i;:::-;68177:103::o:0;83549:203::-;67388:13;:11;:13::i;:::-;83646:9:::1;83641:104;83665:9;;:16;;83661:1;:20;83641:104;;;83729:4;83703:9;:23;83713:9;;83723:1;83713:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;83703:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;83683:3;;;;;;;83641:104;;;;83549:203:::0;;:::o;83437:104::-;67388:13;:11;:13::i;:::-;83528:5:::1;83510:9;:15;83520:4;83510:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;83437:104:::0;:::o;67502:87::-;67548:7;67575:6;;;;;;;;;;;67568:13;;67502:87;:::o;41812:95::-;41859:13;41892:7;41885:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41812:95;:::o;79204:33::-;;;;:::o;79244:38::-;;;;:::o;79381:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;82972:112::-;67388:13;:11;:13::i;:::-;83071:5:::1;83052:16;:24;;;;82972:112:::0;:::o;79890:1362::-;71358:21;:19;:21::i;:::-;79977:18:::1;;;;;;;;;;;79969:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;80076:9;;80058:14;80042:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;80034:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;80127:18;80148:37;80170:14;80148:21;:37::i;:::-;80127:58;;80200:9;:21;80210:10;80200:21;;;;;;;;;;;;;;;;;;;;;;;;;80196:104;;;80274:14;80251:20;;:37;;;;:::i;:::-;80238:50;;80196:104;80312:17;80332:42;80312:62;;80431:14;;80414;80391:20;;:37;;;;:::i;:::-;:54;80387:734;;;80484:9;80470:10;:23;;80462:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;80545:9;80537:27;;:39;80565:10;80537:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;80387:734;;;80654:19;;80637:14;80613:21;80623:10;80613:9;:21::i;:::-;:38;;;;:::i;:::-;:60;80609:501;;;80716:9;80702:10;:23;;80694:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;80799:16;;80781:14;:34;;80773:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;80881:9;80873:27;;:39;80901:10;80873:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;80609:501;;;80979:19;;80961:14;:37;;80953:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;81080:14;81056:20;;:38;;;;;;;:::i;:::-;;;;;;;;80609:501;80387:734;81138:9;81133:112;81157:14;81153:1;:18;81133:112;;;81193:40;81203:10;81231:1;81215:13;:11;:13::i;:::-;:17;;;;:::i;:::-;81193:9;:40::i;:::-;81173:3;;;;;;;81133:112;;;;79958:1294;;71402:20:::0;:18;:20::i;:::-;79890:1362;:::o;43054:146::-;43140:52;43159:12;:10;:12::i;:::-;43173:8;43183;43140:18;:52::i;:::-;43054:146;;:::o;44357:211::-;44471:31;44484:4;44490:2;44494:7;44471:12;:31::i;:::-;44513:47;44536:4;44542:2;44546:7;44555:4;44513:22;:47::i;:::-;44357:211;;;;:::o;79152:45::-;;;;:::o;79055:38::-;;;;:::o;81835:525::-;81908:13;82037;82053:16;82061:7;82053;:16::i;:::-;82037:32;;82105:1;82088:19;;:5;:19;;;82080:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;82172:21;82196:10;:8;:10::i;:::-;82172:34;;82248:1;82230:7;82224:21;:25;:128;;;;;;;;;;;;;;;;;82290:7;82304:18;:7;:16;:18::i;:::-;82273:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82224:128;82217:135;;;;81835:525;;;:::o;78912:97::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;79016:32::-;;;;:::o;83331:98::-;67388:13;:11;:13::i;:::-;83417:4:::1;83399:9;:15;83409:4;83399:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;83331:98:::0;:::o;43271:155::-;43359:4;43383:18;:25;43402:5;43383:25;;;;;;;;;;;;;;;:35;43409:8;43383:35;;;;;;;;;;;;;;;;;;;;;;;;;43376:42;;43271:155;;;;:::o;81369:320::-;67388:13;:11;:13::i;:::-;81456:1:::1;81445:8;:12;81437:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;81528:9;;81516:8;81500:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;81492:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;81581:9;81576:106;81600:8;81596:1;:12;81576:106;;;81630:40;81640:10;81668:1;81652:13;:11;:13::i;:::-;:17;;;;:::i;:::-;81630:9;:40::i;:::-;81610:3;;;;;;;81576:106;;;;81369:320:::0;:::o;68435:220::-;67388:13;:11;:13::i;:::-;68540:1:::1;68520:22;;:8;:22;;::::0;68516:93:::1;;68594:1;68566:31;;;;;;;;;;;:::i;:::-;;;;;;;;68516:93;68619:28;68638:8;68619:18;:28::i;:::-;68435:220:::0;:::o;79577:305::-;79647:7;79683:4;79671:8;:16;79667:208;;79711:11;79704:18;;;;79667:208;79756:4;79744:8;:16;79740:135;;79784:11;79777:18;;;;79740:135;79855:8;79835:17;;:28;;;;:::i;:::-;79828:35;;79577:305;;;;:::o;40821:::-;40923:4;40975:25;40960:40;;;:11;:40;;;;:105;;;;41032:33;41017:48;;;:11;:48;;;;40960:105;:158;;;;41082:36;41106:11;41082:23;:36::i;:::-;40960:158;40940:178;;40821:305;;;:::o;55799:247::-;55862:7;55882:13;55898:17;55907:7;55898:8;:17::i;:::-;55882:33;;55947:1;55930:19;;:5;:19;;;55926:90;;55996:7;55973:31;;;;;;;;;;;:::i;:::-;;;;;;;;55926:90;56033:5;56026:12;;;55799:247;;;:::o;45330:129::-;45400:7;45427:15;:24;45443:7;45427:24;;;;;;;;;;;;;;;;;;;;;45420:31;;45330:129;;;:::o;11558:98::-;11611:7;11638:10;11631:17;;11558:98;:::o;54031:122::-;54112:33;54121:2;54125:7;54134:4;54140;54112:8;:33::i;:::-;54031:122;;;:::o;67667:166::-;67738:12;:10;:12::i;:::-;67727:23;;:7;:5;:7::i;:::-;:23;;;67723:103;;67801:12;:10;:12::i;:::-;67774:40;;;;;;;;;;;:::i;:::-;;;;;;;;67723:103;67667:166::o;60962:640::-;61057:7;61077:21;61101:32;61115:2;61119:7;61128:4;61101:13;:32::i;:::-;61077:56;;61175:1;61150:27;;:13;:27;;;61146:214;;61194:40;61226:7;61194:31;:40::i;:::-;61146:214;;;61273:2;61256:19;;:13;:19;;;61252:108;;61292:56;61325:13;61340:7;61292:32;:56::i;:::-;61252:108;61146:214;61388:1;61374:16;;:2;:16;;;61370:192;;61407:45;61444:7;61407:36;:45::i;:::-;61370:192;;;61491:2;61474:19;;:13;:19;;;61470:92;;61510:40;61538:2;61542:7;61510:27;:40::i;:::-;61470:92;61370:192;61581:13;61574:20;;;60962:640;;;;;:::o;71438:293::-;70840:1;71572:7;;:19;71564:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;70840:1;71705:7;:18;;;;71438:293::o;73847:340::-;73957:6;73933:21;:30;73929:111;;;74022:4;73987:41;;;;;;;;;;;:::i;:::-;;;;;;;;73929:111;74053:12;74071:9;:14;;74093:6;74071:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74052:52;;;74120:7;74115:65;;74151:17;;;;;;;;;;;;;;74115:65;73918:269;73847:340;;:::o;71739:213::-;70796:1;71922:7;:22;;;;71739:213::o;68815:191::-;68889:16;68908:6;;;;;;;;;;;68889:25;;68934:8;68925:6;;:17;;;;;;;;;;;;;;;;;;68989:8;68958:40;;68979:8;68958:40;;;;;;;;;;;;68878:128;68815:191;:::o;50150:102::-;50218:26;50228:2;50232:7;50218:26;;;;;;;;;;;;:9;:26::i;:::-;50150:102;;:::o;55238:318::-;55366:1;55346:22;;:8;:22;;;55342:93;;55414:8;55392:31;;;;;;;;;;;:::i;:::-;;;;;;;;55342:93;55483:8;55445:18;:25;55464:5;55445:25;;;;;;;;;;;;;;;:35;55471:8;55445:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;55529:8;55507:41;;55522:5;55507:41;;;55539:8;55507:41;;;;;;:::i;:::-;;;;;;;;55238:318;;;:::o;56596:799::-;56730:1;56713:2;:14;;;:18;56709:679;;;56768:2;56752:36;;;56789:12;:10;:12::i;:::-;56803:4;56809:7;56818:4;56752:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;56748:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57083:1;57066:6;:13;:18;57062:300;;57138:2;57116:25;;;;;;;;;;;:::i;:::-;;;;;;;;57062:300;57312:6;57306:13;57297:6;57293:2;57289:15;57282:38;56748:629;56881:41;;;56871:51;;;:6;:51;;;;56867:132;;56976:2;56954:25;;;;;;;;;;;:::i;:::-;;;;;;;;56867:132;56824:190;56709:679;56596:799;;;;:::o;82368:113::-;82428:13;82461:12;82454:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82368:113;:::o;29374:718::-;29430:13;29481:14;29518:1;29498:17;29509:5;29498:10;:17::i;:::-;:21;29481:38;;29534:20;29568:6;29557:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29534:41;;29590:11;29719:6;29715:2;29711:15;29703:6;29699:28;29692:35;;29756:290;29763:4;29756:290;;;29788:5;;;;;;;;29930:10;29925:2;29918:5;29914:14;29909:32;29904:3;29896:46;29988:2;29979:11;;;;;;:::i;:::-;;;;;30022:1;30013:5;:10;29756:290;30009:21;29756:290;30067:6;30060:13;;;;;29374:718;;;:::o;32690:148::-;32766:4;32805:25;32790:40;;;:11;:40;;;;32783:47;;32690:148;;;:::o;45092:117::-;45158:7;45185;:16;45193:7;45185:16;;;;;;;;;;;;;;;;;;;;;45178:23;;45092:117;;;:::o;54341:678::-;54503:9;:31;;;;54532:1;54516:18;;:4;:18;;;;54503:31;54499:471;;;54551:13;54567:22;54581:7;54567:13;:22::i;:::-;54551:38;;54736:1;54720:18;;:4;:18;;;;:35;;;;;54751:4;54742:13;;:5;:13;;;;54720:35;:69;;;;;54760:29;54777:5;54784:4;54760:16;:29::i;:::-;54759:30;54720:69;54716:144;;;54839:4;54817:27;;;;;;;;;;;:::i;:::-;;;;;;;;54716:144;54880:9;54876:83;;;54935:7;54931:2;54915:28;;54924:5;54915:28;;;;;;;;;;;;54876:83;54536:434;54499:471;55009:2;54982:15;:24;54998:7;54982:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;54341:678;;;;:::o;48292:824::-;48378:7;48398:12;48413:17;48422:7;48413:8;:17::i;:::-;48398:32;;48509:1;48493:18;;:4;:18;;;48489:88;;48528:37;48545:4;48551;48557:7;48528:16;:37::i;:::-;48489:88;48640:1;48624:18;;:4;:18;;;48620:263;;48742:48;48759:1;48763:7;48780:1;48784:5;48742:8;:48::i;:::-;48855:1;48836:9;:15;48846:4;48836:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;48620:263;48913:1;48899:16;;:2;:16;;;48895:111;;48978:1;48961:9;:13;48971:2;48961:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;48895:111;49037:2;49018:7;:16;49026:7;49018:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;49076:7;49072:2;49057:27;;49066:4;49057:27;;;;;;;;;;;;49104:4;49097:11;;;48292:824;;;;;:::o;62322:164::-;62426:10;:17;;;;62399:15;:24;62415:7;62399:24;;;;;;;;;;;:44;;;;62454:10;62470:7;62454:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62322:164;:::o;63113:977::-;63379:22;63404:15;63414:4;63404:9;:15::i;:::-;63379:40;;63430:18;63451:17;:26;63469:7;63451:26;;;;;;;;;;;;63430:47;;63598:14;63584:10;:28;63580:328;;63629:19;63651:12;:18;63664:4;63651:18;;;;;;;;;;;;;;;:34;63670:14;63651:34;;;;;;;;;;;;63629:56;;63735:11;63702:12;:18;63715:4;63702:18;;;;;;;;;;;;;;;:30;63721:10;63702:30;;;;;;;;;;;:44;;;;63852:10;63819:17;:30;63837:11;63819:30;;;;;;;;;;;:43;;;;63614:294;63580:328;64004:17;:26;64022:7;64004:26;;;;;;;;;;;63997:33;;;64048:12;:18;64061:4;64048:18;;;;;;;;;;;;;;;:34;64067:14;64048:34;;;;;;;;;;;64041:41;;;63194:896;;63113:977;;:::o;64385:1079::-;64638:22;64683:1;64663:10;:17;;;;:21;;;;:::i;:::-;64638:46;;64695:18;64716:15;:24;64732:7;64716:24;;;;;;;;;;;;64695:45;;65067:19;65089:10;65100:14;65089:26;;;;;;;;:::i;:::-;;;;;;;;;;65067:48;;65153:11;65128:10;65139;65128:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;65264:10;65233:15;:28;65249:11;65233:28;;;;;;;;;;;:41;;;;65405:15;:24;65421:7;65405:24;;;;;;;;;;;65398:31;;;65440:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;64456:1008;;;64385:1079;:::o;61903:218::-;61988:14;62021:1;62005:13;62015:2;62005:9;:13::i;:::-;:17;;;;:::i;:::-;61988:34;;62060:7;62033:12;:16;62046:2;62033:16;;;;;;;;;;;;;;;:24;62050:6;62033:24;;;;;;;;;;;:34;;;;62107:6;62078:17;:26;62096:7;62078:26;;;;;;;;;;;:35;;;;61977:144;61903:218;;:::o;50479:185::-;50574:18;50580:2;50584:7;50574:5;:18::i;:::-;50603:53;50634:1;50638:2;50642:7;50651:4;50603:22;:53::i;:::-;50479:185;;;:::o;24438:948::-;24491:7;24511:14;24528:1;24511:18;;24578:8;24569:5;:17;24565:106;;24616:8;24607:17;;;;;;:::i;:::-;;;;;24653:2;24643:12;;;;24565:106;24698:8;24689:5;:17;24685:106;;24736:8;24727:17;;;;;;:::i;:::-;;;;;24773:2;24763:12;;;;24685:106;24818:8;24809:5;:17;24805:106;;24856:8;24847:17;;;;;;:::i;:::-;;;;;24893:2;24883:12;;;;24805:106;24938:7;24929:5;:16;24925:103;;24975:7;24966:16;;;;;;:::i;:::-;;;;;25011:1;25001:11;;;;24925:103;25055:7;25046:5;:16;25042:103;;25092:7;25083:16;;;;;;:::i;:::-;;;;;25128:1;25118:11;;;;25042:103;25172:7;25163:5;:16;25159:103;;25209:7;25200:16;;;;;;:::i;:::-;;;;;25245:1;25235:11;;;;25159:103;25289:7;25280:5;:16;25276:68;;25327:1;25317:11;;;;25276:68;25372:6;25365:13;;;24438:948;;;:::o;46499:376::-;46612:38;46626:5;46633:7;46642;46612:13;:38::i;:::-;46607:261;;46688:1;46671:19;;:5;:19;;;46667:190;;46741:7;46718:31;;;;;;;;;;;:::i;:::-;;;;;;;;46667:190;46824:7;46833;46797:44;;;;;;;;;;;;:::i;:::-;;;;;;;;46607:261;46499:376;;;:::o;49452:335::-;49534:1;49520:16;;:2;:16;;;49516:89;;49590:1;49560:33;;;;;;;;;;;:::i;:::-;;;;;;;;49516:89;49615:21;49639:32;49647:2;49651:7;49668:1;49639:7;:32::i;:::-;49615:56;;49711:1;49686:27;;:13;:27;;;49682:98;;49765:1;49737:31;;;;;;;;;;;:::i;:::-;;;;;;;;49682:98;49505:282;49452:335;;:::o;45779:276::-;45882:4;45938:1;45919:21;;:7;:21;;;;:128;;;;;45967:7;45958:16;;:5;:16;;;:52;;;;45978:32;45995:5;46002:7;45978:16;:32::i;:::-;45958:52;:88;;;;46039:7;46014:32;;:21;46027:7;46014:12;:21::i;:::-;:32;;;45958:88;45919:128;45899:148;;45779:276;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:118::-;2923:24;2941:5;2923:24;:::i;:::-;2918:3;2911:37;2836:118;;:::o;2960:222::-;3053:4;3091:2;3080:9;3076:18;3068:26;;3104:71;3172:1;3161:9;3157:17;3148:6;3104:71;:::i;:::-;2960:222;;;;:::o;3188:122::-;3261:24;3279:5;3261:24;:::i;:::-;3254:5;3251:35;3241:63;;3300:1;3297;3290:12;3241:63;3188:122;:::o;3316:139::-;3362:5;3400:6;3387:20;3378:29;;3416:33;3443:5;3416:33;:::i;:::-;3316:139;;;;:::o;3461:329::-;3520:6;3569:2;3557:9;3548:7;3544:23;3540:32;3537:119;;;3575:79;;:::i;:::-;3537:119;3695:1;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3666:117;3461:329;;;;:::o;3796:126::-;3833:7;3873:42;3866:5;3862:54;3851:65;;3796:126;;;:::o;3928:96::-;3965:7;3994:24;4012:5;3994:24;:::i;:::-;3983:35;;3928:96;;;:::o;4030:118::-;4117:24;4135:5;4117:24;:::i;:::-;4112:3;4105:37;4030:118;;:::o;4154:222::-;4247:4;4285:2;4274:9;4270:18;4262:26;;4298:71;4366:1;4355:9;4351:17;4342:6;4298:71;:::i;:::-;4154:222;;;;:::o;4382:122::-;4455:24;4473:5;4455:24;:::i;:::-;4448:5;4445:35;4435:63;;4494:1;4491;4484:12;4435:63;4382:122;:::o;4510:139::-;4556:5;4594:6;4581:20;4572:29;;4610:33;4637:5;4610:33;:::i;:::-;4510:139;;;;:::o;4655:474::-;4723:6;4731;4780:2;4768:9;4759:7;4755:23;4751:32;4748:119;;;4786:79;;:::i;:::-;4748:119;4906:1;4931:53;4976:7;4967:6;4956:9;4952:22;4931:53;:::i;:::-;4921:63;;4877:117;5033:2;5059:53;5104:7;5095:6;5084:9;5080:22;5059:53;:::i;:::-;5049:63;;5004:118;4655:474;;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:116::-;5830:21;5845:5;5830:21;:::i;:::-;5823:5;5820:32;5810:60;;5866:1;5863;5856:12;5810:60;5760:116;:::o;5882:133::-;5925:5;5963:6;5950:20;5941:29;;5979:30;6003:5;5979:30;:::i;:::-;5882:133;;;;:::o;6021:323::-;6077:6;6126:2;6114:9;6105:7;6101:23;6097:32;6094:119;;;6132:79;;:::i;:::-;6094:119;6252:1;6277:50;6319:7;6310:6;6299:9;6295:22;6277:50;:::i;:::-;6267:60;;6223:114;6021:323;;;;:::o;6350:117::-;6459:1;6456;6449:12;6473:117;6582:1;6579;6572:12;6596:180;6644:77;6641:1;6634:88;6741:4;6738:1;6731:15;6765:4;6762:1;6755:15;6782:281;6865:27;6887:4;6865:27;:::i;:::-;6857:6;6853:40;6995:6;6983:10;6980:22;6959:18;6947:10;6944:34;6941:62;6938:88;;;7006:18;;:::i;:::-;6938:88;7046:10;7042:2;7035:22;6825:238;6782:281;;:::o;7069:129::-;7103:6;7130:20;;:::i;:::-;7120:30;;7159:33;7187:4;7179:6;7159:33;:::i;:::-;7069:129;;;:::o;7204:308::-;7266:4;7356:18;7348:6;7345:30;7342:56;;;7378:18;;:::i;:::-;7342:56;7416:29;7438:6;7416:29;:::i;:::-;7408:37;;7500:4;7494;7490:15;7482:23;;7204:308;;;:::o;7518:148::-;7616:6;7611:3;7606;7593:30;7657:1;7648:6;7643:3;7639:16;7632:27;7518:148;;;:::o;7672:425::-;7750:5;7775:66;7791:49;7833:6;7791:49;:::i;:::-;7775:66;:::i;:::-;7766:75;;7864:6;7857:5;7850:21;7902:4;7895:5;7891:16;7940:3;7931:6;7926:3;7922:16;7919:25;7916:112;;;7947:79;;:::i;:::-;7916:112;8037:54;8084:6;8079:3;8074;8037:54;:::i;:::-;7756:341;7672:425;;;;;:::o;8117:340::-;8173:5;8222:3;8215:4;8207:6;8203:17;8199:27;8189:122;;8230:79;;:::i;:::-;8189:122;8347:6;8334:20;8372:79;8447:3;8439:6;8432:4;8424:6;8420:17;8372:79;:::i;:::-;8363:88;;8179:278;8117:340;;;;:::o;8463:509::-;8532:6;8581:2;8569:9;8560:7;8556:23;8552:32;8549:119;;;8587:79;;:::i;:::-;8549:119;8735:1;8724:9;8720:17;8707:31;8765:18;8757:6;8754:30;8751:117;;;8787:79;;:::i;:::-;8751:117;8892:63;8947:7;8938:6;8927:9;8923:22;8892:63;:::i;:::-;8882:73;;8678:287;8463:509;;;;:::o;8978:329::-;9037:6;9086:2;9074:9;9065:7;9061:23;9057:32;9054:119;;;9092:79;;:::i;:::-;9054:119;9212:1;9237:53;9282:7;9273:6;9262:9;9258:22;9237:53;:::i;:::-;9227:63;;9183:117;8978:329;;;;:::o;9313:117::-;9422:1;9419;9412:12;9436:117;9545:1;9542;9535:12;9576:568;9649:8;9659:6;9709:3;9702:4;9694:6;9690:17;9686:27;9676:122;;9717:79;;:::i;:::-;9676:122;9830:6;9817:20;9807:30;;9860:18;9852:6;9849:30;9846:117;;;9882:79;;:::i;:::-;9846:117;9996:4;9988:6;9984:17;9972:29;;10050:3;10042:4;10034:6;10030:17;10020:8;10016:32;10013:41;10010:128;;;10057:79;;:::i;:::-;10010:128;9576:568;;;;;:::o;10150:559::-;10236:6;10244;10293:2;10281:9;10272:7;10268:23;10264:32;10261:119;;;10299:79;;:::i;:::-;10261:119;10447:1;10436:9;10432:17;10419:31;10477:18;10469:6;10466:30;10463:117;;;10499:79;;:::i;:::-;10463:117;10612:80;10684:7;10675:6;10664:9;10660:22;10612:80;:::i;:::-;10594:98;;;;10390:312;10150:559;;;;;:::o;10715:468::-;10780:6;10788;10837:2;10825:9;10816:7;10812:23;10808:32;10805:119;;;10843:79;;:::i;:::-;10805:119;10963:1;10988:53;11033:7;11024:6;11013:9;11009:22;10988:53;:::i;:::-;10978:63;;10934:117;11090:2;11116:50;11158:7;11149:6;11138:9;11134:22;11116:50;:::i;:::-;11106:60;;11061:115;10715:468;;;;;:::o;11189:307::-;11250:4;11340:18;11332:6;11329:30;11326:56;;;11362:18;;:::i;:::-;11326:56;11400:29;11422:6;11400:29;:::i;:::-;11392:37;;11484:4;11478;11474:15;11466:23;;11189:307;;;:::o;11502:423::-;11579:5;11604:65;11620:48;11661:6;11620:48;:::i;:::-;11604:65;:::i;:::-;11595:74;;11692:6;11685:5;11678:21;11730:4;11723:5;11719:16;11768:3;11759:6;11754:3;11750:16;11747:25;11744:112;;;11775:79;;:::i;:::-;11744:112;11865:54;11912:6;11907:3;11902;11865:54;:::i;:::-;11585:340;11502:423;;;;;:::o;11944:338::-;11999:5;12048:3;12041:4;12033:6;12029:17;12025:27;12015:122;;12056:79;;:::i;:::-;12015:122;12173:6;12160:20;12198:78;12272:3;12264:6;12257:4;12249:6;12245:17;12198:78;:::i;:::-;12189:87;;12005:277;11944:338;;;;:::o;12288:943::-;12383:6;12391;12399;12407;12456:3;12444:9;12435:7;12431:23;12427:33;12424:120;;;12463:79;;:::i;:::-;12424:120;12583:1;12608:53;12653:7;12644:6;12633:9;12629:22;12608:53;:::i;:::-;12598:63;;12554:117;12710:2;12736:53;12781:7;12772:6;12761:9;12757:22;12736:53;:::i;:::-;12726:63;;12681:118;12838:2;12864:53;12909:7;12900:6;12889:9;12885:22;12864:53;:::i;:::-;12854:63;;12809:118;12994:2;12983:9;12979:18;12966:32;13025:18;13017:6;13014:30;13011:117;;;13047:79;;:::i;:::-;13011:117;13152:62;13206:7;13197:6;13186:9;13182:22;13152:62;:::i;:::-;13142:72;;12937:287;12288:943;;;;;;;:::o;13237:474::-;13305:6;13313;13362:2;13350:9;13341:7;13337:23;13333:32;13330:119;;;13368:79;;:::i;:::-;13330:119;13488:1;13513:53;13558:7;13549:6;13538:9;13534:22;13513:53;:::i;:::-;13503:63;;13459:117;13615:2;13641:53;13686:7;13677:6;13666:9;13662:22;13641:53;:::i;:::-;13631:63;;13586:118;13237:474;;;;;:::o;13717:180::-;13765:77;13762:1;13755:88;13862:4;13859:1;13852:15;13886:4;13883:1;13876:15;13903:320;13947:6;13984:1;13978:4;13974:12;13964:22;;14031:1;14025:4;14021:12;14052:18;14042:81;;14108:4;14100:6;14096:17;14086:27;;14042:81;14170:2;14162:6;14159:14;14139:18;14136:38;14133:84;;14189:18;;:::i;:::-;14133:84;13954:269;13903:320;;;:::o;14229:442::-;14378:4;14416:2;14405:9;14401:18;14393:26;;14429:71;14497:1;14486:9;14482:17;14473:6;14429:71;:::i;:::-;14510:72;14578:2;14567:9;14563:18;14554:6;14510:72;:::i;:::-;14592;14660:2;14649:9;14645:18;14636:6;14592:72;:::i;:::-;14229:442;;;;;;:::o;14677:332::-;14798:4;14836:2;14825:9;14821:18;14813:26;;14849:71;14917:1;14906:9;14902:17;14893:6;14849:71;:::i;:::-;14930:72;14998:2;14987:9;14983:18;14974:6;14930:72;:::i;:::-;14677:332;;;;;:::o;15015:180::-;15063:77;15060:1;15053:88;15160:4;15157:1;15150:15;15184:4;15181:1;15174:15;15201:141;15250:4;15273:3;15265:11;;15296:3;15293:1;15286:14;15330:4;15327:1;15317:18;15309:26;;15201:141;;;:::o;15348:93::-;15385:6;15432:2;15427;15420:5;15416:14;15412:23;15402:33;;15348:93;;;:::o;15447:107::-;15491:8;15541:5;15535:4;15531:16;15510:37;;15447:107;;;;:::o;15560:393::-;15629:6;15679:1;15667:10;15663:18;15702:97;15732:66;15721:9;15702:97;:::i;:::-;15820:39;15850:8;15839:9;15820:39;:::i;:::-;15808:51;;15892:4;15888:9;15881:5;15877:21;15868:30;;15941:4;15931:8;15927:19;15920:5;15917:30;15907:40;;15636:317;;15560:393;;;;;:::o;15959:60::-;15987:3;16008:5;16001:12;;15959:60;;;:::o;16025:142::-;16075:9;16108:53;16126:34;16135:24;16153:5;16135:24;:::i;:::-;16126:34;:::i;:::-;16108:53;:::i;:::-;16095:66;;16025:142;;;:::o;16173:75::-;16216:3;16237:5;16230:12;;16173:75;;;:::o;16254:269::-;16364:39;16395:7;16364:39;:::i;:::-;16425:91;16474:41;16498:16;16474:41;:::i;:::-;16466:6;16459:4;16453:11;16425:91;:::i;:::-;16419:4;16412:105;16330:193;16254:269;;;:::o;16529:73::-;16574:3;16529:73;:::o;16608:189::-;16685:32;;:::i;:::-;16726:65;16784:6;16776;16770:4;16726:65;:::i;:::-;16661:136;16608:189;;:::o;16803:186::-;16863:120;16880:3;16873:5;16870:14;16863:120;;;16934:39;16971:1;16964:5;16934:39;:::i;:::-;16907:1;16900:5;16896:13;16887:22;;16863:120;;;16803:186;;:::o;16995:543::-;17096:2;17091:3;17088:11;17085:446;;;17130:38;17162:5;17130:38;:::i;:::-;17214:29;17232:10;17214:29;:::i;:::-;17204:8;17200:44;17397:2;17385:10;17382:18;17379:49;;;17418:8;17403:23;;17379:49;17441:80;17497:22;17515:3;17497:22;:::i;:::-;17487:8;17483:37;17470:11;17441:80;:::i;:::-;17100:431;;17085:446;16995:543;;;:::o;17544:117::-;17598:8;17648:5;17642:4;17638:16;17617:37;;17544:117;;;;:::o;17667:169::-;17711:6;17744:51;17792:1;17788:6;17780:5;17777:1;17773:13;17744:51;:::i;:::-;17740:56;17825:4;17819;17815:15;17805:25;;17718:118;17667:169;;;;:::o;17841:295::-;17917:4;18063:29;18088:3;18082:4;18063:29;:::i;:::-;18055:37;;18125:3;18122:1;18118:11;18112:4;18109:21;18101:29;;17841:295;;;;:::o;18141:1395::-;18258:37;18291:3;18258:37;:::i;:::-;18360:18;18352:6;18349:30;18346:56;;;18382:18;;:::i;:::-;18346:56;18426:38;18458:4;18452:11;18426:38;:::i;:::-;18511:67;18571:6;18563;18557:4;18511:67;:::i;:::-;18605:1;18629:4;18616:17;;18661:2;18653:6;18650:14;18678:1;18673:618;;;;19335:1;19352:6;19349:77;;;19401:9;19396:3;19392:19;19386:26;19377:35;;19349:77;19452:67;19512:6;19505:5;19452:67;:::i;:::-;19446:4;19439:81;19308:222;18643:887;;18673:618;18725:4;18721:9;18713:6;18709:22;18759:37;18791:4;18759:37;:::i;:::-;18818:1;18832:208;18846:7;18843:1;18840:14;18832:208;;;18925:9;18920:3;18916:19;18910:26;18902:6;18895:42;18976:1;18968:6;18964:14;18954:24;;19023:2;19012:9;19008:18;18995:31;;18869:4;18866:1;18862:12;18857:17;;18832:208;;;19068:6;19059:7;19056:19;19053:179;;;19126:9;19121:3;19117:19;19111:26;19169:48;19211:4;19203:6;19199:17;19188:9;19169:48;:::i;:::-;19161:6;19154:64;19076:156;19053:179;19278:1;19274;19266:6;19262:14;19258:22;19252:4;19245:36;18680:611;;;18643:887;;18233:1303;;;18141:1395;;:::o;19542:173::-;19682:25;19678:1;19670:6;19666:14;19659:49;19542:173;:::o;19721:366::-;19863:3;19884:67;19948:2;19943:3;19884:67;:::i;:::-;19877:74;;19960:93;20049:3;19960:93;:::i;:::-;20078:2;20073:3;20069:12;20062:19;;19721:366;;;:::o;20093:419::-;20259:4;20297:2;20286:9;20282:18;20274:26;;20346:9;20340:4;20336:20;20332:1;20321:9;20317:17;20310:47;20374:131;20500:4;20374:131;:::i;:::-;20366:139;;20093:419;;;:::o;20518:180::-;20566:77;20563:1;20556:88;20663:4;20660:1;20653:15;20687:4;20684:1;20677:15;20704:191;20744:3;20763:20;20781:1;20763:20;:::i;:::-;20758:25;;20797:20;20815:1;20797:20;:::i;:::-;20792:25;;20840:1;20837;20833:9;20826:16;;20861:3;20858:1;20855:10;20852:36;;;20868:18;;:::i;:::-;20852:36;20704:191;;;;:::o;20901:174::-;21041:26;21037:1;21029:6;21025:14;21018:50;20901:174;:::o;21081:366::-;21223:3;21244:67;21308:2;21303:3;21244:67;:::i;:::-;21237:74;;21320:93;21409:3;21320:93;:::i;:::-;21438:2;21433:3;21429:12;21422:19;;21081:366;;;:::o;21453:419::-;21619:4;21657:2;21646:9;21642:18;21634:26;;21706:9;21700:4;21696:20;21692:1;21681:9;21677:17;21670:47;21734:131;21860:4;21734:131;:::i;:::-;21726:139;;21453:419;;;:::o;21878:410::-;21918:7;21941:20;21959:1;21941:20;:::i;:::-;21936:25;;21975:20;21993:1;21975:20;:::i;:::-;21970:25;;22030:1;22027;22023:9;22052:30;22070:11;22052:30;:::i;:::-;22041:41;;22231:1;22222:7;22218:15;22215:1;22212:22;22192:1;22185:9;22165:83;22142:139;;22261:18;;:::i;:::-;22142:139;21926:362;21878:410;;;;:::o;22294:174::-;22434:26;22430:1;22422:6;22418:14;22411:50;22294:174;:::o;22474:366::-;22616:3;22637:67;22701:2;22696:3;22637:67;:::i;:::-;22630:74;;22713:93;22802:3;22713:93;:::i;:::-;22831:2;22826:3;22822:12;22815:19;;22474:366;;;:::o;22846:419::-;23012:4;23050:2;23039:9;23035:18;23027:26;;23099:9;23093:4;23089:20;23085:1;23074:9;23070:17;23063:47;23127:131;23253:4;23127:131;:::i;:::-;23119:139;;22846:419;;;:::o;23271:221::-;23411:34;23407:1;23399:6;23395:14;23388:58;23480:4;23475:2;23467:6;23463:15;23456:29;23271:221;:::o;23498:366::-;23640:3;23661:67;23725:2;23720:3;23661:67;:::i;:::-;23654:74;;23737:93;23826:3;23737:93;:::i;:::-;23855:2;23850:3;23846:12;23839:19;;23498:366;;;:::o;23870:419::-;24036:4;24074:2;24063:9;24059:18;24051:26;;24123:9;24117:4;24113:20;24109:1;24098:9;24094:17;24087:47;24151:131;24277:4;24151:131;:::i;:::-;24143:139;;23870:419;;;:::o;24295:234::-;24435:34;24431:1;24423:6;24419:14;24412:58;24504:17;24499:2;24491:6;24487:15;24480:42;24295:234;:::o;24535:366::-;24677:3;24698:67;24762:2;24757:3;24698:67;:::i;:::-;24691:74;;24774:93;24863:3;24774:93;:::i;:::-;24892:2;24887:3;24883:12;24876:19;;24535:366;;;:::o;24907:419::-;25073:4;25111:2;25100:9;25096:18;25088:26;;25160:9;25154:4;25150:20;25146:1;25135:9;25131:17;25124:47;25188:131;25314:4;25188:131;:::i;:::-;25180:139;;24907:419;;;:::o;25332:148::-;25434:11;25471:3;25456:18;;25332:148;;;;:::o;25486:390::-;25592:3;25620:39;25653:5;25620:39;:::i;:::-;25675:89;25757:6;25752:3;25675:89;:::i;:::-;25668:96;;25773:65;25831:6;25826:3;25819:4;25812:5;25808:16;25773:65;:::i;:::-;25863:6;25858:3;25854:16;25847:23;;25596:280;25486:390;;;;:::o;25882:151::-;26022:3;26018:1;26010:6;26006:14;25999:27;25882:151;:::o;26039:400::-;26199:3;26220:84;26302:1;26297:3;26220:84;:::i;:::-;26213:91;;26313:93;26402:3;26313:93;:::i;:::-;26431:1;26426:3;26422:11;26415:18;;26039:400;;;:::o;26445:155::-;26585:7;26581:1;26573:6;26569:14;26562:31;26445:155;:::o;26606:400::-;26766:3;26787:84;26869:1;26864:3;26787:84;:::i;:::-;26780:91;;26880:93;26969:3;26880:93;:::i;:::-;26998:1;26993:3;26989:11;26982:18;;26606:400;;;:::o;27012:967::-;27394:3;27416:95;27507:3;27498:6;27416:95;:::i;:::-;27409:102;;27528:148;27672:3;27528:148;:::i;:::-;27521:155;;27693:95;27784:3;27775:6;27693:95;:::i;:::-;27686:102;;27805:148;27949:3;27805:148;:::i;:::-;27798:155;;27970:3;27963:10;;27012:967;;;;;:::o;27985:169::-;28125:21;28121:1;28113:6;28109:14;28102:45;27985:169;:::o;28160:366::-;28302:3;28323:67;28387:2;28382:3;28323:67;:::i;:::-;28316:74;;28399:93;28488:3;28399:93;:::i;:::-;28517:2;28512:3;28508:12;28501:19;;28160:366;;;:::o;28532:419::-;28698:4;28736:2;28725:9;28721:18;28713:26;;28785:9;28779:4;28775:20;28771:1;28760:9;28756:17;28749:47;28813:131;28939:4;28813:131;:::i;:::-;28805:139;;28532:419;;;:::o;28957:173::-;29097:25;29093:1;29085:6;29081:14;29074:49;28957:173;:::o;29136:366::-;29278:3;29299:67;29363:2;29358:3;29299:67;:::i;:::-;29292:74;;29375:93;29464:3;29375:93;:::i;:::-;29493:2;29488:3;29484:12;29477:19;;29136:366;;;:::o;29508:419::-;29674:4;29712:2;29701:9;29697:18;29689:26;;29761:9;29755:4;29751:20;29747:1;29736:9;29732:17;29725:47;29789:131;29915:4;29789:131;:::i;:::-;29781:139;;29508:419;;;:::o;29933:181::-;30073:33;30069:1;30061:6;30057:14;30050:57;29933:181;:::o;30120:366::-;30262:3;30283:67;30347:2;30342:3;30283:67;:::i;:::-;30276:74;;30359:93;30448:3;30359:93;:::i;:::-;30477:2;30472:3;30468:12;30461:19;;30120:366;;;:::o;30492:419::-;30658:4;30696:2;30685:9;30681:18;30673:26;;30745:9;30739:4;30735:20;30731:1;30720:9;30716:17;30709:47;30773:131;30899:4;30773:131;:::i;:::-;30765:139;;30492:419;;;:::o;30917:147::-;31018:11;31055:3;31040:18;;30917:147;;;;:::o;31070:114::-;;:::o;31190:398::-;31349:3;31370:83;31451:1;31446:3;31370:83;:::i;:::-;31363:90;;31462:93;31551:3;31462:93;:::i;:::-;31580:1;31575:3;31571:11;31564:18;;31190:398;;;:::o;31594:379::-;31778:3;31800:147;31943:3;31800:147;:::i;:::-;31793:154;;31964:3;31957:10;;31594:379;;;:::o;31979:98::-;32030:6;32064:5;32058:12;32048:22;;31979:98;;;:::o;32083:168::-;32166:11;32200:6;32195:3;32188:19;32240:4;32235:3;32231:14;32216:29;;32083:168;;;;:::o;32257:373::-;32343:3;32371:38;32403:5;32371:38;:::i;:::-;32425:70;32488:6;32483:3;32425:70;:::i;:::-;32418:77;;32504:65;32562:6;32557:3;32550:4;32543:5;32539:16;32504:65;:::i;:::-;32594:29;32616:6;32594:29;:::i;:::-;32589:3;32585:39;32578:46;;32347:283;32257:373;;;;:::o;32636:640::-;32831:4;32869:3;32858:9;32854:19;32846:27;;32883:71;32951:1;32940:9;32936:17;32927:6;32883:71;:::i;:::-;32964:72;33032:2;33021:9;33017:18;33008:6;32964:72;:::i;:::-;33046;33114:2;33103:9;33099:18;33090:6;33046:72;:::i;:::-;33165:9;33159:4;33155:20;33150:2;33139:9;33135:18;33128:48;33193:76;33264:4;33255:6;33193:76;:::i;:::-;33185:84;;32636:640;;;;;;;:::o;33282:141::-;33338:5;33369:6;33363:13;33354:22;;33385:32;33411:5;33385:32;:::i;:::-;33282:141;;;;:::o;33429:349::-;33498:6;33547:2;33535:9;33526:7;33522:23;33518:32;33515:119;;;33553:79;;:::i;:::-;33515:119;33673:1;33698:63;33753:7;33744:6;33733:9;33729:22;33698:63;:::i;:::-;33688:73;;33644:127;33429:349;;;;:::o;33784:180::-;33832:77;33829:1;33822:88;33929:4;33926:1;33919:15;33953:4;33950:1;33943:15;33970:194;34010:4;34030:20;34048:1;34030:20;:::i;:::-;34025:25;;34064:20;34082:1;34064:20;:::i;:::-;34059:25;;34108:1;34105;34101:9;34093:17;;34132:1;34126:4;34123:11;34120:37;;;34137:18;;:::i;:::-;34120:37;33970:194;;;;:::o;34170:180::-;34218:77;34215:1;34208:88;34315:4;34312:1;34305:15;34339:4;34336:1;34329:15

Swarm Source

ipfs://501b5e1581387f7880260b530af5293537cf1ce55529e261f91bf8f9cd3f689c
[ 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.