ETH Price: $3,401.59 (-1.25%)
Gas: 4 Gwei

Token

KUROSHIO (KUROSHIO)
 

Overview

Max Total Supply

303 KUROSHIO

Holders

36

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
thephotograbbear.eth
Balance
1 KUROSHIO
0x8c8b692ee84fc1370163151d53edf13529a296a5
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:
KUROSHIO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 5 : KUROSHIO.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721A.sol";

contract KUROSHIO is ERC721A, Ownable {

    constructor() ERC721A("KUROSHIO", "KUROSHIO") {}

    string private _uri;

    uint public maxSupply = 4444;
    bool public saleStatus = false;
    uint public price = 44 * 10**14;
    uint public maxFreePerTx = 1;
    uint public maxFreePerWallet = 1;
    uint public maxFreeMintCount = 2222;
    uint public freeMintCount = 0;

    bool public isOpenBox = false;
    
 
    // ---------------------------------------------------------------------------------------------
    // MAPPINGS
    // ---------------------------------------------------------------------------------------------

    mapping(address => uint) public freeMinted; 

    mapping(address => uint) public feeMinted; 
    // ---------------------------------------------------------------------------------------------
    // OWNER SETTERS
    // ---------------------------------------------------------------------------------------------

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

    function setMaxFreeMintCount(uint _count) external onlyOwner {
        maxFreeMintCount = _count;
    }

    function setSaleStatus() external onlyOwner {
        saleStatus = !saleStatus;
    }

    function setMaxSupply(uint supply) external onlyOwner {
        maxSupply = supply;
    }

    function setPrice(uint amount) external onlyOwner {
        price = amount;
    }

    function setMaxFreePerTx(uint amount) external onlyOwner {
        maxFreePerTx = amount;
    }
    
    function setMaxFreePerWallet(uint amount) external onlyOwner {
        maxFreePerWallet = amount;
    }
    
    function setBaseURI(string calldata uri_) external onlyOwner {
        _uri = uri_;
    }

    function openBox(string calldata uri_) external onlyOwner {
        _uri = uri_;
        isOpenBox = true;
    }

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

    function devMint(uint256 amount) external onlyOwner {
        require(amount > 0, "AMOUNT_ERROR!");
        require((_totalMinted() + amount) <= maxSupply, "NOT_ENOUGH_TOKENS");
        _safeMint(msg.sender, amount);
    }

    function airdrop(address[] calldata addrs, uint256 amount) external onlyOwner {
        require(amount > 0, "AMOUNT_ERROR!");
        require((_totalMinted() + amount * addrs.length) <= maxSupply, "NOT_ENOUGH_TOKENS");

        for (uint i = 0; i < addrs.length; i++) {
            _safeMint(addrs[i], amount);
        }
    }

    function mint(uint256 amount) external payable {
        require(amount > 0, "AMOUNT_ERROR!");
        require(saleStatus, "SALE_NOT_ACTIVE!");
        require(tx.origin == msg.sender, "NOT_ALLOW_CONTRACT_CALL!");
        require((_totalMinted() + amount) <= maxSupply, "NOT_ENOUGH_TOKENS!");
        if (freeMinted[msg.sender] + amount <= maxFreePerWallet && freeMintCount + amount <= maxFreeMintCount) {
            // free mint
            require(amount <= maxFreePerTx, "EXCEEDS_MAX_PER_TX!");
            freeMintCount += amount;
            _safeMint(msg.sender, amount);
            freeMinted[msg.sender] += amount;
        } else {
            require(amount * price <= msg.value, "NOT_ENOUGH_MONEY!");
            _safeMint(msg.sender, amount);
            feeMinted[msg.sender] += amount;
        }
    }

    function burn(uint256 tokenId) external {
        _burn(tokenId, true);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

File 2 of 5 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address approvedAddress = _tokenApprovals[tokenId];

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 5 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 4 of 5 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 5 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

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":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOpenBox","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"string","name":"uri_","type":"string"}],"name":"openBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxFreeMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleStatus","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261115c600a55600b805460ff19908116909155660fa1c6d5030000600c556001600d819055600e556108ae600f5560006010556011805490911690553480156200004d57600080fd5b506040805180820182526008808252674b55524f5348494f60c01b602080840182815285518087019096529285528401528151919291620000919160029162000111565b508051620000a790600390602084019062000111565b50506000805550620000b933620000bf565b620001f4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011f90620001b7565b90600052602060002090601f0160209004810192826200014357600085556200018e565b82601f106200015e57805160ff19168380011785556200018e565b828001600101855582156200018e579182015b828111156200018e57825182559160200191906001019062000171565b506200019c929150620001a0565b5090565b5b808211156200019c5760008155600101620001a1565b600181811c90821680620001cc57607f821691505b60208210811415620001ee57634e487b7160e01b600052602260045260246000fd5b50919050565b611d2580620002046000396000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb0114610685578063e55f58bb1461069b578063e985e9c5146106b1578063f2fde38b146106fa578063f9020e331461071a57600080fd5b8063b88d4fde146105d8578063c204642c146105f8578063c4d6c2e914610618578063c87b56dd14610638578063d01568aa1461065857600080fd5b8063a035b1fe116100f2578063a035b1fe1461055f578063a0712d6814610575578063a22cb46514610588578063a3bcc1d6146105a8578063a7027357146105c257600080fd5b8063715018a6146104e15780637dc949b2146104f65780638da5cb5b1461050c57806391b7f5ed1461052a57806395d89b411461054a57600080fd5b80633ccfd60b116101bc57806355f804b31161018057806355f804b3146104415780636352211e146104615780636d7c4a4b146104815780636f8b44b0146104a157806370a08231146104c157600080fd5b80633ccfd60b146103b757806340f070a8146103cc57806342842e0e146103ec57806342966c681461040c578063502b33af1461042c57600080fd5b8063185ce45411610203578063185ce4541461031457806323b872dd1461032a5780632752be3a1461034a578063375a069a1461036a578063389fcf061461038a57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806318160ddd146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611a47565b610734565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610786565b60405161026c9190611ba4565b3480156102a357600080fd5b506102b76102b2366004611af3565b610818565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea3660046119a2565b61085c565b005b3480156102fd57600080fd5b50600154600054035b60405190815260200161026c565b34801561032057600080fd5b50610306600f5481565b34801561033657600080fd5b506102ef61034536600461184e565b6108fc565b34801561035657600080fd5b506102ef610365366004611a81565b61090c565b34801561037657600080fd5b506102ef610385366004611af3565b610932565b34801561039657600080fd5b506103066103a5366004611800565b60126020526000908152604090205481565b3480156103c357600080fd5b506102ef6109c9565b3480156103d857600080fd5b506102ef6103e7366004611af3565b6109fd565b3480156103f857600080fd5b506102ef61040736600461184e565b610a0a565b34801561041857600080fd5b506102ef610427366004611af3565b610a25565b34801561043857600080fd5b506102ef610a30565b34801561044d57600080fd5b506102ef61045c366004611a81565b610a4c565b34801561046d57600080fd5b506102b761047c366004611af3565b610a60565b34801561048d57600080fd5b506102ef61049c366004611af3565b610a6b565b3480156104ad57600080fd5b506102ef6104bc366004611af3565b610a78565b3480156104cd57600080fd5b506103066104dc366004611800565b610a85565b3480156104ed57600080fd5b506102ef610acb565b34801561050257600080fd5b50610306600d5481565b34801561051857600080fd5b506008546001600160a01b03166102b7565b34801561053657600080fd5b506102ef610545366004611af3565b610adf565b34801561055657600080fd5b5061028a610aec565b34801561056b57600080fd5b50610306600c5481565b6102ef610583366004611af3565b610afb565b34801561059457600080fd5b506102ef6105a3366004611966565b610d5f565b3480156105b457600080fd5b506011546102609060ff1681565b3480156105ce57600080fd5b50610306600e5481565b3480156105e457600080fd5b506102ef6105f336600461188a565b610df5565b34801561060457600080fd5b506102ef6106133660046119cc565b610e3f565b34801561062457600080fd5b506102ef610633366004611af3565b610f10565b34801561064457600080fd5b5061028a610653366004611af3565b610f1d565b34801561066457600080fd5b50610306610673366004611800565b60136020526000908152604090205481565b34801561069157600080fd5b50610306600a5481565b3480156106a757600080fd5b5061030660105481565b3480156106bd57600080fd5b506102606106cc36600461181b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070657600080fd5b506102ef610715366004611800565b610fcc565b34801561072657600080fd5b50600b546102609060ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061076557506380ac58cd60e01b6001600160e01b03198316145b806107805750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461079590611c41565b80601f01602080910402602001604051908101604052809291908181526020018280546107c190611c41565b801561080e5780601f106107e35761010080835404028352916020019161080e565b820191906000526020600020905b8154815290600101906020018083116107f157829003601f168201915b5050505050905090565b600061082382611042565b610840576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061086782611069565b9050336001600160a01b038216146108a05761088381336106cc565b6108a0576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109078383836110ca565b505050565b61091461127a565b6109206009838361174b565b50506011805460ff1916600117905550565b61093a61127a565b600081116109635760405162461bcd60e51b815260040161095a90611bb7565b60405180910390fd5b600a548161097060005490565b61097a9190611bde565b11156109bc5760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f544f4b454e5360781b604482015260640161095a565b6109c633826112d4565b50565b6109d161127a565b60405133904780156108fc02916000818181858888f193505050501580156109c6573d6000803e3d6000fd5b610a0561127a565b600d55565b61090783838360405180602001604052806000815250610df5565b6109c68160016112f2565b610a3861127a565b600b805460ff19811660ff90911615179055565b610a5461127a565b6109076009838361174b565b600061078082611069565b610a7361127a565b600e55565b610a8061127a565b600a55565b600081610aa5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610ad361127a565b610add6000611465565b565b610ae761127a565b600c55565b60606003805461079590611c41565b60008111610b1b5760405162461bcd60e51b815260040161095a90611bb7565b600b5460ff16610b605760405162461bcd60e51b815260206004820152601060248201526f53414c455f4e4f545f4143544956452160801b604482015260640161095a565b323314610baf5760405162461bcd60e51b815260206004820152601860248201527f4e4f545f414c4c4f575f434f4e54524143545f43414c4c210000000000000000604482015260640161095a565b600a5481610bbc60005490565b610bc69190611bde565b1115610c095760405162461bcd60e51b81526020600482015260126024820152714e4f545f454e4f5547485f544f4b454e532160701b604482015260640161095a565b600e5433600090815260126020526040902054610c27908390611bde565b11158015610c445750600f5481601054610c419190611bde565b11155b15610cdd57600d54811115610c915760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b604482015260640161095a565b8060106000828254610ca39190611bde565b90915550610cb3905033826112d4565b3360009081526012602052604081208054839290610cd2908490611bde565b909155506109c69050565b34600c5482610cec9190611bf6565b1115610d2e5760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f4d4f4e45592160781b604482015260640161095a565b610d3833826112d4565b3360009081526013602052604081208054839290610d57908490611bde565b909155505050565b6001600160a01b038216331415610d895760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e008484846110ca565b6001600160a01b0383163b15610e3957610e1c848484846114b7565b610e39576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610e4761127a565b60008111610e675760405162461bcd60e51b815260040161095a90611bb7565b600a54610e748383611bf6565b600054610e819190611bde565b1115610ec35760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f544f4b454e5360781b604482015260640161095a565b60005b82811015610e3957610efe848483818110610ee357610ee3611cad565b9050602002016020810190610ef89190611800565b836112d4565b80610f0881611c7c565b915050610ec6565b610f1861127a565b600f55565b6060610f2882611042565b610f4557604051630a14c4b560e41b815260040160405180910390fd5b6000610f4f6115ae565b60115490915060ff16610f80578051610f775760405180602001604052806000815250610f79565b805b9392505050565b8051610f9b5760405180602001604052806000815250610f79565b80610fa5846115bd565b604051602001610fb6929190611b38565b6040516020818303038152906040529392505050565b610fd461127a565b6001600160a01b0381166110395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095a565b6109c681611465565b6000805482108015610780575050600090815260046020526040902054600160e01b161590565b6000816000548110156110b157600081815260046020526040902054600160e01b81166110af575b80610f79575060001901600081815260046020526040902054611091565b505b604051636f96cda160e11b815260040160405180910390fd5b60006110d582611069565b9050836001600160a01b0316816001600160a01b0316146111085760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480611138575061113886336106cc565b8061114b57506001600160a01b03821633145b90508061116b57604051632ce44b5f60e11b815260040160405180910390fd5b8461118957604051633a954ecd60e21b815260040160405180910390fd5b81156111ac57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b871781179091558316611231576001840160008181526004602052604090205461122f57600054811461122f5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b03163314610add5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b6112ee82826040518060200160405280600081525061160c565b5050565b60006112fd83611069565b60008481526006602052604090205490915081906001600160a01b03168315611373576000336001600160a01b038416148061133e575061133e83336106cc565b8061135157506001600160a01b03821633145b90508061137157604051632ce44b5f60e11b815260040160405180910390fd5b505b801561139657600085815260066020526040902080546001600160a01b03191690555b6001600160a01b038216600090815260056020908152604080832080546fffffffffffffffffffffffffffffffff01905587835260049091529020600360e01b4260a01b8417179055600160e11b831661141e576001850160008181526004602052604090205461141c57600054811461141c5760008181526004602052604090208490555b505b60405185906000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506001805481019055505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114ec903390899088908890600401611b67565b602060405180830381600087803b15801561150657600080fd5b505af1925050508015611536575060408051601f3d908101601f1916820190925261153391810190611a64565b60015b611591573d808015611564576040519150601f19603f3d011682016040523d82523d6000602084013e611569565b606091505b508051611589576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606009805461079590611c41565b604080516080810191829052607f0190826030600a8206018353600a90045b80156115fa57600183039250600a81066030018353600a90046115dc565b50819003601f19909101908152919050565b6116168383611679565b6001600160a01b0383163b15610907576000548281035b61164060008683806001019450866114b7565b61165d576040516368d2bf6b60e11b815260040160405180910390fd5b81811061162d57816000541461167257600080fd5b5050505050565b6000548261169957604051622e076360e81b815260040160405180910390fd5b816116b75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48281106116fe57500160005550565b82805461175790611c41565b90600052602060002090601f01602090048101928261177957600085556117bf565b82601f106117925782800160ff198235161785556117bf565b828001600101855582156117bf579182015b828111156117bf5782358255916020019190600101906117a4565b506117cb9291506117cf565b5090565b5b808211156117cb57600081556001016117d0565b80356001600160a01b03811681146117fb57600080fd5b919050565b60006020828403121561181257600080fd5b610f79826117e4565b6000806040838503121561182e57600080fd5b611837836117e4565b9150611845602084016117e4565b90509250929050565b60008060006060848603121561186357600080fd5b61186c846117e4565b925061187a602085016117e4565b9150604084013590509250925092565b600080600080608085870312156118a057600080fd5b6118a9856117e4565b93506118b7602086016117e4565b925060408501359150606085013567ffffffffffffffff808211156118db57600080fd5b818701915087601f8301126118ef57600080fd5b81358181111561190157611901611cc3565b604051601f8201601f19908116603f0116810190838211818310171561192957611929611cc3565b816040528281528a602084870101111561194257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561197957600080fd5b611982836117e4565b91506020830135801515811461199757600080fd5b809150509250929050565b600080604083850312156119b557600080fd5b6119be836117e4565b946020939093013593505050565b6000806000604084860312156119e157600080fd5b833567ffffffffffffffff808211156119f957600080fd5b818601915086601f830112611a0d57600080fd5b813581811115611a1c57600080fd5b8760208260051b8501011115611a3157600080fd5b6020928301989097509590910135949350505050565b600060208284031215611a5957600080fd5b8135610f7981611cd9565b600060208284031215611a7657600080fd5b8151610f7981611cd9565b60008060208385031215611a9457600080fd5b823567ffffffffffffffff80821115611aac57600080fd5b818501915085601f830112611ac057600080fd5b813581811115611acf57600080fd5b866020828501011115611ae157600080fd5b60209290920196919550909350505050565b600060208284031215611b0557600080fd5b5035919050565b60008151808452611b24816020860160208601611c15565b601f01601f19169290920160200192915050565b60008351611b4a818460208801611c15565b835190830190611b5e818360208801611c15565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b9a90830184611b0c565b9695505050505050565b602081526000610f796020830184611b0c565b6020808252600d908201526c414d4f554e545f4552524f522160981b604082015260600190565b60008219821115611bf157611bf1611c97565b500190565b6000816000190483118215151615611c1057611c10611c97565b500290565b60005b83811015611c30578181015183820152602001611c18565b83811115610e395750506000910152565b600181811c90821680611c5557607f821691505b60208210811415611c7657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c9057611c90611c97565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109c657600080fdfea26469706673582212201f3435c4ba84717271f13be514f1aafc6cd888795236035182dcf8fa1faf8e4364736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb0114610685578063e55f58bb1461069b578063e985e9c5146106b1578063f2fde38b146106fa578063f9020e331461071a57600080fd5b8063b88d4fde146105d8578063c204642c146105f8578063c4d6c2e914610618578063c87b56dd14610638578063d01568aa1461065857600080fd5b8063a035b1fe116100f2578063a035b1fe1461055f578063a0712d6814610575578063a22cb46514610588578063a3bcc1d6146105a8578063a7027357146105c257600080fd5b8063715018a6146104e15780637dc949b2146104f65780638da5cb5b1461050c57806391b7f5ed1461052a57806395d89b411461054a57600080fd5b80633ccfd60b116101bc57806355f804b31161018057806355f804b3146104415780636352211e146104615780636d7c4a4b146104815780636f8b44b0146104a157806370a08231146104c157600080fd5b80633ccfd60b146103b757806340f070a8146103cc57806342842e0e146103ec57806342966c681461040c578063502b33af1461042c57600080fd5b8063185ce45411610203578063185ce4541461031457806323b872dd1461032a5780632752be3a1461034a578063375a069a1461036a578063389fcf061461038a57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806318160ddd146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611a47565b610734565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610786565b60405161026c9190611ba4565b3480156102a357600080fd5b506102b76102b2366004611af3565b610818565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea3660046119a2565b61085c565b005b3480156102fd57600080fd5b50600154600054035b60405190815260200161026c565b34801561032057600080fd5b50610306600f5481565b34801561033657600080fd5b506102ef61034536600461184e565b6108fc565b34801561035657600080fd5b506102ef610365366004611a81565b61090c565b34801561037657600080fd5b506102ef610385366004611af3565b610932565b34801561039657600080fd5b506103066103a5366004611800565b60126020526000908152604090205481565b3480156103c357600080fd5b506102ef6109c9565b3480156103d857600080fd5b506102ef6103e7366004611af3565b6109fd565b3480156103f857600080fd5b506102ef61040736600461184e565b610a0a565b34801561041857600080fd5b506102ef610427366004611af3565b610a25565b34801561043857600080fd5b506102ef610a30565b34801561044d57600080fd5b506102ef61045c366004611a81565b610a4c565b34801561046d57600080fd5b506102b761047c366004611af3565b610a60565b34801561048d57600080fd5b506102ef61049c366004611af3565b610a6b565b3480156104ad57600080fd5b506102ef6104bc366004611af3565b610a78565b3480156104cd57600080fd5b506103066104dc366004611800565b610a85565b3480156104ed57600080fd5b506102ef610acb565b34801561050257600080fd5b50610306600d5481565b34801561051857600080fd5b506008546001600160a01b03166102b7565b34801561053657600080fd5b506102ef610545366004611af3565b610adf565b34801561055657600080fd5b5061028a610aec565b34801561056b57600080fd5b50610306600c5481565b6102ef610583366004611af3565b610afb565b34801561059457600080fd5b506102ef6105a3366004611966565b610d5f565b3480156105b457600080fd5b506011546102609060ff1681565b3480156105ce57600080fd5b50610306600e5481565b3480156105e457600080fd5b506102ef6105f336600461188a565b610df5565b34801561060457600080fd5b506102ef6106133660046119cc565b610e3f565b34801561062457600080fd5b506102ef610633366004611af3565b610f10565b34801561064457600080fd5b5061028a610653366004611af3565b610f1d565b34801561066457600080fd5b50610306610673366004611800565b60136020526000908152604090205481565b34801561069157600080fd5b50610306600a5481565b3480156106a757600080fd5b5061030660105481565b3480156106bd57600080fd5b506102606106cc36600461181b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070657600080fd5b506102ef610715366004611800565b610fcc565b34801561072657600080fd5b50600b546102609060ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061076557506380ac58cd60e01b6001600160e01b03198316145b806107805750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461079590611c41565b80601f01602080910402602001604051908101604052809291908181526020018280546107c190611c41565b801561080e5780601f106107e35761010080835404028352916020019161080e565b820191906000526020600020905b8154815290600101906020018083116107f157829003601f168201915b5050505050905090565b600061082382611042565b610840576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061086782611069565b9050336001600160a01b038216146108a05761088381336106cc565b6108a0576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109078383836110ca565b505050565b61091461127a565b6109206009838361174b565b50506011805460ff1916600117905550565b61093a61127a565b600081116109635760405162461bcd60e51b815260040161095a90611bb7565b60405180910390fd5b600a548161097060005490565b61097a9190611bde565b11156109bc5760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f544f4b454e5360781b604482015260640161095a565b6109c633826112d4565b50565b6109d161127a565b60405133904780156108fc02916000818181858888f193505050501580156109c6573d6000803e3d6000fd5b610a0561127a565b600d55565b61090783838360405180602001604052806000815250610df5565b6109c68160016112f2565b610a3861127a565b600b805460ff19811660ff90911615179055565b610a5461127a565b6109076009838361174b565b600061078082611069565b610a7361127a565b600e55565b610a8061127a565b600a55565b600081610aa5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610ad361127a565b610add6000611465565b565b610ae761127a565b600c55565b60606003805461079590611c41565b60008111610b1b5760405162461bcd60e51b815260040161095a90611bb7565b600b5460ff16610b605760405162461bcd60e51b815260206004820152601060248201526f53414c455f4e4f545f4143544956452160801b604482015260640161095a565b323314610baf5760405162461bcd60e51b815260206004820152601860248201527f4e4f545f414c4c4f575f434f4e54524143545f43414c4c210000000000000000604482015260640161095a565b600a5481610bbc60005490565b610bc69190611bde565b1115610c095760405162461bcd60e51b81526020600482015260126024820152714e4f545f454e4f5547485f544f4b454e532160701b604482015260640161095a565b600e5433600090815260126020526040902054610c27908390611bde565b11158015610c445750600f5481601054610c419190611bde565b11155b15610cdd57600d54811115610c915760405162461bcd60e51b8152602060048201526013602482015272455843454544535f4d41585f5045525f54582160681b604482015260640161095a565b8060106000828254610ca39190611bde565b90915550610cb3905033826112d4565b3360009081526012602052604081208054839290610cd2908490611bde565b909155506109c69050565b34600c5482610cec9190611bf6565b1115610d2e5760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f4d4f4e45592160781b604482015260640161095a565b610d3833826112d4565b3360009081526013602052604081208054839290610d57908490611bde565b909155505050565b6001600160a01b038216331415610d895760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e008484846110ca565b6001600160a01b0383163b15610e3957610e1c848484846114b7565b610e39576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610e4761127a565b60008111610e675760405162461bcd60e51b815260040161095a90611bb7565b600a54610e748383611bf6565b600054610e819190611bde565b1115610ec35760405162461bcd60e51b81526020600482015260116024820152704e4f545f454e4f5547485f544f4b454e5360781b604482015260640161095a565b60005b82811015610e3957610efe848483818110610ee357610ee3611cad565b9050602002016020810190610ef89190611800565b836112d4565b80610f0881611c7c565b915050610ec6565b610f1861127a565b600f55565b6060610f2882611042565b610f4557604051630a14c4b560e41b815260040160405180910390fd5b6000610f4f6115ae565b60115490915060ff16610f80578051610f775760405180602001604052806000815250610f79565b805b9392505050565b8051610f9b5760405180602001604052806000815250610f79565b80610fa5846115bd565b604051602001610fb6929190611b38565b6040516020818303038152906040529392505050565b610fd461127a565b6001600160a01b0381166110395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095a565b6109c681611465565b6000805482108015610780575050600090815260046020526040902054600160e01b161590565b6000816000548110156110b157600081815260046020526040902054600160e01b81166110af575b80610f79575060001901600081815260046020526040902054611091565b505b604051636f96cda160e11b815260040160405180910390fd5b60006110d582611069565b9050836001600160a01b0316816001600160a01b0316146111085760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480611138575061113886336106cc565b8061114b57506001600160a01b03821633145b90508061116b57604051632ce44b5f60e11b815260040160405180910390fd5b8461118957604051633a954ecd60e21b815260040160405180910390fd5b81156111ac57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b871781179091558316611231576001840160008181526004602052604090205461122f57600054811461122f5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b03163314610add5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161095a565b6112ee82826040518060200160405280600081525061160c565b5050565b60006112fd83611069565b60008481526006602052604090205490915081906001600160a01b03168315611373576000336001600160a01b038416148061133e575061133e83336106cc565b8061135157506001600160a01b03821633145b90508061137157604051632ce44b5f60e11b815260040160405180910390fd5b505b801561139657600085815260066020526040902080546001600160a01b03191690555b6001600160a01b038216600090815260056020908152604080832080546fffffffffffffffffffffffffffffffff01905587835260049091529020600360e01b4260a01b8417179055600160e11b831661141e576001850160008181526004602052604090205461141c57600054811461141c5760008181526004602052604090208490555b505b60405185906000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a450506001805481019055505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114ec903390899088908890600401611b67565b602060405180830381600087803b15801561150657600080fd5b505af1925050508015611536575060408051601f3d908101601f1916820190925261153391810190611a64565b60015b611591573d808015611564576040519150601f19603f3d011682016040523d82523d6000602084013e611569565b606091505b508051611589576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606009805461079590611c41565b604080516080810191829052607f0190826030600a8206018353600a90045b80156115fa57600183039250600a81066030018353600a90046115dc565b50819003601f19909101908152919050565b6116168383611679565b6001600160a01b0383163b15610907576000548281035b61164060008683806001019450866114b7565b61165d576040516368d2bf6b60e11b815260040160405180910390fd5b81811061162d57816000541461167257600080fd5b5050505050565b6000548261169957604051622e076360e81b815260040160405180910390fd5b816116b75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48281106116fe57500160005550565b82805461175790611c41565b90600052602060002090601f01602090048101928261177957600085556117bf565b82601f106117925782800160ff198235161785556117bf565b828001600101855582156117bf579182015b828111156117bf5782358255916020019190600101906117a4565b506117cb9291506117cf565b5090565b5b808211156117cb57600081556001016117d0565b80356001600160a01b03811681146117fb57600080fd5b919050565b60006020828403121561181257600080fd5b610f79826117e4565b6000806040838503121561182e57600080fd5b611837836117e4565b9150611845602084016117e4565b90509250929050565b60008060006060848603121561186357600080fd5b61186c846117e4565b925061187a602085016117e4565b9150604084013590509250925092565b600080600080608085870312156118a057600080fd5b6118a9856117e4565b93506118b7602086016117e4565b925060408501359150606085013567ffffffffffffffff808211156118db57600080fd5b818701915087601f8301126118ef57600080fd5b81358181111561190157611901611cc3565b604051601f8201601f19908116603f0116810190838211818310171561192957611929611cc3565b816040528281528a602084870101111561194257600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561197957600080fd5b611982836117e4565b91506020830135801515811461199757600080fd5b809150509250929050565b600080604083850312156119b557600080fd5b6119be836117e4565b946020939093013593505050565b6000806000604084860312156119e157600080fd5b833567ffffffffffffffff808211156119f957600080fd5b818601915086601f830112611a0d57600080fd5b813581811115611a1c57600080fd5b8760208260051b8501011115611a3157600080fd5b6020928301989097509590910135949350505050565b600060208284031215611a5957600080fd5b8135610f7981611cd9565b600060208284031215611a7657600080fd5b8151610f7981611cd9565b60008060208385031215611a9457600080fd5b823567ffffffffffffffff80821115611aac57600080fd5b818501915085601f830112611ac057600080fd5b813581811115611acf57600080fd5b866020828501011115611ae157600080fd5b60209290920196919550909350505050565b600060208284031215611b0557600080fd5b5035919050565b60008151808452611b24816020860160208601611c15565b601f01601f19169290920160200192915050565b60008351611b4a818460208801611c15565b835190830190611b5e818360208801611c15565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b9a90830184611b0c565b9695505050505050565b602081526000610f796020830184611b0c565b6020808252600d908201526c414d4f554e545f4552524f522160981b604082015260600190565b60008219821115611bf157611bf1611c97565b500190565b6000816000190483118215151615611c1057611c10611c97565b500290565b60005b83811015611c30578181015183820152602001611c18565b83811115610e395750506000910152565b600181811c90821680611c5557607f821691505b60208210811415611c7657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c9057611c90611c97565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109c657600080fdfea26469706673582212201f3435c4ba84717271f13be514f1aafc6cd888795236035182dcf8fa1faf8e4364736f6c63430008070033

Deployed Bytecode Sourcemap

136:3869:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4874:607:2;;;;;;;;;;-1:-1:-1;4874:607:2;;;;;:::i;:::-;;:::i;:::-;;;6318:14:5;;6311:22;6293:41;;6281:2;6266:18;4874:607:2;;;;;;;;9784:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11731:200::-;;;;;;;;;;-1:-1:-1;11731:200:2;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5616:32:5;;;5598:51;;5586:2;5571:18;11731:200:2;5452:203:5;11265:405:2;;;;;;;;;;-1:-1:-1;11265:405:2;;;;;:::i;:::-;;:::i;:::-;;3957:309;;;;;;;;;;-1:-1:-1;4219:12:2;;4010:7;4203:13;:28;3957:309;;;9910:25:5;;;9898:2;9883:18;3957:309:2;9764:177:5;440:35:4;;;;;;;;;;;;;;;;12591:164:2;;;;;;;;;;-1:-1:-1;12591:164:2;;;;;:::i;:::-;;:::i;1908:112:4:-;;;;;;;;;;-1:-1:-1;1908:112:4;;;;;:::i;:::-;;:::i;2127:222::-;;;;;;;;;;-1:-1:-1;2127:222:4;;;;;:::i;:::-;;:::i;778:42::-;;;;;;;;;;-1:-1:-1;778:42:4;;;;;:::i;:::-;;;;;;;;;;;;;;1100:107;;;;;;;;;;;;;:::i;1595:95::-;;;;;;;;;;-1:-1:-1;1595:95:4;;;;;:::i;:::-;;:::i;12821:179:2:-;;;;;;;;;;-1:-1:-1;12821:179:2;;;;;:::i;:::-;;:::i;3509:77:4:-;;;;;;;;;;-1:-1:-1;3509:77:4;;;;;:::i;:::-;;:::i;1322:85::-;;;;;;;;;;;;;:::i;1813:89::-;;;;;;;;;;-1:-1:-1;1813:89:4;;;;;:::i;:::-;;:::i;9580:142:2:-;;;;;;;;;;-1:-1:-1;9580:142:2;;;;;:::i;:::-;;:::i;1700:103:4:-;;;;;;;;;;-1:-1:-1;1700:103:4;;;;;:::i;:::-;;:::i;1413:89::-;;;;;;;;;;-1:-1:-1;1413:89:4;;;;;:::i;:::-;;:::i;5540:231:2:-;;;;;;;;;;-1:-1:-1;5540:231:2;;;;;:::i;:::-;;:::i;1831:101:0:-;;;;;;;;;;;;;:::i;368:28:4:-;;;;;;;;;;;;;;;;1201:85:0;;;;;;;;;;-1:-1:-1;1273:6:0;;-1:-1:-1;;;;;1273:6:0;1201:85;;1508:81:4;;;;;;;;;;-1:-1:-1;1508:81:4;;;;;:::i;:::-;;:::i;9946:102:2:-;;;;;;;;;;;;;:::i;331:31:4:-;;;;;;;;;;;;;;;;2687:816;;;;;;:::i;:::-;;:::i;11998:303:2:-;;;;;;;;;;-1:-1:-1;11998:303:2;;;;;:::i;:::-;;:::i;517:29:4:-;;;;;;;;;;-1:-1:-1;517:29:4;;;;;;;;402:32;;;;;;;;;;;;;;;;13066:385:2;;;;;;;;;;-1:-1:-1;13066:385:2;;;;;:::i;:::-;;:::i;2355:326:4:-;;;;;;;;;;-1:-1:-1;2355:326:4;;;;;:::i;:::-;;:::i;1213:103::-;;;;;;;;;;-1:-1:-1;1213:103:4;;;;;:::i;:::-;;:::i;3592:411::-;;;;;;;;;;-1:-1:-1;3592:411:4;;;;;:::i;:::-;;:::i;828:41::-;;;;;;;;;;-1:-1:-1;828:41:4;;;;;:::i;:::-;;;;;;;;;;;;;;261:28;;;;;;;;;;;;;;;;481:29;;;;;;;;;;;;;;;;12367:162:2;;;;;;;;;;-1:-1:-1;12367:162:2;;;;;:::i;:::-;-1:-1:-1;;;;;12487:25:2;;;12464:4;12487:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12367:162;2081:198:0;;;;;;;;;;-1:-1:-1;2081:198:0;;;;;:::i;:::-;;:::i;295:30:4:-;;;;;;;;;;-1:-1:-1;295:30:4;;;;;;;;4874:607:2;4959:4;-1:-1:-1;;;;;;;;;5254:25:2;;;;:101;;-1:-1:-1;;;;;;;;;;5330:25:2;;;5254:101;:177;;;-1:-1:-1;;;;;;;;;;5406:25:2;;;5254:177;5235:196;4874:607;-1:-1:-1;;4874:607:2:o;9784:98::-;9838:13;9870:5;9863:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9784:98;:::o;11731:200::-;11799:7;11823:16;11831:7;11823;:16::i;:::-;11818:64;;11848:34;;-1:-1:-1;;;11848:34:2;;;;;;;;;;;11818:64;-1:-1:-1;11900:24:2;;;;:15;:24;;;;;;-1:-1:-1;;;;;11900:24:2;;11731:200::o;11265:405::-;11337:13;11369:27;11388:7;11369:18;:27::i;:::-;11337:61;-1:-1:-1;26127:10:2;-1:-1:-1;;;;;11413:28:2;;;11409:172;;11460:44;11477:5;26127:10;12367:162;:::i;11460:44::-;11455:126;;11531:35;;-1:-1:-1;;;11531:35:2;;;;;;;;;;;11455:126;11591:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11591:29:2;-1:-1:-1;;;;;11591:29:2;;;;;;;;;11635:28;;11591:24;;11635:28;;;;;;;11327:343;11265:405;;:::o;12591:164::-;12720:28;12730:4;12736:2;12740:7;12720:9;:28::i;:::-;12591:164;;;:::o;1908:112:4:-;1094:13:0;:11;:13::i;:::-;1976:11:4::1;:4;1983::::0;;1976:11:::1;:::i;:::-;-1:-1:-1::0;;1997:9:4::1;:16:::0;;-1:-1:-1;;1997:16:4::1;2009:4;1997:16;::::0;;-1:-1:-1;1908:112:4:o;2127:222::-;1094:13:0;:11;:13::i;:::-;2206:1:4::1;2197:6;:10;2189:36;;;;-1:-1:-1::0;;;2189:36:4::1;;;;;;;:::i;:::-;;;;;;;;;2272:9;;2261:6;2244:14;4406:7:2::0;4590:13;;4359:279;2244:14:4::1;:23;;;;:::i;:::-;2243:38;;2235:68;;;::::0;-1:-1:-1;;;2235:68:4;;8574:2:5;2235:68:4::1;::::0;::::1;8556:21:5::0;8613:2;8593:18;;;8586:30;-1:-1:-1;;;8632:18:5;;;8625:47;8689:18;;2235:68:4::1;8372:341:5::0;2235:68:4::1;2313:29;2323:10;2335:6;2313:9;:29::i;:::-;2127:222:::0;:::o;1100:107::-;1094:13:0;:11;:13::i;:::-;1149:51:4::1;::::0;1157:10:::1;::::0;1178:21:::1;1149:51:::0;::::1;;;::::0;::::1;::::0;;;1178:21;1157:10;1149:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;1595:95:::0;1094:13:0;:11;:13::i;:::-;1662:12:4::1;:21:::0;1595:95::o;12821:179:2:-;12954:39;12971:4;12977:2;12981:7;12954:39;;;;;;;;;;;;:16;:39::i;3509:77:4:-;3559:20;3565:7;3574:4;3559:5;:20::i;1322:85::-;1094:13:0;:11;:13::i;:::-;1390:10:4::1;::::0;;-1:-1:-1;;1376:24:4;::::1;1390:10;::::0;;::::1;1389:11;1376:24;::::0;;1322:85::o;1813:89::-;1094:13:0;:11;:13::i;:::-;1884:11:4::1;:4;1891::::0;;1884:11:::1;:::i;9580:142:2:-:0;9644:7;9686:27;9705:7;9686:18;:27::i;1700:103:4:-;1094:13:0;:11;:13::i;:::-;1771:16:4::1;:25:::0;1700:103::o;1413:89::-;1094:13:0;:11;:13::i;:::-;1477:9:4::1;:18:::0;1413:89::o;5540:231:2:-;5604:7;5645:5;5623:70;;5665:28;;-1:-1:-1;;;5665:28:2;;;;;;;;;;;5623:70;-1:-1:-1;;;;;;5710:25:2;;;;;:18;:25;;;;;;1017:13;5710:54;;5540:231::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;1508:81:4:-;1094:13:0;:11;:13::i;:::-;1568:5:4::1;:14:::0;1508:81::o;9946:102:2:-;10002:13;10034:7;10027:14;;;;;:::i;2687:816:4:-;2761:1;2752:6;:10;2744:36;;;;-1:-1:-1;;;2744:36:4;;;;;;;:::i;:::-;2798:10;;;;2790:39;;;;-1:-1:-1;;;2790:39:4;;6771:2:5;2790:39:4;;;6753:21:5;6810:2;6790:18;;;6783:30;-1:-1:-1;;;6829:18:5;;;6822:46;6885:18;;2790:39:4;6569:340:5;2790:39:4;2847:9;2860:10;2847:23;2839:60;;;;-1:-1:-1;;;2839:60:4;;9613:2:5;2839:60:4;;;9595:21:5;9652:2;9632:18;;;9625:30;9691:26;9671:18;;;9664:54;9735:18;;2839:60:4;9411:348:5;2839:60:4;2946:9;;2935:6;2918:14;4406:7:2;4590:13;;4359:279;2918:14:4;:23;;;;:::i;:::-;2917:38;;2909:69;;;;-1:-1:-1;;;2909:69:4;;8920:2:5;2909:69:4;;;8902:21:5;8959:2;8939:18;;;8932:30;-1:-1:-1;;;8978:18:5;;;8971:48;9036:18;;2909:69:4;8718:342:5;2909:69:4;3027:16;;3003:10;2992:22;;;;:10;:22;;;;;;:31;;3017:6;;2992:31;:::i;:::-;:51;;:97;;;;;3073:16;;3063:6;3047:13;;:22;;;;:::i;:::-;:42;;2992:97;2988:509;;;3148:12;;3138:6;:22;;3130:54;;;;-1:-1:-1;;;3130:54:4;;7523:2:5;3130:54:4;;;7505:21:5;7562:2;7542:18;;;7535:30;-1:-1:-1;;;7581:18:5;;;7574:49;7640:18;;3130:54:4;7321:343:5;3130:54:4;3215:6;3198:13;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;3235:29:4;;-1:-1:-1;3245:10:4;3257:6;3235:9;:29::i;:::-;3289:10;3278:22;;;;:10;:22;;;;;:32;;3304:6;;3278:22;:32;;3304:6;;3278:32;:::i;:::-;;;;-1:-1:-1;2988:509:4;;-1:-1:-1;2988:509:4;;3367:9;3358:5;;3349:6;:14;;;;:::i;:::-;:27;;3341:57;;;;-1:-1:-1;;;3341:57:4;;9267:2:5;3341:57:4;;;9249:21:5;9306:2;9286:18;;;9279:30;-1:-1:-1;;;9325:18:5;;;9318:47;9382:18;;3341:57:4;9065:341:5;3341:57:4;3412:29;3422:10;3434:6;3412:9;:29::i;:::-;3465:10;3455:21;;;;:9;:21;;;;;:31;;3480:6;;3455:21;:31;;3480:6;;3455:31;:::i;:::-;;;;-1:-1:-1;;2687:816:4;:::o;11998:303:2:-;-1:-1:-1;;;;;12096:31:2;;26127:10;12096:31;12092:61;;;12136:17;;-1:-1:-1;;;12136:17:2;;;;;;;;;;;12092:61;26127:10;12164:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12164:49:2;;;;;;;;;;;;:60;;-1:-1:-1;;12164:60:2;;;;;;;;;;12239:55;;6293:41:5;;;12164:49:2;;26127:10;12239:55;;6266:18:5;12239:55:2;;;;;;;11998:303;;:::o;13066:385::-;13227:28;13237:4;13243:2;13247:7;13227:9;:28::i;:::-;-1:-1:-1;;;;;13269:14:2;;;:19;13265:180;;13307:56;13338:4;13344:2;13348:7;13357:5;13307:30;:56::i;:::-;13302:143;;13390:40;;-1:-1:-1;;;13390:40:2;;;;;;;;;;;13302:143;13066:385;;;;:::o;2355:326:4:-;1094:13:0;:11;:13::i;:::-;2460:1:4::1;2451:6;:10;2443:36;;;;-1:-1:-1::0;;;2443:36:4::1;;;;;;;:::i;:::-;2541:9;::::0;2515:21:::1;2524:5:::0;2515:6;:21:::1;:::i;:::-;4406:7:2::0;4590:13;2498:38:4::1;;;;:::i;:::-;2497:53;;2489:83;;;::::0;-1:-1:-1;;;2489:83:4;;8574:2:5;2489:83:4::1;::::0;::::1;8556:21:5::0;8613:2;8593:18;;;8586:30;-1:-1:-1;;;8632:18:5;;;8625:47;8689:18;;2489:83:4::1;8372:341:5::0;2489:83:4::1;2588:6;2583:92;2600:16:::0;;::::1;2583:92;;;2637:27;2647:5;;2653:1;2647:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;2657:6;2637:9;:27::i;:::-;2618:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2583:92;;1213:103:::0;1094:13:0;:11;:13::i;:::-;1284:16:4::1;:25:::0;1213:103::o;3592:411::-;3665:13;3695:16;3703:7;3695;:16::i;:::-;3690:59;;3720:29;;-1:-1:-1;;;3720:29:4;;;;;;;;;;;3690:59;3760:21;3784:10;:8;:10::i;:::-;3809:9;;3760:34;;-1:-1:-1;3809:9:4;;3804:89;;3841:21;;:41;;;;;;;;;;;;;;;;;3870:7;3841:41;3834:48;3592:411;-1:-1:-1;;;3592:411:4:o;3804:89::-;3909:21;;:87;;;;;;;;;;;;;;;;;3962:7;3971:18;3981:7;3971:9;:18::i;:::-;3945:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3902:94;3592:411;-1:-1:-1;;;3592:411:4:o;2081:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:0;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:0;;7116:2:5;2161:73:0::1;::::0;::::1;7098:21:5::0;7155:2;7135:18;;;7128:30;7194:34;7174:18;;;7167:62;-1:-1:-1;;;7245:18:5;;;7238:36;7291:19;;2161:73:0::1;6914:402:5::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;13697:268:2:-:0;13754:4;13841:13;;13831:7;:23;13789:150;;;;-1:-1:-1;;13891:26:2;;;;:17;:26;;;;;;-1:-1:-1;;;13891:43:2;:48;;13697:268::o;7157:1105::-;7224:7;7258;7356:13;;7349:4;:20;7345:853;;;7393:14;7410:23;;;:17;:23;;;;;;-1:-1:-1;;;7497:23:2;;7493:687;;8008:111;8015:11;8008:111;;-1:-1:-1;;;8085:6:2;8067:25;;;;:17;:25;;;;;;8008:111;;7493:687;7371:827;7345:853;8224:31;;-1:-1:-1;;;8224:31:2;;;;;;;;;;;17258:2595;17368:27;17398;17417:7;17398:18;:27::i;:::-;17368:57;;17481:4;-1:-1:-1;;;;;17440:45:2;17456:19;-1:-1:-1;;;;;17440:45:2;;17436:86;;17494:28;;-1:-1:-1;;;17494:28:2;;;;;;;;;;;17436:86;17533:23;17559:24;;;:15;:24;;;;;;-1:-1:-1;;;;;17559:24:2;;;;17533:23;17620:27;;26127:10;17620:27;;:86;;-1:-1:-1;17663:43:2;17680:4;26127:10;12367:162;:::i;17663:43::-;17620:140;;;-1:-1:-1;;;;;;17722:38:2;;26127:10;17722:38;17620:140;17594:167;;17777:17;17772:66;;17803:35;;-1:-1:-1;;;17803:35:2;;;;;;;;;;;17772:66;17870:2;17848:62;;17887:23;;-1:-1:-1;;;17887:23:2;;;;;;;;;;;17848:62;18049:15;18031:39;18027:101;;18093:24;;;;:15;:24;;;;;18086:31;;-1:-1:-1;;;;;;18086:31:2;;;18027:101;-1:-1:-1;;;;;18488:24:2;;;;;;;:18;:24;;;;;;;;18486:26;;-1:-1:-1;;18486:26:2;;;18556:22;;;;;;;;18554:24;;-1:-1:-1;18554:24:2;;;18842:26;;;:17;:26;;;-1:-1:-1;;;18928:15:2;1656:3;18928:41;18887:83;;:126;;18842:171;;;19130:46;;19126:616;;19233:1;19223:11;;19201:19;19354:30;;;:17;:30;;;;;;19350:378;;19490:13;;19475:11;:28;19471:239;;19635:30;;;;:17;:30;;;;;:52;;;19471:239;19183:559;19126:616;19786:7;19782:2;-1:-1:-1;;;;;19767:27:2;19776:4;-1:-1:-1;;;;;19767:27:2;;;;;;;;;;;17358:2495;;;17258:2595;;;:::o;1359:130:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;26127:10:2;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;8213:2:5;1414:68:0;;;8195:21:5;;;8232:18;;;8225:30;8291:34;8271:18;;;8264:62;8343:18;;1414:68:0;8011:356:5;14044:102:2;14112:27;14122:2;14126:8;14112:27;;;;;;;;;;;;:9;:27::i;:::-;14044:102;;:::o;20230:2870::-;20309:27;20339;20358:7;20339:18;:27::i;:::-;20377:12;20465:24;;;:15;:24;;;;;;20309:57;;-1:-1:-1;20309:57:2;;-1:-1:-1;;;;;20465:24:2;20500:300;;;;20533:22;26127:10;-1:-1:-1;;;;;20559:27:2;;;;:90;;-1:-1:-1;20606:43:2;20623:4;26127:10;12367:162;:::i;20606:43::-;20559:148;;;-1:-1:-1;;;;;;20669:38:2;;26127:10;20669:38;20559:148;20533:175;;20728:17;20723:66;;20754:35;;-1:-1:-1;;;20754:35:2;;;;;;;;;;;20723:66;20519:281;20500:300;20946:15;20928:39;20924:101;;20990:24;;;;:15;:24;;;;;20983:31;;-1:-1:-1;;;;;;20983:31:2;;;20924:101;-1:-1:-1;;;;;21601:24:2;;;;;;:18;:24;;;;;;;;:59;;21629:31;21601:59;;;21891:26;;;:17;:26;;;;;-1:-1:-1;;;21979:15:2;1656:3;21979:41;21936:85;;:161;21891:206;;-1:-1:-1;;;22214:46:2;;22210:616;;22317:1;22307:11;;22285:19;22438:30;;;:17;:30;;;;;;22434:378;;22574:13;;22559:11;:28;22555:239;;22719:30;;;;:17;:30;;;;;:52;;;22555:239;22267:559;22210:616;22851:35;;22878:7;;22874:1;;-1:-1:-1;;;;;22851:35:2;;;;;22874:1;;22851:35;-1:-1:-1;;23069:12:2;:14;;;;;;-1:-1:-1;;;20230:2870:2:o;2433:187:0:-;2525:6;;;-1:-1:-1;;;;;2541:17:0;;;-1:-1:-1;;;;;;2541:17:0;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;23581:697:2:-;23759:88;;-1:-1:-1;;;23759:88:2;;23739:4;;-1:-1:-1;;;;;23759:45:2;;;;;:88;;26127:10;;23826:4;;23832:7;;23841:5;;23759:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23759:88:2;;;;;;;;-1:-1:-1;;23759:88:2;;;;;;;;;;;;:::i;:::-;;;23755:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24037:13:2;;24033:229;;24082:40;;-1:-1:-1;;;24082:40:2;;;;;;;;;;;24033:229;24222:6;24216:13;24207:6;24203:2;24199:15;24192:38;23755:517;-1:-1:-1;;;;;;23915:64:2;-1:-1:-1;;;23915:64:2;;-1:-1:-1;23581:697:2;;;;;;:::o;2026:95:4:-;2078:13;2110:4;2103:11;;;;;:::i;26245:1920:2:-;26708:4;26702:11;;26715:3;26698:21;;26791:17;;;;27474:11;;;27355:5;27604:2;27618;27608:13;;27600:22;27474:11;27587:36;27658:2;27648:13;;27249:682;27676:4;27249:682;;;27862:1;27857:3;27853:11;27846:18;;27912:2;27906:4;27902:13;27898:2;27894:22;27889:3;27881:36;27769:2;27759:13;;27249:682;;;-1:-1:-1;27959:13:2;;;-1:-1:-1;;28072:12:2;;;28130:19;;;28072:12;26245:1920;-1:-1:-1;26245:1920:2:o;14520:661::-;14638:19;14644:2;14648:8;14638:5;:19::i;:::-;-1:-1:-1;;;;;14696:14:2;;;:19;14692:473;;14735:11;14749:13;14796:14;;;14828:229;14858:62;14897:1;14901:2;14905:7;;;;;;14914:5;14858:30;:62::i;:::-;14853:165;;14955:40;;-1:-1:-1;;;14955:40:2;;;;;;;;;;;14853:165;15052:3;15044:5;:11;14828:229;;15137:3;15120:13;;:20;15116:34;;15142:8;;;15116:34;14717:448;;14520:661;;;:::o;15442:1574::-;15506:20;15529:13;15574:2;15552:58;;15591:19;;-1:-1:-1;;;15591:19:2;;;;;;;;;;;15552:58;15624:13;15620:44;;15646:18;;-1:-1:-1;;;15646:18:2;;;;;;;;;;;15620:44;-1:-1:-1;;;;;16200:22:2;;;;;;:18;:22;;;;1151:2;16200:22;;;:70;;16238:31;16226:44;;16200:70;;;16506:31;;;:17;:31;;;;;16597:15;1656:3;16597:41;16556:83;;-1:-1:-1;16674:13:2;;1909:3;16659:56;16556:160;16506:210;;16759:117;16785:49;;16825:8;;;;16810:23;;;-1:-1:-1;;;;;16785:49:2;;;16802:1;;16785:49;;16802:1;;16785:49;16866:8;16857:6;:17;16759:117;;-1:-1:-1;16906:23:2;16890:13;:39;-1:-1:-1;12591:164:2:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:5;82:20;;-1:-1:-1;;;;;131:31:5;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:5;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:5:o;2735:689::-;2830:6;2838;2846;2899:2;2887:9;2878:7;2874:23;2870:32;2867:52;;;2915:1;2912;2905:12;2867:52;2955:9;2942:23;2984:18;3025:2;3017:6;3014:14;3011:34;;;3041:1;3038;3031:12;3011:34;3079:6;3068:9;3064:22;3054:32;;3124:7;3117:4;3113:2;3109:13;3105:27;3095:55;;3146:1;3143;3136:12;3095:55;3186:2;3173:16;3212:2;3204:6;3201:14;3198:34;;;3228:1;3225;3218:12;3198:34;3283:7;3276:4;3266:6;3263:1;3259:14;3255:2;3251:23;3247:34;3244:47;3241:67;;;3304:1;3301;3294:12;3241:67;3335:4;3327:13;;;;3359:6;;-1:-1:-1;3397:20:5;;;;3384:34;;2735:689;-1:-1:-1;;;;2735:689:5:o;3429:245::-;3487:6;3540:2;3528:9;3519:7;3515:23;3511:32;3508:52;;;3556:1;3553;3546:12;3508:52;3595:9;3582:23;3614:30;3638:5;3614:30;:::i;3679:249::-;3748:6;3801:2;3789:9;3780:7;3776:23;3772:32;3769:52;;;3817:1;3814;3807:12;3769:52;3849:9;3843:16;3868:30;3892:5;3868:30;:::i;3933:592::-;4004:6;4012;4065:2;4053:9;4044:7;4040:23;4036:32;4033:52;;;4081:1;4078;4071:12;4033:52;4121:9;4108:23;4150:18;4191:2;4183:6;4180:14;4177:34;;;4207:1;4204;4197:12;4177:34;4245:6;4234:9;4230:22;4220:32;;4290:7;4283:4;4279:2;4275:13;4271:27;4261:55;;4312:1;4309;4302:12;4261:55;4352:2;4339:16;4378:2;4370:6;4367:14;4364:34;;;4394:1;4391;4384:12;4364:34;4439:7;4434:2;4425:6;4421:2;4417:15;4413:24;4410:37;4407:57;;;4460:1;4457;4450:12;4407:57;4491:2;4483:11;;;;;4513:6;;-1:-1:-1;3933:592:5;;-1:-1:-1;;;;3933:592:5:o;4530:180::-;4589:6;4642:2;4630:9;4621:7;4617:23;4613:32;4610:52;;;4658:1;4655;4648:12;4610:52;-1:-1:-1;4681:23:5;;4530:180;-1:-1:-1;4530:180:5:o;4715:257::-;4756:3;4794:5;4788:12;4821:6;4816:3;4809:19;4837:63;4893:6;4886:4;4881:3;4877:14;4870:4;4863:5;4859:16;4837:63;:::i;:::-;4954:2;4933:15;-1:-1:-1;;4929:29:5;4920:39;;;;4961:4;4916:50;;4715:257;-1:-1:-1;;4715:257:5:o;4977:470::-;5156:3;5194:6;5188:13;5210:53;5256:6;5251:3;5244:4;5236:6;5232:17;5210:53;:::i;:::-;5326:13;;5285:16;;;;5348:57;5326:13;5285:16;5382:4;5370:17;;5348:57;:::i;:::-;5421:20;;4977:470;-1:-1:-1;;;;4977:470:5:o;5660:488::-;-1:-1:-1;;;;;5929:15:5;;;5911:34;;5981:15;;5976:2;5961:18;;5954:43;6028:2;6013:18;;6006:34;;;6076:3;6071:2;6056:18;;6049:31;;;5854:4;;6097:45;;6122:19;;6114:6;6097:45;:::i;:::-;6089:53;5660:488;-1:-1:-1;;;;;;5660:488:5:o;6345:219::-;6494:2;6483:9;6476:21;6457:4;6514:44;6554:2;6543:9;6539:18;6531:6;6514:44;:::i;7669:337::-;7871:2;7853:21;;;7910:2;7890:18;;;7883:30;-1:-1:-1;;;7944:2:5;7929:18;;7922:43;7997:2;7982:18;;7669:337::o;9946:128::-;9986:3;10017:1;10013:6;10010:1;10007:13;10004:39;;;10023:18;;:::i;:::-;-1:-1:-1;10059:9:5;;9946:128::o;10079:168::-;10119:7;10185:1;10181;10177:6;10173:14;10170:1;10167:21;10162:1;10155:9;10148:17;10144:45;10141:71;;;10192:18;;:::i;:::-;-1:-1:-1;10232:9:5;;10079:168::o;10252:258::-;10324:1;10334:113;10348:6;10345:1;10342:13;10334:113;;;10424:11;;;10418:18;10405:11;;;10398:39;10370:2;10363:10;10334:113;;;10465:6;10462:1;10459:13;10456:48;;;-1:-1:-1;;10500:1:5;10482:16;;10475:27;10252:258::o;10515:380::-;10594:1;10590:12;;;;10637;;;10658:61;;10712:4;10704:6;10700:17;10690:27;;10658:61;10765:2;10757:6;10754:14;10734:18;10731:38;10728:161;;;10811:10;10806:3;10802:20;10799:1;10792:31;10846:4;10843:1;10836:15;10874:4;10871:1;10864:15;10728:161;;10515:380;;;:::o;10900:135::-;10939:3;-1:-1:-1;;10960:17:5;;10957:43;;;10980:18;;:::i;:::-;-1:-1:-1;11027:1:5;11016:13;;10900:135::o;11040:127::-;11101:10;11096:3;11092:20;11089:1;11082:31;11132:4;11129:1;11122:15;11156:4;11153:1;11146:15;11172:127;11233:10;11228:3;11224:20;11221:1;11214:31;11264:4;11261:1;11254:15;11288:4;11285:1;11278:15;11304:127;11365:10;11360:3;11356:20;11353:1;11346:31;11396:4;11393:1;11386:15;11420:4;11417:1;11410:15;11436:131;-1:-1:-1;;;;;;11510:32:5;;11500:43;;11490:71;;11557:1;11554;11547:12

Swarm Source

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