ETH Price: $3,415.32 (-1.52%)
Gas: 4 Gwei

Token

Bored Punks (BP)
 

Overview

Max Total Supply

3,000 BP

Holders

92

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
BoredPunks

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-12
*/

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


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

pragma solidity ^0.8.0;


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

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

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

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


// Creators: locationtba.eth, 2pmflow.eth

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // 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
   * `maxBatchSize` refers to how much a minter can mint at a time.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

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

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

    _operatorApprovals[_msgSender()][operator] = approved;
    emit ApprovalForAll(_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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}
// 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: BoredPunks.sol




 
 /*

============================================== Bored Punks ==============================================
*/                                                                                                         



pragma solidity >=0.8.9 <0.9.0;



/**
 * @title Bored Punks
 */
                                                                                                     
                                                                                            
contract BoredPunks is ERC721A, Ownable {
    using Strings for uint256;
    bool public saleIsActive = true;
    uint256 public Price = 0.035 ether;
    
    string private _baseURIextended = "https://boredpunks.s3.us-west-1.amazonaws.com/metadatas/";	         
    
	
    constructor() ERC721A("Bored Punks", "BP",500) {       
    }

    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
            string(
                abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")
            );
    }

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

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

    function setPrice(uint256 newPrice) public onlyOwner {
        Price = newPrice;
    }

    function mint(uint256 numberOfTokens) external payable {    
        uint256 totalNum = 10000;
        require(totalSupply() + numberOfTokens <= totalNum, "already mint out");      
        require((Price * numberOfTokens) <= msg.value, "Don't send under (in ETH).");
        _safeMint(msg.sender, numberOfTokens);       	                
    }

    function mintBatch(address to, uint256 quantity) external onlyOwner {
        uint256 totalNum = 10000;
        uint256 maxBatchSize = 500;
        require(totalSupply() + quantity <= totalNum, "already mint out");
        require(quantity % maxBatchSize == 0, "can only mint a multiple of the maxBatchSize");

        uint256 numChunks = quantity / maxBatchSize;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(to, maxBatchSize);
        }
    }

    function gift(address _to,uint256 numberOfTokens) external onlyOwner {    
        uint256 totalNum = 10000; 
        require(totalSupply() + numberOfTokens <= totalNum, "already mint out");            
        _safeMint(_to, numberOfTokens);
    }

    function withdraw() public onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

}

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":"Price","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newPrice","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60008080556007556008805460ff60a01b1916600160a01b179055667c585087238000600955610100604052603860a0818152906200249160c039600a906200004990826200022b565b503480156200005757600080fd5b506040518060400160405280600b81526020016a426f7265642050756e6b7360a81b81525060405180604001604052806002815260200161042560f41b8152506101f460008111620000ff5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b60016200010d84826200022b565b5060026200011c83826200022b565b50608052506200012e90503362000134565b620002f7565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001b157607f821691505b602082108103620001d257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200022657600081815260208120601f850160051c81016020861015620002015750805b601f850160051c820191505b8181101562000222578281556001016200020d565b5050505b505050565b81516001600160401b0381111562000247576200024762000186565b6200025f816200025884546200019c565b84620001d8565b602080601f8311600181146200029757600084156200027e5750858301515b600019600386901b1c1916600185901b17855562000222565b600085815260208120601f198616915b82811015620002c857888601518255948401946001909101908401620002a7565b5085821015620002e75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805161217062000321600039600081816113f80152818161142201526117d301526121706000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063d7224ba011610064578063d7224ba0146104b2578063e985e9c5146104c8578063eb8d244414610511578063f2fde38b1461053257600080fd5b8063b88d4fde14610452578063c87b56dd14610472578063cbce4c971461049257600080fd5b806395d89b41116100c657806395d89b41146103f45780639dfde20114610409578063a0712d681461041f578063a22cb4651461043257600080fd5b8063715018a6146103a15780638da5cb5b146103b657806391b7f5ed146103d457600080fd5b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461032157806355f804b3146103415780636352211e1461036157806370a082311461038157600080fd5b80632f745c59146102cc5780633ccfd60b146102ec57806342842e0e1461030157600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461028c578063248b71fc146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611adf565b610552565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105bf565b6040516101e89190611b53565b34801561021f57600080fd5b5061023361022e366004611b66565b610651565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611b9b565b6106e1565b005b34801561027957600080fd5b506000545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a7366004611bc5565b6107f8565b3480156102b857600080fd5b5061026b6102c7366004611b9b565b610803565b3480156102d857600080fd5b5061027e6102e7366004611b9b565b6108ed565b3480156102f857600080fd5b5061026b610a59565b34801561030d57600080fd5b5061026b61031c366004611bc5565b610b22565b34801561032d57600080fd5b5061027e61033c366004611b66565b610b3d565b34801561034d57600080fd5b5061026b61035c366004611c8d565b610b9f565b34801561036d57600080fd5b5061023361037c366004611b66565b610bb7565b34801561038d57600080fd5b5061027e61039c366004611cd6565b610bc9565b3480156103ad57600080fd5b5061026b610c5a565b3480156103c257600080fd5b506008546001600160a01b0316610233565b3480156103e057600080fd5b5061026b6103ef366004611b66565b610c6e565b34801561040057600080fd5b50610206610c7b565b34801561041557600080fd5b5061027e60095481565b61026b61042d366004611b66565b610c8a565b34801561043e57600080fd5b5061026b61044d366004611cf1565b610d27565b34801561045e57600080fd5b5061026b61046d366004611d2d565b610deb565b34801561047e57600080fd5b5061020661048d366004611b66565b610e24565b34801561049e57600080fd5b5061026b6104ad366004611b9b565b610e64565b3480156104be57600080fd5b5061027e60075481565b3480156104d457600080fd5b506101dc6104e3366004611da9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561051d57600080fd5b506008546101dc90600160a01b900460ff1681565b34801561053e57600080fd5b5061026b61054d366004611cd6565b610eac565b60006001600160e01b031982166380ac58cd60e01b148061058357506001600160e01b03198216635b5e139f60e01b145b8061059e57506001600160e01b0319821663780e9d6360e01b145b806105b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ce90611ddc565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa90611ddc565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b600061065e826000541190565b6106c55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ec82610bb7565b9050806001600160a01b0316836001600160a01b03160361075a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106bc565b336001600160a01b0382161480610776575061077681336104e3565b6107e85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106bc565b6107f3838383610f22565b505050565b6107f3838383610f7e565b61080b611302565b6127106101f4818361081c60005490565b6108269190611e2c565b11156108445760405162461bcd60e51b81526004016106bc90611e3f565b61084e8184611e7f565b156108b05760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016106bc565b60006108bc8285611e93565b905060005b818110156108e5576108d3868461135c565b806108dd81611ea7565b9150506108c1565b505050505050565b60006108f883610bc9565b82106109515760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106bc565b600080549080805b838110156109f9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109ac57805192505b876001600160a01b0316836001600160a01b0316036109e6578684036109d8575093506105b992505050565b836109e281611ea7565b9450505b50806109f181611ea7565b915050610959565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106bc565b610a61611302565b604051600090339047908381818185875af1925050503d8060008114610aa3576040519150601f19603f3d011682016040523d82523d6000602084013e610aa8565b606091505b5050905080610b1f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106bc565b50565b6107f383838360405180602001604052806000815250610deb565b600080548210610b9b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106bc565b5090565b610ba7611302565b600a610bb38282611f06565b5050565b6000610bc282611376565b5192915050565b60006001600160a01b038216610c355760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106bc565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610c62611302565b610c6c6000611520565b565b610c76611302565b600955565b6060600280546105ce90611ddc565b6127108082610c9860005490565b610ca29190611e2c565b1115610cc05760405162461bcd60e51b81526004016106bc90611e3f565b3482600954610ccf9190611fc6565b1115610d1d5760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e00000000000060448201526064016106bc565b610bb3338361135c565b336001600160a01b03831603610d7f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106bc565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610df6848484610f7e565b610e0284848484611572565b610e1e5760405162461bcd60e51b81526004016106bc90611fdd565b50505050565b60606000610e30611674565b905080610e3c84611683565b604051602001610e4d929190612030565b604051602081830303815290604052915050919050565b610e6c611302565b6127108082610e7a60005490565b610e849190611e2c565b1115610ea25760405162461bcd60e51b81526004016106bc90611e3f565b6107f3838361135c565b610eb4611302565b6001600160a01b038116610f195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bc565b610b1f81611520565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f8982611376565b80519091506000906001600160a01b0316336001600160a01b03161480610fc0575033610fb584610651565b6001600160a01b0316145b80610fd257508151610fd290336104e3565b90508061103c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106bc565b846001600160a01b031682600001516001600160a01b0316146110b05760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106bc565b6001600160a01b0384166111145760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106bc565b6111246000848460000151610f22565b6001600160a01b03851660009081526004602052604081208054600192906111569084906001600160801b031661206f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926111a291859116612096565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561122a846001611e2c565b6000818152600360205260409020549091506001600160a01b03166112bc57611254816000541190565b156112bc5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46108e5565b6008546001600160a01b03163314610c6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106bc565b610bb3828260405180602001604052806000815250611716565b6040805180820190915260008082526020820152611395826000541190565b6113f45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106bc565b60007f00000000000000000000000000000000000000000000000000000000000000008310611455576114477f0000000000000000000000000000000000000000000000000000000000000000846120b6565b611452906001611e2c565b90505b825b8181106114bf576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156114ac57949350505050565b50806114b7816120c9565b915050611457565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106bc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561166857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115b69033908990889088906004016120e0565b6020604051808303816000875af19250505080156115f1575060408051601f3d908101601f191682019092526115ee9181019061211d565b60015b61164e573d80801561161f576040519150601f19603f3d011682016040523d82523d6000602084013e611624565b606091505b5080516000036116465760405162461bcd60e51b81526004016106bc90611fdd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061166c565b5060015b949350505050565b6060600a80546105ce90611ddc565b60606000611690836119f1565b600101905060008167ffffffffffffffff8111156116b0576116b0611c01565b6040519080825280601f01601f1916602001820160405280156116da576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846116e457509392505050565b6000546001600160a01b0384166117795760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106bc565b611784816000541190565b156117d15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106bc565b7f000000000000000000000000000000000000000000000000000000000000000083111561184c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106bc565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906118a8908790612096565b6001600160801b031681526020018583602001516118c69190612096565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156119e65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119aa6000888488611572565b6119c65760405162461bcd60e51b81526004016106bc90611fdd565b816119d081611ea7565b92505080806119de90611ea7565b91505061195d565b5060008190556108e5565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611a305772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611a5c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611a7a57662386f26fc10000830492506010015b6305f5e1008310611a92576305f5e100830492506008015b6127108310611aa657612710830492506004015b60648310611ab8576064830492506002015b600a83106105b95760010192915050565b6001600160e01b031981168114610b1f57600080fd5b600060208284031215611af157600080fd5b8135611afc81611ac9565b9392505050565b60005b83811015611b1e578181015183820152602001611b06565b50506000910152565b60008151808452611b3f816020860160208601611b03565b601f01601f19169290920160200192915050565b602081526000611afc6020830184611b27565b600060208284031215611b7857600080fd5b5035919050565b80356001600160a01b0381168114611b9657600080fd5b919050565b60008060408385031215611bae57600080fd5b611bb783611b7f565b946020939093013593505050565b600080600060608486031215611bda57600080fd5b611be384611b7f565b9250611bf160208501611b7f565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c3257611c32611c01565b604051601f8501601f19908116603f01168101908282118183101715611c5a57611c5a611c01565b81604052809350858152868686011115611c7357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c9f57600080fd5b813567ffffffffffffffff811115611cb657600080fd5b8201601f81018413611cc757600080fd5b61166c84823560208401611c17565b600060208284031215611ce857600080fd5b611afc82611b7f565b60008060408385031215611d0457600080fd5b611d0d83611b7f565b915060208301358015158114611d2257600080fd5b809150509250929050565b60008060008060808587031215611d4357600080fd5b611d4c85611b7f565b9350611d5a60208601611b7f565b925060408501359150606085013567ffffffffffffffff811115611d7d57600080fd5b8501601f81018713611d8e57600080fd5b611d9d87823560208401611c17565b91505092959194509250565b60008060408385031215611dbc57600080fd5b611dc583611b7f565b9150611dd360208401611b7f565b90509250929050565b600181811c90821680611df057607f821691505b602082108103611e1057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105b9576105b9611e16565b60208082526010908201526f185b1c9958591e481b5a5b9d081bdd5d60821b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b600082611e8e57611e8e611e69565b500690565b600082611ea257611ea2611e69565b500490565b600060018201611eb957611eb9611e16565b5060010190565b601f8211156107f357600081815260208120601f850160051c81016020861015611ee75750805b601f850160051c820191505b818110156108e557828155600101611ef3565b815167ffffffffffffffff811115611f2057611f20611c01565b611f3481611f2e8454611ddc565b84611ec0565b602080601f831160018114611f695760008415611f515750858301515b600019600386901b1c1916600185901b1785556108e5565b600085815260208120601f198616915b82811015611f9857888601518255948401946001909101908401611f79565b5085821015611fb65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176105b9576105b9611e16565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612042818460208801611b03565b835190830190612056818360208801611b03565b64173539b7b760d91b9101908152600501949350505050565b6001600160801b0382811682821603908082111561208f5761208f611e16565b5092915050565b6001600160801b0381811683821601908082111561208f5761208f611e16565b818103818111156105b9576105b9611e16565b6000816120d8576120d8611e16565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061211390830184611b27565b9695505050505050565b60006020828403121561212f57600080fd5b8151611afc81611ac956fea26469706673582212204dfbd962e73613e4d607c1e16a741c9124274fec8d7b35df8e1b54f2b1ceb27564736f6c6343000811003368747470733a2f2f626f72656470756e6b732e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6d65746164617461732f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063d7224ba011610064578063d7224ba0146104b2578063e985e9c5146104c8578063eb8d244414610511578063f2fde38b1461053257600080fd5b8063b88d4fde14610452578063c87b56dd14610472578063cbce4c971461049257600080fd5b806395d89b41116100c657806395d89b41146103f45780639dfde20114610409578063a0712d681461041f578063a22cb4651461043257600080fd5b8063715018a6146103a15780638da5cb5b146103b657806391b7f5ed146103d457600080fd5b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461032157806355f804b3146103415780636352211e1461036157806370a082311461038157600080fd5b80632f745c59146102cc5780633ccfd60b146102ec57806342842e0e1461030157600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461028c578063248b71fc146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611adf565b610552565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105bf565b6040516101e89190611b53565b34801561021f57600080fd5b5061023361022e366004611b66565b610651565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611b9b565b6106e1565b005b34801561027957600080fd5b506000545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a7366004611bc5565b6107f8565b3480156102b857600080fd5b5061026b6102c7366004611b9b565b610803565b3480156102d857600080fd5b5061027e6102e7366004611b9b565b6108ed565b3480156102f857600080fd5b5061026b610a59565b34801561030d57600080fd5b5061026b61031c366004611bc5565b610b22565b34801561032d57600080fd5b5061027e61033c366004611b66565b610b3d565b34801561034d57600080fd5b5061026b61035c366004611c8d565b610b9f565b34801561036d57600080fd5b5061023361037c366004611b66565b610bb7565b34801561038d57600080fd5b5061027e61039c366004611cd6565b610bc9565b3480156103ad57600080fd5b5061026b610c5a565b3480156103c257600080fd5b506008546001600160a01b0316610233565b3480156103e057600080fd5b5061026b6103ef366004611b66565b610c6e565b34801561040057600080fd5b50610206610c7b565b34801561041557600080fd5b5061027e60095481565b61026b61042d366004611b66565b610c8a565b34801561043e57600080fd5b5061026b61044d366004611cf1565b610d27565b34801561045e57600080fd5b5061026b61046d366004611d2d565b610deb565b34801561047e57600080fd5b5061020661048d366004611b66565b610e24565b34801561049e57600080fd5b5061026b6104ad366004611b9b565b610e64565b3480156104be57600080fd5b5061027e60075481565b3480156104d457600080fd5b506101dc6104e3366004611da9565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561051d57600080fd5b506008546101dc90600160a01b900460ff1681565b34801561053e57600080fd5b5061026b61054d366004611cd6565b610eac565b60006001600160e01b031982166380ac58cd60e01b148061058357506001600160e01b03198216635b5e139f60e01b145b8061059e57506001600160e01b0319821663780e9d6360e01b145b806105b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ce90611ddc565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa90611ddc565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b600061065e826000541190565b6106c55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ec82610bb7565b9050806001600160a01b0316836001600160a01b03160361075a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106bc565b336001600160a01b0382161480610776575061077681336104e3565b6107e85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106bc565b6107f3838383610f22565b505050565b6107f3838383610f7e565b61080b611302565b6127106101f4818361081c60005490565b6108269190611e2c565b11156108445760405162461bcd60e51b81526004016106bc90611e3f565b61084e8184611e7f565b156108b05760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016106bc565b60006108bc8285611e93565b905060005b818110156108e5576108d3868461135c565b806108dd81611ea7565b9150506108c1565b505050505050565b60006108f883610bc9565b82106109515760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106bc565b600080549080805b838110156109f9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109ac57805192505b876001600160a01b0316836001600160a01b0316036109e6578684036109d8575093506105b992505050565b836109e281611ea7565b9450505b50806109f181611ea7565b915050610959565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106bc565b610a61611302565b604051600090339047908381818185875af1925050503d8060008114610aa3576040519150601f19603f3d011682016040523d82523d6000602084013e610aa8565b606091505b5050905080610b1f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106bc565b50565b6107f383838360405180602001604052806000815250610deb565b600080548210610b9b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106bc565b5090565b610ba7611302565b600a610bb38282611f06565b5050565b6000610bc282611376565b5192915050565b60006001600160a01b038216610c355760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106bc565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610c62611302565b610c6c6000611520565b565b610c76611302565b600955565b6060600280546105ce90611ddc565b6127108082610c9860005490565b610ca29190611e2c565b1115610cc05760405162461bcd60e51b81526004016106bc90611e3f565b3482600954610ccf9190611fc6565b1115610d1d5760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e00000000000060448201526064016106bc565b610bb3338361135c565b336001600160a01b03831603610d7f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106bc565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610df6848484610f7e565b610e0284848484611572565b610e1e5760405162461bcd60e51b81526004016106bc90611fdd565b50505050565b60606000610e30611674565b905080610e3c84611683565b604051602001610e4d929190612030565b604051602081830303815290604052915050919050565b610e6c611302565b6127108082610e7a60005490565b610e849190611e2c565b1115610ea25760405162461bcd60e51b81526004016106bc90611e3f565b6107f3838361135c565b610eb4611302565b6001600160a01b038116610f195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bc565b610b1f81611520565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f8982611376565b80519091506000906001600160a01b0316336001600160a01b03161480610fc0575033610fb584610651565b6001600160a01b0316145b80610fd257508151610fd290336104e3565b90508061103c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106bc565b846001600160a01b031682600001516001600160a01b0316146110b05760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106bc565b6001600160a01b0384166111145760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106bc565b6111246000848460000151610f22565b6001600160a01b03851660009081526004602052604081208054600192906111569084906001600160801b031661206f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926111a291859116612096565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561122a846001611e2c565b6000818152600360205260409020549091506001600160a01b03166112bc57611254816000541190565b156112bc5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46108e5565b6008546001600160a01b03163314610c6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106bc565b610bb3828260405180602001604052806000815250611716565b6040805180820190915260008082526020820152611395826000541190565b6113f45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106bc565b60007f00000000000000000000000000000000000000000000000000000000000001f48310611455576114477f00000000000000000000000000000000000000000000000000000000000001f4846120b6565b611452906001611e2c565b90505b825b8181106114bf576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156114ac57949350505050565b50806114b7816120c9565b915050611457565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106bc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561166857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906115b69033908990889088906004016120e0565b6020604051808303816000875af19250505080156115f1575060408051601f3d908101601f191682019092526115ee9181019061211d565b60015b61164e573d80801561161f576040519150601f19603f3d011682016040523d82523d6000602084013e611624565b606091505b5080516000036116465760405162461bcd60e51b81526004016106bc90611fdd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061166c565b5060015b949350505050565b6060600a80546105ce90611ddc565b60606000611690836119f1565b600101905060008167ffffffffffffffff8111156116b0576116b0611c01565b6040519080825280601f01601f1916602001820160405280156116da576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846116e457509392505050565b6000546001600160a01b0384166117795760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106bc565b611784816000541190565b156117d15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106bc565b7f00000000000000000000000000000000000000000000000000000000000001f483111561184c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106bc565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906118a8908790612096565b6001600160801b031681526020018583602001516118c69190612096565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156119e65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119aa6000888488611572565b6119c65760405162461bcd60e51b81526004016106bc90611fdd565b816119d081611ea7565b92505080806119de90611ea7565b91505061195d565b5060008190556108e5565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611a305772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611a5c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611a7a57662386f26fc10000830492506010015b6305f5e1008310611a92576305f5e100830492506008015b6127108310611aa657612710830492506004015b60648310611ab8576064830492506002015b600a83106105b95760010192915050565b6001600160e01b031981168114610b1f57600080fd5b600060208284031215611af157600080fd5b8135611afc81611ac9565b9392505050565b60005b83811015611b1e578181015183820152602001611b06565b50506000910152565b60008151808452611b3f816020860160208601611b03565b601f01601f19169290920160200192915050565b602081526000611afc6020830184611b27565b600060208284031215611b7857600080fd5b5035919050565b80356001600160a01b0381168114611b9657600080fd5b919050565b60008060408385031215611bae57600080fd5b611bb783611b7f565b946020939093013593505050565b600080600060608486031215611bda57600080fd5b611be384611b7f565b9250611bf160208501611b7f565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c3257611c32611c01565b604051601f8501601f19908116603f01168101908282118183101715611c5a57611c5a611c01565b81604052809350858152868686011115611c7357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c9f57600080fd5b813567ffffffffffffffff811115611cb657600080fd5b8201601f81018413611cc757600080fd5b61166c84823560208401611c17565b600060208284031215611ce857600080fd5b611afc82611b7f565b60008060408385031215611d0457600080fd5b611d0d83611b7f565b915060208301358015158114611d2257600080fd5b809150509250929050565b60008060008060808587031215611d4357600080fd5b611d4c85611b7f565b9350611d5a60208601611b7f565b925060408501359150606085013567ffffffffffffffff811115611d7d57600080fd5b8501601f81018713611d8e57600080fd5b611d9d87823560208401611c17565b91505092959194509250565b60008060408385031215611dbc57600080fd5b611dc583611b7f565b9150611dd360208401611b7f565b90509250929050565b600181811c90821680611df057607f821691505b602082108103611e1057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105b9576105b9611e16565b60208082526010908201526f185b1c9958591e481b5a5b9d081bdd5d60821b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b600082611e8e57611e8e611e69565b500690565b600082611ea257611ea2611e69565b500490565b600060018201611eb957611eb9611e16565b5060010190565b601f8211156107f357600081815260208120601f850160051c81016020861015611ee75750805b601f850160051c820191505b818110156108e557828155600101611ef3565b815167ffffffffffffffff811115611f2057611f20611c01565b611f3481611f2e8454611ddc565b84611ec0565b602080601f831160018114611f695760008415611f515750858301515b600019600386901b1c1916600185901b1785556108e5565b600085815260208120601f198616915b82811015611f9857888601518255948401946001909101908401611f79565b5085821015611fb65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176105b9576105b9611e16565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612042818460208801611b03565b835190830190612056818360208801611b03565b64173539b7b760d91b9101908152600501949350505050565b6001600160801b0382811682821603908082111561208f5761208f611e16565b5092915050565b6001600160801b0381811683821601908082111561208f5761208f611e16565b818103818111156105b9576105b9611e16565b6000816120d8576120d8611e16565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061211390830184611b27565b9695505050505050565b60006020828403121561212f57600080fd5b8151611afc81611ac956fea26469706673582212204dfbd962e73613e4d607c1e16a741c9124274fec8d7b35df8e1b54f2b1ceb27564736f6c63430008110033

Deployed Bytecode Sourcemap

54359:2483:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38911:370;;;;;;;;;;-1:-1:-1;38911:370:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;38911:370:0;;;;;;;;40637:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42162:204::-;;;;;;;;;;-1:-1:-1;42162:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;42162:204:0;1533:203:1;41725:379:0;;;;;;;;;;-1:-1:-1;41725:379:0;;;;;:::i;:::-;;:::i;:::-;;37475:94;;;;;;;;;;-1:-1:-1;37528:7:0;37551:12;37475:94;;;2324:25:1;;;2312:2;2297:18;37475:94:0;2178:177:1;43012:142:0;;;;;;;;;;-1:-1:-1;43012:142:0;;;;;:::i;:::-;;:::i;55839:480::-;;;;;;;;;;-1:-1:-1;55839:480:0;;;;;:::i;:::-;;:::i;38103:744::-;;;;;;;;;;-1:-1:-1;38103:744:0;;;;;:::i;:::-;;:::i;56587:250::-;;;;;;;;;;;;;:::i;43217:157::-;;;;;;;;;;-1:-1:-1;43217:157:0;;;;;:::i;:::-;;:::i;37638:177::-;;;;;;;;;;-1:-1:-1;37638:177:0;;;;;:::i;:::-;;:::i;55142:111::-;;;;;;;;;;-1:-1:-1;55142:111:0;;;;;:::i;:::-;;:::i;40460:118::-;;;;;;;;;;-1:-1:-1;40460:118:0;;;;;:::i;:::-;;:::i;39337:211::-;;;;;;;;;;-1:-1:-1;39337:211:0;;;;;:::i;:::-;;:::i;53008:103::-;;;;;;;;;;;;;:::i;52360:87::-;;;;;;;;;;-1:-1:-1;52433:6:0;;-1:-1:-1;;;;;52433:6:0;52360:87;;55386:88;;;;;;;;;;-1:-1:-1;55386:88:0;;;;;:::i;:::-;;:::i;40792:98::-;;;;;;;;;;;;;:::i;54476:34::-;;;;;;;;;;;;;;;;55482:349;;;;;;:::i;:::-;;:::i;42430:274::-;;;;;;;;;;-1:-1:-1;42430:274:0;;;;;:::i;:::-;;:::i;43437:311::-;;;;;;;;;;-1:-1:-1;43437:311:0;;;;;:::i;:::-;;:::i;54711:423::-;;;;;;;;;;-1:-1:-1;54711:423:0;;;;;:::i;:::-;;:::i;56327:252::-;;;;;;;;;;-1:-1:-1;56327:252:0;;;;;:::i;:::-;;:::i;47768:43::-;;;;;;;;;;;;;;;;42767:186;;;;;;;;;;-1:-1:-1;42767:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;42912:25:0;;;42889:4;42912:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42767:186;54438:31;;;;;;;;;;-1:-1:-1;54438:31:0;;;;-1:-1:-1;;;54438:31:0;;;;;;53266:201;;;;;;;;;;-1:-1:-1;53266:201:0;;;;;:::i;:::-;;:::i;38911:370::-;39038:4;-1:-1:-1;;;;;;39068:40:0;;-1:-1:-1;;;39068:40:0;;:99;;-1:-1:-1;;;;;;;39119:48:0;;-1:-1:-1;;;39119:48:0;39068:99;:160;;;-1:-1:-1;;;;;;;39178:50:0;;-1:-1:-1;;;39178:50:0;39068:160;:207;;;-1:-1:-1;;;;;;;;;;12373:40:0;;;39239:36;39054:221;38911:370;-1:-1:-1;;38911:370:0:o;40637:94::-;40691:13;40720:5;40713:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40637:94;:::o;42162:204::-;42230:7;42254:16;42262:7;44044:4;44074:12;-1:-1:-1;44064:22:0;43987:105;42254:16;42246:74;;;;-1:-1:-1;;;42246:74:0;;5985:2:1;42246:74:0;;;5967:21:1;6024:2;6004:18;;;5997:30;6063:34;6043:18;;;6036:62;-1:-1:-1;;;6114:18:1;;;6107:43;6167:19;;42246:74:0;;;;;;;;;-1:-1:-1;42336:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42336:24:0;;42162:204::o;41725:379::-;41794:13;41810:24;41826:7;41810:15;:24::i;:::-;41794:40;;41855:5;-1:-1:-1;;;;;41849:11:0;:2;-1:-1:-1;;;;;41849:11:0;;41841:58;;;;-1:-1:-1;;;41841:58:0;;6399:2:1;41841:58:0;;;6381:21:1;6438:2;6418:18;;;6411:30;6477:34;6457:18;;;6450:62;-1:-1:-1;;;6528:18:1;;;6521:32;6570:19;;41841:58:0;6197:398:1;41841:58:0;35383:10;-1:-1:-1;;;;;41924:21:0;;;;:62;;-1:-1:-1;41949:37:0;41966:5;35383:10;42767:186;:::i;41949:37::-;41908:153;;;;-1:-1:-1;;;41908:153:0;;6802:2:1;41908:153:0;;;6784:21:1;6841:2;6821:18;;;6814:30;6880:34;6860:18;;;6853:62;6951:27;6931:18;;;6924:55;6996:19;;41908:153:0;6600:421:1;41908:153:0;42070:28;42079:2;42083:7;42092:5;42070:8;:28::i;:::-;41787:317;41725:379;;:::o;43012:142::-;43120:28;43130:4;43136:2;43140:7;43120:9;:28::i;55839:480::-;52246:13;:11;:13::i;:::-;55937:5:::1;55976:3;55937:5:::0;56014:8;55998:13:::1;37528:7:::0;37551:12;;37475:94;55998:13:::1;:24;;;;:::i;:::-;:36;;55990:65;;;;-1:-1:-1::0;;;55990:65:0::1;;;;;;;:::i;:::-;56074:23;56085:12:::0;56074:8;:23:::1;:::i;:::-;:28:::0;56066:85:::1;;;::::0;-1:-1:-1;;;56066:85:0;;8084:2:1;56066:85:0::1;::::0;::::1;8066:21:1::0;8123:2;8103:18;;;8096:30;8162:34;8142:18;;;8135:62;-1:-1:-1;;;8213:18:1;;;8206:42;8265:19;;56066:85:0::1;7882:408:1::0;56066:85:0::1;56164:17;56184:23;56195:12:::0;56184:8;:23:::1;:::i;:::-;56164:43;;56223:9;56218:94;56242:9;56238:1;:13;56218:94;;;56273:27;56283:2;56287:12;56273:9;:27::i;:::-;56253:3:::0;::::1;::::0;::::1;:::i;:::-;;;;56218:94;;;;55907:412;;;55839:480:::0;;:::o;38103:744::-;38212:7;38247:16;38257:5;38247:9;:16::i;:::-;38239:5;:24;38231:71;;;;-1:-1:-1;;;38231:71:0;;8762:2:1;38231:71:0;;;8744:21:1;8801:2;8781:18;;;8774:30;8840:34;8820:18;;;8813:62;-1:-1:-1;;;8891:18:1;;;8884:32;8933:19;;38231:71:0;8560:398:1;38231:71:0;38309:22;37551:12;;;38309:22;;38429:350;38453:14;38449:1;:18;38429:350;;;38483:31;38517:14;;;:11;:14;;;;;;;;;38483:48;;;;;;;;;-1:-1:-1;;;;;38483:48:0;;;;;-1:-1:-1;;;38483:48:0;;;;;;;;;;;;38544:28;38540:89;;38605:14;;;-1:-1:-1;38540:89:0;38662:5;-1:-1:-1;;;;;38641:26:0;:17;-1:-1:-1;;;;;38641:26:0;;38637:135;;38699:5;38684:11;:20;38680:59;;-1:-1:-1;38726:1:0;-1:-1:-1;38719:8:0;;-1:-1:-1;;;38719:8:0;38680:59;38749:13;;;;:::i;:::-;;;;38637:135;-1:-1:-1;38469:3:0;;;;:::i;:::-;;;;38429:350;;;-1:-1:-1;38785:56:0;;-1:-1:-1;;;38785:56:0;;9165:2:1;38785:56:0;;;9147:21:1;9204:2;9184:18;;;9177:30;9243:34;9223:18;;;9216:62;-1:-1:-1;;;9294:18:1;;;9287:44;9348:19;;38785:56:0;8963:410:1;56587:250:0;52246:13;:11;:13::i;:::-;56654:49:::1;::::0;56636:12:::1;::::0;56654:10:::1;::::0;56677:21:::1;::::0;56636:12;56654:49;56636:12;56654:49;56677:21;56654:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56635:68;;;56736:7;56714:115;;;::::0;-1:-1:-1;;;56714:115:0;;9790:2:1;56714:115:0::1;::::0;::::1;9772:21:1::0;9829:2;9809:18;;;9802:30;9868:34;9848:18;;;9841:62;9939:28;9919:18;;;9912:56;9985:19;;56714:115:0::1;9588:422:1::0;56714:115:0::1;56624:213;56587:250::o:0;43217:157::-;43329:39;43346:4;43352:2;43356:7;43329:39;;;;;;;;;;;;:16;:39::i;37638:177::-;37705:7;37551:12;;37729:5;:21;37721:69;;;;-1:-1:-1;;;37721:69:0;;10217:2:1;37721:69:0;;;10199:21:1;10256:2;10236:18;;;10229:30;10295:34;10275:18;;;10268:62;-1:-1:-1;;;10346:18:1;;;10339:33;10389:19;;37721:69:0;10015:399:1;37721:69:0;-1:-1:-1;37804:5:0;37638:177::o;55142:111::-;52246:13;:11;:13::i;:::-;55218:16:::1;:27;55237:8:::0;55218:16;:27:::1;:::i;:::-;;55142:111:::0;:::o;40460:118::-;40524:7;40547:20;40559:7;40547:11;:20::i;:::-;:25;;40460:118;-1:-1:-1;;40460:118:0:o;39337:211::-;39401:7;-1:-1:-1;;;;;39425:19:0;;39417:75;;;;-1:-1:-1;;;39417:75:0;;12825:2:1;39417:75:0;;;12807:21:1;12864:2;12844:18;;;12837:30;12903:34;12883:18;;;12876:62;-1:-1:-1;;;12954:18:1;;;12947:41;13005:19;;39417:75:0;12623:407:1;39417:75:0;-1:-1:-1;;;;;;39514:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;39514:27:0;;39337:211::o;53008:103::-;52246:13;:11;:13::i;:::-;53073:30:::1;53100:1;53073:18;:30::i;:::-;53008:103::o:0;55386:88::-;52246:13;:11;:13::i;:::-;55450:5:::1;:16:::0;55386:88::o;40792:98::-;40848:13;40877:7;40870:14;;;;;:::i;55482:349::-;55571:5;;55611:14;55595:13;37528:7;37551:12;;37475:94;55595:13;:30;;;;:::i;:::-;:42;;55587:71;;;;-1:-1:-1;;;55587:71:0;;;;;;;:::i;:::-;55711:9;55692:14;55684:5;;:22;;;;:::i;:::-;55683:37;;55675:76;;;;-1:-1:-1;;;55675:76:0;;13410:2:1;55675:76:0;;;13392:21:1;13449:2;13429:18;;;13422:30;13488:28;13468:18;;;13461:56;13534:18;;55675:76:0;13208:350:1;55675:76:0;55762:37;55772:10;55784:14;55762:9;:37::i;42430:274::-;35383:10;-1:-1:-1;;;;;42521:24:0;;;42513:63;;;;-1:-1:-1;;;42513:63:0;;13765:2:1;42513:63:0;;;13747:21:1;13804:2;13784:18;;;13777:30;13843:28;13823:18;;;13816:56;13889:18;;42513:63:0;13563:350:1;42513:63:0;35383:10;42585:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;42585:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;42585:53:0;;;;;;;;;;42650:48;;540:41:1;;;42585:42:0;;35383:10;42650:48;;513:18:1;42650:48:0;;;;;;;42430:274;;:::o;43437:311::-;43574:28;43584:4;43590:2;43594:7;43574:9;:28::i;:::-;43625:48;43648:4;43654:2;43658:7;43667:5;43625:22;:48::i;:::-;43609:133;;;;-1:-1:-1;;;43609:133:0;;;;;;;:::i;:::-;43437:311;;;;:::o;54711:423::-;54830:13;54952:28;54983:10;:8;:10::i;:::-;54952:41;;55066:14;55082:19;:8;:17;:19::i;:::-;55049:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55004:122;;;54711:423;;;:::o;56327:252::-;52246:13;:11;:13::i;:::-;56430:5:::1;::::0;56471:14;56455:13:::1;37528:7:::0;37551:12;;37475:94;56455:13:::1;:30;;;;:::i;:::-;:42;;56447:71;;;;-1:-1:-1::0;;;56447:71:0::1;;;;;;;:::i;:::-;56541:30;56551:3;56556:14;56541:9;:30::i;53266:201::-:0;52246:13;:11;:13::i;:::-;-1:-1:-1;;;;;53355:22:0;::::1;53347:73;;;::::0;-1:-1:-1;;;53347:73:0;;15208:2:1;53347:73:0::1;::::0;::::1;15190:21:1::0;15247:2;15227:18;;;15220:30;15286:34;15266:18;;;15259:62;-1:-1:-1;;;15337:18:1;;;15330:36;15383:19;;53347:73:0::1;15006:402:1::0;53347:73:0::1;53431:28;53450:8;53431:18;:28::i;47590:172::-:0;47687:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47687:29:0;-1:-1:-1;;;;;47687:29:0;;;;;;;;;47728:28;;47687:24;;47728:28;;;;;;;47590:172;;;:::o;45955:1529::-;46052:35;46090:20;46102:7;46090:11;:20::i;:::-;46161:18;;46052:58;;-1:-1:-1;46119:22:0;;-1:-1:-1;;;;;46145:34:0;35383:10;-1:-1:-1;;;;;46145:34:0;;:81;;;-1:-1:-1;35383:10:0;46190:20;46202:7;46190:11;:20::i;:::-;-1:-1:-1;;;;;46190:36:0;;46145:81;:142;;;-1:-1:-1;46254:18:0;;46237:50;;35383:10;42767:186;:::i;46237:50::-;46119:169;;46313:17;46297:101;;;;-1:-1:-1;;;46297:101:0;;15615:2:1;46297:101:0;;;15597:21:1;15654:2;15634:18;;;15627:30;15693:34;15673:18;;;15666:62;-1:-1:-1;;;15744:18:1;;;15737:48;15802:19;;46297:101:0;15413:414:1;46297:101:0;46445:4;-1:-1:-1;;;;;46423:26:0;:13;:18;;;-1:-1:-1;;;;;46423:26:0;;46407:98;;;;-1:-1:-1;;;46407:98:0;;16034:2:1;46407:98:0;;;16016:21:1;16073:2;16053:18;;;16046:30;16112:34;16092:18;;;16085:62;-1:-1:-1;;;16163:18:1;;;16156:36;16209:19;;46407:98:0;15832:402:1;46407:98:0;-1:-1:-1;;;;;46520:16:0;;46512:66;;;;-1:-1:-1;;;46512:66:0;;16441:2:1;46512:66:0;;;16423:21:1;16480:2;16460:18;;;16453:30;16519:34;16499:18;;;16492:62;-1:-1:-1;;;16570:18:1;;;16563:35;16615:19;;46512:66:0;16239:401:1;46512:66:0;46687:49;46704:1;46708:7;46717:13;:18;;;46687:8;:49::i;:::-;-1:-1:-1;;;;;46745:18:0;;;;;;:12;:18;;;;;:31;;46775:1;;46745:18;:31;;46775:1;;-1:-1:-1;;;;;46745:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;46745:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46783:16:0;;-1:-1:-1;46783:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;46783:16:0;;:29;;-1:-1:-1;;46783:29:0;;:::i;:::-;;;-1:-1:-1;;;;;46783:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46842:43:0;;;;;;;;-1:-1:-1;;;;;46842:43:0;;;;;;46868:15;46842:43;;;;;;;;;-1:-1:-1;46819:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;46819:66:0;-1:-1:-1;;;;;;46819:66:0;;;;;;;;;;;47135:11;46831:7;-1:-1:-1;47135:11:0;:::i;:::-;47198:1;47157:24;;;:11;:24;;;;;:29;47113:33;;-1:-1:-1;;;;;;47157:29:0;47153:236;;47215:20;47223:11;44044:4;44074:12;-1:-1:-1;44064:22:0;43987:105;47215:20;47211:171;;;47275:97;;;;;;;;47302:18;;-1:-1:-1;;;;;47275:97:0;;;;;;47333:28;;;;47275:97;;;;;;;;;;-1:-1:-1;47248:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;47248:124:0;-1:-1:-1;;;;;;47248:124:0;;;;;;;;;;;;47211:171;47421:7;47417:2;-1:-1:-1;;;;;47402:27:0;47411:4;-1:-1:-1;;;;;47402:27:0;;;;;;;;;;;47436:42;43437:311;52525:132;52433:6;;-1:-1:-1;;;;;52433:6:0;35383:10;52589:23;52581:68;;;;-1:-1:-1;;;52581:68:0;;17254:2:1;52581:68:0;;;17236:21:1;;;17273:18;;;17266:30;17332:34;17312:18;;;17305:62;17384:18;;52581:68:0;17052:356:1;44098:98:0;44163:27;44173:2;44177:8;44163:27;;;;;;;;;;;;:9;:27::i;39800:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;39917:16:0;39925:7;44044:4;44074:12;-1:-1:-1;44064:22:0;43987:105;39917:16;39909:71;;;;-1:-1:-1;;;39909:71:0;;17615:2:1;39909:71:0;;;17597:21:1;17654:2;17634:18;;;17627:30;17693:34;17673:18;;;17666:62;-1:-1:-1;;;17744:18:1;;;17737:40;17794:19;;39909:71:0;17413:406:1;39909:71:0;39989:26;40037:12;40026:7;:23;40022:93;;40081:22;40091:12;40081:7;:22;:::i;:::-;:26;;40106:1;40081:26;:::i;:::-;40060:47;;40022:93;40143:7;40123:212;40160:18;40152:4;:26;40123:212;;40197:31;40231:17;;;:11;:17;;;;;;;;;40197:51;;;;;;;;;-1:-1:-1;;;;;40197:51:0;;;;;-1:-1:-1;;;40197:51:0;;;;;;;;;;;;40261:28;40257:71;;40309:9;39800:606;-1:-1:-1;;;;39800:606:0:o;40257:71::-;-1:-1:-1;40180:6:0;;;;:::i;:::-;;;;40123:212;;;-1:-1:-1;40343:57:0;;-1:-1:-1;;;40343:57:0;;18300:2:1;40343:57:0;;;18282:21:1;18339:2;18319:18;;;18312:30;18378:34;18358:18;;;18351:62;-1:-1:-1;;;18429:18:1;;;18422:45;18484:19;;40343:57:0;18098:411:1;53627:191:0;53720:6;;;-1:-1:-1;;;;;53737:17:0;;;-1:-1:-1;;;;;;53737:17:0;;;;;;;53770:40;;53720:6;;;53737:17;53720:6;;53770:40;;53701:16;;53770:40;53690:128;53627:191;:::o;49301:690::-;49438:4;-1:-1:-1;;;;;49455:13:0;;1528:19;:23;49451:535;;49494:72;;-1:-1:-1;;;49494:72:0;;-1:-1:-1;;;;;49494:36:0;;;;;:72;;35383:10;;49545:4;;49551:7;;49560:5;;49494:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49494:72:0;;;;;;;;-1:-1:-1;;49494:72:0;;;;;;;;;;;;:::i;:::-;;;49481:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49725:6;:13;49742:1;49725:18;49721:215;;49758:61;;-1:-1:-1;;;49758:61:0;;;;;;;:::i;49721:215::-;49904:6;49898:13;49889:6;49885:2;49881:15;49874:38;49481:464;-1:-1:-1;;;;;;49616:55:0;-1:-1:-1;;;49616:55:0;;-1:-1:-1;49609:62:0;;49451:535;-1:-1:-1;49974:4:0;49451:535;49301:690;;;;;;:::o;55261:117::-;55321:13;55354:16;55347:23;;;;;:::i;32730:716::-;32786:13;32837:14;32854:17;32865:5;32854:10;:17::i;:::-;32874:1;32854:21;32837:38;;32890:20;32924:6;32913:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32913:18:0;-1:-1:-1;32890:41:0;-1:-1:-1;33055:28:0;;;33071:2;33055:28;33112:288;-1:-1:-1;;33144:5:0;-1:-1:-1;;;33281:2:0;33270:14;;33265:30;33144:5;33252:44;33342:2;33333:11;;;-1:-1:-1;33363:21:0;33112:288;33363:21;-1:-1:-1;33421:6:0;32730:716;-1:-1:-1;;;32730:716:0:o;44451:1272::-;44556:20;44579:12;-1:-1:-1;;;;;44606:16:0;;44598:62;;;;-1:-1:-1;;;44598:62:0;;19464:2:1;44598:62:0;;;19446:21:1;19503:2;19483:18;;;19476:30;19542:34;19522:18;;;19515:62;-1:-1:-1;;;19593:18:1;;;19586:31;19634:19;;44598:62:0;19262:397:1;44598:62:0;44797:21;44805:12;44044:4;44074:12;-1:-1:-1;44064:22:0;43987:105;44797:21;44796:22;44788:64;;;;-1:-1:-1;;;44788:64:0;;19866:2:1;44788:64:0;;;19848:21:1;19905:2;19885:18;;;19878:30;19944:31;19924:18;;;19917:59;19993:18;;44788:64:0;19664:353:1;44788:64:0;44879:12;44867:8;:24;;44859:71;;;;-1:-1:-1;;;44859:71:0;;20224:2:1;44859:71:0;;;20206:21:1;20263:2;20243:18;;;20236:30;20302:34;20282:18;;;20275:62;-1:-1:-1;;;20353:18:1;;;20346:32;20395:19;;44859:71:0;20022:398:1;44859:71:0;-1:-1:-1;;;;;45042:16:0;;45009:30;45042:16;;;:12;:16;;;;;;;;;45009:49;;;;;;;;;-1:-1:-1;;;;;45009:49:0;;;;;-1:-1:-1;;;45009:49:0;;;;;;;;;;;45084:119;;;;;;;;45104:19;;45009:49;;45084:119;;;45104:39;;45134:8;;45104:39;:::i;:::-;-1:-1:-1;;;;;45084:119:0;;;;;45187:8;45152:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;45084:119:0;;;;;;-1:-1:-1;;;;;45065:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;45065:138:0;;;;;;;;;;;;45238:43;;;;;;;;;;;45264:15;45238:43;;;;;;;;45210:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;45210:71:0;-1:-1:-1;;;;;;45210:71:0;;;;;;;;;;;;;;;;;;45222:12;;45334:281;45358:8;45354:1;:12;45334:281;;;45387:38;;45412:12;;-1:-1:-1;;;;;45387:38:0;;;45404:1;;45387:38;;45404:1;;45387:38;45452:59;45483:1;45487:2;45491:12;45505:5;45452:22;:59::i;:::-;45434:150;;;;-1:-1:-1;;;45434:150:0;;;;;;;:::i;:::-;45593:14;;;;:::i;:::-;;;;45368:3;;;;;:::i;:::-;;;;45334:281;;;-1:-1:-1;45623:12:0;:27;;;45657:60;43437:311;29596:922;29649:7;;-1:-1:-1;;;29727:15:0;;29723:102;;-1:-1:-1;;;29763:15:0;;;-1:-1:-1;29807:2:0;29797:12;29723:102;29852:6;29843:5;:15;29839:102;;29888:6;29879:15;;;-1:-1:-1;29923:2:0;29913:12;29839:102;29968:6;29959:5;:15;29955:102;;30004:6;29995:15;;;-1:-1:-1;30039:2:0;30029:12;29955:102;30084:5;30075;:14;30071:99;;30119:5;30110:14;;;-1:-1:-1;30153:1:0;30143:11;30071:99;30197:5;30188;:14;30184:99;;30232:5;30223:14;;;-1:-1:-1;30266:1:0;30256:11;30184:99;30310:5;30301;:14;30297:99;;30345:5;30336:14;;;-1:-1:-1;30379:1:0;30369:11;30297:99;30423:5;30414;:14;30410:66;;30459:1;30449:11;30504:6;29596:922;-1:-1:-1;;29596:922:0: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;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:127::-;2754:10;2749:3;2745:20;2742:1;2735:31;2785:4;2782:1;2775:15;2809:4;2806:1;2799:15;2825:632;2890:5;2920:18;2961:2;2953:6;2950:14;2947:40;;;2967:18;;:::i;:::-;3042:2;3036:9;3010:2;3096:15;;-1:-1:-1;;3092:24:1;;;3118:2;3088:33;3084:42;3072:55;;;3142:18;;;3162:22;;;3139:46;3136:72;;;3188:18;;:::i;:::-;3228:10;3224:2;3217:22;3257:6;3248:15;;3287:6;3279;3272:22;3327:3;3318:6;3313:3;3309:16;3306:25;3303:45;;;3344:1;3341;3334:12;3303:45;3394:6;3389:3;3382:4;3374:6;3370:17;3357:44;3449:1;3442:4;3433:6;3425;3421:19;3417:30;3410:41;;;;2825:632;;;;;:::o;3462:451::-;3531:6;3584:2;3572:9;3563:7;3559:23;3555:32;3552:52;;;3600:1;3597;3590:12;3552:52;3640:9;3627:23;3673:18;3665:6;3662:30;3659:50;;;3705:1;3702;3695:12;3659:50;3728:22;;3781:4;3773:13;;3769:27;-1:-1:-1;3759:55:1;;3810:1;3807;3800:12;3759:55;3833:74;3899:7;3894:2;3881:16;3876:2;3872;3868:11;3833:74;:::i;3918:186::-;3977:6;4030:2;4018:9;4009:7;4005:23;4001:32;3998:52;;;4046:1;4043;4036:12;3998:52;4069:29;4088:9;4069:29;:::i;4109:347::-;4174:6;4182;4235:2;4223:9;4214:7;4210:23;4206:32;4203:52;;;4251:1;4248;4241:12;4203:52;4274:29;4293:9;4274:29;:::i;:::-;4264:39;;4353:2;4342:9;4338:18;4325:32;4400:5;4393:13;4386:21;4379:5;4376:32;4366:60;;4422:1;4419;4412:12;4366:60;4445:5;4435:15;;;4109:347;;;;;:::o;4461:667::-;4556:6;4564;4572;4580;4633:3;4621:9;4612:7;4608:23;4604:33;4601:53;;;4650:1;4647;4640:12;4601:53;4673:29;4692:9;4673:29;:::i;:::-;4663:39;;4721:38;4755:2;4744:9;4740:18;4721:38;:::i;:::-;4711:48;;4806:2;4795:9;4791:18;4778:32;4768:42;;4861:2;4850:9;4846:18;4833:32;4888:18;4880:6;4877:30;4874:50;;;4920:1;4917;4910:12;4874:50;4943:22;;4996:4;4988:13;;4984:27;-1:-1:-1;4974:55:1;;5025:1;5022;5015:12;4974:55;5048:74;5114:7;5109:2;5096:16;5091:2;5087;5083:11;5048:74;:::i;:::-;5038:84;;;4461:667;;;;;;;:::o;5133:260::-;5201:6;5209;5262:2;5250:9;5241:7;5237:23;5233:32;5230:52;;;5278:1;5275;5268:12;5230:52;5301:29;5320:9;5301:29;:::i;:::-;5291:39;;5349:38;5383:2;5372:9;5368:18;5349:38;:::i;:::-;5339:48;;5133:260;;;;;:::o;5398:380::-;5477:1;5473:12;;;;5520;;;5541:61;;5595:4;5587:6;5583:17;5573:27;;5541:61;5648:2;5640:6;5637:14;5617:18;5614:38;5611:161;;5694:10;5689:3;5685:20;5682:1;5675:31;5729:4;5726:1;5719:15;5757:4;5754:1;5747:15;5611:161;;5398:380;;;:::o;7026:127::-;7087:10;7082:3;7078:20;7075:1;7068:31;7118:4;7115:1;7108:15;7142:4;7139:1;7132:15;7158:125;7223:9;;;7244:10;;;7241:36;;;7257:18;;:::i;7288:340::-;7490:2;7472:21;;;7529:2;7509:18;;;7502:30;-1:-1:-1;;;7563:2:1;7548:18;;7541:46;7619:2;7604:18;;7288:340::o;7633:127::-;7694:10;7689:3;7685:20;7682:1;7675:31;7725:4;7722:1;7715:15;7749:4;7746:1;7739:15;7765:112;7797:1;7823;7813:35;;7828:18;;:::i;:::-;-1:-1:-1;7862:9:1;;7765:112::o;8295:120::-;8335:1;8361;8351:35;;8366:18;;:::i;:::-;-1:-1:-1;8400:9:1;;8295:120::o;8420:135::-;8459:3;8480:17;;;8477:43;;8500:18;;:::i;:::-;-1:-1:-1;8547:1:1;8536:13;;8420:135::o;10545:545::-;10647:2;10642:3;10639:11;10636:448;;;10683:1;10708:5;10704:2;10697:17;10753:4;10749:2;10739:19;10823:2;10811:10;10807:19;10804:1;10800:27;10794:4;10790:38;10859:4;10847:10;10844:20;10841:47;;;-1:-1:-1;10882:4:1;10841:47;10937:2;10932:3;10928:12;10925:1;10921:20;10915:4;10911:31;10901:41;;10992:82;11010:2;11003:5;11000:13;10992:82;;;11055:17;;;11036:1;11025:13;10992:82;;11266:1352;11392:3;11386:10;11419:18;11411:6;11408:30;11405:56;;;11441:18;;:::i;:::-;11470:97;11560:6;11520:38;11552:4;11546:11;11520:38;:::i;:::-;11514:4;11470:97;:::i;:::-;11622:4;;11686:2;11675:14;;11703:1;11698:663;;;;12405:1;12422:6;12419:89;;;-1:-1:-1;12474:19:1;;;12468:26;12419:89;-1:-1:-1;;11223:1:1;11219:11;;;11215:24;11211:29;11201:40;11247:1;11243:11;;;11198:57;12521:81;;11668:944;;11698:663;10492:1;10485:14;;;10529:4;10516:18;;-1:-1:-1;;11734:20:1;;;11852:236;11866:7;11863:1;11860:14;11852:236;;;11955:19;;;11949:26;11934:42;;12047:27;;;;12015:1;12003:14;;;;11882:19;;11852:236;;;11856:3;12116:6;12107:7;12104:19;12101:201;;;12177:19;;;12171:26;-1:-1:-1;;12260:1:1;12256:14;;;12272:3;12252:24;12248:37;12244:42;12229:58;12214:74;;12101:201;-1:-1:-1;;;;;12348:1:1;12332:14;;;12328:22;12315:36;;-1:-1:-1;11266:1352:1:o;13035:168::-;13108:9;;;13139;;13156:15;;;13150:22;;13136:37;13126:71;;13177:18;;:::i;13918:415::-;14120:2;14102:21;;;14159:2;14139:18;;;14132:30;14198:34;14193:2;14178:18;;14171:62;-1:-1:-1;;;14264:2:1;14249:18;;14242:49;14323:3;14308:19;;13918:415::o;14338:663::-;14618:3;14656:6;14650:13;14672:66;14731:6;14726:3;14719:4;14711:6;14707:17;14672:66;:::i;:::-;14801:13;;14760:16;;;;14823:70;14801:13;14760:16;14870:4;14858:17;;14823:70;:::i;:::-;-1:-1:-1;;;14915:20:1;;14944:22;;;14993:1;14982:13;;14338:663;-1:-1:-1;;;;14338:663:1:o;16645:200::-;-1:-1:-1;;;;;16781:10:1;;;16769;;;16765:27;;16804:12;;;16801:38;;;16819:18;;:::i;:::-;16801:38;16645:200;;;;:::o;16850:197::-;-1:-1:-1;;;;;16972:10:1;;;16984;;;16968:27;;17007:11;;;17004:37;;;17021:18;;:::i;17824:128::-;17891:9;;;17912:11;;;17909:37;;;17926:18;;:::i;17957:136::-;17996:3;18024:5;18014:39;;18033:18;;:::i;:::-;-1:-1:-1;;;18069:18:1;;17957:136::o;18514:489::-;-1:-1:-1;;;;;18783:15:1;;;18765:34;;18835:15;;18830:2;18815:18;;18808:43;18882:2;18867:18;;18860:34;;;18930:3;18925:2;18910:18;;18903:31;;;18708:4;;18951:46;;18977:19;;18969:6;18951:46;:::i;:::-;18943:54;18514:489;-1:-1:-1;;;;;;18514:489:1:o;19008:249::-;19077:6;19130:2;19118:9;19109:7;19105:23;19101:32;19098:52;;;19146:1;19143;19136:12;19098:52;19178:9;19172:16;19197:30;19221:5;19197:30;:::i

Swarm Source

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