ETH Price: $3,502.56 (+3.90%)
Gas: 4 Gwei

Token

Goblin Rejects (GTR)
 

Overview

Max Total Supply

1,660 GTR

Holders

996

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GTR
0xdFA3880c3643c72805413f24557E2Ff1f2226Faa
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:
GoblinRejects

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-08
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
//
//  ▄▀▀▀▀▄   ▄▀▀▀█▀▀▄  ▄▀▀▄▀▀▀▄ 
// █        █    █  ▐ █   █   █ 
// █    ▀▄▄ ▐   █     ▐  █▀▀█▀  
// █     █ █   █       ▄▀    █  
// ▐▀▄▄▄▄▀ ▐ ▄▀       █     █   
// ▐        █         ▐     ▐   
//          ▐                   
// @goblinrejects 2022

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

// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address approvedAddress = _tokenApprovals[tokenId];

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// BEGIN FREE MINT
//  ▄▀▀▀▀▄   ▄▀▀▀█▀▀▄  ▄▀▀▄▀▀▀▄ 
// █        █    █  ▐ █   █   █ 
// █    ▀▄▄ ▐   █     ▐  █▀▀█▀  
// █     █ █   █       ▄▀    █  
// ▐▀▄▄▄▄▀ ▐ ▄▀       █     █   
// ▐        █         ▐     ▐   
//          ▐                   
// @goblinrejects 2022                                                                                                    

pragma solidity 0.8.9;


contract GoblinRejects is ERC721A, Ownable {
  // "Private" Variables
  address private constant REJECT1 = 0x576cf2Bf8773754C17f633F286aE746eA33fC6d7;
  address private constant REJECT2 = 0xf64ddaF90b58a9eb38D6dCd491b27b4093cf3EdA;
  string private baseURI;

  // Public Variables
  bool public started = false;
  bool public claimed = false;
  uint256 public constant MAX_SUPPLY = 3333;
  uint256 public constant MAX_MINT = 1;
  uint256 public constant TEAM_CLAIM_AMOUNT = 333;

  mapping(address => uint) public addressClaimed;

  constructor() ERC721A("Goblin Rejects", "GTR") {}

  // Start tokenid at 1 instead of 0
  function _startTokenId() internal view virtual override returns (uint256) {
      return 1;
  }

  function Mint() external {
    require(started, "Fuck 0ff");
    require(addressClaimed[_msgSender()] < MAX_MINT, "Fuck 0ff too many for you!");
    require(totalSupply() < MAX_SUPPLY, "Fuck 0ff we're all g0ne");
    // mint
    addressClaimed[_msgSender()] += 1;
    _safeMint(msg.sender, 1);
  }

  function fuckOff() external onlyOwner {
    require(!claimed, "Team already claimed");
    // claim
    _safeMint(REJECT1, TEAM_CLAIM_AMOUNT);
    _safeMint(REJECT2, TEAM_CLAIM_AMOUNT);
    claimed = true;
  }

  function URInate(string memory baseURI_) external onlyOwner {
      baseURI = baseURI_;
  }

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

  function startMeDaddy(bool mintStarted) external onlyOwner {
      started = mintStarted;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TEAM_CLAIM_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"URInate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fuckOff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"bool","name":"mintStarted","type":"bool"}],"name":"startMeDaddy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805461ffff191690553480156200001c57600080fd5b50604080518082018252600e81526d476f626c696e2052656a6563747360901b60208083019182528351808501909452600384526223aa2960e91b9084015281519192916200006e91600291620000ef565b50805162000084906003906020840190620000ef565b505060016000555062000097336200009d565b620001d2565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000fd9062000195565b90600052602060002090601f0160209004810192826200012157600085556200016c565b82601f106200013c57805160ff19168380011785556200016c565b828001600101855582156200016c579182015b828111156200016c5782518255916020019190600101906200014f565b506200017a9291506200017e565b5090565b5b808211156200017a57600081556001016200017f565b600181811c90821680620001aa57607f821691505b60208210811415620001cc57634e487b7160e01b600052602260045260246000fd5b50919050565b61153380620001e26000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063c87b56dd11610097578063e985e9c511610071578063e985e9c514610369578063f0292a03146103a5578063f03c8891146103ad578063f2fde38b146103b657600080fd5b8063c87b56dd1461033c578063e834a8341461034f578063e8d42d5a1461036157600080fd5b806395d89b41116100d357806395d89b41146102fb578063a22cb46514610303578063b88d4fde14610316578063c0936ed31461032957600080fd5b8063715018a6146102c2578063772dc32f146102ca5780638da5cb5b146102ea57600080fd5b806323b872dd1161016657806342842e0e1161014057806342842e0e1461027657806357e73dca146102895780636352211e1461029c57806370a08231146102af57600080fd5b806323b872dd1461025257806332cb6b0c1461026557806334c738841461026e57600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b31461021657806318160ddd1461022b5780631f2698ab14610245575b600080fd5b6101c16101bc3660046110c7565b6103c9565b60405190151581526020015b60405180910390f35b6101de61041b565b6040516101cd919061113c565b6101fe6101f936600461114f565b6104ad565b6040516001600160a01b0390911681526020016101cd565b610229610224366004611184565b6104f1565b005b60015460005403600019015b6040519081526020016101cd565b600a546101c19060ff1681565b6102296102603660046111ae565b610591565b610237610d0581565b6102296105a1565b6102296102843660046111ae565b6106d2565b610229610297366004611276565b6106ed565b6101fe6102aa36600461114f565b61072e565b6102376102bd3660046112bf565b610739565b61022961077f565b6102376102d83660046112bf565b600b6020526000908152604090205481565b6008546001600160a01b03166101fe565b6101de6107b3565b6102296103113660046112ea565b6107c2565b61022961032436600461131d565b610858565b610229610337366004611399565b6108a2565b6101de61034a36600461114f565b6108df565b600a546101c190610100900460ff1681565b610229610964565b6101c16103773660046113b4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610237600181565b61023761014d81565b6102296103c43660046112bf565b610a2e565b60006301ffc9a760e01b6001600160e01b0319831614806103fa57506380ac58cd60e01b6001600160e01b03198316145b806104155750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461042a906113de565b80601f0160208091040260200160405190810160405280929190818152602001828054610456906113de565b80156104a35780601f10610478576101008083540402835291602001916104a3565b820191906000526020600020905b81548152906001019060200180831161048657829003601f168201915b5050505050905090565b60006104b882610ac9565b6104d5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104fc82610afe565b9050336001600160a01b03821614610535576105188133610377565b610535576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61059c838383610b67565b505050565b600a5460ff166105e35760405162461bcd60e51b8152602060048201526008602482015267233ab1b59018333360c11b60448201526064015b60405180910390fd5b336000908152600b60205260409020546001116106425760405162461bcd60e51b815260206004820152601a60248201527f4675636b2030666620746f6f206d616e7920666f7220796f752100000000000060448201526064016105da565b600154600054610d05919003600019011061069f5760405162461bcd60e51b815260206004820152601760248201527f4675636b2030666620776527726520616c6c2067306e6500000000000000000060448201526064016105da565b336000908152600b602052604081208054600192906106bf908490611419565b909155506106d09050336001610d17565b565b61059c83838360405180602001604052806000815250610858565b6008546001600160a01b031633146107175760405162461bcd60e51b81526004016105da9061143f565b805161072a906009906020840190611018565b5050565b600061041582610afe565b600081610759576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146107a95760405162461bcd60e51b81526004016105da9061143f565b6106d06000610d31565b60606003805461042a906113de565b6001600160a01b0382163314156107ec5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610863848484610b67565b6001600160a01b0383163b1561089c5761087f84848484610d83565b61089c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146108cc5760405162461bcd60e51b81526004016105da9061143f565b600a805460ff1916911515919091179055565b60606108ea82610ac9565b61090757604051630a14c4b560e41b815260040160405180910390fd5b6000610911610e7b565b9050805160001415610932576040518060200160405280600081525061095d565b8061093c84610e8a565b60405160200161094d929190611474565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461098e5760405162461bcd60e51b81526004016105da9061143f565b600a54610100900460ff16156109dd5760405162461bcd60e51b81526020600482015260146024820152731519585b48185b1c9958591e4818db185a5b595960621b60448201526064016105da565b6109fd73576cf2bf8773754c17f633f286ae746ea33fc6d761014d610d17565b610a1d73f64ddaf90b58a9eb38d6dcd491b27b4093cf3eda61014d610d17565b600a805461ff001916610100179055565b6008546001600160a01b03163314610a585760405162461bcd60e51b81526004016105da9061143f565b6001600160a01b038116610abd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105da565b610ac681610d31565b50565b600081600111158015610add575060005482105b8015610415575050600090815260046020526040902054600160e01b161590565b60008180600111610b4e57600054811015610b4e57600081815260046020526040902054600160e01b8116610b4c575b8061095d575060001901600081815260046020526040902054610b2e565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610b7282610afe565b9050836001600160a01b0316816001600160a01b031614610ba55760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610bd55750610bd58633610377565b80610be857506001600160a01b03821633145b905080610c0857604051632ce44b5f60e11b815260040160405180910390fd5b84610c2657604051633a954ecd60e21b815260040160405180910390fd5b8115610c4957600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b871781179091558316610cce5760018401600081815260046020526040902054610ccc576000548114610ccc5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b61072a828260405180602001604052806000815250610ed9565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610db89033908990889088906004016114a3565b602060405180830381600087803b158015610dd257600080fd5b505af1925050508015610e02575060408051601f3d908101601f19168201909252610dff918101906114e0565b60015b610e5d573d808015610e30576040519150601f19603f3d011682016040523d82523d6000602084013e610e35565b606091505b508051610e55576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461042a906113de565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610ec757600183039250600a81066030018353600a9004610ea9565b50819003601f19909101908152919050565b610ee38383610f46565b6001600160a01b0383163b1561059c576000548281035b610f0d6000868380600101945086610d83565b610f2a576040516368d2bf6b60e11b815260040160405180910390fd5b818110610efa578160005414610f3f57600080fd5b5050505050565b60005482610f6657604051622e076360e81b815260040160405180910390fd5b81610f845760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4828110610fcb57500160005550565b828054611024906113de565b90600052602060002090601f016020900481019282611046576000855561108c565b82601f1061105f57805160ff191683800117855561108c565b8280016001018555821561108c579182015b8281111561108c578251825591602001919060010190611071565b5061109892915061109c565b5090565b5b80821115611098576000815560010161109d565b6001600160e01b031981168114610ac657600080fd5b6000602082840312156110d957600080fd5b813561095d816110b1565b60005b838110156110ff5781810151838201526020016110e7565b8381111561089c5750506000910152565b600081518084526111288160208601602086016110e4565b601f01601f19169290920160200192915050565b60208152600061095d6020830184611110565b60006020828403121561116157600080fd5b5035919050565b80356001600160a01b038116811461117f57600080fd5b919050565b6000806040838503121561119757600080fd5b6111a083611168565b946020939093013593505050565b6000806000606084860312156111c357600080fd5b6111cc84611168565b92506111da60208501611168565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561121b5761121b6111ea565b604051601f8501601f19908116603f01168101908282118183101715611243576112436111ea565b8160405280935085815286868601111561125c57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561128857600080fd5b813567ffffffffffffffff81111561129f57600080fd5b8201601f810184136112b057600080fd5b610e7384823560208401611200565b6000602082840312156112d157600080fd5b61095d82611168565b8035801515811461117f57600080fd5b600080604083850312156112fd57600080fd5b61130683611168565b9150611314602084016112da565b90509250929050565b6000806000806080858703121561133357600080fd5b61133c85611168565b935061134a60208601611168565b925060408501359150606085013567ffffffffffffffff81111561136d57600080fd5b8501601f8101871361137e57600080fd5b61138d87823560208401611200565b91505092959194509250565b6000602082840312156113ab57600080fd5b61095d826112da565b600080604083850312156113c757600080fd5b6113d083611168565b915061131460208401611168565b600181811c908216806113f257607f821691505b6020821081141561141357634e487b7160e01b600052602260045260246000fd5b50919050565b6000821982111561143a57634e487b7160e01b600052601160045260246000fd5b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600083516114868184602088016110e4565b83519083019061149a8183602088016110e4565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906114d690830184611110565b9695505050505050565b6000602082840312156114f257600080fd5b815161095d816110b156fea26469706673582212205431e6e688497288a991f4de2cd2ce0c73bbb01233a7634ac0bd0de6dac1432664736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063c87b56dd11610097578063e985e9c511610071578063e985e9c514610369578063f0292a03146103a5578063f03c8891146103ad578063f2fde38b146103b657600080fd5b8063c87b56dd1461033c578063e834a8341461034f578063e8d42d5a1461036157600080fd5b806395d89b41116100d357806395d89b41146102fb578063a22cb46514610303578063b88d4fde14610316578063c0936ed31461032957600080fd5b8063715018a6146102c2578063772dc32f146102ca5780638da5cb5b146102ea57600080fd5b806323b872dd1161016657806342842e0e1161014057806342842e0e1461027657806357e73dca146102895780636352211e1461029c57806370a08231146102af57600080fd5b806323b872dd1461025257806332cb6b0c1461026557806334c738841461026e57600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b31461021657806318160ddd1461022b5780631f2698ab14610245575b600080fd5b6101c16101bc3660046110c7565b6103c9565b60405190151581526020015b60405180910390f35b6101de61041b565b6040516101cd919061113c565b6101fe6101f936600461114f565b6104ad565b6040516001600160a01b0390911681526020016101cd565b610229610224366004611184565b6104f1565b005b60015460005403600019015b6040519081526020016101cd565b600a546101c19060ff1681565b6102296102603660046111ae565b610591565b610237610d0581565b6102296105a1565b6102296102843660046111ae565b6106d2565b610229610297366004611276565b6106ed565b6101fe6102aa36600461114f565b61072e565b6102376102bd3660046112bf565b610739565b61022961077f565b6102376102d83660046112bf565b600b6020526000908152604090205481565b6008546001600160a01b03166101fe565b6101de6107b3565b6102296103113660046112ea565b6107c2565b61022961032436600461131d565b610858565b610229610337366004611399565b6108a2565b6101de61034a36600461114f565b6108df565b600a546101c190610100900460ff1681565b610229610964565b6101c16103773660046113b4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610237600181565b61023761014d81565b6102296103c43660046112bf565b610a2e565b60006301ffc9a760e01b6001600160e01b0319831614806103fa57506380ac58cd60e01b6001600160e01b03198316145b806104155750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461042a906113de565b80601f0160208091040260200160405190810160405280929190818152602001828054610456906113de565b80156104a35780601f10610478576101008083540402835291602001916104a3565b820191906000526020600020905b81548152906001019060200180831161048657829003601f168201915b5050505050905090565b60006104b882610ac9565b6104d5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006104fc82610afe565b9050336001600160a01b03821614610535576105188133610377565b610535576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61059c838383610b67565b505050565b600a5460ff166105e35760405162461bcd60e51b8152602060048201526008602482015267233ab1b59018333360c11b60448201526064015b60405180910390fd5b336000908152600b60205260409020546001116106425760405162461bcd60e51b815260206004820152601a60248201527f4675636b2030666620746f6f206d616e7920666f7220796f752100000000000060448201526064016105da565b600154600054610d05919003600019011061069f5760405162461bcd60e51b815260206004820152601760248201527f4675636b2030666620776527726520616c6c2067306e6500000000000000000060448201526064016105da565b336000908152600b602052604081208054600192906106bf908490611419565b909155506106d09050336001610d17565b565b61059c83838360405180602001604052806000815250610858565b6008546001600160a01b031633146107175760405162461bcd60e51b81526004016105da9061143f565b805161072a906009906020840190611018565b5050565b600061041582610afe565b600081610759576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146107a95760405162461bcd60e51b81526004016105da9061143f565b6106d06000610d31565b60606003805461042a906113de565b6001600160a01b0382163314156107ec5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610863848484610b67565b6001600160a01b0383163b1561089c5761087f84848484610d83565b61089c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146108cc5760405162461bcd60e51b81526004016105da9061143f565b600a805460ff1916911515919091179055565b60606108ea82610ac9565b61090757604051630a14c4b560e41b815260040160405180910390fd5b6000610911610e7b565b9050805160001415610932576040518060200160405280600081525061095d565b8061093c84610e8a565b60405160200161094d929190611474565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461098e5760405162461bcd60e51b81526004016105da9061143f565b600a54610100900460ff16156109dd5760405162461bcd60e51b81526020600482015260146024820152731519585b48185b1c9958591e4818db185a5b595960621b60448201526064016105da565b6109fd73576cf2bf8773754c17f633f286ae746ea33fc6d761014d610d17565b610a1d73f64ddaf90b58a9eb38d6dcd491b27b4093cf3eda61014d610d17565b600a805461ff001916610100179055565b6008546001600160a01b03163314610a585760405162461bcd60e51b81526004016105da9061143f565b6001600160a01b038116610abd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105da565b610ac681610d31565b50565b600081600111158015610add575060005482105b8015610415575050600090815260046020526040902054600160e01b161590565b60008180600111610b4e57600054811015610b4e57600081815260046020526040902054600160e01b8116610b4c575b8061095d575060001901600081815260046020526040902054610b2e565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610b7282610afe565b9050836001600160a01b0316816001600160a01b031614610ba55760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610bd55750610bd58633610377565b80610be857506001600160a01b03821633145b905080610c0857604051632ce44b5f60e11b815260040160405180910390fd5b84610c2657604051633a954ecd60e21b815260040160405180910390fd5b8115610c4957600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b871781179091558316610cce5760018401600081815260046020526040902054610ccc576000548114610ccc5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b61072a828260405180602001604052806000815250610ed9565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610db89033908990889088906004016114a3565b602060405180830381600087803b158015610dd257600080fd5b505af1925050508015610e02575060408051601f3d908101601f19168201909252610dff918101906114e0565b60015b610e5d573d808015610e30576040519150601f19603f3d011682016040523d82523d6000602084013e610e35565b606091505b508051610e55576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461042a906113de565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610ec757600183039250600a81066030018353600a9004610ea9565b50819003601f19909101908152919050565b610ee38383610f46565b6001600160a01b0383163b1561059c576000548281035b610f0d6000868380600101945086610d83565b610f2a576040516368d2bf6b60e11b815260040160405180910390fd5b818110610efa578160005414610f3f57600080fd5b5050505050565b60005482610f6657604051622e076360e81b815260040160405180910390fd5b81610f845760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4828110610fcb57500160005550565b828054611024906113de565b90600052602060002090601f016020900481019282611046576000855561108c565b82601f1061105f57805160ff191683800117855561108c565b8280016001018555821561108c579182015b8281111561108c578251825591602001919060010190611071565b5061109892915061109c565b5090565b5b80821115611098576000815560010161109d565b6001600160e01b031981168114610ac657600080fd5b6000602082840312156110d957600080fd5b813561095d816110b1565b60005b838110156110ff5781810151838201526020016110e7565b8381111561089c5750506000910152565b600081518084526111288160208601602086016110e4565b601f01601f19169290920160200192915050565b60208152600061095d6020830184611110565b60006020828403121561116157600080fd5b5035919050565b80356001600160a01b038116811461117f57600080fd5b919050565b6000806040838503121561119757600080fd5b6111a083611168565b946020939093013593505050565b6000806000606084860312156111c357600080fd5b6111cc84611168565b92506111da60208501611168565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561121b5761121b6111ea565b604051601f8501601f19908116603f01168101908282118183101715611243576112436111ea565b8160405280935085815286868601111561125c57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561128857600080fd5b813567ffffffffffffffff81111561129f57600080fd5b8201601f810184136112b057600080fd5b610e7384823560208401611200565b6000602082840312156112d157600080fd5b61095d82611168565b8035801515811461117f57600080fd5b600080604083850312156112fd57600080fd5b61130683611168565b9150611314602084016112da565b90509250929050565b6000806000806080858703121561133357600080fd5b61133c85611168565b935061134a60208601611168565b925060408501359150606085013567ffffffffffffffff81111561136d57600080fd5b8501601f8101871361137e57600080fd5b61138d87823560208401611200565b91505092959194509250565b6000602082840312156113ab57600080fd5b61095d826112da565b600080604083850312156113c757600080fd5b6113d083611168565b915061131460208401611168565b600181811c908216806113f257607f821691505b6020821081141561141357634e487b7160e01b600052602260045260246000fd5b50919050565b6000821982111561143a57634e487b7160e01b600052601160045260246000fd5b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600083516114868184602088016110e4565b83519083019061149a8183602088016110e4565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906114d690830184611110565b9695505050505050565b6000602082840312156114f257600080fd5b815161095d816110b156fea26469706673582212205431e6e688497288a991f4de2cd2ce0c73bbb01233a7634ac0bd0de6dac1432664736f6c63430008090033

Deployed Bytecode Sourcemap

41073:1582:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16600:615;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;16600:615:0;;;;;;;;21636:100;;;:::i;:::-;;;;;;;:::i;23645:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;23645:204:0;1528:203:1;23164:415:0;;;;;;:::i;:::-;;:::i;:::-;;15654:315;41804:1;15920:12;15707:7;15904:13;:28;-1:-1:-1;;15904:46:0;15654:315;;;2319:25:1;;;2307:2;2292:18;15654:315:0;2173:177:1;41363:27:0;;;;;;;;;24531:170;;;;;;:::i;:::-;;:::i;41427:41::-;;41464:4;41427:41;;41817:304;;;:::i;24772:185::-;;;;;;:::i;:::-;;:::i;42348:93::-;;;;;;:::i;:::-;;:::i;21425:144::-;;;;;;:::i;:::-;;:::i;17279:234::-;;;;;;:::i;:::-;;:::i;2920:103::-;;;:::i;41568:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;2269:87;2342:6;;-1:-1:-1;;;;;2342:6:0;2269:87;;21805:104;;;:::i;23921:308::-;;;;;;:::i;:::-;;:::i;25028:396::-;;;;;;:::i;:::-;;:::i;42557:95::-;;;;;;:::i;:::-;;:::i;21980:318::-;;;;;;:::i;:::-;;:::i;41395:27::-;;;;;;;;;;;;42127:215;;;:::i;24300:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24421:25:0;;;24397:4;24421:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24300:164;41473:36;;41508:1;41473:36;;41514:47;;41558:3;41514:47;;3178:201;;;;;;:::i;:::-;;:::i;16600:615::-;16685:4;-1:-1:-1;;;;;;;;;16985:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;17062:25:0;;;16985:102;:179;;;-1:-1:-1;;;;;;;;;;17139:25:0;;;16985:179;16965:199;16600:615;-1:-1:-1;;16600:615:0:o;21636:100::-;21690:13;21723:5;21716:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21636:100;:::o;23645:204::-;23713:7;23738:16;23746:7;23738;:16::i;:::-;23733:64;;23763:34;;-1:-1:-1;;;23763:34:0;;;;;;;;;;;23733:64;-1:-1:-1;23817:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23817:24:0;;23645:204::o;23164:415::-;23237:13;23269:27;23288:7;23269:18;:27::i;:::-;23237:61;-1:-1:-1;38440:10:0;-1:-1:-1;;;;;23315:28:0;;;23311:175;;23363:44;23380:5;38440:10;24300:164;:::i;23363:44::-;23358:128;;23435:35;;-1:-1:-1;;;23435:35:0;;;;;;;;;;;23358:128;23498:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23498:29:0;-1:-1:-1;;;;;23498:29:0;;;;;;;;;23543:28;;23498:24;;23543:28;;;;;;;23226:353;23164:415;;:::o;24531:170::-;24665:28;24675:4;24681:2;24685:7;24665:9;:28::i;:::-;24531:170;;;:::o;41817:304::-;41857:7;;;;41849:28;;;;-1:-1:-1;;;41849:28:0;;6237:2:1;41849:28:0;;;6219:21:1;6276:1;6256:18;;;6249:29;-1:-1:-1;;;6294:18:1;;;6287:38;6342:18;;41849:28:0;;;;;;;;;38440:10;41892:28;;;;:14;:28;;;;;;41508:1;-1:-1:-1;41884:78:0;;;;-1:-1:-1;;;41884:78:0;;6573:2:1;41884:78:0;;;6555:21:1;6612:2;6592:18;;;6585:30;6651:28;6631:18;;;6624:56;6697:18;;41884:78:0;6371:350:1;41884:78:0;41804:1;15920:12;15707:7;15904:13;41464:4;;15904:28;;-1:-1:-1;;15904:46:0;41977:26;41969:62;;;;-1:-1:-1;;;41969:62:0;;6928:2:1;41969:62:0;;;6910:21:1;6967:2;6947:18;;;6940:30;7006:25;6986:18;;;6979:53;7049:18;;41969:62:0;6726:347:1;41969:62:0;38440:10;42051:28;;;;:14;:28;;;;;:33;;42083:1;;42051:28;:33;;42083:1;;42051:33;:::i;:::-;;;;-1:-1:-1;42091:24:0;;-1:-1:-1;42101:10:0;42113:1;42091:9;:24::i;:::-;41817:304::o;24772:185::-;24910:39;24927:4;24933:2;24937:7;24910:39;;;;;;;;;;;;:16;:39::i;42348:93::-;2342:6;;-1:-1:-1;;;;;2342:6:0;38440:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;42417:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42348:93:::0;:::o;21425:144::-;21489:7;21532:27;21551:7;21532:18;:27::i;17279:234::-;17343:7;17385:5;17363:70;;17405:28;;-1:-1:-1;;;17405:28:0;;;;;;;;;;;17363:70;-1:-1:-1;;;;;;17451:25:0;;;;;:18;:25;;;;;;12624:13;17451:54;;17279:234::o;2920:103::-;2342:6;;-1:-1:-1;;;;;2342:6:0;38440:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;2985:30:::1;3012:1;2985:18;:30::i;21805:104::-:0;21861:13;21894:7;21887:14;;;;;:::i;23921:308::-;-1:-1:-1;;;;;24020:31:0;;38440:10;24020:31;24016:61;;;24060:17;;-1:-1:-1;;;24060:17:0;;;;;;;;;;;24016:61;38440:10;24090:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24090:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24090:60:0;;;;;;;;;;24166:55;;540:41:1;;;24090:49:0;;38440:10;24166:55;;513:18:1;24166:55:0;;;;;;;23921:308;;:::o;25028:396::-;25195:28;25205:4;25211:2;25215:7;25195:9;:28::i;:::-;-1:-1:-1;;;;;25238:14:0;;;:19;25234:183;;25277:56;25308:4;25314:2;25318:7;25327:5;25277:30;:56::i;:::-;25272:145;;25361:40;;-1:-1:-1;;;25361:40:0;;;;;;;;;;;25272:145;25028:396;;;;:::o;42557:95::-;2342:6;;-1:-1:-1;;;;;2342:6:0;38440:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;42625:7:::1;:21:::0;;-1:-1:-1;;42625:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42557:95::o;21980:318::-;22053:13;22084:16;22092:7;22084;:16::i;:::-;22079:59;;22109:29;;-1:-1:-1;;;22109:29:0;;;;;;;;;;;22079:59;22151:21;22175:10;:8;:10::i;:::-;22151:34;;22209:7;22203:21;22228:1;22203:26;;:87;;;;;;;;;;;;;;;;;22256:7;22265:18;22275:7;22265:9;:18::i;:::-;22239:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22203:87;22196:94;21980:318;-1:-1:-1;;;21980:318:0:o;42127:215::-;2342:6;;-1:-1:-1;;;;;2342:6:0;38440:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;42181:7:::1;::::0;::::1;::::0;::::1;;;42180:8;42172:41;;;::::0;-1:-1:-1;;;42172:41:0;;8346:2:1;42172:41:0::1;::::0;::::1;8328:21:1::0;8385:2;8365:18;;;8358:30;-1:-1:-1;;;8404:18:1;;;8397:50;8464:18;;42172:41:0::1;8144:344:1::0;42172:41:0::1;42234:37;41182:42;41558:3;42234:9;:37::i;:::-;42278;41264:42;41558:3;42278:9;:37::i;:::-;42322:7;:14:::0;;-1:-1:-1;;42322:14:0::1;;;::::0;;42127:215::o;3178:201::-;2342:6;;-1:-1:-1;;;;;2342:6:0;38440:10;2489:23;2481:68;;;;-1:-1:-1;;;2481:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3267:22:0;::::1;3259:73;;;::::0;-1:-1:-1;;;3259:73:0;;8695:2:1;3259:73:0::1;::::0;::::1;8677:21:1::0;8734:2;8714:18;;;8707:30;8773:34;8753:18;;;8746:62;-1:-1:-1;;;8824:18:1;;;8817:36;8870:19;;3259:73:0::1;8493:402:1::0;3259:73:0::1;3343:28;3362:8;3343:18;:28::i;:::-;3178:201:::0;:::o;25679:273::-;25736:4;25792:7;41804:1;25773:26;;:66;;;;;25826:13;;25816:7;:23;25773:66;:152;;;;-1:-1:-1;;25877:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25877:43:0;:48;;25679:273::o;18940:1129::-;19007:7;19042;;41804:1;19091:23;19087:915;;19144:13;;19137:4;:20;19133:869;;;19182:14;19199:23;;;:17;:23;;;;;;-1:-1:-1;;;19288:23:0;;19284:699;;19807:113;19814:11;19807:113;;-1:-1:-1;;;19885:6:0;19867:25;;;;:17;:25;;;;;;19807:113;;19284:699;19159:843;19133:869;20030:31;;-1:-1:-1;;;20030:31:0;;;;;;;;;;;29345:2654;29460:27;29490;29509:7;29490:18;:27::i;:::-;29460:57;;29575:4;-1:-1:-1;;;;;29534:45:0;29550:19;-1:-1:-1;;;;;29534:45:0;;29530:86;;29588:28;;-1:-1:-1;;;29588:28:0;;;;;;;;;;;29530:86;29629:23;29655:24;;;:15;:24;;;;;;-1:-1:-1;;;;;29655:24:0;;;;29629:23;29718:27;;38440:10;29718:27;;:87;;-1:-1:-1;29762:43:0;29779:4;38440:10;24300:164;:::i;29762:43::-;29718:142;;;-1:-1:-1;;;;;;29822:38:0;;38440:10;29822:38;29718:142;29692:169;;29879:17;29874:66;;29905:35;;-1:-1:-1;;;29905:35:0;;;;;;;;;;;29874:66;29973:2;29951:62;;29990:23;;-1:-1:-1;;;29990:23:0;;;;;;;;;;;29951:62;30157:15;30139:39;30135:103;;30202:24;;;;:15;:24;;;;;30195:31;;-1:-1:-1;;;;;;30195:31:0;;;30135:103;-1:-1:-1;;;;;30605:24:0;;;;;;;:18;:24;;;;;;;;30603:26;;-1:-1:-1;;30603:26:0;;;30674:22;;;;;;;;30672:24;;-1:-1:-1;30672:24:0;;;30967:26;;;:17;:26;;;-1:-1:-1;;;31055:15:0;13278:3;31055:41;31013:84;;:128;;30967:174;;;31261:46;;31257:626;;31365:1;31355:11;;31333:19;31488:30;;;:17;:30;;;;;;31484:384;;31626:13;;31611:11;:28;31607:242;;31773:30;;;;:17;:30;;;;;:52;;;31607:242;31314:569;31257:626;31930:7;31926:2;-1:-1:-1;;;;;31911:27:0;31920:4;-1:-1:-1;;;;;31911:27:0;;;;;;;;;;;29449:2550;;;29345:2654;;;:::o;26036:104::-;26105:27;26115:2;26119:8;26105:27;;;;;;;;;;;;:9;:27::i;3539:191::-;3632:6;;;-1:-1:-1;;;;;3649:17:0;;;-1:-1:-1;;;;;;3649:17:0;;;;;;;3682:40;;3632:6;;;3649:17;3632:6;;3682:40;;3613:16;;3682:40;3602:128;3539:191;:::o;35822:716::-;36006:88;;-1:-1:-1;;;36006:88:0;;35985:4;;-1:-1:-1;;;;;36006:45:0;;;;;:88;;38440:10;;36073:4;;36079:7;;36088:5;;36006:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36006:88:0;;;;;;;;-1:-1:-1;;36006:88:0;;;;;;;;;;;;:::i;:::-;;;36002:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36289:13:0;;36285:235;;36335:40;;-1:-1:-1;;;36335:40:0;;;;;;;;;;;36285:235;36478:6;36472:13;36463:6;36459:2;36455:15;36448:38;36002:529;-1:-1:-1;;;;;;36165:64:0;-1:-1:-1;;;36165:64:0;;-1:-1:-1;36002:529:0;35822:716;;;;;;:::o;42447:104::-;42507:13;42538:7;42531:14;;;;;:::i;38564:1960::-;39033:4;39027:11;;39040:3;39023:21;;39118:17;;;;39814:11;;;39693:5;39946:2;39960;39950:13;;39942:22;39814:11;39929:36;40001:2;39991:13;;39585:697;40020:4;39585:697;;;40211:1;40206:3;40202:11;40195:18;;40262:2;40256:4;40252:13;40248:2;40244:22;40239:3;40231:36;40115:2;40105:13;;39585:697;;;-1:-1:-1;40312:13:0;;;-1:-1:-1;;40427:12:0;;;40487:19;;;40427:12;38564:1960;-1:-1:-1;38564:1960:0:o;26527:681::-;26650:19;26656:2;26660:8;26650:5;:19::i;:::-;-1:-1:-1;;;;;26711:14:0;;;:19;26707:483;;26751:11;26765:13;26813:14;;;26846:233;26877:62;26916:1;26920:2;26924:7;;;;;;26933:5;26877:30;:62::i;:::-;26872:167;;26975:40;;-1:-1:-1;;;26975:40:0;;;;;;;;;;;26872:167;27074:3;27066:5;:11;26846:233;;27161:3;27144:13;;:20;27140:34;;27166:8;;;27140:34;26732:458;;26527:681;;;:::o;27481:1610::-;27546:20;27569:13;27615:2;27593:58;;27632:19;;-1:-1:-1;;;27632:19:0;;;;;;;;;;;27593:58;27666:13;27662:44;;27688:18;;-1:-1:-1;;;27688:18:0;;;;;;;;;;;27662:44;-1:-1:-1;;;;;28255:22:0;;;;;;:18;:22;;;;12761:2;28255:22;;;:70;;28293:31;28281:44;;28255:70;;;28568:31;;;:17;:31;;;;;28661:15;13278:3;28661:41;28619:84;;-1:-1:-1;28739:13:0;;13537:3;28724:56;28619:162;28568:213;;28827:119;28854:49;;28894:8;;;;28879:23;;;-1:-1:-1;;;;;28854:49:0;;;28871:1;;28854:49;;28871:1;;28854:49;28936:8;28927:6;:17;28827:119;;-1:-1:-1;28978:23:0;28962:13;:39;-1:-1:-1;24531:170:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:160::-;4169:20;;4225:13;;4218:21;4208:32;;4198:60;;4254:1;4251;4244:12;4269:254;4334:6;4342;4395:2;4383:9;4374:7;4370:23;4366:32;4363:52;;;4411:1;4408;4401:12;4363:52;4434:29;4453:9;4434:29;:::i;:::-;4424:39;;4482:35;4513:2;4502:9;4498:18;4482:35;:::i;:::-;4472:45;;4269:254;;;;;:::o;4528:667::-;4623:6;4631;4639;4647;4700:3;4688:9;4679:7;4675:23;4671:33;4668:53;;;4717:1;4714;4707:12;4668:53;4740:29;4759:9;4740:29;:::i;:::-;4730:39;;4788:38;4822:2;4811:9;4807:18;4788:38;:::i;:::-;4778:48;;4873:2;4862:9;4858:18;4845:32;4835:42;;4928:2;4917:9;4913:18;4900:32;4955:18;4947:6;4944:30;4941:50;;;4987:1;4984;4977:12;4941:50;5010:22;;5063:4;5055:13;;5051:27;-1:-1:-1;5041:55:1;;5092:1;5089;5082:12;5041:55;5115:74;5181:7;5176:2;5163:16;5158:2;5154;5150:11;5115:74;:::i;:::-;5105:84;;;4528:667;;;;;;;:::o;5200:180::-;5256:6;5309:2;5297:9;5288:7;5284:23;5280:32;5277:52;;;5325:1;5322;5315:12;5277:52;5348:26;5364:9;5348:26;:::i;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:380::-;5729:1;5725:12;;;;5772;;;5793:61;;5847:4;5839:6;5835:17;5825:27;;5793:61;5900:2;5892:6;5889:14;5869:18;5866:38;5863:161;;;5946:10;5941:3;5937:20;5934:1;5927:31;5981:4;5978:1;5971:15;6009:4;6006:1;5999:15;5863:161;;5650:380;;;:::o;7078:225::-;7118:3;7149:1;7145:6;7142:1;7139:13;7136:136;;;7194:10;7189:3;7185:20;7182:1;7175:31;7229:4;7226:1;7219:15;7257:4;7254:1;7247:15;7136:136;-1:-1:-1;7288:9:1;;7078:225::o;7308:356::-;7510:2;7492:21;;;7529:18;;;7522:30;7588:34;7583:2;7568:18;;7561:62;7655:2;7640:18;;7308:356::o;7669:470::-;7848:3;7886:6;7880:13;7902:53;7948:6;7943:3;7936:4;7928:6;7924:17;7902:53;:::i;:::-;8018:13;;7977:16;;;;8040:57;8018:13;7977:16;8074:4;8062:17;;8040:57;:::i;:::-;8113:20;;7669:470;-1:-1:-1;;;;7669:470:1:o;8900:489::-;-1:-1:-1;;;;;9169:15:1;;;9151:34;;9221:15;;9216:2;9201:18;;9194:43;9268:2;9253:18;;9246:34;;;9316:3;9311:2;9296:18;;9289:31;;;9094:4;;9337:46;;9363:19;;9355:6;9337:46;:::i;:::-;9329:54;8900:489;-1:-1:-1;;;;;;8900:489:1:o;9394:249::-;9463:6;9516:2;9504:9;9495:7;9491:23;9487:32;9484:52;;;9532:1;9529;9522:12;9484:52;9564:9;9558:16;9583:30;9607:5;9583:30;:::i

Swarm Source

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