APE Price: $1.06 (-13.48%)

Token

Aped EGGs (AEE)

Overview

Max Total Supply

1,020 AEE

Holders

134

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Balance
10 AEE
0xC667F1792CED53027F8c93ecbe6519CDbaeB5767
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
AEGGS

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-24
*/

// SPDX-License-Identifier: MIT

// 🅼🅸🅽🆃 🅿🆁🅸🅲🅴: 1 $🅰🅿🅴

//APED EGGS JUST LANDED ON APECHAIN!

// 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 AEGGS is ERC721Enumerable, Ownable, ReentrancyGuard {
    using Address for address;
    using Strings for uint256;

    string public baseTokenURI = "ipfs://QmZsgxFfkPmRxKzZ8yZbH1nLPWJgiAZ6xHZeD1fYqDpX43";
    uint256 public maxSupply = 2222;
    uint256 public MAX_MINTS_PER_TX = 300;
    uint256 public PUBLIC_SALE_PRICE = 1 ether;
    uint256 public WHITELIST_SALE_PRICE = 0 ether;
    uint256 public NUM_FREE_MINTS = 500;
    uint256 public MAX_FREE_PER_WALLET = 1;
    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 EGGs", "AEE") Ownable(msg.sender) {}

    function calculateMintingPrice(uint256 quantity) public view returns (uint256) {
        if (quantity == 10) {
            return 10 ether;
        } else if (quantity == 100) {
            return 100 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"}]

608060405260405180606001604052806035815260200161451b60359139600c908161002b9190610495565b506108ae600d5561012c600e55670de0b6b3a7640000600f555f6010556101f460115560016012555f601355600160145f6101000a81548160ff02191690831515021790555034801561007c575f80fd5b50336040518060400160405280600981526020017f41706564204547477300000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4145450000000000000000000000000000000000000000000000000000000000815250815f90816100f89190610495565b5080600190816101089190610495565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361017b575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161017291906105a3565b60405180910390fd5b61018a8161019860201b60201c565b506001600b819055506105bc565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806102d657607f821691505b6020821081036102e9576102e8610292565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261034b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610310565b6103558683610310565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61039961039461038f8461036d565b610376565b61036d565b9050919050565b5f819050919050565b6103b28361037f565b6103c66103be826103a0565b84845461031c565b825550505050565b5f90565b6103da6103ce565b6103e58184846103a9565b505050565b5b81811015610408576103fd5f826103d2565b6001810190506103eb565b5050565b601f82111561044d5761041e816102ef565b61042784610301565b81016020851015610436578190505b61044a61044285610301565b8301826103ea565b50505b505050565b5f82821c905092915050565b5f61046d5f1984600802610452565b1980831691505092915050565b5f610485838361045e565b9150826002028217905092915050565b61049e8261025b565b67ffffffffffffffff8111156104b7576104b6610265565b5b6104c182546102bf565b6104cc82828561040c565b5f60209050601f8311600181146104fd575f84156104eb578287015190505b6104f5858261047a565b86555061055c565b601f19841661050b866102ef565b5f5b828110156105325784890151825560018201915060208501945060208101905061050d565b8683101561054f578489015161054b601f89168261045e565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61058d82610564565b9050919050565b61059d81610583565b82525050565b5f6020820190506105b65f830184610594565b92915050565b613f52806105c95f395ff3fe608060405260043610610266575f3560e01c8063715018a611610143578063b88d4fde116100b5578063d5abeb0111610079578063d5abeb01146108e2578063e43252d71461090c578063e985e9c514610934578063efdc778814610970578063f2fde38b14610998578063f6511f93146109c057610266565b8063b88d4fde14610800578063bc912e1a14610828578063c6a91b4214610852578063c87b56dd1461087c578063d547cfb7146108b857610266565b8063982d669e11610107578063982d669e1461070457806398710d1e1461072e5780639b19251a146107585780639e9fcffc14610794578063a0712d68146107bc578063a22cb465146107d857610266565b8063715018a61461064a5780638401f8d1146106605780638ab1d681146106885780638da5cb5b146106b057806395d89b41146106da57610266565b806323b872dd116101dc57806342842e0e116101a057806342842e0e1461051e5780634f6ccce71461054657806355f804b3146105825780636352211e146105aa5780636f8b44b0146105e657806370a082311461060e57610266565b806323b872dd1461045457806328cad13d1461047c5780632f745c59146104a45780633515fbdb146104e05780633ccfd60b1461050857610266565b80630a00ae831161022e5780630a00ae831461035e57806318160ddd146103865780631919fed7146103b0578063193ad7b4146103d85780631e84c41314610402578063202f298a1461042c57610266565b806301ffc9a71461026a57806306fdde03146102a657806307e89ec0146102d0578063081812fc146102fa578063095ea7b314610336575b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b9190612e34565b6109fc565b60405161029d9190612e79565b60405180910390f35b3480156102b1575f80fd5b506102ba610a75565b6040516102c79190612f02565b60405180910390f35b3480156102db575f80fd5b506102e4610b04565b6040516102f19190612f3a565b60405180910390f35b348015610305575f80fd5b50610320600480360381019061031b9190612f7d565b610b0a565b60405161032d9190612fe7565b60405180910390f35b348015610341575f80fd5b5061035c6004803603810190610357919061302a565b610b25565b005b348015610369575f80fd5b50610384600480360381019061037f9190612f7d565b610b3b565b005b348015610391575f80fd5b5061039a610b4d565b6040516103a79190612f3a565b60405180910390f35b3480156103bb575f80fd5b506103d660048036038101906103d19190612f7d565b610b59565b005b3480156103e3575f80fd5b506103ec610b6b565b6040516103f99190612f3a565b60405180910390f35b34801561040d575f80fd5b50610416610b71565b6040516104239190612e79565b60405180910390f35b348015610437575f80fd5b50610452600480360381019061044d9190612f7d565b610b83565b005b34801561045f575f80fd5b5061047a60048036038101906104759190613068565b610b95565b005b348015610487575f80fd5b506104a2600480360381019061049d91906130e2565b610c94565b005b3480156104af575f80fd5b506104ca60048036038101906104c5919061302a565b610cb8565b6040516104d79190612f3a565b60405180910390f35b3480156104eb575f80fd5b5061050660048036038101906105019190612f7d565b610d5c565b005b348015610513575f80fd5b5061051c610d6e565b005b348015610529575f80fd5b50610544600480360381019061053f9190613068565b610d92565b005b348015610551575f80fd5b5061056c60048036038101906105679190612f7d565b610db1565b6040516105799190612f3a565b60405180910390f35b34801561058d575f80fd5b506105a860048036038101906105a39190613239565b610e23565b005b3480156105b5575f80fd5b506105d060048036038101906105cb9190612f7d565b610e3e565b6040516105dd9190612fe7565b60405180910390f35b3480156105f1575f80fd5b5061060c60048036038101906106079190612f7d565b610e4f565b005b348015610619575f80fd5b50610634600480360381019061062f9190613280565b610e61565b6040516106419190612f3a565b60405180910390f35b348015610655575f80fd5b5061065e610f17565b005b34801561066b575f80fd5b5061068660048036038101906106819190613308565b610f2a565b005b348015610693575f80fd5b506106ae60048036038101906106a99190613280565b610fcd565b005b3480156106bb575f80fd5b506106c461102c565b6040516106d19190612fe7565b60405180910390f35b3480156106e5575f80fd5b506106ee611054565b6040516106fb9190612f02565b60405180910390f35b34801561070f575f80fd5b506107186110e4565b6040516107259190612f3a565b60405180910390f35b348015610739575f80fd5b506107426110ea565b60405161074f9190612f3a565b60405180910390f35b348015610763575f80fd5b5061077e60048036038101906107799190613280565b6110f0565b60405161078b9190612e79565b60405180910390f35b34801561079f575f80fd5b506107ba60048036038101906107b59190612f7d565b61110d565b005b6107d660048036038101906107d19190612f7d565b61111f565b005b3480156107e3575f80fd5b506107fe60048036038101906107f99190613353565b611482565b005b34801561080b575f80fd5b506108266004803603810190610821919061342f565b611498565b005b348015610833575f80fd5b5061083c6114b5565b6040516108499190612f3a565b60405180910390f35b34801561085d575f80fd5b506108666114bb565b6040516108739190612f3a565b60405180910390f35b348015610887575f80fd5b506108a2600480360381019061089d9190612f7d565b6114c1565b6040516108af9190612f02565b60405180910390f35b3480156108c3575f80fd5b506108cc611598565b6040516108d99190612f02565b60405180910390f35b3480156108ed575f80fd5b506108f6611624565b6040516109039190612f3a565b60405180910390f35b348015610917575f80fd5b50610932600480360381019061092d9190613280565b61162a565b005b34801561093f575f80fd5b5061095a600480360381019061095591906134af565b61168a565b6040516109679190612e79565b60405180910390f35b34801561097b575f80fd5b5061099660048036038101906109919190612f7d565b611718565b005b3480156109a3575f80fd5b506109be60048036038101906109b99190613280565b6117f1565b005b3480156109cb575f80fd5b506109e660048036038101906109e19190612f7d565b611875565b6040516109f39190612f3a565b60405180910390f35b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6e5750610a6d826118bd565b5b9050919050565b60605f8054610a839061351a565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf9061351a565b8015610afa5780601f10610ad157610100808354040283529160200191610afa565b820191905f5260205f20905b815481529060010190602001808311610add57829003601f168201915b5050505050905090565b600f5481565b5f610b148261199e565b50610b1e82611a24565b9050919050565b610b378282610b32611a5d565b611a64565b5050565b610b43611a76565b8060118190555050565b5f600880549050905090565b610b61611a76565b80600f8190555050565b60135481565b60145f9054906101000a900460ff1681565b610b8b611a76565b8060128190555050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c05575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610bfc9190612fe7565b60405180910390fd5b5f610c188383610c13611a5d565b611afd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c8e578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610c859392919061354a565b60405180910390fd5b50505050565b610c9c611a76565b8060145f6101000a81548160ff02191690831515021790555050565b5f610cc283610e61565b8210610d075782826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610cfe92919061357f565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b610d64611a76565b8060108190555050565b610d76611a76565b610d7e611c17565b610d883347611c66565b610d90611d4f565b565b610dac83838360405180602001604052805f815250611498565b505050565b5f610dba610b4d565b8210610dff575f826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610df692919061357f565b60405180910390fd5b60088281548110610e1357610e126135a6565b5b905f5260205f2001549050919050565b610e2b611a76565b80600c9081610e3a9190613770565b5050565b5f610e488261199e565b9050919050565b610e57611a76565b80600d8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed2575f6040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610ec99190612fe7565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f1f611a76565b610f285f611d59565b565b610f32611a76565b5f5b82829050811015610fc857600160155f858585818110610f5757610f566135a6565b5b9050602002016020810190610f6c9190613280565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610f34565b505050565b610fd5611a76565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110639061351a565b80601f016020809104026020016040519081016040528092919081815260200182805461108f9061351a565b80156110da5780601f106110b1576101008083540402835291602001916110da565b820191905f5260205f20905b8154815290600101906020018083116110bd57829003601f168201915b5050505050905090565b60115481565b60125481565b6015602052805f5260405f205f915054906101000a900460ff1681565b611115611a76565b80600e8190555050565b611127611c17565b60145f9054906101000a900460ff16611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c90613889565b60405180910390fd5b600d5481611181610b4d565b61118b91906138d4565b11156111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390613951565b60405180910390fd5b5f6111d682611875565b905060155f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156112385781601054611235919061396f565b90505b5f738018ef1762ed7ce9e57356fb0017606dc2b3af1590506011548360135461126191906138d4565b11156112f357348211156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a1906139fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156112ed573d5f803e3d5ffd5b50611440565b6012548361130033610e61565b61130a91906138d4565b11156113e15734821115611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a906139fa565b60405180910390fd5b600e54831115611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90613a88565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156113db573d5f803e3d5ffd5b5061143f565b601254831115611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613a88565b60405180910390fd5b8260135f82825461143791906138d4565b925050819055505b5b5f5b8381101561147457611467336001611458610b4d565b61146291906138d4565b611e1c565b8080600101915050611442565b50505061147f611d4f565b50565b61149461148d611a5d565b8383611e39565b5050565b6114a3848484610b95565b6114af84848484611fa2565b50505050565b60105481565b600e5481565b60605f6114cd83610e3e565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613b16565b60405180910390fd5b5f611546612154565b90505f8151116115645760405180602001604052805f81525061158f565b8061156e856121e4565b60405160200161157f929190613c02565b6040516020818303038152906040525b92505050919050565b600c80546115a59061351a565b80601f01602080910402602001604051908101604052809291908181526020018280546115d19061351a565b801561161c5780601f106115f35761010080835404028352916020019161161c565b820191905f5260205f20905b8154815290600101906020018083116115ff57829003601f168201915b505050505081565b600d5481565b611632611a76565b600160155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611720611a76565b5f8111611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613c85565b60405180910390fd5b600d548161176e610b4d565b61177891906138d4565b11156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613ced565b60405180910390fd5b5f5b818110156117ed576117e03360016117d1610b4d565b6117db91906138d4565b611e1c565b80806001019150506117bb565b5050565b6117f9611a76565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611869575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016118609190612fe7565b60405180910390fd5b61187281611d59565b50565b5f600a820361188e57678ac7230489e8000090506118b8565b606482036118a75768056bc75e2d6310000090506118b8565b81600f546118b5919061396f565b90505b919050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061198757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119975750611996826122ae565b5b9050919050565b5f806119a983612317565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a1b57826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401611a129190612f3a565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b611a718383836001612350565b505050565b611a7e611a5d565b73ffffffffffffffffffffffffffffffffffffffff16611a9c61102c565b73ffffffffffffffffffffffffffffffffffffffff1614611afb57611abf611a5d565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611af29190612fe7565b60405180910390fd5b565b5f80611b0a85858561250f565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b4d57611b488461271a565b611b8c565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b8b57611b8a818561275e565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611bcd57611bc8846128a8565b611c0c565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c0b57611c0a8585612968565b5b5b809150509392505050565b6002600b5403611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5390613d55565b60405180910390fd5b6002600b81905550565b80471015611cab57306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401611ca29190612fe7565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051611cd090613da0565b5f6040518083038185875af1925050503d805f8114611d0a576040519150601f19603f3d011682016040523d82523d5f602084013e611d0f565b606091505b5050905080611d4a576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b6001600b81905550565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e35828260405180602001604052805f8152506129ec565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ea957816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401611ea09190612fe7565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f959190612e79565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b111561214e578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe5611a5d565b8685856040518563ffffffff1660e01b81526004016120079493929190613e06565b6020604051808303815f875af192505050801561204257506040513d601f19601f8201168201806040525081019061203f9190613e64565b60015b6120c3573d805f8114612070576040519150601f19603f3d011682016040523d82523d5f602084013e612075565b606091505b505f8151036120bb57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016120b29190612fe7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461214c57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016121439190612fe7565b60405180910390fd5b505b50505050565b6060600c80546121639061351a565b80601f016020809104026020016040519081016040528092919081815260200182805461218f9061351a565b80156121da5780601f106121b1576101008083540402835291602001916121da565b820191905f5260205f20905b8154815290600101906020018083116121bd57829003601f168201915b5050505050905090565b60605f60016121f284612a07565b0190505f8167ffffffffffffffff8111156122105761220f613115565b5b6040519080825280601f01601f1916602001820160405280156122425781602001600182028036833780820191505090505b5090505f82602001820190505b6001156122a3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161229857612297613e8f565b5b0494505f850361224f575b819350505050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b808061238857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156124ba575f6123978461199e565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561240157508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156124145750612412818461168a565b155b1561245657826040517fa9fbf51f00000000000000000000000000000000000000000000000000000000815260040161244d9190612fe7565b60405180910390fd5b81156124b857838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b5f8061251a84612317565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461255b5761255a818486612b58565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146125e65761259a5f855f80612350565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461266557600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f61276883610e61565b90505f60075f8481526020019081526020015f2054905081811461283f575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f60016008805490506128bb9190613ebc565b90505f60095f8481526020019081526020015f205490505f600883815481106128e7576128e66135a6565b5b905f5260205f20015490508060088381548110612907576129066135a6565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f9055600880548061294f5761294e613eef565b5b600190038181905f5260205f20015f9055905550505050565b5f600161297484610e61565b61297e9190613ebc565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b6129f68383612c1b565b612a025f848484611fa2565b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a63577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a5957612a58613e8f565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612aa0576d04ee2d6d415b85acef81000000008381612a9657612a95613e8f565b5b0492506020810190505b662386f26fc100008310612acf57662386f26fc100008381612ac557612ac4613e8f565b5b0492506010810190505b6305f5e1008310612af8576305f5e1008381612aee57612aed613e8f565b5b0492506008810190505b6127108310612b1d576127108381612b1357612b12613e8f565b5b0492506004810190505b60648310612b405760648381612b3657612b35613e8f565b5b0492506002810190505b600a8310612b4f576001810190505b80915050919050565b612b63838383612d0e565b612c16575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bd757806040517f7e273289000000000000000000000000000000000000000000000000000000008152600401612bce9190612f3a565b60405180910390fd5b81816040517f177e802f000000000000000000000000000000000000000000000000000000008152600401612c0d92919061357f565b60405180910390fd5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c8b575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401612c829190612fe7565b60405180910390fd5b5f612c9783835f611afd565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612d09575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401612d009190612fe7565b60405180910390fd5b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dc557508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d865750612d85848461168a565b5b80612dc457508273ffffffffffffffffffffffffffffffffffffffff16612dac83611a24565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e1381612ddf565b8114612e1d575f80fd5b50565b5f81359050612e2e81612e0a565b92915050565b5f60208284031215612e4957612e48612dd7565b5b5f612e5684828501612e20565b91505092915050565b5f8115159050919050565b612e7381612e5f565b82525050565b5f602082019050612e8c5f830184612e6a565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612ed482612e92565b612ede8185612e9c565b9350612eee818560208601612eac565b612ef781612eba565b840191505092915050565b5f6020820190508181035f830152612f1a8184612eca565b905092915050565b5f819050919050565b612f3481612f22565b82525050565b5f602082019050612f4d5f830184612f2b565b92915050565b612f5c81612f22565b8114612f66575f80fd5b50565b5f81359050612f7781612f53565b92915050565b5f60208284031215612f9257612f91612dd7565b5b5f612f9f84828501612f69565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612fd182612fa8565b9050919050565b612fe181612fc7565b82525050565b5f602082019050612ffa5f830184612fd8565b92915050565b61300981612fc7565b8114613013575f80fd5b50565b5f8135905061302481613000565b92915050565b5f80604083850312156130405761303f612dd7565b5b5f61304d85828601613016565b925050602061305e85828601612f69565b9150509250929050565b5f805f6060848603121561307f5761307e612dd7565b5b5f61308c86828701613016565b935050602061309d86828701613016565b92505060406130ae86828701612f69565b9150509250925092565b6130c181612e5f565b81146130cb575f80fd5b50565b5f813590506130dc816130b8565b92915050565b5f602082840312156130f7576130f6612dd7565b5b5f613104848285016130ce565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61314b82612eba565b810181811067ffffffffffffffff8211171561316a57613169613115565b5b80604052505050565b5f61317c612dce565b90506131888282613142565b919050565b5f67ffffffffffffffff8211156131a7576131a6613115565b5b6131b082612eba565b9050602081019050919050565b828183375f83830152505050565b5f6131dd6131d88461318d565b613173565b9050828152602081018484840111156131f9576131f8613111565b5b6132048482856131bd565b509392505050565b5f82601f8301126132205761321f61310d565b5b81356132308482602086016131cb565b91505092915050565b5f6020828403121561324e5761324d612dd7565b5b5f82013567ffffffffffffffff81111561326b5761326a612ddb565b5b6132778482850161320c565b91505092915050565b5f6020828403121561329557613294612dd7565b5b5f6132a284828501613016565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126132c8576132c761310d565b5b8235905067ffffffffffffffff8111156132e5576132e46132ab565b5b602083019150836020820283011115613301576133006132af565b5b9250929050565b5f806020838503121561331e5761331d612dd7565b5b5f83013567ffffffffffffffff81111561333b5761333a612ddb565b5b613347858286016132b3565b92509250509250929050565b5f806040838503121561336957613368612dd7565b5b5f61337685828601613016565b9250506020613387858286016130ce565b9150509250929050565b5f67ffffffffffffffff8211156133ab576133aa613115565b5b6133b482612eba565b9050602081019050919050565b5f6133d36133ce84613391565b613173565b9050828152602081018484840111156133ef576133ee613111565b5b6133fa8482856131bd565b509392505050565b5f82601f8301126134165761341561310d565b5b81356134268482602086016133c1565b91505092915050565b5f805f806080858703121561344757613446612dd7565b5b5f61345487828801613016565b945050602061346587828801613016565b935050604061347687828801612f69565b925050606085013567ffffffffffffffff81111561349757613496612ddb565b5b6134a387828801613402565b91505092959194509250565b5f80604083850312156134c5576134c4612dd7565b5b5f6134d285828601613016565b92505060206134e385828601613016565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061353157607f821691505b602082108103613544576135436134ed565b5b50919050565b5f60608201905061355d5f830186612fd8565b61356a6020830185612f2b565b6135776040830184612fd8565b949350505050565b5f6040820190506135925f830185612fd8565b61359f6020830184612f2b565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261362f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135f4565b61363986836135f4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61367461366f61366a84612f22565b613651565b612f22565b9050919050565b5f819050919050565b61368d8361365a565b6136a16136998261367b565b848454613600565b825550505050565b5f90565b6136b56136a9565b6136c0818484613684565b505050565b5b818110156136e3576136d85f826136ad565b6001810190506136c6565b5050565b601f821115613728576136f9816135d3565b613702846135e5565b81016020851015613711578190505b61372561371d856135e5565b8301826136c5565b50505b505050565b5f82821c905092915050565b5f6137485f198460080261372d565b1980831691505092915050565b5f6137608383613739565b9150826002028217905092915050565b61377982612e92565b67ffffffffffffffff81111561379257613791613115565b5b61379c825461351a565b6137a78282856136e7565b5f60209050601f8311600181146137d8575f84156137c6578287015190505b6137d08582613755565b865550613837565b601f1984166137e6866135d3565b5f5b8281101561380d578489015182556001820191506020850194506020810190506137e8565b8683101561382a5784890151613826601f891682613739565b8355505b6001600288020188555050505b505050505050565b7f5075626c69632073616c65206973206e6f74206f70656e0000000000000000005f82015250565b5f613873601783612e9c565b915061387e8261383f565b602082019050919050565b5f6020820190508181035f8301526138a081613867565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138de82612f22565b91506138e983612f22565b9250828201905080821115613901576139006138a7565b5b92915050565b7f4e6f206d6f726520746f6b656e7320617661696c61626c6500000000000000005f82015250565b5f61393b601883612e9c565b915061394682613907565b602082019050919050565b5f6020820190508181035f8301526139688161392f565b9050919050565b5f61397982612f22565b915061398483612f22565b925082820261399281612f22565b915082820484148315176139a9576139a86138a7565b5b5092915050565b7f496e636f7272656374204554482076616c75652073656e7400000000000000005f82015250565b5f6139e4601883612e9c565b91506139ef826139b0565b602082019050919050565b5f6020820190508181035f830152613a11816139d8565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e206578636565645f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f613a72602283612e9c565b9150613a7d82613a18565b604082019050919050565b5f6020820190508181035f830152613a9f81613a66565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f613b00602f83612e9c565b9150613b0b82613aa6565b604082019050919050565b5f6020820190508181035f830152613b2d81613af4565b9050919050565b5f81905092915050565b5f613b4882612e92565b613b528185613b34565b9350613b62818560208601612eac565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f613ba2600183613b34565b9150613bad82613b6e565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f613bec600583613b34565b9150613bf782613bb8565b600582019050919050565b5f613c0d8285613b3e565b9150613c1882613b96565b9150613c248284613b3e565b9150613c2f82613be0565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e74000000000000000000000000005f82015250565b5f613c6f601383612e9c565b9150613c7a82613c3b565b602082019050919050565b5f6020820190508181035f830152613c9c81613c63565b9050919050565b7f4d6178696d756d20737570706c792065786365656465640000000000000000005f82015250565b5f613cd7601783612e9c565b9150613ce282613ca3565b602082019050919050565b5f6020820190508181035f830152613d0481613ccb565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613d3f601f83612e9c565b9150613d4a82613d0b565b602082019050919050565b5f6020820190508181035f830152613d6c81613d33565b9050919050565b5f81905092915050565b50565b5f613d8b5f83613d73565b9150613d9682613d7d565b5f82019050919050565b5f613daa82613d80565b9150819050919050565b5f81519050919050565b5f82825260208201905092915050565b5f613dd882613db4565b613de28185613dbe565b9350613df2818560208601612eac565b613dfb81612eba565b840191505092915050565b5f608082019050613e195f830187612fd8565b613e266020830186612fd8565b613e336040830185612f2b565b8181036060830152613e458184613dce565b905095945050505050565b5f81519050613e5e81612e0a565b92915050565b5f60208284031215613e7957613e78612dd7565b5b5f613e8684828501613e50565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613ec682612f22565b9150613ed183612f22565b9250828203905081811115613ee957613ee86138a7565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea264697066735822122002c4ce039ed3e16b9baac20c27881a8481e69ad7ec3111b0d6000346a59b397264736f6c634300081a0033697066733a2f2f516d5a73677846666b506d52784b7a5a38795a6248316e4c50574a6769415a3678485a6544316659714470583433

Deployed Bytecode

0x608060405260043610610266575f3560e01c8063715018a611610143578063b88d4fde116100b5578063d5abeb0111610079578063d5abeb01146108e2578063e43252d71461090c578063e985e9c514610934578063efdc778814610970578063f2fde38b14610998578063f6511f93146109c057610266565b8063b88d4fde14610800578063bc912e1a14610828578063c6a91b4214610852578063c87b56dd1461087c578063d547cfb7146108b857610266565b8063982d669e11610107578063982d669e1461070457806398710d1e1461072e5780639b19251a146107585780639e9fcffc14610794578063a0712d68146107bc578063a22cb465146107d857610266565b8063715018a61461064a5780638401f8d1146106605780638ab1d681146106885780638da5cb5b146106b057806395d89b41146106da57610266565b806323b872dd116101dc57806342842e0e116101a057806342842e0e1461051e5780634f6ccce71461054657806355f804b3146105825780636352211e146105aa5780636f8b44b0146105e657806370a082311461060e57610266565b806323b872dd1461045457806328cad13d1461047c5780632f745c59146104a45780633515fbdb146104e05780633ccfd60b1461050857610266565b80630a00ae831161022e5780630a00ae831461035e57806318160ddd146103865780631919fed7146103b0578063193ad7b4146103d85780631e84c41314610402578063202f298a1461042c57610266565b806301ffc9a71461026a57806306fdde03146102a657806307e89ec0146102d0578063081812fc146102fa578063095ea7b314610336575b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b9190612e34565b6109fc565b60405161029d9190612e79565b60405180910390f35b3480156102b1575f80fd5b506102ba610a75565b6040516102c79190612f02565b60405180910390f35b3480156102db575f80fd5b506102e4610b04565b6040516102f19190612f3a565b60405180910390f35b348015610305575f80fd5b50610320600480360381019061031b9190612f7d565b610b0a565b60405161032d9190612fe7565b60405180910390f35b348015610341575f80fd5b5061035c6004803603810190610357919061302a565b610b25565b005b348015610369575f80fd5b50610384600480360381019061037f9190612f7d565b610b3b565b005b348015610391575f80fd5b5061039a610b4d565b6040516103a79190612f3a565b60405180910390f35b3480156103bb575f80fd5b506103d660048036038101906103d19190612f7d565b610b59565b005b3480156103e3575f80fd5b506103ec610b6b565b6040516103f99190612f3a565b60405180910390f35b34801561040d575f80fd5b50610416610b71565b6040516104239190612e79565b60405180910390f35b348015610437575f80fd5b50610452600480360381019061044d9190612f7d565b610b83565b005b34801561045f575f80fd5b5061047a60048036038101906104759190613068565b610b95565b005b348015610487575f80fd5b506104a2600480360381019061049d91906130e2565b610c94565b005b3480156104af575f80fd5b506104ca60048036038101906104c5919061302a565b610cb8565b6040516104d79190612f3a565b60405180910390f35b3480156104eb575f80fd5b5061050660048036038101906105019190612f7d565b610d5c565b005b348015610513575f80fd5b5061051c610d6e565b005b348015610529575f80fd5b50610544600480360381019061053f9190613068565b610d92565b005b348015610551575f80fd5b5061056c60048036038101906105679190612f7d565b610db1565b6040516105799190612f3a565b60405180910390f35b34801561058d575f80fd5b506105a860048036038101906105a39190613239565b610e23565b005b3480156105b5575f80fd5b506105d060048036038101906105cb9190612f7d565b610e3e565b6040516105dd9190612fe7565b60405180910390f35b3480156105f1575f80fd5b5061060c60048036038101906106079190612f7d565b610e4f565b005b348015610619575f80fd5b50610634600480360381019061062f9190613280565b610e61565b6040516106419190612f3a565b60405180910390f35b348015610655575f80fd5b5061065e610f17565b005b34801561066b575f80fd5b5061068660048036038101906106819190613308565b610f2a565b005b348015610693575f80fd5b506106ae60048036038101906106a99190613280565b610fcd565b005b3480156106bb575f80fd5b506106c461102c565b6040516106d19190612fe7565b60405180910390f35b3480156106e5575f80fd5b506106ee611054565b6040516106fb9190612f02565b60405180910390f35b34801561070f575f80fd5b506107186110e4565b6040516107259190612f3a565b60405180910390f35b348015610739575f80fd5b506107426110ea565b60405161074f9190612f3a565b60405180910390f35b348015610763575f80fd5b5061077e60048036038101906107799190613280565b6110f0565b60405161078b9190612e79565b60405180910390f35b34801561079f575f80fd5b506107ba60048036038101906107b59190612f7d565b61110d565b005b6107d660048036038101906107d19190612f7d565b61111f565b005b3480156107e3575f80fd5b506107fe60048036038101906107f99190613353565b611482565b005b34801561080b575f80fd5b506108266004803603810190610821919061342f565b611498565b005b348015610833575f80fd5b5061083c6114b5565b6040516108499190612f3a565b60405180910390f35b34801561085d575f80fd5b506108666114bb565b6040516108739190612f3a565b60405180910390f35b348015610887575f80fd5b506108a2600480360381019061089d9190612f7d565b6114c1565b6040516108af9190612f02565b60405180910390f35b3480156108c3575f80fd5b506108cc611598565b6040516108d99190612f02565b60405180910390f35b3480156108ed575f80fd5b506108f6611624565b6040516109039190612f3a565b60405180910390f35b348015610917575f80fd5b50610932600480360381019061092d9190613280565b61162a565b005b34801561093f575f80fd5b5061095a600480360381019061095591906134af565b61168a565b6040516109679190612e79565b60405180910390f35b34801561097b575f80fd5b5061099660048036038101906109919190612f7d565b611718565b005b3480156109a3575f80fd5b506109be60048036038101906109b99190613280565b6117f1565b005b3480156109cb575f80fd5b506109e660048036038101906109e19190612f7d565b611875565b6040516109f39190612f3a565b60405180910390f35b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6e5750610a6d826118bd565b5b9050919050565b60605f8054610a839061351a565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf9061351a565b8015610afa5780601f10610ad157610100808354040283529160200191610afa565b820191905f5260205f20905b815481529060010190602001808311610add57829003601f168201915b5050505050905090565b600f5481565b5f610b148261199e565b50610b1e82611a24565b9050919050565b610b378282610b32611a5d565b611a64565b5050565b610b43611a76565b8060118190555050565b5f600880549050905090565b610b61611a76565b80600f8190555050565b60135481565b60145f9054906101000a900460ff1681565b610b8b611a76565b8060128190555050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c05575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610bfc9190612fe7565b60405180910390fd5b5f610c188383610c13611a5d565b611afd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c8e578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610c859392919061354a565b60405180910390fd5b50505050565b610c9c611a76565b8060145f6101000a81548160ff02191690831515021790555050565b5f610cc283610e61565b8210610d075782826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610cfe92919061357f565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b610d64611a76565b8060108190555050565b610d76611a76565b610d7e611c17565b610d883347611c66565b610d90611d4f565b565b610dac83838360405180602001604052805f815250611498565b505050565b5f610dba610b4d565b8210610dff575f826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610df692919061357f565b60405180910390fd5b60088281548110610e1357610e126135a6565b5b905f5260205f2001549050919050565b610e2b611a76565b80600c9081610e3a9190613770565b5050565b5f610e488261199e565b9050919050565b610e57611a76565b80600d8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed2575f6040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610ec99190612fe7565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f1f611a76565b610f285f611d59565b565b610f32611a76565b5f5b82829050811015610fc857600160155f858585818110610f5757610f566135a6565b5b9050602002016020810190610f6c9190613280565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610f34565b505050565b610fd5611a76565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110639061351a565b80601f016020809104026020016040519081016040528092919081815260200182805461108f9061351a565b80156110da5780601f106110b1576101008083540402835291602001916110da565b820191905f5260205f20905b8154815290600101906020018083116110bd57829003601f168201915b5050505050905090565b60115481565b60125481565b6015602052805f5260405f205f915054906101000a900460ff1681565b611115611a76565b80600e8190555050565b611127611c17565b60145f9054906101000a900460ff16611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c90613889565b60405180910390fd5b600d5481611181610b4d565b61118b91906138d4565b11156111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390613951565b60405180910390fd5b5f6111d682611875565b905060155f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156112385781601054611235919061396f565b90505b5f738018ef1762ed7ce9e57356fb0017606dc2b3af1590506011548360135461126191906138d4565b11156112f357348211156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a1906139fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156112ed573d5f803e3d5ffd5b50611440565b6012548361130033610e61565b61130a91906138d4565b11156113e15734821115611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a906139fa565b60405180910390fd5b600e54831115611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90613a88565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156113db573d5f803e3d5ffd5b5061143f565b601254831115611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613a88565b60405180910390fd5b8260135f82825461143791906138d4565b925050819055505b5b5f5b8381101561147457611467336001611458610b4d565b61146291906138d4565b611e1c565b8080600101915050611442565b50505061147f611d4f565b50565b61149461148d611a5d565b8383611e39565b5050565b6114a3848484610b95565b6114af84848484611fa2565b50505050565b60105481565b600e5481565b60605f6114cd83610e3e565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613b16565b60405180910390fd5b5f611546612154565b90505f8151116115645760405180602001604052805f81525061158f565b8061156e856121e4565b60405160200161157f929190613c02565b6040516020818303038152906040525b92505050919050565b600c80546115a59061351a565b80601f01602080910402602001604051908101604052809291908181526020018280546115d19061351a565b801561161c5780601f106115f35761010080835404028352916020019161161c565b820191905f5260205f20905b8154815290600101906020018083116115ff57829003601f168201915b505050505081565b600d5481565b611632611a76565b600160155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611720611a76565b5f8111611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613c85565b60405180910390fd5b600d548161176e610b4d565b61177891906138d4565b11156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613ced565b60405180910390fd5b5f5b818110156117ed576117e03360016117d1610b4d565b6117db91906138d4565b611e1c565b80806001019150506117bb565b5050565b6117f9611a76565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611869575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016118609190612fe7565b60405180910390fd5b61187281611d59565b50565b5f600a820361188e57678ac7230489e8000090506118b8565b606482036118a75768056bc75e2d6310000090506118b8565b81600f546118b5919061396f565b90505b919050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061198757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119975750611996826122ae565b5b9050919050565b5f806119a983612317565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a1b57826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401611a129190612f3a565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b611a718383836001612350565b505050565b611a7e611a5d565b73ffffffffffffffffffffffffffffffffffffffff16611a9c61102c565b73ffffffffffffffffffffffffffffffffffffffff1614611afb57611abf611a5d565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611af29190612fe7565b60405180910390fd5b565b5f80611b0a85858561250f565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b4d57611b488461271a565b611b8c565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b8b57611b8a818561275e565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611bcd57611bc8846128a8565b611c0c565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c0b57611c0a8585612968565b5b5b809150509392505050565b6002600b5403611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5390613d55565b60405180910390fd5b6002600b81905550565b80471015611cab57306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401611ca29190612fe7565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051611cd090613da0565b5f6040518083038185875af1925050503d805f8114611d0a576040519150601f19603f3d011682016040523d82523d5f602084013e611d0f565b606091505b5050905080611d4a576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b6001600b81905550565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e35828260405180602001604052805f8152506129ec565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ea957816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401611ea09190612fe7565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f959190612e79565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b111561214e578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe5611a5d565b8685856040518563ffffffff1660e01b81526004016120079493929190613e06565b6020604051808303815f875af192505050801561204257506040513d601f19601f8201168201806040525081019061203f9190613e64565b60015b6120c3573d805f8114612070576040519150601f19603f3d011682016040523d82523d5f602084013e612075565b606091505b505f8151036120bb57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016120b29190612fe7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461214c57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016121439190612fe7565b60405180910390fd5b505b50505050565b6060600c80546121639061351a565b80601f016020809104026020016040519081016040528092919081815260200182805461218f9061351a565b80156121da5780601f106121b1576101008083540402835291602001916121da565b820191905f5260205f20905b8154815290600101906020018083116121bd57829003601f168201915b5050505050905090565b60605f60016121f284612a07565b0190505f8167ffffffffffffffff8111156122105761220f613115565b5b6040519080825280601f01601f1916602001820160405280156122425781602001600182028036833780820191505090505b5090505f82602001820190505b6001156122a3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161229857612297613e8f565b5b0494505f850361224f575b819350505050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b808061238857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156124ba575f6123978461199e565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561240157508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156124145750612412818461168a565b155b1561245657826040517fa9fbf51f00000000000000000000000000000000000000000000000000000000815260040161244d9190612fe7565b60405180910390fd5b81156124b857838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b5f8061251a84612317565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461255b5761255a818486612b58565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146125e65761259a5f855f80612350565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461266557600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f61276883610e61565b90505f60075f8481526020019081526020015f2054905081811461283f575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f60016008805490506128bb9190613ebc565b90505f60095f8481526020019081526020015f205490505f600883815481106128e7576128e66135a6565b5b905f5260205f20015490508060088381548110612907576129066135a6565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f9055600880548061294f5761294e613eef565b5b600190038181905f5260205f20015f9055905550505050565b5f600161297484610e61565b61297e9190613ebc565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b6129f68383612c1b565b612a025f848484611fa2565b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a63577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a5957612a58613e8f565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612aa0576d04ee2d6d415b85acef81000000008381612a9657612a95613e8f565b5b0492506020810190505b662386f26fc100008310612acf57662386f26fc100008381612ac557612ac4613e8f565b5b0492506010810190505b6305f5e1008310612af8576305f5e1008381612aee57612aed613e8f565b5b0492506008810190505b6127108310612b1d576127108381612b1357612b12613e8f565b5b0492506004810190505b60648310612b405760648381612b3657612b35613e8f565b5b0492506002810190505b600a8310612b4f576001810190505b80915050919050565b612b63838383612d0e565b612c16575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bd757806040517f7e273289000000000000000000000000000000000000000000000000000000008152600401612bce9190612f3a565b60405180910390fd5b81816040517f177e802f000000000000000000000000000000000000000000000000000000008152600401612c0d92919061357f565b60405180910390fd5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c8b575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401612c829190612fe7565b60405180910390fd5b5f612c9783835f611afd565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612d09575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401612d009190612fe7565b60405180910390fd5b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dc557508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d865750612d85848461168a565b5b80612dc457508273ffffffffffffffffffffffffffffffffffffffff16612dac83611a24565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e1381612ddf565b8114612e1d575f80fd5b50565b5f81359050612e2e81612e0a565b92915050565b5f60208284031215612e4957612e48612dd7565b5b5f612e5684828501612e20565b91505092915050565b5f8115159050919050565b612e7381612e5f565b82525050565b5f602082019050612e8c5f830184612e6a565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612ed482612e92565b612ede8185612e9c565b9350612eee818560208601612eac565b612ef781612eba565b840191505092915050565b5f6020820190508181035f830152612f1a8184612eca565b905092915050565b5f819050919050565b612f3481612f22565b82525050565b5f602082019050612f4d5f830184612f2b565b92915050565b612f5c81612f22565b8114612f66575f80fd5b50565b5f81359050612f7781612f53565b92915050565b5f60208284031215612f9257612f91612dd7565b5b5f612f9f84828501612f69565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612fd182612fa8565b9050919050565b612fe181612fc7565b82525050565b5f602082019050612ffa5f830184612fd8565b92915050565b61300981612fc7565b8114613013575f80fd5b50565b5f8135905061302481613000565b92915050565b5f80604083850312156130405761303f612dd7565b5b5f61304d85828601613016565b925050602061305e85828601612f69565b9150509250929050565b5f805f6060848603121561307f5761307e612dd7565b5b5f61308c86828701613016565b935050602061309d86828701613016565b92505060406130ae86828701612f69565b9150509250925092565b6130c181612e5f565b81146130cb575f80fd5b50565b5f813590506130dc816130b8565b92915050565b5f602082840312156130f7576130f6612dd7565b5b5f613104848285016130ce565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61314b82612eba565b810181811067ffffffffffffffff8211171561316a57613169613115565b5b80604052505050565b5f61317c612dce565b90506131888282613142565b919050565b5f67ffffffffffffffff8211156131a7576131a6613115565b5b6131b082612eba565b9050602081019050919050565b828183375f83830152505050565b5f6131dd6131d88461318d565b613173565b9050828152602081018484840111156131f9576131f8613111565b5b6132048482856131bd565b509392505050565b5f82601f8301126132205761321f61310d565b5b81356132308482602086016131cb565b91505092915050565b5f6020828403121561324e5761324d612dd7565b5b5f82013567ffffffffffffffff81111561326b5761326a612ddb565b5b6132778482850161320c565b91505092915050565b5f6020828403121561329557613294612dd7565b5b5f6132a284828501613016565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126132c8576132c761310d565b5b8235905067ffffffffffffffff8111156132e5576132e46132ab565b5b602083019150836020820283011115613301576133006132af565b5b9250929050565b5f806020838503121561331e5761331d612dd7565b5b5f83013567ffffffffffffffff81111561333b5761333a612ddb565b5b613347858286016132b3565b92509250509250929050565b5f806040838503121561336957613368612dd7565b5b5f61337685828601613016565b9250506020613387858286016130ce565b9150509250929050565b5f67ffffffffffffffff8211156133ab576133aa613115565b5b6133b482612eba565b9050602081019050919050565b5f6133d36133ce84613391565b613173565b9050828152602081018484840111156133ef576133ee613111565b5b6133fa8482856131bd565b509392505050565b5f82601f8301126134165761341561310d565b5b81356134268482602086016133c1565b91505092915050565b5f805f806080858703121561344757613446612dd7565b5b5f61345487828801613016565b945050602061346587828801613016565b935050604061347687828801612f69565b925050606085013567ffffffffffffffff81111561349757613496612ddb565b5b6134a387828801613402565b91505092959194509250565b5f80604083850312156134c5576134c4612dd7565b5b5f6134d285828601613016565b92505060206134e385828601613016565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061353157607f821691505b602082108103613544576135436134ed565b5b50919050565b5f60608201905061355d5f830186612fd8565b61356a6020830185612f2b565b6135776040830184612fd8565b949350505050565b5f6040820190506135925f830185612fd8565b61359f6020830184612f2b565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261362f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135f4565b61363986836135f4565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61367461366f61366a84612f22565b613651565b612f22565b9050919050565b5f819050919050565b61368d8361365a565b6136a16136998261367b565b848454613600565b825550505050565b5f90565b6136b56136a9565b6136c0818484613684565b505050565b5b818110156136e3576136d85f826136ad565b6001810190506136c6565b5050565b601f821115613728576136f9816135d3565b613702846135e5565b81016020851015613711578190505b61372561371d856135e5565b8301826136c5565b50505b505050565b5f82821c905092915050565b5f6137485f198460080261372d565b1980831691505092915050565b5f6137608383613739565b9150826002028217905092915050565b61377982612e92565b67ffffffffffffffff81111561379257613791613115565b5b61379c825461351a565b6137a78282856136e7565b5f60209050601f8311600181146137d8575f84156137c6578287015190505b6137d08582613755565b865550613837565b601f1984166137e6866135d3565b5f5b8281101561380d578489015182556001820191506020850194506020810190506137e8565b8683101561382a5784890151613826601f891682613739565b8355505b6001600288020188555050505b505050505050565b7f5075626c69632073616c65206973206e6f74206f70656e0000000000000000005f82015250565b5f613873601783612e9c565b915061387e8261383f565b602082019050919050565b5f6020820190508181035f8301526138a081613867565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138de82612f22565b91506138e983612f22565b9250828201905080821115613901576139006138a7565b5b92915050565b7f4e6f206d6f726520746f6b656e7320617661696c61626c6500000000000000005f82015250565b5f61393b601883612e9c565b915061394682613907565b602082019050919050565b5f6020820190508181035f8301526139688161392f565b9050919050565b5f61397982612f22565b915061398483612f22565b925082820261399281612f22565b915082820484148315176139a9576139a86138a7565b5b5092915050565b7f496e636f7272656374204554482076616c75652073656e7400000000000000005f82015250565b5f6139e4601883612e9c565b91506139ef826139b0565b602082019050919050565b5f6020820190508181035f830152613a11816139d8565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e206578636565645f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f613a72602283612e9c565b9150613a7d82613a18565b604082019050919050565b5f6020820190508181035f830152613a9f81613a66565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f613b00602f83612e9c565b9150613b0b82613aa6565b604082019050919050565b5f6020820190508181035f830152613b2d81613af4565b9050919050565b5f81905092915050565b5f613b4882612e92565b613b528185613b34565b9350613b62818560208601612eac565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f613ba2600183613b34565b9150613bad82613b6e565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f613bec600583613b34565b9150613bf782613bb8565b600582019050919050565b5f613c0d8285613b3e565b9150613c1882613b96565b9150613c248284613b3e565b9150613c2f82613be0565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e74000000000000000000000000005f82015250565b5f613c6f601383612e9c565b9150613c7a82613c3b565b602082019050919050565b5f6020820190508181035f830152613c9c81613c63565b9050919050565b7f4d6178696d756d20737570706c792065786365656465640000000000000000005f82015250565b5f613cd7601783612e9c565b9150613ce282613ca3565b602082019050919050565b5f6020820190508181035f830152613d0481613ccb565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613d3f601f83612e9c565b9150613d4a82613d0b565b602082019050919050565b5f6020820190508181035f830152613d6c81613d33565b9050919050565b5f81905092915050565b50565b5f613d8b5f83613d73565b9150613d9682613d7d565b5f82019050919050565b5f613daa82613d80565b9150819050919050565b5f81519050919050565b5f82825260208201905092915050565b5f613dd882613db4565b613de28185613dbe565b9350613df2818560208601612eac565b613dfb81612eba565b840191505092915050565b5f608082019050613e195f830187612fd8565b613e266020830186612fd8565b613e336040830185612f2b565b8181036060830152613e458184613dce565b905095945050505050565b5f81519050613e5e81612e0a565b92915050565b5f60208284031215613e7957613e78612dd7565b5b5f613e8684828501613e50565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613ec682612f22565b9150613ed183612f22565b9250828203905081811115613ee957613ee86138a7565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea264697066735822122002c4ce039ed3e16b9baac20c27881a8481e69ad7ec3111b0d6000346a59b397264736f6c634300081a0033

Deployed Bytecode Sourcemap

75900:4950:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56972:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38779:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76207:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39951:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39770:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79727:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57616:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79959:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76395:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76441:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80187:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40620:588;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79584:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57280:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80306:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78792:130;;;;;;;;;;;;;:::i;:::-;;41279:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57797:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78355:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38592:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79849:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38317:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65304:103;;;;;;;;;;;;;:::i;:::-;;80644:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80532:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64629:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38939:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76308:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76350:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76487:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80067:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76985:1362;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40181:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41484:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76256:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76163:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78930:525;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76034:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76125:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80426:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40398:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78464:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65562:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76680:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56972:224;57074:4;57113:35;57098:50;;;:11;:50;;;;:90;;;;57152:36;57176:11;57152:23;:36::i;:::-;57098:90;57091:97;;56972:224;;;:::o;38779:91::-;38824:13;38857:5;38850:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38779:91;:::o;76207:42::-;;;;:::o;39951:158::-;40018:7;40038:22;40052:7;40038:13;:22::i;:::-;;40080:21;40093:7;40080:12;:21::i;:::-;40073:28;;39951:158;;;:::o;39770:115::-;39842:35;39851:2;39855:7;39864:12;:10;:12::i;:::-;39842:8;:35::i;:::-;39770:115;;:::o;79727:114::-;64515:13;:11;:13::i;:::-;79821:12:::1;79804:14;:29;;;;79727:114:::0;:::o;57616:104::-;57668:7;57695:10;:17;;;;57688:24;;57616:104;:::o;79959:100::-;64515:13;:11;:13::i;:::-;80046:5:::1;80026:17;:25;;;;79959:100:::0;:::o;76395:39::-;;;;:::o;76441:37::-;;;;;;;;;;;;;:::o;80187:111::-;64515:13;:11;:13::i;:::-;80285:5:::1;80263:19;:27;;;;80187:111:::0;:::o;40620:588::-;40729:1;40715:16;;:2;:16;;;40711:89;;40785:1;40755:33;;;;;;;;;;;:::i;:::-;;;;;;;;40711:89;41021:21;41045:34;41053:2;41057:7;41066:12;:10;:12::i;:::-;41045:7;:34::i;:::-;41021:58;;41111:4;41094:21;;:13;:21;;;41090:111;;41160:4;41166:7;41175:13;41139:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;41090:111;40700:508;40620:588;;;:::o;79584:135::-;64515:13;:11;:13::i;:::-;79692:19:::1;79671:18;;:40;;;;;;;;;;;;;;;;;;79584:135:::0;:::o;57280:260::-;57368:7;57401:16;57411:5;57401:9;:16::i;:::-;57392:5;:25;57388:101;;57464:5;57471;57441:36;;;;;;;;;;;;:::i;:::-;;;;;;;;57388:101;57506:12;:19;57519:5;57506:19;;;;;;;;;;;;;;;:26;57526:5;57506:26;;;;;;;;;;;;57499:33;;57280:260;;;;:::o;80306:112::-;64515:13;:11;:13::i;:::-;80405:5:::1;80382:20;:28;;;;80306:112:::0;:::o;78792:130::-;64515:13;:11;:13::i;:::-;68485:21:::1;:19;:21::i;:::-;78853:61:::2;78879:10;78892:21;78853:17;:61::i;:::-;68529:20:::1;:18;:20::i;:::-;78792:130::o:0;41279:134::-;41366:39;41383:4;41389:2;41393:7;41366:39;;;;;;;;;;;;:16;:39::i;:::-;41279:134;;;:::o;57797:231::-;57863:7;57896:13;:11;:13::i;:::-;57887:5;:22;57883:103;;57964:1;57968:5;57933:41;;;;;;;;;;;;:::i;:::-;;;;;;;;57883:103;58003:10;58014:5;58003:17;;;;;;;;:::i;:::-;;;;;;;;;;57996:24;;57797:231;;;:::o;78355:101::-;64515:13;:11;:13::i;:::-;78441:7:::1;78426:12;:22;;;;;;:::i;:::-;;78355:101:::0;:::o;38592:120::-;38655:7;38682:22;38696:7;38682:13;:22::i;:::-;38675:29;;38592:120;;;:::o;79849:102::-;64515:13;:11;:13::i;:::-;79933:10:::1;79921:9;:22;;;;79849:102:::0;:::o;38317:213::-;38380:7;38421:1;38404:19;;:5;:19;;;38400:89;;38474:1;38447:30;;;;;;;;;;;:::i;:::-;;;;;;;;38400:89;38506:9;:16;38516:5;38506:16;;;;;;;;;;;;;;;;38499:23;;38317:213;;;:::o;65304:103::-;64515:13;:11;:13::i;:::-;65369:30:::1;65396:1;65369:18;:30::i;:::-;65304:103::o:0;80644:203::-;64515:13;:11;:13::i;:::-;80741:9:::1;80736:104;80760:9;;:16;;80756:1;:20;80736:104;;;80824:4;80798:9;:23;80808:9;;80818:1;80808:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;80798:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;80778:3;;;;;;;80736:104;;;;80644:203:::0;;:::o;80532:104::-;64515:13;:11;:13::i;:::-;80623:5:::1;80605:9;:15;80615:4;80605:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;80532:104:::0;:::o;64629:87::-;64675:7;64702:6;;;;;;;;;;;64695:13;;64629:87;:::o;38939:95::-;38986:13;39019:7;39012:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38939:95;:::o;76308:35::-;;;;:::o;76350:38::-;;;;:::o;76487:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;80067:112::-;64515:13;:11;:13::i;:::-;80166:5:::1;80147:16;:24;;;;80067:112:::0;:::o;76985:1362::-;68485:21;:19;:21::i;:::-;77072:18:::1;;;;;;;;;;;77064:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;77171:9;;77153:14;77137:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;77129:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;77222:18;77243:37;77265:14;77243:21;:37::i;:::-;77222:58;;77295:9;:21;77305:10;77295:21;;;;;;;;;;;;;;;;;;;;;;;;;77291:104;;;77369:14;77346:20;;:37;;;;:::i;:::-;77333:50;;77291:104;77407:17;77427:42;77407:62;;77526:14;;77509;77486:20;;:37;;;;:::i;:::-;:54;77482:734;;;77579:9;77565:10;:23;;77557:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;77640:9;77632:27;;:39;77660:10;77632:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77482:734;;;77749:19;;77732:14;77708:21;77718:10;77708:9;:21::i;:::-;:38;;;;:::i;:::-;:60;77704:501;;;77811:9;77797:10;:23;;77789:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;77894:16;;77876:14;:34;;77868:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;77976:9;77968:27;;:39;77996:10;77968:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77704:501;;;78074:19;;78056:14;:37;;78048:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;78175:14;78151:20;;:38;;;;;;;:::i;:::-;;;;;;;;77704:501;77482:734;78233:9;78228:112;78252:14;78248:1;:18;78228:112;;;78288:40;78298:10;78326:1;78310:13;:11;:13::i;:::-;:17;;;;:::i;:::-;78288:9;:40::i;:::-;78268:3;;;;;;;78228:112;;;;77053:1294;;68529:20:::0;:18;:20::i;:::-;76985:1362;:::o;40181:146::-;40267:52;40286:12;:10;:12::i;:::-;40300:8;40310;40267:18;:52::i;:::-;40181:146;;:::o;41484:211::-;41598:31;41611:4;41617:2;41621:7;41598:12;:31::i;:::-;41640:47;41663:4;41669:2;41673:7;41682:4;41640:22;:47::i;:::-;41484:211;;;;:::o;76256:45::-;;;;:::o;76163:37::-;;;;:::o;78930:525::-;79003:13;79132;79148:16;79156:7;79148;:16::i;:::-;79132:32;;79200:1;79183:19;;:5;:19;;;79175:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;79267:21;79291:10;:8;:10::i;:::-;79267:34;;79343:1;79325:7;79319:21;:25;:128;;;;;;;;;;;;;;;;;79385:7;79399:18;:7;:16;:18::i;:::-;79368:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79319:128;79312:135;;;;78930:525;;;:::o;76034:84::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;76125:31::-;;;;:::o;80426:98::-;64515:13;:11;:13::i;:::-;80512:4:::1;80494:9;:15;80504:4;80494:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;80426:98:::0;:::o;40398:155::-;40486:4;40510:18;:25;40529:5;40510:25;;;;;;;;;;;;;;;:35;40536:8;40510:35;;;;;;;;;;;;;;;;;;;;;;;;;40503:42;;40398:155;;;;:::o;78464:320::-;64515:13;:11;:13::i;:::-;78551:1:::1;78540:8;:12;78532:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;78623:9;;78611:8;78595:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;78587:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;78676:9;78671:106;78695:8;78691:1;:12;78671:106;;;78725:40;78735:10;78763:1;78747:13;:11;:13::i;:::-;:17;;;;:::i;:::-;78725:9;:40::i;:::-;78705:3;;;;;;;78671:106;;;;78464:320:::0;:::o;65562:220::-;64515:13;:11;:13::i;:::-;65667:1:::1;65647:22;;:8;:22;;::::0;65643:93:::1;;65721:1;65693:31;;;;;;;;;;;:::i;:::-;;;;;;;;65643:93;65746:28;65765:8;65746:18;:28::i;:::-;65562:220:::0;:::o;76680:297::-;76750:7;76786:2;76774:8;:14;76770:200;;76812:8;76805:15;;;;76770:200;76854:3;76842:8;:15;76838:132;;76881:9;76874:16;;;;76838:132;76950:8;76930:17;;:28;;;;:::i;:::-;76923:35;;76680:297;;;;:::o;37948:305::-;38050:4;38102:25;38087:40;;;:11;:40;;;;:105;;;;38159:33;38144:48;;;:11;:48;;;;38087:105;:158;;;;38209:36;38233:11;38209:23;:36::i;:::-;38087:158;38067:178;;37948:305;;;:::o;52926:247::-;52989:7;53009:13;53025:17;53034:7;53025:8;:17::i;:::-;53009:33;;53074:1;53057:19;;:5;:19;;;53053:90;;53123:7;53100:31;;;;;;;;;;;:::i;:::-;;;;;;;;53053:90;53160:5;53153:12;;;52926:247;;;:::o;42457:129::-;42527:7;42554:15;:24;42570:7;42554:24;;;;;;;;;;;;;;;;;;;;;42547:31;;42457:129;;;:::o;8685:98::-;8738:7;8765:10;8758:17;;8685:98;:::o;51158:122::-;51239:33;51248:2;51252:7;51261:4;51267;51239:8;:33::i;:::-;51158:122;;;:::o;64794:166::-;64865:12;:10;:12::i;:::-;64854:23;;:7;:5;:7::i;:::-;:23;;;64850:103;;64928:12;:10;:12::i;:::-;64901:40;;;;;;;;;;;:::i;:::-;;;;;;;;64850:103;64794:166::o;58089:640::-;58184:7;58204:21;58228:32;58242:2;58246:7;58255:4;58228:13;:32::i;:::-;58204:56;;58302:1;58277:27;;:13;:27;;;58273:214;;58321:40;58353:7;58321:31;:40::i;:::-;58273:214;;;58400:2;58383:19;;:13;:19;;;58379:108;;58419:56;58452:13;58467:7;58419:32;:56::i;:::-;58379:108;58273:214;58515:1;58501:16;;:2;:16;;;58497:192;;58534:45;58571:7;58534:36;:45::i;:::-;58497:192;;;58618:2;58601:19;;:13;:19;;;58597:92;;58637:40;58665:2;58669:7;58637:27;:40::i;:::-;58597:92;58497:192;58708:13;58701:20;;;58089:640;;;;;:::o;68565:293::-;67967:1;68699:7;;:19;68691:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;67967:1;68832:7;:18;;;;68565:293::o;70974:340::-;71084:6;71060:21;:30;71056:111;;;71149:4;71114:41;;;;;;;;;;;:::i;:::-;;;;;;;;71056:111;71180:12;71198:9;:14;;71220:6;71198:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71179:52;;;71247:7;71242:65;;71278:17;;;;;;;;;;;;;;71242:65;71045:269;70974:340;;:::o;68866:213::-;67923:1;69049:7;:22;;;;68866:213::o;65942:191::-;66016:16;66035:6;;;;;;;;;;;66016:25;;66061:8;66052:6;;:17;;;;;;;;;;;;;;;;;;66116:8;66085:40;;66106:8;66085:40;;;;;;;;;;;;66005:128;65942:191;:::o;47277:102::-;47345:26;47355:2;47359:7;47345:26;;;;;;;;;;;;:9;:26::i;:::-;47277:102;;:::o;52365:318::-;52493:1;52473:22;;:8;:22;;;52469:93;;52541:8;52519:31;;;;;;;;;;;:::i;:::-;;;;;;;;52469:93;52610:8;52572:18;:25;52591:5;52572:25;;;;;;;;;;;;;;;:35;52598:8;52572:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;52656:8;52634:41;;52649:5;52634:41;;;52666:8;52634:41;;;;;;:::i;:::-;;;;;;;;52365:318;;;:::o;53723:799::-;53857:1;53840:2;:14;;;:18;53836:679;;;53895:2;53879:36;;;53916:12;:10;:12::i;:::-;53930:4;53936:7;53945:4;53879:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53875:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54210:1;54193:6;:13;:18;54189:300;;54265:2;54243:25;;;;;;;;;;;:::i;:::-;;;;;;;;54189:300;54439:6;54433:13;54424:6;54420:2;54416:15;54409:38;53875:629;54008:41;;;53998:51;;;:6;:51;;;;53994:132;;54103:2;54081:25;;;;;;;;;;;:::i;:::-;;;;;;;;53994:132;53951:190;53836:679;53723:799;;;;:::o;79463:113::-;79523:13;79556:12;79549:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79463:113;:::o;26501:718::-;26557:13;26608:14;26645:1;26625:17;26636:5;26625:10;:17::i;:::-;:21;26608:38;;26661:20;26695:6;26684:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26661:41;;26717:11;26846:6;26842:2;26838:15;26830:6;26826:28;26819:35;;26883:290;26890:4;26883:290;;;26915:5;;;;;;;;27057:10;27052:2;27045:5;27041:14;27036:32;27031:3;27023:46;27115:2;27106:11;;;;;;:::i;:::-;;;;;27149:1;27140:5;:10;26883:290;27136:21;26883:290;27194:6;27187:13;;;;;26501:718;;;:::o;29817:148::-;29893:4;29932:25;29917:40;;;:11;:40;;;;29910:47;;29817:148;;;:::o;42219:117::-;42285:7;42312;:16;42320:7;42312:16;;;;;;;;;;;;;;;;;;;;;42305:23;;42219:117;;;:::o;51468:678::-;51630:9;:31;;;;51659:1;51643:18;;:4;:18;;;;51630:31;51626:471;;;51678:13;51694:22;51708:7;51694:13;:22::i;:::-;51678:38;;51863:1;51847:18;;:4;:18;;;;:35;;;;;51878:4;51869:13;;:5;:13;;;;51847:35;:69;;;;;51887:29;51904:5;51911:4;51887:16;:29::i;:::-;51886:30;51847:69;51843:144;;;51966:4;51944:27;;;;;;;;;;;:::i;:::-;;;;;;;;51843:144;52007:9;52003:83;;;52062:7;52058:2;52042:28;;52051:5;52042:28;;;;;;;;;;;;52003:83;51663:434;51626:471;52136:2;52109:15;:24;52125:7;52109:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51468:678;;;;:::o;45419:824::-;45505:7;45525:12;45540:17;45549:7;45540:8;:17::i;:::-;45525:32;;45636:1;45620:18;;:4;:18;;;45616:88;;45655:37;45672:4;45678;45684:7;45655:16;:37::i;:::-;45616:88;45767:1;45751:18;;:4;:18;;;45747:263;;45869:48;45886:1;45890:7;45907:1;45911:5;45869:8;:48::i;:::-;45982:1;45963:9;:15;45973:4;45963:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;45747:263;46040:1;46026:16;;:2;:16;;;46022:111;;46105:1;46088:9;:13;46098:2;46088:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;46022:111;46164:2;46145:7;:16;46153:7;46145:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;46203:7;46199:2;46184:27;;46193:4;46184:27;;;;;;;;;;;;46231:4;46224:11;;;45419:824;;;;;:::o;59449:164::-;59553:10;:17;;;;59526:15;:24;59542:7;59526:24;;;;;;;;;;;:44;;;;59581:10;59597:7;59581:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59449:164;:::o;60240:977::-;60506:22;60531:15;60541:4;60531:9;:15::i;:::-;60506:40;;60557:18;60578:17;:26;60596:7;60578:26;;;;;;;;;;;;60557:47;;60725:14;60711:10;:28;60707:328;;60756:19;60778:12;:18;60791:4;60778:18;;;;;;;;;;;;;;;:34;60797:14;60778:34;;;;;;;;;;;;60756:56;;60862:11;60829:12;:18;60842:4;60829:18;;;;;;;;;;;;;;;:30;60848:10;60829:30;;;;;;;;;;;:44;;;;60979:10;60946:17;:30;60964:11;60946:30;;;;;;;;;;;:43;;;;60741:294;60707:328;61131:17;:26;61149:7;61131:26;;;;;;;;;;;61124:33;;;61175:12;:18;61188:4;61175:18;;;;;;;;;;;;;;;:34;61194:14;61175:34;;;;;;;;;;;61168:41;;;60321:896;;60240:977;;:::o;61512:1079::-;61765:22;61810:1;61790:10;:17;;;;:21;;;;:::i;:::-;61765:46;;61822:18;61843:15;:24;61859:7;61843:24;;;;;;;;;;;;61822:45;;62194:19;62216:10;62227:14;62216:26;;;;;;;;:::i;:::-;;;;;;;;;;62194:48;;62280:11;62255:10;62266;62255:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;62391:10;62360:15;:28;62376:11;62360:28;;;;;;;;;;;:41;;;;62532:15;:24;62548:7;62532:24;;;;;;;;;;;62525:31;;;62567:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;61583:1008;;;61512:1079;:::o;59030:218::-;59115:14;59148:1;59132:13;59142:2;59132:9;:13::i;:::-;:17;;;;:::i;:::-;59115:34;;59187:7;59160:12;:16;59173:2;59160:16;;;;;;;;;;;;;;;:24;59177:6;59160:24;;;;;;;;;;;:34;;;;59234:6;59205:17;:26;59223:7;59205:26;;;;;;;;;;;:35;;;;59104:144;59030:218;;:::o;47606:185::-;47701:18;47707:2;47711:7;47701:5;:18::i;:::-;47730:53;47761:1;47765:2;47769:7;47778:4;47730:22;:53::i;:::-;47606:185;;;:::o;21565:948::-;21618:7;21638:14;21655:1;21638:18;;21705:8;21696:5;:17;21692:106;;21743:8;21734:17;;;;;;:::i;:::-;;;;;21780:2;21770:12;;;;21692:106;21825:8;21816:5;:17;21812:106;;21863:8;21854:17;;;;;;:::i;:::-;;;;;21900:2;21890:12;;;;21812:106;21945:8;21936:5;:17;21932:106;;21983:8;21974:17;;;;;;:::i;:::-;;;;;22020:2;22010:12;;;;21932:106;22065:7;22056:5;:16;22052:103;;22102:7;22093:16;;;;;;:::i;:::-;;;;;22138:1;22128:11;;;;22052:103;22182:7;22173:5;:16;22169:103;;22219:7;22210:16;;;;;;:::i;:::-;;;;;22255:1;22245:11;;;;22169:103;22299:7;22290:5;:16;22286:103;;22336:7;22327:16;;;;;;:::i;:::-;;;;;22372:1;22362:11;;;;22286:103;22416:7;22407:5;:16;22403:68;;22454:1;22444:11;;;;22403:68;22499:6;22492:13;;;21565:948;;;:::o;43626:376::-;43739:38;43753:5;43760:7;43769;43739:13;:38::i;:::-;43734:261;;43815:1;43798:19;;:5;:19;;;43794:190;;43868:7;43845:31;;;;;;;;;;;:::i;:::-;;;;;;;;43794:190;43951:7;43960;43924:44;;;;;;;;;;;;:::i;:::-;;;;;;;;43734:261;43626:376;;;:::o;46579:335::-;46661:1;46647:16;;:2;:16;;;46643:89;;46717:1;46687:33;;;;;;;;;;;:::i;:::-;;;;;;;;46643:89;46742:21;46766:32;46774:2;46778:7;46795:1;46766:7;:32::i;:::-;46742:56;;46838:1;46813:27;;:13;:27;;;46809:98;;46892:1;46864:31;;;;;;;;;;;:::i;:::-;;;;;;;;46809:98;46632:282;46579:335;;:::o;42906:276::-;43009:4;43065:1;43046:21;;:7;:21;;;;:128;;;;;43094:7;43085:16;;:5;:16;;;:52;;;;43105:32;43122:5;43129:7;43105:16;:32::i;:::-;43085:52;:88;;;;43166:7;43141:32;;:21;43154:7;43141:12;:21::i;:::-;:32;;;43085:88;43046:128;43026:148;;42906: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://02c4ce039ed3e16b9baac20c27881a8481e69ad7ec3111b0d6000346a59b3972
[ 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.