ETH Price: $3,382.02 (-0.75%)
Gas: 4 Gwei

Token

I or you after buying NFT (lovenft)
 

Overview

Max Total Supply

6,666 lovenft

Holders

4,601

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 lovenft
0x73e1c23279f41184489fe68f84c0e2a1ad583a08
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:
NFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-27
*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


contract NFT is IERC721A { 

    address private _owner;
    function owner() public view returns(address){
        return _owner;
    }

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

    uint256 public MAX_SUPPLY = 6666;
    uint256 public MAX_FREE = 6666;
    uint256 public MAX_FREE_PER_WALLET = 1;
    uint256 public COST = 0.004 ether;

    string private constant _name = "I or you after buying NFT";
    string private constant _symbol = "lovenft";
    string private _baseURI = "bafybeibnualy2t4ywd2mf7pz7723oxhdqrrxxi46o3dic7f3fyb2z3baxi";

    constructor() {
        _owner = msg.sender;
    }

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

        require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
        require(amount*COST <= msg.value, "Value to Low");
        require(amount + _numberMinted(_caller) <= 6, "Max per Wallet");

        _mint(_caller, amount);
    }

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

        require(totalSupply() + amount <= MAX_FREE, "Freemint SoldOut");
        require(amount + _numberMinted(_caller) <= MAX_FREE_PER_WALLET, "Max per Wallet");

        _mint(_caller, amount);
    }

    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

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


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

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

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

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


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

    function setConfig(uint256 _MAX_FREE_PER_WALLET, uint256 _COST, uint256 _MAX_FREE, uint256 _MAX_SUPPLY) external onlyOwner{
        MAX_FREE_PER_WALLET = _MAX_FREE_PER_WALLET;
        COST = _COST;
        MAX_FREE = _MAX_FREE;
        MAX_SUPPLY = _MAX_SUPPLY;
    }

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

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

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

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


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

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

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



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

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

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

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

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

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

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

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

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

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

    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        string memory baseURI = _baseURI;
        return bytes(baseURI).length != 0 ? string(abi.encodePacked("ipfs://", baseURI, "/", _toString(tokenId),".json")) : "";
    }

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

  

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


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

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

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

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

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

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

        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();


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

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

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

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

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




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

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

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

         // Update the free memory pointer to allocate.
         mstore(0x40, ptr)

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_FREE_PER_WALLET","type":"uint256"},{"internalType":"uint256","name":"_COST","type":"uint256"},{"internalType":"uint256","name":"_MAX_FREE","type":"uint256"},{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611a0a600155611a0a6002556001600355660e35fa931a00006004556040518060600160405280603b815260200162002925603b9139600590816200004a91906200031e565b5060006006553480156200005d57600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000405565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200012657607f821691505b6020821081036200013c576200013b620000de565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620001a67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000167565b620001b2868362000167565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620001ff620001f9620001f384620001ca565b620001d4565b620001ca565b9050919050565b6000819050919050565b6200021b83620001de565b620002336200022a8262000206565b84845462000174565b825550505050565b600090565b6200024a6200023b565b6200025781848462000210565b505050565b5b818110156200027f576200027360008262000240565b6001810190506200025d565b5050565b601f821115620002ce57620002988162000142565b620002a38462000157565b81016020851015620002b3578190505b620002cb620002c28562000157565b8301826200025c565b50505b505050565b600082821c905092915050565b6000620002f360001984600802620002d3565b1980831691505092915050565b60006200030e8383620002e0565b9150826002028217905092915050565b6200032982620000a4565b67ffffffffffffffff811115620003455762000344620000af565b5b6200035182546200010d565b6200035e82828562000283565b600060209050601f83116001811462000396576000841562000381578287015190505b6200038d858262000300565b865550620003fd565b601f198416620003a68662000142565b60005b82811015620003d057848901518255600182019150602085019450602081019050620003a9565b86831015620003f05784890151620003ec601f891682620002e0565b8355505b6001600288020188555050505b505050505050565b61251080620004156000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461045d578063bf8fbbd214610486578063c87b56dd146104b1578063e5c389cd146104ee578063e985e9c514610517578063ed6661c2146105545761014b565b806370a082311461035a5780638da5cb5b1461039757806395d89b41146103c257806398710d1e146103ed578063a0712d6814610418578063a22cb465146104345761014b565b806332cb6b0c1161010857806332cb6b0c146102725780633ccfd60b1461029d57806342842e0e146102b457806347064d6a146102dd5780635b70ea9f146103065780636352211e1461031d5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b50610177600480360381019061017291906117a3565b61057f565b60405161018491906117eb565b60405180910390f35b34801561019957600080fd5b506101a2610611565b6040516101af9190611896565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da91906118ee565b61064e565b6040516101ec919061195c565b60405180910390f35b34801561020157600080fd5b5061021c600480360381019061021791906119a3565b6106ca565b005b34801561022a57600080fd5b50610233610843565b60405161024091906119f2565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190611a0d565b610856565b005b34801561027e57600080fd5b50610287610866565b60405161029491906119f2565b60405180910390f35b3480156102a957600080fd5b506102b261086c565b005b3480156102c057600080fd5b506102db60048036038101906102d69190611a0d565b610913565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190611b95565b610933565b005b34801561031257600080fd5b5061031b61099e565b005b34801561032957600080fd5b50610344600480360381019061033f91906118ee565b610a6d565b604051610351919061195c565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190611bde565b610a7f565b60405161038e91906119f2565b60405180910390f35b3480156103a357600080fd5b506103ac610b13565b6040516103b9919061195c565b60405180910390f35b3480156103ce57600080fd5b506103d7610b3c565b6040516103e49190611896565b60405180910390f35b3480156103f957600080fd5b50610402610b79565b60405161040f91906119f2565b60405180910390f35b610432600480360381019061042d91906118ee565b610b7f565b005b34801561044057600080fd5b5061045b60048036038101906104569190611c37565b610c97565b005b34801561046957600080fd5b50610484600480360381019061047f9190611d18565b610e0e565b005b34801561049257600080fd5b5061049b610e1f565b6040516104a891906119f2565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d391906118ee565b610e25565b6040516104e59190611896565b60405180910390f35b3480156104fa57600080fd5b5061051560048036038101906105109190611d9b565b610f46565b005b34801561052357600080fd5b5061053e60048036038101906105399190611e02565b610fc0565b60405161054b91906117eb565b60405180910390f35b34801561056057600080fd5b50610569611054565b60405161057691906119f2565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280601981526020017f49206f7220796f7520616674657220627579696e67204e465400000000000000815250905090565b60006106598261105a565b61068f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d58261107b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361070f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072e611147565b73ffffffffffffffffffffffffffffffffffffffff16146107915761075a81610755611147565b610fc0565b610790576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826009600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061084d61114f565b60065403905090565b610861838383611154565b505050565b60015481565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108c457600080fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561090f573d6000803e3d6000fd5b5050565b61092e83838360405180602001604052806000815250610e0e565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461098b57600080fd5b806005908161099a919061204e565b5050565b60006109a8611147565b9050600060019050600254816109bc610843565b6109c6919061214f565b1115610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe906121cf565b60405180910390fd5b600354610a13836114ca565b82610a1e919061214f565b1115610a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a569061223b565b60405180910390fd5b610a698282611521565b5050565b6000610a788261107b565b9050919050565b600080610a8b836116c3565b03610ac2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600781526020017f6c6f76656e667400000000000000000000000000000000000000000000000000815250905090565b60035481565b6000610b89611147565b905060015482610b97610843565b610ba1919061214f565b1115610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd9906122a7565b60405180910390fd5b3460045483610bf191906122c7565b1115610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990612355565b60405180910390fd5b6006610c3d826114ca565b83610c48919061214f565b1115610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c809061223b565b60405180910390fd5b610c938183611521565b5050565b610c9f611147565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d03576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a6000610d10611147565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610dbd611147565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e0291906117eb565b60405180910390a35050565b610e19848484611154565b50505050565b60045481565b6060610e308261105a565b610e66576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060058054610e7590611e71565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea190611e71565b8015610eee5780601f10610ec357610100808354040283529160200191610eee565b820191906000526020600020905b815481529060010190602001808311610ed157829003601f168201915b505050505090506000815103610f135760405180602001604052806000815250610f3e565b80610f1d846116cd565b604051602001610f2e929190612495565b6040516020818303038152906040525b915050919050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f9e57600080fd5b8360038190555082600481905550816002819055508060018190555050505050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60025481565b60008161106561114f565b11158015611074575060065482105b9050919050565b6000808290508061108a61114f565b116111105760065481101561110f5760006007600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361110d575b600081036111035760076000836001900393508381526020019081526020016000205490506110d9565b8092505050611142565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061115f8261107b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111c6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006009600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661121f611147565b73ffffffffffffffffffffffffffffffffffffffff16148061124e575061124d86611248611147565b610fc0565b5b8061128b575061125c611147565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806112c4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112cf836116c3565b1461130b576009600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6113d2876116c3565b1717600760008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361145a5760006001850190506000600760008381526020019081526020016000205403611458576006548114611457578360076000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114c28686866001611727565b505050505050565b600067ffffffffffffffff6040600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600060065490506000611533846116c3565b0361156a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036115a4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b178202600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16116096001841461172d565b901b60a042901b611619856116c3565b171760076000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061163f578160068190555050506116be6000848385611727565b505050565b6000819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561171357600183039250600a81066030018353600a810490506116f3565b508181036020830392508083525050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6117808161174b565b811461178b57600080fd5b50565b60008135905061179d81611777565b92915050565b6000602082840312156117b9576117b8611741565b5b60006117c78482850161178e565b91505092915050565b60008115159050919050565b6117e5816117d0565b82525050565b600060208201905061180060008301846117dc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611840578082015181840152602081019050611825565b60008484015250505050565b6000601f19601f8301169050919050565b600061186882611806565b6118728185611811565b9350611882818560208601611822565b61188b8161184c565b840191505092915050565b600060208201905081810360008301526118b0818461185d565b905092915050565b6000819050919050565b6118cb816118b8565b81146118d657600080fd5b50565b6000813590506118e8816118c2565b92915050565b60006020828403121561190457611903611741565b5b6000611912848285016118d9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119468261191b565b9050919050565b6119568161193b565b82525050565b6000602082019050611971600083018461194d565b92915050565b6119808161193b565b811461198b57600080fd5b50565b60008135905061199d81611977565b92915050565b600080604083850312156119ba576119b9611741565b5b60006119c88582860161198e565b92505060206119d9858286016118d9565b9150509250929050565b6119ec816118b8565b82525050565b6000602082019050611a0760008301846119e3565b92915050565b600080600060608486031215611a2657611a25611741565b5b6000611a348682870161198e565b9350506020611a458682870161198e565b9250506040611a56868287016118d9565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611aa28261184c565b810181811067ffffffffffffffff82111715611ac157611ac0611a6a565b5b80604052505050565b6000611ad4611737565b9050611ae08282611a99565b919050565b600067ffffffffffffffff821115611b0057611aff611a6a565b5b611b098261184c565b9050602081019050919050565b82818337600083830152505050565b6000611b38611b3384611ae5565b611aca565b905082815260208101848484011115611b5457611b53611a65565b5b611b5f848285611b16565b509392505050565b600082601f830112611b7c57611b7b611a60565b5b8135611b8c848260208601611b25565b91505092915050565b600060208284031215611bab57611baa611741565b5b600082013567ffffffffffffffff811115611bc957611bc8611746565b5b611bd584828501611b67565b91505092915050565b600060208284031215611bf457611bf3611741565b5b6000611c028482850161198e565b91505092915050565b611c14816117d0565b8114611c1f57600080fd5b50565b600081359050611c3181611c0b565b92915050565b60008060408385031215611c4e57611c4d611741565b5b6000611c5c8582860161198e565b9250506020611c6d85828601611c22565b9150509250929050565b600067ffffffffffffffff821115611c9257611c91611a6a565b5b611c9b8261184c565b9050602081019050919050565b6000611cbb611cb684611c77565b611aca565b905082815260208101848484011115611cd757611cd6611a65565b5b611ce2848285611b16565b509392505050565b600082601f830112611cff57611cfe611a60565b5b8135611d0f848260208601611ca8565b91505092915050565b60008060008060808587031215611d3257611d31611741565b5b6000611d408782880161198e565b9450506020611d518782880161198e565b9350506040611d62878288016118d9565b925050606085013567ffffffffffffffff811115611d8357611d82611746565b5b611d8f87828801611cea565b91505092959194509250565b60008060008060808587031215611db557611db4611741565b5b6000611dc3878288016118d9565b9450506020611dd4878288016118d9565b9350506040611de5878288016118d9565b9250506060611df6878288016118d9565b91505092959194509250565b60008060408385031215611e1957611e18611741565b5b6000611e278582860161198e565b9250506020611e388582860161198e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e8957607f821691505b602082108103611e9c57611e9b611e42565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302611f047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611ec7565b611f0e8683611ec7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000611f4b611f46611f41846118b8565b611f26565b6118b8565b9050919050565b6000819050919050565b611f6583611f30565b611f79611f7182611f52565b848454611ed4565b825550505050565b600090565b611f8e611f81565b611f99818484611f5c565b505050565b5b81811015611fbd57611fb2600082611f86565b600181019050611f9f565b5050565b601f82111561200257611fd381611ea2565b611fdc84611eb7565b81016020851015611feb578190505b611fff611ff785611eb7565b830182611f9e565b50505b505050565b600082821c905092915050565b600061202560001984600802612007565b1980831691505092915050565b600061203e8383612014565b9150826002028217905092915050565b61205782611806565b67ffffffffffffffff8111156120705761206f611a6a565b5b61207a8254611e71565b612085828285611fc1565b600060209050601f8311600181146120b857600084156120a6578287015190505b6120b08582612032565b865550612118565b601f1984166120c686611ea2565b60005b828110156120ee578489015182556001820191506020850194506020810190506120c9565b8683101561210b5784890151612107601f891682612014565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061215a826118b8565b9150612165836118b8565b925082820190508082111561217d5761217c612120565b5b92915050565b7f467265656d696e7420536f6c644f757400000000000000000000000000000000600082015250565b60006121b9601083611811565b91506121c482612183565b602082019050919050565b600060208201905081810360008301526121e8816121ac565b9050919050565b7f4d6178207065722057616c6c6574000000000000000000000000000000000000600082015250565b6000612225600e83611811565b9150612230826121ef565b602082019050919050565b6000602082019050818103600083015261225481612218565b9050919050565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b6000612291600783611811565b915061229c8261225b565b602082019050919050565b600060208201905081810360008301526122c081612284565b9050919050565b60006122d2826118b8565b91506122dd836118b8565b92508282026122eb816118b8565b9150828204841483151761230257612301612120565b5b5092915050565b7f56616c756520746f204c6f770000000000000000000000000000000000000000600082015250565b600061233f600c83611811565b915061234a82612309565b602082019050919050565b6000602082019050818103600083015261236e81612332565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b60006123b6600783612375565b91506123c182612380565b600782019050919050565b60006123d782611806565b6123e18185612375565b93506123f1818560208601611822565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000612433600183612375565b915061243e826123fd565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061247f600583612375565b915061248a82612449565b600582019050919050565b60006124a0826123a9565b91506124ac82856123cc565b91506124b782612426565b91506124c382846123cc565b91506124ce82612472565b9150819050939250505056fea264697066735822122069446dfef0f21c6b35b77b22bb9a01f1d6d64c4f3992d1f5dfc06e5368674f1b64736f6c6343000811003362616679626569626e75616c79327434797764326d6637707a373732336f78686471727278786934366f33646963376633667962327a3362617869

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461045d578063bf8fbbd214610486578063c87b56dd146104b1578063e5c389cd146104ee578063e985e9c514610517578063ed6661c2146105545761014b565b806370a082311461035a5780638da5cb5b1461039757806395d89b41146103c257806398710d1e146103ed578063a0712d6814610418578063a22cb465146104345761014b565b806332cb6b0c1161010857806332cb6b0c146102725780633ccfd60b1461029d57806342842e0e146102b457806347064d6a146102dd5780635b70ea9f146103065780636352211e1461031d5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b50610177600480360381019061017291906117a3565b61057f565b60405161018491906117eb565b60405180910390f35b34801561019957600080fd5b506101a2610611565b6040516101af9190611896565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da91906118ee565b61064e565b6040516101ec919061195c565b60405180910390f35b34801561020157600080fd5b5061021c600480360381019061021791906119a3565b6106ca565b005b34801561022a57600080fd5b50610233610843565b60405161024091906119f2565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190611a0d565b610856565b005b34801561027e57600080fd5b50610287610866565b60405161029491906119f2565b60405180910390f35b3480156102a957600080fd5b506102b261086c565b005b3480156102c057600080fd5b506102db60048036038101906102d69190611a0d565b610913565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190611b95565b610933565b005b34801561031257600080fd5b5061031b61099e565b005b34801561032957600080fd5b50610344600480360381019061033f91906118ee565b610a6d565b604051610351919061195c565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190611bde565b610a7f565b60405161038e91906119f2565b60405180910390f35b3480156103a357600080fd5b506103ac610b13565b6040516103b9919061195c565b60405180910390f35b3480156103ce57600080fd5b506103d7610b3c565b6040516103e49190611896565b60405180910390f35b3480156103f957600080fd5b50610402610b79565b60405161040f91906119f2565b60405180910390f35b610432600480360381019061042d91906118ee565b610b7f565b005b34801561044057600080fd5b5061045b60048036038101906104569190611c37565b610c97565b005b34801561046957600080fd5b50610484600480360381019061047f9190611d18565b610e0e565b005b34801561049257600080fd5b5061049b610e1f565b6040516104a891906119f2565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d391906118ee565b610e25565b6040516104e59190611896565b60405180910390f35b3480156104fa57600080fd5b5061051560048036038101906105109190611d9b565b610f46565b005b34801561052357600080fd5b5061053e60048036038101906105399190611e02565b610fc0565b60405161054b91906117eb565b60405180910390f35b34801561056057600080fd5b50610569611054565b60405161057691906119f2565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280601981526020017f49206f7220796f7520616674657220627579696e67204e465400000000000000815250905090565b60006106598261105a565b61068f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d58261107b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361070f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072e611147565b73ffffffffffffffffffffffffffffffffffffffff16146107915761075a81610755611147565b610fc0565b610790576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826009600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061084d61114f565b60065403905090565b610861838383611154565b505050565b60015481565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108c457600080fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561090f573d6000803e3d6000fd5b5050565b61092e83838360405180602001604052806000815250610e0e565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461098b57600080fd5b806005908161099a919061204e565b5050565b60006109a8611147565b9050600060019050600254816109bc610843565b6109c6919061214f565b1115610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe906121cf565b60405180910390fd5b600354610a13836114ca565b82610a1e919061214f565b1115610a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a569061223b565b60405180910390fd5b610a698282611521565b5050565b6000610a788261107b565b9050919050565b600080610a8b836116c3565b03610ac2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600781526020017f6c6f76656e667400000000000000000000000000000000000000000000000000815250905090565b60035481565b6000610b89611147565b905060015482610b97610843565b610ba1919061214f565b1115610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd9906122a7565b60405180910390fd5b3460045483610bf191906122c7565b1115610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990612355565b60405180910390fd5b6006610c3d826114ca565b83610c48919061214f565b1115610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c809061223b565b60405180910390fd5b610c938183611521565b5050565b610c9f611147565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d03576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a6000610d10611147565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610dbd611147565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e0291906117eb565b60405180910390a35050565b610e19848484611154565b50505050565b60045481565b6060610e308261105a565b610e66576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060058054610e7590611e71565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea190611e71565b8015610eee5780601f10610ec357610100808354040283529160200191610eee565b820191906000526020600020905b815481529060010190602001808311610ed157829003601f168201915b505050505090506000815103610f135760405180602001604052806000815250610f3e565b80610f1d846116cd565b604051602001610f2e929190612495565b6040516020818303038152906040525b915050919050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f9e57600080fd5b8360038190555082600481905550816002819055508060018190555050505050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60025481565b60008161106561114f565b11158015611074575060065482105b9050919050565b6000808290508061108a61114f565b116111105760065481101561110f5760006007600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361110d575b600081036111035760076000836001900393508381526020019081526020016000205490506110d9565b8092505050611142565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061115f8261107b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111c6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006009600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661121f611147565b73ffffffffffffffffffffffffffffffffffffffff16148061124e575061124d86611248611147565b610fc0565b5b8061128b575061125c611147565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806112c4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112cf836116c3565b1461130b576009600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6113d2876116c3565b1717600760008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361145a5760006001850190506000600760008381526020019081526020016000205403611458576006548114611457578360076000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114c28686866001611727565b505050505050565b600067ffffffffffffffff6040600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600060065490506000611533846116c3565b0361156a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036115a4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b178202600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16116096001841461172d565b901b60a042901b611619856116c3565b171760076000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061163f578160068190555050506116be6000848385611727565b505050565b6000819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561171357600183039250600a81066030018353600a810490506116f3565b508181036020830392508083525050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6117808161174b565b811461178b57600080fd5b50565b60008135905061179d81611777565b92915050565b6000602082840312156117b9576117b8611741565b5b60006117c78482850161178e565b91505092915050565b60008115159050919050565b6117e5816117d0565b82525050565b600060208201905061180060008301846117dc565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611840578082015181840152602081019050611825565b60008484015250505050565b6000601f19601f8301169050919050565b600061186882611806565b6118728185611811565b9350611882818560208601611822565b61188b8161184c565b840191505092915050565b600060208201905081810360008301526118b0818461185d565b905092915050565b6000819050919050565b6118cb816118b8565b81146118d657600080fd5b50565b6000813590506118e8816118c2565b92915050565b60006020828403121561190457611903611741565b5b6000611912848285016118d9565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119468261191b565b9050919050565b6119568161193b565b82525050565b6000602082019050611971600083018461194d565b92915050565b6119808161193b565b811461198b57600080fd5b50565b60008135905061199d81611977565b92915050565b600080604083850312156119ba576119b9611741565b5b60006119c88582860161198e565b92505060206119d9858286016118d9565b9150509250929050565b6119ec816118b8565b82525050565b6000602082019050611a0760008301846119e3565b92915050565b600080600060608486031215611a2657611a25611741565b5b6000611a348682870161198e565b9350506020611a458682870161198e565b9250506040611a56868287016118d9565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611aa28261184c565b810181811067ffffffffffffffff82111715611ac157611ac0611a6a565b5b80604052505050565b6000611ad4611737565b9050611ae08282611a99565b919050565b600067ffffffffffffffff821115611b0057611aff611a6a565b5b611b098261184c565b9050602081019050919050565b82818337600083830152505050565b6000611b38611b3384611ae5565b611aca565b905082815260208101848484011115611b5457611b53611a65565b5b611b5f848285611b16565b509392505050565b600082601f830112611b7c57611b7b611a60565b5b8135611b8c848260208601611b25565b91505092915050565b600060208284031215611bab57611baa611741565b5b600082013567ffffffffffffffff811115611bc957611bc8611746565b5b611bd584828501611b67565b91505092915050565b600060208284031215611bf457611bf3611741565b5b6000611c028482850161198e565b91505092915050565b611c14816117d0565b8114611c1f57600080fd5b50565b600081359050611c3181611c0b565b92915050565b60008060408385031215611c4e57611c4d611741565b5b6000611c5c8582860161198e565b9250506020611c6d85828601611c22565b9150509250929050565b600067ffffffffffffffff821115611c9257611c91611a6a565b5b611c9b8261184c565b9050602081019050919050565b6000611cbb611cb684611c77565b611aca565b905082815260208101848484011115611cd757611cd6611a65565b5b611ce2848285611b16565b509392505050565b600082601f830112611cff57611cfe611a60565b5b8135611d0f848260208601611ca8565b91505092915050565b60008060008060808587031215611d3257611d31611741565b5b6000611d408782880161198e565b9450506020611d518782880161198e565b9350506040611d62878288016118d9565b925050606085013567ffffffffffffffff811115611d8357611d82611746565b5b611d8f87828801611cea565b91505092959194509250565b60008060008060808587031215611db557611db4611741565b5b6000611dc3878288016118d9565b9450506020611dd4878288016118d9565b9350506040611de5878288016118d9565b9250506060611df6878288016118d9565b91505092959194509250565b60008060408385031215611e1957611e18611741565b5b6000611e278582860161198e565b9250506020611e388582860161198e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e8957607f821691505b602082108103611e9c57611e9b611e42565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302611f047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611ec7565b611f0e8683611ec7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000611f4b611f46611f41846118b8565b611f26565b6118b8565b9050919050565b6000819050919050565b611f6583611f30565b611f79611f7182611f52565b848454611ed4565b825550505050565b600090565b611f8e611f81565b611f99818484611f5c565b505050565b5b81811015611fbd57611fb2600082611f86565b600181019050611f9f565b5050565b601f82111561200257611fd381611ea2565b611fdc84611eb7565b81016020851015611feb578190505b611fff611ff785611eb7565b830182611f9e565b50505b505050565b600082821c905092915050565b600061202560001984600802612007565b1980831691505092915050565b600061203e8383612014565b9150826002028217905092915050565b61205782611806565b67ffffffffffffffff8111156120705761206f611a6a565b5b61207a8254611e71565b612085828285611fc1565b600060209050601f8311600181146120b857600084156120a6578287015190505b6120b08582612032565b865550612118565b601f1984166120c686611ea2565b60005b828110156120ee578489015182556001820191506020850194506020810190506120c9565b8683101561210b5784890151612107601f891682612014565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061215a826118b8565b9150612165836118b8565b925082820190508082111561217d5761217c612120565b5b92915050565b7f467265656d696e7420536f6c644f757400000000000000000000000000000000600082015250565b60006121b9601083611811565b91506121c482612183565b602082019050919050565b600060208201905081810360008301526121e8816121ac565b9050919050565b7f4d6178207065722057616c6c6574000000000000000000000000000000000000600082015250565b6000612225600e83611811565b9150612230826121ef565b602082019050919050565b6000602082019050818103600083015261225481612218565b9050919050565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b6000612291600783611811565b915061229c8261225b565b602082019050919050565b600060208201905081810360008301526122c081612284565b9050919050565b60006122d2826118b8565b91506122dd836118b8565b92508282026122eb816118b8565b9150828204841483151761230257612301612120565b5b5092915050565b7f56616c756520746f204c6f770000000000000000000000000000000000000000600082015250565b600061233f600c83611811565b915061234a82612309565b602082019050919050565b6000602082019050818103600083015261236e81612332565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b60006123b6600783612375565b91506123c182612380565b600782019050919050565b60006123d782611806565b6123e18185612375565b93506123f1818560208601611822565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000612433600183612375565b915061243e826123fd565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061247f600583612375565b915061248a82612449565b600582019050919050565b60006124a0826123a9565b91506124ac82856123cc565b91506124b782612426565b91506124c382846123cc565b91506124ce82612472565b9150819050939250505056fea264697066735822122069446dfef0f21c6b35b77b22bb9a01f1d6d64c4f3992d1f5dfc06e5368674f1b64736f6c63430008110033

Deployed Bytecode Sourcemap

9017:21248:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14362:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18569:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20235:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19718:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13605:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21121:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9255:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30117:145;;;;;;;;;;;;;:::i;:::-;;21382:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12614:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10038:316;;;;;;;;;;;;;:::i;:::-;;18358:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15041:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9081:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18738:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9331:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9690:340;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20511:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21658:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9376:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18856:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12713:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20890:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9294:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14362:615;14447:4;14762:10;14747:25;;:11;:25;;;;:102;;;;14839:10;14824:25;;:11;:25;;;;14747:102;:179;;;;14916:10;14901:25;;:11;:25;;;;14747:179;14727:199;;14362:615;;;:::o;18569:100::-;18623:13;18656:5;;;;;;;;;;;;;;;;;18649:12;;18569:100;:::o;20235:204::-;20303:7;20328:16;20336:7;20328;:16::i;:::-;20323:64;;20353:34;;;;;;;;;;;;;;20323:64;20407:15;:24;20423:7;20407:24;;;;;;;;;;;;;;;;;;;;;20400:31;;20235:204;;;:::o;19718:451::-;19791:13;19823:27;19842:7;19823:18;:27::i;:::-;19791:61;;19873:5;19867:11;;:2;:11;;;19863:25;;19880:8;;;19863:25;19928:5;19905:28;;:19;:17;:19::i;:::-;:28;;;19901:175;;19953:44;19970:5;19977:19;:17;:19::i;:::-;19953:16;:44::i;:::-;19948:128;;20025:35;;;;;;;;;;;;;;19948:128;19901:175;20115:2;20088:15;:24;20104:7;20088:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20153:7;20149:2;20133:28;;20142:5;20133:28;;;;;;;;;;;;19780:389;19718:451;;:::o;13605:300::-;13658:7;13871:15;:13;:15::i;:::-;13855:13;;:31;13848:38;;13605:300;:::o;21121:190::-;21275:28;21285:4;21291:2;21295:7;21275:9;:28::i;:::-;21121:190;;;:::o;9255:32::-;;;;:::o;30117:145::-;9215:10;9207:18;;:6;;;;;;;;;;:18;;;9199:27;;;;;;30167:15:::1;30185:21;30167:39;;30225:10;30217:28;;:37;30246:7;30217:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;30156:106;30117:145::o:0;21382:205::-;21540:39;21557:4;21563:2;21567:7;21540:39;;;;;;;;;;;;:16;:39::i;:::-;21382:205;;;:::o;12614:91::-;9215:10;9207:18;;:6;;;;;;;;;;:18;;;9199:27;;;;;;12692:5:::1;12681:8;:16;;;;;;:::i;:::-;;12614:91:::0;:::o;10038:316::-;10077:15;10095:19;:17;:19::i;:::-;10077:37;;10125:14;10142:1;10125:18;;10190:8;;10180:6;10164:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;10156:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10273:19;;10247:22;10261:7;10247:13;:22::i;:::-;10238:6;:31;;;;:::i;:::-;:54;;10230:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10324:22;10330:7;10339:6;10324:5;:22::i;:::-;10066:288;;10038:316::o;18358:144::-;18422:7;18465:27;18484:7;18465:18;:27::i;:::-;18442:52;;18358:144;;;:::o;15041:234::-;15105:7;15157:1;15129:24;15147:5;15129:17;:24::i;:::-;:29;15125:70;;15167:28;;;;;;;;;;;;;;15125:70;10465:13;15213:18;:25;15232:5;15213:25;;;;;;;;;;;;;;;;:54;15206:61;;15041:234;;;:::o;9081:77::-;9118:7;9144:6;;;;;;;;;;;9137:13;;9081:77;:::o;18738:104::-;18794:13;18827:7;;;;;;;;;;;;;;;;;18820:14;;18738:104;:::o;9331:38::-;;;;:::o;9690:340::-;9747:15;9765:19;:17;:19::i;:::-;9747:37;;9831:10;;9821:6;9805:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;9797:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;9887:9;9879:4;;9872:6;:11;;;;:::i;:::-;:24;;9864:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;9967:1;9941:22;9955:7;9941:13;:22::i;:::-;9932:6;:31;;;;:::i;:::-;:36;;9924:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10000:22;10006:7;10015:6;10000:5;:22::i;:::-;9736:294;9690:340;:::o;20511:308::-;20622:19;:17;:19::i;:::-;20610:31;;:8;:31;;;20606:61;;20650:17;;;;;;;;;;;;;;20606:61;20732:8;20680:18;:39;20699:19;:17;:19::i;:::-;20680:39;;;;;;;;;;;;;;;:49;20720:8;20680:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20792:8;20756:55;;20771:19;:17;:19::i;:::-;20756:55;;;20802:8;20756:55;;;;;;:::i;:::-;;;;;;;;20511:308;;:::o;21658:227::-;21849:28;21859:4;21865:2;21869:7;21849:9;:28::i;:::-;21658:227;;;;:::o;9376:33::-;;;;:::o;18856:338::-;18929:13;18960:16;18968:7;18960;:16::i;:::-;18955:59;;18985:29;;;;;;;;;;;;;;18955:59;19025:21;19049:8;19025:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19100:1;19081:7;19075:21;:26;:111;;;;;;;;;;;;;;;;;19139:7;19153:18;19163:7;19153:9;:18::i;:::-;19111:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19075:111;19068:118;;;18856:338;;;:::o;12713:272::-;9215:10;9207:18;;:6;;;;;;;;;;:18;;;9199:27;;;;;;12868:20:::1;12846:19;:42;;;;12906:5;12899:4;:12;;;;12933:9;12922:8;:20;;;;12966:11;12953:10;:24;;;;12713:272:::0;;;;:::o;20890:164::-;20987:4;21011:18;:25;21030:5;21011:25;;;;;;;;;;;;;;;:35;21037:8;21011:35;;;;;;;;;;;;;;;;;;;;;;;;;21004:42;;20890:164;;;;:::o;9294:30::-;;;;:::o;22140:168::-;22197:4;22253:7;22234:15;:13;:15::i;:::-;:26;;:66;;;;;22287:13;;22277:7;:23;22234:66;22214:86;;22140:168;;;:::o;15873:1129::-;15940:7;15960:12;15975:7;15960:22;;16043:4;16024:15;:13;:15::i;:::-;:23;16020:915;;16077:13;;16070:4;:20;16066:869;;;16115:14;16132:17;:23;16150:4;16132:23;;;;;;;;;;;;16115:40;;16248:1;11235:8;16221:6;:23;:28;16217:699;;16740:113;16757:1;16747:6;:11;16740:113;;16800:17;:25;16818:6;;;;;;;16800:25;;;;;;;;;;;;16791:34;;16740:113;;;16886:6;16879:13;;;;;;16217:699;16092:843;16066:869;16020:915;16963:31;;;;;;;;;;;;;;15873:1129;;;;:::o;28016:105::-;28076:7;28103:10;28096:17;;28016:105;:::o;13128:92::-;13184:7;13128:92;:::o;24421:2557::-;24558:27;24588;24607:7;24588:18;:27::i;:::-;24558:57;;24673:4;24632:45;;24648:19;24632:45;;;24628:86;;24686:28;;;;;;;;;;;;;;24628:86;24727:23;24753:15;:24;24769:7;24753:24;;;;;;;;;;;;;;;;;;;;;24727:50;;24790:22;24839:4;24816:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;24864:43;24881:4;24887:19;:17;:19::i;:::-;24864:16;:43::i;:::-;24816:91;:150;;;;24947:19;:17;:19::i;:::-;24928:38;;:15;:38;;;24816:150;24790:177;;24985:17;24980:66;;25011:35;;;;;;;;;;;;;;24980:66;25156:1;25118:34;25136:15;25118:17;:34::i;:::-;:39;25114:103;;25181:15;:24;25197:7;25181:24;;;;;;;;;;;;25174:31;;;;;;;;;;;25114:103;25584:18;:24;25603:4;25584:24;;;;;;;;;;;;;;;;25582:26;;;;;;;;;;;;25653:18;:22;25672:2;25653:22;;;;;;;;;;;;;;;;25651:24;;;;;;;;;;;11513:8;11119:3;26034:15;:41;;25992:21;26010:2;25992:17;:21::i;:::-;:84;:128;25946:17;:26;25964:7;25946:26;;;;;;;;;;;:174;;;;26290:1;11513:8;26240:19;:46;:51;26236:626;;26312:19;26344:1;26334:7;:11;26312:33;;26501:1;26467:17;:30;26485:11;26467:30;;;;;;;;;;;;:35;26463:384;;26605:13;;26590:11;:28;26586:242;;26785:19;26752:17;:30;26770:11;26752:30;;;;;;;;;;;:52;;;;26586:242;26463:384;26293:569;26236:626;26909:7;26905:2;26890:27;;26899:4;26890:27;;;;;;;;;;;;26928:42;26949:4;26955:2;26959:7;26968:1;26928:20;:42::i;:::-;24545:2433;;;24421:2557;;;:::o;15357:176::-;15418:7;10465:13;10602:2;15446:18;:25;15465:5;15446:25;;;;;;;;;;;;;;;;:49;;15445:80;15438:87;;15357:176;;;:::o;22573:1594::-;22638:20;22661:13;;22638:36;;22714:1;22689:21;22707:2;22689:17;:21::i;:::-;:26;22685:58;;22724:19;;;;;;;;;;;;;;22685:58;22770:1;22758:8;:13;22754:44;;22780:18;;;;;;;;;;;;;;22754:44;23343:1;10602:2;23314:1;:25;;23313:31;23301:8;:44;23275:18;:22;23294:2;23275:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;11378:3;23744:29;23771:1;23759:8;:13;23744:14;:29::i;:::-;:56;;11119:3;23681:15;:41;;23639:21;23657:2;23639:17;:21::i;:::-;:84;:162;23588:17;:31;23606:12;23588:31;;;;;;;;;;;:213;;;;23818:20;23841:12;23818:35;;23868:11;23897:8;23882:12;:23;23868:37;;23922:111;23974:14;;;;;;23970:2;23949:40;;23966:1;23949:40;;;;;;;;;;;;24028:3;24013:12;:18;23922:111;;24065:12;24049:13;:28;;;;23052:1037;;24099:60;24128:1;24132:2;24136:12;24150:8;24099:20;:60::i;:::-;22627:1540;22573:1594;;:::o;19279:148::-;19343:14;19404:5;19394:15;;19279:148;;;:::o;28227:1882::-;28284:17;28705:3;28698:4;28692:11;28688:21;28681:28;;28792:3;28786:4;28779:17;28892:3;29328:5;29460:1;29455:3;29451:11;29444:18;;29599:2;29593:4;29589:13;29585:2;29581:22;29576:3;29568:36;29641:2;29635:4;29631:13;29623:21;;29225:661;29657:4;29225:661;;;29825:1;29820:3;29816:11;29809:18;;29869:2;29863:4;29859:13;29855:2;29851:22;29846:3;29838:36;29742:2;29736:4;29732:13;29724:21;;29225:661;;;29229:427;29918:3;29913;29909:13;30027:2;30022:3;30018:12;30011:19;;30084:6;30079:3;30072:19;28323:1779;;28227:1882;;;:::o;27643:182::-;;;;;:::o;19514:142::-;19572:14;19633:5;19623:15;;19514:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:765::-;11697:6;11705;11713;11721;11770:3;11758:9;11749:7;11745:23;11741:33;11738:120;;;11777:79;;:::i;:::-;11738:120;11897:1;11922:53;11967:7;11958:6;11947:9;11943:22;11922:53;:::i;:::-;11912:63;;11868:117;12024:2;12050:53;12095:7;12086:6;12075:9;12071:22;12050:53;:::i;:::-;12040:63;;11995:118;12152:2;12178:53;12223:7;12214:6;12203:9;12199:22;12178:53;:::i;:::-;12168:63;;12123:118;12280:2;12306:53;12351:7;12342:6;12331:9;12327:22;12306:53;:::i;:::-;12296:63;;12251:118;11611:765;;;;;;;:::o;12382:474::-;12450:6;12458;12507:2;12495:9;12486:7;12482:23;12478:32;12475:119;;;12513:79;;:::i;:::-;12475:119;12633:1;12658:53;12703:7;12694:6;12683:9;12679:22;12658:53;:::i;:::-;12648:63;;12604:117;12760:2;12786:53;12831:7;12822:6;12811:9;12807:22;12786:53;:::i;:::-;12776:63;;12731:118;12382:474;;;;;:::o;12862:180::-;12910:77;12907:1;12900:88;13007:4;13004:1;12997:15;13031:4;13028:1;13021:15;13048:320;13092:6;13129:1;13123:4;13119:12;13109:22;;13176:1;13170:4;13166:12;13197:18;13187:81;;13253:4;13245:6;13241:17;13231:27;;13187:81;13315:2;13307:6;13304:14;13284:18;13281:38;13278:84;;13334:18;;:::i;:::-;13278:84;13099:269;13048:320;;;:::o;13374:141::-;13423:4;13446:3;13438:11;;13469:3;13466:1;13459:14;13503:4;13500:1;13490:18;13482:26;;13374:141;;;:::o;13521:93::-;13558:6;13605:2;13600;13593:5;13589:14;13585:23;13575:33;;13521:93;;;:::o;13620:107::-;13664:8;13714:5;13708:4;13704:16;13683:37;;13620:107;;;;:::o;13733:393::-;13802:6;13852:1;13840:10;13836:18;13875:97;13905:66;13894:9;13875:97;:::i;:::-;13993:39;14023:8;14012:9;13993:39;:::i;:::-;13981:51;;14065:4;14061:9;14054:5;14050:21;14041:30;;14114:4;14104:8;14100:19;14093:5;14090:30;14080:40;;13809:317;;13733:393;;;;;:::o;14132:60::-;14160:3;14181:5;14174:12;;14132:60;;;:::o;14198:142::-;14248:9;14281:53;14299:34;14308:24;14326:5;14308:24;:::i;:::-;14299:34;:::i;:::-;14281:53;:::i;:::-;14268:66;;14198:142;;;:::o;14346:75::-;14389:3;14410:5;14403:12;;14346:75;;;:::o;14427:269::-;14537:39;14568:7;14537:39;:::i;:::-;14598:91;14647:41;14671:16;14647:41;:::i;:::-;14639:6;14632:4;14626:11;14598:91;:::i;:::-;14592:4;14585:105;14503:193;14427:269;;;:::o;14702:73::-;14747:3;14702:73;:::o;14781:189::-;14858:32;;:::i;:::-;14899:65;14957:6;14949;14943:4;14899:65;:::i;:::-;14834:136;14781:189;;:::o;14976:186::-;15036:120;15053:3;15046:5;15043:14;15036:120;;;15107:39;15144:1;15137:5;15107:39;:::i;:::-;15080:1;15073:5;15069:13;15060:22;;15036:120;;;14976:186;;:::o;15168:543::-;15269:2;15264:3;15261:11;15258:446;;;15303:38;15335:5;15303:38;:::i;:::-;15387:29;15405:10;15387:29;:::i;:::-;15377:8;15373:44;15570:2;15558:10;15555:18;15552:49;;;15591:8;15576:23;;15552:49;15614:80;15670:22;15688:3;15670:22;:::i;:::-;15660:8;15656:37;15643:11;15614:80;:::i;:::-;15273:431;;15258:446;15168:543;;;:::o;15717:117::-;15771:8;15821:5;15815:4;15811:16;15790:37;;15717:117;;;;:::o;15840:169::-;15884:6;15917:51;15965:1;15961:6;15953:5;15950:1;15946:13;15917:51;:::i;:::-;15913:56;15998:4;15992;15988:15;15978:25;;15891:118;15840:169;;;;:::o;16014:295::-;16090:4;16236:29;16261:3;16255:4;16236:29;:::i;:::-;16228:37;;16298:3;16295:1;16291:11;16285:4;16282:21;16274:29;;16014:295;;;;:::o;16314:1395::-;16431:37;16464:3;16431:37;:::i;:::-;16533:18;16525:6;16522:30;16519:56;;;16555:18;;:::i;:::-;16519:56;16599:38;16631:4;16625:11;16599:38;:::i;:::-;16684:67;16744:6;16736;16730:4;16684:67;:::i;:::-;16778:1;16802:4;16789:17;;16834:2;16826:6;16823:14;16851:1;16846:618;;;;17508:1;17525:6;17522:77;;;17574:9;17569:3;17565:19;17559:26;17550:35;;17522:77;17625:67;17685:6;17678:5;17625:67;:::i;:::-;17619:4;17612:81;17481:222;16816:887;;16846:618;16898:4;16894:9;16886:6;16882:22;16932:37;16964:4;16932:37;:::i;:::-;16991:1;17005:208;17019:7;17016:1;17013:14;17005:208;;;17098:9;17093:3;17089:19;17083:26;17075:6;17068:42;17149:1;17141:6;17137:14;17127:24;;17196:2;17185:9;17181:18;17168:31;;17042:4;17039:1;17035:12;17030:17;;17005:208;;;17241:6;17232:7;17229:19;17226:179;;;17299:9;17294:3;17290:19;17284:26;17342:48;17384:4;17376:6;17372:17;17361:9;17342:48;:::i;:::-;17334:6;17327:64;17249:156;17226:179;17451:1;17447;17439:6;17435:14;17431:22;17425:4;17418:36;16853:611;;;16816:887;;16406:1303;;;16314:1395;;:::o;17715:180::-;17763:77;17760:1;17753:88;17860:4;17857:1;17850:15;17884:4;17881:1;17874:15;17901:191;17941:3;17960:20;17978:1;17960:20;:::i;:::-;17955:25;;17994:20;18012:1;17994:20;:::i;:::-;17989:25;;18037:1;18034;18030:9;18023:16;;18058:3;18055:1;18052:10;18049:36;;;18065:18;;:::i;:::-;18049:36;17901:191;;;;:::o;18098:166::-;18238:18;18234:1;18226:6;18222:14;18215:42;18098:166;:::o;18270:366::-;18412:3;18433:67;18497:2;18492:3;18433:67;:::i;:::-;18426:74;;18509:93;18598:3;18509:93;:::i;:::-;18627:2;18622:3;18618:12;18611:19;;18270:366;;;:::o;18642:419::-;18808:4;18846:2;18835:9;18831:18;18823:26;;18895:9;18889:4;18885:20;18881:1;18870:9;18866:17;18859:47;18923:131;19049:4;18923:131;:::i;:::-;18915:139;;18642:419;;;:::o;19067:164::-;19207:16;19203:1;19195:6;19191:14;19184:40;19067:164;:::o;19237:366::-;19379:3;19400:67;19464:2;19459:3;19400:67;:::i;:::-;19393:74;;19476:93;19565:3;19476:93;:::i;:::-;19594:2;19589:3;19585:12;19578:19;;19237:366;;;:::o;19609:419::-;19775:4;19813:2;19802:9;19798:18;19790:26;;19862:9;19856:4;19852:20;19848:1;19837:9;19833:17;19826:47;19890:131;20016:4;19890:131;:::i;:::-;19882:139;;19609:419;;;:::o;20034:157::-;20174:9;20170:1;20162:6;20158:14;20151:33;20034:157;:::o;20197:365::-;20339:3;20360:66;20424:1;20419:3;20360:66;:::i;:::-;20353:73;;20435:93;20524:3;20435:93;:::i;:::-;20553:2;20548:3;20544:12;20537:19;;20197:365;;;:::o;20568:419::-;20734:4;20772:2;20761:9;20757:18;20749:26;;20821:9;20815:4;20811:20;20807:1;20796:9;20792:17;20785:47;20849:131;20975:4;20849:131;:::i;:::-;20841:139;;20568:419;;;:::o;20993:410::-;21033:7;21056:20;21074:1;21056:20;:::i;:::-;21051:25;;21090:20;21108:1;21090:20;:::i;:::-;21085:25;;21145:1;21142;21138:9;21167:30;21185:11;21167:30;:::i;:::-;21156:41;;21346:1;21337:7;21333:15;21330:1;21327:22;21307:1;21300:9;21280:83;21257:139;;21376:18;;:::i;:::-;21257:139;21041:362;20993:410;;;;:::o;21409:162::-;21549:14;21545:1;21537:6;21533:14;21526:38;21409:162;:::o;21577:366::-;21719:3;21740:67;21804:2;21799:3;21740:67;:::i;:::-;21733:74;;21816:93;21905:3;21816:93;:::i;:::-;21934:2;21929:3;21925:12;21918:19;;21577:366;;;:::o;21949:419::-;22115:4;22153:2;22142:9;22138:18;22130:26;;22202:9;22196:4;22192:20;22188:1;22177:9;22173:17;22166:47;22230:131;22356:4;22230:131;:::i;:::-;22222:139;;21949:419;;;:::o;22374:148::-;22476:11;22513:3;22498:18;;22374:148;;;;:::o;22528:161::-;22668:9;22664:1;22656:6;22652:14;22645:33;22528:161;:::o;22699:416::-;22859:3;22884:84;22966:1;22961:3;22884:84;:::i;:::-;22877:91;;22981:93;23070:3;22981:93;:::i;:::-;23103:1;23098:3;23094:11;23087:18;;22699:416;;;:::o;23125:410::-;23231:3;23263:39;23296:5;23263:39;:::i;:::-;23322:89;23404:6;23399:3;23322:89;:::i;:::-;23315:96;;23424:65;23482:6;23477:3;23470:4;23463:5;23459:16;23424:65;:::i;:::-;23518:6;23513:3;23509:16;23502:23;;23235:300;23125:410;;;;:::o;23545:159::-;23689:3;23685:1;23677:6;23673:14;23666:27;23545:159;:::o;23714:416::-;23874:3;23899:84;23981:1;23976:3;23899:84;:::i;:::-;23892:91;;23996:93;24085:3;23996:93;:::i;:::-;24118:1;24113:3;24109:11;24102:18;;23714:416;;;:::o;24140:163::-;24284:7;24280:1;24272:6;24268:14;24261:31;24140:163;:::o;24313:416::-;24473:3;24498:84;24580:1;24575:3;24498:84;:::i;:::-;24491:91;;24595:93;24684:3;24595:93;:::i;:::-;24717:1;24712:3;24708:11;24701:18;;24313:416;;;:::o;24739:1261::-;25222:3;25248:148;25392:3;25248:148;:::i;:::-;25241:155;;25417:95;25508:3;25499:6;25417:95;:::i;:::-;25410:102;;25533:148;25677:3;25533:148;:::i;:::-;25526:155;;25702:95;25793:3;25784:6;25702:95;:::i;:::-;25695:102;;25818:148;25962:3;25818:148;:::i;:::-;25811:155;;25987:3;25980:10;;24739:1261;;;;;:::o

Swarm Source

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