ETH Price: $3,254.07 (+2.49%)
Gas: 3 Gwei

Token

MILADY EVOLVED (EVOLVED)
 

Overview

Max Total Supply

500 EVOLVED

Holders

217

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 EVOLVED
0x7959A7cB7d3cC564c1526D51B52Da32D6c631390
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NFT

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-23
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being 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`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/Milady.sol



pragma solidity ^0.8.9;



contract NFT is ERC721, Ownable {
    using Strings for uint256;

    uint public constant MAX_TOKENS = 500;
    uint private constant TOKENS_RESERVED = 0;
    uint public price = 25000000000000000;
    uint256 public constant MAX_MINT_PER_TX = 3;

    bool public isSaleActive;
    uint256 public totalSupply;
    mapping(address => uint256) private mintedPerWallet;

    string public baseUri;
    string public baseExtension = ".json";

    constructor() ERC721("MILADY EVOLVED", "EVOLVED") {
        baseUri = "ipfs://bafybeie5d4nuqwlqnp3fzwkh6vbrzridjvebyp3g2ziwt4tfacgxwovsii";
        for(uint256 i = 1; i <= TOKENS_RESERVED; ++i) {
            _safeMint(msg.sender, i);
        }
        totalSupply = TOKENS_RESERVED;
    }

    // Public Functions
    function mint(uint256 _numTokens) external payable {
        require(isSaleActive, "The sale is paused.");
        require(_numTokens <= MAX_MINT_PER_TX, "You cannot mint that many in one transaction.");
        require(mintedPerWallet[msg.sender] + _numTokens <= MAX_MINT_PER_TX, "You cannot mint that many total.");
        uint256 curTotalSupply = totalSupply;
        require(curTotalSupply + _numTokens <= MAX_TOKENS, "Exceeds total supply.");
        require(_numTokens * price <= msg.value, "Insufficient funds.");

        for(uint256 i = 1; i <= _numTokens; ++i) {
            _safeMint(msg.sender, curTotalSupply + i);
        }
        mintedPerWallet[msg.sender] += _numTokens;
        totalSupply += _numTokens;
    }

    // Owner-only functions
    function flipSaleState() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function setBaseUri(string memory _baseUri) external onlyOwner {
        baseUri = _baseUri;
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function withdrawAll() external payable onlyOwner {
        uint256 balance = address(this).balance;
        uint256 balanceOne = balance * 100 / 100;
        ( bool transferOne, ) = payable(0x342AfcD4457b8aCf8d8cAc3ffF2e0eabFEEF6907).call{value: balanceOne}("");
        require(transferOne , "Transfer failed.");
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
 
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
            : "";
    }
 
    function _baseURI() internal view virtual override returns (string memory) {
        return baseUri;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","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":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","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":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":"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":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6658d15e1762800060075560c06040526005608081905264173539b7b760d91b60a09081526200003391600c919062000533565b503480156200004157600080fd5b50604080518082018252600e81526d13525310511648115593d315915160921b602080830191825283518085019094526007845266115593d315915160ca1b908401528151919291620000979160009162000533565b508051620000ad90600190602084019062000533565b505050620000ca620000c46200013260201b60201c565b62000136565b604051806080016040528060428152602001620024a3604291398051620000fa91600b9160209091019062000533565b5060015b60008111620001265762000113338262000188565b6200011e81620005d9565b9050620000fe565b506000600955620006ee565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001aa828260405180602001604052806000815250620001ae60201b60201c565b5050565b620001ba83836200022a565b620001c96000848484620003bb565b620002255760405162461bcd60e51b815260206004820152603260248201526000805160206200248383398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b505050565b6001600160a01b038216620002825760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016200021c565b6000818152600260205260409020546001600160a01b031615620002e95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200021c565b6000818152600260205260409020546001600160a01b031615620003505760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200021c565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620003dc846001600160a01b03166200052460201b62000e051760201c565b156200051857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200041690339089908890889060040162000603565b602060405180830381600087803b1580156200043157600080fd5b505af192505050801562000464575060408051601f3d908101601f1916820190925262000461918101906200067e565b60015b620004fd573d80801562000495576040519150601f19603f3d011682016040523d82523d6000602084013e6200049a565b606091505b508051620004f55760405162461bcd60e51b815260206004820152603260248201526000805160206200248383398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200021c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200051c565b5060015b949350505050565b6001600160a01b03163b151590565b8280546200054190620006b1565b90600052602060002090601f016020900481019282620005655760008555620005b0565b82601f106200058057805160ff1916838001178555620005b0565b82800160010185558215620005b0579182015b82811115620005b057825182559160200191906001019062000593565b50620005be929150620005c2565b5090565b5b80821115620005be5760008155600101620005c3565b6000600019821415620005fc57634e487b7160e01b600052601160045260246000fd5b5060010190565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620006525785810182015185820160a00152810162000634565b828111156200066557600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000602082840312156200069157600080fd5b81516001600160e01b031981168114620006aa57600080fd5b9392505050565b600181811c90821680620006c657607f821691505b60208210811415620006e857634e487b7160e01b600052602260045260246000fd5b50919050565b611d8580620006fe6000396000f3fe6080604052600436106101b75760003560e01c80638ecad721116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610478578063e985e9c514610498578063f2fde38b146104e1578063f47c84c51461050157600080fd5b8063a22cb46514610423578063b88d4fde14610443578063c66828621461046357600080fd5b80639abc8320116100c65780639abc8320146103c5578063a035b1fe146103da578063a0712d68146103f0578063a0bcfc7f1461040357600080fd5b80638ecad7211461037b57806391b7f5ed1461039057806395d89b41146103b057600080fd5b806342842e0e1161015957806370a082311161013357806370a0823114610320578063715018a614610340578063853828b6146103555780638da5cb5b1461035d57600080fd5b806342842e0e146102c6578063564566a8146102e65780636352211e1461030057600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461029157806334918dfd146102b157600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d736600461178a565b610517565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610569565b6040516101e891906117ff565b34801561021f57600080fd5b5061023361022e366004611812565b6105fb565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611847565b610622565b005b34801561027957600080fd5b5061028360095481565b6040519081526020016101e8565b34801561029d57600080fd5b5061026b6102ac366004611871565b61073d565b3480156102bd57600080fd5b5061026b61076e565b3480156102d257600080fd5b5061026b6102e1366004611871565b61078a565b3480156102f257600080fd5b506008546101dc9060ff1681565b34801561030c57600080fd5b5061023361031b366004611812565b6107a5565b34801561032c57600080fd5b5061028361033b3660046118ad565b610805565b34801561034c57600080fd5b5061026b61088b565b61026b61089f565b34801561036957600080fd5b506006546001600160a01b0316610233565b34801561038757600080fd5b50610283600381565b34801561039c57600080fd5b5061026b6103ab366004611812565b610962565b3480156103bc57600080fd5b5061020661096f565b3480156103d157600080fd5b5061020661097e565b3480156103e657600080fd5b5061028360075481565b61026b6103fe366004611812565b610a0c565b34801561040f57600080fd5b5061026b61041e366004611954565b610c3f565b34801561042f57600080fd5b5061026b61043e36600461199d565b610c5e565b34801561044f57600080fd5b5061026b61045e3660046119d9565b610c69565b34801561046f57600080fd5b50610206610ca1565b34801561048457600080fd5b50610206610493366004611812565b610cae565b3480156104a457600080fd5b506101dc6104b3366004611a55565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104ed57600080fd5b5061026b6104fc3660046118ad565b610d8c565b34801561050d57600080fd5b506102836101f481565b60006001600160e01b031982166380ac58cd60e01b148061054857506001600160e01b03198216635b5e139f60e01b145b8061056357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461057890611a88565b80601f01602080910402602001604051908101604052809291908181526020018280546105a490611a88565b80156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b5050505050905090565b600061060682610e14565b506000908152600460205260409020546001600160a01b031690565b600061062d826107a5565b9050806001600160a01b0316836001600160a01b031614156106a05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806106bc57506106bc81336104b3565b61072e5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610697565b6107388383610e73565b505050565b6107473382610ee1565b6107635760405162461bcd60e51b815260040161069790611ac3565b610738838383610f60565b6107766110c4565b6008805460ff19811660ff90911615179055565b61073883838360405180602001604052806000815250610c69565b6000818152600260205260408120546001600160a01b0316806105635760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610697565b60006001600160a01b03821661086f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610697565b506001600160a01b031660009081526003602052604090205490565b6108936110c4565b61089d600061111e565b565b6108a76110c4565b47600060646108b68382611b26565b6108c09190611b45565b60405190915060009073342afcd4457b8acf8d8cac3fff2e0eabfeef69079083908381818185875af1925050503d8060008114610919576040519150601f19603f3d011682016040523d82523d6000602084013e61091e565b606091505b50509050806107385760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610697565b61096a6110c4565b600755565b60606001805461057890611a88565b600b805461098b90611a88565b80601f01602080910402602001604051908101604052809291908181526020018280546109b790611a88565b8015610a045780601f106109d957610100808354040283529160200191610a04565b820191906000526020600020905b8154815290600101906020018083116109e757829003601f168201915b505050505081565b60085460ff16610a545760405162461bcd60e51b81526020600482015260136024820152722a34329039b0b6329034b9903830bab9b2b21760691b6044820152606401610697565b6003811115610abb5760405162461bcd60e51b815260206004820152602d60248201527f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560448201526c103a3930b739b0b1ba34b7b71760991b6064820152608401610697565b336000908152600a6020526040902054600390610ad9908390611b67565b1115610b275760405162461bcd60e51b815260206004820181905260248201527f596f752063616e6e6f74206d696e742074686174206d616e7920746f74616c2e6044820152606401610697565b6009546101f4610b378383611b67565b1115610b7d5760405162461bcd60e51b815260206004820152601560248201527422bc31b2b2b239903a37ba30b61039bab838363c9760591b6044820152606401610697565b3460075483610b8c9190611b26565b1115610bd05760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b6044820152606401610697565b60015b828111610bfd57610bed33610be88385611b67565b611170565b610bf681611b7f565b9050610bd3565b50336000908152600a602052604081208054849290610c1d908490611b67565b925050819055508160096000828254610c369190611b67565b90915550505050565b610c476110c4565b8051610c5a90600b9060208401906116db565b5050565b610c5a33838361118a565b610c733383610ee1565b610c8f5760405162461bcd60e51b815260040161069790611ac3565b610c9b84848484611259565b50505050565b600c805461098b90611a88565b6000818152600260205260409020546060906001600160a01b0316610d2d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610697565b6000610d3761128c565b90506000815111610d575760405180602001604052806000815250610d85565b80610d618461129b565b600c604051602001610d7593929190611b9a565b6040516020818303038152906040525b9392505050565b610d946110c4565b6001600160a01b038116610df95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610697565b610e028161111e565b50565b6001600160a01b03163b151590565b6000818152600260205260409020546001600160a01b0316610e025760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610697565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ea8826107a5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610eed836107a5565b9050806001600160a01b0316846001600160a01b03161480610f3457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610f585750836001600160a01b0316610f4d846105fb565b6001600160a01b0316145b949350505050565b826001600160a01b0316610f73826107a5565b6001600160a01b031614610f995760405162461bcd60e51b815260040161069790611c5e565b6001600160a01b038216610ffb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610697565b826001600160a01b031661100e826107a5565b6001600160a01b0316146110345760405162461bcd60e51b815260040161069790611c5e565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b0316331461089d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610697565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c5a828260405180602001604052806000815250611338565b816001600160a01b0316836001600160a01b031614156111ec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610697565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611264848484610f60565b6112708484848461136b565b610c9b5760405162461bcd60e51b815260040161069790611ca3565b6060600b805461057890611a88565b606060006112a883611478565b600101905060008167ffffffffffffffff8111156112c8576112c86118c8565b6040519080825280601f01601f1916602001820160405280156112f2576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461132b57611330565b6112fc565b509392505050565b6113428383611550565b61134f600084848461136b565b6107385760405162461bcd60e51b815260040161069790611ca3565b60006001600160a01b0384163b1561146d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113af903390899088908890600401611cf5565b602060405180830381600087803b1580156113c957600080fd5b505af19250505080156113f9575060408051601f3d908101601f191682019092526113f691810190611d32565b60015b611453573d808015611427576040519150601f19603f3d011682016040523d82523d6000602084013e61142c565b606091505b50805161144b5760405162461bcd60e51b815260040161069790611ca3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f58565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106114b75772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106114e3576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061150157662386f26fc10000830492506010015b6305f5e1008310611519576305f5e100830492506008015b612710831061152d57612710830492506004015b6064831061153f576064830492506002015b600a83106105635760010192915050565b6001600160a01b0382166115a65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610697565b6000818152600260205260409020546001600160a01b03161561160b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610697565b6000818152600260205260409020546001600160a01b0316156116705760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610697565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546116e790611a88565b90600052602060002090601f016020900481019282611709576000855561174f565b82601f1061172257805160ff191683800117855561174f565b8280016001018555821561174f579182015b8281111561174f578251825591602001919060010190611734565b5061175b92915061175f565b5090565b5b8082111561175b5760008155600101611760565b6001600160e01b031981168114610e0257600080fd5b60006020828403121561179c57600080fd5b8135610d8581611774565b60005b838110156117c25781810151838201526020016117aa565b83811115610c9b5750506000910152565b600081518084526117eb8160208601602086016117a7565b601f01601f19169290920160200192915050565b602081526000610d8560208301846117d3565b60006020828403121561182457600080fd5b5035919050565b80356001600160a01b038116811461184257600080fd5b919050565b6000806040838503121561185a57600080fd5b6118638361182b565b946020939093013593505050565b60008060006060848603121561188657600080fd5b61188f8461182b565b925061189d6020850161182b565b9150604084013590509250925092565b6000602082840312156118bf57600080fd5b610d858261182b565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118f9576118f96118c8565b604051601f8501601f19908116603f01168101908282118183101715611921576119216118c8565b8160405280935085815286868601111561193a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561196657600080fd5b813567ffffffffffffffff81111561197d57600080fd5b8201601f8101841361198e57600080fd5b610f58848235602084016118de565b600080604083850312156119b057600080fd5b6119b98361182b565b9150602083013580151581146119ce57600080fd5b809150509250929050565b600080600080608085870312156119ef57600080fd5b6119f88561182b565b9350611a066020860161182b565b925060408501359150606085013567ffffffffffffffff811115611a2957600080fd5b8501601f81018713611a3a57600080fd5b611a49878235602084016118de565b91505092959194509250565b60008060408385031215611a6857600080fd5b611a718361182b565b9150611a7f6020840161182b565b90509250929050565b600181811c90821680611a9c57607f821691505b60208210811415611abd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611b4057611b40611b10565b500290565b600082611b6257634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611b7a57611b7a611b10565b500190565b6000600019821415611b9357611b93611b10565b5060010190565b600084516020611bad8285838a016117a7565b855191840191611bc08184848a016117a7565b8554920191600090600181811c9080831680611bdd57607f831692505b858310811415611bfb57634e487b7160e01b85526022600452602485fd5b808015611c0f5760018114611c2057611c4d565b60ff19851688528388019550611c4d565b60008b81526020902060005b85811015611c455781548a820152908401908801611c2c565b505083880195505b50939b9a5050505050505050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d28908301846117d3565b9695505050505050565b600060208284031215611d4457600080fd5b8151610d858161177456fea264697066735822122008dcec17efaad33ddeaecea36cc29014b6ea2b797ca661bc66a6f547780f225f64736f6c634300080900334552433732313a207472616e7366657220746f206e6f6e204552433732315265697066733a2f2f62616679626569653564346e7571776c716e7033667a776b68367662727a7269646a76656279703367327a69777434746661636778776f76736969

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80638ecad721116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610478578063e985e9c514610498578063f2fde38b146104e1578063f47c84c51461050157600080fd5b8063a22cb46514610423578063b88d4fde14610443578063c66828621461046357600080fd5b80639abc8320116100c65780639abc8320146103c5578063a035b1fe146103da578063a0712d68146103f0578063a0bcfc7f1461040357600080fd5b80638ecad7211461037b57806391b7f5ed1461039057806395d89b41146103b057600080fd5b806342842e0e1161015957806370a082311161013357806370a0823114610320578063715018a614610340578063853828b6146103555780638da5cb5b1461035d57600080fd5b806342842e0e146102c6578063564566a8146102e65780636352211e1461030057600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461029157806334918dfd146102b157600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d736600461178a565b610517565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610569565b6040516101e891906117ff565b34801561021f57600080fd5b5061023361022e366004611812565b6105fb565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611847565b610622565b005b34801561027957600080fd5b5061028360095481565b6040519081526020016101e8565b34801561029d57600080fd5b5061026b6102ac366004611871565b61073d565b3480156102bd57600080fd5b5061026b61076e565b3480156102d257600080fd5b5061026b6102e1366004611871565b61078a565b3480156102f257600080fd5b506008546101dc9060ff1681565b34801561030c57600080fd5b5061023361031b366004611812565b6107a5565b34801561032c57600080fd5b5061028361033b3660046118ad565b610805565b34801561034c57600080fd5b5061026b61088b565b61026b61089f565b34801561036957600080fd5b506006546001600160a01b0316610233565b34801561038757600080fd5b50610283600381565b34801561039c57600080fd5b5061026b6103ab366004611812565b610962565b3480156103bc57600080fd5b5061020661096f565b3480156103d157600080fd5b5061020661097e565b3480156103e657600080fd5b5061028360075481565b61026b6103fe366004611812565b610a0c565b34801561040f57600080fd5b5061026b61041e366004611954565b610c3f565b34801561042f57600080fd5b5061026b61043e36600461199d565b610c5e565b34801561044f57600080fd5b5061026b61045e3660046119d9565b610c69565b34801561046f57600080fd5b50610206610ca1565b34801561048457600080fd5b50610206610493366004611812565b610cae565b3480156104a457600080fd5b506101dc6104b3366004611a55565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104ed57600080fd5b5061026b6104fc3660046118ad565b610d8c565b34801561050d57600080fd5b506102836101f481565b60006001600160e01b031982166380ac58cd60e01b148061054857506001600160e01b03198216635b5e139f60e01b145b8061056357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461057890611a88565b80601f01602080910402602001604051908101604052809291908181526020018280546105a490611a88565b80156105f15780601f106105c6576101008083540402835291602001916105f1565b820191906000526020600020905b8154815290600101906020018083116105d457829003601f168201915b5050505050905090565b600061060682610e14565b506000908152600460205260409020546001600160a01b031690565b600061062d826107a5565b9050806001600160a01b0316836001600160a01b031614156106a05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806106bc57506106bc81336104b3565b61072e5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610697565b6107388383610e73565b505050565b6107473382610ee1565b6107635760405162461bcd60e51b815260040161069790611ac3565b610738838383610f60565b6107766110c4565b6008805460ff19811660ff90911615179055565b61073883838360405180602001604052806000815250610c69565b6000818152600260205260408120546001600160a01b0316806105635760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610697565b60006001600160a01b03821661086f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610697565b506001600160a01b031660009081526003602052604090205490565b6108936110c4565b61089d600061111e565b565b6108a76110c4565b47600060646108b68382611b26565b6108c09190611b45565b60405190915060009073342afcd4457b8acf8d8cac3fff2e0eabfeef69079083908381818185875af1925050503d8060008114610919576040519150601f19603f3d011682016040523d82523d6000602084013e61091e565b606091505b50509050806107385760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610697565b61096a6110c4565b600755565b60606001805461057890611a88565b600b805461098b90611a88565b80601f01602080910402602001604051908101604052809291908181526020018280546109b790611a88565b8015610a045780601f106109d957610100808354040283529160200191610a04565b820191906000526020600020905b8154815290600101906020018083116109e757829003601f168201915b505050505081565b60085460ff16610a545760405162461bcd60e51b81526020600482015260136024820152722a34329039b0b6329034b9903830bab9b2b21760691b6044820152606401610697565b6003811115610abb5760405162461bcd60e51b815260206004820152602d60248201527f596f752063616e6e6f74206d696e742074686174206d616e7920696e206f6e6560448201526c103a3930b739b0b1ba34b7b71760991b6064820152608401610697565b336000908152600a6020526040902054600390610ad9908390611b67565b1115610b275760405162461bcd60e51b815260206004820181905260248201527f596f752063616e6e6f74206d696e742074686174206d616e7920746f74616c2e6044820152606401610697565b6009546101f4610b378383611b67565b1115610b7d5760405162461bcd60e51b815260206004820152601560248201527422bc31b2b2b239903a37ba30b61039bab838363c9760591b6044820152606401610697565b3460075483610b8c9190611b26565b1115610bd05760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b6044820152606401610697565b60015b828111610bfd57610bed33610be88385611b67565b611170565b610bf681611b7f565b9050610bd3565b50336000908152600a602052604081208054849290610c1d908490611b67565b925050819055508160096000828254610c369190611b67565b90915550505050565b610c476110c4565b8051610c5a90600b9060208401906116db565b5050565b610c5a33838361118a565b610c733383610ee1565b610c8f5760405162461bcd60e51b815260040161069790611ac3565b610c9b84848484611259565b50505050565b600c805461098b90611a88565b6000818152600260205260409020546060906001600160a01b0316610d2d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610697565b6000610d3761128c565b90506000815111610d575760405180602001604052806000815250610d85565b80610d618461129b565b600c604051602001610d7593929190611b9a565b6040516020818303038152906040525b9392505050565b610d946110c4565b6001600160a01b038116610df95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610697565b610e028161111e565b50565b6001600160a01b03163b151590565b6000818152600260205260409020546001600160a01b0316610e025760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610697565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ea8826107a5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610eed836107a5565b9050806001600160a01b0316846001600160a01b03161480610f3457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610f585750836001600160a01b0316610f4d846105fb565b6001600160a01b0316145b949350505050565b826001600160a01b0316610f73826107a5565b6001600160a01b031614610f995760405162461bcd60e51b815260040161069790611c5e565b6001600160a01b038216610ffb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610697565b826001600160a01b031661100e826107a5565b6001600160a01b0316146110345760405162461bcd60e51b815260040161069790611c5e565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b0316331461089d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610697565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c5a828260405180602001604052806000815250611338565b816001600160a01b0316836001600160a01b031614156111ec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610697565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611264848484610f60565b6112708484848461136b565b610c9b5760405162461bcd60e51b815260040161069790611ca3565b6060600b805461057890611a88565b606060006112a883611478565b600101905060008167ffffffffffffffff8111156112c8576112c86118c8565b6040519080825280601f01601f1916602001820160405280156112f2576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461132b57611330565b6112fc565b509392505050565b6113428383611550565b61134f600084848461136b565b6107385760405162461bcd60e51b815260040161069790611ca3565b60006001600160a01b0384163b1561146d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113af903390899088908890600401611cf5565b602060405180830381600087803b1580156113c957600080fd5b505af19250505080156113f9575060408051601f3d908101601f191682019092526113f691810190611d32565b60015b611453573d808015611427576040519150601f19603f3d011682016040523d82523d6000602084013e61142c565b606091505b50805161144b5760405162461bcd60e51b815260040161069790611ca3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f58565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106114b75772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106114e3576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061150157662386f26fc10000830492506010015b6305f5e1008310611519576305f5e100830492506008015b612710831061152d57612710830492506004015b6064831061153f576064830492506002015b600a83106105635760010192915050565b6001600160a01b0382166115a65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610697565b6000818152600260205260409020546001600160a01b03161561160b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610697565b6000818152600260205260409020546001600160a01b0316156116705760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610697565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546116e790611a88565b90600052602060002090601f016020900481019282611709576000855561174f565b82601f1061172257805160ff191683800117855561174f565b8280016001018555821561174f579182015b8281111561174f578251825591602001919060010190611734565b5061175b92915061175f565b5090565b5b8082111561175b5760008155600101611760565b6001600160e01b031981168114610e0257600080fd5b60006020828403121561179c57600080fd5b8135610d8581611774565b60005b838110156117c25781810151838201526020016117aa565b83811115610c9b5750506000910152565b600081518084526117eb8160208601602086016117a7565b601f01601f19169290920160200192915050565b602081526000610d8560208301846117d3565b60006020828403121561182457600080fd5b5035919050565b80356001600160a01b038116811461184257600080fd5b919050565b6000806040838503121561185a57600080fd5b6118638361182b565b946020939093013593505050565b60008060006060848603121561188657600080fd5b61188f8461182b565b925061189d6020850161182b565b9150604084013590509250925092565b6000602082840312156118bf57600080fd5b610d858261182b565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118f9576118f96118c8565b604051601f8501601f19908116603f01168101908282118183101715611921576119216118c8565b8160405280935085815286868601111561193a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561196657600080fd5b813567ffffffffffffffff81111561197d57600080fd5b8201601f8101841361198e57600080fd5b610f58848235602084016118de565b600080604083850312156119b057600080fd5b6119b98361182b565b9150602083013580151581146119ce57600080fd5b809150509250929050565b600080600080608085870312156119ef57600080fd5b6119f88561182b565b9350611a066020860161182b565b925060408501359150606085013567ffffffffffffffff811115611a2957600080fd5b8501601f81018713611a3a57600080fd5b611a49878235602084016118de565b91505092959194509250565b60008060408385031215611a6857600080fd5b611a718361182b565b9150611a7f6020840161182b565b90509250929050565b600181811c90821680611a9c57607f821691505b60208210811415611abd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611b4057611b40611b10565b500290565b600082611b6257634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611b7a57611b7a611b10565b500190565b6000600019821415611b9357611b93611b10565b5060010190565b600084516020611bad8285838a016117a7565b855191840191611bc08184848a016117a7565b8554920191600090600181811c9080831680611bdd57607f831692505b858310811415611bfb57634e487b7160e01b85526022600452602485fd5b808015611c0f5760018114611c2057611c4d565b60ff19851688528388019550611c4d565b60008b81526020902060005b85811015611c455781548a820152908401908801611c2c565b505083880195505b50939b9a5050505050505050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d28908301846117d3565b9695505050505050565b600060208284031215611d4457600080fd5b8151610d858161177456fea264697066735822122008dcec17efaad33ddeaecea36cc29014b6ea2b797ca661bc66a6f547780f225f64736f6c63430008090033

Deployed Bytecode Sourcemap

54807:2717:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35844:305;;;;;;;;;;-1:-1:-1;35844:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35844:305:0;;;;;;;;36772:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38284:171::-;;;;;;;;;;-1:-1:-1;38284:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;38284:171:0;1528:203:1;37802:416:0;;;;;;;;;;-1:-1:-1;37802:416:0;;;;;:::i;:::-;;:::i;:::-;;55099:26;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;55099:26:0;2173:177:1;38984:335:0;;;;;;;;;;-1:-1:-1;38984:335:0;;;;;:::i;:::-;;:::i;56373:91::-;;;;;;;;;;;;;:::i;39390:185::-;;;;;;;;;;-1:-1:-1;39390:185:0;;;;;:::i;:::-;;:::i;55068:24::-;;;;;;;;;;-1:-1:-1;55068:24:0;;;;;;;;36482:223;;;;;;;;;;-1:-1:-1;36482:223:0;;;;;:::i;:::-;;:::i;36213:207::-;;;;;;;;;;-1:-1:-1;36213:207:0;;;;;:::i;:::-;;:::i;53922:103::-;;;;;;;;;;;;;:::i;56674:325::-;;;:::i;53274:87::-;;;;;;;;;;-1:-1:-1;53347:6:0;;-1:-1:-1;;;;;53347:6:0;53274:87;;55016:43;;;;;;;;;;;;55058:1;55016:43;;56580:86;;;;;;;;;;-1:-1:-1;56580:86:0;;;;;:::i;:::-;;:::i;36941:104::-;;;;;;;;;;;;;:::i;55192:21::-;;;;;;;;;;;;;:::i;54972:37::-;;;;;;;;;;;;;;;;55593:743;;;;;;:::i;:::-;;:::i;56472:100::-;;;;;;;;;;-1:-1:-1;56472:100:0;;;;;:::i;:::-;;:::i;38527:155::-;;;;;;;;;;-1:-1:-1;38527:155:0;;;;;:::i;:::-;;:::i;39646:322::-;;;;;;;;;;-1:-1:-1;39646:322:0;;;;;:::i;:::-;;:::i;55220:37::-;;;;;;;;;;;;;:::i;57007:397::-;;;;;;;;;;-1:-1:-1;57007:397:0;;;;;:::i;:::-;;:::i;38753:164::-;;;;;;;;;;-1:-1:-1;38753:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;38874:25:0;;;38850:4;38874:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38753:164;54180:201;;;;;;;;;;-1:-1:-1;54180:201:0;;;;;:::i;:::-;;:::i;54880:37::-;;;;;;;;;;;;54914:3;54880:37;;35844:305;35946:4;-1:-1:-1;;;;;;35983:40:0;;-1:-1:-1;;;35983:40:0;;:105;;-1:-1:-1;;;;;;;36040:48:0;;-1:-1:-1;;;36040:48:0;35983:105;:158;;;-1:-1:-1;;;;;;;;;;27572:40:0;;;36105:36;35963:178;35844:305;-1:-1:-1;;35844:305:0:o;36772:100::-;36826:13;36859:5;36852:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36772:100;:::o;38284:171::-;38360:7;38380:23;38395:7;38380:14;:23::i;:::-;-1:-1:-1;38423:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38423:24:0;;38284:171::o;37802:416::-;37883:13;37899:23;37914:7;37899:14;:23::i;:::-;37883:39;;37947:5;-1:-1:-1;;;;;37941:11:0;:2;-1:-1:-1;;;;;37941:11:0;;;37933:57;;;;-1:-1:-1;;;37933:57:0;;5980:2:1;37933:57:0;;;5962:21:1;6019:2;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;-1:-1:-1;;;6109:18:1;;;6102:31;6150:19;;37933:57:0;;;;;;;;;34303:10;-1:-1:-1;;;;;38025:21:0;;;;:62;;-1:-1:-1;38050:37:0;38067:5;34303:10;38753:164;:::i;38050:37::-;38003:173;;;;-1:-1:-1;;;38003:173:0;;6382:2:1;38003:173:0;;;6364:21:1;6421:2;6401:18;;;6394:30;6460:34;6440:18;;;6433:62;6531:31;6511:18;;;6504:59;6580:19;;38003:173:0;6180:425:1;38003:173:0;38189:21;38198:2;38202:7;38189:8;:21::i;:::-;37872:346;37802:416;;:::o;38984:335::-;39179:41;34303:10;39212:7;39179:18;:41::i;:::-;39171:99;;;;-1:-1:-1;;;39171:99:0;;;;;;;:::i;:::-;39283:28;39293:4;39299:2;39303:7;39283:9;:28::i;56373:91::-;53160:13;:11;:13::i;:::-;56444:12:::1;::::0;;-1:-1:-1;;56428:28:0;::::1;56444:12;::::0;;::::1;56443:13;56428:28;::::0;;56373:91::o;39390:185::-;39528:39;39545:4;39551:2;39555:7;39528:39;;;;;;;;;;;;:16;:39::i;36482:223::-;36554:7;41369:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41369:16:0;;36618:56;;;;-1:-1:-1;;;36618:56:0;;7226:2:1;36618:56:0;;;7208:21:1;7265:2;7245:18;;;7238:30;-1:-1:-1;;;7284:18:1;;;7277:54;7348:18;;36618:56:0;7024:348:1;36213:207:0;36285:7;-1:-1:-1;;;;;36313:19:0;;36305:73;;;;-1:-1:-1;;;36305:73:0;;7579:2:1;36305:73:0;;;7561:21:1;7618:2;7598:18;;;7591:30;7657:34;7637:18;;;7630:62;-1:-1:-1;;;7708:18:1;;;7701:39;7757:19;;36305:73:0;7377:405:1;36305:73:0;-1:-1:-1;;;;;;36396:16:0;;;;;:9;:16;;;;;;;36213:207::o;53922:103::-;53160:13;:11;:13::i;:::-;53987:30:::1;54014:1;53987:18;:30::i;:::-;53922:103::o:0;56674:325::-;53160:13;:11;:13::i;:::-;56753:21:::1;56735:15;56822:3;56806:13;56753:21:::0;56822:3;56806:13:::1;:::i;:::-;:19;;;;:::i;:::-;56860:79;::::0;56785:40;;-1:-1:-1;56838:16:0::1;::::0;56868:42:::1;::::0;56785:40;;56838:16;56860:79;56838:16;56860:79;56785:40;56868:42;56860:79:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56836:103;;;56958:11;56950:41;;;::::0;-1:-1:-1;;;56950:41:0;;8858:2:1;56950:41:0::1;::::0;::::1;8840:21:1::0;8897:2;8877:18;;;8870:30;-1:-1:-1;;;8916:18:1;;;8909:46;8972:18;;56950:41:0::1;8656:340:1::0;56580:86:0;53160:13;:11;:13::i;:::-;56644:5:::1;:14:::0;56580:86::o;36941:104::-;36997:13;37030:7;37023:14;;;;;:::i;55192:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55593:743::-;55663:12;;;;55655:44;;;;-1:-1:-1;;;55655:44:0;;9203:2:1;55655:44:0;;;9185:21:1;9242:2;9222:18;;;9215:30;-1:-1:-1;;;9261:18:1;;;9254:49;9320:18;;55655:44:0;9001:343:1;55655:44:0;55058:1;55718:10;:29;;55710:87;;;;-1:-1:-1;;;55710:87:0;;9551:2:1;55710:87:0;;;9533:21:1;9590:2;9570:18;;;9563:30;9629:34;9609:18;;;9602:62;-1:-1:-1;;;9680:18:1;;;9673:43;9733:19;;55710:87:0;9349:409:1;55710:87:0;55832:10;55816:27;;;;:15;:27;;;;;;55058:1;;55816:40;;55846:10;;55816:40;:::i;:::-;:59;;55808:104;;;;-1:-1:-1;;;55808:104:0;;10098:2:1;55808:104:0;;;10080:21:1;;;10117:18;;;10110:30;10176:34;10156:18;;;10149:62;10228:18;;55808:104:0;9896:356:1;55808:104:0;55948:11;;54914:3;55978:27;55995:10;55948:11;55978:27;:::i;:::-;:41;;55970:75;;;;-1:-1:-1;;;55970:75:0;;10459:2:1;55970:75:0;;;10441:21:1;10498:2;10478:18;;;10471:30;-1:-1:-1;;;10517:18:1;;;10510:51;10578:18;;55970:75:0;10257:345:1;55970:75:0;56086:9;56077:5;;56064:10;:18;;;;:::i;:::-;:31;;56056:63;;;;-1:-1:-1;;;56056:63:0;;10809:2:1;56056:63:0;;;10791:21:1;10848:2;10828:18;;;10821:30;-1:-1:-1;;;10867:18:1;;;10860:49;10926:18;;56056:63:0;10607:343:1;56056:63:0;56148:1;56132:109;56156:10;56151:1;:15;56132:109;;56188:41;56198:10;56210:18;56227:1;56210:14;:18;:::i;:::-;56188:9;:41::i;:::-;56168:3;;;:::i;:::-;;;56132:109;;;-1:-1:-1;56267:10:0;56251:27;;;;:15;:27;;;;;:41;;56282:10;;56251:27;:41;;56282:10;;56251:41;:::i;:::-;;;;;;;;56318:10;56303:11;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;55593:743:0:o;56472:100::-;53160:13;:11;:13::i;:::-;56546:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;56472:100:::0;:::o;38527:155::-;38622:52;34303:10;38655:8;38665;38622:18;:52::i;39646:322::-;39820:41;34303:10;39853:7;39820:18;:41::i;:::-;39812:99;;;;-1:-1:-1;;;39812:99:0;;;;;;;:::i;:::-;39922:38;39936:4;39942:2;39946:7;39955:4;39922:13;:38::i;:::-;39646:322;;;;:::o;55220:37::-;;;;;;;:::i;57007:397::-;41771:4;41369:16;;;:7;:16;;;;;;57080:13;;-1:-1:-1;;;;;41369:16:0;57106:76;;;;-1:-1:-1;;;57106:76:0;;11297:2:1;57106:76:0;;;11279:21:1;11336:2;11316:18;;;11309:30;11375:34;11355:18;;;11348:62;-1:-1:-1;;;11426:18:1;;;11419:45;11481:19;;57106:76:0;11095:411:1;57106:76:0;57196:28;57227:10;:8;:10::i;:::-;57196:41;;57286:1;57261:14;57255:28;:32;:141;;;;;;;;;;;;;;;;;57327:14;57343:18;:7;:16;:18::i;:::-;57363:13;57310:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57255:141;57248:148;57007:397;-1:-1:-1;;;57007:397:0:o;54180:201::-;53160:13;:11;:13::i;:::-;-1:-1:-1;;;;;54269:22:0;::::1;54261:73;;;::::0;-1:-1:-1;;;54261:73:0;;13371:2:1;54261:73:0::1;::::0;::::1;13353:21:1::0;13410:2;13390:18;;;13383:30;13449:34;13429:18;;;13422:62;-1:-1:-1;;;13500:18:1;;;13493:36;13546:19;;54261:73:0::1;13169:402:1::0;54261:73:0::1;54345:28;54364:8;54345:18;:28::i;:::-;54180:201:::0;:::o;16432:326::-;-1:-1:-1;;;;;16727:19:0;;:23;;;16432:326::o;48103:135::-;41771:4;41369:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41369:16:0;48177:53;;;;-1:-1:-1;;;48177:53:0;;7226:2:1;48177:53:0;;;7208:21:1;7265:2;7245:18;;;7238:30;-1:-1:-1;;;7284:18:1;;;7277:54;7348:18;;48177:53:0;7024:348:1;47382:174:0;47457:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;47457:29:0;-1:-1:-1;;;;;47457:29:0;;;;;;;;:24;;47511:23;47457:24;47511:14;:23::i;:::-;-1:-1:-1;;;;;47502:46:0;;;;;;;;;;;47382:174;;:::o;42001:264::-;42094:4;42111:13;42127:23;42142:7;42127:14;:23::i;:::-;42111:39;;42180:5;-1:-1:-1;;;;;42169:16:0;:7;-1:-1:-1;;;;;42169:16:0;;:52;;;-1:-1:-1;;;;;;38874:25:0;;;38850:4;38874:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;42189:32;42169:87;;;;42249:7;-1:-1:-1;;;;;42225:31:0;:20;42237:7;42225:11;:20::i;:::-;-1:-1:-1;;;;;42225:31:0;;42169:87;42161:96;42001:264;-1:-1:-1;;;;42001:264:0:o;46000:1263::-;46159:4;-1:-1:-1;;;;;46132:31:0;:23;46147:7;46132:14;:23::i;:::-;-1:-1:-1;;;;;46132:31:0;;46124:81;;;;-1:-1:-1;;;46124:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46224:16:0;;46216:65;;;;-1:-1:-1;;;46216:65:0;;14184:2:1;46216:65:0;;;14166:21:1;14223:2;14203:18;;;14196:30;14262:34;14242:18;;;14235:62;-1:-1:-1;;;14313:18:1;;;14306:34;14357:19;;46216:65:0;13982:400:1;46216:65:0;46466:4;-1:-1:-1;;;;;46439:31:0;:23;46454:7;46439:14;:23::i;:::-;-1:-1:-1;;;;;46439:31:0;;46431:81;;;;-1:-1:-1;;;46431:81:0;;;;;;;:::i;:::-;46584:24;;;;:15;:24;;;;;;;;46577:31;;-1:-1:-1;;;;;;46577:31:0;;;;;;-1:-1:-1;;;;;47060:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;47060:20:0;;;47095:13;;;;;;;;;:18;;46577:31;47095:18;;;47135:16;;;:7;:16;;;;;;:21;;;;;;;;;;47174:27;;46600:7;;47174:27;;;37872:346;37802:416;;:::o;53439:132::-;53347:6;;-1:-1:-1;;;;;53347:6:0;34303:10;53503:23;53495:68;;;;-1:-1:-1;;;53495:68:0;;14589:2:1;53495:68:0;;;14571:21:1;;;14608:18;;;14601:30;14667:34;14647:18;;;14640:62;14719:18;;53495:68:0;14387:356:1;54541:191:0;54634:6;;;-1:-1:-1;;;;;54651:17:0;;;-1:-1:-1;;;;;;54651:17:0;;;;;;;54684:40;;54634:6;;;54651:17;54634:6;;54684:40;;54615:16;;54684:40;54604:128;54541:191;:::o;42607:110::-;42683:26;42693:2;42697:7;42683:26;;;;;;;;;;;;:9;:26::i;47699:315::-;47854:8;-1:-1:-1;;;;;47845:17:0;:5;-1:-1:-1;;;;;47845:17:0;;;47837:55;;;;-1:-1:-1;;;47837:55:0;;14950:2:1;47837:55:0;;;14932:21:1;14989:2;14969:18;;;14962:30;15028:27;15008:18;;;15001:55;15073:18;;47837:55:0;14748:349:1;47837:55:0;-1:-1:-1;;;;;47903:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;47903:46:0;;;;;;;;;;47965:41;;540::1;;;47965::0;;513:18:1;47965:41:0;;;;;;;47699:315;;;:::o;40849:313::-;41005:28;41015:4;41021:2;41025:7;41005:9;:28::i;:::-;41052:47;41075:4;41081:2;41085:7;41094:4;41052:22;:47::i;:::-;41044:110;;;;-1:-1:-1;;;41044:110:0;;;;;;;:::i;57413:108::-;57473:13;57506:7;57499:14;;;;;:::i;13305:716::-;13361:13;13412:14;13429:17;13440:5;13429:10;:17::i;:::-;13449:1;13429:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13488:18:0;-1:-1:-1;13465:41:0;-1:-1:-1;13630:28:0;;;13646:2;13630:28;13687:288;-1:-1:-1;;13719:5:0;-1:-1:-1;;;13856:2:0;13845:14;;13840:30;13719:5;13827:44;13917:2;13908:11;;;-1:-1:-1;13942:10:0;13938:21;;13954:5;;13938:21;13687:288;;;-1:-1:-1;13996:6:0;13305:716;-1:-1:-1;;;13305:716:0:o;42944:319::-;43073:18;43079:2;43083:7;43073:5;:18::i;:::-;43124:53;43155:1;43159:2;43163:7;43172:4;43124:22;:53::i;:::-;43102:153;;;;-1:-1:-1;;;43102:153:0;;;;;;;:::i;48802:853::-;48956:4;-1:-1:-1;;;;;48977:13:0;;16727:19;:23;48973:675;;49013:71;;-1:-1:-1;;;49013:71:0;;-1:-1:-1;;;;;49013:36:0;;;;;:71;;34303:10;;49064:4;;49070:7;;49079:4;;49013:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49013:71:0;;;;;;;;-1:-1:-1;;49013:71:0;;;;;;;;;;;;:::i;:::-;;;49009:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49254:13:0;;49250:328;;49297:60;;-1:-1:-1;;;49297:60:0;;;;;;;:::i;49250:328::-;49528:6;49522:13;49513:6;49509:2;49505:15;49498:38;49009:584;-1:-1:-1;;;;;;49135:51:0;-1:-1:-1;;;49135:51:0;;-1:-1:-1;49128:58:0;;48973:675;-1:-1:-1;49632:4:0;48802:853;;;;;;:::o;10171:922::-;10224:7;;-1:-1:-1;;;10302:15:0;;10298:102;;-1:-1:-1;;;10338:15:0;;;-1:-1:-1;10382:2:0;10372:12;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;-1:-1:-1;10498:2:0;10488:12;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;-1:-1:-1;10614:2:0;10604:12;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;-1:-1:-1;10728:1:0;10718:11;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;-1:-1:-1;10841:1:0;10831:11;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;-1:-1:-1;10954:1:0;10944:11;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;11079:6;10171:922;-1:-1:-1;;10171:922:0:o;43599:942::-;-1:-1:-1;;;;;43679:16:0;;43671:61;;;;-1:-1:-1;;;43671:61:0;;16471:2:1;43671:61:0;;;16453:21:1;;;16490:18;;;16483:30;16549:34;16529:18;;;16522:62;16601:18;;43671:61:0;16269:356:1;43671:61:0;41771:4;41369:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41369:16:0;41795:31;43743:58;;;;-1:-1:-1;;;43743:58:0;;16832:2:1;43743:58:0;;;16814:21:1;16871:2;16851:18;;;16844:30;16910;16890:18;;;16883:58;16958:18;;43743:58:0;16630:352:1;43743:58:0;41771:4;41369:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41369:16:0;41795:31;43952:58;;;;-1:-1:-1;;;43952:58:0;;16832:2:1;43952:58:0;;;16814:21:1;16871:2;16851:18;;;16844:30;16910;16890:18;;;16883:58;16958:18;;43952:58:0;16630:352:1;43952:58:0;-1:-1:-1;;;;;44359:13:0;;;;;;:9;:13;;;;;;;;:18;;44376:1;44359:18;;;44401:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44401:21:0;;;;;44440:33;44409:7;;44359:13;;44440:33;;44359:13;;44440:33;56546:18:::1;56472:100:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;6610:409::-;6812:2;6794:21;;;6851:2;6831:18;;;6824:30;6890:34;6885:2;6870:18;;6863:62;-1:-1:-1;;;6956:2:1;6941:18;;6934:43;7009:3;6994:19;;6610:409::o;7787:127::-;7848:10;7843:3;7839:20;7836:1;7829:31;7879:4;7876:1;7869:15;7903:4;7900:1;7893:15;7919:168;7959:7;8025:1;8021;8017:6;8013:14;8010:1;8007:21;8002:1;7995:9;7988:17;7984:45;7981:71;;;8032:18;;:::i;:::-;-1:-1:-1;8072:9:1;;7919:168::o;8224:217::-;8264:1;8290;8280:132;;8334:10;8329:3;8325:20;8322:1;8315:31;8369:4;8366:1;8359:15;8397:4;8394:1;8387:15;8280:132;-1:-1:-1;8426:9:1;;8224:217::o;9763:128::-;9803:3;9834:1;9830:6;9827:1;9824:13;9821:39;;;9840:18;;:::i;:::-;-1:-1:-1;9876:9:1;;9763:128::o;10955:135::-;10994:3;-1:-1:-1;;11015:17:1;;11012:43;;;11035:18;;:::i;:::-;-1:-1:-1;11082:1:1;11071:13;;10955:135::o;11637:1527::-;11861:3;11899:6;11893:13;11925:4;11938:51;11982:6;11977:3;11972:2;11964:6;11960:15;11938:51;:::i;:::-;12052:13;;12011:16;;;;12074:55;12052:13;12011:16;12096:15;;;12074:55;:::i;:::-;12218:13;;12151:20;;;12191:1;;12278;12300:18;;;;12353;;;;12380:93;;12458:4;12448:8;12444:19;12432:31;;12380:93;12521:2;12511:8;12508:16;12488:18;12485:40;12482:167;;;-1:-1:-1;;;12548:33:1;;12604:4;12601:1;12594:15;12634:4;12555:3;12622:17;12482:167;12665:18;12692:110;;;;12816:1;12811:328;;;;12658:481;;12692:110;-1:-1:-1;;12727:24:1;;12713:39;;12772:20;;;;-1:-1:-1;12692:110:1;;12811:328;11584:1;11577:14;;;11621:4;11608:18;;12906:1;12920:169;12934:8;12931:1;12928:15;12920:169;;;13016:14;;13001:13;;;12994:37;13059:16;;;;12951:10;;12920:169;;;12924:3;;13120:8;13113:5;13109:20;13102:27;;12658:481;-1:-1:-1;13155:3:1;;11637:1527;-1:-1:-1;;;;;;;;;;;11637:1527:1:o;13576:401::-;13778:2;13760:21;;;13817:2;13797:18;;;13790:30;13856:34;13851:2;13836:18;;13829:62;-1:-1:-1;;;13922:2:1;13907:18;;13900:35;13967:3;13952:19;;13576:401::o;15102:414::-;15304:2;15286:21;;;15343:2;15323:18;;;15316:30;15382:34;15377:2;15362:18;;15355:62;-1:-1:-1;;;15448:2:1;15433:18;;15426:48;15506:3;15491:19;;15102:414::o;15521:489::-;-1:-1:-1;;;;;15790:15:1;;;15772:34;;15842:15;;15837:2;15822:18;;15815:43;15889:2;15874:18;;15867:34;;;15937:3;15932:2;15917:18;;15910:31;;;15715:4;;15958:46;;15984:19;;15976:6;15958:46;:::i;:::-;15950:54;15521:489;-1:-1:-1;;;;;;15521:489:1:o;16015:249::-;16084:6;16137:2;16125:9;16116:7;16112:23;16108:32;16105:52;;;16153:1;16150;16143:12;16105:52;16185:9;16179:16;16204:30;16228:5;16204:30;:::i

Swarm Source

ipfs://08dcec17efaad33ddeaecea36cc29014b6ea2b797ca661bc66a6f547780f225f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.