ETH Price: $3,340.39 (+0.11%)
 

Overview

Max Total Supply

442 BLC

Holders

193

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 BLC
0x10e4692b0544e02e0d09d11782558deb42d28cda
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:
BoujeeLeopardsClub

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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


// OpenZeppelin Contracts v4.4.0 (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/utils/Address.sol


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

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

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

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

    /**
     * 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) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

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

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

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

    /**
     * @dev 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

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

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

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

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

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

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

// File: contracts/TheBoujeeLeopards.sol



/*
:::::::::::::::::::::::::......................................:::::::::::::::::::::::::::
::::::::::::::::::::::............................................::::::::::::::::::::::::
:::::::::::::::::::..................................................:::::::::::::::::::::
:::::::::::::::::.......::-=-::-............:::::::..........:.........:::::::::::::::::::
:::::::::::::::........:*#%%%@%@%+-:::-=+#*##*#%%##%%##*+==+%%#%#**-:....:::::::::::::::::
:::::::::::::.........:+#*#####%@@@@@%@%%@@@@@@@@%@@%@@@@@@%%@@@@@*#+.....::::::::::::::::
::::::::::::..........:+#**++*#%**%@@%@@@@%%@%@@@@@@@@@@@@@@@@@@@%**#:......::::::::::::::
:::::::::::............-%*+++*###%@@@@@@%@@@@@@%@@@@@@@@@@@@@@@@@%*#-........:::::::::::::
::::::::::.............:+#+*++*@@%%@@@@%##**#%@@@@@@@%@@@@@@@@%%%@=...........::::::::::::
::::::::::...............+##*%@@@%@@@%**#@@%#**#%@@@@%@@@@@%##%%%%%:...........:::::::::::
:::::::::................:#*@@@@@@@@@*+*****#%#**%@@@@@@@%*#%#****%%............::::::::::
:::::::::................%*%@@@@@@@@%*+#+.AA..-***@@@@@@@**#=.A.-*#@+...........::::::::::
:::::::::-====-.........*###%@@@%@@@@@#*#=::  .-*+%@%**%#*%-=:==*#@@%=...........:::::::::
:::::::=####%@@@%#++:..:@%#%#%%@@%@@@@@%#**++****+#@*+**%**#####%@@@##...........:::::::::
:::::=%@@%%@@@@@@@@##=.+%*#*#@@@@@@@@@@@@@@%%%%%##@#++++*#%%@@%@@@@@%#...........:::::::::
:::+%@@@@@@@@@@#-+@%#*=:::@%*#%@%@@@@@%@@@@@@@@@@@@**+++++*#@@@@@@@##+...........:::::::::
:-%@@@@@@@@@@@@++%%*#*+*-.@%%##**@@@@@@@@@@@@@@@@%*****#####**@@@@@**+...........:::::::::
:%#*#%%%@@@@@@@@@%%*****#=+***##+*%#@@@@@@@@@@%%%**###*+++*%%%%@%#%***...........:::::::::
:##***#@@@@%#*%@%**#***#%*..=#*###@*#@@@@@@%#*+*%%%@@@%*+*%%#*+@#+*+.............:::::::::
::+#***%@%#-.+%###***###%*...#%@@**##%*%@@@*++++++++**#%%#**+++**-..............::::::::::
::::=+***=:..-####**###@@@=..:**@@@%%%%%#@%**%@#::+-----.-++***=................::::::::::
:::::::::::...:*#*#@@%@@@@*.-=*%@@@%@@@@@##*+*@*:=--+*****+-%+.................:::::::::::
::::::::::::....-%@@@@@@@@%*--*#@@@@#**%@@@%%##%#**++*****+#%..................:::::::::::
:::::::::::::...-%@@@@@@@@%+.   .-*%#+++#@#****+++++++*++++#@::::.............::::::::::::
::::::::::::::..:+@@@@@@@@%*=.. .::.:-=**%@**++*+++++++++*%%%::.-=...........:::::::::::::
:::::::::::::::...%@@@@@@%*+=-:::--.   .:=#@%%%**++++++*#%@@+ .:-=-..........:::::::::::::
::::::::::::::::.=@@@%*=:..---=--:.. .::.  .=*%%@%###@%%@#=..:::::=-.......:::::::::::::::
::::::::::::::::-*#+-:.   .......:::::--:-:.  .-+******+:: .:..::-::--:...::::::::::::::::
::::::::::::::::-:....::.      ..:       .==-.-. .-+**-:=-:-::=-..   .:-::::::::::::::::::
:::::::::::::::=:...  :-:..    :--.      .::.:+....:==:::+..       ..  .--::::::::::::::::
::::::::::::::=:....      .:.        ...     =-..       .+.       .::..:..=:::::::::::::::
::::::::::::::=..--:.     .--.      .--.     :+--.     .-*:.      .::..  .:-::::::::::::::
:::::::::::::+......      ....       ..     . =..  ..   .*    ..          .=::::::::::::::
:::::::::::::::::::::::╔══╦╗───╔══╗─────────╔╗────────────╔╦═╗╔═╗───╔╗::::::::::::::::::::
:::::::::::::::::::::::╚╗╔╣╚╦═╗║╔╗╠═╦╦╦╦═╦═╗║║╔═╦═╦═╦═╗╔╦╦╝║═╣║╔╬╗╔╦╣╚╗:::::::::::::::::::
:::::::::::::::::::::::─║║║║║╩╣║╔╗║╬║║╠╣╩╣╩╣║╚╣╩╣╬║╬║╬╚╣╔╣╬╠═║║╚╣╚╣║║╬║:::::::::::::::::::
:::::::::::::::::::::::─╚╝╚╩╩═╝╚══╩═╩╦╝╠═╩═╝╚═╩═╩═╣╔╩══╩╝╚═╩═╝╚═╩═╩═╩═╝:::::::::::::::::::
:::::::::::::::::::::::──────────────╚═╝──────────╚╝────────────────────::::::::::::::::::
*/

// Written by @0xmend

pragma solidity ^0.8.0;


contract BoujeeLeopardsClub is ERC721A {

    using Strings for uint256;
    uint256 public maxSupply = 6590;
    uint256 public presaleCost = 0.07 ether;
    uint256 public cost = 0.11 ether;
    uint256 public maxMints = 5;
    address public constant teamWallet = 0x1a3b0f6eC01e1F943BfaB58E4a7efC5A064487Ca;
    address public owner;
    mapping(address => uint256) public whitelist;
    mapping(address => uint256) minted;
    bool public salePaused = true;
    bool public preSalePaused = true;
    string public contractMetadata;
    string public baseTokenURI;
    string erm = "Unauthorized";

    constructor(string memory _contractMetadata, string memory _baseTokenURI) ERC721A("BoujeeLeopardsClub", "BLC") {
        owner = msg.sender;
        contractMetadata = _contractMetadata;
        baseTokenURI = _baseTokenURI;
    }

    function _mint(address to, uint256 amount) internal {    
        _safeMint(to, amount);
        minted[to] = minted[to] + amount;
    }

    function presaleMint(uint256 quantity) external payable {
        uint256 mintCost = presaleCost;
        uint256 supply = totalSupply();
        require(!preSalePaused, "Presale paused");
        require(whitelist[msg.sender] > 0, "Not in whitelist");
        require(quantity <= maxMints - minted[msg.sender], "Exceeded max mints per wallet");
        require(quantity <= maxMints, "Exceeded max mints");
        require(quantity > 0, "Mint atleast 1");
        require(supply + quantity <= maxSupply, "Sold out!");
        require(msg.value >= mintCost * quantity, "Insufficient funds");
        _mint(msg.sender, quantity);
    }

    function mint(uint256 quantity) external payable {
        uint256 mintCost = cost;
        uint256 supply = totalSupply();
        if (msg.sender == owner) {
            mintCost = 0;
        } else {
            require(!salePaused, "Sale paused");
            require(quantity <= maxMints - minted[msg.sender], "Exceeded max mints per wallet");
            require(quantity <= maxMints, "Exceeded max mints");
        }
        require(quantity > 0, "Mint atleast 1");
        require(supply + quantity <= maxSupply, "Sold out!");
        require(msg.value >= mintCost * quantity, "Insufficient funds");
        _mint(msg.sender, quantity);
    }

    function airdrop(address to, uint256 quantity) external {
        require(msg.sender == owner, erm);
        uint256 supply = totalSupply();
        require(supply + quantity <= maxSupply, "Sold out!");
        _mint(to, quantity);
    }

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

    function contractURI() public view returns (string memory) {
        return contractMetadata;
    }

    function setWhitelist(address[] calldata addresses) external{
        require(msg.sender == owner);
        for (uint256 i = 0; i < addresses.length; i++) {
            whitelist[addresses[i]] = maxMints;
        }
    }

    function setCost(uint256 _newCost) external {
        require(msg.sender == owner, erm);
        cost = _newCost;
    }

    function setPresaleCost(uint256 _newCost) external {
        require(msg.sender == owner, erm);
        presaleCost = _newCost;
    }
    
    function setBaseTokenUri(string memory _base) external {
        require(msg.sender == owner, erm);
        baseTokenURI = _base;
    }

    function setcontractMeta(string memory _newMeta) external {
        require(msg.sender == owner, erm);
        contractMetadata = _newMeta;
    }

    function pauseSale(bool _state) external {
        require(msg.sender == owner, erm);
        salePaused = _state;
    }

    function pausepreSale(bool _state) external {
        require(msg.sender == owner, erm);
        preSalePaused = _state;
    }

    function withdraw() external {
        require(msg.sender == owner, erm);
        payable(teamWallet).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_contractMetadata","type":"string"},{"internalType":"string","name":"_baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMints","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":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pausepreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"preSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newMeta","type":"string"}],"name":"setcontractMeta","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":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6119be60075566f8b0a10e470000600855670186cc6acd4b00006009556005600a55600e805461ff001960ff199091166001171661010017905560c0604052600c60808190526b155b985d5d1a1bdc9a5e995960a21b60a09081526200006991601191906200014e565b503480156200007757600080fd5b5060405162002911380380620029118339810160408190526200009a916200029f565b60408051808201825260128152712137bab532b2a632b7b830b93239a1b63ab160711b602080830191825283518085019094526003845262424c4360e81b908401528151919291620000ef916001916200014e565b508051620001059060029060208401906200014e565b5050600b80546001600160a01b031916331790555081516200012f90600f9060208501906200014e565b508051620001459060109060208401906200014e565b50505062000359565b8280546200015c9062000306565b90600052602060002090601f016020900481019282620001805760008555620001cb565b82601f106200019b57805160ff1916838001178555620001cb565b82800160010185558215620001cb579182015b82811115620001cb578251825591602001919060010190620001ae565b50620001d9929150620001dd565b5090565b5b80821115620001d95760008155600101620001de565b600082601f83011262000205578081fd5b81516001600160401b038082111562000222576200022262000343565b6040516020601f8401601f19168201810183811183821017156200024a576200024a62000343565b604052838252858401810187101562000261578485fd5b8492505b8383101562000284578583018101518284018201529182019162000265565b838311156200029557848185840101525b5095945050505050565b60008060408385031215620002b2578182fd5b82516001600160401b0380821115620002c9578384fd5b620002d786838701620001f4565b93506020850151915080821115620002ed578283fd5b50620002fc85828601620001f4565b9150509250929050565b6002810460018216806200031b57607f821691505b602082108114156200033d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6125a880620003696000396000f3fe6080604052600436106102305760003560e01c806370a082311161012e578063b6b6f0c3116100ab578063d547cfb71161006f578063d547cfb714610616578063d5abeb011461062b578063e8a3d48514610640578063e985e9c514610655578063f42176481461067557610230565b8063b6b6f0c314610599578063b88d4fde146105ae578063c34b289d146105ce578063c87b56dd146105e3578063c9b298f11461060357610230565b806395d89b41116100f257806395d89b411461051c5780639b19251a14610531578063a0712d6814610551578063a22cb46514610564578063a76b4d561461058457610230565b806370a08231146104875780638ba4cc3c146104a75780638da5cb5b146104c75780638fdcf942146104dc57806395652cfa146104fc57610230565b80632529f63c116101bc57806344a0d68a1161018057806344a0d68a146103fd5780634f6ccce71461041d578063599270441461043d5780635d08c1ae146104525780636352211e1461046757610230565b80632529f63c146103735780632a23d07d146103935780632f745c59146103a85780633ccfd60b146103c857806342842e0e146103dd57610230565b80630cfed2a2116102035780630cfed2a2146102dc57806313faede6146102fc57806318160ddd1461031e5780631b7918381461033357806323b872dd1461035357610230565b806301ffc9a71461023557806306fdde031461026b578063081812fc1461028d578063095ea7b3146102ba575b600080fd5b34801561024157600080fd5b50610255610250366004611c1f565b610695565b6040516102629190611d61565b60405180910390f35b34801561027757600080fd5b506102806106f8565b6040516102629190611d6c565b34801561029957600080fd5b506102ad6102a8366004611c9d565b61078a565b6040516102629190611d10565b3480156102c657600080fd5b506102da6102d5366004611b6d565b6107d6565b005b3480156102e857600080fd5b506102da6102f7366004611c05565b61086f565b34801561030857600080fd5b506103116108b1565b604051610262919061240d565b34801561032a57600080fd5b506103116108b7565b34801561033f57600080fd5b506102da61034e366004611c57565b6108bd565b34801561035f57600080fd5b506102da61036e366004611a90565b610903565b34801561037f57600080fd5b506102da61038e366004611c05565b61090e565b34801561039f57600080fd5b50610311610957565b3480156103b457600080fd5b506103116103c3366004611b6d565b61095d565b3480156103d457600080fd5b506102da610a48565b3480156103e957600080fd5b506102da6103f8366004611a90565b610aba565b34801561040957600080fd5b506102da610418366004611c9d565b610ad5565b34801561042957600080fd5b50610311610438366004611c9d565b610b09565b34801561044957600080fd5b506102ad610b35565b34801561045e57600080fd5b50610255610b4d565b34801561047357600080fd5b506102ad610482366004611c9d565b610b56565b34801561049357600080fd5b506103116104a2366004611a44565b610b68565b3480156104b357600080fd5b506102da6104c2366004611b6d565b610bb5565b3480156104d357600080fd5b506102ad610c26565b3480156104e857600080fd5b506102da6104f7366004611c9d565b610c35565b34801561050857600080fd5b506102da610517366004611c57565b610c69565b34801561052857600080fd5b50610280610cab565b34801561053d57600080fd5b5061031161054c366004611a44565b610cba565b6102da61055f366004611c9d565b610ccc565b34801561057057600080fd5b506102da61057f366004611b44565b610df7565b34801561059057600080fd5b50610280610ec5565b3480156105a557600080fd5b50610311610f53565b3480156105ba57600080fd5b506102da6105c9366004611acb565b610f59565b3480156105da57600080fd5b50610255610f92565b3480156105ef57600080fd5b506102806105fe366004611c9d565b610fa0565b6102da610611366004611c9d565b611024565b34801561062257600080fd5b50610280611088565b34801561063757600080fd5b50610311611095565b34801561064c57600080fd5b5061028061109b565b34801561066157600080fd5b50610255610670366004611a5e565b6110aa565b34801561068157600080fd5b506102da610690366004611b96565b6110d8565b60006001600160e01b031982166380ac58cd60e01b14806106c657506001600160e01b03198216635b5e139f60e01b145b806106e157506001600160e01b0319821663780e9d6360e01b145b806106f057506106f082611162565b90505b919050565b606060018054610707906124b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610733906124b0565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b60006107958261117b565b6107ba5760405162461bcd60e51b81526004016107b19061239d565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107e182610b56565b9050806001600160a01b0316836001600160a01b031614156108155760405162461bcd60e51b81526004016107b190612231565b806001600160a01b0316610827611182565b6001600160a01b03161480610843575061084381610670611182565b61085f5760405162461bcd60e51b81526004016107b190612008565b61086a838383611186565b505050565b600b546011906001600160a01b0316331461089d5760405162461bcd60e51b81526004016107b19190611d7f565b50600e805460ff1916911515919091179055565b60095481565b60005490565b600b546011906001600160a01b031633146108eb5760405162461bcd60e51b81526004016107b19190611d7f565b5080516108ff90600f906020840190611901565b5050565b61086a8383836111e2565b600b546011906001600160a01b0316331461093c5760405162461bcd60e51b81526004016107b19190611d7f565b50600e80549115156101000261ff0019909216919091179055565b60085481565b600061096883610b68565b82106109865760405162461bcd60e51b81526004016107b190611e29565b60006109906108b7565b905060008060005b83811015610a29576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109eb57805192505b876001600160a01b0316836001600160a01b03161415610a205786841415610a1957509350610a4292505050565b6001909301925b50600101610998565b5060405162461bcd60e51b81526004016107b19061234f565b92915050565b600b546011906001600160a01b03163314610a765760405162461bcd60e51b81526004016107b19190611d7f565b50604051731a3b0f6ec01e1f943bfab58e4a7efc5a064487ca904780156108fc02916000818181858888f19350505050158015610ab7573d6000803e3d6000fd5b50565b61086a83838360405180602001604052806000815250610f59565b600b546011906001600160a01b03163314610b035760405162461bcd60e51b81526004016107b19190611d7f565b50600955565b6000610b136108b7565b8210610b315760405162461bcd60e51b81526004016107b190611f02565b5090565b731a3b0f6ec01e1f943bfab58e4a7efc5a064487ca81565b600e5460ff1681565b6000610b618261144f565b5192915050565b60006001600160a01b038216610b905760405162461bcd60e51b81526004016107b1906120c8565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b600b546011906001600160a01b03163314610be35760405162461bcd60e51b81526004016107b19190611d7f565b506000610bee6108b7565b600754909150610bfe8383612422565b1115610c1c5760405162461bcd60e51b81526004016107b1906123ea565b61086a83836114d7565b600b546001600160a01b031681565b600b546011906001600160a01b03163314610c635760405162461bcd60e51b81526004016107b19190611d7f565b50600855565b600b546011906001600160a01b03163314610c975760405162461bcd60e51b81526004016107b19190611d7f565b5080516108ff906010906020840190611901565b606060028054610707906124b0565b600c6020526000908152604090205481565b6009546000610cd96108b7565b600b549091506001600160a01b0316331415610cf85760009150610d79565b600e5460ff1615610d1b5760405162461bcd60e51b81526004016107b190611e6b565b336000908152600d6020526040902054600a54610d38919061246d565b831115610d575760405162461bcd60e51b81526004016107b190612065565b600a54831115610d795760405162461bcd60e51b81526004016107b19061209c565b60008311610d995760405162461bcd60e51b81526004016107b190611f45565b600754610da68483612422565b1115610dc45760405162461bcd60e51b81526004016107b1906123ea565b610dce838361244e565b341015610ded5760405162461bcd60e51b81526004016107b190611fb2565b61086a33846114d7565b610dff611182565b6001600160a01b0316826001600160a01b03161415610e305760405162461bcd60e51b81526004016107b1906121a8565b8060066000610e3d611182565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e81611182565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610eb99190611d61565b60405180910390a35050565b600f8054610ed2906124b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610efe906124b0565b8015610f4b5780601f10610f2057610100808354040283529160200191610f4b565b820191906000526020600020905b815481529060010190602001808311610f2e57829003601f168201915b505050505081565b600a5481565b610f648484846111e2565b610f7084848484611525565b610f8c5760405162461bcd60e51b81526004016107b190612273565b50505050565b600e54610100900460ff1681565b6060610fab8261117b565b610fc75760405162461bcd60e51b81526004016107b190612159565b6000610fd1611641565b9050805160001415610ff2576040518060200160405280600081525061101d565b80610ffc84611650565b60405160200161100d929190611ce1565b6040516020818303038152906040525b9392505050565b60085460006110316108b7565b600e54909150610100900460ff161561105c5760405162461bcd60e51b81526004016107b190611eda565b336000908152600c6020526040902054610d1b5760405162461bcd60e51b81526004016107b190611fde565b60108054610ed2906124b0565b60075481565b6060600f8054610707906124b0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600b546001600160a01b031633146110ef57600080fd5b60005b8181101561086a57600a54600c600085858581811061112157634e487b7160e01b600052603260045260246000fd5b90506020020160208101906111369190611a44565b6001600160a01b031681526020810191909152604001600020558061115a816124eb565b9150506110f2565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111ed8261144f565b9050600081600001516001600160a01b0316611207611182565b6001600160a01b0316148061123c575061121f611182565b6001600160a01b03166112318461078a565b6001600160a01b0316145b806112505750815161125090610670611182565b90508061126f5760405162461bcd60e51b81526004016107b1906121df565b846001600160a01b031682600001516001600160a01b0316146112a45760405162461bcd60e51b81526004016107b190612113565b6001600160a01b0384166112ca5760405162461bcd60e51b81526004016107b190611f6d565b6112d78585856001610f8c565b6112e76000848460000151611186565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790559086018083529120549091166113f95761139b8161117b565b156113f9578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114488585856001610f8c565b5050505050565b611457611981565b6114608261117b565b61147c5760405162461bcd60e51b81526004016107b190611e90565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156114cd5791506106f39050565b506000190161147e565b6114e1828261176b565b6001600160a01b0382166000908152600d6020526040902054611505908290612422565b6001600160a01b039092166000908152600d602052604090209190915550565b6000611539846001600160a01b0316611785565b1561163557836001600160a01b031663150b7a02611555611182565b8786866040518563ffffffff1660e01b81526004016115779493929190611d24565b602060405180830381600087803b15801561159157600080fd5b505af19250505080156115c1575060408051601f3d908101601f191682019092526115be91810190611c3b565b60015b61161b573d8080156115ef576040519150601f19603f3d011682016040523d82523d6000602084013e6115f4565b606091505b5080516116135760405162461bcd60e51b81526004016107b190612273565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611639565b5060015b949350505050565b606060108054610707906124b0565b60608161167557506040805180820190915260018152600360fc1b60208201526106f3565b8160005b811561169f5780611689816124eb565b91506116989050600a8361243a565b9150611679565b60008167ffffffffffffffff8111156116c857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116f2576020820181803683370190505b5090505b84156116395761170760018361246d565b9150611714600a86612506565b61171f906030612422565b60f81b81838151811061174257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611764600a8661243a565b94506116f6565b6108ff82826040518060200160405280600081525061178b565b3b151590565b61086a83838360016000546001600160a01b0385166117bc5760405162461bcd60e51b81526004016107b1906122c6565b836117d95760405162461bcd60e51b81526004016107b190612307565b6117e66000868387610f8c565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b858110156118ef5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156118e3576118c76000888488611525565b6118e35760405162461bcd60e51b81526004016107b190612273565b60019182019101611874565b50600090815561144890868387610f8c565b82805461190d906124b0565b90600052602060002090601f01602090048101928261192f5760008555611975565b82601f1061194857805160ff1916838001178555611975565b82800160010185558215611975579182015b8281111561197557825182559160200191906001019061195a565b50610b31929150611998565b604080518082019091526000808252602082015290565b5b80821115610b315760008155600101611999565b600067ffffffffffffffff808411156119c8576119c8612546565b604051601f8501601f1916810160200182811182821017156119ec576119ec612546565b604052848152915081838501861015611a0457600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106f357600080fd5b803580151581146106f357600080fd5b600060208284031215611a55578081fd5b61101d82611a1d565b60008060408385031215611a70578081fd5b611a7983611a1d565b9150611a8760208401611a1d565b90509250929050565b600080600060608486031215611aa4578081fd5b611aad84611a1d565b9250611abb60208501611a1d565b9150604084013590509250925092565b60008060008060808587031215611ae0578081fd5b611ae985611a1d565b9350611af760208601611a1d565b925060408501359150606085013567ffffffffffffffff811115611b19578182fd5b8501601f81018713611b29578182fd5b611b38878235602084016119ad565b91505092959194509250565b60008060408385031215611b56578182fd5b611b5f83611a1d565b9150611a8760208401611a34565b60008060408385031215611b7f578182fd5b611b8883611a1d565b946020939093013593505050565b60008060208385031215611ba8578182fd5b823567ffffffffffffffff80821115611bbf578384fd5b818501915085601f830112611bd2578384fd5b813581811115611be0578485fd5b8660208083028501011115611bf3578485fd5b60209290920196919550909350505050565b600060208284031215611c16578081fd5b61101d82611a34565b600060208284031215611c30578081fd5b813561101d8161255c565b600060208284031215611c4c578081fd5b815161101d8161255c565b600060208284031215611c68578081fd5b813567ffffffffffffffff811115611c7e578182fd5b8201601f81018413611c8e578182fd5b611639848235602084016119ad565b600060208284031215611cae578081fd5b5035919050565b60008151808452611ccd816020860160208601612484565b601f01601f19169290920160200192915050565b60008351611cf3818460208801612484565b835190830190611d07818360208801612484565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d5790830184611cb5565b9695505050505050565b901515815260200190565b60006020825261101d6020830184611cb5565b6000602080835281845483600282049050600180831680611da157607f831692505b858310811415611dbf57634e487b7160e01b87526022600452602487fd5b611dcb83878a0161240d565b818015611ddf5760018114611df057611e1a565b60ff19861682528782019650611e1a565b611df98b612416565b895b86811015611e1457815484820152908501908901611dfb565b83019750505b50949998505050505050505050565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b6020808252600e908201526d141c995cd85b19481c185d5cd95960921b604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b6020808252600e908201526d4d696e742061746c65617374203160901b604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b602080825260129082015271496e73756666696369656e742066756e647360701b604082015260600190565b60208082526010908201526f139bdd081a5b881dda1a5d195b1a5cdd60821b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252601d908201527f4578636565646564206d6178206d696e7473207065722077616c6c6574000000604082015260600190565b6020808252601290820152714578636565646564206d6178206d696e747360701b604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b602080825260099082015268536f6c64206f75742160b81b604082015260600190565b90815260200190565b60009081526020902090565b600082198211156124355761243561251a565b500190565b60008261244957612449612530565b500490565b60008160001904831182151516156124685761246861251a565b500290565b60008282101561247f5761247f61251a565b500390565b60005b8381101561249f578181015183820152602001612487565b83811115610f8c5750506000910152565b6002810460018216806124c457607f821691505b602082108114156124e557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124ff576124ff61251a565b5060010190565b60008261251557612515612530565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ab757600080fdfea264697066735822122073186b491cc46ff781c4831fcf2db2ea6989deb8cc347aacdd3685963bf2c13f64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004e68747470733a2f2f626c632e6d7970696e6174612e636c6f75642f697066732f516d5138434b33616a716365754e4b6874456141634e426b48526f737134676a7a78653967384e3767567757387a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004f68747470733a2f2f626c632e6d7970696e6174612e636c6f75642f697066732f516d537a6533557348746d7148344879526b796b454e6952565a686f466642716e733931553578336375517337742f0000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c806370a082311161012e578063b6b6f0c3116100ab578063d547cfb71161006f578063d547cfb714610616578063d5abeb011461062b578063e8a3d48514610640578063e985e9c514610655578063f42176481461067557610230565b8063b6b6f0c314610599578063b88d4fde146105ae578063c34b289d146105ce578063c87b56dd146105e3578063c9b298f11461060357610230565b806395d89b41116100f257806395d89b411461051c5780639b19251a14610531578063a0712d6814610551578063a22cb46514610564578063a76b4d561461058457610230565b806370a08231146104875780638ba4cc3c146104a75780638da5cb5b146104c75780638fdcf942146104dc57806395652cfa146104fc57610230565b80632529f63c116101bc57806344a0d68a1161018057806344a0d68a146103fd5780634f6ccce71461041d578063599270441461043d5780635d08c1ae146104525780636352211e1461046757610230565b80632529f63c146103735780632a23d07d146103935780632f745c59146103a85780633ccfd60b146103c857806342842e0e146103dd57610230565b80630cfed2a2116102035780630cfed2a2146102dc57806313faede6146102fc57806318160ddd1461031e5780631b7918381461033357806323b872dd1461035357610230565b806301ffc9a71461023557806306fdde031461026b578063081812fc1461028d578063095ea7b3146102ba575b600080fd5b34801561024157600080fd5b50610255610250366004611c1f565b610695565b6040516102629190611d61565b60405180910390f35b34801561027757600080fd5b506102806106f8565b6040516102629190611d6c565b34801561029957600080fd5b506102ad6102a8366004611c9d565b61078a565b6040516102629190611d10565b3480156102c657600080fd5b506102da6102d5366004611b6d565b6107d6565b005b3480156102e857600080fd5b506102da6102f7366004611c05565b61086f565b34801561030857600080fd5b506103116108b1565b604051610262919061240d565b34801561032a57600080fd5b506103116108b7565b34801561033f57600080fd5b506102da61034e366004611c57565b6108bd565b34801561035f57600080fd5b506102da61036e366004611a90565b610903565b34801561037f57600080fd5b506102da61038e366004611c05565b61090e565b34801561039f57600080fd5b50610311610957565b3480156103b457600080fd5b506103116103c3366004611b6d565b61095d565b3480156103d457600080fd5b506102da610a48565b3480156103e957600080fd5b506102da6103f8366004611a90565b610aba565b34801561040957600080fd5b506102da610418366004611c9d565b610ad5565b34801561042957600080fd5b50610311610438366004611c9d565b610b09565b34801561044957600080fd5b506102ad610b35565b34801561045e57600080fd5b50610255610b4d565b34801561047357600080fd5b506102ad610482366004611c9d565b610b56565b34801561049357600080fd5b506103116104a2366004611a44565b610b68565b3480156104b357600080fd5b506102da6104c2366004611b6d565b610bb5565b3480156104d357600080fd5b506102ad610c26565b3480156104e857600080fd5b506102da6104f7366004611c9d565b610c35565b34801561050857600080fd5b506102da610517366004611c57565b610c69565b34801561052857600080fd5b50610280610cab565b34801561053d57600080fd5b5061031161054c366004611a44565b610cba565b6102da61055f366004611c9d565b610ccc565b34801561057057600080fd5b506102da61057f366004611b44565b610df7565b34801561059057600080fd5b50610280610ec5565b3480156105a557600080fd5b50610311610f53565b3480156105ba57600080fd5b506102da6105c9366004611acb565b610f59565b3480156105da57600080fd5b50610255610f92565b3480156105ef57600080fd5b506102806105fe366004611c9d565b610fa0565b6102da610611366004611c9d565b611024565b34801561062257600080fd5b50610280611088565b34801561063757600080fd5b50610311611095565b34801561064c57600080fd5b5061028061109b565b34801561066157600080fd5b50610255610670366004611a5e565b6110aa565b34801561068157600080fd5b506102da610690366004611b96565b6110d8565b60006001600160e01b031982166380ac58cd60e01b14806106c657506001600160e01b03198216635b5e139f60e01b145b806106e157506001600160e01b0319821663780e9d6360e01b145b806106f057506106f082611162565b90505b919050565b606060018054610707906124b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610733906124b0565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b60006107958261117b565b6107ba5760405162461bcd60e51b81526004016107b19061239d565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107e182610b56565b9050806001600160a01b0316836001600160a01b031614156108155760405162461bcd60e51b81526004016107b190612231565b806001600160a01b0316610827611182565b6001600160a01b03161480610843575061084381610670611182565b61085f5760405162461bcd60e51b81526004016107b190612008565b61086a838383611186565b505050565b600b546011906001600160a01b0316331461089d5760405162461bcd60e51b81526004016107b19190611d7f565b50600e805460ff1916911515919091179055565b60095481565b60005490565b600b546011906001600160a01b031633146108eb5760405162461bcd60e51b81526004016107b19190611d7f565b5080516108ff90600f906020840190611901565b5050565b61086a8383836111e2565b600b546011906001600160a01b0316331461093c5760405162461bcd60e51b81526004016107b19190611d7f565b50600e80549115156101000261ff0019909216919091179055565b60085481565b600061096883610b68565b82106109865760405162461bcd60e51b81526004016107b190611e29565b60006109906108b7565b905060008060005b83811015610a29576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109eb57805192505b876001600160a01b0316836001600160a01b03161415610a205786841415610a1957509350610a4292505050565b6001909301925b50600101610998565b5060405162461bcd60e51b81526004016107b19061234f565b92915050565b600b546011906001600160a01b03163314610a765760405162461bcd60e51b81526004016107b19190611d7f565b50604051731a3b0f6ec01e1f943bfab58e4a7efc5a064487ca904780156108fc02916000818181858888f19350505050158015610ab7573d6000803e3d6000fd5b50565b61086a83838360405180602001604052806000815250610f59565b600b546011906001600160a01b03163314610b035760405162461bcd60e51b81526004016107b19190611d7f565b50600955565b6000610b136108b7565b8210610b315760405162461bcd60e51b81526004016107b190611f02565b5090565b731a3b0f6ec01e1f943bfab58e4a7efc5a064487ca81565b600e5460ff1681565b6000610b618261144f565b5192915050565b60006001600160a01b038216610b905760405162461bcd60e51b81526004016107b1906120c8565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b600b546011906001600160a01b03163314610be35760405162461bcd60e51b81526004016107b19190611d7f565b506000610bee6108b7565b600754909150610bfe8383612422565b1115610c1c5760405162461bcd60e51b81526004016107b1906123ea565b61086a83836114d7565b600b546001600160a01b031681565b600b546011906001600160a01b03163314610c635760405162461bcd60e51b81526004016107b19190611d7f565b50600855565b600b546011906001600160a01b03163314610c975760405162461bcd60e51b81526004016107b19190611d7f565b5080516108ff906010906020840190611901565b606060028054610707906124b0565b600c6020526000908152604090205481565b6009546000610cd96108b7565b600b549091506001600160a01b0316331415610cf85760009150610d79565b600e5460ff1615610d1b5760405162461bcd60e51b81526004016107b190611e6b565b336000908152600d6020526040902054600a54610d38919061246d565b831115610d575760405162461bcd60e51b81526004016107b190612065565b600a54831115610d795760405162461bcd60e51b81526004016107b19061209c565b60008311610d995760405162461bcd60e51b81526004016107b190611f45565b600754610da68483612422565b1115610dc45760405162461bcd60e51b81526004016107b1906123ea565b610dce838361244e565b341015610ded5760405162461bcd60e51b81526004016107b190611fb2565b61086a33846114d7565b610dff611182565b6001600160a01b0316826001600160a01b03161415610e305760405162461bcd60e51b81526004016107b1906121a8565b8060066000610e3d611182565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e81611182565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610eb99190611d61565b60405180910390a35050565b600f8054610ed2906124b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610efe906124b0565b8015610f4b5780601f10610f2057610100808354040283529160200191610f4b565b820191906000526020600020905b815481529060010190602001808311610f2e57829003601f168201915b505050505081565b600a5481565b610f648484846111e2565b610f7084848484611525565b610f8c5760405162461bcd60e51b81526004016107b190612273565b50505050565b600e54610100900460ff1681565b6060610fab8261117b565b610fc75760405162461bcd60e51b81526004016107b190612159565b6000610fd1611641565b9050805160001415610ff2576040518060200160405280600081525061101d565b80610ffc84611650565b60405160200161100d929190611ce1565b6040516020818303038152906040525b9392505050565b60085460006110316108b7565b600e54909150610100900460ff161561105c5760405162461bcd60e51b81526004016107b190611eda565b336000908152600c6020526040902054610d1b5760405162461bcd60e51b81526004016107b190611fde565b60108054610ed2906124b0565b60075481565b6060600f8054610707906124b0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600b546001600160a01b031633146110ef57600080fd5b60005b8181101561086a57600a54600c600085858581811061112157634e487b7160e01b600052603260045260246000fd5b90506020020160208101906111369190611a44565b6001600160a01b031681526020810191909152604001600020558061115a816124eb565b9150506110f2565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111ed8261144f565b9050600081600001516001600160a01b0316611207611182565b6001600160a01b0316148061123c575061121f611182565b6001600160a01b03166112318461078a565b6001600160a01b0316145b806112505750815161125090610670611182565b90508061126f5760405162461bcd60e51b81526004016107b1906121df565b846001600160a01b031682600001516001600160a01b0316146112a45760405162461bcd60e51b81526004016107b190612113565b6001600160a01b0384166112ca5760405162461bcd60e51b81526004016107b190611f6d565b6112d78585856001610f8c565b6112e76000848460000151611186565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790559086018083529120549091166113f95761139b8161117b565b156113f9578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114488585856001610f8c565b5050505050565b611457611981565b6114608261117b565b61147c5760405162461bcd60e51b81526004016107b190611e90565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156114cd5791506106f39050565b506000190161147e565b6114e1828261176b565b6001600160a01b0382166000908152600d6020526040902054611505908290612422565b6001600160a01b039092166000908152600d602052604090209190915550565b6000611539846001600160a01b0316611785565b1561163557836001600160a01b031663150b7a02611555611182565b8786866040518563ffffffff1660e01b81526004016115779493929190611d24565b602060405180830381600087803b15801561159157600080fd5b505af19250505080156115c1575060408051601f3d908101601f191682019092526115be91810190611c3b565b60015b61161b573d8080156115ef576040519150601f19603f3d011682016040523d82523d6000602084013e6115f4565b606091505b5080516116135760405162461bcd60e51b81526004016107b190612273565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611639565b5060015b949350505050565b606060108054610707906124b0565b60608161167557506040805180820190915260018152600360fc1b60208201526106f3565b8160005b811561169f5780611689816124eb565b91506116989050600a8361243a565b9150611679565b60008167ffffffffffffffff8111156116c857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116f2576020820181803683370190505b5090505b84156116395761170760018361246d565b9150611714600a86612506565b61171f906030612422565b60f81b81838151811061174257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611764600a8661243a565b94506116f6565b6108ff82826040518060200160405280600081525061178b565b3b151590565b61086a83838360016000546001600160a01b0385166117bc5760405162461bcd60e51b81526004016107b1906122c6565b836117d95760405162461bcd60e51b81526004016107b190612307565b6117e66000868387610f8c565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b858110156118ef5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156118e3576118c76000888488611525565b6118e35760405162461bcd60e51b81526004016107b190612273565b60019182019101611874565b50600090815561144890868387610f8c565b82805461190d906124b0565b90600052602060002090601f01602090048101928261192f5760008555611975565b82601f1061194857805160ff1916838001178555611975565b82800160010185558215611975579182015b8281111561197557825182559160200191906001019061195a565b50610b31929150611998565b604080518082019091526000808252602082015290565b5b80821115610b315760008155600101611999565b600067ffffffffffffffff808411156119c8576119c8612546565b604051601f8501601f1916810160200182811182821017156119ec576119ec612546565b604052848152915081838501861015611a0457600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106f357600080fd5b803580151581146106f357600080fd5b600060208284031215611a55578081fd5b61101d82611a1d565b60008060408385031215611a70578081fd5b611a7983611a1d565b9150611a8760208401611a1d565b90509250929050565b600080600060608486031215611aa4578081fd5b611aad84611a1d565b9250611abb60208501611a1d565b9150604084013590509250925092565b60008060008060808587031215611ae0578081fd5b611ae985611a1d565b9350611af760208601611a1d565b925060408501359150606085013567ffffffffffffffff811115611b19578182fd5b8501601f81018713611b29578182fd5b611b38878235602084016119ad565b91505092959194509250565b60008060408385031215611b56578182fd5b611b5f83611a1d565b9150611a8760208401611a34565b60008060408385031215611b7f578182fd5b611b8883611a1d565b946020939093013593505050565b60008060208385031215611ba8578182fd5b823567ffffffffffffffff80821115611bbf578384fd5b818501915085601f830112611bd2578384fd5b813581811115611be0578485fd5b8660208083028501011115611bf3578485fd5b60209290920196919550909350505050565b600060208284031215611c16578081fd5b61101d82611a34565b600060208284031215611c30578081fd5b813561101d8161255c565b600060208284031215611c4c578081fd5b815161101d8161255c565b600060208284031215611c68578081fd5b813567ffffffffffffffff811115611c7e578182fd5b8201601f81018413611c8e578182fd5b611639848235602084016119ad565b600060208284031215611cae578081fd5b5035919050565b60008151808452611ccd816020860160208601612484565b601f01601f19169290920160200192915050565b60008351611cf3818460208801612484565b835190830190611d07818360208801612484565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d5790830184611cb5565b9695505050505050565b901515815260200190565b60006020825261101d6020830184611cb5565b6000602080835281845483600282049050600180831680611da157607f831692505b858310811415611dbf57634e487b7160e01b87526022600452602487fd5b611dcb83878a0161240d565b818015611ddf5760018114611df057611e1a565b60ff19861682528782019650611e1a565b611df98b612416565b895b86811015611e1457815484820152908501908901611dfb565b83019750505b50949998505050505050505050565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b6020808252600e908201526d141c995cd85b19481c185d5cd95960921b604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b6020808252600e908201526d4d696e742061746c65617374203160901b604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b602080825260129082015271496e73756666696369656e742066756e647360701b604082015260600190565b60208082526010908201526f139bdd081a5b881dda1a5d195b1a5cdd60821b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252601d908201527f4578636565646564206d6178206d696e7473207065722077616c6c6574000000604082015260600190565b6020808252601290820152714578636565646564206d6178206d696e747360701b604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b602080825260099082015268536f6c64206f75742160b81b604082015260600190565b90815260200190565b60009081526020902090565b600082198211156124355761243561251a565b500190565b60008261244957612449612530565b500490565b60008160001904831182151516156124685761246861251a565b500290565b60008282101561247f5761247f61251a565b500390565b60005b8381101561249f578181015183820152602001612487565b83811115610f8c5750506000910152565b6002810460018216806124c457607f821691505b602082108114156124e557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124ff576124ff61251a565b5060010190565b60008261251557612515612530565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ab757600080fdfea264697066735822122073186b491cc46ff781c4831fcf2db2ea6989deb8cc347aacdd3685963bf2c13f64736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004e68747470733a2f2f626c632e6d7970696e6174612e636c6f75642f697066732f516d5138434b33616a716365754e4b6874456141634e426b48526f737134676a7a78653967384e3767567757387a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004f68747470733a2f2f626c632e6d7970696e6174612e636c6f75642f697066732f516d537a6533557348746d7148344879526b796b454e6952565a686f466642716e733931553578336375517337742f0000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _contractMetadata (string): https://blc.mypinata.cloud/ipfs/QmQ8CK3ajqceuNKhtEaAcNBkHRosq4gjzxe9g8N7gVwW8z
Arg [1] : _baseTokenURI (string): https://blc.mypinata.cloud/ipfs/QmSze3UsHtmqH4HyRkykENiRVZhoFfBqns91U5x3cuQs7t/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000004e
Arg [3] : 68747470733a2f2f626c632e6d7970696e6174612e636c6f75642f697066732f
Arg [4] : 516d5138434b33616a716365754e4b6874456141634e426b48526f737134676a
Arg [5] : 7a78653967384e3767567757387a000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000004f
Arg [7] : 68747470733a2f2f626c632e6d7970696e6174612e636c6f75642f697066732f
Arg [8] : 516d537a6533557348746d7148344879526b796b454e6952565a686f46664271
Arg [9] : 6e733931553578336375517337742f0000000000000000000000000000000000


Deployed Bytecode Sourcemap

41669:4042:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24457:372;;;;;;;;;;-1:-1:-1;24457:372:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26343:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27905:214::-;;;;;;;;;;-1:-1:-1;27905:214:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27426:413::-;;;;;;;;;;-1:-1:-1;27426:413:0;;;;;:::i;:::-;;:::i;:::-;;45297:123;;;;;;;;;;-1:-1:-1;45297:123:0;;;;;:::i;:::-;;:::i;41833:32::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22714:100::-;;;;;;;;;;;;;:::i;45141:148::-;;;;;;;;;;-1:-1:-1;45141:148:0;;;;;:::i;:::-;;:::i;28781:162::-;;;;;;;;;;-1:-1:-1;28781:162:0;;;;;:::i;:::-;;:::i;45428:129::-;;;;;;;;;;-1:-1:-1;45428:129:0;;;;;:::i;:::-;;:::i;41787:39::-;;;;;;;;;;;;;:::i;23378:1007::-;;;;;;;;;;-1:-1:-1;23378:1007:0;;;;;:::i;:::-;;:::i;45565:143::-;;;;;;;;;;;;;:::i;29014:177::-;;;;;;;;;;-1:-1:-1;29014:177:0;;;;;:::i;:::-;;:::i;44717:122::-;;;;;;;;;;-1:-1:-1;44717:122:0;;;;;:::i;:::-;;:::i;22891:187::-;;;;;;;;;;-1:-1:-1;22891:187:0;;;;;:::i;:::-;;:::i;41906:79::-;;;;;;;;;;;;;:::i;42111:29::-;;;;;;;;;;;;;:::i;26152:124::-;;;;;;;;;;-1:-1:-1;26152:124:0;;;;;:::i;:::-;;:::i;24893:221::-;;;;;;;;;;-1:-1:-1;24893:221:0;;;;;:::i;:::-;;:::i;44004:242::-;;;;;;;;;;-1:-1:-1;44004:242:0;;;;;:::i;:::-;;:::i;41992:20::-;;;;;;;;;;;;;:::i;44847:136::-;;;;;;;;;;-1:-1:-1;44847:136:0;;;;;:::i;:::-;;:::i;44995:138::-;;;;;;;;;;-1:-1:-1;44995:138:0;;;;;:::i;:::-;;:::i;26512:104::-;;;;;;;;;;;;;:::i;42019:44::-;;;;;;;;;;-1:-1:-1;42019:44:0;;;;;:::i;:::-;;:::i;43333:663::-;;;;;;:::i;:::-;;:::i;28191:288::-;;;;;;;;;;-1:-1:-1;28191:288:0;;;;;:::i;:::-;;:::i;42186:30::-;;;;;;;;;;;;;:::i;41872:27::-;;;;;;;;;;;;;:::i;29262:355::-;;;;;;;;;;-1:-1:-1;29262:355:0;;;;;:::i;:::-;;:::i;42147:32::-;;;;;;;;;;;;;:::i;26687:335::-;;;;;;;;;;-1:-1:-1;26687:335:0;;;;;:::i;:::-;;:::i;42681:644::-;;;;;;:::i;:::-;;:::i;42223:26::-;;;;;;;;;;;;;:::i;41749:31::-;;;;;;;;;;;;;:::i;44375:101::-;;;;;;;;;;;;;:::i;28550:164::-;;;;;;;;;;-1:-1:-1;28550:164:0;;;;;:::i;:::-;;:::i;44484:225::-;;;;;;;;;;-1:-1:-1;44484:225:0;;;;;:::i;:::-;;:::i;24457:372::-;24559:4;-1:-1:-1;;;;;;24596:40:0;;-1:-1:-1;;;24596:40:0;;:105;;-1:-1:-1;;;;;;;24653:48:0;;-1:-1:-1;;;24653:48:0;24596:105;:172;;;-1:-1:-1;;;;;;;24718:50:0;;-1:-1:-1;;;24718:50:0;24596:172;:225;;;;24785:36;24809:11;24785:23;:36::i;:::-;24576:245;;24457:372;;;;:::o;26343:100::-;26397:13;26430:5;26423:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26343:100;:::o;27905:214::-;27973:7;28001:16;28009:7;28001;:16::i;:::-;27993:74;;;;-1:-1:-1;;;27993:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;28087:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28087:24:0;;27905:214::o;27426:413::-;27499:13;27515:24;27531:7;27515:15;:24::i;:::-;27499:40;;27564:5;-1:-1:-1;;;;;27558:11:0;:2;-1:-1:-1;;;;;27558:11:0;;;27550:58;;;;-1:-1:-1;;;27550:58:0;;;;;;;:::i;:::-;27659:5;-1:-1:-1;;;;;27643:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;27643:21:0;;:62;;;;27668:37;27685:5;27692:12;:10;:12::i;27668:37::-;27621:169;;;;-1:-1:-1;;;27621:169:0;;;;;;;:::i;:::-;27803:28;27812:2;27816:7;27825:5;27803:8;:28::i;:::-;27426:413;;;:::o;45297:123::-;45371:5;;45378:3;;-1:-1:-1;;;;;45371:5:0;45357:10;:19;45349:33;;;;-1:-1:-1;;;45349:33:0;;;;;;;;:::i;:::-;-1:-1:-1;45393:10:0;:19;;-1:-1:-1;;45393:19:0;;;;;;;;;;45297:123::o;41833:32::-;;;;:::o;22714:100::-;22767:7;22794:12;22714:100;:::o;45141:148::-;45232:5;;45239:3;;-1:-1:-1;;;;;45232:5:0;45218:10;:19;45210:33;;;;-1:-1:-1;;;45210:33:0;;;;;;;;:::i;:::-;-1:-1:-1;45254:27:0;;;;:16;;:27;;;;;:::i;:::-;;45141:148;:::o;28781:162::-;28907:28;28917:4;28923:2;28927:7;28907:9;:28::i;45428:129::-;45505:5;;45512:3;;-1:-1:-1;;;;;45505:5:0;45491:10;:19;45483:33;;;;-1:-1:-1;;;45483:33:0;;;;;;;;:::i;:::-;-1:-1:-1;45527:13:0;:22;;;;;;;-1:-1:-1;;45527:22:0;;;;;;;;;45428:129::o;41787:39::-;;;;:::o;23378:1007::-;23467:7;23503:16;23513:5;23503:9;:16::i;:::-;23495:5;:24;23487:71;;;;-1:-1:-1;;;23487:71:0;;;;;;;:::i;:::-;23569:22;23594:13;:11;:13::i;:::-;23569:38;;23618:19;23648:25;23837:9;23832:466;23852:14;23848:1;:18;23832:466;;;23892:31;23926:14;;;:11;:14;;;;;;;;;23892:48;;;;;;;;;-1:-1:-1;;;;;23892:48:0;;;;;-1:-1:-1;;;23892:48:0;;;;;;;;;;;;23963:28;23959:111;;24036:14;;;-1:-1:-1;23959:111:0;24113:5;-1:-1:-1;;;;;24092:26:0;:17;-1:-1:-1;;;;;24092:26:0;;24088:195;;;24162:5;24147:11;:20;24143:85;;;-1:-1:-1;24203:1:0;-1:-1:-1;24196:8:0;;-1:-1:-1;;;24196:8:0;24143:85;24250:13;;;;;24088:195;-1:-1:-1;23868:3:0;;23832:466;;;;24321:56;;-1:-1:-1;;;24321:56:0;;;;;;;:::i;23378:1007::-;;;;;:::o;45565:143::-;45627:5;;45634:3;;-1:-1:-1;;;;;45627:5:0;45613:10;:19;45605:33;;;;-1:-1:-1;;;45605:33:0;;;;;;;;:::i;:::-;-1:-1:-1;45649:51:0;;41943:42;;45678:21;45649:51;;;;;;;;;45678:21;41943:42;45649:51;;;;;;;;;;;;;;;;;;;;;45565:143::o;29014:177::-;29144:39;29161:4;29167:2;29171:7;29144:39;;;;;;;;;;;;:16;:39::i;44717:122::-;44794:5;;44801:3;;-1:-1:-1;;;;;44794:5:0;44780:10;:19;44772:33;;;;-1:-1:-1;;;44772:33:0;;;;;;;;:::i;:::-;-1:-1:-1;44816:4:0;:15;44717:122::o;22891:187::-;22958:7;22994:13;:11;:13::i;:::-;22986:5;:21;22978:69;;;;-1:-1:-1;;;22978:69:0;;;;;;;:::i;:::-;-1:-1:-1;23065:5:0;22891:187::o;41906:79::-;41943:42;41906:79;:::o;42111:29::-;;;;;;:::o;26152:124::-;26216:7;26243:20;26255:7;26243:11;:20::i;:::-;:25;;26152:124;-1:-1:-1;;26152:124:0:o;24893:221::-;24957:7;-1:-1:-1;;;;;24985:19:0;;24977:75;;;;-1:-1:-1;;;24977:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;25078:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25078:27:0;;24893:221::o;44004:242::-;44093:5;;44100:3;;-1:-1:-1;;;;;44093:5:0;44079:10;:19;44071:33;;;;-1:-1:-1;;;44071:33:0;;;;;;;;:::i;:::-;;44115:14;44132:13;:11;:13::i;:::-;44185:9;;44115:30;;-1:-1:-1;44164:17:0;44173:8;44115:30;44164:17;:::i;:::-;:30;;44156:52;;;;-1:-1:-1;;;44156:52:0;;;;;;;:::i;:::-;44219:19;44225:2;44229:8;44219:5;:19::i;41992:20::-;;;-1:-1:-1;;;;;41992:20:0;;:::o;44847:136::-;44931:5;;44938:3;;-1:-1:-1;;;;;44931:5:0;44917:10;:19;44909:33;;;;-1:-1:-1;;;44909:33:0;;;;;;;;:::i;:::-;-1:-1:-1;44953:11:0;:22;44847:136::o;44995:138::-;45083:5;;45090:3;;-1:-1:-1;;;;;45083:5:0;45069:10;:19;45061:33;;;;-1:-1:-1;;;45061:33:0;;;;;;;;:::i;:::-;-1:-1:-1;45105:20:0;;;;:12;;:20;;;;;:::i;26512:104::-;26568:13;26601:7;26594:14;;;;;:::i;42019:44::-;;;;;;;;;;;;;:::o;43333:663::-;43412:4;;43393:16;43444:13;:11;:13::i;:::-;43486:5;;43427:30;;-1:-1:-1;;;;;;43486:5:0;43472:10;:19;43468:296;;;43519:1;43508:12;;43468:296;;;43562:10;;;;43561:11;43553:35;;;;-1:-1:-1;;;43553:35:0;;;;;;;:::i;:::-;43641:10;43634:18;;;;:6;:18;;;;;;43623:8;;:29;;43634:18;43623:29;:::i;:::-;43611:8;:41;;43603:83;;;;-1:-1:-1;;;43603:83:0;;;;;;;:::i;:::-;43721:8;;43709;:20;;43701:51;;;;-1:-1:-1;;;43701:51:0;;;;;;;:::i;:::-;43793:1;43782:8;:12;43774:39;;;;-1:-1:-1;;;43774:39:0;;;;;;;:::i;:::-;43853:9;;43832:17;43841:8;43832:6;:17;:::i;:::-;:30;;43824:52;;;;-1:-1:-1;;;43824:52:0;;;;;;;:::i;:::-;43908:19;43919:8;43908;:19;:::i;:::-;43895:9;:32;;43887:63;;;;-1:-1:-1;;;43887:63:0;;;;;;;:::i;:::-;43961:27;43967:10;43979:8;43961:5;:27::i;28191:288::-;28298:12;:10;:12::i;:::-;-1:-1:-1;;;;;28286:24:0;:8;-1:-1:-1;;;;;28286:24:0;;;28278:63;;;;-1:-1:-1;;;28278:63:0;;;;;;;:::i;:::-;28399:8;28354:18;:32;28373:12;:10;:12::i;:::-;-1:-1:-1;;;;;28354:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;28354:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;28354:53:0;;;;;;;;;;;28438:12;:10;:12::i;:::-;-1:-1:-1;;;;;28423:48:0;;28462:8;28423:48;;;;;;:::i;:::-;;;;;;;;28191:288;;:::o;42186:30::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41872:27::-;;;;:::o;29262:355::-;29421:28;29431:4;29437:2;29441:7;29421:9;:28::i;:::-;29482:48;29505:4;29511:2;29515:7;29524:5;29482:22;:48::i;:::-;29460:149;;;;-1:-1:-1;;;29460:149:0;;;;;;;:::i;:::-;29262:355;;;;:::o;42147:32::-;;;;;;;;;:::o;26687:335::-;26760:13;26794:16;26802:7;26794;:16::i;:::-;26786:76;;;;-1:-1:-1;;;26786:76:0;;;;;;;:::i;:::-;26875:21;26899:10;:8;:10::i;:::-;26875:34;;26933:7;26927:21;26952:1;26927:26;;:87;;;;;;;;;;;;;;;;;26980:7;26989:18;:7;:16;:18::i;:::-;26963:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26927:87;26920:94;26687:335;-1:-1:-1;;;26687:335:0:o;42681:644::-;42767:11;;42748:16;42806:13;:11;:13::i;:::-;42839;;42789:30;;-1:-1:-1;42839:13:0;;;;;42838:14;42830:41;;;;-1:-1:-1;;;42830:41:0;;;;;;;:::i;:::-;42900:10;42914:1;42890:21;;;:9;:21;;;;;;42882:54;;;;-1:-1:-1;;;42882:54:0;;;;;;;:::i;42223:26::-;;;;;;;:::i;41749:31::-;;;;:::o;44375:101::-;44419:13;44452:16;44445:23;;;;;:::i;28550:164::-;-1:-1:-1;;;;;28671:25:0;;;28647:4;28671:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28550:164::o;44484:225::-;44577:5;;-1:-1:-1;;;;;44577:5:0;44563:10;:19;44555:28;;;;;;44599:9;44594:108;44614:20;;;44594:108;;;44682:8;;44656:9;:23;44666:9;;44676:1;44666:12;;;;;-1:-1:-1;;;44666:12:0;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;44656:23:0;;;;;;;;;;;;-1:-1:-1;44656:23:0;:34;44636:3;;;;:::i;:::-;;;;44594:108;;13981:157;-1:-1:-1;;;;;;14090:40:0;;-1:-1:-1;;;14090:40:0;13981:157;;;:::o;29872:111::-;29929:4;29963:12;-1:-1:-1;29953:22:0;29872:111::o;2803:98::-;2883:10;2803:98;:::o;34792:196::-;34907:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;34907:29:0;-1:-1:-1;;;;;34907:29:0;;;;;;;;;34952:28;;34907:24;;34952:28;;;;;;;34792:196;;;:::o;32672:2002::-;32787:35;32825:20;32837:7;32825:11;:20::i;:::-;32787:58;;32858:22;32900:13;:18;;;-1:-1:-1;;;;;32884:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;32884:34:0;;:87;;;;32959:12;:10;:12::i;:::-;-1:-1:-1;;;;;32935:36:0;:20;32947:7;32935:11;:20::i;:::-;-1:-1:-1;;;;;32935:36:0;;32884:87;:154;;;-1:-1:-1;33005:18:0;;32988:50;;33025:12;:10;:12::i;32988:50::-;32858:181;;33060:17;33052:80;;;;-1:-1:-1;;;33052:80:0;;;;;;;:::i;:::-;33175:4;-1:-1:-1;;;;;33153:26:0;:13;:18;;;-1:-1:-1;;;;;33153:26:0;;33145:77;;;;-1:-1:-1;;;33145:77:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33241:16:0;;33233:66;;;;-1:-1:-1;;;33233:66:0;;;;;;;:::i;:::-;33312:43;33334:4;33340:2;33344:7;33353:1;33312:21;:43::i;:::-;33420:49;33437:1;33441:7;33450:13;:18;;;33420:8;:49::i;:::-;-1:-1:-1;;;;;33765:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;33765:31:0;;;-1:-1:-1;;;;;33765:31:0;;;-1:-1:-1;;33765:31:0;;;;;;;33811:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;33811:29:0;;;;;;;;;;;;;33857:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;33857:30:0;;;;-1:-1:-1;;;;33902:61:0;-1:-1:-1;;;33947:15:0;33902:61;;;;;;34237:11;;;34267:24;;;;;:29;34237:11;;34267:29;34263:295;;34335:20;34343:11;34335:7;:20::i;:::-;34331:212;;;34412:18;;;34380:24;;;:11;:24;;;;;;;;:50;;34495:28;;;;34453:70;;-1:-1:-1;;;34453:70:0;-1:-1:-1;;;;;;;;;34380:50:0;;;-1:-1:-1;;;;;;34380:50:0;;;;;;;34453:70;;;;;;;34331:212;32672:2002;34605:7;34601:2;-1:-1:-1;;;;;34586:27:0;34595:4;-1:-1:-1;;;;;34586:27:0;;;;;;;;;;;34624:42;34645:4;34651:2;34655:7;34664:1;34624:20;:42::i;:::-;32672:2002;;;;;:::o;25553:537::-;25614:21;;:::i;:::-;25656:16;25664:7;25656;:16::i;:::-;25648:71;;;;-1:-1:-1;;;25648:71:0;;;;;;;:::i;:::-;25777:7;25757:245;25824:31;25858:17;;;:11;:17;;;;;;;;;25824:51;;;;;;;;;-1:-1:-1;;;;;25824:51:0;;;;;-1:-1:-1;;;25824:51:0;;;;;;;;;;;;25898:28;25894:93;;25958:9;-1:-1:-1;25951:16:0;;-1:-1:-1;25951:16:0;25894:93;-1:-1:-1;;;25797:6:0;25757:245;;42534:139;42601:21;42611:2;42615:6;42601:9;:21::i;:::-;-1:-1:-1;;;;;42646:10:0;;;;;;:6;:10;;;;;;:19;;42659:6;;42646:19;:::i;:::-;-1:-1:-1;;;;;42633:10:0;;;;;;;:6;:10;;;;;:32;;;;-1:-1:-1;42534:139:0:o;35553:804::-;35708:4;35729:15;:2;-1:-1:-1;;;;;35729:13:0;;:15::i;:::-;35725:625;;;35781:2;-1:-1:-1;;;;;35765:36:0;;35802:12;:10;:12::i;:::-;35816:4;35822:7;35831:5;35765:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35765:72:0;;;;;;;;-1:-1:-1;;35765:72:0;;;;;;;;;;;;:::i;:::-;;;35761:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36011:13:0;;36007:273;;36054:61;;-1:-1:-1;;;36054:61:0;;;;;;;:::i;36007:273::-;36230:6;36224:13;36215:6;36211:2;36207:15;36200:38;35761:534;-1:-1:-1;;;;;;35888:55:0;-1:-1:-1;;;35888:55:0;;-1:-1:-1;35881:62:0;;35725:625;-1:-1:-1;36334:4:0;35725:625;35553:804;;;;;;:::o;44254:113::-;44314:13;44347:12;44340:19;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;;638:53;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;-1:-1:-1;;;867:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;-1:-1:-1;;;955:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;29991:104;30060:27;30070:2;30074:8;30060:27;;;;;;;;;;;;:9;:27::i;3837:387::-;4160:20;4208:8;;;3837:387::o;30458:163::-;30581:32;30587:2;30591:8;30601:5;30608:4;31019:20;31042:12;-1:-1:-1;;;;;31073:16:0;;31065:62;;;;-1:-1:-1;;;31065:62:0;;;;;;;:::i;:::-;31146:13;31138:66;;;;-1:-1:-1;;;31138:66:0;;;;;;;:::i;:::-;31217:61;31247:1;31251:2;31255:12;31269:8;31217:21;:61::i;:::-;-1:-1:-1;;;;;31556:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;31556:45:0;;-1:-1:-1;;;;;31556:45:0;;;;;;;;31616:50;;;-1:-1:-1;;;31616:50:0;;;;;;;;;;;;;;;31683:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;31683:35:0;;;;-1:-1:-1;;;;31733:66:0;-1:-1:-1;;;31783:15:0;31733:66;;;;;;;31683:25;;31868:415;31888:8;31884:1;:12;31868:415;;;31927:38;;31952:12;;-1:-1:-1;;;;;31927:38:0;;;31944:1;;31927:38;;31944:1;;31927:38;31988:4;31984:249;;;32051:59;32082:1;32086:2;32090:12;32104:5;32051:22;:59::i;:::-;32017:196;;;;-1:-1:-1;;;32017:196:0;;;;;;;:::i;:::-;32253:14;;;;;31898:3;31868:415;;;-1:-1:-1;32299:12:0;:27;;;32350:60;;32383:2;32387:12;32401:8;32350:20;:60::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:666::-;;;3200:2;3188:9;3179:7;3175:23;3171:32;3168:2;;;3221:6;3213;3206:22;3168:2;3266:9;3253:23;3295:18;3336:2;3328:6;3325:14;3322:2;;;3357:6;3349;3342:22;3322:2;3400:6;3389:9;3385:22;3375:32;;3445:7;3438:4;3434:2;3430:13;3426:27;3416:2;;3472:6;3464;3457:22;3416:2;3517;3504:16;3543:2;3535:6;3532:14;3529:2;;;3564:6;3556;3549:22;3529:2;3623:7;3618:2;3612;3604:6;3600:15;3596:2;3592:24;3588:33;3585:46;3582:2;;;3649:6;3641;3634:22;3582:2;3685;3677:11;;;;;3707:6;;-1:-1:-1;3158:561:1;;-1:-1:-1;;;;3158:561:1:o;3724:192::-;;3833:2;3821:9;3812:7;3808:23;3804:32;3801:2;;;3854:6;3846;3839:22;3801:2;3882:28;3900:9;3882:28;:::i;3921:257::-;;4032:2;4020:9;4011:7;4007:23;4003:32;4000:2;;;4053:6;4045;4038:22;4000:2;4097:9;4084:23;4116:32;4142:5;4116:32;:::i;4183:261::-;;4305:2;4293:9;4284:7;4280:23;4276:32;4273:2;;;4326:6;4318;4311:22;4273:2;4363:9;4357:16;4382:32;4408:5;4382:32;:::i;4449:482::-;;4571:2;4559:9;4550:7;4546:23;4542:32;4539:2;;;4592:6;4584;4577:22;4539:2;4637:9;4624:23;4670:18;4662:6;4659:30;4656:2;;;4707:6;4699;4692:22;4656:2;4735:22;;4788:4;4780:13;;4776:27;-1:-1:-1;4766:2:1;;4822:6;4814;4807:22;4766:2;4850:75;4917:7;4912:2;4899:16;4894:2;4890;4886:11;4850:75;:::i;4936:190::-;;5048:2;5036:9;5027:7;5023:23;5019:32;5016:2;;;5069:6;5061;5054:22;5016:2;-1:-1:-1;5097:23:1;;5006:120;-1:-1:-1;5006:120:1:o;5131:259::-;;5212:5;5206:12;5239:6;5234:3;5227:19;5255:63;5311:6;5304:4;5299:3;5295:14;5288:4;5281:5;5277:16;5255:63;:::i;:::-;5372:2;5351:15;-1:-1:-1;;5347:29:1;5338:39;;;;5379:4;5334:50;;5182:208;-1:-1:-1;;5182:208:1:o;5395:470::-;;5612:6;5606:13;5628:53;5674:6;5669:3;5662:4;5654:6;5650:17;5628:53;:::i;:::-;5744:13;;5703:16;;;;5766:57;5744:13;5703:16;5800:4;5788:17;;5766:57;:::i;:::-;5839:20;;5582:283;-1:-1:-1;;;;5582:283:1:o;5870:203::-;-1:-1:-1;;;;;6034:32:1;;;;6016:51;;6004:2;5989:18;;5971:102::o;6078:490::-;-1:-1:-1;;;;;6347:15:1;;;6329:34;;6399:15;;6394:2;6379:18;;6372:43;6446:2;6431:18;;6424:34;;;6494:3;6489:2;6474:18;;6467:31;;;6078:490;;6515:47;;6542:19;;6534:6;6515:47;:::i;:::-;6507:55;6281:287;-1:-1:-1;;;;;;6281:287:1:o;6573:187::-;6738:14;;6731:22;6713:41;;6701:2;6686:18;;6668:92::o;6765:221::-;;6914:2;6903:9;6896:21;6934:46;6976:2;6965:9;6961:18;6953:6;6934:46;:::i;6991:1197::-;;7129:2;7158;7147:9;7140:21;7181:4;7217:6;7211:13;7247:4;7285:1;7274:9;7270:17;7260:27;;7306:1;7357:2;7346:9;7342:18;7379;7369:2;;7423:4;7415:6;7411:17;7401:27;;7369:2;7476;7468:6;7465:14;7445:18;7442:38;7439:2;;;-1:-1:-1;;;7503:34:1;;7560:4;7557:1;7550:15;7591:4;7510;7578:18;7439:2;7626:64;7683:6;7678:2;7667:9;7663:18;7626:64;:::i;:::-;7706:18;7733:100;;;;7847:1;7842:320;;;;7699:463;;7733:100;-1:-1:-1;;7766:24:1;;7754:37;;7811:12;;;;-1:-1:-1;7733:100:1;;7842:320;7878:39;7910:6;7878:39;:::i;:::-;7939:4;7956:165;7970:6;7967:1;7964:13;7956:165;;;8048:14;;8035:11;;;8028:35;8091:16;;;;7985:10;;7956:165;;;8141:11;;;-1:-1:-1;;7699:463:1;-1:-1:-1;8179:3:1;;7109:1079;-1:-1:-1;;;;;;;;;7109:1079:1:o;8193:398::-;8395:2;8377:21;;;8434:2;8414:18;;;8407:30;8473:34;8468:2;8453:18;;8446:62;-1:-1:-1;;;8539:2:1;8524:18;;8517:32;8581:3;8566:19;;8367:224::o;8596:335::-;8798:2;8780:21;;;8837:2;8817:18;;;8810:30;-1:-1:-1;;;8871:2:1;8856:18;;8849:41;8922:2;8907:18;;8770:161::o;8936:406::-;9138:2;9120:21;;;9177:2;9157:18;;;9150:30;9216:34;9211:2;9196:18;;9189:62;-1:-1:-1;;;9282:2:1;9267:18;;9260:40;9332:3;9317:19;;9110:232::o;9347:338::-;9549:2;9531:21;;;9588:2;9568:18;;;9561:30;-1:-1:-1;;;9622:2:1;9607:18;;9600:44;9676:2;9661:18;;9521:164::o;9690:399::-;9892:2;9874:21;;;9931:2;9911:18;;;9904:30;9970:34;9965:2;9950:18;;9943:62;-1:-1:-1;;;10036:2:1;10021:18;;10014:33;10079:3;10064:19;;9864:225::o;10094:338::-;10296:2;10278:21;;;10335:2;10315:18;;;10308:30;-1:-1:-1;;;10369:2:1;10354:18;;10347:44;10423:2;10408:18;;10268:164::o;10437:401::-;10639:2;10621:21;;;10678:2;10658:18;;;10651:30;10717:34;10712:2;10697:18;;10690:62;-1:-1:-1;;;10783:2:1;10768:18;;10761:35;10828:3;10813:19;;10611:227::o;10843:342::-;11045:2;11027:21;;;11084:2;11064:18;;;11057:30;-1:-1:-1;;;11118:2:1;11103:18;;11096:48;11176:2;11161:18;;11017:168::o;11190:340::-;11392:2;11374:21;;;11431:2;11411:18;;;11404:30;-1:-1:-1;;;11465:2:1;11450:18;;11443:46;11521:2;11506:18;;11364:166::o;11535:421::-;11737:2;11719:21;;;11776:2;11756:18;;;11749:30;11815:34;11810:2;11795:18;;11788:62;11886:27;11881:2;11866:18;;11859:55;11946:3;11931:19;;11709:247::o;11961:353::-;12163:2;12145:21;;;12202:2;12182:18;;;12175:30;12241:31;12236:2;12221:18;;12214:59;12305:2;12290:18;;12135:179::o;12319:342::-;12521:2;12503:21;;;12560:2;12540:18;;;12533:30;-1:-1:-1;;;12594:2:1;12579:18;;12572:48;12652:2;12637:18;;12493:168::o;12666:407::-;12868:2;12850:21;;;12907:2;12887:18;;;12880:30;12946:34;12941:2;12926:18;;12919:62;-1:-1:-1;;;13012:2:1;12997:18;;12990:41;13063:3;13048:19;;12840:233::o;13078:402::-;13280:2;13262:21;;;13319:2;13299:18;;;13292:30;13358:34;13353:2;13338:18;;13331:62;-1:-1:-1;;;13424:2:1;13409:18;;13402:36;13470:3;13455:19;;13252:228::o;13485:411::-;13687:2;13669:21;;;13726:2;13706:18;;;13699:30;13765:34;13760:2;13745:18;;13738:62;-1:-1:-1;;;13831:2:1;13816:18;;13809:45;13886:3;13871:19;;13659:237::o;13901:350::-;14103:2;14085:21;;;14142:2;14122:18;;;14115:30;14181:28;14176:2;14161:18;;14154:56;14242:2;14227:18;;14075:176::o;14256:414::-;14458:2;14440:21;;;14497:2;14477:18;;;14470:30;14536:34;14531:2;14516:18;;14509:62;-1:-1:-1;;;14602:2:1;14587:18;;14580:48;14660:3;14645:19;;14430:240::o;14675:398::-;14877:2;14859:21;;;14916:2;14896:18;;;14889:30;14955:34;14950:2;14935:18;;14928:62;-1:-1:-1;;;15021:2:1;15006:18;;14999:32;15063:3;15048:19;;14849:224::o;15078:415::-;15280:2;15262:21;;;15319:2;15299:18;;;15292:30;15358:34;15353:2;15338:18;;15331:62;-1:-1:-1;;;15424:2:1;15409:18;;15402:49;15483:3;15468:19;;15252:241::o;15498:397::-;15700:2;15682:21;;;15739:2;15719:18;;;15712:30;15778:34;15773:2;15758:18;;15751:62;-1:-1:-1;;;15844:2:1;15829:18;;15822:31;15885:3;15870:19;;15672:223::o;15900:404::-;16102:2;16084:21;;;16141:2;16121:18;;;16114:30;16180:34;16175:2;16160:18;;16153:62;-1:-1:-1;;;16246:2:1;16231:18;;16224:38;16294:3;16279:19;;16074:230::o;16309:410::-;16511:2;16493:21;;;16550:2;16530:18;;;16523:30;16589:34;16584:2;16569:18;;16562:62;-1:-1:-1;;;16655:2:1;16640:18;;16633:44;16709:3;16694:19;;16483:236::o;17140:409::-;17342:2;17324:21;;;17381:2;17361:18;;;17354:30;17420:34;17415:2;17400:18;;17393:62;-1:-1:-1;;;17486:2:1;17471:18;;17464:43;17539:3;17524:19;;17314:235::o;17554:332::-;17756:2;17738:21;;;17795:1;17775:18;;;17768:29;-1:-1:-1;;;17828:2:1;17813:18;;17806:39;17877:2;17862:18;;17728:158::o;17891:177::-;18037:25;;;18025:2;18010:18;;17992:76::o;18073:129::-;;18141:17;;;18191:4;18175:21;;;18131:71::o;18363:128::-;;18434:1;18430:6;18427:1;18424:13;18421:2;;;18440:18;;:::i;:::-;-1:-1:-1;18476:9:1;;18411:80::o;18496:120::-;;18562:1;18552:2;;18567:18;;:::i;:::-;-1:-1:-1;18601:9:1;;18542:74::o;18621:168::-;;18727:1;18723;18719:6;18715:14;18712:1;18709:21;18704:1;18697:9;18690:17;18686:45;18683:2;;;18734:18;;:::i;:::-;-1:-1:-1;18774:9:1;;18673:116::o;18794:125::-;;18862:1;18859;18856:8;18853:2;;;18867:18;;:::i;:::-;-1:-1:-1;18904:9:1;;18843:76::o;18924:258::-;18996:1;19006:113;19020:6;19017:1;19014:13;19006:113;;;19096:11;;;19090:18;19077:11;;;19070:39;19042:2;19035:10;19006:113;;;19137:6;19134:1;19131:13;19128:2;;;-1:-1:-1;;19172:1:1;19154:16;;19147:27;18977:205::o;19187:380::-;19272:1;19262:12;;19319:1;19309:12;;;19330:2;;19384:4;19376:6;19372:17;19362:27;;19330:2;19437;19429:6;19426:14;19406:18;19403:38;19400:2;;;19483:10;19478:3;19474:20;19471:1;19464:31;19518:4;19515:1;19508:15;19546:4;19543:1;19536:15;19400:2;;19242:325;;;:::o;19572:135::-;;-1:-1:-1;;19632:17:1;;19629:2;;;19652:18;;:::i;:::-;-1:-1:-1;19699:1:1;19688:13;;19619:88::o;19712:112::-;;19770:1;19760:2;;19775:18;;:::i;:::-;-1:-1:-1;19809:9:1;;19750:74::o;19829:127::-;19890:10;19885:3;19881:20;19878:1;19871:31;19921:4;19918:1;19911:15;19945:4;19942:1;19935:15;19961:127;20022:10;20017:3;20013:20;20010:1;20003:31;20053:4;20050:1;20043:15;20077:4;20074:1;20067:15;20093:127;20154:10;20149:3;20145:20;20142:1;20135:31;20185:4;20182:1;20175:15;20209:4;20206:1;20199:15;20225:133;-1:-1:-1;;;;;;20301:32:1;;20291:43;;20281:2;;20348:1;20345;20338:12

Swarm Source

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