ETH Price: $2,639.83 (+1.48%)

Token

N Project (NP)
 

Overview

Max Total Supply

1,096 NP

Holders

230

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 NP
0xdd02b34eb4e35c420d0cd88a82b19b3dca9ad403
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:
INTROVERSE

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-02
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_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) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @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] = _HEX_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: @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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @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 be 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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * 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);

    // ==============================
    //        IERC721Metadata
    // ==============================

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // 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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred.
     * This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: HalfPaid.sol


pragma solidity ^0.8.6;







contract INTROVERSE is ERC721A,Ownable,ReentrancyGuard {
    using Strings for uint256;

    
    uint256 public maxSupply = 3000;
    uint256 public freeMint = 1000;
    uint256 public maxMint = 5;
    uint256 public mintPrice = 0.001 ether;

    string public _baseTokenURI;
    string public _baseTokenEXT;
    string public notRevealedUri = "ipfs://QmTCFnz1DmZvnZHzdLi1Azq5QoMXMngnjrHTmSmvrMNZU9/";

    bool public revealed = false;
    bool public paused = false;

    mapping(address => uint256) public _totalMinted;

    constructor() ERC721A("N Project","NP") {}

    function mint(uint256 _mintAmount) public payable nonReentrant {
        require(!paused,"Contract Minting Paused");
        require(_mintAmount <= maxMint,"You can't mint more than the amount specified.");
        uint256 price = getPrice(_mintAmount);
        require(msg.value >=price,"Insufficient Amount Sent");
        require(_mintAmount+_totalMinted[msg.sender] <= maxMint,"You cant mint more,Decrease MintAmount or Wait For Opensea" );
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxSupply ,": No more NFTs to mint,decrease the quantity or check out OpenSea.");
        _safeMint(msg.sender,_mintAmount);
        _totalMinted[msg.sender]+=_mintAmount;
    }

    function getPrice(uint256 _mintAmount) public view returns(uint256) {
        uint256 totalSupply = totalSupply();

        if(totalSupply +_mintAmount  <= freeMint){
            return 0;
        }
        else if(totalSupply +_mintAmount > freeMint && totalSupply < freeMint){
            uint256 freeQuantity = freeMint - totalSupply;
            return (_mintAmount- freeQuantity)* mintPrice;
        }
        return mintPrice * _mintAmount;
    }

    


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


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

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }


    function toogleReveal() public onlyOwner{
        revealed = !revealed;
    }

    function tooglePause() public onlyOwner{
        paused = !paused;
    }

    function changePrice(uint256 _newPrice) public onlyOwner{
        mintPrice = _newPrice;
        
    }

    function changeURLParams(string memory _nURL,string memory _nBaseExt) public onlyOwner {
        _baseTokenURI = _nURL;
        _baseTokenEXT = _nBaseExt;
    }

    function withdrawMoney() external onlyOwner nonReentrant {
        (bool success,) = msg.sender.call{value: address(this).balance}("");
        require(success,"Transfer failed.");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"_baseTokenEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalMinted","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":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_nURL","type":"string"},{"internalType":"string","name":"_nBaseExt","type":"string"}],"name":"changeURLParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMint","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":"uint256","name":"_mintAmount","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tooglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toogleReveal","outputs":[],"stateMutability":"nonpayable","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610bb8600a556103e8600b556005600c5566038d7ea4c68000600d55604051806060016040528060368152602001620039bc6036913960109080519060200190620000519291906200024d565b506000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055503480156200009557600080fd5b506040518060400160405280600981526020017f4e2050726f6a65637400000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4e5000000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200011a9291906200024d565b508060039080519060200190620001339291906200024d565b50620001446200017a60201b60201c565b60008190555050506200016c620001606200017f60201b60201c565b6200018760201b60201c565b600160098190555062000362565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025b90620002fd565b90600052602060002090601f0160209004810192826200027f5760008555620002cb565b82601f106200029a57805160ff1916838001178555620002cb565b82800160010185558215620002cb579182015b82811115620002ca578251825591602001919060010190620002ad565b5b509050620002da9190620002de565b5090565b5b80821115620002f9576000816000905550600101620002df565b5090565b600060028204905060018216806200031657607f821691505b602082108114156200032d576200032c62000333565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61364a80620003726000396000f3fe6080604052600436106102045760003560e01c806385fee16811610118578063bbc27564116100a0578063d621a7761161006f578063d621a77614610726578063e75722301461073d578063e985e9c51461077a578063f2c4ce1e146107b7578063f2fde38b146107e057610204565b8063bbc2756414610656578063c87b56dd14610693578063cfc86f7b146106d0578063d5abeb01146106fb57610204565b8063a22cb465116100e7578063a22cb465146105ad578063a2b40d19146105d6578063a8edbdc5146105ff578063ac44600214610616578063b88d4fde1461062d57610204565b806385fee168146105105780638da5cb5b1461053b57806395d89b4114610566578063a0712d681461059157610204565b8063518302271161019b5780636817c76c1161016a5780636817c76c1461043d57806370a0823114610468578063715018a6146104a55780637501f741146104bc578063783fd922146104e757610204565b8063518302271461037f5780635b70ea9f146103aa5780635c975abb146103d55780636352211e1461040057610204565b8063095ea7b3116101d7578063095ea7b3146102d957806318160ddd1461030257806323b872dd1461032d57806342842e0e1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063081c8c44146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612838565b610809565b60405161023d9190612cfd565b60405180910390f35b34801561025257600080fd5b5061025b61089b565b6040516102689190612d18565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612953565b61092d565b6040516102a59190612c96565b60405180910390f35b3480156102ba57600080fd5b506102c36109a9565b6040516102d09190612d18565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb91906127f8565b610a37565b005b34801561030e57600080fd5b50610317610b78565b6040516103249190612e7a565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f91906126e2565b610b8f565b005b34801561036257600080fd5b5061037d600480360381019061037891906126e2565b610eb4565b005b34801561038b57600080fd5b50610394610ed4565b6040516103a19190612cfd565b60405180910390f35b3480156103b657600080fd5b506103bf610ee7565b6040516103cc9190612e7a565b60405180910390f35b3480156103e157600080fd5b506103ea610eed565b6040516103f79190612cfd565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190612953565b610f00565b6040516104349190612c96565b60405180910390f35b34801561044957600080fd5b50610452610f12565b60405161045f9190612e7a565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a9190612675565b610f18565b60405161049c9190612e7a565b60405180910390f35b3480156104b157600080fd5b506104ba610fd1565b005b3480156104c857600080fd5b506104d1610fe5565b6040516104de9190612e7a565b60405180910390f35b3480156104f357600080fd5b5061050e600480360381019061050991906128db565b610feb565b005b34801561051c57600080fd5b50610525611025565b6040516105329190612d18565b60405180910390f35b34801561054757600080fd5b506105506110b3565b60405161055d9190612c96565b60405180910390f35b34801561057257600080fd5b5061057b6110dd565b6040516105889190612d18565b60405180910390f35b6105ab60048036038101906105a69190612953565b61116f565b005b3480156105b957600080fd5b506105d460048036038101906105cf91906127b8565b6113fa565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612953565b611572565b005b34801561060b57600080fd5b50610614611584565b005b34801561062257600080fd5b5061062b6115b8565b005b34801561063957600080fd5b50610654600480360381019061064f9190612735565b6116c5565b005b34801561066257600080fd5b5061067d60048036038101906106789190612675565b611738565b60405161068a9190612e7a565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b59190612953565b611750565b6040516106c79190612d18565b60405180910390f35b3480156106dc57600080fd5b506106e56118a9565b6040516106f29190612d18565b60405180910390f35b34801561070757600080fd5b50610710611937565b60405161071d9190612e7a565b60405180910390f35b34801561073257600080fd5b5061073b61193d565b005b34801561074957600080fd5b50610764600480360381019061075f9190612953565b611971565b6040516107719190612e7a565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c91906126a2565b611a09565b6040516107ae9190612cfd565b60405180910390f35b3480156107c357600080fd5b506107de60048036038101906107d99190612892565b611a9d565b005b3480156107ec57600080fd5b5061080760048036038101906108029190612675565b611abf565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108945750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108aa9061314a565b80601f01602080910402602001604051908101604052809291908181526020018280546108d69061314a565b80156109235780601f106108f857610100808354040283529160200191610923565b820191906000526020600020905b81548152906001019060200180831161090657829003601f168201915b5050505050905090565b600061093882611b43565b61096e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601080546109b69061314a565b80601f01602080910402602001604051908101604052809291908181526020018280546109e29061314a565b8015610a2f5780601f10610a0457610100808354040283529160200191610a2f565b820191906000526020600020905b815481529060010190602001808311610a1257829003601f168201915b505050505081565b6000610a4282610f00565b90508073ffffffffffffffffffffffffffffffffffffffff16610a63611ba2565b73ffffffffffffffffffffffffffffffffffffffff1614610ac657610a8f81610a8a611ba2565b611a09565b610ac5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b82611baa565b6001546000540303905090565b6000610b9a82611baf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c01576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c0d84611c7d565b91509150610c238187610c1e611ba2565b611c9f565b610c6f57610c3886610c33611ba2565b611a09565b610c6e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cd6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce38686866001611ce3565b8015610cee57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dbc85610d98888887611ce9565b7c020000000000000000000000000000000000000000000000000000000017611d11565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e44576000600185019050600060046000838152602001908152602001600020541415610e42576000548114610e41578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610eac8686866001611d3c565b505050505050565b610ecf838383604051806020016040528060008152506116c5565b505050565b601160009054906101000a900460ff1681565b600b5481565b601160019054906101000a900460ff1681565b6000610f0b82611baf565b9050919050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f80576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fd9611d42565b610fe36000611dc0565b565b600c5481565b610ff3611d42565b81600e9080519060200190611009929190612489565b5080600f9080519060200190611020929190612489565b505050565b600f80546110329061314a565b80601f016020809104026020016040519081016040528092919081815260200182805461105e9061314a565b80156110ab5780601f10611080576101008083540402835291602001916110ab565b820191906000526020600020905b81548152906001019060200180831161108e57829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110ec9061314a565b80601f01602080910402602001604051908101604052809291908181526020018280546111189061314a565b80156111655780601f1061113a57610100808354040283529160200191611165565b820191906000526020600020905b81548152906001019060200180831161114857829003601f168201915b5050505050905090565b600260095414156111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90612e3a565b60405180910390fd5b6002600981905550601160019054906101000a900460ff161561120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490612dda565b60405180910390fd5b600c54811115611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990612d9a565b60405180910390fd5b600061125d82611971565b9050803410156112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990612d5a565b60405180910390fd5b600c54601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836112f09190612f7f565b1115611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890612e5a565b60405180910390fd5b600061133b610b78565b9050600a54838261134c9190612f7f565b111561138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490612e1a565b60405180910390fd5b6113973384611e86565b82601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113e69190612f7f565b925050819055505050600160098190555050565b611402611ba2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611467576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611474611ba2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611521611ba2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115669190612cfd565b60405180910390a35050565b61157a611d42565b80600d8190555050565b61158c611d42565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6115c0611d42565b60026009541415611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd90612e3a565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161163490612c81565b60006040518083038185875af1925050503d8060008114611671576040519150601f19603f3d011682016040523d82523d6000602084013e611676565b606091505b50509050806116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190612dfa565b60405180910390fd5b506001600981905550565b6116d0848484610b8f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611732576116fb84848484611ea4565b611731576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60126020528060005260406000206000915090505481565b606061175b82611b43565b61179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179190612dba565b60405180910390fd5b60001515601160009054906101000a900460ff161515141561184857601080546117c39061314a565b80601f01602080910402602001604051908101604052809291908181526020018280546117ef9061314a565b801561183c5780601f106118115761010080835404028352916020019161183c565b820191906000526020600020905b81548152906001019060200180831161181f57829003601f168201915b505050505090506118a4565b6000611852612004565b9050600081511161187257604051806020016040528060008152506118a0565b8061187c84612096565b600f60405160200161189093929190612c50565b6040516020818303038152906040525b9150505b919050565b600e80546118b69061314a565b80601f01602080910402602001604051908101604052809291908181526020018280546118e29061314a565b801561192f5780601f106119045761010080835404028352916020019161192f565b820191906000526020600020905b81548152906001019060200180831161191257829003601f168201915b505050505081565b600a5481565b611945611d42565b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b60008061197c610b78565b9050600b54838261198d9190612f7f565b1161199c576000915050611a04565b600b5483826119ab9190612f7f565b1180156119b95750600b5481105b156119f257600081600b546119ce9190613060565b9050600d5481856119df9190613060565b6119e99190613006565b92505050611a04565b82600d54611a009190613006565b9150505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aa5611d42565b8060109080519060200190611abb929190612489565b5050565b611ac7611d42565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e90612d3a565b60405180910390fd5b611b4081611dc0565b50565b600081611b4e611baa565b11158015611b5d575060005482105b8015611b9b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611bbe611baa565b11611c4657600054811015611c455760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c43575b6000811415611c39576004600083600190039350838152602001908152602001600020549050611c0e565b8092505050611c78565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d008686846121f7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611d4a612200565b73ffffffffffffffffffffffffffffffffffffffff16611d686110b3565b73ffffffffffffffffffffffffffffffffffffffff1614611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db590612d7a565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ea0828260405180602001604052806000815250612208565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eca611ba2565b8786866040518563ffffffff1660e01b8152600401611eec9493929190612cb1565b602060405180830381600087803b158015611f0657600080fd5b505af1925050508015611f3757506040513d601f19601f82011682018060405250810190611f349190612865565b60015b611fb1573d8060008114611f67576040519150601f19603f3d011682016040523d82523d6000602084013e611f6c565b606091505b50600081511415611fa9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e80546120139061314a565b80601f016020809104026020016040519081016040528092919081815260200182805461203f9061314a565b801561208c5780601f106120615761010080835404028352916020019161208c565b820191906000526020600020905b81548152906001019060200180831161206f57829003601f168201915b5050505050905090565b606060008214156120de576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121f2565b600082905060005b600082146121105780806120f9906131ad565b915050600a826121099190612fd5565b91506120e6565b60008167ffffffffffffffff81111561212c5761212b6132e3565b5b6040519080825280601f01601f19166020018201604052801561215e5781602001600182028036833780820191505090505b5090505b600085146121eb576001826121779190613060565b9150600a8561218691906131f6565b60306121929190612f7f565b60f81b8183815181106121a8576121a76132b4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121e49190612fd5565b9450612162565b8093505050505b919050565b60009392505050565b600033905090565b61221283836122a5565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122a057600080549050600083820390505b6122526000868380600101945086611ea4565b612288576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061223f57816000541461229d57600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612312576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561234d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61235a6000848385611ce3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123d1836123c26000866000611ce9565b6123cb85612479565b17611d11565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106123f5578060008190555050506124746000848385611d3c565b505050565b60006001821460e11b9050919050565b8280546124959061314a565b90600052602060002090601f0160209004810192826124b757600085556124fe565b82601f106124d057805160ff19168380011785556124fe565b828001600101855582156124fe579182015b828111156124fd5782518255916020019190600101906124e2565b5b50905061250b919061250f565b5090565b5b80821115612528576000816000905550600101612510565b5090565b600061253f61253a84612eba565b612e95565b90508281526020810184848401111561255b5761255a613317565b5b612566848285613108565b509392505050565b600061258161257c84612eeb565b612e95565b90508281526020810184848401111561259d5761259c613317565b5b6125a8848285613108565b509392505050565b6000813590506125bf816135b8565b92915050565b6000813590506125d4816135cf565b92915050565b6000813590506125e9816135e6565b92915050565b6000815190506125fe816135e6565b92915050565b600082601f83011261261957612618613312565b5b813561262984826020860161252c565b91505092915050565b600082601f83011261264757612646613312565b5b813561265784826020860161256e565b91505092915050565b60008135905061266f816135fd565b92915050565b60006020828403121561268b5761268a613321565b5b6000612699848285016125b0565b91505092915050565b600080604083850312156126b9576126b8613321565b5b60006126c7858286016125b0565b92505060206126d8858286016125b0565b9150509250929050565b6000806000606084860312156126fb576126fa613321565b5b6000612709868287016125b0565b935050602061271a868287016125b0565b925050604061272b86828701612660565b9150509250925092565b6000806000806080858703121561274f5761274e613321565b5b600061275d878288016125b0565b945050602061276e878288016125b0565b935050604061277f87828801612660565b925050606085013567ffffffffffffffff8111156127a05761279f61331c565b5b6127ac87828801612604565b91505092959194509250565b600080604083850312156127cf576127ce613321565b5b60006127dd858286016125b0565b92505060206127ee858286016125c5565b9150509250929050565b6000806040838503121561280f5761280e613321565b5b600061281d858286016125b0565b925050602061282e85828601612660565b9150509250929050565b60006020828403121561284e5761284d613321565b5b600061285c848285016125da565b91505092915050565b60006020828403121561287b5761287a613321565b5b6000612889848285016125ef565b91505092915050565b6000602082840312156128a8576128a7613321565b5b600082013567ffffffffffffffff8111156128c6576128c561331c565b5b6128d284828501612632565b91505092915050565b600080604083850312156128f2576128f1613321565b5b600083013567ffffffffffffffff8111156129105761290f61331c565b5b61291c85828601612632565b925050602083013567ffffffffffffffff81111561293d5761293c61331c565b5b61294985828601612632565b9150509250929050565b60006020828403121561296957612968613321565b5b600061297784828501612660565b91505092915050565b61298981613094565b82525050565b612998816130a6565b82525050565b60006129a982612f31565b6129b38185612f47565b93506129c3818560208601613117565b6129cc81613326565b840191505092915050565b60006129e282612f3c565b6129ec8185612f63565b93506129fc818560208601613117565b612a0581613326565b840191505092915050565b6000612a1b82612f3c565b612a258185612f74565b9350612a35818560208601613117565b80840191505092915050565b60008154612a4e8161314a565b612a588186612f74565b94506001821660008114612a735760018114612a8457612ab7565b60ff19831686528186019350612ab7565b612a8d85612f1c565b60005b83811015612aaf57815481890152600182019150602081019050612a90565b838801955050505b50505092915050565b6000612acd602683612f63565b9150612ad882613337565b604082019050919050565b6000612af0601883612f63565b9150612afb82613386565b602082019050919050565b6000612b13602083612f63565b9150612b1e826133af565b602082019050919050565b6000612b36602e83612f63565b9150612b41826133d8565b604082019050919050565b6000612b59602f83612f63565b9150612b6482613427565b604082019050919050565b6000612b7c601783612f63565b9150612b8782613476565b602082019050919050565b6000612b9f600083612f58565b9150612baa8261349f565b600082019050919050565b6000612bc2601083612f63565b9150612bcd826134a2565b602082019050919050565b6000612be5604283612f63565b9150612bf0826134cb565b606082019050919050565b6000612c08601f83612f63565b9150612c1382613540565b602082019050919050565b6000612c2b603a83612f63565b9150612c3682613569565b604082019050919050565b612c4a816130fe565b82525050565b6000612c5c8286612a10565b9150612c688285612a10565b9150612c748284612a41565b9150819050949350505050565b6000612c8c82612b92565b9150819050919050565b6000602082019050612cab6000830184612980565b92915050565b6000608082019050612cc66000830187612980565b612cd36020830186612980565b612ce06040830185612c41565b8181036060830152612cf2818461299e565b905095945050505050565b6000602082019050612d12600083018461298f565b92915050565b60006020820190508181036000830152612d3281846129d7565b905092915050565b60006020820190508181036000830152612d5381612ac0565b9050919050565b60006020820190508181036000830152612d7381612ae3565b9050919050565b60006020820190508181036000830152612d9381612b06565b9050919050565b60006020820190508181036000830152612db381612b29565b9050919050565b60006020820190508181036000830152612dd381612b4c565b9050919050565b60006020820190508181036000830152612df381612b6f565b9050919050565b60006020820190508181036000830152612e1381612bb5565b9050919050565b60006020820190508181036000830152612e3381612bd8565b9050919050565b60006020820190508181036000830152612e5381612bfb565b9050919050565b60006020820190508181036000830152612e7381612c1e565b9050919050565b6000602082019050612e8f6000830184612c41565b92915050565b6000612e9f612eb0565b9050612eab828261317c565b919050565b6000604051905090565b600067ffffffffffffffff821115612ed557612ed46132e3565b5b612ede82613326565b9050602081019050919050565b600067ffffffffffffffff821115612f0657612f056132e3565b5b612f0f82613326565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f8a826130fe565b9150612f95836130fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fca57612fc9613227565b5b828201905092915050565b6000612fe0826130fe565b9150612feb836130fe565b925082612ffb57612ffa613256565b5b828204905092915050565b6000613011826130fe565b915061301c836130fe565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561305557613054613227565b5b828202905092915050565b600061306b826130fe565b9150613076836130fe565b92508282101561308957613088613227565b5b828203905092915050565b600061309f826130de565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561313557808201518184015260208101905061311a565b83811115613144576000848401525b50505050565b6000600282049050600182168061316257607f821691505b6020821081141561317657613175613285565b5b50919050565b61318582613326565b810181811067ffffffffffffffff821117156131a4576131a36132e3565b5b80604052505050565b60006131b8826130fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131eb576131ea613227565b5b600182019050919050565b6000613201826130fe565b915061320c836130fe565b92508261321c5761321b613256565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420416d6f756e742053656e740000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f752063616e2774206d696e74206d6f7265207468616e2074686520616d6f60008201527f756e74207370656369666965642e000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f436f6e7472616374204d696e74696e6720506175736564000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f3a204e6f206d6f7265204e46547320746f206d696e742c64656372656173652060008201527f746865207175616e74697479206f7220636865636b206f7574204f70656e536560208201527f612e000000000000000000000000000000000000000000000000000000000000604082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f596f752063616e74206d696e74206d6f72652c4465637265617365204d696e7460008201527f416d6f756e74206f72205761697420466f72204f70656e736561000000000000602082015250565b6135c181613094565b81146135cc57600080fd5b50565b6135d8816130a6565b81146135e357600080fd5b50565b6135ef816130b2565b81146135fa57600080fd5b50565b613606816130fe565b811461361157600080fd5b5056fea2646970667358221220f23802eb8d0fb0f3d91787684e921dc4c91fec113a2197115be8699f9f2ef9d864736f6c63430008070033697066733a2f2f516d5443466e7a31446d5a766e5a487a644c6931417a7135516f4d584d6e676e6a7248546d536d76724d4e5a55392f

Deployed Bytecode

0x6080604052600436106102045760003560e01c806385fee16811610118578063bbc27564116100a0578063d621a7761161006f578063d621a77614610726578063e75722301461073d578063e985e9c51461077a578063f2c4ce1e146107b7578063f2fde38b146107e057610204565b8063bbc2756414610656578063c87b56dd14610693578063cfc86f7b146106d0578063d5abeb01146106fb57610204565b8063a22cb465116100e7578063a22cb465146105ad578063a2b40d19146105d6578063a8edbdc5146105ff578063ac44600214610616578063b88d4fde1461062d57610204565b806385fee168146105105780638da5cb5b1461053b57806395d89b4114610566578063a0712d681461059157610204565b8063518302271161019b5780636817c76c1161016a5780636817c76c1461043d57806370a0823114610468578063715018a6146104a55780637501f741146104bc578063783fd922146104e757610204565b8063518302271461037f5780635b70ea9f146103aa5780635c975abb146103d55780636352211e1461040057610204565b8063095ea7b3116101d7578063095ea7b3146102d957806318160ddd1461030257806323b872dd1461032d57806342842e0e1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063081c8c44146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612838565b610809565b60405161023d9190612cfd565b60405180910390f35b34801561025257600080fd5b5061025b61089b565b6040516102689190612d18565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612953565b61092d565b6040516102a59190612c96565b60405180910390f35b3480156102ba57600080fd5b506102c36109a9565b6040516102d09190612d18565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb91906127f8565b610a37565b005b34801561030e57600080fd5b50610317610b78565b6040516103249190612e7a565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f91906126e2565b610b8f565b005b34801561036257600080fd5b5061037d600480360381019061037891906126e2565b610eb4565b005b34801561038b57600080fd5b50610394610ed4565b6040516103a19190612cfd565b60405180910390f35b3480156103b657600080fd5b506103bf610ee7565b6040516103cc9190612e7a565b60405180910390f35b3480156103e157600080fd5b506103ea610eed565b6040516103f79190612cfd565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190612953565b610f00565b6040516104349190612c96565b60405180910390f35b34801561044957600080fd5b50610452610f12565b60405161045f9190612e7a565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a9190612675565b610f18565b60405161049c9190612e7a565b60405180910390f35b3480156104b157600080fd5b506104ba610fd1565b005b3480156104c857600080fd5b506104d1610fe5565b6040516104de9190612e7a565b60405180910390f35b3480156104f357600080fd5b5061050e600480360381019061050991906128db565b610feb565b005b34801561051c57600080fd5b50610525611025565b6040516105329190612d18565b60405180910390f35b34801561054757600080fd5b506105506110b3565b60405161055d9190612c96565b60405180910390f35b34801561057257600080fd5b5061057b6110dd565b6040516105889190612d18565b60405180910390f35b6105ab60048036038101906105a69190612953565b61116f565b005b3480156105b957600080fd5b506105d460048036038101906105cf91906127b8565b6113fa565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612953565b611572565b005b34801561060b57600080fd5b50610614611584565b005b34801561062257600080fd5b5061062b6115b8565b005b34801561063957600080fd5b50610654600480360381019061064f9190612735565b6116c5565b005b34801561066257600080fd5b5061067d60048036038101906106789190612675565b611738565b60405161068a9190612e7a565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b59190612953565b611750565b6040516106c79190612d18565b60405180910390f35b3480156106dc57600080fd5b506106e56118a9565b6040516106f29190612d18565b60405180910390f35b34801561070757600080fd5b50610710611937565b60405161071d9190612e7a565b60405180910390f35b34801561073257600080fd5b5061073b61193d565b005b34801561074957600080fd5b50610764600480360381019061075f9190612953565b611971565b6040516107719190612e7a565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c91906126a2565b611a09565b6040516107ae9190612cfd565b60405180910390f35b3480156107c357600080fd5b506107de60048036038101906107d99190612892565b611a9d565b005b3480156107ec57600080fd5b5061080760048036038101906108029190612675565b611abf565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108945750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108aa9061314a565b80601f01602080910402602001604051908101604052809291908181526020018280546108d69061314a565b80156109235780601f106108f857610100808354040283529160200191610923565b820191906000526020600020905b81548152906001019060200180831161090657829003601f168201915b5050505050905090565b600061093882611b43565b61096e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601080546109b69061314a565b80601f01602080910402602001604051908101604052809291908181526020018280546109e29061314a565b8015610a2f5780601f10610a0457610100808354040283529160200191610a2f565b820191906000526020600020905b815481529060010190602001808311610a1257829003601f168201915b505050505081565b6000610a4282610f00565b90508073ffffffffffffffffffffffffffffffffffffffff16610a63611ba2565b73ffffffffffffffffffffffffffffffffffffffff1614610ac657610a8f81610a8a611ba2565b611a09565b610ac5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b82611baa565b6001546000540303905090565b6000610b9a82611baf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c01576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c0d84611c7d565b91509150610c238187610c1e611ba2565b611c9f565b610c6f57610c3886610c33611ba2565b611a09565b610c6e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cd6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ce38686866001611ce3565b8015610cee57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dbc85610d98888887611ce9565b7c020000000000000000000000000000000000000000000000000000000017611d11565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e44576000600185019050600060046000838152602001908152602001600020541415610e42576000548114610e41578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610eac8686866001611d3c565b505050505050565b610ecf838383604051806020016040528060008152506116c5565b505050565b601160009054906101000a900460ff1681565b600b5481565b601160019054906101000a900460ff1681565b6000610f0b82611baf565b9050919050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f80576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fd9611d42565b610fe36000611dc0565b565b600c5481565b610ff3611d42565b81600e9080519060200190611009929190612489565b5080600f9080519060200190611020929190612489565b505050565b600f80546110329061314a565b80601f016020809104026020016040519081016040528092919081815260200182805461105e9061314a565b80156110ab5780601f10611080576101008083540402835291602001916110ab565b820191906000526020600020905b81548152906001019060200180831161108e57829003601f168201915b505050505081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110ec9061314a565b80601f01602080910402602001604051908101604052809291908181526020018280546111189061314a565b80156111655780601f1061113a57610100808354040283529160200191611165565b820191906000526020600020905b81548152906001019060200180831161114857829003601f168201915b5050505050905090565b600260095414156111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90612e3a565b60405180910390fd5b6002600981905550601160019054906101000a900460ff161561120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490612dda565b60405180910390fd5b600c54811115611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990612d9a565b60405180910390fd5b600061125d82611971565b9050803410156112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990612d5a565b60405180910390fd5b600c54601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836112f09190612f7f565b1115611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890612e5a565b60405180910390fd5b600061133b610b78565b9050600a54838261134c9190612f7f565b111561138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490612e1a565b60405180910390fd5b6113973384611e86565b82601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113e69190612f7f565b925050819055505050600160098190555050565b611402611ba2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611467576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611474611ba2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611521611ba2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115669190612cfd565b60405180910390a35050565b61157a611d42565b80600d8190555050565b61158c611d42565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6115c0611d42565b60026009541415611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd90612e3a565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161163490612c81565b60006040518083038185875af1925050503d8060008114611671576040519150601f19603f3d011682016040523d82523d6000602084013e611676565b606091505b50509050806116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190612dfa565b60405180910390fd5b506001600981905550565b6116d0848484610b8f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611732576116fb84848484611ea4565b611731576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60126020528060005260406000206000915090505481565b606061175b82611b43565b61179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179190612dba565b60405180910390fd5b60001515601160009054906101000a900460ff161515141561184857601080546117c39061314a565b80601f01602080910402602001604051908101604052809291908181526020018280546117ef9061314a565b801561183c5780601f106118115761010080835404028352916020019161183c565b820191906000526020600020905b81548152906001019060200180831161181f57829003601f168201915b505050505090506118a4565b6000611852612004565b9050600081511161187257604051806020016040528060008152506118a0565b8061187c84612096565b600f60405160200161189093929190612c50565b6040516020818303038152906040525b9150505b919050565b600e80546118b69061314a565b80601f01602080910402602001604051908101604052809291908181526020018280546118e29061314a565b801561192f5780601f106119045761010080835404028352916020019161192f565b820191906000526020600020905b81548152906001019060200180831161191257829003601f168201915b505050505081565b600a5481565b611945611d42565b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b60008061197c610b78565b9050600b54838261198d9190612f7f565b1161199c576000915050611a04565b600b5483826119ab9190612f7f565b1180156119b95750600b5481105b156119f257600081600b546119ce9190613060565b9050600d5481856119df9190613060565b6119e99190613006565b92505050611a04565b82600d54611a009190613006565b9150505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aa5611d42565b8060109080519060200190611abb929190612489565b5050565b611ac7611d42565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e90612d3a565b60405180910390fd5b611b4081611dc0565b50565b600081611b4e611baa565b11158015611b5d575060005482105b8015611b9b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611bbe611baa565b11611c4657600054811015611c455760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c43575b6000811415611c39576004600083600190039350838152602001908152602001600020549050611c0e565b8092505050611c78565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d008686846121f7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611d4a612200565b73ffffffffffffffffffffffffffffffffffffffff16611d686110b3565b73ffffffffffffffffffffffffffffffffffffffff1614611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db590612d7a565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ea0828260405180602001604052806000815250612208565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eca611ba2565b8786866040518563ffffffff1660e01b8152600401611eec9493929190612cb1565b602060405180830381600087803b158015611f0657600080fd5b505af1925050508015611f3757506040513d601f19601f82011682018060405250810190611f349190612865565b60015b611fb1573d8060008114611f67576040519150601f19603f3d011682016040523d82523d6000602084013e611f6c565b606091505b50600081511415611fa9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e80546120139061314a565b80601f016020809104026020016040519081016040528092919081815260200182805461203f9061314a565b801561208c5780601f106120615761010080835404028352916020019161208c565b820191906000526020600020905b81548152906001019060200180831161206f57829003601f168201915b5050505050905090565b606060008214156120de576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121f2565b600082905060005b600082146121105780806120f9906131ad565b915050600a826121099190612fd5565b91506120e6565b60008167ffffffffffffffff81111561212c5761212b6132e3565b5b6040519080825280601f01601f19166020018201604052801561215e5781602001600182028036833780820191505090505b5090505b600085146121eb576001826121779190613060565b9150600a8561218691906131f6565b60306121929190612f7f565b60f81b8183815181106121a8576121a76132b4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121e49190612fd5565b9450612162565b8093505050505b919050565b60009392505050565b600033905090565b61221283836122a5565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122a057600080549050600083820390505b6122526000868380600101945086611ea4565b612288576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061223f57816000541461229d57600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612312576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561234d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61235a6000848385611ce3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123d1836123c26000866000611ce9565b6123cb85612479565b17611d11565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106123f5578060008190555050506124746000848385611d3c565b505050565b60006001821460e11b9050919050565b8280546124959061314a565b90600052602060002090601f0160209004810192826124b757600085556124fe565b82601f106124d057805160ff19168380011785556124fe565b828001600101855582156124fe579182015b828111156124fd5782518255916020019190600101906124e2565b5b50905061250b919061250f565b5090565b5b80821115612528576000816000905550600101612510565b5090565b600061253f61253a84612eba565b612e95565b90508281526020810184848401111561255b5761255a613317565b5b612566848285613108565b509392505050565b600061258161257c84612eeb565b612e95565b90508281526020810184848401111561259d5761259c613317565b5b6125a8848285613108565b509392505050565b6000813590506125bf816135b8565b92915050565b6000813590506125d4816135cf565b92915050565b6000813590506125e9816135e6565b92915050565b6000815190506125fe816135e6565b92915050565b600082601f83011261261957612618613312565b5b813561262984826020860161252c565b91505092915050565b600082601f83011261264757612646613312565b5b813561265784826020860161256e565b91505092915050565b60008135905061266f816135fd565b92915050565b60006020828403121561268b5761268a613321565b5b6000612699848285016125b0565b91505092915050565b600080604083850312156126b9576126b8613321565b5b60006126c7858286016125b0565b92505060206126d8858286016125b0565b9150509250929050565b6000806000606084860312156126fb576126fa613321565b5b6000612709868287016125b0565b935050602061271a868287016125b0565b925050604061272b86828701612660565b9150509250925092565b6000806000806080858703121561274f5761274e613321565b5b600061275d878288016125b0565b945050602061276e878288016125b0565b935050604061277f87828801612660565b925050606085013567ffffffffffffffff8111156127a05761279f61331c565b5b6127ac87828801612604565b91505092959194509250565b600080604083850312156127cf576127ce613321565b5b60006127dd858286016125b0565b92505060206127ee858286016125c5565b9150509250929050565b6000806040838503121561280f5761280e613321565b5b600061281d858286016125b0565b925050602061282e85828601612660565b9150509250929050565b60006020828403121561284e5761284d613321565b5b600061285c848285016125da565b91505092915050565b60006020828403121561287b5761287a613321565b5b6000612889848285016125ef565b91505092915050565b6000602082840312156128a8576128a7613321565b5b600082013567ffffffffffffffff8111156128c6576128c561331c565b5b6128d284828501612632565b91505092915050565b600080604083850312156128f2576128f1613321565b5b600083013567ffffffffffffffff8111156129105761290f61331c565b5b61291c85828601612632565b925050602083013567ffffffffffffffff81111561293d5761293c61331c565b5b61294985828601612632565b9150509250929050565b60006020828403121561296957612968613321565b5b600061297784828501612660565b91505092915050565b61298981613094565b82525050565b612998816130a6565b82525050565b60006129a982612f31565b6129b38185612f47565b93506129c3818560208601613117565b6129cc81613326565b840191505092915050565b60006129e282612f3c565b6129ec8185612f63565b93506129fc818560208601613117565b612a0581613326565b840191505092915050565b6000612a1b82612f3c565b612a258185612f74565b9350612a35818560208601613117565b80840191505092915050565b60008154612a4e8161314a565b612a588186612f74565b94506001821660008114612a735760018114612a8457612ab7565b60ff19831686528186019350612ab7565b612a8d85612f1c565b60005b83811015612aaf57815481890152600182019150602081019050612a90565b838801955050505b50505092915050565b6000612acd602683612f63565b9150612ad882613337565b604082019050919050565b6000612af0601883612f63565b9150612afb82613386565b602082019050919050565b6000612b13602083612f63565b9150612b1e826133af565b602082019050919050565b6000612b36602e83612f63565b9150612b41826133d8565b604082019050919050565b6000612b59602f83612f63565b9150612b6482613427565b604082019050919050565b6000612b7c601783612f63565b9150612b8782613476565b602082019050919050565b6000612b9f600083612f58565b9150612baa8261349f565b600082019050919050565b6000612bc2601083612f63565b9150612bcd826134a2565b602082019050919050565b6000612be5604283612f63565b9150612bf0826134cb565b606082019050919050565b6000612c08601f83612f63565b9150612c1382613540565b602082019050919050565b6000612c2b603a83612f63565b9150612c3682613569565b604082019050919050565b612c4a816130fe565b82525050565b6000612c5c8286612a10565b9150612c688285612a10565b9150612c748284612a41565b9150819050949350505050565b6000612c8c82612b92565b9150819050919050565b6000602082019050612cab6000830184612980565b92915050565b6000608082019050612cc66000830187612980565b612cd36020830186612980565b612ce06040830185612c41565b8181036060830152612cf2818461299e565b905095945050505050565b6000602082019050612d12600083018461298f565b92915050565b60006020820190508181036000830152612d3281846129d7565b905092915050565b60006020820190508181036000830152612d5381612ac0565b9050919050565b60006020820190508181036000830152612d7381612ae3565b9050919050565b60006020820190508181036000830152612d9381612b06565b9050919050565b60006020820190508181036000830152612db381612b29565b9050919050565b60006020820190508181036000830152612dd381612b4c565b9050919050565b60006020820190508181036000830152612df381612b6f565b9050919050565b60006020820190508181036000830152612e1381612bb5565b9050919050565b60006020820190508181036000830152612e3381612bd8565b9050919050565b60006020820190508181036000830152612e5381612bfb565b9050919050565b60006020820190508181036000830152612e7381612c1e565b9050919050565b6000602082019050612e8f6000830184612c41565b92915050565b6000612e9f612eb0565b9050612eab828261317c565b919050565b6000604051905090565b600067ffffffffffffffff821115612ed557612ed46132e3565b5b612ede82613326565b9050602081019050919050565b600067ffffffffffffffff821115612f0657612f056132e3565b5b612f0f82613326565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f8a826130fe565b9150612f95836130fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fca57612fc9613227565b5b828201905092915050565b6000612fe0826130fe565b9150612feb836130fe565b925082612ffb57612ffa613256565b5b828204905092915050565b6000613011826130fe565b915061301c836130fe565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561305557613054613227565b5b828202905092915050565b600061306b826130fe565b9150613076836130fe565b92508282101561308957613088613227565b5b828203905092915050565b600061309f826130de565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561313557808201518184015260208101905061311a565b83811115613144576000848401525b50505050565b6000600282049050600182168061316257607f821691505b6020821081141561317657613175613285565b5b50919050565b61318582613326565b810181811067ffffffffffffffff821117156131a4576131a36132e3565b5b80604052505050565b60006131b8826130fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131eb576131ea613227565b5b600182019050919050565b6000613201826130fe565b915061320c836130fe565b92508261321c5761321b613256565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e7420416d6f756e742053656e740000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f752063616e2774206d696e74206d6f7265207468616e2074686520616d6f60008201527f756e74207370656369666965642e000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f436f6e7472616374204d696e74696e6720506175736564000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f3a204e6f206d6f7265204e46547320746f206d696e742c64656372656173652060008201527f746865207175616e74697479206f7220636865636b206f7574204f70656e536560208201527f612e000000000000000000000000000000000000000000000000000000000000604082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f596f752063616e74206d696e74206d6f72652c4465637265617365204d696e7460008201527f416d6f756e74206f72205761697420466f72204f70656e736561000000000000602082015250565b6135c181613094565b81146135cc57600080fd5b50565b6135d8816130a6565b81146135e357600080fd5b50565b6135ef816130b2565b81146135fa57600080fd5b50565b613606816130fe565b811461361157600080fd5b5056fea2646970667358221220f23802eb8d0fb0f3d91787684e921dc4c91fec113a2197115be8699f9f2ef9d864736f6c63430008070033

Deployed Bytecode Sourcemap

53639:3186:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23441:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29088:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31034:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53964:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30582:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22495:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40299:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31924:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54060:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53779:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54095:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28877:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53849:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24120:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8032:103;;;;;;;;;;;;;:::i;:::-;;53816:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56460:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53930:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7384:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29257:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54236:712;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31310:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56346:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56177:79;;;;;;;;;;;;;:::i;:::-;;56631:189;;;;;;;;;;;;;:::i;:::-;;32180:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54130:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55561:472;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53896:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53741:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56264:74;;;;;;;;;;;;;:::i;:::-;;54956:463;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31689:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56041:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8290:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23441:615;23526:4;23841:10;23826:25;;:11;:25;;;;:102;;;;23918:10;23903:25;;:11;:25;;;;23826:102;:179;;;;23995:10;23980:25;;:11;:25;;;;23826:179;23806:199;;23441:615;;;:::o;29088:100::-;29142:13;29175:5;29168:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29088:100;:::o;31034:204::-;31102:7;31127:16;31135:7;31127;:16::i;:::-;31122:64;;31152:34;;;;;;;;;;;;;;31122:64;31206:15;:24;31222:7;31206:24;;;;;;;;;;;;;;;;;;;;;31199:31;;31034:204;;;:::o;53964:87::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30582:386::-;30655:13;30671:16;30679:7;30671;:16::i;:::-;30655:32;;30727:5;30704:28;;:19;:17;:19::i;:::-;:28;;;30700:175;;30752:44;30769:5;30776:19;:17;:19::i;:::-;30752:16;:44::i;:::-;30747:128;;30824:35;;;;;;;;;;;;;;30747:128;30700:175;30914:2;30887:15;:24;30903:7;30887:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30952:7;30948:2;30932:28;;30941:5;30932:28;;;;;;;;;;;;30644:324;30582:386;;:::o;22495:315::-;22548:7;22776:15;:13;:15::i;:::-;22761:12;;22745:13;;:28;:46;22738:53;;22495:315;:::o;40299:2800::-;40433:27;40463;40482:7;40463:18;:27::i;:::-;40433:57;;40548:4;40507:45;;40523:19;40507:45;;;40503:86;;40561:28;;;;;;;;;;;;;;40503:86;40603:27;40632:23;40659:28;40679:7;40659:19;:28::i;:::-;40602:85;;;;40787:62;40806:15;40823:4;40829:19;:17;:19::i;:::-;40787:18;:62::i;:::-;40782:174;;40869:43;40886:4;40892:19;:17;:19::i;:::-;40869:16;:43::i;:::-;40864:92;;40921:35;;;;;;;;;;;;;;40864:92;40782:174;40987:1;40973:16;;:2;:16;;;40969:52;;;40998:23;;;;;;;;;;;;;;40969:52;41034:43;41056:4;41062:2;41066:7;41075:1;41034:21;:43::i;:::-;41170:15;41167:160;;;41310:1;41289:19;41282:30;41167:160;41705:18;:24;41724:4;41705:24;;;;;;;;;;;;;;;;41703:26;;;;;;;;;;;;41774:18;:22;41793:2;41774:22;;;;;;;;;;;;;;;;41772:24;;;;;;;;;;;42096:145;42133:2;42181:45;42196:4;42202:2;42206:19;42181:14;:45::i;:::-;19723:8;42154:72;42096:18;:145::i;:::-;42067:17;:26;42085:7;42067:26;;;;;;;;;;;:174;;;;42411:1;19723:8;42361:19;:46;:51;42357:626;;;42433:19;42465:1;42455:7;:11;42433:33;;42622:1;42588:17;:30;42606:11;42588:30;;;;;;;;;;;;:35;42584:384;;;42726:13;;42711:11;:28;42707:242;;42906:19;42873:17;:30;42891:11;42873:30;;;;;;;;;;;:52;;;;42707:242;42584:384;42414:569;42357:626;43030:7;43026:2;43011:27;;43020:4;43011:27;;;;;;;;;;;;43049:42;43070:4;43076:2;43080:7;43089:1;43049:20;:42::i;:::-;40422:2677;;;40299:2800;;;:::o;31924:185::-;32062:39;32079:4;32085:2;32089:7;32062:39;;;;;;;;;;;;:16;:39::i;:::-;31924:185;;;:::o;54060:28::-;;;;;;;;;;;;;:::o;53779:30::-;;;;:::o;54095:26::-;;;;;;;;;;;;;:::o;28877:144::-;28941:7;28984:27;29003:7;28984:18;:27::i;:::-;28961:52;;28877:144;;;:::o;53849:38::-;;;;:::o;24120:224::-;24184:7;24225:1;24208:19;;:5;:19;;;24204:60;;;24236:28;;;;;;;;;;;;;;24204:60;18675:13;24282:18;:25;24301:5;24282:25;;;;;;;;;;;;;;;;:54;24275:61;;24120:224;;;:::o;8032:103::-;7270:13;:11;:13::i;:::-;8097:30:::1;8124:1;8097:18;:30::i;:::-;8032:103::o:0;53816:26::-;;;;:::o;56460:163::-;7270:13;:11;:13::i;:::-;56574:5:::1;56558:13;:21;;;;;;;;;;;;:::i;:::-;;56606:9;56590:13;:25;;;;;;;;;;;;:::i;:::-;;56460:163:::0;;:::o;53930:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7384:87::-;7430:7;7457:6;;;;;;;;;;;7450:13;;7384:87;:::o;29257:104::-;29313:13;29346:7;29339:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29257:104;:::o;54236:712::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;54319:6:::1;;;;;;;;;;;54318:7;54310:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;54386:7;;54371:11;:22;;54363:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;54454:13;54470:21;54479:11;54470:8;:21::i;:::-;54454:37;;54522:5;54510:9;:17;;54502:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;54614:7;;54586:12;:24;54599:10;54586:24;;;;;;;;;;;;;;;;54574:11;:36;;;;:::i;:::-;:47;;54566:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;54695:14;54712:13;:11;:13::i;:::-;54695:30;;54768:9;;54753:11;54744:6;:20;;;;:::i;:::-;:33;;54736:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;54859:33;54869:10;54880:11;54859:9;:33::i;:::-;54929:11;54903:12;:24;54916:10;54903:24;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;54299:649;;1768:1:::0;2722:7;:22;;;;54236:712;:::o;31310:308::-;31421:19;:17;:19::i;:::-;31409:31;;:8;:31;;;31405:61;;;31449:17;;;;;;;;;;;;;;31405:61;31531:8;31479:18;:39;31498:19;:17;:19::i;:::-;31479:39;;;;;;;;;;;;;;;:49;31519:8;31479:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31591:8;31555:55;;31570:19;:17;:19::i;:::-;31555:55;;;31601:8;31555:55;;;;;;:::i;:::-;;;;;;;;31310:308;;:::o;56346:106::-;7270:13;:11;:13::i;:::-;56425:9:::1;56413;:21;;;;56346:106:::0;:::o;56177:79::-;7270:13;:11;:13::i;:::-;56240:8:::1;;;;;;;;;;;56239:9;56228:8;;:20;;;;;;;;;;;;;;;;;;56177:79::o:0;56631:189::-;7270:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;56700:12:::2;56717:10;:15;;56740:21;56717:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56699:67;;;56785:7;56777:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;56688:132;1768:1:::1;2722:7;:22;;;;56631:189::o:0;32180:399::-;32347:31;32360:4;32366:2;32370:7;32347:12;:31::i;:::-;32411:1;32393:2;:14;;;:19;32389:183;;32432:56;32463:4;32469:2;32473:7;32482:5;32432:30;:56::i;:::-;32427:145;;32516:40;;;;;;;;;;;;;;32427:145;32389:183;32180:399;;;;:::o;54130:47::-;;;;;;;;;;;;;;;;;:::o;55561:472::-;55634:13;55668:16;55676:7;55668;:16::i;:::-;55660:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;55762:5;55750:17;;:8;;;;;;;;;;;:17;;;55746:280;;;55791:14;55784:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55746:280;55838:28;55869:10;:8;:10::i;:::-;55838:41;;55932:1;55907:14;55901:28;:32;:113;;;;;;;;;;;;;;;;;55960:14;55975:18;:7;:16;:18::i;:::-;55994:13;55943:65;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55901:113;55894:120;;;55561:472;;;;:::o;53896:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53741:31::-;;;;:::o;56264:74::-;7270:13;:11;:13::i;:::-;56324:6:::1;;;;;;;;;;;56323:7;56314:6;;:16;;;;;;;;;;;;;;;;;;56264:74::o:0;54956:463::-;55015:7;55035:19;55057:13;:11;:13::i;:::-;55035:35;;55115:8;;55099:11;55086;:24;;;;:::i;:::-;:37;55083:288;;55146:1;55139:8;;;;;55083:288;55204:8;;55190:11;55177;:24;;;;:::i;:::-;:35;:61;;;;;55230:8;;55216:11;:22;55177:61;55174:197;;;55254:20;55288:11;55277:8;;:22;;;;:::i;:::-;55254:45;;55350:9;;55335:12;55322:11;:25;;;;:::i;:::-;55321:38;;;;:::i;:::-;55314:45;;;;;;55174:197;55400:11;55388:9;;:23;;;;:::i;:::-;55381:30;;;54956:463;;;;:::o;31689:164::-;31786:4;31810:18;:25;31829:5;31810:25;;;;;;;;;;;;;;;:35;31836:8;31810:35;;;;;;;;;;;;;;;;;;;;;;;;;31803:42;;31689:164;;;;:::o;56041:126::-;7270:13;:11;:13::i;:::-;56144:15:::1;56127:14;:32;;;;;;;;;;;;:::i;:::-;;56041:126:::0;:::o;8290:201::-;7270:13;:11;:13::i;:::-;8399:1:::1;8379:22;;:8;:22;;;;8371:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8455:28;8474:8;8455:18;:28::i;:::-;8290:201:::0;:::o;32834:273::-;32891:4;32947:7;32928:15;:13;:15::i;:::-;:26;;:66;;;;;32981:13;;32971:7;:23;32928:66;:152;;;;;33079:1;19445:8;33032:17;:26;33050:7;33032:26;;;;;;;;;;;;:43;:48;32928:152;32908:172;;32834:273;;;:::o;51395:105::-;51455:7;51482:10;51475:17;;51395:105;:::o;22019:92::-;22075:7;22019:92;:::o;25794:1129::-;25861:7;25881:12;25896:7;25881:22;;25964:4;25945:15;:13;:15::i;:::-;:23;25941:915;;25998:13;;25991:4;:20;25987:869;;;26036:14;26053:17;:23;26071:4;26053:23;;;;;;;;;;;;26036:40;;26169:1;19445:8;26142:6;:23;:28;26138:699;;;26661:113;26678:1;26668:6;:11;26661:113;;;26721:17;:25;26739:6;;;;;;;26721:25;;;;;;;;;;;;26712:34;;26661:113;;;26807:6;26800:13;;;;;;26138:699;26013:843;25987:869;25941:915;26884:31;;;;;;;;;;;;;;25794:1129;;;;:::o;38635:652::-;38730:27;38759:23;38800:53;38856:15;38800:71;;39042:7;39036:4;39029:21;39077:22;39071:4;39064:36;39153:4;39147;39137:21;39114:44;;39249:19;39243:26;39224:45;;38980:300;38635:652;;;:::o;39400:645::-;39542:11;39704:15;39698:4;39694:26;39686:34;;39863:15;39852:9;39848:31;39835:44;;40010:15;39999:9;39996:30;39989:4;39978:9;39975:19;39972:55;39962:65;;39400:645;;;;;:::o;50228:159::-;;;;;:::o;48540:309::-;48675:7;48695:16;19846:3;48721:19;:40;;48695:67;;19846:3;48788:31;48799:4;48805:2;48809:9;48788:10;:31::i;:::-;48780:40;;:61;;48773:68;;;48540:309;;;;;:::o;28368:447::-;28448:14;28616:15;28609:5;28605:27;28596:36;;28790:5;28776:11;28752:22;28748:40;28745:51;28738:5;28735:62;28725:72;;28368:447;;;;:::o;51046:158::-;;;;;:::o;7549:132::-;7624:12;:10;:12::i;:::-;7613:23;;:7;:5;:7::i;:::-;:23;;;7605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7549:132::o;8651:191::-;8725:16;8744:6;;;;;;;;;;;8725:25;;8770:8;8761:6;;:17;;;;;;;;;;;;;;;;;;8825:8;8794:40;;8815:8;8794:40;;;;;;;;;;;;8714:128;8651:191;:::o;33191:104::-;33260:27;33270:2;33274:8;33260:27;;;;;;;;;;;;:9;:27::i;:::-;33191:104;;:::o;47050:716::-;47213:4;47259:2;47234:45;;;47280:19;:17;:19::i;:::-;47301:4;47307:7;47316:5;47234:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47230:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47534:1;47517:6;:13;:18;47513:235;;;47563:40;;;;;;;;;;;;;;47513:235;47706:6;47700:13;47691:6;47687:2;47683:15;47676:38;47230:529;47403:54;;;47393:64;;;:6;:64;;;;47386:71;;;47050:716;;;;;;:::o;55437:114::-;55497:13;55530;55523:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55437:114;:::o;3189:723::-;3245:13;3475:1;3466:5;:10;3462:53;;;3493:10;;;;;;;;;;;;;;;;;;;;;3462:53;3525:12;3540:5;3525:20;;3556:14;3581:78;3596:1;3588:4;:9;3581:78;;3614:8;;;;;:::i;:::-;;;;3645:2;3637:10;;;;;:::i;:::-;;;3581:78;;;3669:19;3701:6;3691:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3669:39;;3719:154;3735:1;3726:5;:10;3719:154;;3763:1;3753:11;;;;;:::i;:::-;;;3830:2;3822:5;:10;;;;:::i;:::-;3809:2;:24;;;;:::i;:::-;3796:39;;3779:6;3786;3779:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3859:2;3850:11;;;;;:::i;:::-;;;3719:154;;;3897:6;3883:21;;;;;3189:723;;;;:::o;49425:147::-;49562:6;49425:147;;;;;:::o;5935:98::-;5988:7;6015:10;6008:17;;5935:98;:::o;33711:681::-;33834:19;33840:2;33844:8;33834:5;:19::i;:::-;33913:1;33895:2;:14;;;:19;33891:483;;33935:11;33949:13;;33935:27;;33981:13;34003:8;33997:3;:14;33981:30;;34030:233;34061:62;34100:1;34104:2;34108:7;;;;;;34117:5;34061:30;:62::i;:::-;34056:167;;34159:40;;;;;;;;;;;;;;34056:167;34258:3;34250:5;:11;34030:233;;34345:3;34328:13;;:20;34324:34;;34350:8;;;34324:34;33916:458;;33891:483;33711:681;;;:::o;34665:1529::-;34730:20;34753:13;;34730:36;;34795:1;34781:16;;:2;:16;;;34777:48;;;34806:19;;;;;;;;;;;;;;34777:48;34852:1;34840:8;:13;34836:44;;;34862:18;;;;;;;;;;;;;;34836:44;34893:61;34923:1;34927:2;34931:12;34945:8;34893:21;:61::i;:::-;35436:1;18812:2;35407:1;:25;;35406:31;35394:8;:44;35368:18;:22;35387:2;35368:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;35715:139;35752:2;35806:33;35829:1;35833:2;35837:1;35806:14;:33::i;:::-;35773:30;35794:8;35773:20;:30::i;:::-;:66;35715:18;:139::i;:::-;35681:17;:31;35699:12;35681:31;;;;;;;;;;;:173;;;;35871:15;35889:12;35871:30;;35916:11;35945:8;35930:12;:23;35916:37;;35968:101;36020:9;;;;;;36016:2;35995:35;;36012:1;35995:35;;;;;;;;;;;;36064:3;36054:7;:13;35968:101;;36101:3;36085:13;:19;;;;35142:974;;36126:60;36155:1;36159:2;36163:12;36177:8;36126:20;:60::i;:::-;34719:1475;34665:1529;;:::o;30198:322::-;30268:14;30499:1;30489:8;30486:15;30461:23;30457:45;30447:55;;30198:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:834::-;6911:6;6919;6968:2;6956:9;6947:7;6943:23;6939:32;6936:119;;;6974:79;;:::i;:::-;6936:119;7122:1;7111:9;7107:17;7094:31;7152:18;7144:6;7141:30;7138:117;;;7174:79;;:::i;:::-;7138:117;7279:63;7334:7;7325:6;7314:9;7310:22;7279:63;:::i;:::-;7269:73;;7065:287;7419:2;7408:9;7404:18;7391:32;7450:18;7442:6;7439:30;7436:117;;;7472:79;;:::i;:::-;7436:117;7577:63;7632:7;7623:6;7612:9;7608:22;7577:63;:::i;:::-;7567:73;;7362:288;6823:834;;;;;:::o;7663:329::-;7722:6;7771:2;7759:9;7750:7;7746:23;7742:32;7739:119;;;7777:79;;:::i;:::-;7739:119;7897:1;7922:53;7967:7;7958:6;7947:9;7943:22;7922:53;:::i;:::-;7912:63;;7868:117;7663:329;;;;:::o;7998:118::-;8085:24;8103:5;8085:24;:::i;:::-;8080:3;8073:37;7998:118;;:::o;8122:109::-;8203:21;8218:5;8203:21;:::i;:::-;8198:3;8191:34;8122:109;;:::o;8237:360::-;8323:3;8351:38;8383:5;8351:38;:::i;:::-;8405:70;8468:6;8463:3;8405:70;:::i;:::-;8398:77;;8484:52;8529:6;8524:3;8517:4;8510:5;8506:16;8484:52;:::i;:::-;8561:29;8583:6;8561:29;:::i;:::-;8556:3;8552:39;8545:46;;8327:270;8237:360;;;;:::o;8603:364::-;8691:3;8719:39;8752:5;8719:39;:::i;:::-;8774:71;8838:6;8833:3;8774:71;:::i;:::-;8767:78;;8854:52;8899:6;8894:3;8887:4;8880:5;8876:16;8854:52;:::i;:::-;8931:29;8953:6;8931:29;:::i;:::-;8926:3;8922:39;8915:46;;8695:272;8603:364;;;;:::o;8973:377::-;9079:3;9107:39;9140:5;9107:39;:::i;:::-;9162:89;9244:6;9239:3;9162:89;:::i;:::-;9155:96;;9260:52;9305:6;9300:3;9293:4;9286:5;9282:16;9260:52;:::i;:::-;9337:6;9332:3;9328:16;9321:23;;9083:267;8973:377;;;;:::o;9380:845::-;9483:3;9520:5;9514:12;9549:36;9575:9;9549:36;:::i;:::-;9601:89;9683:6;9678:3;9601:89;:::i;:::-;9594:96;;9721:1;9710:9;9706:17;9737:1;9732:137;;;;9883:1;9878:341;;;;9699:520;;9732:137;9816:4;9812:9;9801;9797:25;9792:3;9785:38;9852:6;9847:3;9843:16;9836:23;;9732:137;;9878:341;9945:38;9977:5;9945:38;:::i;:::-;10005:1;10019:154;10033:6;10030:1;10027:13;10019:154;;;10107:7;10101:14;10097:1;10092:3;10088:11;10081:35;10157:1;10148:7;10144:15;10133:26;;10055:4;10052:1;10048:12;10043:17;;10019:154;;;10202:6;10197:3;10193:16;10186:23;;9885:334;;9699:520;;9487:738;;9380:845;;;;:::o;10231:366::-;10373:3;10394:67;10458:2;10453:3;10394:67;:::i;:::-;10387:74;;10470:93;10559:3;10470:93;:::i;:::-;10588:2;10583:3;10579:12;10572:19;;10231:366;;;:::o;10603:::-;10745:3;10766:67;10830:2;10825:3;10766:67;:::i;:::-;10759:74;;10842:93;10931:3;10842:93;:::i;:::-;10960:2;10955:3;10951:12;10944:19;;10603:366;;;:::o;10975:::-;11117:3;11138:67;11202:2;11197:3;11138:67;:::i;:::-;11131:74;;11214:93;11303:3;11214:93;:::i;:::-;11332:2;11327:3;11323:12;11316:19;;10975:366;;;:::o;11347:::-;11489:3;11510:67;11574:2;11569:3;11510:67;:::i;:::-;11503:74;;11586:93;11675:3;11586:93;:::i;:::-;11704:2;11699:3;11695:12;11688:19;;11347:366;;;:::o;11719:::-;11861:3;11882:67;11946:2;11941:3;11882:67;:::i;:::-;11875:74;;11958:93;12047:3;11958:93;:::i;:::-;12076:2;12071:3;12067:12;12060:19;;11719:366;;;:::o;12091:::-;12233:3;12254:67;12318:2;12313:3;12254:67;:::i;:::-;12247:74;;12330:93;12419:3;12330:93;:::i;:::-;12448:2;12443:3;12439:12;12432:19;;12091:366;;;:::o;12463:398::-;12622:3;12643:83;12724:1;12719:3;12643:83;:::i;:::-;12636:90;;12735:93;12824:3;12735:93;:::i;:::-;12853:1;12848:3;12844:11;12837:18;;12463:398;;;:::o;12867:366::-;13009:3;13030:67;13094:2;13089:3;13030:67;:::i;:::-;13023:74;;13106:93;13195:3;13106:93;:::i;:::-;13224:2;13219:3;13215:12;13208:19;;12867:366;;;:::o;13239:::-;13381:3;13402:67;13466:2;13461:3;13402:67;:::i;:::-;13395:74;;13478:93;13567:3;13478:93;:::i;:::-;13596:2;13591:3;13587:12;13580:19;;13239:366;;;:::o;13611:::-;13753:3;13774:67;13838:2;13833:3;13774:67;:::i;:::-;13767:74;;13850:93;13939:3;13850:93;:::i;:::-;13968:2;13963:3;13959:12;13952:19;;13611:366;;;:::o;13983:::-;14125:3;14146:67;14210:2;14205:3;14146:67;:::i;:::-;14139:74;;14222:93;14311:3;14222:93;:::i;:::-;14340:2;14335:3;14331:12;14324:19;;13983:366;;;:::o;14355:118::-;14442:24;14460:5;14442:24;:::i;:::-;14437:3;14430:37;14355:118;;:::o;14479:589::-;14704:3;14726:95;14817:3;14808:6;14726:95;:::i;:::-;14719:102;;14838:95;14929:3;14920:6;14838:95;:::i;:::-;14831:102;;14950:92;15038:3;15029:6;14950:92;:::i;:::-;14943:99;;15059:3;15052:10;;14479:589;;;;;;:::o;15074:379::-;15258:3;15280:147;15423:3;15280:147;:::i;:::-;15273:154;;15444:3;15437:10;;15074:379;;;:::o;15459:222::-;15552:4;15590:2;15579:9;15575:18;15567:26;;15603:71;15671:1;15660:9;15656:17;15647:6;15603:71;:::i;:::-;15459:222;;;;:::o;15687:640::-;15882:4;15920:3;15909:9;15905:19;15897:27;;15934:71;16002:1;15991:9;15987:17;15978:6;15934:71;:::i;:::-;16015:72;16083:2;16072:9;16068:18;16059:6;16015:72;:::i;:::-;16097;16165:2;16154:9;16150:18;16141:6;16097:72;:::i;:::-;16216:9;16210:4;16206:20;16201:2;16190:9;16186:18;16179:48;16244:76;16315:4;16306:6;16244:76;:::i;:::-;16236:84;;15687:640;;;;;;;:::o;16333:210::-;16420:4;16458:2;16447:9;16443:18;16435:26;;16471:65;16533:1;16522:9;16518:17;16509:6;16471:65;:::i;:::-;16333:210;;;;:::o;16549:313::-;16662:4;16700:2;16689:9;16685:18;16677:26;;16749:9;16743:4;16739:20;16735:1;16724:9;16720:17;16713:47;16777:78;16850:4;16841:6;16777:78;:::i;:::-;16769:86;;16549:313;;;;:::o;16868:419::-;17034:4;17072:2;17061:9;17057:18;17049:26;;17121:9;17115:4;17111:20;17107:1;17096:9;17092:17;17085:47;17149:131;17275:4;17149:131;:::i;:::-;17141:139;;16868:419;;;:::o;17293:::-;17459:4;17497:2;17486:9;17482:18;17474:26;;17546:9;17540:4;17536:20;17532:1;17521:9;17517:17;17510:47;17574:131;17700:4;17574:131;:::i;:::-;17566:139;;17293:419;;;:::o;17718:::-;17884:4;17922:2;17911:9;17907:18;17899:26;;17971:9;17965:4;17961:20;17957:1;17946:9;17942:17;17935:47;17999:131;18125:4;17999:131;:::i;:::-;17991:139;;17718:419;;;:::o;18143:::-;18309:4;18347:2;18336:9;18332:18;18324:26;;18396:9;18390:4;18386:20;18382:1;18371:9;18367:17;18360:47;18424:131;18550:4;18424:131;:::i;:::-;18416:139;;18143:419;;;:::o;18568:::-;18734:4;18772:2;18761:9;18757:18;18749:26;;18821:9;18815:4;18811:20;18807:1;18796:9;18792:17;18785:47;18849:131;18975:4;18849:131;:::i;:::-;18841:139;;18568:419;;;:::o;18993:::-;19159:4;19197:2;19186:9;19182:18;19174:26;;19246:9;19240:4;19236:20;19232:1;19221:9;19217:17;19210:47;19274:131;19400:4;19274:131;:::i;:::-;19266:139;;18993:419;;;:::o;19418:::-;19584:4;19622:2;19611:9;19607:18;19599:26;;19671:9;19665:4;19661:20;19657:1;19646:9;19642:17;19635:47;19699:131;19825:4;19699:131;:::i;:::-;19691:139;;19418:419;;;:::o;19843:::-;20009:4;20047:2;20036:9;20032:18;20024:26;;20096:9;20090:4;20086:20;20082:1;20071:9;20067:17;20060:47;20124:131;20250:4;20124:131;:::i;:::-;20116:139;;19843:419;;;:::o;20268:::-;20434:4;20472:2;20461:9;20457:18;20449:26;;20521:9;20515:4;20511:20;20507:1;20496:9;20492:17;20485:47;20549:131;20675:4;20549:131;:::i;:::-;20541:139;;20268:419;;;:::o;20693:::-;20859:4;20897:2;20886:9;20882:18;20874:26;;20946:9;20940:4;20936:20;20932:1;20921:9;20917:17;20910:47;20974:131;21100:4;20974:131;:::i;:::-;20966:139;;20693:419;;;:::o;21118:222::-;21211:4;21249:2;21238:9;21234:18;21226:26;;21262:71;21330:1;21319:9;21315:17;21306:6;21262:71;:::i;:::-;21118:222;;;;:::o;21346:129::-;21380:6;21407:20;;:::i;:::-;21397:30;;21436:33;21464:4;21456:6;21436:33;:::i;:::-;21346:129;;;:::o;21481:75::-;21514:6;21547:2;21541:9;21531:19;;21481:75;:::o;21562:307::-;21623:4;21713:18;21705:6;21702:30;21699:56;;;21735:18;;:::i;:::-;21699:56;21773:29;21795:6;21773:29;:::i;:::-;21765:37;;21857:4;21851;21847:15;21839:23;;21562:307;;;:::o;21875:308::-;21937:4;22027:18;22019:6;22016:30;22013:56;;;22049:18;;:::i;:::-;22013:56;22087:29;22109:6;22087:29;:::i;:::-;22079:37;;22171:4;22165;22161:15;22153:23;;21875:308;;;:::o;22189:141::-;22238:4;22261:3;22253:11;;22284:3;22281:1;22274:14;22318:4;22315:1;22305:18;22297:26;;22189:141;;;:::o;22336:98::-;22387:6;22421:5;22415:12;22405:22;;22336:98;;;:::o;22440:99::-;22492:6;22526:5;22520:12;22510:22;;22440:99;;;:::o;22545:168::-;22628:11;22662:6;22657:3;22650:19;22702:4;22697:3;22693:14;22678:29;;22545:168;;;;:::o;22719:147::-;22820:11;22857:3;22842:18;;22719:147;;;;:::o;22872:169::-;22956:11;22990:6;22985:3;22978:19;23030:4;23025:3;23021:14;23006:29;;22872:169;;;;:::o;23047:148::-;23149:11;23186:3;23171:18;;23047:148;;;;:::o;23201:305::-;23241:3;23260:20;23278:1;23260:20;:::i;:::-;23255:25;;23294:20;23312:1;23294:20;:::i;:::-;23289:25;;23448:1;23380:66;23376:74;23373:1;23370:81;23367:107;;;23454:18;;:::i;:::-;23367:107;23498:1;23495;23491:9;23484:16;;23201:305;;;;:::o;23512:185::-;23552:1;23569:20;23587:1;23569:20;:::i;:::-;23564:25;;23603:20;23621:1;23603:20;:::i;:::-;23598:25;;23642:1;23632:35;;23647:18;;:::i;:::-;23632:35;23689:1;23686;23682:9;23677:14;;23512:185;;;;:::o;23703:348::-;23743:7;23766:20;23784:1;23766:20;:::i;:::-;23761:25;;23800:20;23818:1;23800:20;:::i;:::-;23795:25;;23988:1;23920:66;23916:74;23913:1;23910:81;23905:1;23898:9;23891:17;23887:105;23884:131;;;23995:18;;:::i;:::-;23884:131;24043:1;24040;24036:9;24025:20;;23703:348;;;;:::o;24057:191::-;24097:4;24117:20;24135:1;24117:20;:::i;:::-;24112:25;;24151:20;24169:1;24151:20;:::i;:::-;24146:25;;24190:1;24187;24184:8;24181:34;;;24195:18;;:::i;:::-;24181:34;24240:1;24237;24233:9;24225:17;;24057:191;;;;:::o;24254:96::-;24291:7;24320:24;24338:5;24320:24;:::i;:::-;24309:35;;24254:96;;;:::o;24356:90::-;24390:7;24433:5;24426:13;24419:21;24408:32;;24356:90;;;:::o;24452:149::-;24488:7;24528:66;24521:5;24517:78;24506:89;;24452:149;;;:::o;24607:126::-;24644:7;24684:42;24677:5;24673:54;24662:65;;24607:126;;;:::o;24739:77::-;24776:7;24805:5;24794:16;;24739:77;;;:::o;24822:154::-;24906:6;24901:3;24896;24883:30;24968:1;24959:6;24954:3;24950:16;24943:27;24822:154;;;:::o;24982:307::-;25050:1;25060:113;25074:6;25071:1;25068:13;25060:113;;;25159:1;25154:3;25150:11;25144:18;25140:1;25135:3;25131:11;25124:39;25096:2;25093:1;25089:10;25084:15;;25060:113;;;25191:6;25188:1;25185:13;25182:101;;;25271:1;25262:6;25257:3;25253:16;25246:27;25182:101;25031:258;24982:307;;;:::o;25295:320::-;25339:6;25376:1;25370:4;25366:12;25356:22;;25423:1;25417:4;25413:12;25444:18;25434:81;;25500:4;25492:6;25488:17;25478:27;;25434:81;25562:2;25554:6;25551:14;25531:18;25528:38;25525:84;;;25581:18;;:::i;:::-;25525:84;25346:269;25295:320;;;:::o;25621:281::-;25704:27;25726:4;25704:27;:::i;:::-;25696:6;25692:40;25834:6;25822:10;25819:22;25798:18;25786:10;25783:34;25780:62;25777:88;;;25845:18;;:::i;:::-;25777:88;25885:10;25881:2;25874:22;25664:238;25621:281;;:::o;25908:233::-;25947:3;25970:24;25988:5;25970:24;:::i;:::-;25961:33;;26016:66;26009:5;26006:77;26003:103;;;26086:18;;:::i;:::-;26003:103;26133:1;26126:5;26122:13;26115:20;;25908:233;;;:::o;26147:176::-;26179:1;26196:20;26214:1;26196:20;:::i;:::-;26191:25;;26230:20;26248:1;26230:20;:::i;:::-;26225:25;;26269:1;26259:35;;26274:18;;:::i;:::-;26259:35;26315:1;26312;26308:9;26303:14;;26147:176;;;;:::o;26329:180::-;26377:77;26374:1;26367:88;26474:4;26471:1;26464:15;26498:4;26495:1;26488:15;26515:180;26563:77;26560:1;26553:88;26660:4;26657:1;26650:15;26684:4;26681:1;26674:15;26701:180;26749:77;26746:1;26739:88;26846:4;26843:1;26836:15;26870:4;26867:1;26860:15;26887:180;26935:77;26932:1;26925:88;27032:4;27029:1;27022:15;27056:4;27053:1;27046:15;27073:180;27121:77;27118:1;27111:88;27218:4;27215:1;27208:15;27242:4;27239:1;27232:15;27259:117;27368:1;27365;27358:12;27382:117;27491:1;27488;27481:12;27505:117;27614:1;27611;27604:12;27628:117;27737:1;27734;27727:12;27751:102;27792:6;27843:2;27839:7;27834:2;27827:5;27823:14;27819:28;27809:38;;27751:102;;;:::o;27859:225::-;27999:34;27995:1;27987:6;27983:14;27976:58;28068:8;28063:2;28055:6;28051:15;28044:33;27859:225;:::o;28090:174::-;28230:26;28226:1;28218:6;28214:14;28207:50;28090:174;:::o;28270:182::-;28410:34;28406:1;28398:6;28394:14;28387:58;28270:182;:::o;28458:233::-;28598:34;28594:1;28586:6;28582:14;28575:58;28667:16;28662:2;28654:6;28650:15;28643:41;28458:233;:::o;28697:234::-;28837:34;28833:1;28825:6;28821:14;28814:58;28906:17;28901:2;28893:6;28889:15;28882:42;28697:234;:::o;28937:173::-;29077:25;29073:1;29065:6;29061:14;29054:49;28937:173;:::o;29116:114::-;;:::o;29236:166::-;29376:18;29372:1;29364:6;29360:14;29353:42;29236:166;:::o;29408:290::-;29548:34;29544:1;29536:6;29532:14;29525:58;29617:34;29612:2;29604:6;29600:15;29593:59;29686:4;29681:2;29673:6;29669:15;29662:29;29408:290;:::o;29704:181::-;29844:33;29840:1;29832:6;29828:14;29821:57;29704:181;:::o;29891:245::-;30031:34;30027:1;30019:6;30015:14;30008:58;30100:28;30095:2;30087:6;30083:15;30076:53;29891:245;:::o;30142:122::-;30215:24;30233:5;30215:24;:::i;:::-;30208:5;30205:35;30195:63;;30254:1;30251;30244:12;30195:63;30142:122;:::o;30270:116::-;30340:21;30355:5;30340:21;:::i;:::-;30333:5;30330:32;30320:60;;30376:1;30373;30366:12;30320:60;30270:116;:::o;30392:120::-;30464:23;30481:5;30464:23;:::i;:::-;30457:5;30454:34;30444:62;;30502:1;30499;30492:12;30444:62;30392:120;:::o;30518:122::-;30591:24;30609:5;30591:24;:::i;:::-;30584:5;30581:35;30571:63;;30630:1;30627;30620:12;30571:63;30518:122;:::o

Swarm Source

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