ETH Price: $2,976.49 (+2.61%)
Gas: 1 Gwei

Token

3GMGenesisPass (3GM)
 

Overview

Max Total Supply

333 3GM

Holders

271

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 3GM
0x668Cc96FEA4A58cA81e0d14cBB4019AFF3D29767
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:
ThreeGMGenesisPass

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

/**

      /$$$$$$   /$$$$$$  /$$      /$$
     /$$__  $$ /$$__  $$| $$$    /$$$
    |__/  \ $$| $$  \__/| $$$$  /$$$$
       /$$$$$/| $$ /$$$$| $$ $$/$$ $$
      |___  $$| $$|_  $$| $$  $$$| $$
     /$$  \ $$| $$  \ $$| $$\  $ | $$
    |  $$$$$$/|  $$$$$$/| $$ \/  | $$
    \______/  \______/ |__/     |__/


    ** Website
       https://3gm.dev/

    ** Twitter
       https://twitter.com/3gmdev

**/


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




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



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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (_addressToUint256(to) == 0) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

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

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

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

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


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



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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)




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



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


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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


contract ThreeGMGenesisPass is ERC721A, Ownable {

    string public baseURI = "ipfs://QmSiHUyXvNRJWWNf7ekHAeCkzSdgEYVUAM4FNciYJqfSsF/";
    string public contractURI = "ipfs://QmdU8yyKEUd242nbhRDqvxnVgFv7Mb8X3fNymse62RNXLC";
    uint256 public constant MAX_SUPPLY = 333;
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    bool public paused = true;

    constructor() ERC721A("3GMGenesisPass", "3GM") {}

    function mint(bytes4 _check) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + 1, "Exceeds max supply");
        require(_numberMinted(_caller) < 1, "Exceeds max per wallet");
        require(tx.origin == _caller, "No contracts");
        require(checkWebMint(_caller, _check), "Not from web, sus");

        _safeMint(_caller, 1);
    }

    function checkWebMint(address _sender, bytes4 _check) internal pure returns(bool){
        return bytes4(keccak256(abi.encodePacked(_sender))) == _check;
    }

    function _startTokenId() internal override view virtual returns (uint256) {
        return 1;
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function teamMint(address _to, uint256 _amount) external onlyOwner {
        _safeMint(_to, _amount);
    }

    function toggleMint() external onlyOwner {
        paused = !paused;
    }

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

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              ".json"
            )
        ) : "";
    }
}

contract OwnableDelegateProxy {}
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"bytes4","name":"_check","type":"bytes4"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052603660808181529062001e4160a0398051620000299160099160209091019062000148565b5060405180606001604052806035815260200162001e0c6035913980516200005a91600a9160209091019062000148565b50600b805460ff191660011790553480156200007557600080fd5b50604080518082018252600e81526d33474d47656e657369735061737360901b60208083019182528351808501909452600384526233474d60e81b908401528151919291620000c79160029162000148565b508051620000dd90600390602084019062000148565b5050600160005550620000f033620000f6565b6200022a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015690620001ee565b90600052602060002090601f0160209004810192826200017a5760008555620001c5565b82601f106200019557805160ff1916838001178555620001c5565b82800160010185558215620001c5579182015b82811115620001c5578251825591602001919060010190620001a8565b50620001d3929150620001d7565b5090565b5b80821115620001d35760008155600101620001d8565b600181811c908216806200020357607f821691505b6020821081036200022457634e487b7160e01b600052602260045260246000fd5b50919050565b611bd2806200023a6000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063b05886cd11610095578063d3dd5fe011610064578063d3dd5fe0146104dc578063e8a3d485146104f1578063e985e9c514610506578063f2fde38b1461052657600080fd5b8063b05886cd14610461578063b88d4fde14610474578063c87b56dd14610494578063cd7c0326146104b457600080fd5b8063938e3d7b116100d1578063938e3d7b146103ec57806395d89b411461040c578063a22cb46514610421578063add5a4fa1461044157600080fd5b806370a0823114610399578063715018a6146103b95780638da5cb5b146103ce57600080fd5b806332cb6b0c1161016457806355f804b31161013e57806355f804b31461032a5780635c975abb1461034a5780636352211e146103645780636c0360eb1461038457600080fd5b806332cb6b0c146102df5780633ccfd60b146102f557806342842e0e1461030a57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd146102785780631e7269c51461029f57806323b872dd146102bf57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461162d565b610546565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610598565b6040516101f391906116a2565b34801561022a57600080fd5b5061023e6102393660046116b5565b61062a565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b506102766102713660046116e3565b61066e565b005b34801561028457600080fd5b5060015460005403600019015b6040519081526020016101f3565b3480156102ab57600080fd5b506102916102ba36600461170f565b610740565b3480156102cb57600080fd5b506102766102da36600461172c565b61076b565b3480156102eb57600080fd5b5061029161014d81565b34801561030157600080fd5b5061027661077b565b34801561031657600080fd5b5061027661032536600461172c565b61083d565b34801561033657600080fd5b506102766103453660046117f9565b610858565b34801561035657600080fd5b50600b546101e79060ff1681565b34801561037057600080fd5b5061023e61037f3660046116b5565b610895565b34801561039057600080fd5b506102116108a0565b3480156103a557600080fd5b506102916103b436600461170f565b61092e565b3480156103c557600080fd5b50610276610977565b3480156103da57600080fd5b506008546001600160a01b031661023e565b3480156103f857600080fd5b506102766104073660046117f9565b6109ad565b34801561041857600080fd5b506102116109ea565b34801561042d57600080fd5b5061027661043c366004611842565b6109f9565b34801561044d57600080fd5b5061027661045c3660046116e3565b610a8e565b61027661046f36600461162d565b610ac2565b34801561048057600080fd5b5061027661048f366004611880565b610caa565b3480156104a057600080fd5b506102116104af3660046116b5565b610cf4565b3480156104c057600080fd5b5061023e73a5409ec958c83c3f309868babaca7c86dcb077c181565b3480156104e857600080fd5b50610276610d9f565b3480156104fd57600080fd5b50610211610ddd565b34801561051257600080fd5b506101e7610521366004611900565b610dea565b34801561053257600080fd5b5061027661054136600461170f565b610eb9565b60006301ffc9a760e01b6001600160e01b03198316148061057757506380ac58cd60e01b6001600160e01b03198316145b806105925750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105a79061192e565b80601f01602080910402602001604051908101604052809291908181526020018280546105d39061192e565b80156106205780601f106105f557610100808354040283529160200191610620565b820191906000526020600020905b81548152906001019060200180831161060357829003601f168201915b5050505050905090565b600061063582610f54565b610652576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061067982610f89565b9050806001600160a01b0316836001600160a01b0316036106ad5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106e4576106c78133610dea565b6106e4576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610592565b610776838383610fff565b505050565b6008546001600160a01b031633146107ae5760405162461bcd60e51b81526004016107a590611968565b60405180910390fd5b6040514790600090339083908381818185875af1925050503d80600081146107f2576040519150601f19603f3d011682016040523d82523d6000602084013e6107f7565b606091505b50509050806108395760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016107a5565b5050565b61077683838360405180602001604052806000815250610caa565b6008546001600160a01b031633146108825760405162461bcd60e51b81526004016107a590611968565b805161083990600990602084019061157e565b600061059282610f89565b600980546108ad9061192e565b80601f01602080910402602001604051908101604052809291908181526020018280546108d99061192e565b80156109265780601f106108fb57610100808354040283529160200191610926565b820191906000526020600020905b81548152906001019060200180831161090957829003601f168201915b505050505081565b600081600003610951576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109a15760405162461bcd60e51b81526004016107a590611968565b6109ab60006111b8565b565b6008546001600160a01b031633146109d75760405162461bcd60e51b81526004016107a590611968565b805161083990600a90602084019061157e565b6060600380546105a79061192e565b336001600160a01b03831603610a225760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610ab85760405162461bcd60e51b81526004016107a590611968565b610839828261120a565b600b54339060ff1615610b005760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064016107a5565b6001546000540360001901610b169060016119b3565b61014d1015610b5c5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107a5565b6001610b8b826001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b10610bd15760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b60448201526064016107a5565b326001600160a01b03821614610c185760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016107a5565b604080516bffffffffffffffffffffffff19606084901b1660208083019190915282518083036014018152603490920190925280519101206001600160e01b0319838116911614610c9f5760405162461bcd60e51b81526020600482015260116024820152704e6f742066726f6d207765622c2073757360781b60448201526064016107a5565b61083981600161120a565b610cb5848484610fff565b6001600160a01b0383163b15610cee57610cd184848484611224565b610cee576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610cff82610f54565b610d435760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107a5565b600060098054610d529061192e565b905011610d6e5760405180602001604052806000815250610592565b6009610d798361130f565b604051602001610d8a9291906119e7565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610dc95760405162461bcd60e51b81526004016107a590611968565b600b805460ff19811660ff90911615179055565b600a80546108ad9061192e565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c455279190602401602060405180830381865afa158015610e4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6f9190611aa1565b6001600160a01b031603610e87576001915050610592565b6001600160a01b0380851660009081526007602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b03163314610ee35760405162461bcd60e51b81526004016107a590611968565b6001600160a01b038116610f485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a5565b610f51816111b8565b50565b600081600111158015610f68575060005482105b8015610592575050600090815260046020526040902054600160e01b161590565b60008180600111610fe657600054811015610fe65760008181526004602052604081205490600160e01b82169003610fe4575b80600003610fdd575060001901600081815260046020526040902054610fbc565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600061100a82610f89565b9050836001600160a01b0316816001600160a01b03161461103d5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b039081169190861633148061106d575061106d8633610dea565b8061108057506001600160a01b03821633145b9050806110a057604051632ce44b5f60e11b815260040160405180910390fd5b846000036110c157604051633a954ecd60e21b815260040160405180910390fd5b81156110e457600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b881781179091558416900361116f5760018401600081815260046020526040812054900361116d57600054811461116d5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610839828260405180602001604052806000815250611410565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611259903390899088908890600401611abe565b6020604051808303816000875af1925050508015611294575060408051601f3d908101601f1916820190925261129191810190611afb565b60015b6112f2573d8080156112c2576040519150601f19603f3d011682016040523d82523d6000602084013e6112c7565b606091505b5080516000036112ea576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060816000036113365750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611360578061134a81611b18565b91506113599050600a83611b47565b915061133a565b60008167ffffffffffffffff81111561137b5761137b61176d565b6040519080825280601f01601f1916602001820160405280156113a5576020820181803683370190505b5090505b8415610eb1576113ba600183611b5b565b91506113c7600a86611b72565b6113d29060306119b3565b60f81b8183815181106113e7576113e7611b86565b60200101906001600160f81b031916908160001a905350611409600a86611b47565b94506113a9565b6000548360000361143357604051622e076360e81b815260040160405180910390fd5b826000036114545760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611529575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114f26000878480600101955087611224565b61150f576040516368d2bf6b60e11b815260040160405180910390fd5b8082106114a757826000541461152457600080fd5b61156e565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061152a575b506000908155610cee9085838684565b82805461158a9061192e565b90600052602060002090601f0160209004810192826115ac57600085556115f2565b82601f106115c557805160ff19168380011785556115f2565b828001600101855582156115f2579182015b828111156115f25782518255916020019190600101906115d7565b506115fe929150611602565b5090565b5b808211156115fe5760008155600101611603565b6001600160e01b031981168114610f5157600080fd5b60006020828403121561163f57600080fd5b8135610fdd81611617565b60005b8381101561166557818101518382015260200161164d565b83811115610cee5750506000910152565b6000815180845261168e81602086016020860161164a565b601f01601f19169290920160200192915050565b602081526000610fdd6020830184611676565b6000602082840312156116c757600080fd5b5035919050565b6001600160a01b0381168114610f5157600080fd5b600080604083850312156116f657600080fd5b8235611701816116ce565b946020939093013593505050565b60006020828403121561172157600080fd5b8135610fdd816116ce565b60008060006060848603121561174157600080fd5b833561174c816116ce565b9250602084013561175c816116ce565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561179e5761179e61176d565b604051601f8501601f19908116603f011681019082821181831017156117c6576117c661176d565b816040528093508581528686860111156117df57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561180b57600080fd5b813567ffffffffffffffff81111561182257600080fd5b8201601f8101841361183357600080fd5b610eb184823560208401611783565b6000806040838503121561185557600080fd5b8235611860816116ce565b91506020830135801515811461187557600080fd5b809150509250929050565b6000806000806080858703121561189657600080fd5b84356118a1816116ce565b935060208501356118b1816116ce565b925060408501359150606085013567ffffffffffffffff8111156118d457600080fd5b8501601f810187136118e557600080fd5b6118f487823560208401611783565b91505092959194509250565b6000806040838503121561191357600080fd5b823561191e816116ce565b91506020830135611875816116ce565b600181811c9082168061194257607f821691505b60208210810361196257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156119c6576119c661199d565b500190565b600081516119dd81856020860161164a565b9290920192915050565b600080845481600182811c915080831680611a0357607f831692505b60208084108203611a2257634e487b7160e01b86526022600452602486fd5b818015611a365760018114611a4757611a74565b60ff19861689528489019650611a74565b60008b81526020902060005b86811015611a6c5781548b820152908501908301611a53565b505084890196505b505050505050611a98611a8782866119cb565b64173539b7b760d91b815260050190565b95945050505050565b600060208284031215611ab357600080fd5b8151610fdd816116ce565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611af190830184611676565b9695505050505050565b600060208284031215611b0d57600080fd5b8151610fdd81611617565b600060018201611b2a57611b2a61199d565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611b5657611b56611b31565b500490565b600082821015611b6d57611b6d61199d565b500390565b600082611b8157611b81611b31565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220bbf9499e219fa77538e7bbe6324c5bc15a5ef8435dab7486ed5f1a903e4572b664736f6c634300080d0033697066733a2f2f516d64553879794b4555643234326e626852447176786e56674676374d62385833664e796d73653632524e584c43697066733a2f2f516d536948557958764e524a57574e6637656b484165436b7a53646745595655414d34464e6369594a71665373462f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806370a08231116100f7578063b05886cd11610095578063d3dd5fe011610064578063d3dd5fe0146104dc578063e8a3d485146104f1578063e985e9c514610506578063f2fde38b1461052657600080fd5b8063b05886cd14610461578063b88d4fde14610474578063c87b56dd14610494578063cd7c0326146104b457600080fd5b8063938e3d7b116100d1578063938e3d7b146103ec57806395d89b411461040c578063a22cb46514610421578063add5a4fa1461044157600080fd5b806370a0823114610399578063715018a6146103b95780638da5cb5b146103ce57600080fd5b806332cb6b0c1161016457806355f804b31161013e57806355f804b31461032a5780635c975abb1461034a5780636352211e146103645780636c0360eb1461038457600080fd5b806332cb6b0c146102df5780633ccfd60b146102f557806342842e0e1461030a57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd146102785780631e7269c51461029f57806323b872dd146102bf57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461162d565b610546565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610598565b6040516101f391906116a2565b34801561022a57600080fd5b5061023e6102393660046116b5565b61062a565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b506102766102713660046116e3565b61066e565b005b34801561028457600080fd5b5060015460005403600019015b6040519081526020016101f3565b3480156102ab57600080fd5b506102916102ba36600461170f565b610740565b3480156102cb57600080fd5b506102766102da36600461172c565b61076b565b3480156102eb57600080fd5b5061029161014d81565b34801561030157600080fd5b5061027661077b565b34801561031657600080fd5b5061027661032536600461172c565b61083d565b34801561033657600080fd5b506102766103453660046117f9565b610858565b34801561035657600080fd5b50600b546101e79060ff1681565b34801561037057600080fd5b5061023e61037f3660046116b5565b610895565b34801561039057600080fd5b506102116108a0565b3480156103a557600080fd5b506102916103b436600461170f565b61092e565b3480156103c557600080fd5b50610276610977565b3480156103da57600080fd5b506008546001600160a01b031661023e565b3480156103f857600080fd5b506102766104073660046117f9565b6109ad565b34801561041857600080fd5b506102116109ea565b34801561042d57600080fd5b5061027661043c366004611842565b6109f9565b34801561044d57600080fd5b5061027661045c3660046116e3565b610a8e565b61027661046f36600461162d565b610ac2565b34801561048057600080fd5b5061027661048f366004611880565b610caa565b3480156104a057600080fd5b506102116104af3660046116b5565b610cf4565b3480156104c057600080fd5b5061023e73a5409ec958c83c3f309868babaca7c86dcb077c181565b3480156104e857600080fd5b50610276610d9f565b3480156104fd57600080fd5b50610211610ddd565b34801561051257600080fd5b506101e7610521366004611900565b610dea565b34801561053257600080fd5b5061027661054136600461170f565b610eb9565b60006301ffc9a760e01b6001600160e01b03198316148061057757506380ac58cd60e01b6001600160e01b03198316145b806105925750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105a79061192e565b80601f01602080910402602001604051908101604052809291908181526020018280546105d39061192e565b80156106205780601f106105f557610100808354040283529160200191610620565b820191906000526020600020905b81548152906001019060200180831161060357829003601f168201915b5050505050905090565b600061063582610f54565b610652576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061067982610f89565b9050806001600160a01b0316836001600160a01b0316036106ad5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106e4576106c78133610dea565b6106e4576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610592565b610776838383610fff565b505050565b6008546001600160a01b031633146107ae5760405162461bcd60e51b81526004016107a590611968565b60405180910390fd5b6040514790600090339083908381818185875af1925050503d80600081146107f2576040519150601f19603f3d011682016040523d82523d6000602084013e6107f7565b606091505b50509050806108395760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064016107a5565b5050565b61077683838360405180602001604052806000815250610caa565b6008546001600160a01b031633146108825760405162461bcd60e51b81526004016107a590611968565b805161083990600990602084019061157e565b600061059282610f89565b600980546108ad9061192e565b80601f01602080910402602001604051908101604052809291908181526020018280546108d99061192e565b80156109265780601f106108fb57610100808354040283529160200191610926565b820191906000526020600020905b81548152906001019060200180831161090957829003601f168201915b505050505081565b600081600003610951576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109a15760405162461bcd60e51b81526004016107a590611968565b6109ab60006111b8565b565b6008546001600160a01b031633146109d75760405162461bcd60e51b81526004016107a590611968565b805161083990600a90602084019061157e565b6060600380546105a79061192e565b336001600160a01b03831603610a225760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610ab85760405162461bcd60e51b81526004016107a590611968565b610839828261120a565b600b54339060ff1615610b005760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064016107a5565b6001546000540360001901610b169060016119b3565b61014d1015610b5c5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107a5565b6001610b8b826001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b10610bd15760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b60448201526064016107a5565b326001600160a01b03821614610c185760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016107a5565b604080516bffffffffffffffffffffffff19606084901b1660208083019190915282518083036014018152603490920190925280519101206001600160e01b0319838116911614610c9f5760405162461bcd60e51b81526020600482015260116024820152704e6f742066726f6d207765622c2073757360781b60448201526064016107a5565b61083981600161120a565b610cb5848484610fff565b6001600160a01b0383163b15610cee57610cd184848484611224565b610cee576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610cff82610f54565b610d435760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107a5565b600060098054610d529061192e565b905011610d6e5760405180602001604052806000815250610592565b6009610d798361130f565b604051602001610d8a9291906119e7565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610dc95760405162461bcd60e51b81526004016107a590611968565b600b805460ff19811660ff90911615179055565b600a80546108ad9061192e565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c455279190602401602060405180830381865afa158015610e4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6f9190611aa1565b6001600160a01b031603610e87576001915050610592565b6001600160a01b0380851660009081526007602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b03163314610ee35760405162461bcd60e51b81526004016107a590611968565b6001600160a01b038116610f485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a5565b610f51816111b8565b50565b600081600111158015610f68575060005482105b8015610592575050600090815260046020526040902054600160e01b161590565b60008180600111610fe657600054811015610fe65760008181526004602052604081205490600160e01b82169003610fe4575b80600003610fdd575060001901600081815260046020526040902054610fbc565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600061100a82610f89565b9050836001600160a01b0316816001600160a01b03161461103d5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b039081169190861633148061106d575061106d8633610dea565b8061108057506001600160a01b03821633145b9050806110a057604051632ce44b5f60e11b815260040160405180910390fd5b846000036110c157604051633a954ecd60e21b815260040160405180910390fd5b81156110e457600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b881781179091558416900361116f5760018401600081815260046020526040812054900361116d57600054811461116d5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610839828260405180602001604052806000815250611410565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611259903390899088908890600401611abe565b6020604051808303816000875af1925050508015611294575060408051601f3d908101601f1916820190925261129191810190611afb565b60015b6112f2573d8080156112c2576040519150601f19603f3d011682016040523d82523d6000602084013e6112c7565b606091505b5080516000036112ea576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060816000036113365750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611360578061134a81611b18565b91506113599050600a83611b47565b915061133a565b60008167ffffffffffffffff81111561137b5761137b61176d565b6040519080825280601f01601f1916602001820160405280156113a5576020820181803683370190505b5090505b8415610eb1576113ba600183611b5b565b91506113c7600a86611b72565b6113d29060306119b3565b60f81b8183815181106113e7576113e7611b86565b60200101906001600160f81b031916908160001a905350611409600a86611b47565b94506113a9565b6000548360000361143357604051622e076360e81b815260040160405180910390fd5b826000036114545760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611529575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114f26000878480600101955087611224565b61150f576040516368d2bf6b60e11b815260040160405180910390fd5b8082106114a757826000541461152457600080fd5b61156e565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061152a575b506000908155610cee9085838684565b82805461158a9061192e565b90600052602060002090601f0160209004810192826115ac57600085556115f2565b82601f106115c557805160ff19168380011785556115f2565b828001600101855582156115f2579182015b828111156115f25782518255916020019190600101906115d7565b506115fe929150611602565b5090565b5b808211156115fe5760008155600101611603565b6001600160e01b031981168114610f5157600080fd5b60006020828403121561163f57600080fd5b8135610fdd81611617565b60005b8381101561166557818101518382015260200161164d565b83811115610cee5750506000910152565b6000815180845261168e81602086016020860161164a565b601f01601f19169290920160200192915050565b602081526000610fdd6020830184611676565b6000602082840312156116c757600080fd5b5035919050565b6001600160a01b0381168114610f5157600080fd5b600080604083850312156116f657600080fd5b8235611701816116ce565b946020939093013593505050565b60006020828403121561172157600080fd5b8135610fdd816116ce565b60008060006060848603121561174157600080fd5b833561174c816116ce565b9250602084013561175c816116ce565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561179e5761179e61176d565b604051601f8501601f19908116603f011681019082821181831017156117c6576117c661176d565b816040528093508581528686860111156117df57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561180b57600080fd5b813567ffffffffffffffff81111561182257600080fd5b8201601f8101841361183357600080fd5b610eb184823560208401611783565b6000806040838503121561185557600080fd5b8235611860816116ce565b91506020830135801515811461187557600080fd5b809150509250929050565b6000806000806080858703121561189657600080fd5b84356118a1816116ce565b935060208501356118b1816116ce565b925060408501359150606085013567ffffffffffffffff8111156118d457600080fd5b8501601f810187136118e557600080fd5b6118f487823560208401611783565b91505092959194509250565b6000806040838503121561191357600080fd5b823561191e816116ce565b91506020830135611875816116ce565b600181811c9082168061194257607f821691505b60208210810361196257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156119c6576119c661199d565b500190565b600081516119dd81856020860161164a565b9290920192915050565b600080845481600182811c915080831680611a0357607f831692505b60208084108203611a2257634e487b7160e01b86526022600452602486fd5b818015611a365760018114611a4757611a74565b60ff19861689528489019650611a74565b60008b81526020902060005b86811015611a6c5781548b820152908501908301611a53565b505084890196505b505050505050611a98611a8782866119cb565b64173539b7b760d91b815260050190565b95945050505050565b600060208284031215611ab357600080fd5b8151610fdd816116ce565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611af190830184611676565b9695505050505050565b600060208284031215611b0d57600080fd5b8151610fdd81611617565b600060018201611b2a57611b2a61199d565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611b5657611b56611b31565b500490565b600082821015611b6d57611b6d61199d565b500390565b600082611b8157611b81611b31565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220bbf9499e219fa77538e7bbe6324c5bc15a5ef8435dab7486ed5f1a903e4572b664736f6c634300080d0033

Deployed Bytecode Sourcemap

44650:2772:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13422:615;;;;;;;;;;-1:-1:-1;13422:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;13422:615:0;;;;;;;;18445:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20513:204::-;;;;;;;;;;-1:-1:-1;20513:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;20513:204:0;1550:203:1;19973:474:0;;;;;;;;;;-1:-1:-1;19973:474:0;;;;;:::i;:::-;;:::i;:::-;;12476:315;;;;;;;;;;-1:-1:-1;45826:1:0;12742:12;12529:7;12726:13;:28;-1:-1:-1;;12726:46:0;12476:315;;;2360:25:1;;;2348:2;2333:18;12476:315:0;2214:177:1;46296:109:0;;;;;;;;;;-1:-1:-1;46296:109:0;;;;;:::i;:::-;;:::i;21399:170::-;;;;;;;;;;-1:-1:-1;21399:170:0;;;;;:::i;:::-;;:::i;44884:40::-;;;;;;;;;;;;44921:3;44884:40;;46413:209;;;;;;;;;;;;;:::i;21640:185::-;;;;;;;;;;-1:-1:-1;21640:185:0;;;;;:::i;:::-;;:::i;46831:100::-;;;;;;;;;;-1:-1:-1;46831:100:0;;;;;:::i;:::-;;:::i;45029:25::-;;;;;;;;;;-1:-1:-1;45029:25:0;;;;;;;;18234:144;;;;;;;;;;-1:-1:-1;18234:144:0;;;;;:::i;:::-;;:::i;44707:80::-;;;;;;;;;;;;;:::i;14101:234::-;;;;;;;;;;-1:-1:-1;14101:234:0;;;;;:::i;:::-;;:::i;43831:103::-;;;;;;;;;;;;;:::i;43180:87::-;;;;;;;;;;-1:-1:-1;43253:6:0;;-1:-1:-1;;;;;43253:6:0;43180:87;;46939:116;;;;;;;;;;-1:-1:-1;46939:116:0;;;;;:::i;:::-;;:::i;18614:104::-;;;;;;;;;;;;;:::i;20789:308::-;;;;;;;;;;-1:-1:-1;20789:308:0;;;;;:::i;:::-;;:::i;46630:109::-;;;;;;;;;;-1:-1:-1;46630:109:0;;;;;:::i;:::-;;:::i;45120:437::-;;;;;;:::i;:::-;;:::i;21896:396::-;;;;;;;;;;-1:-1:-1;21896:396:0;;;;;:::i;:::-;;:::i;47063:356::-;;;;;;;;;;-1:-1:-1;47063:356:0;;;;;:::i;:::-;;:::i;44931:89::-;;;;;;;;;;;;44978:42;44931:89;;46747:76;;;;;;;;;;;;;:::i;44794:83::-;;;;;;;;;;;;;:::i;45843:445::-;;;;;;;;;;-1:-1:-1;45843:445:0;;;;;:::i;:::-;;:::i;44089:201::-;;;;;;;;;;-1:-1:-1;44089:201:0;;;;;:::i;:::-;;:::i;13422:615::-;13507:4;-1:-1:-1;;;;;;;;;13807:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;13884:25:0;;;13807:102;:179;;;-1:-1:-1;;;;;;;;;;13961:25:0;;;13807:179;13787:199;13422:615;-1:-1:-1;;13422:615:0:o;18445:100::-;18499:13;18532:5;18525:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18445:100;:::o;20513:204::-;20581:7;20606:16;20614:7;20606;:16::i;:::-;20601:64;;20631:34;;-1:-1:-1;;;20631:34:0;;;;;;;;;;;20601:64;-1:-1:-1;20685:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20685:24:0;;20513:204::o;19973:474::-;20046:13;20078:27;20097:7;20078:18;:27::i;:::-;20046:61;;20128:5;-1:-1:-1;;;;;20122:11:0;:2;-1:-1:-1;;;;;20122:11:0;;20118:48;;20142:24;;-1:-1:-1;;;20142:24:0;;;;;;;;;;;20118:48;36901:10;-1:-1:-1;;;;;20183:28:0;;;20179:175;;20231:44;20248:5;36901:10;45843:445;:::i;20231:44::-;20226:128;;20303:35;;-1:-1:-1;;;20303:35:0;;;;;;;;;;;20226:128;20366:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20366:29:0;-1:-1:-1;;;;;20366:29:0;;;;;;;;;20411:28;;20366:24;;20411:28;;;;;;;20035:412;19973:474;;:::o;46296:109::-;-1:-1:-1;;;;;14506:25:0;;46349:7;14506:25;;;:18;:25;;9583:2;14506:25;;;;9446:13;14506:49;;14505:80;46376:21;14417:176;21399:170;21533:28;21543:4;21549:2;21553:7;21533:9;:28::i;:::-;21399:170;;;:::o;46413:209::-;43253:6;;-1:-1:-1;;;;;43253:6:0;36901:10;43400:23;43392:68;;;;-1:-1:-1;;;43392:68:0;;;;;;;:::i;:::-;;;;;;;;;46532:37:::1;::::0;46481:21:::1;::::0;46463:15:::1;::::0;36901:10;;46481:21;;46463:15;46532:37;46463:15;46532:37;46481:21;36901:10;46532:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46513:56;;;46588:7;46580:34;;;::::0;-1:-1:-1;;;46580:34:0;;7106:2:1;46580:34:0::1;::::0;::::1;7088:21:1::0;7145:2;7125:18;;;7118:30;-1:-1:-1;;;7164:18:1;;;7157:44;7218:18;;46580:34:0::1;6904:338:1::0;46580:34:0::1;46452:170;;46413:209::o:0;21640:185::-;21778:39;21795:4;21801:2;21805:7;21778:39;;;;;;;;;;;;:16;:39::i;46831:100::-;43253:6;;-1:-1:-1;;;;;43253:6:0;36901:10;43400:23;43392:68;;;;-1:-1:-1;;;43392:68:0;;;;;;;:::i;:::-;46905:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;18234:144::-:0;18298:7;18341:27;18360:7;18341:18;:27::i;44707:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14101:234::-;14165:7;14207:5;14217:1;14189:29;14185:70;;14227:28;;-1:-1:-1;;;14227:28:0;;;;;;;;;;;14185:70;-1:-1:-1;;;;;;14273:25:0;;;;;:18;:25;;;;;;9446:13;14273:54;;14101:234::o;43831:103::-;43253:6;;-1:-1:-1;;;;;43253:6:0;36901:10;43400:23;43392:68;;;;-1:-1:-1;;;43392:68:0;;;;;;;:::i;:::-;43896:30:::1;43923:1;43896:18;:30::i;:::-;43831:103::o:0;46939:116::-;43253:6;;-1:-1:-1;;;;;43253:6:0;36901:10;43400:23;43392:68;;;;-1:-1:-1;;;43392:68:0;;;;;;;:::i;:::-;47021:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;18614:104::-:0;18670:13;18703:7;18696:14;;;;;:::i;20789:308::-;36901:10;-1:-1:-1;;;;;20888:31:0;;;20884:61;;20928:17;;-1:-1:-1;;;20928:17:0;;;;;;;;;;;20884:61;36901:10;20958:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;20958:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;20958:60:0;;;;;;;;;;21034:55;;540:41:1;;;20958:49:0;;36901:10;21034:55;;513:18:1;21034:55:0;;;;;;;20789:308;;:::o;46630:109::-;43253:6;;-1:-1:-1;;;;;43253:6:0;36901:10;43400:23;43392:68;;;;-1:-1:-1;;;43392:68:0;;;;;;;:::i;:::-;46708:23:::1;46718:3;46723:7;46708:9;:23::i;45120:437::-:0;45227:6;;36901:10;;45227:6;;45226:7;45218:26;;;;-1:-1:-1;;;45218:26:0;;7449:2:1;45218:26:0;;;7431:21:1;7488:1;7468:18;;;7461:29;-1:-1:-1;;;7506:18:1;;;7499:36;7552:18;;45218:26:0;7247:329:1;45218:26:0;45826:1;12742:12;12529:7;12726:13;:28;-1:-1:-1;;12726:46:0;45277:17;;45293:1;45277:17;:::i;:::-;44921:3;45263:31;;45255:62;;;;-1:-1:-1;;;45255:62:0;;8048:2:1;45255:62:0;;;8030:21:1;8087:2;8067:18;;;8060:30;-1:-1:-1;;;8106:18:1;;;8099:48;8164:18;;45255:62:0;7846:342:1;45255:62:0;45361:1;45336:22;45350:7;-1:-1:-1;;;;;14506:25:0;14478:7;14506:25;;;:18;:25;;9583:2;14506:25;;;;;:49;;9446:13;14505:80;;14417:176;45336:22;:26;45328:61;;;;-1:-1:-1;;;45328:61:0;;8395:2:1;45328:61:0;;;8377:21:1;8434:2;8414:18;;;8407:30;-1:-1:-1;;;8453:18:1;;;8446:52;8515:18;;45328:61:0;8193:346:1;45328:61:0;45408:9;-1:-1:-1;;;;;45408:20:0;;;45400:45;;;;-1:-1:-1;;;45400:45:0;;8746:2:1;45400:45:0;;;8728:21:1;8785:2;8765:18;;;8758:30;-1:-1:-1;;;8804:18:1;;;8797:42;8856:18;;45400:45:0;8544:336:1;45400:45:0;45681:25;;;-1:-1:-1;;12162:2:1;12158:15;;;12154:53;45681:25:0;;;;12142:66:1;;;;45681:25:0;;;;;;;;;12224:12:1;;;;45681:25:0;;;45671:36;;;;;-1:-1:-1;;;;;;45664:54:0;;;;;;45456:59;;;;-1:-1:-1;;;45456:59:0;;9087:2:1;45456:59:0;;;9069:21:1;9126:2;9106:18;;;9099:30;-1:-1:-1;;;9145:18:1;;;9138:47;9202:18;;45456:59:0;8885:341:1;45456:59:0;45528:21;45538:7;45547:1;45528:9;:21::i;21896:396::-;22063:28;22073:4;22079:2;22083:7;22063:9;:28::i;:::-;-1:-1:-1;;;;;22106:14:0;;;:19;22102:183;;22145:56;22176:4;22182:2;22186:7;22195:5;22145:30;:56::i;:::-;22140:145;;22229:40;;-1:-1:-1;;;22229:40:0;;;;;;;;;;;22140:145;21896:396;;;;:::o;47063:356::-;47129:13;47163:17;47171:8;47163:7;:17::i;:::-;47155:51;;;;-1:-1:-1;;;47155:51:0;;9433:2:1;47155:51:0;;;9415:21:1;9472:2;9452:18;;;9445:30;-1:-1:-1;;;9491:18:1;;;9484:51;9552:18;;47155:51:0;9231:345:1;47155:51:0;47248:1;47230:7;47224:21;;;;;:::i;:::-;;;:25;:187;;;;;;;;;;;;;;;;;47306:7;47330:26;47347:8;47330:16;:26::i;:::-;47273:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47217:194;47063:356;-1:-1:-1;;47063:356:0:o;46747:76::-;43253:6;;-1:-1:-1;;;;;43253:6:0;36901:10;43400:23;43392:68;;;;-1:-1:-1;;;43392:68:0;;;;;;;:::i;:::-;46809:6:::1;::::0;;-1:-1:-1;;46799:16:0;::::1;46809:6;::::0;;::::1;46808:7;46799:16;::::0;;46747:76::o;44794:83::-;;;;;;;:::i;45843:445::-;46141:28;;-1:-1:-1;;;46141:28:0;;-1:-1:-1;;;;;1714:32:1;;;46141:28:0;;;1696:51:1;45968:4:0;;44978:42;;46133:49;;;44978:42;;46141:21;;1669:18:1;;46141:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46133:49:0;;46129:93;;46206:4;46199:11;;;;;46129:93;-1:-1:-1;;;;;21289:25:0;;;21265:4;21289:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;46241:39;46234:46;45843:445;-1:-1:-1;;;;45843:445:0:o;44089:201::-;43253:6;;-1:-1:-1;;;;;43253:6:0;36901:10;43400:23;43392:68;;;;-1:-1:-1;;;43392:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44178:22:0;::::1;44170:73;;;::::0;-1:-1:-1;;;44170:73:0;;11808:2:1;44170:73:0::1;::::0;::::1;11790:21:1::0;11847:2;11827:18;;;11820:30;11886:34;11866:18;;;11859:62;-1:-1:-1;;;11937:18:1;;;11930:36;11983:19;;44170:73:0::1;11606:402:1::0;44170:73:0::1;44254:28;44273:8;44254:18;:28::i;:::-;44089:201:::0;:::o;22547:273::-;22604:4;22660:7;45826:1;22641:26;;:66;;;;;22694:13;;22684:7;:23;22641:66;:152;;;;-1:-1:-1;;22745:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;22745:43:0;:48;;22547:273::o;15749:1129::-;15816:7;15851;;45826:1;15900:23;15896:915;;15953:13;;15946:4;:20;15942:869;;;15991:14;16008:23;;;:17;:23;;;;;;;-1:-1:-1;;;16097:23:0;;:28;;16093:699;;16616:113;16623:6;16633:1;16623:11;16616:113;;-1:-1:-1;;;16694:6:0;16676:25;;;;:17;:25;;;;;;16616:113;;;16762:6;15749:1129;-1:-1:-1;;;15749:1129:0:o;16093:699::-;15968:843;15942:869;16839:31;;-1:-1:-1;;;16839:31:0;;;;;;;;;;;27806:2654;27921:27;27951;27970:7;27951:18;:27::i;:::-;27921:57;;28036:4;-1:-1:-1;;;;;27995:45:0;28011:19;-1:-1:-1;;;;;27995:45:0;;27991:86;;28049:28;;-1:-1:-1;;;28049:28:0;;;;;;;;;;;27991:86;28090:23;28116:24;;;:15;:24;;;;;;-1:-1:-1;;;;;28116:24:0;;;;28090:23;28179:27;;36901:10;28179:27;;:87;;-1:-1:-1;28223:43:0;28240:4;36901:10;45843:445;:::i;28223:43::-;28179:142;;;-1:-1:-1;;;;;;28283:38:0;;36901:10;28283:38;28179:142;28153:169;;28340:17;28335:66;;28366:35;;-1:-1:-1;;;28366:35:0;;;;;;;;;;;28335:66;28434:2;28441:1;28416:26;28412:62;;28451:23;;-1:-1:-1;;;28451:23:0;;;;;;;;;;;28412:62;28618:15;28600:39;28596:103;;28663:24;;;;:15;:24;;;;;28656:31;;-1:-1:-1;;;;;;28656:31:0;;;28596:103;-1:-1:-1;;;;;29066:24:0;;;;;;;:18;:24;;;;;;;;29064:26;;-1:-1:-1;;29064:26:0;;;29135:22;;;;;;;;29133:24;;-1:-1:-1;29133:24:0;;;29428:26;;;:17;:26;;;;;-1:-1:-1;;;29516:15:0;10100:3;29516:41;29474:84;;:128;;29428:174;;;29722:46;;:51;;29718:626;;29826:1;29816:11;;29794:19;29949:30;;;:17;:30;;;;;;:35;;29945:384;;30087:13;;30072:11;:28;30068:242;;30234:30;;;;:17;:30;;;;;:52;;;30068:242;29775:569;29718:626;30391:7;30387:2;-1:-1:-1;;;;;30372:27:0;30381:4;-1:-1:-1;;;;;30372:27:0;;;;;;;;;;;27910:2550;;;27806:2654;;;:::o;44450:191::-;44543:6;;;-1:-1:-1;;;;;44560:17:0;;;-1:-1:-1;;;;;;44560:17:0;;;;;;;44593:40;;44543:6;;;44560:17;44543:6;;44593:40;;44524:16;;44593:40;44513:128;44450:191;:::o;22904:104::-;22973:27;22983:2;22987:8;22973:27;;;;;;;;;;;;:9;:27::i;34283:716::-;34467:88;;-1:-1:-1;;;34467:88:0;;34446:4;;-1:-1:-1;;;;;34467:45:0;;;;;:88;;36901:10;;34534:4;;34540:7;;34549:5;;34467:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34467:88:0;;;;;;;;-1:-1:-1;;34467:88:0;;;;;;;;;;;;:::i;:::-;;;34463:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34750:6;:13;34767:1;34750:18;34746:235;;34796:40;;-1:-1:-1;;;34796:40:0;;;;;;;;;;;34746:235;34939:6;34933:13;34924:6;34920:2;34916:15;34909:38;34463:529;-1:-1:-1;;;;;;34626:64:0;-1:-1:-1;;;34626:64:0;;-1:-1:-1;34283:716:0;;;;;;:::o;39313:723::-;39369:13;39590:5;39599:1;39590:10;39586:53;;-1:-1:-1;;39617:10:0;;;;;;;;;;;;-1:-1:-1;;;39617:10:0;;;;;39313:723::o;39586:53::-;39664:5;39649:12;39705:78;39712:9;;39705:78;;39738:8;;;;:::i;:::-;;-1:-1:-1;39761:10:0;;-1:-1:-1;39769:2:0;39761:10;;:::i;:::-;;;39705:78;;;39793:19;39825:6;39815:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39815:17:0;;39793:39;;39843:154;39850:10;;39843:154;;39877:11;39887:1;39877:11;;:::i;:::-;;-1:-1:-1;39946:10:0;39954:2;39946:5;:10;:::i;:::-;39933:24;;:2;:24;:::i;:::-;39920:39;;39903:6;39910;39903:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;39903:56:0;;;;;;;;-1:-1:-1;39974:11:0;39983:2;39974:11;;:::i;:::-;;;39843:154;;23381:2246;23504:20;23527:13;23573:2;23580:1;23555:26;23551:58;;23590:19;;-1:-1:-1;;;23590:19:0;;;;;;;;;;;23551:58;23624:8;23636:1;23624:13;23620:44;;23646:18;;-1:-1:-1;;;23646:18:0;;;;;;;;;;;23620:44;-1:-1:-1;;;;;24213:22:0;;;;;;:18;:22;;;;9583:2;24213:22;;;:70;;24251:31;24239:44;;24213:70;;;24526:31;;;:17;:31;;;;;24619:15;10100:3;24619:41;24577:84;;-1:-1:-1;24697:13:0;;10359:3;24682:56;24577:162;24526:213;;:31;;24820:23;;;;24864:14;:19;24860:635;;24904:313;24935:38;;24960:12;;-1:-1:-1;;;;;24935:38:0;;;24952:1;;24935:38;;24952:1;;24935:38;25001:69;25040:1;25044:2;25048:14;;;;;;25064:5;25001:30;:69::i;:::-;24996:174;;25106:40;;-1:-1:-1;;;25106:40:0;;;;;;;;;;;24996:174;25212:3;25197:12;:18;24904:313;;25298:12;25281:13;;:29;25277:43;;25312:8;;;25277:43;24860:635;;;25361:119;25392:40;;25417:14;;;;;-1:-1:-1;;;;;25392:40:0;;;25409:1;;25392:40;;25409:1;;25392:40;25475:3;25460:12;:18;25361:119;;24860:635;-1:-1:-1;25509:13:0;:28;;;25559:60;;25592:2;25596:12;25610:8;25559:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:131::-;-1:-1:-1;;;;;1833:31:1;;1823:42;;1813:70;;1879:1;1876;1869:12;1894:315;1962:6;1970;2023:2;2011:9;2002:7;1998:23;1994:32;1991:52;;;2039:1;2036;2029:12;1991:52;2078:9;2065:23;2097:31;2122:5;2097:31;:::i;:::-;2147:5;2199:2;2184:18;;;;2171:32;;-1:-1:-1;;;1894:315:1:o;2396:247::-;2455:6;2508:2;2496:9;2487:7;2483:23;2479:32;2476:52;;;2524:1;2521;2514:12;2476:52;2563:9;2550:23;2582:31;2607:5;2582:31;:::i;2648:456::-;2725:6;2733;2741;2794:2;2782:9;2773:7;2769:23;2765:32;2762:52;;;2810:1;2807;2800:12;2762:52;2849:9;2836:23;2868:31;2893:5;2868:31;:::i;:::-;2918:5;-1:-1:-1;2975:2:1;2960:18;;2947:32;2988:33;2947:32;2988:33;:::i;:::-;2648:456;;3040:7;;-1:-1:-1;;;3094:2:1;3079:18;;;;3066:32;;2648:456::o;3109:127::-;3170:10;3165:3;3161:20;3158:1;3151:31;3201:4;3198:1;3191:15;3225:4;3222:1;3215:15;3241:632;3306:5;3336:18;3377:2;3369:6;3366:14;3363:40;;;3383:18;;:::i;:::-;3458:2;3452:9;3426:2;3512:15;;-1:-1:-1;;3508:24:1;;;3534:2;3504:33;3500:42;3488:55;;;3558:18;;;3578:22;;;3555:46;3552:72;;;3604:18;;:::i;:::-;3644:10;3640:2;3633:22;3673:6;3664:15;;3703:6;3695;3688:22;3743:3;3734:6;3729:3;3725:16;3722:25;3719:45;;;3760:1;3757;3750:12;3719:45;3810:6;3805:3;3798:4;3790:6;3786:17;3773:44;3865:1;3858:4;3849:6;3841;3837:19;3833:30;3826:41;;;;3241:632;;;;;:::o;3878:451::-;3947:6;4000:2;3988:9;3979:7;3975:23;3971:32;3968:52;;;4016:1;4013;4006:12;3968:52;4056:9;4043:23;4089:18;4081:6;4078:30;4075:50;;;4121:1;4118;4111:12;4075:50;4144:22;;4197:4;4189:13;;4185:27;-1:-1:-1;4175:55:1;;4226:1;4223;4216:12;4175:55;4249:74;4315:7;4310:2;4297:16;4292:2;4288;4284:11;4249:74;:::i;4334:416::-;4399:6;4407;4460:2;4448:9;4439:7;4435:23;4431:32;4428:52;;;4476:1;4473;4466:12;4428:52;4515:9;4502:23;4534:31;4559:5;4534:31;:::i;:::-;4584:5;-1:-1:-1;4641:2:1;4626:18;;4613:32;4683:15;;4676:23;4664:36;;4654:64;;4714:1;4711;4704:12;4654:64;4737:7;4727:17;;;4334:416;;;;;:::o;4755:795::-;4850:6;4858;4866;4874;4927:3;4915:9;4906:7;4902:23;4898:33;4895:53;;;4944:1;4941;4934:12;4895:53;4983:9;4970:23;5002:31;5027:5;5002:31;:::i;:::-;5052:5;-1:-1:-1;5109:2:1;5094:18;;5081:32;5122:33;5081:32;5122:33;:::i;:::-;5174:7;-1:-1:-1;5228:2:1;5213:18;;5200:32;;-1:-1:-1;5283:2:1;5268:18;;5255:32;5310:18;5299:30;;5296:50;;;5342:1;5339;5332:12;5296:50;5365:22;;5418:4;5410:13;;5406:27;-1:-1:-1;5396:55:1;;5447:1;5444;5437:12;5396:55;5470:74;5536:7;5531:2;5518:16;5513:2;5509;5505:11;5470:74;:::i;:::-;5460:84;;;4755:795;;;;;;;:::o;5555:388::-;5623:6;5631;5684:2;5672:9;5663:7;5659:23;5655:32;5652:52;;;5700:1;5697;5690:12;5652:52;5739:9;5726:23;5758:31;5783:5;5758:31;:::i;:::-;5808:5;-1:-1:-1;5865:2:1;5850:18;;5837:32;5878:33;5837:32;5878:33;:::i;5948:380::-;6027:1;6023:12;;;;6070;;;6091:61;;6145:4;6137:6;6133:17;6123:27;;6091:61;6198:2;6190:6;6187:14;6167:18;6164:38;6161:161;;6244:10;6239:3;6235:20;6232:1;6225:31;6279:4;6276:1;6269:15;6307:4;6304:1;6297:15;6161:161;;5948:380;;;:::o;6333:356::-;6535:2;6517:21;;;6554:18;;;6547:30;6613:34;6608:2;6593:18;;6586:62;6680:2;6665:18;;6333:356::o;7581:127::-;7642:10;7637:3;7633:20;7630:1;7623:31;7673:4;7670:1;7663:15;7697:4;7694:1;7687:15;7713:128;7753:3;7784:1;7780:6;7777:1;7774:13;7771:39;;;7790:18;;:::i;:::-;-1:-1:-1;7826:9:1;;7713:128::o;9707:185::-;9749:3;9787:5;9781:12;9802:52;9847:6;9842:3;9835:4;9828:5;9824:16;9802:52;:::i;:::-;9870:16;;;;;9707:185;-1:-1:-1;;9707:185:1:o;10015:1301::-;10292:3;10321:1;10354:6;10348:13;10384:3;10406:1;10434:9;10430:2;10426:18;10416:28;;10494:2;10483:9;10479:18;10516;10506:61;;10560:4;10552:6;10548:17;10538:27;;10506:61;10586:2;10634;10626:6;10623:14;10603:18;10600:38;10597:165;;-1:-1:-1;;;10661:33:1;;10717:4;10714:1;10707:15;10747:4;10668:3;10735:17;10597:165;10778:18;10805:104;;;;10923:1;10918:320;;;;10771:467;;10805:104;-1:-1:-1;;10838:24:1;;10826:37;;10883:16;;;;-1:-1:-1;10805:104:1;;10918:320;9654:1;9647:14;;;9691:4;9678:18;;11013:1;11027:165;11041:6;11038:1;11035:13;11027:165;;;11119:14;;11106:11;;;11099:35;11162:16;;;;11056:10;;11027:165;;;11031:3;;11221:6;11216:3;11212:16;11205:23;;10771:467;;;;;;;11254:56;11279:30;11305:3;11297:6;11279:30;:::i;:::-;-1:-1:-1;;;9957:20:1;;10002:1;9993:11;;9897:113;11254:56;11247:63;10015:1301;-1:-1:-1;;;;;10015:1301:1:o;11321:280::-;11420:6;11473:2;11461:9;11452:7;11448:23;11444:32;11441:52;;;11489:1;11486;11479:12;11441:52;11521:9;11515:16;11540:31;11565:5;11540:31;:::i;12247:500::-;-1:-1:-1;;;;;12516:15:1;;;12498:34;;12568:15;;12563:2;12548:18;;12541:43;12615:2;12600:18;;12593:34;;;12663:3;12658:2;12643:18;;12636:31;;;12441:4;;12684:57;;12721:19;;12713:6;12684:57;:::i;:::-;12676:65;12247:500;-1:-1:-1;;;;;;12247:500:1:o;12752:249::-;12821:6;12874:2;12862:9;12853:7;12849:23;12845:32;12842:52;;;12890:1;12887;12880:12;12842:52;12922:9;12916:16;12941:30;12965:5;12941:30;:::i;13006:135::-;13045:3;13066:17;;;13063:43;;13086:18;;:::i;:::-;-1:-1:-1;13133:1:1;13122:13;;13006:135::o;13146:127::-;13207:10;13202:3;13198:20;13195:1;13188:31;13238:4;13235:1;13228:15;13262:4;13259:1;13252:15;13278:120;13318:1;13344;13334:35;;13349:18;;:::i;:::-;-1:-1:-1;13383:9:1;;13278:120::o;13403:125::-;13443:4;13471:1;13468;13465:8;13462:34;;;13476:18;;:::i;:::-;-1:-1:-1;13513:9:1;;13403:125::o;13533:112::-;13565:1;13591;13581:35;;13596:18;;:::i;:::-;-1:-1:-1;13630:9:1;;13533:112::o;13650:127::-;13711:10;13706:3;13702:20;13699:1;13692:31;13742:4;13739:1;13732:15;13766:4;13763:1;13756:15

Swarm Source

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