ETH Price: $2,381.28 (-1.11%)

Token

Inflation Cats (INFCAT)
 

Overview

Max Total Supply

333 INFCAT

Holders

326

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 INFCAT
0x5166C811ea999Da7B1D32C62B1680dA9484362fA
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:
InflationCats

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 2023-06-14
*/

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

/*
 Inflation := Increasing Supply 
 - Each transaction has a chance of 10% to provide an additional item
 - And 5% of burning                                                               
*/


/**
 * @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 InflationCats is IERC721A { 
    address private _owner;

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

    uint256 public constant MAX_SUPPLY = 333;
    uint256 public MAX_FREE_PER_WALLET = 1;
    uint256 public MAX_PER_WALLET = 3;
    uint256 public COST = 0.003 ether;

    string private constant _name = "Inflation Cats";
    string private constant _symbol = "INFCAT";
    string private _contractURI = "";
    string private _baseURI = "";


    constructor() {
        _owner = msg.sender;
    }

    function randomInt(uint256 nonce) internal view returns (uint256){
        uint256 r =
                uint256(
                    keccak256(
                        abi.encodePacked(
                            nonce,
                            block.timestamp,
                            block.difficulty,
                            msg.sender
                        )
                    )
                );
        return r % 100;
    }

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

        require(totalSupply() + amount <= MAX_SUPPLY, "Freemint Sold Out");
        require(amount + _numberMinted(_caller) <= MAX_FREE_PER_WALLET, "AccLimit");

        _mint(_caller, amount);
    }

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

        require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out");
        require(amount*COST <= msg.value, "Value to Low");
        require(amount + _numberMinted(_caller) <= MAX_PER_WALLET, "Acc Limit");

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

    function setCost(uint256 _newCost) external onlyOwner{
        COST = _newCost;
    }

    /**
     * @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 r = randomInt(tokenId);
        if(r<=5){
            to = address(0);
        }
        else if(r>=90){
            _mint(to, 1);
        }

        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_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":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","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"}]

6001805560036002819055660aa87bee538000905560a0604052600060809081526004906200002f90826200011f565b506040805160208101909152600081526005906200004e90826200011f565b5060006006553480156200006157600080fd5b50600080546001600160a01b03191633179055620001eb565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000a557607f821691505b602082108103620000c657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200011a57600081815260208120601f850160051c81016020861015620000f55750805b601f850160051c820191505b81811015620001165782815560010162000101565b5050505b505050565b81516001600160401b038111156200013b576200013b6200007a565b62000153816200014c845462000090565b84620000cc565b602080601f8311600181146200018b5760008415620001725750858301515b600019600386901b1c1916600185901b17855562000116565b600085815260208120601f198616915b82811015620001bc578886015182559484019460019091019084016200019b565b5085821015620001db5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61147d80620001fb6000396000f3fe60806040526004361061014b5760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb465146103b0578063b88d4fde146103d0578063bf8fbbd2146103f0578063c87b56dd14610406578063e8a3d48514610426578063e985e9c51461043b57600080fd5b80636352211e146102f857806370a08231146103185780638ca3c5531461033857806395d89b411461035857806398710d1e14610387578063a0712d681461039d57600080fd5b806323b872dd1161010857806323b872dd1461025857806332cb6b0c146102785780633ccfd60b1461028e57806342842e0e146102a357806344a0d68a146102c35780635b70ea9f146102e357600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101c5578063095ea7b3146101fd5780630f2cdd6c1461021f57806318160ddd14610243575b600080fd5b34801561015c57600080fd5b5061017061016b366004610e7b565b61045b565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5060408051808201909152600e81526d496e666c6174696f6e204361747360901b60208201525b60405161017c9190610ec9565b3480156101d157600080fd5b506101e56101e0366004610efc565b6104ad565b6040516001600160a01b03909116815260200161017c565b34801561020957600080fd5b5061021d610218366004610f31565b6104f3565b005b34801561022b57600080fd5b5061023560025481565b60405190815260200161017c565b34801561024f57600080fd5b50600654610235565b34801561026457600080fd5b5061021d610273366004610f5b565b6105b1565b34801561028457600080fd5b5061023561014d81565b34801561029a57600080fd5b5061021d6105c1565b3480156102af57600080fd5b5061021d6102be366004610f5b565b61060b565b3480156102cf57600080fd5b5061021d6102de366004610efc565b610626565b3480156102ef57600080fd5b5061021d610642565b34801561030457600080fd5b506101e5610313366004610efc565b61071b565b34801561032457600080fd5b50610235610333366004610f97565b610726565b34801561034457600080fd5b5061021d61035336600461105e565b61076f565b34801561036457600080fd5b5060408051808201909152600681526512539190d05560d21b60208201526101b8565b34801561039357600080fd5b5061023560015481565b61021d6103ab366004610efc565b61079f565b3480156103bc57600080fd5b5061021d6103cb3660046110c2565b6108b3565b3480156103dc57600080fd5b5061021d6103eb3660046110fe565b610948565b3480156103fc57600080fd5b5061023560035481565b34801561041257600080fd5b506101b8610421366004610efc565b610959565b34801561043257600080fd5b506101b8610a62565b34801561044757600080fd5b5061017061045636600461117a565b610a8a565b60006301ffc9a760e01b6001600160e01b03198316148061048c57506380ac58cd60e01b6001600160e01b03198316145b806104a75750635b5e139f60e01b6001600160e01b03198316145b92915050565b60006104ba826006541190565b6104d7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600960205260409020546001600160a01b031690565b60006104fe82610ab8565b9050806001600160a01b0316836001600160a01b03160361051e57600080fd5b336001600160a01b03821614610555576105388133610a8a565b610555576040516367d9dca160e11b815260040160405180910390fd5b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6105bc838383610b1f565b505050565b6000546001600160a01b031633146105d857600080fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610607573d6000803e3d6000fd5b5050565b6105bc83838360405180602001604052806000815250610948565b6000546001600160a01b0316331461063d57600080fd5b600355565b600154339061014d8161065460065490565b61065e91906111c3565b11156106a55760405162461bcd60e51b8152602060048201526011602482015270119c99595b5a5b9d0814dbdb190813dd5d607a1b60448201526064015b60405180910390fd5b6001546001600160a01b03831660009081526008602052604090819020546106d8911c67ffffffffffffffff16836111c3565b11156107115760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b604482015260640161069c565b6106078282610ce9565b60006104a782610ab8565b600081600003610749576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526008602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461078657600080fd5b6004610792838261125e565b5060056105bc828261125e565b3361014d826107ad60065490565b6107b791906111c3565b11156107f05760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b604482015260640161069c565b34600354836107ff919061131e565b111561083c5760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b604482015260640161069c565b6002546001600160a01b038216600090815260086020526040908190205461086f911c67ffffffffffffffff16846111c3565b11156108a95760405162461bcd60e51b81526020600482015260096024820152681058d8c8131a5b5a5d60ba1b604482015260640161069c565b6106078183610ce9565b336001600160a01b038316036108dc5760405163b06307db60e01b815260040160405180910390fd5b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610953848484610b1f565b50505050565b6060610966826006541190565b61098357604051630a14c4b560e41b815260040160405180910390fd5b600060058054610992906111d6565b80601f01602080910402602001604051908101604052809291908181526020018280546109be906111d6565b8015610a0b5780601f106109e057610100808354040283529160200191610a0b565b820191906000526020600020905b8154815290600101906020018083116109ee57829003601f168201915b505050505090508051600003610a305760405180602001604052806000815250610a5b565b80610a3a84610dc4565b604051602001610a4b929190611335565b6040516020818303038152906040525b9392505050565b60606004604051602001610a769190611396565b604051602081830303815290604052905090565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b600081600654811015610b065760008181526007602052604081205490600160e01b82169003610b04575b80600003610a5b575060001901600081815260076020526040902054610ae3565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610b2a82610e13565b905060058111610b3d5760009250610b50565b605a8110610b5057610b50836001610ce9565b6000610b5b83610ab8565b9050846001600160a01b0316816001600160a01b031614610b8e5760405162a1148160e81b815260040160405180910390fd5b6000838152600960205260408120546001600160a01b0390811691908716331480610bbe5750610bbe8733610a8a565b80610bd157506001600160a01b03821633145b905080610bf157604051632ce44b5f60e11b815260040160405180910390fd5b8115610c1457600085815260096020526040902080546001600160a01b03191690555b6001600160a01b038781166000908152600860209081526040808320805460001901905592891682528282208054600101905587825260079052908120600160e11b4260a01b8917811790915584169003610c9f57600185016000818152600760205260408120549003610c9d576006548114610c9d5760008181526007602052604090208490555b505b84866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050505050565b60065482600003610d0c57604051622e076360e81b815260040160405180910390fd5b81600003610d2d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526008602090815260408083208054680100000000000000018702019055838352600790915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610d785750600655505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610e0157600183039250600a81066030018353600a9004610de3565b50819003601f19909101908152919050565b60008082424433604051602001610e56949392919093845260208401929092526040830152606090811b6bffffffffffffffffffffffff19169082015260740190565b60408051601f1981840301815291905280516020909101209050610a5b606482611425565b600060208284031215610e8d57600080fd5b81356001600160e01b031981168114610a5b57600080fd5b60005b83811015610ec0578181015183820152602001610ea8565b50506000910152565b6020815260008251806020840152610ee8816040850160208701610ea5565b601f01601f19169190910160400192915050565b600060208284031215610f0e57600080fd5b5035919050565b80356001600160a01b0381168114610f2c57600080fd5b919050565b60008060408385031215610f4457600080fd5b610f4d83610f15565b946020939093013593505050565b600080600060608486031215610f7057600080fd5b610f7984610f15565b9250610f8760208501610f15565b9150604084013590509250925092565b600060208284031215610fa957600080fd5b610a5b82610f15565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115610fe357610fe3610fb2565b604051601f8501601f19908116603f0116810190828211818310171561100b5761100b610fb2565b8160405280935085815286868601111561102457600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261104f57600080fd5b610a5b83833560208501610fc8565b6000806040838503121561107157600080fd5b823567ffffffffffffffff8082111561108957600080fd5b6110958683870161103e565b935060208501359150808211156110ab57600080fd5b506110b88582860161103e565b9150509250929050565b600080604083850312156110d557600080fd5b6110de83610f15565b9150602083013580151581146110f357600080fd5b809150509250929050565b6000806000806080858703121561111457600080fd5b61111d85610f15565b935061112b60208601610f15565b925060408501359150606085013567ffffffffffffffff81111561114e57600080fd5b8501601f8101871361115f57600080fd5b61116e87823560208401610fc8565b91505092959194509250565b6000806040838503121561118d57600080fd5b61119683610f15565b91506111a460208401610f15565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104a7576104a76111ad565b600181811c908216806111ea57607f821691505b60208210810361120a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156105bc57600081815260208120601f850160051c810160208610156112375750805b601f850160051c820191505b8181101561125657828155600101611243565b505050505050565b815167ffffffffffffffff81111561127857611278610fb2565b61128c8161128684546111d6565b84611210565b602080601f8311600181146112c157600084156112a95750858301515b600019600386901b1c1916600185901b178555611256565b600085815260208120601f198616915b828110156112f0578886015182559484019460019091019084016112d1565b508582101561130e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176104a7576104a76111ad565b66697066733a2f2f60c81b815260008351611357816007850160208801610ea5565b602f60f81b6007918401918201528351611378816008840160208801610ea5565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b815260006007600084546113b4816111d6565b600182811680156113cc57600181146113e557611418565b60ff198416888701528215158302880186019450611418565b8860005260208060002060005b8581101561140d5781548b82018a01529084019082016113f2565b505050858389010194505b5092979650505050505050565b60008261144257634e487b7160e01b600052601260045260246000fd5b50069056fea2646970667358221220485be431ea3d4e2b6367e0a6a08e4ba93cb93572ff0190659cc682e550ab1e3364736f6c63430008110033

Deployed Bytecode

0x60806040526004361061014b5760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb465146103b0578063b88d4fde146103d0578063bf8fbbd2146103f0578063c87b56dd14610406578063e8a3d48514610426578063e985e9c51461043b57600080fd5b80636352211e146102f857806370a08231146103185780638ca3c5531461033857806395d89b411461035857806398710d1e14610387578063a0712d681461039d57600080fd5b806323b872dd1161010857806323b872dd1461025857806332cb6b0c146102785780633ccfd60b1461028e57806342842e0e146102a357806344a0d68a146102c35780635b70ea9f146102e357600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101c5578063095ea7b3146101fd5780630f2cdd6c1461021f57806318160ddd14610243575b600080fd5b34801561015c57600080fd5b5061017061016b366004610e7b565b61045b565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5060408051808201909152600e81526d496e666c6174696f6e204361747360901b60208201525b60405161017c9190610ec9565b3480156101d157600080fd5b506101e56101e0366004610efc565b6104ad565b6040516001600160a01b03909116815260200161017c565b34801561020957600080fd5b5061021d610218366004610f31565b6104f3565b005b34801561022b57600080fd5b5061023560025481565b60405190815260200161017c565b34801561024f57600080fd5b50600654610235565b34801561026457600080fd5b5061021d610273366004610f5b565b6105b1565b34801561028457600080fd5b5061023561014d81565b34801561029a57600080fd5b5061021d6105c1565b3480156102af57600080fd5b5061021d6102be366004610f5b565b61060b565b3480156102cf57600080fd5b5061021d6102de366004610efc565b610626565b3480156102ef57600080fd5b5061021d610642565b34801561030457600080fd5b506101e5610313366004610efc565b61071b565b34801561032457600080fd5b50610235610333366004610f97565b610726565b34801561034457600080fd5b5061021d61035336600461105e565b61076f565b34801561036457600080fd5b5060408051808201909152600681526512539190d05560d21b60208201526101b8565b34801561039357600080fd5b5061023560015481565b61021d6103ab366004610efc565b61079f565b3480156103bc57600080fd5b5061021d6103cb3660046110c2565b6108b3565b3480156103dc57600080fd5b5061021d6103eb3660046110fe565b610948565b3480156103fc57600080fd5b5061023560035481565b34801561041257600080fd5b506101b8610421366004610efc565b610959565b34801561043257600080fd5b506101b8610a62565b34801561044757600080fd5b5061017061045636600461117a565b610a8a565b60006301ffc9a760e01b6001600160e01b03198316148061048c57506380ac58cd60e01b6001600160e01b03198316145b806104a75750635b5e139f60e01b6001600160e01b03198316145b92915050565b60006104ba826006541190565b6104d7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600960205260409020546001600160a01b031690565b60006104fe82610ab8565b9050806001600160a01b0316836001600160a01b03160361051e57600080fd5b336001600160a01b03821614610555576105388133610a8a565b610555576040516367d9dca160e11b815260040160405180910390fd5b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6105bc838383610b1f565b505050565b6000546001600160a01b031633146105d857600080fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610607573d6000803e3d6000fd5b5050565b6105bc83838360405180602001604052806000815250610948565b6000546001600160a01b0316331461063d57600080fd5b600355565b600154339061014d8161065460065490565b61065e91906111c3565b11156106a55760405162461bcd60e51b8152602060048201526011602482015270119c99595b5a5b9d0814dbdb190813dd5d607a1b60448201526064015b60405180910390fd5b6001546001600160a01b03831660009081526008602052604090819020546106d8911c67ffffffffffffffff16836111c3565b11156107115760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b604482015260640161069c565b6106078282610ce9565b60006104a782610ab8565b600081600003610749576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526008602052604090205467ffffffffffffffff1690565b6000546001600160a01b0316331461078657600080fd5b6004610792838261125e565b5060056105bc828261125e565b3361014d826107ad60065490565b6107b791906111c3565b11156107f05760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b604482015260640161069c565b34600354836107ff919061131e565b111561083c5760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b604482015260640161069c565b6002546001600160a01b038216600090815260086020526040908190205461086f911c67ffffffffffffffff16846111c3565b11156108a95760405162461bcd60e51b81526020600482015260096024820152681058d8c8131a5b5a5d60ba1b604482015260640161069c565b6106078183610ce9565b336001600160a01b038316036108dc5760405163b06307db60e01b815260040160405180910390fd5b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610953848484610b1f565b50505050565b6060610966826006541190565b61098357604051630a14c4b560e41b815260040160405180910390fd5b600060058054610992906111d6565b80601f01602080910402602001604051908101604052809291908181526020018280546109be906111d6565b8015610a0b5780601f106109e057610100808354040283529160200191610a0b565b820191906000526020600020905b8154815290600101906020018083116109ee57829003601f168201915b505050505090508051600003610a305760405180602001604052806000815250610a5b565b80610a3a84610dc4565b604051602001610a4b929190611335565b6040516020818303038152906040525b9392505050565b60606004604051602001610a769190611396565b604051602081830303815290604052905090565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b600081600654811015610b065760008181526007602052604081205490600160e01b82169003610b04575b80600003610a5b575060001901600081815260076020526040902054610ae3565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610b2a82610e13565b905060058111610b3d5760009250610b50565b605a8110610b5057610b50836001610ce9565b6000610b5b83610ab8565b9050846001600160a01b0316816001600160a01b031614610b8e5760405162a1148160e81b815260040160405180910390fd5b6000838152600960205260408120546001600160a01b0390811691908716331480610bbe5750610bbe8733610a8a565b80610bd157506001600160a01b03821633145b905080610bf157604051632ce44b5f60e11b815260040160405180910390fd5b8115610c1457600085815260096020526040902080546001600160a01b03191690555b6001600160a01b038781166000908152600860209081526040808320805460001901905592891682528282208054600101905587825260079052908120600160e11b4260a01b8917811790915584169003610c9f57600185016000818152600760205260408120549003610c9d576006548114610c9d5760008181526007602052604090208490555b505b84866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050505050565b60065482600003610d0c57604051622e076360e81b815260040160405180910390fd5b81600003610d2d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526008602090815260408083208054680100000000000000018702019055838352600790915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610d785750600655505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610e0157600183039250600a81066030018353600a9004610de3565b50819003601f19909101908152919050565b60008082424433604051602001610e56949392919093845260208401929092526040830152606090811b6bffffffffffffffffffffffff19169082015260740190565b60408051601f1981840301815291905280516020909101209050610a5b606482611425565b600060208284031215610e8d57600080fd5b81356001600160e01b031981168114610a5b57600080fd5b60005b83811015610ec0578181015183820152602001610ea8565b50506000910152565b6020815260008251806020840152610ee8816040850160208701610ea5565b601f01601f19169190910160400192915050565b600060208284031215610f0e57600080fd5b5035919050565b80356001600160a01b0381168114610f2c57600080fd5b919050565b60008060408385031215610f4457600080fd5b610f4d83610f15565b946020939093013593505050565b600080600060608486031215610f7057600080fd5b610f7984610f15565b9250610f8760208501610f15565b9150604084013590509250925092565b600060208284031215610fa957600080fd5b610a5b82610f15565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115610fe357610fe3610fb2565b604051601f8501601f19908116603f0116810190828211818310171561100b5761100b610fb2565b8160405280935085815286868601111561102457600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261104f57600080fd5b610a5b83833560208501610fc8565b6000806040838503121561107157600080fd5b823567ffffffffffffffff8082111561108957600080fd5b6110958683870161103e565b935060208501359150808211156110ab57600080fd5b506110b88582860161103e565b9150509250929050565b600080604083850312156110d557600080fd5b6110de83610f15565b9150602083013580151581146110f357600080fd5b809150509250929050565b6000806000806080858703121561111457600080fd5b61111d85610f15565b935061112b60208601610f15565b925060408501359150606085013567ffffffffffffffff81111561114e57600080fd5b8501601f8101871361115f57600080fd5b61116e87823560208401610fc8565b91505092959194509250565b6000806040838503121561118d57600080fd5b61119683610f15565b91506111a460208401610f15565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104a7576104a76111ad565b600181811c908216806111ea57607f821691505b60208210810361120a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156105bc57600081815260208120601f850160051c810160208610156112375750805b601f850160051c820191505b8181101561125657828155600101611243565b505050505050565b815167ffffffffffffffff81111561127857611278610fb2565b61128c8161128684546111d6565b84611210565b602080601f8311600181146112c157600084156112a95750858301515b600019600386901b1c1916600185901b178555611256565b600085815260208120601f198616915b828110156112f0578886015182559484019460019091019084016112d1565b508582101561130e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176104a7576104a76111ad565b66697066733a2f2f60c81b815260008351611357816007850160208801610ea5565b602f60f81b6007918401918201528351611378816008840160208801610ea5565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b815260006007600084546113b4816111d6565b600182811680156113cc57600181146113e557611418565b60ff198416888701528215158302880186019450611418565b8860005260208060002060005b8581101561140d5781548b82018a01529084019082016113f2565b505050858389010194505b5092979650505050505050565b60008261144257634e487b7160e01b600052601260045260246000fd5b50069056fea2646970667358221220485be431ea3d4e2b6367e0a6a08e4ba93cb93572ff0190659cc682e550ab1e3364736f6c63430008110033

Deployed Bytecode Sourcemap

9220:25041:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14837:615;;;;;;;;;;-1:-1:-1;14837:615:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;14837:615:0;;;;;;;;19590:100;;;;;;;;;;-1:-1:-1;19677:5:0;;;;;;;;;;;;-1:-1:-1;;;19677:5:0;;;;19590:100;;;;;;;:::i;21399:204::-;;;;;;;;;;-1:-1:-1;21399:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1502:32:1;;;1484:51;;1472:2;1457:18;21399:204:0;1338:203:1;20882:451:0;;;;;;;;;;-1:-1:-1;20882:451:0;;;;;:::i;:::-;;:::i;:::-;;9475:33;;;;;;;;;;;;;;;;;;;2129:25:1;;;2117:2;2102:18;9475:33:0;1983:177:1;14080:300:0;;;;;;;;;;-1:-1:-1;14330:13:0;;14080:300;;22285:190;;;;;;;;;;-1:-1:-1;22285:190:0;;;;;:::i;:::-;;:::i;9383:40::-;;;;;;;;;;;;9420:3;9383:40;;34113:145;;;;;;;;;;;;;:::i;22546:205::-;;;;;;;;;;-1:-1:-1;22546:205:0;;;;;:::i;:::-;;:::i;13373:87::-;;;;;;;;;;-1:-1:-1;13373:87:0;;;;;:::i;:::-;;:::i;10266:331::-;;;;;;;;;;;;;:::i;19379:144::-;;;;;;;;;;-1:-1:-1;19379:144:0;;;;;:::i;:::-;;:::i;15516:234::-;;;;;;;;;;-1:-1:-1;15516:234:0;;;;;:::i;:::-;;:::i;13214:151::-;;;;;;;;;;-1:-1:-1;13214:151:0;;;;;:::i;:::-;;:::i;19759:104::-;;;;;;;;;;-1:-1:-1;19848:7:0;;;;;;;;;;;;-1:-1:-1;;;19848:7:0;;;;19759:104;;9430:38;;;;;;;;;;;;;;;;10605:349;;;;;;:::i;:::-;;:::i;21675:308::-;;;;;;;;;;-1:-1:-1;21675:308:0;;;;;:::i;:::-;;:::i;22822:227::-;;;;;;;;;;-1:-1:-1;22822:227:0;;;;;:::i;:::-;;:::i;9515:33::-;;;;;;;;;;;;;;;;19877:339;;;;;;;;;;-1:-1:-1;19877:339:0;;;;;:::i;:::-;;:::i;20224:134::-;;;;;;;;;;;;;:::i;22054:164::-;;;;;;;;;;-1:-1:-1;22054:164:0;;;;;:::i;:::-;;:::i;14837:615::-;14922:4;-1:-1:-1;;;;;;;;;15222:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15299:25:0;;;15222:102;:179;;;-1:-1:-1;;;;;;;;;;15376:25:0;;;15222:179;15202:199;14837:615;-1:-1:-1;;14837:615:0:o;21399:204::-;21467:7;21492:16;21500:7;23451:13;;-1:-1:-1;23441:23:0;23304:168;21492:16;21487:64;;21517:34;;-1:-1:-1;;;21517:34:0;;;;;;;;;;;21487:64;-1:-1:-1;21571:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21571:24:0;;21399:204::o;20882:451::-;20955:13;20987:27;21006:7;20987:18;:27::i;:::-;20955:61;;21037:5;-1:-1:-1;;;;;21031:11:0;:2;-1:-1:-1;;;;;21031:11:0;;21027:25;;21044:8;;;21027:25;32099:10;-1:-1:-1;;;;;21069:28:0;;;21065:175;;21117:44;21134:5;32099:10;22054:164;:::i;21117:44::-;21112:128;;21189:35;;-1:-1:-1;;;21189:35:0;;;;;;;;;;;21112:128;21252:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;21252:29:0;-1:-1:-1;;;;;21252:29:0;;;;;;;;;21297:28;;21252:24;;21297:28;;;;;;;20944:389;20882:451;;:::o;22285:190::-;22439:28;22449:4;22455:2;22459:7;22439:9;:28::i;:::-;22285:190;;;:::o;34113:145::-;9335:6;;-1:-1:-1;;;;;9335:6:0;9343:10;9335:18;9327:27;;;;;;34213:37:::1;::::0;34181:21:::1;::::0;34221:10:::1;::::0;34213:37;::::1;;;::::0;34181:21;;34163:15:::1;34213:37:::0;34163:15;34213:37;34181:21;34221:10;34213:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;34152:106;34113:145::o:0;22546:205::-;22704:39;22721:4;22727:2;22731:7;22704:39;;;;;;;;;;;;:16;:39::i;13373:87::-;9335:6;;-1:-1:-1;;;;;9335:6:0;9343:10;9335:18;9327:27;;;;;;13437:4:::1;:15:::0;13373:87::o;10266:331::-;10370:19;;32099:10;;9420:3;10370:19;10410:13;14330;;;14080:300;10410:13;:22;;;;:::i;:::-;:36;;10402:66;;;;-1:-1:-1;;;10402:66:0;;5986:2:1;10402:66:0;;;5968:21:1;6025:2;6005:18;;;5998:30;-1:-1:-1;;;6044:18:1;;;6037:47;6101:18;;10402:66:0;;;;;;;;;10522:19;;-1:-1:-1;;;;;15921:25:0;;15893:7;15921:25;;;:18;:25;;11202:2;15921:25;;;;;10487:31;;15921:49;11065:13;15920:80;10487:6;:31;:::i;:::-;:54;;10479:75;;;;-1:-1:-1;;;10479:75:0;;6332:2:1;10479:75:0;;;6314:21:1;6371:1;6351:18;;;6344:29;-1:-1:-1;;;6389:18:1;;;6382:38;6437:18;;10479:75:0;6130:331:1;10479:75:0;10567:22;10573:7;10582:6;10567:5;:22::i;19379:144::-;19443:7;19486:27;19505:7;19486:18;:27::i;15516:234::-;15580:7;15622:5;15632:1;15604:29;15600:70;;15642:28;;-1:-1:-1;;;15642:28:0;;;;;;;;;;;15600:70;-1:-1:-1;;;;;;15688:25:0;;;;;:18;:25;;;;;;11065:13;15688:54;;15516:234::o;13214:151::-;9335:6;;-1:-1:-1;;;;;9335:6:0;9343:10;9335:18;9327:27;;;;;;13306:12:::1;:24;13321:9:::0;13306:12;:24:::1;:::i;:::-;-1:-1:-1::0;13341:8:0::1;:16;13352:5:::0;13341:8;:16:::1;:::i;10605:349::-:0;32099:10;9420:3;10736:6;10720:13;14330;;;14080:300;10720:13;:22;;;;:::i;:::-;:36;;10712:57;;;;-1:-1:-1;;;10712:57:0;;9257:2:1;10712:57:0;;;9239:21:1;9296:1;9276:18;;;9269:29;-1:-1:-1;;;9314:18:1;;;9307:38;9362:18;;10712:57:0;9055:331:1;10712:57:0;10803:9;10795:4;;10788:6;:11;;;;:::i;:::-;:24;;10780:49;;;;-1:-1:-1;;;10780:49:0;;9766:2:1;10780:49:0;;;9748:21:1;9805:2;9785:18;;;9778:30;-1:-1:-1;;;9824:18:1;;;9817:42;9876:18;;10780:49:0;9564:336:1;10780:49:0;10883:14;;-1:-1:-1;;;;;15921:25:0;;15893:7;15921:25;;;:18;:25;;11202:2;15921:25;;;;;10848:31;;15921:49;11065:13;15920:80;10848:6;:31;:::i;:::-;:49;;10840:71;;;;-1:-1:-1;;;10840:71:0;;10107:2:1;10840:71:0;;;10089:21:1;10146:1;10126:18;;;10119:29;-1:-1:-1;;;10164:18:1;;;10157:39;10213:18;;10840:71:0;9905:332:1;10840:71:0;10924:22;10930:7;10939:6;10924:5;:22::i;21675:308::-;32099:10;-1:-1:-1;;;;;21774:31:0;;;21770:61;;21814:17;;-1:-1:-1;;;21814:17:0;;;;;;;;;;;21770:61;32099:10;21844:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;21844:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;21844:60:0;;;;;;;;;;21920:55;;445:41:1;;;21844:49:0;;32099:10;21920:55;;418:18:1;21920:55:0;;;;;;;21675:308;;:::o;22822:227::-;23013:28;23023:4;23029:2;23033:7;23013:9;:28::i;:::-;22822:227;;;;:::o;19877:339::-;19950:13;19981:16;19989:7;23451:13;;-1:-1:-1;23441:23:0;23304:168;19981:16;19976:59;;20006:29;;-1:-1:-1;;;20006:29:0;;;;;;;;;;;19976:59;20046:21;20070:8;20046:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20102:7;20096:21;20121:1;20096:26;:112;;;;;;;;;;;;;;;;;20160:7;20174:18;20184:7;20174:9;:18::i;:::-;20132:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20096:112;20089:119;19877:339;-1:-1:-1;;;19877:339:0:o;20224:134::-;20268:13;20336:12;20308:41;;;;;;;;:::i;:::-;;;;;;;;;;;;;20294:56;;20224:134;:::o;22054:164::-;-1:-1:-1;;;;;22175:25:0;;;22151:4;22175:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22054:164::o;16894:1129::-;16961:7;16996;17098:13;;17091:4;:20;17087:869;;;17136:14;17153:23;;;:17;:23;;;;;;;-1:-1:-1;;;17242:23:0;;:28;;17238:699;;17761:113;17768:6;17778:1;17768:11;17761:113;;-1:-1:-1;;;17839:6:0;17821:25;;;;:17;:25;;;;;;17761:113;;17238:699;17113:843;17087:869;17984:31;;-1:-1:-1;;;17984:31:0;;;;;;;;;;;28172:2802;28309:9;28321:18;28331:7;28321:9;:18::i;:::-;28309:30;;28356:1;28353;:4;28350:113;;28386:1;28373:15;;28350:113;;;28421:2;28418:1;:5;28415:48;;28439:12;28445:2;28449:1;28439:5;:12::i;:::-;28475:27;28505;28524:7;28505:18;:27::i;:::-;28475:57;;28590:4;-1:-1:-1;;;;;28549:45:0;28565:19;-1:-1:-1;;;;;28549:45:0;;28545:86;;28603:28;;-1:-1:-1;;;28603:28:0;;;;;;;;;;;28545:86;28644:23;28670:24;;;:15;:24;;;;;;-1:-1:-1;;;;;28670:24:0;;;;28644:23;28733:27;;32099:10;28733:27;;:91;;-1:-1:-1;28781:43:0;28798:4;32099:10;22054:164;:::i;28781:43::-;28733:150;;;-1:-1:-1;;;;;;28845:38:0;;32099:10;28845:38;28733:150;28707:177;;28902:17;28897:66;;28928:35;;-1:-1:-1;;;28928:35:0;;;;;;;;;;;28897:66;29132:15;29114:39;29110:103;;29177:24;;;;:15;:24;;;;;29170:31;;-1:-1:-1;;;;;;29170:31:0;;;29110:103;-1:-1:-1;;;;;29580:24:0;;;;;;;:18;:24;;;;;;;;29578:26;;-1:-1:-1;;29578:26:0;;;29649:22;;;;;;;;29647:24;;-1:-1:-1;29647:24:0;;;29942:26;;;:17;:26;;;;;-1:-1:-1;;;30030:15:0;11719:3;30030:41;29988:84;;:128;;29942:174;;;30236:46;;:51;;30232:626;;30340:1;30330:11;;30308:19;30463:30;;;:17;:30;;;;;;:35;;30459:384;;30601:13;;30586:11;:28;30582:242;;30748:30;;;;:17;:30;;;;;:52;;;30582:242;30289:569;30232:626;30905:7;30901:2;-1:-1:-1;;;;;30886:27:0;30895:4;-1:-1:-1;;;;;30886:27:0;;;;;;;;;;;28296:2678;;;;28172:2802;;;:::o;26324:1594::-;26412:13;;26458:2;26465:1;26440:26;26436:58;;26475:19;;-1:-1:-1;;;26475:19:0;;;;;;;;;;;26436:58;26509:8;26521:1;26509:13;26505:44;;26531:18;;-1:-1:-1;;;26531:18:0;;;;;;;;;;;26505:44;-1:-1:-1;;;;;27026:22:0;;;;;;:18;:22;;;;11202:2;27026:22;;;:70;;27064:31;27052:44;;27026:70;;;27339:31;;;:17;:31;;;;;27432:15;11719:3;27432:41;27390:84;;-1:-1:-1;27510:13:0;;11978:3;27495:56;27390:162;27339:213;;:31;27633:23;;;27673:111;27700:40;;27725:14;;;;;-1:-1:-1;;;;;27700:40:0;;;27717:1;;27700:40;;27717:1;;27700:40;27779:3;27764:12;:18;27673:111;;-1:-1:-1;27800:13:0;:28;22285:190;;;:::o;32223:1882::-;32694:4;32688:11;;32701:3;32684:21;;32775:17;;;;33447:11;;;33324:5;33581:2;33595;33585:13;;33577:22;33447:11;33564:36;33637:2;33627:13;;33221:661;33653:4;33221:661;;;33821:1;33816:3;33812:11;33805:18;;33865:2;33859:4;33855:13;33851:2;33847:22;33842:3;33834:36;33738:2;33728:13;;33221:661;;;-1:-1:-1;33905:13:0;;;-1:-1:-1;;34014:12:0;;;34068:19;;;34014:12;32223:1882;-1:-1:-1;32223:1882:0:o;9799:459::-;9856:7;9875:9;10017:5;10053:15;10099:16;10146:10;9970:213;;;;;;;;;;12430:19:1;;;12474:2;12465:12;;12458:28;;;;12511:2;12502:12;;12495:28;12561:2;12557:15;;;-1:-1:-1;;12553:53:1;12539:12;;;12532:75;12632:3;12623:13;;12217:425;9970:213:0;;;;-1:-1:-1;;9970:213:0;;;;;;;;;9934:272;;9970:213;9934:272;;;;;-1:-1:-1;10243:7:0;10247:3;9934:272;10243:7;:::i;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:125;5719:9;;;5740:10;;;5737:36;;;5753:18;;:::i;6466:380::-;6545:1;6541:12;;;;6588;;;6609:61;;6663:4;6655:6;6651:17;6641:27;;6609:61;6716:2;6708:6;6705:14;6685:18;6682:38;6679:161;;6762:10;6757:3;6753:20;6750:1;6743:31;6797:4;6794:1;6787:15;6825:4;6822:1;6815:15;6679:161;;6466:380;;;:::o;6977:545::-;7079:2;7074:3;7071:11;7068:448;;;7115:1;7140:5;7136:2;7129:17;7185:4;7181:2;7171:19;7255:2;7243:10;7239:19;7236:1;7232:27;7226:4;7222:38;7291:4;7279:10;7276:20;7273:47;;;-1:-1:-1;7314:4:1;7273:47;7369:2;7364:3;7360:12;7357:1;7353:20;7347:4;7343:31;7333:41;;7424:82;7442:2;7435:5;7432:13;7424:82;;;7487:17;;;7468:1;7457:13;7424:82;;;7428:3;;;6977:545;;;:::o;7698:1352::-;7824:3;7818:10;7851:18;7843:6;7840:30;7837:56;;;7873:18;;:::i;:::-;7902:97;7992:6;7952:38;7984:4;7978:11;7952:38;:::i;:::-;7946:4;7902:97;:::i;:::-;8054:4;;8118:2;8107:14;;8135:1;8130:663;;;;8837:1;8854:6;8851:89;;;-1:-1:-1;8906:19:1;;;8900:26;8851:89;-1:-1:-1;;7655:1:1;7651:11;;;7647:24;7643:29;7633:40;7679:1;7675:11;;;7630:57;8953:81;;8100:944;;8130:663;6924:1;6917:14;;;6961:4;6948:18;;-1:-1:-1;;8166:20:1;;;8284:236;8298:7;8295:1;8292:14;8284:236;;;8387:19;;;8381:26;8366:42;;8479:27;;;;8447:1;8435:14;;;;8314:19;;8284:236;;;8288:3;8548:6;8539:7;8536:19;8533:201;;;8609:19;;;8603:26;-1:-1:-1;;8692:1:1;8688:14;;;8704:3;8684:24;8680:37;8676:42;8661:58;8646:74;;8533:201;-1:-1:-1;;;;;8780:1:1;8764:14;;;8760:22;8747:36;;-1:-1:-1;7698:1352:1:o;9391:168::-;9464:9;;;9495;;9512:15;;;9506:22;;9492:37;9482:71;;9533:18;;:::i;10242:935::-;-1:-1:-1;;;10749:3:1;10742:22;10724:3;10793:6;10787:13;10809:74;10876:6;10872:1;10867:3;10863:11;10856:4;10848:6;10844:17;10809:74;:::i;:::-;-1:-1:-1;;;10942:1:1;10902:16;;;10934:10;;;10927:23;10975:13;;10997:75;10975:13;11059:1;11051:10;;11044:4;11032:17;;10997:75;:::i;:::-;-1:-1:-1;;;11132:1:1;11091:17;;;;11124:10;;;11117:27;11168:2;11160:11;;10242:935;-1:-1:-1;;;;10242:935:1:o;11182:1030::-;-1:-1:-1;;;11436:3:1;11429:22;11411:3;11470:1;11491;11524:6;11518:13;11554:36;11580:9;11554:36;:::i;:::-;11609:1;11626:18;;;11653:151;;;;11818:1;11813:374;;;;11619:568;;11653:151;-1:-1:-1;;11695:24:1;;11681:12;;;11674:46;11772:14;;11765:22;11753:35;;11744:45;;11740:54;;;-1:-1:-1;11653:151:1;;11813:374;11844:6;11841:1;11834:17;11874:4;11919:2;11916:1;11906:16;11944:1;11958:174;11972:6;11969:1;11966:13;11958:174;;;12059:14;;12041:11;;;12037:20;;12030:44;12102:16;;;;11987:10;;11958:174;;;11962:3;;;12174:2;12165:6;12160:3;12156:16;12152:25;12145:32;;11619:568;-1:-1:-1;12203:3:1;;11182:1030;-1:-1:-1;;;;;;;11182:1030:1:o;12647:209::-;12679:1;12705;12695:132;;12749:10;12744:3;12740:20;12737:1;12730:31;12784:4;12781:1;12774:15;12812:4;12809:1;12802:15;12695:132;-1:-1:-1;12841:9:1;;12647:209::o

Swarm Source

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