ETH Price: $2,278.32 (+2.59%)

Token

Clockz (CLOCKZ)
 

Overview

Max Total Supply

360 CLOCKZ

Holders

340

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CLOCKZ
0xd462833dce74571562898fb78a4fffc2aa7b00b0
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:
Clockz

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-20
*/

/**
 *Submitted for verification at Etherscan.io on 2022-09-16
*/

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

// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

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

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}


contract Clockz is IERC721A { 
    address private _owner;

    modifier onlyOwner() { 
        require(_owner==msg.sender);
        _; 
    }

    uint256 public constant MAX_SUPPLY = 360;
    uint256 public constant MAX_FREE_PER_WALLET = 1;
    uint256 public constant COST = 0.002 ether;

    string private constant _name = "Clockz";
    string private constant _symbol = "CLOCKZ";
    string private _contractURI = "";
    string private _baseURI = "";


    constructor() {
        _owner = msg.sender;
    }

    function mint(uint256 amount) external payable{
        address _caller = _msgSenderERC721A();

        require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
        require(amount*COST <= msg.value, "Value to Low");

        _mint(_caller, amount);
    }

    function freeMint() external{
        address _caller = _msgSenderERC721A();
        uint256 amount = MAX_FREE_PER_WALLET;

        require(totalSupply() + amount <= MAX_SUPPLY - 66, "Freemint SoldOut");
        require(amount + _numberMinted(_caller) <= MAX_FREE_PER_WALLET, "AccLimit");

        _mint(_caller, amount);
    }

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

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


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


    function setData(string memory _contract, string memory _base) external onlyOwner{
        _contractURI = _contract;
        _baseURI = _base;
    }

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

    
    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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : "";
    }

    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked("ipfs://", _contractURI));
    }

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

        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);
    }

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

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


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


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

        //X if (_addressToUint256(to) == 0) revert TransferToZeroAddress();


        // 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 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)
        }
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"_contract","type":"string"},{"internalType":"string","name":"_base","type":"string"}],"name":"setData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052600060809081526001906200001a90826200010a565b506040805160208101909152600081526002906200003990826200010a565b5060006003553480156200004c57600080fd5b50600080546001600160a01b03191633179055620001d6565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200009057607f821691505b602082108103620000b157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200010557600081815260208120601f850160051c81016020861015620000e05750805b601f850160051c820191505b818110156200010157828155600101620000ec565b5050505b505050565b81516001600160401b0381111562000126576200012662000065565b6200013e816200013784546200007b565b84620000b7565b602080601f8311600181146200017657600084156200015d5750858301515b600019600386901b1c1916600185901b17855562000101565b600085815260208120601f198616915b82811015620001a75788860151825594840194600190910190840162000186565b5085821015620001c65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6112ff80620001e66000396000f3fe6080604052600436106101355760003560e01c806370a08231116100ab578063a22cb4651161006f578063a22cb46514610357578063b88d4fde14610377578063bf8fbbd214610397578063c87b56dd146103b2578063e8a3d485146103d2578063e985e9c5146103e757600080fd5b806370a08231146102c05780638ca3c553146102e057806395d89b411461030057806398710d1e1461032f578063a0712d681461034457600080fd5b806323b872dd116100fd57806323b872dd1461022057806332cb6b0c146102405780633ccfd60b1461025657806342842e0e1461026b5780635b70ea9f1461028b5780636352211e146102a057600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc146101a7578063095ea7b3146101df57806318160ddd14610201575b600080fd5b34801561014657600080fd5b5061015a610155366004610d14565b610407565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b5060408051808201909152600681526521b637b1b5bd60d11b60208201525b6040516101669190610d62565b3480156101b357600080fd5b506101c76101c2366004610d95565b610459565b6040516001600160a01b039091168152602001610166565b3480156101eb57600080fd5b506101ff6101fa366004610dca565b61049f565b005b34801561020d57600080fd5b506003545b604051908152602001610166565b34801561022c57600080fd5b506101ff61023b366004610df4565b61055d565b34801561024c57600080fd5b5061021261016881565b34801561026257600080fd5b506101ff61056d565b34801561027757600080fd5b506101ff610286366004610df4565b6105b7565b34801561029757600080fd5b506101ff6105d2565b3480156102ac57600080fd5b506101c76102bb366004610d95565b6106b8565b3480156102cc57600080fd5b506102126102db366004610e30565b6106c3565b3480156102ec57600080fd5b506101ff6102fb366004610ef7565b61070c565b34801561030c57600080fd5b5060408051808201909152600681526521a627a1a5ad60d11b602082015261019a565b34801561033b57600080fd5b50610212600181565b6101ff610352366004610d95565b61073c565b34801561036357600080fd5b506101ff610372366004610f5b565b6107e5565b34801561038357600080fd5b506101ff610392366004610f97565b61087a565b3480156103a357600080fd5b5061021266071afd498d000081565b3480156103be57600080fd5b5061019a6103cd366004610d95565b61088b565b3480156103de57600080fd5b5061019a610994565b3480156103f357600080fd5b5061015a610402366004611013565b6109bc565b60006301ffc9a760e01b6001600160e01b03198316148061043857506380ac58cd60e01b6001600160e01b03198316145b806104535750635b5e139f60e01b6001600160e01b03198316145b92915050565b6000610466826003541190565b610483576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104aa826109ea565b9050806001600160a01b0316836001600160a01b0316036104ca57600080fd5b336001600160a01b03821614610501576104e481336109bc565b610501576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610568838383610a51565b505050565b6000546001600160a01b0316331461058457600080fd5b6040514790339082156108fc029083906000818181858888f193505050501580156105b3573d6000803e3d6000fd5b5050565b6105688383836040518060200160405280600081525061087a565b3360016105e2604261016861105c565b816105ec60035490565b6105f6919061106f565b111561063c5760405162461bcd60e51b815260206004820152601060248201526f119c99595b5a5b9d0814dbdb1913dd5d60821b60448201526064015b60405180910390fd5b600161066b836001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b610675908361106f565b11156106ae5760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610633565b6105b38282610bea565b6000610453826109ea565b6000816000036106e6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461072357600080fd5b600161072f8382611102565b5060026105688282611102565b336101688261074a60035490565b610754919061106f565b111561078c5760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b6044820152606401610633565b3461079e66071afd498d0000846111c2565b11156107db5760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b6044820152606401610633565b6105b38183610bea565b336001600160a01b0383160361080e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610885848484610a51565b50505050565b6060610898826003541190565b6108b557604051630a14c4b560e41b815260040160405180910390fd5b6000600280546108c490611082565b80601f01602080910402602001604051908101604052809291908181526020018280546108f090611082565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b505050505090508051600003610962576040518060200160405280600081525061098d565b8061096c84610cc5565b60405160200161097d9291906111d9565b6040516020818303038152906040525b9392505050565b606060016040516020016109a8919061123a565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600081600354811015610a385760008181526004602052604081205490600160e01b82169003610a36575b8060000361098d575060001901600081815260046020526040902054610a15565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610a5c826109ea565b9050836001600160a01b0316816001600160a01b031614610a8f5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610abf5750610abf86336109bc565b80610ad257506001600160a01b03821633145b905080610af257604051632ce44b5f60e11b815260040160405180910390fd5b8115610b1557600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610ba057600184016000818152600460205260408120549003610b9e576003548114610b9e5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60035482600003610c0d57604051622e076360e81b815260040160405180910390fd5b81600003610c2e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610c795750600355505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610d0257600183039250600a81066030018353600a9004610ce4565b50819003601f19909101908152919050565b600060208284031215610d2657600080fd5b81356001600160e01b03198116811461098d57600080fd5b60005b83811015610d59578181015183820152602001610d41565b50506000910152565b6020815260008251806020840152610d81816040850160208701610d3e565b601f01601f19169190910160400192915050565b600060208284031215610da757600080fd5b5035919050565b80356001600160a01b0381168114610dc557600080fd5b919050565b60008060408385031215610ddd57600080fd5b610de683610dae565b946020939093013593505050565b600080600060608486031215610e0957600080fd5b610e1284610dae565b9250610e2060208501610dae565b9150604084013590509250925092565b600060208284031215610e4257600080fd5b61098d82610dae565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115610e7c57610e7c610e4b565b604051601f8501601f19908116603f01168101908282118183101715610ea457610ea4610e4b565b81604052809350858152868686011115610ebd57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112610ee857600080fd5b61098d83833560208501610e61565b60008060408385031215610f0a57600080fd5b823567ffffffffffffffff80821115610f2257600080fd5b610f2e86838701610ed7565b93506020850135915080821115610f4457600080fd5b50610f5185828601610ed7565b9150509250929050565b60008060408385031215610f6e57600080fd5b610f7783610dae565b915060208301358015158114610f8c57600080fd5b809150509250929050565b60008060008060808587031215610fad57600080fd5b610fb685610dae565b9350610fc460208601610dae565b925060408501359150606085013567ffffffffffffffff811115610fe757600080fd5b8501601f81018713610ff857600080fd5b61100787823560208401610e61565b91505092959194509250565b6000806040838503121561102657600080fd5b61102f83610dae565b915061103d60208401610dae565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561045357610453611046565b8082018082111561045357610453611046565b600181811c9082168061109657607f821691505b6020821081036110b657634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561056857600081815260208120601f850160051c810160208610156110e35750805b601f850160051c820191505b81811015610be2578281556001016110ef565b815167ffffffffffffffff81111561111c5761111c610e4b565b6111308161112a8454611082565b846110bc565b602080601f831160018114611165576000841561114d5750858301515b600019600386901b1c1916600185901b178555610be2565b600085815260208120601f198616915b8281101561119457888601518255948401946001909101908401611175565b50858210156111b25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761045357610453611046565b66697066733a2f2f60c81b8152600083516111fb816007850160208801610d3e565b602f60f81b600791840191820152835161121c816008840160208801610d3e565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b8152600060076000845461125881611082565b600182811680156112705760018114611289576112bc565b60ff1984168887015282151583028801860194506112bc565b8860005260208060002060005b858110156112b15781548b82018a0152908401908201611296565b505050858389010194505b509297965050505050505056fea2646970667358221220a3cd41d2c3538a58ec335119d03ff9f9eb29f6ae327c956e9c7229ba98ef5ad464736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101355760003560e01c806370a08231116100ab578063a22cb4651161006f578063a22cb46514610357578063b88d4fde14610377578063bf8fbbd214610397578063c87b56dd146103b2578063e8a3d485146103d2578063e985e9c5146103e757600080fd5b806370a08231146102c05780638ca3c553146102e057806395d89b411461030057806398710d1e1461032f578063a0712d681461034457600080fd5b806323b872dd116100fd57806323b872dd1461022057806332cb6b0c146102405780633ccfd60b1461025657806342842e0e1461026b5780635b70ea9f1461028b5780636352211e146102a057600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc146101a7578063095ea7b3146101df57806318160ddd14610201575b600080fd5b34801561014657600080fd5b5061015a610155366004610d14565b610407565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b5060408051808201909152600681526521b637b1b5bd60d11b60208201525b6040516101669190610d62565b3480156101b357600080fd5b506101c76101c2366004610d95565b610459565b6040516001600160a01b039091168152602001610166565b3480156101eb57600080fd5b506101ff6101fa366004610dca565b61049f565b005b34801561020d57600080fd5b506003545b604051908152602001610166565b34801561022c57600080fd5b506101ff61023b366004610df4565b61055d565b34801561024c57600080fd5b5061021261016881565b34801561026257600080fd5b506101ff61056d565b34801561027757600080fd5b506101ff610286366004610df4565b6105b7565b34801561029757600080fd5b506101ff6105d2565b3480156102ac57600080fd5b506101c76102bb366004610d95565b6106b8565b3480156102cc57600080fd5b506102126102db366004610e30565b6106c3565b3480156102ec57600080fd5b506101ff6102fb366004610ef7565b61070c565b34801561030c57600080fd5b5060408051808201909152600681526521a627a1a5ad60d11b602082015261019a565b34801561033b57600080fd5b50610212600181565b6101ff610352366004610d95565b61073c565b34801561036357600080fd5b506101ff610372366004610f5b565b6107e5565b34801561038357600080fd5b506101ff610392366004610f97565b61087a565b3480156103a357600080fd5b5061021266071afd498d000081565b3480156103be57600080fd5b5061019a6103cd366004610d95565b61088b565b3480156103de57600080fd5b5061019a610994565b3480156103f357600080fd5b5061015a610402366004611013565b6109bc565b60006301ffc9a760e01b6001600160e01b03198316148061043857506380ac58cd60e01b6001600160e01b03198316145b806104535750635b5e139f60e01b6001600160e01b03198316145b92915050565b6000610466826003541190565b610483576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104aa826109ea565b9050806001600160a01b0316836001600160a01b0316036104ca57600080fd5b336001600160a01b03821614610501576104e481336109bc565b610501576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610568838383610a51565b505050565b6000546001600160a01b0316331461058457600080fd5b6040514790339082156108fc029083906000818181858888f193505050501580156105b3573d6000803e3d6000fd5b5050565b6105688383836040518060200160405280600081525061087a565b3360016105e2604261016861105c565b816105ec60035490565b6105f6919061106f565b111561063c5760405162461bcd60e51b815260206004820152601060248201526f119c99595b5a5b9d0814dbdb1913dd5d60821b60448201526064015b60405180910390fd5b600161066b836001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b610675908361106f565b11156106ae5760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610633565b6105b38282610bea565b6000610453826109ea565b6000816000036106e6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461072357600080fd5b600161072f8382611102565b5060026105688282611102565b336101688261074a60035490565b610754919061106f565b111561078c5760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b6044820152606401610633565b3461079e66071afd498d0000846111c2565b11156107db5760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b6044820152606401610633565b6105b38183610bea565b336001600160a01b0383160361080e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610885848484610a51565b50505050565b6060610898826003541190565b6108b557604051630a14c4b560e41b815260040160405180910390fd5b6000600280546108c490611082565b80601f01602080910402602001604051908101604052809291908181526020018280546108f090611082565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b505050505090508051600003610962576040518060200160405280600081525061098d565b8061096c84610cc5565b60405160200161097d9291906111d9565b6040516020818303038152906040525b9392505050565b606060016040516020016109a8919061123a565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600081600354811015610a385760008181526004602052604081205490600160e01b82169003610a36575b8060000361098d575060001901600081815260046020526040902054610a15565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610a5c826109ea565b9050836001600160a01b0316816001600160a01b031614610a8f5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610abf5750610abf86336109bc565b80610ad257506001600160a01b03821633145b905080610af257604051632ce44b5f60e11b815260040160405180910390fd5b8115610b1557600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610ba057600184016000818152600460205260408120549003610b9e576003548114610b9e5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60035482600003610c0d57604051622e076360e81b815260040160405180910390fd5b81600003610c2e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610c795750600355505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610d0257600183039250600a81066030018353600a9004610ce4565b50819003601f19909101908152919050565b600060208284031215610d2657600080fd5b81356001600160e01b03198116811461098d57600080fd5b60005b83811015610d59578181015183820152602001610d41565b50506000910152565b6020815260008251806020840152610d81816040850160208701610d3e565b601f01601f19169190910160400192915050565b600060208284031215610da757600080fd5b5035919050565b80356001600160a01b0381168114610dc557600080fd5b919050565b60008060408385031215610ddd57600080fd5b610de683610dae565b946020939093013593505050565b600080600060608486031215610e0957600080fd5b610e1284610dae565b9250610e2060208501610dae565b9150604084013590509250925092565b600060208284031215610e4257600080fd5b61098d82610dae565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115610e7c57610e7c610e4b565b604051601f8501601f19908116603f01168101908282118183101715610ea457610ea4610e4b565b81604052809350858152868686011115610ebd57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112610ee857600080fd5b61098d83833560208501610e61565b60008060408385031215610f0a57600080fd5b823567ffffffffffffffff80821115610f2257600080fd5b610f2e86838701610ed7565b93506020850135915080821115610f4457600080fd5b50610f5185828601610ed7565b9150509250929050565b60008060408385031215610f6e57600080fd5b610f7783610dae565b915060208301358015158114610f8c57600080fd5b809150509250929050565b60008060008060808587031215610fad57600080fd5b610fb685610dae565b9350610fc460208601610dae565b925060408501359150606085013567ffffffffffffffff811115610fe757600080fd5b8501601f81018713610ff857600080fd5b61100787823560208401610e61565b91505092959194509250565b6000806040838503121561102657600080fd5b61102f83610dae565b915061103d60208401610dae565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561045357610453611046565b8082018082111561045357610453611046565b600181811c9082168061109657607f821691505b6020821081036110b657634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561056857600081815260208120601f850160051c810160208610156110e35750805b601f850160051c820191505b81811015610be2578281556001016110ef565b815167ffffffffffffffff81111561111c5761111c610e4b565b6111308161112a8454611082565b846110bc565b602080601f831160018114611165576000841561114d5750858301515b600019600386901b1c1916600185901b178555610be2565b600085815260208120601f198616915b8281101561119457888601518255948401946001909101908401611175565b50858210156111b25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761045357610453611046565b66697066733a2f2f60c81b8152600083516111fb816007850160208801610d3e565b602f60f81b600791840191820152835161121c816008840160208801610d3e565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b8152600060076000845461125881611082565b600182811680156112705760018114611289576112bc565b60ff1984168887015282151583028801860194506112bc565b8860005260208060002060005b858110156112b15781548b82018a0152908401908201611296565b505050858389010194505b509297965050505050505056fea2646970667358221220a3cd41d2c3538a58ec335119d03ff9f9eb29f6ae327c956e9c7229ba98ef5ad464736f6c63430008110033

Deployed Bytecode Sourcemap

9162:24197:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14101:615;;;;;;;;;;-1:-1:-1;14101:615:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;14101:615:0;;;;;;;;18854:100;;;;;;;;;;-1:-1:-1;18941:5:0;;;;;;;;;;;;-1:-1:-1;;;18941:5:0;;;;18854:100;;;;;;;:::i;20663:204::-;;;;;;;;;;-1:-1:-1;20663:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1502:32:1;;;1484:51;;1472:2;1457:18;20663:204:0;1338:203:1;20146:451:0;;;;;;;;;;-1:-1:-1;20146:451:0;;;;;:::i;:::-;;:::i;:::-;;13344:300;;;;;;;;;;-1:-1:-1;13594:13:0;;13344:300;;;2129:25:1;;;2117:2;2102:18;13344:300:0;1983:177:1;21549:190:0;;;;;;;;;;-1:-1:-1;21549:190:0;;;;;:::i;:::-;;:::i;9318:40::-;;;;;;;;;;;;9355:3;9318:40;;33211:145;;;;;;;;;;;;;:::i;21810:205::-;;;;;;;;;;-1:-1:-1;21810:205:0;;;;;:::i;:::-;;:::i;9978:335::-;;;;;;;;;;;;;:::i;18643:144::-;;;;;;;;;;-1:-1:-1;18643:144:0;;;;;:::i;:::-;;:::i;14780:234::-;;;;;;;;;;-1:-1:-1;14780:234:0;;;;;:::i;:::-;;:::i;12573:151::-;;;;;;;;;;-1:-1:-1;12573:151:0;;;;;:::i;:::-;;:::i;19023:104::-;;;;;;;;;;-1:-1:-1;19112:7:0;;;;;;;;;;;;-1:-1:-1;;;19112:7:0;;;;19023:104;;9365:47;;;;;;;;;;;;9411:1;9365:47;;9704:266;;;;;;:::i;:::-;;:::i;20939:308::-;;;;;;;;;;-1:-1:-1;20939:308:0;;;;;:::i;:::-;;:::i;22086:227::-;;;;;;;;;;-1:-1:-1;22086:227:0;;;;;:::i;:::-;;:::i;9419:42::-;;;;;;;;;;;;9450:11;9419:42;;19141:339;;;;;;;;;;-1:-1:-1;19141:339:0;;;;;:::i;:::-;;:::i;19488:134::-;;;;;;;;;;;;;:::i;21318:164::-;;;;;;;;;;-1:-1:-1;21318:164:0;;;;;:::i;:::-;;:::i;14101:615::-;14186:4;-1:-1:-1;;;;;;;;;14486:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;14563:25:0;;;14486:102;:179;;;-1:-1:-1;;;;;;;;;;14640:25:0;;;14486:179;14466:199;14101:615;-1:-1:-1;;14101:615:0:o;20663:204::-;20731:7;20756:16;20764:7;22715:13;;-1:-1:-1;22705:23:0;22568:168;20756:16;20751:64;;20781:34;;-1:-1:-1;;;20781:34:0;;;;;;;;;;;20751:64;-1:-1:-1;20835:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20835:24:0;;20663:204::o;20146:451::-;20219:13;20251:27;20270:7;20251:18;:27::i;:::-;20219:61;;20301:5;-1:-1:-1;;;;;20295:11:0;:2;-1:-1:-1;;;;;20295:11:0;;20291:25;;20308:8;;;20291:25;31197:10;-1:-1:-1;;;;;20333:28:0;;;20329:175;;20381:44;20398:5;31197:10;21318:164;:::i;20381:44::-;20376:128;;20453:35;;-1:-1:-1;;;20453:35:0;;;;;;;;;;;20376:128;20516:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20516:29:0;-1:-1:-1;;;;;20516:29:0;;;;;;;;;20561:28;;20516:24;;20561:28;;;;;;;20208:389;20146:451;;:::o;21549:190::-;21703:28;21713:4;21719:2;21723:7;21703:9;:28::i;:::-;21549:190;;;:::o;33211:145::-;9270:6;;-1:-1:-1;;;;;9270:6:0;9278:10;9270:18;9262:27;;;;;;33311:37:::1;::::0;33279:21:::1;::::0;33319:10:::1;::::0;33311:37;::::1;;;::::0;33279:21;;33261:15:::1;33311:37:::0;33261:15;33311:37;33279:21;33319:10;33311:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;33250:106;33211:145::o:0;21810:205::-;21968:39;21985:4;21991:2;21995:7;21968:39;;;;;;;;;;;;:16;:39::i;9978:335::-;31197:10;9411:1;10148:15;10161:2;9355:3;10148:15;:::i;:::-;10138:6;10122:13;13594;;;13344:300;10122:13;:22;;;;:::i;:::-;:41;;10114:70;;;;-1:-1:-1;;;10114:70:0;;6119:2:1;10114:70:0;;;6101:21:1;6158:2;6138:18;;;6131:30;-1:-1:-1;;;6177:18:1;;;6170:46;6233:18;;10114:70:0;;;;;;;;;9411:1;10212:22;10226:7;-1:-1:-1;;;;;15185:25:0;15157:7;15185:25;;;:18;:25;;10561:2;15185:25;;;;;:49;;10424:13;15184:80;;15096:176;10212:22;10203:31;;:6;:31;:::i;:::-;:54;;10195:75;;;;-1:-1:-1;;;10195:75:0;;6464:2:1;10195:75:0;;;6446:21:1;6503:1;6483:18;;;6476:29;-1:-1:-1;;;6521:18:1;;;6514:38;6569:18;;10195:75:0;6262:331:1;10195:75:0;10283:22;10289:7;10298:6;10283:5;:22::i;18643:144::-;18707:7;18750:27;18769:7;18750:18;:27::i;14780:234::-;14844:7;14886:5;14896:1;14868:29;14864:70;;14906:28;;-1:-1:-1;;;14906:28:0;;;;;;;;;;;14864:70;-1:-1:-1;;;;;;14952:25:0;;;;;:18;:25;;;;;;10424:13;14952:54;;14780:234::o;12573:151::-;9270:6;;-1:-1:-1;;;;;9270:6:0;9278:10;9270:18;9262:27;;;;;;12665:12:::1;:24;12680:9:::0;12665:12;:24:::1;:::i;:::-;-1:-1:-1::0;12700:8:0::1;:16;12711:5:::0;12700:8;:16:::1;:::i;9704:266::-:0;31197:10;9355:3;9835:6;9819:13;13594;;;13344:300;9819:13;:22;;;;:::i;:::-;:36;;9811:56;;;;-1:-1:-1;;;9811:56:0;;9389:2:1;9811:56:0;;;9371:21:1;9428:1;9408:18;;;9401:29;-1:-1:-1;;;9446:18:1;;;9439:37;9493:18;;9811:56:0;9187:330:1;9811:56:0;9901:9;9886:11;9450;9886:6;:11;:::i;:::-;:24;;9878:49;;;;-1:-1:-1;;;9878:49:0;;9897:2:1;9878:49:0;;;9879:21:1;9936:2;9916:18;;;9909:30;-1:-1:-1;;;9955:18:1;;;9948:42;10007:18;;9878:49:0;9695:336:1;9878:49:0;9940:22;9946:7;9955:6;9940:5;:22::i;20939:308::-;31197:10;-1:-1:-1;;;;;21038:31:0;;;21034:61;;21078:17;;-1:-1:-1;;;21078:17:0;;;;;;;;;;;21034:61;31197:10;21108:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;21108:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;21108:60:0;;;;;;;;;;21184:55;;445:41:1;;;21108:49:0;;31197:10;21184:55;;418:18:1;21184:55:0;;;;;;;20939:308;;:::o;22086:227::-;22277:28;22287:4;22293:2;22297:7;22277:9;:28::i;:::-;22086:227;;;;:::o;19141:339::-;19214:13;19245:16;19253:7;22715:13;;-1:-1:-1;22705:23:0;22568:168;19245:16;19240:59;;19270:29;;-1:-1:-1;;;19270:29:0;;;;;;;;;;;19240:59;19310:21;19334:8;19310:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19366:7;19360:21;19385:1;19360:26;:112;;;;;;;;;;;;;;;;;19424:7;19438:18;19448:7;19438:9;:18::i;:::-;19396:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19360:112;19353:119;19141:339;-1:-1:-1;;;19141:339:0:o;19488:134::-;19532:13;19600:12;19572:41;;;;;;;;:::i;:::-;;;;;;;;;;;;;19558:56;;19488:134;:::o;21318:164::-;-1:-1:-1;;;;;21439:25:0;;;21415:4;21439:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21318:164::o;16158:1129::-;16225:7;16260;16362:13;;16355:4;:20;16351:869;;;16400:14;16417:23;;;:17;:23;;;;;;;-1:-1:-1;;;16506:23:0;;:28;;16502:699;;17025:113;17032:6;17042:1;17032:11;17025:113;;-1:-1:-1;;;17103:6:0;17085:25;;;;:17;:25;;;;;;17025:113;;16502:699;16377:843;16351:869;17248:31;;-1:-1:-1;;;17248:31:0;;;;;;;;;;;27436:2636;27573:27;27603;27622:7;27603:18;:27::i;:::-;27573:57;;27688:4;-1:-1:-1;;;;;27647:45:0;27663:19;-1:-1:-1;;;;;27647:45:0;;27643:86;;27701:28;;-1:-1:-1;;;27701:28:0;;;;;;;;;;;27643:86;27742:23;27768:24;;;:15;:24;;;;;;-1:-1:-1;;;;;27768:24:0;;;;27742:23;27831:27;;31197:10;27831:27;;:91;;-1:-1:-1;27879:43:0;27896:4;31197:10;21318:164;:::i;27879:43::-;27831:150;;;-1:-1:-1;;;;;;27943:38:0;;31197:10;27943:38;27831:150;27805:177;;28000:17;27995:66;;28026:35;;-1:-1:-1;;;28026:35:0;;;;;;;;;;;27995:66;28230:15;28212:39;28208:103;;28275:24;;;;:15;:24;;;;;28268:31;;-1:-1:-1;;;;;;28268:31:0;;;28208:103;-1:-1:-1;;;;;28678:24:0;;;;;;;:18;:24;;;;;;;;28676:26;;-1:-1:-1;;28676:26:0;;;28747:22;;;;;;;;28745:24;;-1:-1:-1;28745:24:0;;;29040:26;;;:17;:26;;;;;-1:-1:-1;;;29128:15:0;11078:3;29128:41;29086:84;;:128;;29040:174;;;29334:46;;:51;;29330:626;;29438:1;29428:11;;29406:19;29561:30;;;:17;:30;;;;;;:35;;29557:384;;29699:13;;29684:11;:28;29680:242;;29846:30;;;;:17;:30;;;;;:52;;;29680:242;29387:569;29330:626;30003:7;29999:2;-1:-1:-1;;;;;29984:27:0;29993:4;-1:-1:-1;;;;;29984:27:0;;;;;;;;;;;30022:42;27560:2512;;;27436:2636;;;:::o;25588:1594::-;25676:13;;25722:2;25729:1;25704:26;25700:58;;25739:19;;-1:-1:-1;;;25739:19:0;;;;;;;;;;;25700:58;25773:8;25785:1;25773:13;25769:44;;25795:18;;-1:-1:-1;;;25795:18:0;;;;;;;;;;;25769:44;-1:-1:-1;;;;;26290:22:0;;;;;;:18;:22;;;;10561:2;26290:22;;;:70;;26328:31;26316:44;;26290:70;;;26603:31;;;:17;:31;;;;;26696:15;11078:3;26696:41;26654:84;;-1:-1:-1;26774:13:0;;11337:3;26759:56;26654:162;26603:213;;:31;26897:23;;;26937:111;26964:40;;26989:14;;;;;-1:-1:-1;;;;;26964:40:0;;;26981:1;;26964:40;;26981:1;;26964:40;27043:3;27028:12;:18;26937:111;;-1:-1:-1;27064:13:0;:28;21549:190;;;:::o;31321:1882::-;31792:4;31786:11;;31799:3;31782:21;;31873:17;;;;32545:11;;;32422:5;32679:2;32693;32683:13;;32675:22;32545:11;32662:36;32735:2;32725:13;;32319:661;32751:4;32319:661;;;32919:1;32914:3;32910:11;32903:18;;32963:2;32957:4;32953:13;32949:2;32945:22;32940:3;32932:36;32836:2;32826:13;;32319:661;;;-1:-1:-1;33003:13:0;;;-1:-1:-1;;33112:12:0;;;33166:19;;;33112:12;31321:1882;-1:-1:-1;31321:1882:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:250;582:1;592:113;606:6;603:1;600:13;592:113;;;682:11;;;676:18;663:11;;;656:39;628:2;621:10;592:113;;;-1:-1:-1;;739:1:1;721:16;;714:27;497:250::o;752:396::-;901:2;890:9;883:21;864:4;933:6;927:13;976:6;971:2;960:9;956:18;949:34;992:79;1064:6;1059:2;1048:9;1044:18;1039:2;1031:6;1027:15;992:79;:::i;:::-;1132:2;1111:15;-1:-1:-1;;1107:29:1;1092:45;;;;1139:2;1088:54;;752:396;-1:-1:-1;;752:396:1:o;1153:180::-;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;-1:-1:-1;1304:23:1;;1153:180;-1:-1:-1;1153:180:1:o;1546:173::-;1614:20;;-1:-1:-1;;;;;1663:31:1;;1653:42;;1643:70;;1709:1;1706;1699:12;1643:70;1546:173;;;:::o;1724:254::-;1792:6;1800;1853:2;1841:9;1832:7;1828:23;1824:32;1821:52;;;1869:1;1866;1859:12;1821:52;1892:29;1911:9;1892:29;:::i;:::-;1882:39;1968:2;1953:18;;;;1940:32;;-1:-1:-1;;;1724:254:1:o;2165:328::-;2242:6;2250;2258;2311:2;2299:9;2290:7;2286:23;2282:32;2279:52;;;2327:1;2324;2317:12;2279:52;2350:29;2369:9;2350:29;:::i;:::-;2340:39;;2398:38;2432:2;2421:9;2417:18;2398:38;:::i;:::-;2388:48;;2483:2;2472:9;2468:18;2455:32;2445:42;;2165:328;;;;;:::o;2498:186::-;2557:6;2610:2;2598:9;2589:7;2585:23;2581:32;2578:52;;;2626:1;2623;2616:12;2578:52;2649:29;2668:9;2649:29;:::i;2689:127::-;2750:10;2745:3;2741:20;2738:1;2731:31;2781:4;2778:1;2771:15;2805:4;2802:1;2795:15;2821:632;2886:5;2916:18;2957:2;2949:6;2946:14;2943:40;;;2963:18;;:::i;:::-;3038:2;3032:9;3006:2;3092:15;;-1:-1:-1;;3088:24:1;;;3114:2;3084:33;3080:42;3068:55;;;3138:18;;;3158:22;;;3135:46;3132:72;;;3184:18;;:::i;:::-;3224:10;3220:2;3213:22;3253:6;3244:15;;3283:6;3275;3268:22;3323:3;3314:6;3309:3;3305:16;3302:25;3299:45;;;3340:1;3337;3330:12;3299:45;3390:6;3385:3;3378:4;3370:6;3366:17;3353:44;3445:1;3438:4;3429:6;3421;3417:19;3413:30;3406:41;;;;2821:632;;;;;:::o;3458:222::-;3501:5;3554:3;3547:4;3539:6;3535:17;3531:27;3521:55;;3572:1;3569;3562:12;3521:55;3594:80;3670:3;3661:6;3648:20;3641:4;3633:6;3629:17;3594:80;:::i;3685:543::-;3773:6;3781;3834:2;3822:9;3813:7;3809:23;3805:32;3802:52;;;3850:1;3847;3840:12;3802:52;3890:9;3877:23;3919:18;3960:2;3952:6;3949:14;3946:34;;;3976:1;3973;3966:12;3946:34;3999:50;4041:7;4032:6;4021:9;4017:22;3999:50;:::i;:::-;3989:60;;4102:2;4091:9;4087:18;4074:32;4058:48;;4131:2;4121:8;4118:16;4115:36;;;4147:1;4144;4137:12;4115:36;;4170:52;4214:7;4203:8;4192:9;4188:24;4170:52;:::i;:::-;4160:62;;;3685:543;;;;;:::o;4233:347::-;4298:6;4306;4359:2;4347:9;4338:7;4334:23;4330:32;4327:52;;;4375:1;4372;4365:12;4327:52;4398:29;4417:9;4398:29;:::i;:::-;4388:39;;4477:2;4466:9;4462:18;4449:32;4524:5;4517:13;4510:21;4503:5;4500:32;4490:60;;4546:1;4543;4536:12;4490:60;4569:5;4559:15;;;4233:347;;;;;:::o;4585:667::-;4680:6;4688;4696;4704;4757:3;4745:9;4736:7;4732:23;4728:33;4725:53;;;4774:1;4771;4764:12;4725:53;4797:29;4816:9;4797:29;:::i;:::-;4787:39;;4845:38;4879:2;4868:9;4864:18;4845:38;:::i;:::-;4835:48;;4930:2;4919:9;4915:18;4902:32;4892:42;;4985:2;4974:9;4970:18;4957:32;5012:18;5004:6;5001:30;4998:50;;;5044:1;5041;5034:12;4998:50;5067:22;;5120:4;5112:13;;5108:27;-1:-1:-1;5098:55:1;;5149:1;5146;5139:12;5098:55;5172:74;5238:7;5233:2;5220:16;5215:2;5211;5207:11;5172:74;:::i;:::-;5162:84;;;4585:667;;;;;;;:::o;5257:260::-;5325:6;5333;5386:2;5374:9;5365:7;5361:23;5357:32;5354:52;;;5402:1;5399;5392:12;5354:52;5425:29;5444:9;5425:29;:::i;:::-;5415:39;;5473:38;5507:2;5496:9;5492:18;5473:38;:::i;:::-;5463:48;;5257:260;;;;;:::o;5522:127::-;5583:10;5578:3;5574:20;5571:1;5564:31;5614:4;5611:1;5604:15;5638:4;5635:1;5628:15;5654:128;5721:9;;;5742:11;;;5739:37;;;5756:18;;:::i;5787:125::-;5852:9;;;5873:10;;;5870:36;;;5886:18;;:::i;6598:380::-;6677:1;6673:12;;;;6720;;;6741:61;;6795:4;6787:6;6783:17;6773:27;;6741:61;6848:2;6840:6;6837:14;6817:18;6814:38;6811:161;;6894:10;6889:3;6885:20;6882:1;6875:31;6929:4;6926:1;6919:15;6957:4;6954:1;6947:15;6811:161;;6598:380;;;:::o;7109:545::-;7211:2;7206:3;7203:11;7200:448;;;7247:1;7272:5;7268:2;7261:17;7317:4;7313:2;7303:19;7387:2;7375:10;7371:19;7368:1;7364:27;7358:4;7354:38;7423:4;7411:10;7408:20;7405:47;;;-1:-1:-1;7446:4:1;7405:47;7501:2;7496:3;7492:12;7489:1;7485:20;7479:4;7475:31;7465:41;;7556:82;7574:2;7567:5;7564:13;7556:82;;;7619:17;;;7600:1;7589:13;7556:82;;7830:1352;7956:3;7950:10;7983:18;7975:6;7972:30;7969:56;;;8005:18;;:::i;:::-;8034:97;8124:6;8084:38;8116:4;8110:11;8084:38;:::i;:::-;8078:4;8034:97;:::i;:::-;8186:4;;8250:2;8239:14;;8267:1;8262:663;;;;8969:1;8986:6;8983:89;;;-1:-1:-1;9038:19:1;;;9032:26;8983:89;-1:-1:-1;;7787:1:1;7783:11;;;7779:24;7775:29;7765:40;7811:1;7807:11;;;7762:57;9085:81;;8232:944;;8262:663;7056:1;7049:14;;;7093:4;7080:18;;-1:-1:-1;;8298:20:1;;;8416:236;8430:7;8427:1;8424:14;8416:236;;;8519:19;;;8513:26;8498:42;;8611:27;;;;8579:1;8567:14;;;;8446:19;;8416:236;;;8420:3;8680:6;8671:7;8668:19;8665:201;;;8741:19;;;8735:26;-1:-1:-1;;8824:1:1;8820:14;;;8836:3;8816:24;8812:37;8808:42;8793:58;8778:74;;8665:201;-1:-1:-1;;;;;8912:1:1;8896:14;;;8892:22;8879:36;;-1:-1:-1;7830:1352:1:o;9522:168::-;9595:9;;;9626;;9643:15;;;9637:22;;9623:37;9613:71;;9664:18;;:::i;10036:935::-;-1:-1:-1;;;10543:3:1;10536:22;10518:3;10587:6;10581:13;10603:74;10670:6;10666:1;10661:3;10657:11;10650:4;10642:6;10638:17;10603:74;:::i;:::-;-1:-1:-1;;;10736:1:1;10696:16;;;10728:10;;;10721:23;10769:13;;10791:75;10769:13;10853:1;10845:10;;10838:4;10826:17;;10791:75;:::i;:::-;-1:-1:-1;;;10926:1:1;10885:17;;;;10918:10;;;10911:27;10962:2;10954:11;;10036:935;-1:-1:-1;;;;10036:935:1:o;10976:1030::-;-1:-1:-1;;;11230:3:1;11223:22;11205:3;11264:1;11285;11318:6;11312:13;11348:36;11374:9;11348:36;:::i;:::-;11403:1;11420:18;;;11447:151;;;;11612:1;11607:374;;;;11413:568;;11447:151;-1:-1:-1;;11489:24:1;;11475:12;;;11468:46;11566:14;;11559:22;11547:35;;11538:45;;11534:54;;;-1:-1:-1;11447:151:1;;11607:374;11638:6;11635:1;11628:17;11668:4;11713:2;11710:1;11700:16;11738:1;11752:174;11766:6;11763:1;11760:13;11752:174;;;11853:14;;11835:11;;;11831:20;;11824:44;11896:16;;;;11781:10;;11752:174;;;11756:3;;;11968:2;11959:6;11954:3;11950:16;11946:25;11939:32;;11413:568;-1:-1:-1;11997:3:1;;10976:1030;-1:-1:-1;;;;;;;10976:1030:1:o

Swarm Source

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