ETH Price: $2,442.62 (+3.42%)

Token

TheNoiser (NOISER)
 

Overview

Max Total Supply

746 NOISER

Holders

391

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
TheNoiser

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-19
*/

// -- - - ---   
// -- - - ---   
// -- - - ---    ________  __    __  ________        __    __   ______   ______   ______   ________  _______  
// -- - - ---   /        |/  |  /  |/        |      /  \  /  | /      \ /      | /      \ /        |/       \ 
// -- - - ---   $$$$$$$$/ $$ |  $$ |$$$$$$$$/       $$  \ $$ |/$$$$$$  |$$$$$$/ /$$$$$$  |$$$$$$$$/ $$$$$$$  |
// -- - - ---      $$ |   $$ |__$$ |$$ |__          $$$  \$$ |$$ |  $$ |  $$ |  $$ \__$$/ $$ |__    $$ |__$$ |
// -- - - ---      $$ |   $$    $$ |$$    |         $$$$  $$ |$$ |  $$ |  $$ |  $$      \ $$    |   $$    $$< 
// -- - - ---      $$ |   $$$$$$$$ |$$$$$/          $$ $$ $$ |$$ |  $$ |  $$ |   $$$$$$  |$$$$$/    $$$$$$$  |
// -- - - ---      $$ |   $$ |  $$ |$$ |_____       $$ |$$$$ |$$ \__$$ | _$$ |_ /  \__$$ |$$ |_____ $$ |  $$ |
// -- - - ---      $$ |   $$ |  $$ |$$       |      $$ | $$$ |$$    $$/ / $$   |$$    $$/ $$       |$$ |  $$ |
// -- - - ---      $$/    $$/   $$/ $$$$$$$$/       $$/   $$/  $$$$$$/  $$$$$$/  $$$$$$/  $$$$$$$$/ $$/   $$/ 
// -- - - ---                                                                                                 
// -- - - ---                                                                                                 
// -- - - ---            
// SPDX-License-Identifier: MIT                                                                                     


// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

    // The 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 tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (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 {
        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;
    }

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

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

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

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

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

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

    /**
     * @dev 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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

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

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/noiser.sol

pragma solidity ^0.8.4;





contract TheNoiser is Ownable, ERC721A, ReentrancyGuard {
    constructor() ERC721A("TheNoiser", "NOISER") {
        theNoiserSetting.price = 5000000000000000;
        theNoiserSetting.maxSupply = 10000;
        theNoiserSetting.maxMint = 5;
    }

    struct TheNoiserSetting {
        uint256 price;
        uint256 maxMint;
        uint256 maxSupply;
    }

    mapping(address => uint256) public minted;
    TheNoiserSetting public theNoiserSetting;

    function mint(uint256 quantity) external payable {
        TheNoiserSetting memory config = theNoiserSetting;
        uint256 price = uint256(config.price);
        uint256 maxMint = uint256(config.maxMint);
        uint256 buyed = getAddressBuyed(msg.sender);

        require(buyed == 0, "Unable to mint");

        require(
            totalSupply() + quantity <= getMaxSupply(),
            "Sold out."
        );
    
        require(
            buyed + quantity <= maxMint,
            "Exceed maxmium mint."
        );

        bool requirePay = quantity > 1 ? true : false;
        if (requirePay) {
            uint256 finalPrice = (quantity - 1) * price;
            
            require(
                finalPrice <= msg.value,
                "No enough eth."
            );
        }

        _safeMint(msg.sender, quantity);
        minted[msg.sender] += quantity;
    }

    function makeTheNoiser(uint256 quantity) external onlyOwner {
        require(
            totalSupply() + quantity <= getMaxSupply(),
            "Sold out."
        );

        _safeMint(msg.sender, quantity);
    }

    function getAddressBuyed(address owner) public view returns (uint256) {
        return minted[owner];
    }
    
    function getMaxSupply() private view returns (uint256) {
        TheNoiserSetting memory config = theNoiserSetting;
        uint256 max = uint256(config.maxSupply);
        return max;
    }

    string private _baseTokenURI;

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

    function setURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setPrice(uint256 _price) external onlyOwner {
        theNoiserSetting.price = _price;
    }

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "...");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getAddressBuyed","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"makeTheNoiser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","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":[],"name":"theNoiserSetting","outputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051806040016040528060098152602001682a3432a737b4b9b2b960b91b815250604051806040016040528060068152602001652727a4a9a2a960d11b8152506200006d62000067620000c160201b60201c565b620000c5565b81516200008290600390602085019062000115565b5080516200009890600490602084019062000115565b506000600190815560095550506611c37937e08000600b55612710600d556005600c55620001f8565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200012390620001bb565b90600052602060002090601f01602090048101928262000147576000855562000192565b82601f106200016257805160ff191683800117855562000192565b8280016001018555821562000192579182015b828111156200019257825182559160200191906001019062000175565b50620001a0929150620001a4565b5090565b5b80821115620001a05760008155600101620001a5565b600181811c90821680620001d057607f821691505b60208210811415620001f257634e487b7160e01b600052602260045260246000fd5b50919050565b61175e80620002086000396000f3fe6080604052600436106101665760003560e01c80636352211e116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610432578063df3eb7c014610452578063e985e9c51461048c578063f2fde38b146104d557600080fd5b8063a0712d68146103df578063a22cb465146103f2578063b88d4fde1461041257600080fd5b80636352211e1461033757806370a0823114610357578063715018a6146103775780638da5cb5b1461038c57806391b7f5ed146103aa57806395d89b41146103ca57600080fd5b806318160ddd1161012357806318160ddd1461025c5780631e7269c51461027f5780631fc895db146102ac57806323b872dd146102e25780633ccfd60b1461030257806342842e0e1461031757600080fd5b806301ffc9a71461016b57806302fe5305146101a057806306fdde03146101c2578063081812fc146101e4578063095ea7b31461021c578063152ea8121461023c575b600080fd5b34801561017757600080fd5b5061018b6101863660046114c1565b6104f5565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101c06101bb3660046114fb565b610547565b005b3480156101ce57600080fd5b506101d7610560565b604051610197919061161e565b3480156101f057600080fd5b506102046101ff36600461156d565b6105f2565b6040516001600160a01b039091168152602001610197565b34801561022857600080fd5b506101c0610237366004611497565b610636565b34801561024857600080fd5b506101c061025736600461156d565b6106d6565b34801561026857600080fd5b50600254600154035b604051908152602001610197565b34801561028b57600080fd5b5061027161029a3660046112f5565b600a6020526000908152604090205481565b3480156102b857600080fd5b506102716102c73660046112f5565b6001600160a01b03166000908152600a602052604090205490565b3480156102ee57600080fd5b506101c06102fd366004611343565b610761565b34801561030e57600080fd5b506101c06108f2565b34801561032357600080fd5b506101c0610332366004611343565b6109d8565b34801561034357600080fd5b5061020461035236600461156d565b6109f3565b34801561036357600080fd5b506102716103723660046112f5565b6109fe565b34801561038357600080fd5b506101c0610a4d565b34801561039857600080fd5b506000546001600160a01b0316610204565b3480156103b657600080fd5b506101c06103c536600461156d565b610a61565b3480156103d657600080fd5b506101d7610a6e565b6101c06103ed36600461156d565b610a7d565b3480156103fe57600080fd5b506101c061040d36600461145b565b610c75565b34801561041e57600080fd5b506101c061042d36600461137f565b610d0b565b34801561043e57600080fd5b506101d761044d36600461156d565b610d55565b34801561045e57600080fd5b50600b54600c54600d5461047192919083565b60408051938452602084019290925290820152606001610197565b34801561049857600080fd5b5061018b6104a7366004611310565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156104e157600080fd5b506101c06104f03660046112f5565b610dda565b60006301ffc9a760e01b6001600160e01b03198316148061052657506380ac58cd60e01b6001600160e01b03198316145b806105415750635b5e139f60e01b6001600160e01b03198316145b92915050565b61054f610e50565b61055b600e8383611240565b505050565b60606003805461056f906116ab565b80601f016020809104026020016040519081016040528092919081815260200182805461059b906116ab565b80156105e85780601f106105bd576101008083540402835291602001916105e8565b820191906000526020600020905b8154815290600101906020018083116105cb57829003601f168201915b5050505050905090565b60006105fd82610eaa565b61061a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610641826109f3565b9050336001600160a01b0382161461067a5761065d81336104a7565b61067a576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6106de610e50565b60408051606081018252600b548152600c546020820152600d5491018190528161070b6002546001540390565b6107159190611631565b11156107545760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b60448201526064015b60405180910390fd5b61075e3382610ed2565b50565b600061076c82610ef0565b9050836001600160a01b0316816001600160a01b03161461079f5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176107ec576107cf86336104a7565b6107ec57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661081357604051633a954ecd60e21b815260040160405180910390fd5b801561081e57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b83166108a957600184016000818152600560205260409020546108a75760015481146108a75760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6108fa610e50565b6002600954141561094d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161074b565b6002600955604051600090339047908381818185875af1925050503d8060008114610994576040519150601f19603f3d011682016040523d82523d6000602084013e610999565b606091505b50509050806109d05760405162461bcd60e51b815260206004820152600360248201526217171760e91b604482015260640161074b565b506001600955565b61055b83838360405180602001604052806000815250610d0b565b600061054182610ef0565b60006001600160a01b038216610a27576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610a55610e50565b610a5f6000610f51565b565b610a69610e50565b600b55565b60606004805461056f906116ab565b60408051606081018252600b54808252600c5460208301819052600d549383019390935290916000610ac4336001600160a01b03166000908152600a602052604090205490565b90508015610b055760405162461bcd60e51b815260206004820152600e60248201526d155b98589b19481d1bc81b5a5b9d60921b604482015260640161074b565b60408051606081018252600b548152600c546020820152600d54910181905285610b326002546001540390565b610b3c9190611631565b1115610b765760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b604482015260640161074b565b81610b818683611631565b1115610bc65760405162461bcd60e51b815260206004820152601460248201527322bc31b2b2b21036b0bc36b4bab69036b4b73a1760611b604482015260640161074b565b600060018611610bd7576000610bda565b60015b90508015610c3f57600084610bf0600189611668565b610bfa9190611649565b905034811115610c3d5760405162461bcd60e51b815260206004820152600e60248201526d27379032b737bab3b41032ba341760911b604482015260640161074b565b505b610c493387610ed2565b336000908152600a602052604081208054889290610c68908490611631565b9091555050505050505050565b6001600160a01b038216331415610c9f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d16848484610761565b6001600160a01b0383163b15610d4f57610d3284848484610fa1565b610d4f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d6082610eaa565b610d7d57604051630a14c4b560e41b815260040160405180910390fd5b6000610d87611098565b9050805160001415610da85760405180602001604052806000815250610dd3565b80610db2846110a7565b604051602001610dc39291906115b2565b6040516020818303038152906040525b9392505050565b610de2610e50565b6001600160a01b038116610e475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074b565b61075e81610f51565b6000546001600160a01b03163314610a5f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074b565b600060015482108015610541575050600090815260056020526040902054600160e01b161590565b610eec8282604051806020016040528060008152506110f6565b5050565b600081600154811015610f3857600081815260056020526040902054600160e01b8116610f36575b80610dd3575060001901600081815260056020526040902054610f18565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610fd69033908990889088906004016115e1565b602060405180830381600087803b158015610ff057600080fd5b505af1925050508015611020575060408051601f3d908101601f1916820190925261101d918101906114de565b60015b61107b573d80801561104e576040519150601f19603f3d011682016040523d82523d6000602084013e611053565b606091505b508051611073576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600e805461056f906116ab565b604080516080810191829052607f0190826030600a8206018353600a90045b80156110e457600183039250600a81066030018353600a90046110c6565b50819003601f19909101908152919050565b6111008383611163565b6001600160a01b0383163b1561055b576001548281035b61112a6000868380600101945086610fa1565b611147576040516368d2bf6b60e11b815260040160405180910390fd5b81811061111757816001541461115c57600080fd5b5050505050565b6001546001600160a01b03831661118c57604051622e076360e81b815260040160405180910390fd5b816111aa5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106111f45760015550505050565b82805461124c906116ab565b90600052602060002090601f01602090048101928261126e57600085556112b4565b82601f106112875782800160ff198235161785556112b4565b828001600101855582156112b4579182015b828111156112b4578235825591602001919060010190611299565b506112c09291506112c4565b5090565b5b808211156112c057600081556001016112c5565b80356001600160a01b03811681146112f057600080fd5b919050565b60006020828403121561130757600080fd5b610dd3826112d9565b6000806040838503121561132357600080fd5b61132c836112d9565b915061133a602084016112d9565b90509250929050565b60008060006060848603121561135857600080fd5b611361846112d9565b925061136f602085016112d9565b9150604084013590509250925092565b6000806000806080858703121561139557600080fd5b61139e856112d9565b93506113ac602086016112d9565b925060408501359150606085013567ffffffffffffffff808211156113d057600080fd5b818701915087601f8301126113e457600080fd5b8135818111156113f6576113f66116fc565b604051601f8201601f19908116603f0116810190838211818310171561141e5761141e6116fc565b816040528281528a602084870101111561143757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561146e57600080fd5b611477836112d9565b91506020830135801515811461148c57600080fd5b809150509250929050565b600080604083850312156114aa57600080fd5b6114b3836112d9565b946020939093013593505050565b6000602082840312156114d357600080fd5b8135610dd381611712565b6000602082840312156114f057600080fd5b8151610dd381611712565b6000806020838503121561150e57600080fd5b823567ffffffffffffffff8082111561152657600080fd5b818501915085601f83011261153a57600080fd5b81358181111561154957600080fd5b86602082850101111561155b57600080fd5b60209290920196919550909350505050565b60006020828403121561157f57600080fd5b5035919050565b6000815180845261159e81602086016020860161167f565b601f01601f19169290920160200192915050565b600083516115c481846020880161167f565b8351908301906115d881836020880161167f565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061161490830184611586565b9695505050505050565b602081526000610dd36020830184611586565b60008219821115611644576116446116e6565b500190565b6000816000190483118215151615611663576116636116e6565b500290565b60008282101561167a5761167a6116e6565b500390565b60005b8381101561169a578181015183820152602001611682565b83811115610d4f5750506000910152565b600181811c908216806116bf57607f821691505b602082108114156116e057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461075e57600080fdfea2646970667358221220980a82f54a6d3977651f33ada10e68b118b807ec60ef7e43d3dafbe3dd42a31b64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101665760003560e01c80636352211e116100d1578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610432578063df3eb7c014610452578063e985e9c51461048c578063f2fde38b146104d557600080fd5b8063a0712d68146103df578063a22cb465146103f2578063b88d4fde1461041257600080fd5b80636352211e1461033757806370a0823114610357578063715018a6146103775780638da5cb5b1461038c57806391b7f5ed146103aa57806395d89b41146103ca57600080fd5b806318160ddd1161012357806318160ddd1461025c5780631e7269c51461027f5780631fc895db146102ac57806323b872dd146102e25780633ccfd60b1461030257806342842e0e1461031757600080fd5b806301ffc9a71461016b57806302fe5305146101a057806306fdde03146101c2578063081812fc146101e4578063095ea7b31461021c578063152ea8121461023c575b600080fd5b34801561017757600080fd5b5061018b6101863660046114c1565b6104f5565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101c06101bb3660046114fb565b610547565b005b3480156101ce57600080fd5b506101d7610560565b604051610197919061161e565b3480156101f057600080fd5b506102046101ff36600461156d565b6105f2565b6040516001600160a01b039091168152602001610197565b34801561022857600080fd5b506101c0610237366004611497565b610636565b34801561024857600080fd5b506101c061025736600461156d565b6106d6565b34801561026857600080fd5b50600254600154035b604051908152602001610197565b34801561028b57600080fd5b5061027161029a3660046112f5565b600a6020526000908152604090205481565b3480156102b857600080fd5b506102716102c73660046112f5565b6001600160a01b03166000908152600a602052604090205490565b3480156102ee57600080fd5b506101c06102fd366004611343565b610761565b34801561030e57600080fd5b506101c06108f2565b34801561032357600080fd5b506101c0610332366004611343565b6109d8565b34801561034357600080fd5b5061020461035236600461156d565b6109f3565b34801561036357600080fd5b506102716103723660046112f5565b6109fe565b34801561038357600080fd5b506101c0610a4d565b34801561039857600080fd5b506000546001600160a01b0316610204565b3480156103b657600080fd5b506101c06103c536600461156d565b610a61565b3480156103d657600080fd5b506101d7610a6e565b6101c06103ed36600461156d565b610a7d565b3480156103fe57600080fd5b506101c061040d36600461145b565b610c75565b34801561041e57600080fd5b506101c061042d36600461137f565b610d0b565b34801561043e57600080fd5b506101d761044d36600461156d565b610d55565b34801561045e57600080fd5b50600b54600c54600d5461047192919083565b60408051938452602084019290925290820152606001610197565b34801561049857600080fd5b5061018b6104a7366004611310565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156104e157600080fd5b506101c06104f03660046112f5565b610dda565b60006301ffc9a760e01b6001600160e01b03198316148061052657506380ac58cd60e01b6001600160e01b03198316145b806105415750635b5e139f60e01b6001600160e01b03198316145b92915050565b61054f610e50565b61055b600e8383611240565b505050565b60606003805461056f906116ab565b80601f016020809104026020016040519081016040528092919081815260200182805461059b906116ab565b80156105e85780601f106105bd576101008083540402835291602001916105e8565b820191906000526020600020905b8154815290600101906020018083116105cb57829003601f168201915b5050505050905090565b60006105fd82610eaa565b61061a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610641826109f3565b9050336001600160a01b0382161461067a5761065d81336104a7565b61067a576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6106de610e50565b60408051606081018252600b548152600c546020820152600d5491018190528161070b6002546001540390565b6107159190611631565b11156107545760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b60448201526064015b60405180910390fd5b61075e3382610ed2565b50565b600061076c82610ef0565b9050836001600160a01b0316816001600160a01b03161461079f5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176107ec576107cf86336104a7565b6107ec57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661081357604051633a954ecd60e21b815260040160405180910390fd5b801561081e57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b83166108a957600184016000818152600560205260409020546108a75760015481146108a75760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6108fa610e50565b6002600954141561094d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161074b565b6002600955604051600090339047908381818185875af1925050503d8060008114610994576040519150601f19603f3d011682016040523d82523d6000602084013e610999565b606091505b50509050806109d05760405162461bcd60e51b815260206004820152600360248201526217171760e91b604482015260640161074b565b506001600955565b61055b83838360405180602001604052806000815250610d0b565b600061054182610ef0565b60006001600160a01b038216610a27576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610a55610e50565b610a5f6000610f51565b565b610a69610e50565b600b55565b60606004805461056f906116ab565b60408051606081018252600b54808252600c5460208301819052600d549383019390935290916000610ac4336001600160a01b03166000908152600a602052604090205490565b90508015610b055760405162461bcd60e51b815260206004820152600e60248201526d155b98589b19481d1bc81b5a5b9d60921b604482015260640161074b565b60408051606081018252600b548152600c546020820152600d54910181905285610b326002546001540390565b610b3c9190611631565b1115610b765760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b604482015260640161074b565b81610b818683611631565b1115610bc65760405162461bcd60e51b815260206004820152601460248201527322bc31b2b2b21036b0bc36b4bab69036b4b73a1760611b604482015260640161074b565b600060018611610bd7576000610bda565b60015b90508015610c3f57600084610bf0600189611668565b610bfa9190611649565b905034811115610c3d5760405162461bcd60e51b815260206004820152600e60248201526d27379032b737bab3b41032ba341760911b604482015260640161074b565b505b610c493387610ed2565b336000908152600a602052604081208054889290610c68908490611631565b9091555050505050505050565b6001600160a01b038216331415610c9f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d16848484610761565b6001600160a01b0383163b15610d4f57610d3284848484610fa1565b610d4f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d6082610eaa565b610d7d57604051630a14c4b560e41b815260040160405180910390fd5b6000610d87611098565b9050805160001415610da85760405180602001604052806000815250610dd3565b80610db2846110a7565b604051602001610dc39291906115b2565b6040516020818303038152906040525b9392505050565b610de2610e50565b6001600160a01b038116610e475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074b565b61075e81610f51565b6000546001600160a01b03163314610a5f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074b565b600060015482108015610541575050600090815260056020526040902054600160e01b161590565b610eec8282604051806020016040528060008152506110f6565b5050565b600081600154811015610f3857600081815260056020526040902054600160e01b8116610f36575b80610dd3575060001901600081815260056020526040902054610f18565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610fd69033908990889088906004016115e1565b602060405180830381600087803b158015610ff057600080fd5b505af1925050508015611020575060408051601f3d908101601f1916820190925261101d918101906114de565b60015b61107b573d80801561104e576040519150601f19603f3d011682016040523d82523d6000602084013e611053565b606091505b508051611073576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600e805461056f906116ab565b604080516080810191829052607f0190826030600a8206018353600a90045b80156110e457600183039250600a81066030018353600a90046110c6565b50819003601f19909101908152919050565b6111008383611163565b6001600160a01b0383163b1561055b576001548281035b61112a6000868380600101945086610fa1565b611147576040516368d2bf6b60e11b815260040160405180910390fd5b81811061111757816001541461115c57600080fd5b5050505050565b6001546001600160a01b03831661118c57604051622e076360e81b815260040160405180910390fd5b816111aa5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106111f45760015550505050565b82805461124c906116ab565b90600052602060002090601f01602090048101928261126e57600085556112b4565b82601f106112875782800160ff198235161785556112b4565b828001600101855582156112b4579182015b828111156112b4578235825591602001919060010190611299565b506112c09291506112c4565b5090565b5b808211156112c057600081556001016112c5565b80356001600160a01b03811681146112f057600080fd5b919050565b60006020828403121561130757600080fd5b610dd3826112d9565b6000806040838503121561132357600080fd5b61132c836112d9565b915061133a602084016112d9565b90509250929050565b60008060006060848603121561135857600080fd5b611361846112d9565b925061136f602085016112d9565b9150604084013590509250925092565b6000806000806080858703121561139557600080fd5b61139e856112d9565b93506113ac602086016112d9565b925060408501359150606085013567ffffffffffffffff808211156113d057600080fd5b818701915087601f8301126113e457600080fd5b8135818111156113f6576113f66116fc565b604051601f8201601f19908116603f0116810190838211818310171561141e5761141e6116fc565b816040528281528a602084870101111561143757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561146e57600080fd5b611477836112d9565b91506020830135801515811461148c57600080fd5b809150509250929050565b600080604083850312156114aa57600080fd5b6114b3836112d9565b946020939093013593505050565b6000602082840312156114d357600080fd5b8135610dd381611712565b6000602082840312156114f057600080fd5b8151610dd381611712565b6000806020838503121561150e57600080fd5b823567ffffffffffffffff8082111561152657600080fd5b818501915085601f83011261153a57600080fd5b81358181111561154957600080fd5b86602082850101111561155b57600080fd5b60209290920196919550909350505050565b60006020828403121561157f57600080fd5b5035919050565b6000815180845261159e81602086016020860161167f565b601f01601f19169290920160200192915050565b600083516115c481846020880161167f565b8351908301906115d881836020880161167f565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061161490830184611586565b9695505050505050565b602081526000610dd36020830184611586565b60008219821115611644576116446116e6565b500190565b6000816000190483118215151615611663576116636116e6565b500290565b60008282101561167a5761167a6116e6565b500390565b60005b8381101561169a578181015183820152602001611682565b83811115610d4f5750506000910152565b600181811c908216806116bf57607f821691505b602082108114156116e057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461075e57600080fdfea2646970667358221220980a82f54a6d3977651f33ada10e68b118b807ec60ef7e43d3dafbe3dd42a31b64736f6c63430008070033

Deployed Bytecode Sourcemap

52561:2510:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16009:615;;;;;;;;;;-1:-1:-1;16009:615:0;;;;;:::i;:::-;;:::i;:::-;;;5834:14:1;;5827:22;5809:41;;5797:2;5782:18;16009:615:0;;;;;;;;54674:102;;;;;;;;;;-1:-1:-1;54674:102:0;;;;;:::i;:::-;;:::i;:::-;;21656:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23602:204::-;;;;;;;;;;-1:-1:-1;23602:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5132:32:1;;;5114:51;;5102:2;5087:18;23602:204:0;4968:203:1;23150:386:0;;;;;;;;;;-1:-1:-1;23150:386:0;;;;;:::i;:::-;;:::i;53960:224::-;;;;;;;;;;-1:-1:-1;53960:224:0;;;;;:::i;:::-;;:::i;15063:315::-;;;;;;;;;;-1:-1:-1;15329:12:0;;15313:13;;:28;15063:315;;;9062:25:1;;;9050:2;9035:18;15063:315:0;8916:177:1;52939:41:0;;;;;;;;;;-1:-1:-1;52939:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;54192:109;;;;;;;;;;-1:-1:-1;54192:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;54280:13:0;54253:7;54280:13;;;:6;:13;;;;;;;54192:109;32867:2800;;;;;;;;;;-1:-1:-1;32867:2800:0;;;;;:::i;:::-;;:::i;54895:173::-;;;;;;;;;;;;;:::i;24492:185::-;;;;;;;;;;-1:-1:-1;24492:185:0;;;;;:::i;:::-;;:::i;21445:144::-;;;;;;;;;;-1:-1:-1;21445:144:0;;;;;:::i;:::-;;:::i;16688:224::-;;;;;;;;;;-1:-1:-1;16688:224:0;;;;;:::i;:::-;;:::i;51676:103::-;;;;;;;;;;;;;:::i;51028:87::-;;;;;;;;;;-1:-1:-1;51074:7:0;51101:6;-1:-1:-1;;;;;51101:6:0;51028:87;;54784:103;;;;;;;;;;-1:-1:-1;54784:103:0;;;;;:::i;:::-;;:::i;21825:104::-;;;;;;;;;;;;;:::i;53036:916::-;;;;;;:::i;:::-;;:::i;23878:308::-;;;;;;;;;;-1:-1:-1;23878:308:0;;;;;:::i;:::-;;:::i;24748:399::-;;;;;;;;;;-1:-1:-1;24748:399:0;;;;;:::i;:::-;;:::i;22000:318::-;;;;;;;;;;-1:-1:-1;22000:318:0;;;;;:::i;:::-;;:::i;52987:40::-;;;;;;;;;;-1:-1:-1;52987:40:0;;;;;;;;;;;;;;;;9300:25:1;;;9356:2;9341:18;;9334:34;;;;9384:18;;;9377:34;9288:2;9273:18;52987:40:0;9098:319:1;24257:164:0;;;;;;;;;;-1:-1:-1;24257:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24378:25:0;;;24354:4;24378:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24257:164;51934:201;;;;;;;;;;-1:-1:-1;51934:201:0;;;;;:::i;:::-;;:::i;16009:615::-;16094:4;-1:-1:-1;;;;;;;;;16394:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16471:25:0;;;16394:102;:179;;;-1:-1:-1;;;;;;;;;;16548:25:0;;;16394:179;16374:199;16009:615;-1:-1:-1;;16009:615:0:o;54674:102::-;50914:13;:11;:13::i;:::-;54745:23:::1;:13;54761:7:::0;;54745:23:::1;:::i;:::-;;54674:102:::0;;:::o;21656:100::-;21710:13;21743:5;21736:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21656:100;:::o;23602:204::-;23670:7;23695:16;23703:7;23695;:16::i;:::-;23690:64;;23720:34;;-1:-1:-1;;;23720:34:0;;;;;;;;;;;23690:64;-1:-1:-1;23774:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23774:24:0;;23602:204::o;23150:386::-;23223:13;23239:16;23247:7;23239;:16::i;:::-;23223:32;-1:-1:-1;44050:10:0;-1:-1:-1;;;;;23272:28:0;;;23268:175;;23320:44;23337:5;44050:10;24257:164;:::i;23320:44::-;23315:128;;23392:35;;-1:-1:-1;;;23392:35:0;;;;;;;;;;;23315:128;23455:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23455:29:0;-1:-1:-1;;;;;23455:29:0;;;;;;;;;23500:28;;23455:24;;23500:28;;;;;;;23212:324;23150:386;;:::o;53960:224::-;50914:13;:11;:13::i;:::-;54379:49;;;;;;;;54412:16;54379:49;;;;;;;;;;;;;;;;54069:8:::1;54053:13;15329:12:::0;;15313:13;;:28;;15063:315;54053:13:::1;:24;;;;:::i;:::-;:42;;54031:101;;;::::0;-1:-1:-1;;;54031:101:0;;8421:2:1;54031:101:0::1;::::0;::::1;8403:21:1::0;8460:1;8440:18;;;8433:29;-1:-1:-1;;;8478:18:1;;;8471:39;8527:18;;54031:101:0::1;;;;;;;;;54145:31;54155:10;54167:8;54145:9;:31::i;:::-;53960:224:::0;:::o;32867:2800::-;33001:27;33031;33050:7;33031:18;:27::i;:::-;33001:57;;33116:4;-1:-1:-1;;;;;33075:45:0;33091:19;-1:-1:-1;;;;;33075:45:0;;33071:86;;33129:28;;-1:-1:-1;;;33129:28:0;;;;;;;;;;;33071:86;33171:27;31597:21;;;31424:15;31639:4;31632:36;31721:4;31705:21;;31811:26;;44050:10;32564:30;;;-1:-1:-1;;;;;32262:26:0;;32543:19;;;32540:55;33350:174;;33437:43;33454:4;44050:10;24257:164;:::i;33437:43::-;33432:92;;33489:35;;-1:-1:-1;;;33489:35:0;;;;;;;;;;;33432:92;-1:-1:-1;;;;;33541:16:0;;33537:52;;33566:23;;-1:-1:-1;;;33566:23:0;;;;;;;;;;;33537:52;33738:15;33735:160;;;33878:1;33857:19;33850:30;33735:160;-1:-1:-1;;;;;34273:24:0;;;;;;;:18;:24;;;;;;34271:26;;-1:-1:-1;;34271:26:0;;;34342:22;;;;;;;;;34340:24;;-1:-1:-1;34340:24:0;;;21344:11;21320:22;21316:40;21303:62;-1:-1:-1;;;21303:62:0;34635:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;34929:46:0;;34925:626;;35033:1;35023:11;;35001:19;35156:30;;;:17;:30;;;;;;35152:384;;35294:13;;35279:11;:28;35275:242;;35441:30;;;;:17;:30;;;;;:52;;;35275:242;34982:569;34925:626;35598:7;35594:2;-1:-1:-1;;;;;35579:27:0;35588:4;-1:-1:-1;;;;;35579:27:0;;;;;;;;;;;32990:2677;;;32867:2800;;;:::o;54895:173::-;50914:13;:11;:13::i;:::-;47953:1:::1;48551:7;;:19;;48543:63;;;::::0;-1:-1:-1;;;48543:63:0;;8758:2:1;48543:63:0::1;::::0;::::1;8740:21:1::0;8797:2;8777:18;;;8770:30;8836:33;8816:18;;;8809:61;8887:18;;48543:63:0::1;8556:355:1::0;48543:63:0::1;47953:1;48684:7;:18:::0;54977:49:::2;::::0;54959:12:::2;::::0;54977:10:::2;::::0;55000:21:::2;::::0;54959:12;54977:49;54959:12;54977:49;55000:21;54977:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54958:68;;;55045:7;55037:23;;;::::0;-1:-1:-1;;;55037:23:0;;7747:2:1;55037:23:0::2;::::0;::::2;7729:21:1::0;7786:1;7766:18;;;7759:29;-1:-1:-1;;;7804:18:1;;;7797:33;7847:18;;55037:23:0::2;7545:326:1::0;55037:23:0::2;-1:-1:-1::0;47909:1:0::1;48863:7;:22:::0;54895:173::o;24492:185::-;24630:39;24647:4;24653:2;24657:7;24630:39;;;;;;;;;;;;:16;:39::i;21445:144::-;21509:7;21552:27;21571:7;21552:18;:27::i;16688:224::-;16752:7;-1:-1:-1;;;;;16776:19:0;;16772:60;;16804:28;;-1:-1:-1;;;16804:28:0;;;;;;;;;;;16772:60;-1:-1:-1;;;;;;16850:25:0;;;;;:18;:25;;;;;;11243:13;16850:54;;16688:224::o;51676:103::-;50914:13;:11;:13::i;:::-;51741:30:::1;51768:1;51741:18;:30::i;:::-;51676:103::o:0;54784:::-;50914:13;:11;:13::i;:::-;54848:16:::1;:31:::0;54784:103::o;21825:104::-;21881:13;21914:7;21907:14;;;;;:::i;53036:916::-;53096:49;;;;;;;;53129:16;53096:49;;;;;;;;;;;;;;;;;;;;;;;:30;53272:27;53288:10;-1:-1:-1;;;;;54280:13:0;54253:7;54280:13;;;:6;:13;;;;;;;54192:109;53272:27;53256:43;-1:-1:-1;53320:10:0;;53312:37;;;;-1:-1:-1;;;53312:37:0;;6287:2:1;53312:37:0;;;6269:21:1;6326:2;6306:18;;;6299:30;-1:-1:-1;;;6345:18:1;;;6338:44;6399:18;;53312:37:0;6085:338:1;53312:37:0;54379:49;;;;;;;;54412:16;54379:49;;;;;;;;;;;;;;;;53400:8;53384:13;15329:12;;15313:13;;:28;;15063:315;53384:13;:24;;;;:::i;:::-;:42;;53362:101;;;;-1:-1:-1;;;53362:101:0;;8421:2:1;53362:101:0;;;8403:21:1;8460:1;8440:18;;;8433:29;-1:-1:-1;;;8478:18:1;;;8471:39;8527:18;;53362:101:0;8219:332:1;53362:101:0;53522:7;53502:16;53510:8;53502:5;:16;:::i;:::-;:27;;53480:97;;;;-1:-1:-1;;;53480:97:0;;7037:2:1;53480:97:0;;;7019:21:1;7076:2;7056:18;;;7049:30;-1:-1:-1;;;7095:18:1;;;7088:50;7155:18;;53480:97:0;6835:344:1;53480:97:0;53590:15;53619:1;53608:8;:12;:27;;53630:5;53608:27;;;53623:4;53608:27;53590:45;;53650:10;53646:214;;;53677:18;53715:5;53699:12;53710:1;53699:8;:12;:::i;:::-;53698:22;;;;:::i;:::-;53677:43;;53789:9;53775:10;:23;;53749:99;;;;-1:-1:-1;;;53749:99:0;;8078:2:1;53749:99:0;;;8060:21:1;8117:2;8097:18;;;8090:30;-1:-1:-1;;;8136:18:1;;;8129:44;8190:18;;53749:99:0;7876:338:1;53749:99:0;53662:198;53646:214;53872:31;53882:10;53894:8;53872:9;:31::i;:::-;53921:10;53914:18;;;;:6;:18;;;;;:30;;53936:8;;53914:18;:30;;53936:8;;53914:30;:::i;:::-;;;;-1:-1:-1;;;;;;;;53036:916:0:o;23878:308::-;-1:-1:-1;;;;;23977:31:0;;44050:10;23977:31;23973:61;;;24017:17;;-1:-1:-1;;;24017:17:0;;;;;;;;;;;23973:61;44050:10;24047:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24047:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24047:60:0;;;;;;;;;;24123:55;;5809:41:1;;;24047:49:0;;44050:10;24123:55;;5782:18:1;24123:55:0;;;;;;;23878:308;;:::o;24748:399::-;24915:31;24928:4;24934:2;24938:7;24915:12;:31::i;:::-;-1:-1:-1;;;;;24961:14:0;;;:19;24957:183;;25000:56;25031:4;25037:2;25041:7;25050:5;25000:30;:56::i;:::-;24995:145;;25084:40;;-1:-1:-1;;;25084:40:0;;;;;;;;;;;24995:145;24748:399;;;;:::o;22000:318::-;22073:13;22104:16;22112:7;22104;:16::i;:::-;22099:59;;22129:29;;-1:-1:-1;;;22129:29:0;;;;;;;;;;;22099:59;22171:21;22195:10;:8;:10::i;:::-;22171:34;;22229:7;22223:21;22248:1;22223:26;;:87;;;;;;;;;;;;;;;;;22276:7;22285:18;22295:7;22285:9;:18::i;:::-;22259:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22223:87;22216:94;22000:318;-1:-1:-1;;;22000:318:0:o;51934:201::-;50914:13;:11;:13::i;:::-;-1:-1:-1;;;;;52023:22:0;::::1;52015:73;;;::::0;-1:-1:-1;;;52015:73:0;;6630:2:1;52015:73:0::1;::::0;::::1;6612:21:1::0;6669:2;6649:18;;;6642:30;6708:34;6688:18;;;6681:62;-1:-1:-1;;;6759:18:1;;;6752:36;6805:19;;52015:73:0::1;6428:402:1::0;52015:73:0::1;52099:28;52118:8;52099:18;:28::i;51193:132::-:0;51074:7;51101:6;-1:-1:-1;;;;;51101:6:0;44050:10;51257:23;51249:68;;;;-1:-1:-1;;;51249:68:0;;7386:2:1;51249:68:0;;;7368:21:1;;;7405:18;;;7398:30;7464:34;7444:18;;;7437:62;7516:18;;51249:68:0;7184:356:1;25402:273:0;25459:4;25549:13;;25539:7;:23;25496:152;;;;-1:-1:-1;;25600:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25600:43:0;:48;;25402:273::o;25759:104::-;25828:27;25838:2;25842:8;25828:27;;;;;;;;;;;;:9;:27::i;:::-;25759:104;;:::o;18362:1129::-;18429:7;18464;18566:13;;18559:4;:20;18555:869;;;18604:14;18621:23;;;:17;:23;;;;;;-1:-1:-1;;;18710:23:0;;18706:699;;19229:113;19236:11;19229:113;;-1:-1:-1;;;19307:6:0;19289:25;;;;:17;:25;;;;;;19229:113;;18706:699;18581:843;18555:869;19452:31;;-1:-1:-1;;;19452:31:0;;;;;;;;;;;52295:191;52369:16;52388:6;;-1:-1:-1;;;;;52405:17:0;;;-1:-1:-1;;;;;;52405:17:0;;;;;;52438:40;;52388:6;;;;;;;52438:40;;52369:16;52438:40;52358:128;52295:191;:::o;39618:716::-;39802:88;;-1:-1:-1;;;39802:88:0;;39781:4;;-1:-1:-1;;;;;39802:45:0;;;;;:88;;44050:10;;39869:4;;39875:7;;39884:5;;39802:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39802:88:0;;;;;;;;-1:-1:-1;;39802:88:0;;;;;;;;;;;;:::i;:::-;;;39798:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40085:13:0;;40081:235;;40131:40;;-1:-1:-1;;;40131:40:0;;;;;;;;;;;40081:235;40274:6;40268:13;40259:6;40255:2;40251:15;40244:38;39798:529;-1:-1:-1;;;;;;39961:64:0;-1:-1:-1;;;39961:64:0;;-1:-1:-1;39618:716:0;;;;;;:::o;54552:114::-;54612:13;54645;54638:20;;;;;:::i;44174:1960::-;44643:4;44637:11;;44650:3;44633:21;;44728:17;;;;45424:11;;;45303:5;45556:2;45570;45560:13;;45552:22;45424:11;45539:36;45611:2;45601:13;;45195:697;45630:4;45195:697;;;45821:1;45816:3;45812:11;45805:18;;45872:2;45866:4;45862:13;45858:2;45854:22;45849:3;45841:36;45725:2;45715:13;;45195:697;;;-1:-1:-1;45922:13:0;;;-1:-1:-1;;46037:12:0;;;46097:19;;;46037:12;44174:1960;-1:-1:-1;44174:1960:0:o;26279:681::-;26402:19;26408:2;26412:8;26402:5;:19::i;:::-;-1:-1:-1;;;;;26463:14:0;;;:19;26459:483;;26517:13;;26565:14;;;26598:233;26629:62;26668:1;26672:2;26676:7;;;;;;26685:5;26629:30;:62::i;:::-;26624:167;;26727:40;;-1:-1:-1;;;26727:40:0;;;;;;;;;;;26624:167;26826:3;26818:5;:11;26598:233;;26913:3;26896:13;;:20;26892:34;;26918:8;;;26892:34;26484:458;;26279:681;;;:::o;27233:1529::-;27321:13;;-1:-1:-1;;;;;27349:16:0;;27345:48;;27374:19;;-1:-1:-1;;;27374:19:0;;;;;;;;;;;27345:48;27408:13;27404:44;;27430:18;;-1:-1:-1;;;27430:18:0;;;;;;;;;;;27404:44;-1:-1:-1;;;;;27936:22:0;;;;;;:18;:22;;11380:2;27936:22;;:70;;27974:31;27962:44;;27936:70;;;21344:11;21320:22;21316:40;-1:-1:-1;23054:15:0;;23029:23;23025:45;21313:51;21303:62;28249:31;;;;:17;:31;;;;;:173;28267:12;28498:23;;;28536:101;28563:35;;28588:9;;;;;-1:-1:-1;;;;;28563:35:0;;;28580:1;;28563:35;;28580:1;;28563:35;28632:3;28622:7;:13;28536:101;;28653:13;:19;-1:-1:-1;54745:23:0::1;54674:102:::0;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:470::-;4462:3;4500:6;4494:13;4516:53;4562:6;4557:3;4550:4;4542:6;4538:17;4516:53;:::i;:::-;4632:13;;4591:16;;;;4654:57;4632:13;4591:16;4688:4;4676:17;;4654:57;:::i;:::-;4727:20;;4283:470;-1:-1:-1;;;;4283:470:1:o;5176:488::-;-1:-1:-1;;;;;5445:15:1;;;5427:34;;5497:15;;5492:2;5477:18;;5470:43;5544:2;5529:18;;5522:34;;;5592:3;5587:2;5572:18;;5565:31;;;5370:4;;5613:45;;5638:19;;5630:6;5613:45;:::i;:::-;5605:53;5176:488;-1:-1:-1;;;;;;5176:488:1:o;5861:219::-;6010:2;5999:9;5992:21;5973:4;6030:44;6070:2;6059:9;6055:18;6047:6;6030:44;:::i;9422:128::-;9462:3;9493:1;9489:6;9486:1;9483:13;9480:39;;;9499:18;;:::i;:::-;-1:-1:-1;9535:9:1;;9422:128::o;9555:168::-;9595:7;9661:1;9657;9653:6;9649:14;9646:1;9643:21;9638:1;9631:9;9624:17;9620:45;9617:71;;;9668:18;;:::i;:::-;-1:-1:-1;9708:9:1;;9555:168::o;9728:125::-;9768:4;9796:1;9793;9790:8;9787:34;;;9801:18;;:::i;:::-;-1:-1:-1;9838:9:1;;9728:125::o;9858:258::-;9930:1;9940:113;9954:6;9951:1;9948:13;9940:113;;;10030:11;;;10024:18;10011:11;;;10004:39;9976:2;9969:10;9940:113;;;10071:6;10068:1;10065:13;10062:48;;;-1:-1:-1;;10106:1:1;10088:16;;10081:27;9858:258::o;10121:380::-;10200:1;10196:12;;;;10243;;;10264:61;;10318:4;10310:6;10306:17;10296:27;;10264:61;10371:2;10363:6;10360:14;10340:18;10337:38;10334:161;;;10417:10;10412:3;10408:20;10405:1;10398:31;10452:4;10449:1;10442:15;10480:4;10477:1;10470:15;10334:161;;10121:380;;;:::o;10506:127::-;10567:10;10562:3;10558:20;10555:1;10548:31;10598:4;10595:1;10588:15;10622:4;10619:1;10612:15;10638:127;10699:10;10694:3;10690:20;10687:1;10680:31;10730:4;10727:1;10720:15;10754:4;10751:1;10744:15;10770:131;-1:-1:-1;;;;;;10844:32:1;;10834:43;;10824:71;;10891:1;10888;10881:12

Swarm Source

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