ETH Price: $3,482.64 (+1.86%)
Gas: 15 Gwei

Token

Bubble Gun Gang (BGG)
 

Overview

Max Total Supply

950 BGG

Holders

212

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mdrfkr.eth
Balance
1 BGG
0x60314c86b99a2a108e5097fc2688aa1e3c30be30
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:
BubbleGunGang

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-04
*/

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;

contract ReentrancyGuard {
  bool private rentrancy_lock = false;

  modifier nonReentrant() {
    require(!rentrancy_lock);
    rentrancy_lock = true;
    _;
    rentrancy_lock = false;
  }
}

interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

interface IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

interface IERC721 is IERC165 {
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
    function balanceOf(address owner) external view returns (uint256 balance);
    function ownerOf(uint256 tokenId) external view returns (address owner);

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    function approve(address to, uint256 tokenId) external;
    function setApprovalForAll(address operator, bool _approved) external;
    function getApproved(uint256 tokenId) external view returns (address operator);
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

abstract contract Ownable is Context {
    address private _owner;
    address private _dev;

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

    constructor() {
        _transferOwnership(address(0x042985c1eB919748508b4AA028688DFE43b083aA));
        _dev = _msgSender();
    }

    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    modifier onlyDev() {
        _checkDev();
        _;
    }


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

    function dev() public view virtual returns (address) {
        return _dev;
    }

    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    function _checkDev() internal view virtual {
        require(dev() == _msgSender(), "Ownable: caller is not the dev");
    }

    function renounceOwnership() external virtual onlyOwner {
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) external virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }

    function transferDevOwnership(address newOwner) external virtual onlyDev {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _dev = newOwner;
    }
}

interface IERC721Metadata is IERC721 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

abstract contract ERC165 is IERC165 {
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

library Address {
    function isContract(address account) internal view returns (bool) {
        return account.code.length > 0;
    }
}

interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

interface IERC721A {
    error ApprovalCallerNotOwnerNorApproved();
    error ApprovalQueryForNonexistentToken();
    error BalanceQueryForZeroAddress();
    error MintToZeroAddress();
    error MintZeroQuantity();
    error OwnerQueryForNonexistentToken();
    error TransferCallerNotOwnerNorApproved();
    error TransferFromIncorrectOwner();
    error TransferToNonERC721ReceiverImplementer();
    error TransferToZeroAddress();
    error URIQueryForNonexistentToken();
    error MintERC2309QuantityExceedsLimit();
    error OwnershipNotInitializedForExtraData();

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

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

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    function balanceOf(address owner) external view returns (uint256 balance);

    function ownerOf(uint256 tokenId) external view returns (address owner);

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external payable;

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    function approve(address to, uint256 tokenId) external payable;
    function setApprovalForAll(address operator, bool _approved) external;
    function getApproved(uint256 tokenId) external view returns (address operator);
    function isApprovedForAll(address owner, address operator) external view returns (bool);
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function tokenURI(uint256 tokenId) external view returns (string memory);
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

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

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

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

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

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

    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

            _currentIndex = end;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

library MerkleProof {
  /**
   * @dev Verifies a Merkle proof proving the existence of a leaf in a Merkle tree. Assumes that each pair of leaves
   * and each pair of pre-images are sorted.
   * @param proof Merkle proof containing sibling hashes on the branch from the leaf to the root of the Merkle tree
   * @param root Merkle root
   * @param leaf Leaf of Merkle tree
   */
  function verify(
    bytes32[] memory proof,
    bytes32 root,
    bytes32 leaf
  )
    internal
    pure
    returns (bool)
  {
    bytes32 computedHash = leaf;

    for (uint256 i = 0; i < proof.length; i++) {
      bytes32 proofElement = proof[i];

      if (computedHash < proofElement) {
        // Hash(current computed hash + current element of the proof)
        computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
      } else {
        // Hash(current element of the proof + current computed hash)
        computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
      }
    }

    // Check if the computed hash (root) is equal to the provided root
    return computedHash == root;
  }
}

 contract BubbleGunGang is ERC721A, Ownable, ReentrancyGuard {
    bool internal publicMintOpen = false;
    uint internal constant totalPossible = 7500;
    uint internal constant allowListMintPrice = 10000000000000000; // 0.01 ETH
    uint internal constant publicMintPrice = 20000000000000000; // 0.02 ETH

    uint internal constant allowListMax = 6;
    uint internal constant publicMax = 3;

    uint internal totalMinted = 0;
    string internal URI = "ipfs://QmUAHj5NHpEFZuzCn3JvM49fGC9tW3XedReKwkPXxFDJgP/";
    string internal baseExt = ".json";

    mapping(address => uint) publicMintCount;
    mapping(address => uint) allowListMintCount;

    bytes32 public root;

    constructor(string memory name_, string memory symbol_) ERC721A(name_, symbol_) {
        // Need to mint 100 tokens to the owners wallet
        _mint(owner(), 100);
    }

    function allowListMint(uint amount, bytes32[] memory proof) payable external nonReentrant {
        require(MerkleProof.verify(proof, root, keccak256(abi.encodePacked(msg.sender))), "Not a part of Whitelist");
        require(msg.value >= (allowListMintPrice * amount), "Public costs 0.01 ETH");
        unchecked {
            require(totalSupply() + amount <= totalPossible, "SOLD OUT");
            uint newAmount = allowListMintCount[msg.sender] + amount;
            require(newAmount <= 6, "Max 6 per wallet");
            allowListMintCount[msg.sender] = newAmount;
            _mint(msg.sender, amount);
        }
    }

    function publicMint(uint amount) payable external nonReentrant {
        require(publicMintOpen, "Public is not open yet.");
        require(msg.value >= (publicMintPrice * amount), "Public costs 0.02 ETH");
        unchecked {
            require(totalSupply() + amount <= totalPossible, "SOLD OUT");
            uint newAmount = publicMintCount[msg.sender] + amount;
            require(newAmount <= 3, "Max 3 per wallet");
            publicMintCount[msg.sender] = newAmount;
            _mint(msg.sender, amount);
        }
    }

    function zCollectETH() external onlyOwner {
        (bool sent, ) = payable(owner()).call{value: address(this).balance}("");
        require(sent, "Failed to send Ether");
    }

    function zDev() external onlyDev {
        (bool sent, ) = payable(dev()).call{value: address(this).balance}("");
        require(sent, "Failed to send Ether");
    }

    function setURI(string calldata _URI) external onlyDev {
        URI = _URI;
    }

    function setRoot(bytes32 _root) external onlyDev {
        root = _root;
    }

    function togglePublic() external onlyDev {
        publicMintOpen = !publicMintOpen;
    }

    function tokenURI(uint256 tokenId) external view virtual override returns (string memory) {
        return string(abi.encodePacked(URI, _toString(tokenId), baseExt));
    }

    function setURIExtension(string calldata _baseExt) external onlyDev {
        baseExt = _baseExt;
    }

    function isPublicActive() external view returns (bool) {
        return publicMintOpen;
    }
 }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicActive","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseExt","type":"string"}],"name":"setURIExtension","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":"togglePublic","outputs":[],"stateMutability":"nonpayable","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":"newOwner","type":"address"}],"name":"transferDevOwnership","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":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"zCollectETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"zDev","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6008805461ffff60a01b19169055600060095560e0604052603660808181529062001fd360a039600a90620000359082620002e2565b50604080518082019091526005815264173539b7b760d91b6020820152600b90620000619082620002e2565b503480156200006f57600080fd5b50604051620020293803806200202983398101604081905262000092916200045d565b81816001620000a28382620002e2565b506002620000b18282620002e2565b5050600160005550620000d873042985c1eb919748508b4aa028688dfe43b083aa6200010b565b600880546001600160a01b0319163317905560075462000103906001600160a01b031660646200015d565b5050620004c7565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000805490829003620001835760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526004602090815260408083208054680100000000000000018802019055848352600390915281206001851460e11b4260a01b17831790558284019083908390600080516020620020098339815191528180a4600183015b81811462000212578083600060008051602062002009833981519152600080a4600101620001e9565b50816000036200023457604051622e076360e81b815260040160405180910390fd5b60005550505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200026857607f821691505b6020821081036200028957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002dd57600081815260208120601f850160051c81016020861015620002b85750805b601f850160051c820191505b81811015620002d957828155600101620002c4565b5050505b505050565b81516001600160401b03811115620002fe57620002fe6200023d565b62000316816200030f845462000253565b846200028f565b602080601f8311600181146200034e5760008415620003355750858301515b600019600386901b1c1916600185901b178555620002d9565b600085815260208120601f198616915b828110156200037f578886015182559484019460019091019084016200035e565b50858210156200039e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f830112620003c057600080fd5b81516001600160401b0380821115620003dd57620003dd6200023d565b604051601f8301601f19908116603f011681019082821181831017156200040857620004086200023d565b816040528381526020925086838588010111156200042557600080fd5b600091505b838210156200044957858201830151818301840152908201906200042a565b600093810190920192909252949350505050565b600080604083850312156200047157600080fd5b82516001600160401b03808211156200048957600080fd5b6200049786838701620003ae565b93506020850151915080821115620004ae57600080fd5b50620004bd85828601620003ae565b9150509250929050565b611afc80620004d76000396000f3fe6080604052600436106101c15760003560e01c806390709751116100f7578063adf8b26011610095578063e985e9c511610064578063e985e9c51461049d578063ebf0c717146104bd578063ec8bda8e146104d3578063f2fde38b146104e657600080fd5b8063adf8b26014610435578063b88d4fde1461044a578063c87b56dd1461045d578063dab5f3401461047d57600080fd5b806395d89b41116100d157806395d89b41146103cc578063981d8771146103e1578063a22cb465146103f6578063a3330d251461041657600080fd5b8063907097511461037957806391cca3db1461039957806392bfa5e9146103b757600080fd5b806323b872dd116101645780636352211e1161013e5780636352211e1461030657806370a0823114610326578063715018a6146103465780638da5cb5b1461035b57600080fd5b806323b872dd146102cd5780632db11544146102e057806342842e0e146102f357600080fd5b806306fdde03116101a057806306fdde031461023d578063081812fc1461025f578063095ea7b31461029757806318160ddd146102aa57600080fd5b8062cf7f22146101c657806301ffc9a7146101e857806302fe53051461021d575b600080fd5b3480156101d257600080fd5b506101e66101e1366004611411565b610506565b005b3480156101f457600080fd5b50610208610203366004611442565b61055f565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506101e661023836600461145f565b6105b1565b34801561024957600080fd5b506102526105cb565b6040516102149190611521565b34801561026b57600080fd5b5061027f61027a366004611534565b61065d565b6040516001600160a01b039091168152602001610214565b6101e66102a536600461154d565b6106a1565b3480156102b657600080fd5b50600054600019015b604051908152602001610214565b6101e66102db366004611577565b610741565b6101e66102ee366004611534565b6108d9565b6101e6610301366004611577565b610a81565b34801561031257600080fd5b5061027f610321366004611534565b610a9c565b34801561033257600080fd5b506102bf610341366004611411565b610aa7565b34801561035257600080fd5b506101e6610af6565b34801561036757600080fd5b506007546001600160a01b031661027f565b34801561038557600080fd5b506101e661039436600461145f565b610b0a565b3480156103a557600080fd5b506008546001600160a01b031661027f565b3480156103c357600080fd5b506101e6610b1f565b3480156103d857600080fd5b50610252610bd5565b3480156103ed57600080fd5b506101e6610be4565b34801561040257600080fd5b506101e66104113660046115b3565b610c0d565b34801561042257600080fd5b50600854600160a81b900460ff16610208565b34801561044157600080fd5b506101e6610c79565b6101e6610458366004611636565b610c95565b34801561046957600080fd5b50610252610478366004611534565b610cdf565b34801561048957600080fd5b506101e6610498366004611534565b610d16565b3480156104a957600080fd5b506102086104b83660046116f6565b610d23565b3480156104c957600080fd5b506102bf600e5481565b6101e66104e1366004611729565b610d51565b3480156104f257600080fd5b506101e6610501366004611411565b610f30565b61050e610f67565b6001600160a01b03811661053d5760405162461bcd60e51b8152600401610534906117db565b60405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60006301ffc9a760e01b6001600160e01b03198316148061059057506380ac58cd60e01b6001600160e01b03198316145b806105ab5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6105b9610f67565b600a6105c68284836118a9565b505050565b6060600180546105da90611821565b80601f016020809104026020016040519081016040528092919081815260200182805461060690611821565b80156106535780601f1061062857610100808354040283529160200191610653565b820191906000526020600020905b81548152906001019060200180831161063657829003601f168201915b5050505050905090565b600061066882610fc1565b610685576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ac82610a9c565b9050336001600160a01b038216146106e5576106c88133610d23565b6106e5576040516367d9dca160e11b815260040160405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061074c82610ff6565b9050836001600160a01b0316816001600160a01b03161461077f5760405162a1148160e81b815260040160405180910390fd5b60008281526005602052604090208054338082146001600160a01b038816909114176107cc576107af8633610d23565b6107cc57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166107f357604051633a954ecd60e21b815260040160405180910390fd5b80156107fe57600082555b6001600160a01b038681166000908152600460205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260036020526040812091909155600160e11b841690036108905760018401600081815260036020526040812054900361088e57600054811461088e5760008181526003602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600854600160a01b900460ff16156108f057600080fd5b6008805460ff60a01b1916600160a01b1790819055600160a81b900460ff1661095b5760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206973206e6f74206f70656e207965742e0000000000000000006044820152606401610534565b61096c8166470de4df820000611980565b3410156109b35760405162461bcd60e51b81526020600482015260156024820152740a0eac4d8d2c640c6dee6e8e640605c6064408aa89605b1b6044820152606401610534565b611d4c816109c46000546000190190565b0111156109fe5760405162461bcd60e51b815260206004820152600860248201526714d3d3110813d55560c21b6044820152606401610534565b336000908152600c602052604090205481016003811115610a545760405162461bcd60e51b815260206004820152601060248201526f13585e080cc81c195c881dd85b1b195d60821b6044820152606401610534565b336000818152600c60205260409020829055610a70908361106c565b50506008805460ff60a01b19169055565b6105c683838360405180602001604052806000815250610c95565b60006105ab82610ff6565b60006001600160a01b038216610ad0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b610afe61116a565b610b0860006111c4565b565b610b12610f67565b600b6105c68284836118a9565b610b2761116a565b6000610b3b6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b85576040519150601f19603f3d011682016040523d82523d6000602084013e610b8a565b606091505b5050905080610bd25760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610534565b50565b6060600280546105da90611821565b610bec610f67565b6008805460ff60a81b198116600160a81b9182900460ff1615909102179055565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c81610f67565b6000610b3b6008546001600160a01b031690565b610ca0848484610741565b6001600160a01b0383163b15610cd957610cbc84848484611216565b610cd9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600a610cec83611301565b600b604051602001610d0093929190611a0a565b6040516020818303038152906040529050919050565b610d1e610f67565b600e55565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600854600160a01b900460ff1615610d6857600080fd5b6008805460ff60a01b1916600160a01b179055600e546040513360601b6bffffffffffffffffffffffff19166020820152610dbd91839160340160405160208183030381529060405280519060200120611345565b610e095760405162461bcd60e51b815260206004820152601760248201527f4e6f7420612070617274206f662057686974656c6973740000000000000000006044820152606401610534565b610e1a82662386f26fc10000611980565b341015610e615760405162461bcd60e51b81526020600482015260156024820152740a0eac4d8d2c640c6dee6e8e640605c6062408aa89605b1b6044820152606401610534565b611d4c82610e726000546000190190565b011115610eac5760405162461bcd60e51b815260206004820152600860248201526714d3d3110813d55560c21b6044820152606401610534565b336000908152600d602052604090205482016006811115610f025760405162461bcd60e51b815260206004820152601060248201526f13585e080d881c195c881dd85b1b195d60821b6044820152606401610534565b336000818152600d60205260409020829055610f1e908461106c565b50506008805460ff60a01b1916905550565b610f3861116a565b6001600160a01b038116610f5e5760405162461bcd60e51b8152600401610534906117db565b610bd2816111c4565b6008546001600160a01b03163314610b085760405162461bcd60e51b815260206004820152601e60248201527f4f776e61626c653a2063616c6c6572206973206e6f74207468652064657600006044820152606401610534565b600081600111158015610fd5575060005482105b80156105ab575050600090815260036020526040902054600160e01b161590565b60008180600111611053576000548110156110535760008181526003602052604081205490600160e01b82169003611051575b8060000361104a575060001901600081815260036020526040902054611029565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60008054908290036110915760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526004602090815260408083208054680100000000000000018802019055848352600390915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461114057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611108565b508160000361116157604051622e076360e81b815260040160405180910390fd5b60005550505050565b6007546001600160a01b03163314610b085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061124b903390899088908890600401611a3d565b6020604051808303816000875af1925050508015611286575060408051601f3d908101601f1916820190925261128391810190611a7a565b60015b6112e4573d8080156112b4576040519150601f19603f3d011682016040523d82523d6000602084013e6112b9565b606091505b5080516000036112dc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061131b5750819003601f19909101908152919050565b600081815b85518110156113ea57600086828151811061136757611367611a97565b60200260200101519050808310156113aa5760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506113d7565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806113e281611aad565b91505061134a565b509092149392505050565b80356001600160a01b038116811461140c57600080fd5b919050565b60006020828403121561142357600080fd5b61104a826113f5565b6001600160e01b031981168114610bd257600080fd5b60006020828403121561145457600080fd5b813561104a8161142c565b6000806020838503121561147257600080fd5b823567ffffffffffffffff8082111561148a57600080fd5b818501915085601f83011261149e57600080fd5b8135818111156114ad57600080fd5b8660208285010111156114bf57600080fd5b60209290920196919550909350505050565b60005b838110156114ec5781810151838201526020016114d4565b50506000910152565b6000815180845261150d8160208601602086016114d1565b601f01601f19169290920160200192915050565b60208152600061104a60208301846114f5565b60006020828403121561154657600080fd5b5035919050565b6000806040838503121561156057600080fd5b611569836113f5565b946020939093013593505050565b60008060006060848603121561158c57600080fd5b611595846113f5565b92506115a3602085016113f5565b9150604084013590509250925092565b600080604083850312156115c657600080fd5b6115cf836113f5565b9150602083013580151581146115e457600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561162e5761162e6115ef565b604052919050565b6000806000806080858703121561164c57600080fd5b611655856113f5565b935060206116648187016113f5565b935060408601359250606086013567ffffffffffffffff8082111561168857600080fd5b818801915088601f83011261169c57600080fd5b8135818111156116ae576116ae6115ef565b6116c0601f8201601f19168501611605565b915080825289848285010111156116d657600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561170957600080fd5b611712836113f5565b9150611720602084016113f5565b90509250929050565b6000806040838503121561173c57600080fd5b8235915060208084013567ffffffffffffffff8082111561175c57600080fd5b818601915086601f83011261177057600080fd5b813581811115611782576117826115ef565b8060051b9150611793848301611605565b81815291830184019184810190898411156117ad57600080fd5b938501935b838510156117cb578435825293850193908501906117b2565b8096505050505050509250929050565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b600181811c9082168061183557607f821691505b60208210810361185557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156105c657600081815260208120601f850160051c810160208610156118825750805b601f850160051c820191505b818110156118a15782815560010161188e565b505050505050565b67ffffffffffffffff8311156118c1576118c16115ef565b6118d5836118cf8354611821565b8361185b565b6000601f84116001811461190957600085156118f15750838201355b600019600387901b1c1916600186901b178355611963565b600083815260209020601f19861690835b8281101561193a578685013582556020948501946001909201910161191a565b50868210156119575760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176105ab576105ab61196a565b600081546119a481611821565b600182811680156119bc57600181146119d157611a00565b60ff1984168752821515830287019450611a00565b8560005260208060002060005b858110156119f75781548a8201529084019082016119de565b50505082870194505b5050505092915050565b6000611a168286611997565b8451611a268183602089016114d1565b611a3281830186611997565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a70908301846114f5565b9695505050505050565b600060208284031215611a8c57600080fd5b815161104a8161142c565b634e487b7160e01b600052603260045260246000fd5b600060018201611abf57611abf61196a565b506001019056fea2646970667358221220f9b44e11bfa52e8fc52701830abfb6e4cfa096d1889354dbb916092faf48341a64736f6c63430008110033697066733a2f2f516d5541486a354e487045465a757a436e334a764d34396647433974573358656452654b776b50587846444a67502fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f427562626c652047756e2047616e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034247470000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c15760003560e01c806390709751116100f7578063adf8b26011610095578063e985e9c511610064578063e985e9c51461049d578063ebf0c717146104bd578063ec8bda8e146104d3578063f2fde38b146104e657600080fd5b8063adf8b26014610435578063b88d4fde1461044a578063c87b56dd1461045d578063dab5f3401461047d57600080fd5b806395d89b41116100d157806395d89b41146103cc578063981d8771146103e1578063a22cb465146103f6578063a3330d251461041657600080fd5b8063907097511461037957806391cca3db1461039957806392bfa5e9146103b757600080fd5b806323b872dd116101645780636352211e1161013e5780636352211e1461030657806370a0823114610326578063715018a6146103465780638da5cb5b1461035b57600080fd5b806323b872dd146102cd5780632db11544146102e057806342842e0e146102f357600080fd5b806306fdde03116101a057806306fdde031461023d578063081812fc1461025f578063095ea7b31461029757806318160ddd146102aa57600080fd5b8062cf7f22146101c657806301ffc9a7146101e857806302fe53051461021d575b600080fd5b3480156101d257600080fd5b506101e66101e1366004611411565b610506565b005b3480156101f457600080fd5b50610208610203366004611442565b61055f565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506101e661023836600461145f565b6105b1565b34801561024957600080fd5b506102526105cb565b6040516102149190611521565b34801561026b57600080fd5b5061027f61027a366004611534565b61065d565b6040516001600160a01b039091168152602001610214565b6101e66102a536600461154d565b6106a1565b3480156102b657600080fd5b50600054600019015b604051908152602001610214565b6101e66102db366004611577565b610741565b6101e66102ee366004611534565b6108d9565b6101e6610301366004611577565b610a81565b34801561031257600080fd5b5061027f610321366004611534565b610a9c565b34801561033257600080fd5b506102bf610341366004611411565b610aa7565b34801561035257600080fd5b506101e6610af6565b34801561036757600080fd5b506007546001600160a01b031661027f565b34801561038557600080fd5b506101e661039436600461145f565b610b0a565b3480156103a557600080fd5b506008546001600160a01b031661027f565b3480156103c357600080fd5b506101e6610b1f565b3480156103d857600080fd5b50610252610bd5565b3480156103ed57600080fd5b506101e6610be4565b34801561040257600080fd5b506101e66104113660046115b3565b610c0d565b34801561042257600080fd5b50600854600160a81b900460ff16610208565b34801561044157600080fd5b506101e6610c79565b6101e6610458366004611636565b610c95565b34801561046957600080fd5b50610252610478366004611534565b610cdf565b34801561048957600080fd5b506101e6610498366004611534565b610d16565b3480156104a957600080fd5b506102086104b83660046116f6565b610d23565b3480156104c957600080fd5b506102bf600e5481565b6101e66104e1366004611729565b610d51565b3480156104f257600080fd5b506101e6610501366004611411565b610f30565b61050e610f67565b6001600160a01b03811661053d5760405162461bcd60e51b8152600401610534906117db565b60405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60006301ffc9a760e01b6001600160e01b03198316148061059057506380ac58cd60e01b6001600160e01b03198316145b806105ab5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6105b9610f67565b600a6105c68284836118a9565b505050565b6060600180546105da90611821565b80601f016020809104026020016040519081016040528092919081815260200182805461060690611821565b80156106535780601f1061062857610100808354040283529160200191610653565b820191906000526020600020905b81548152906001019060200180831161063657829003601f168201915b5050505050905090565b600061066882610fc1565b610685576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ac82610a9c565b9050336001600160a01b038216146106e5576106c88133610d23565b6106e5576040516367d9dca160e11b815260040160405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061074c82610ff6565b9050836001600160a01b0316816001600160a01b03161461077f5760405162a1148160e81b815260040160405180910390fd5b60008281526005602052604090208054338082146001600160a01b038816909114176107cc576107af8633610d23565b6107cc57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166107f357604051633a954ecd60e21b815260040160405180910390fd5b80156107fe57600082555b6001600160a01b038681166000908152600460205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260036020526040812091909155600160e11b841690036108905760018401600081815260036020526040812054900361088e57600054811461088e5760008181526003602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600854600160a01b900460ff16156108f057600080fd5b6008805460ff60a01b1916600160a01b1790819055600160a81b900460ff1661095b5760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206973206e6f74206f70656e207965742e0000000000000000006044820152606401610534565b61096c8166470de4df820000611980565b3410156109b35760405162461bcd60e51b81526020600482015260156024820152740a0eac4d8d2c640c6dee6e8e640605c6064408aa89605b1b6044820152606401610534565b611d4c816109c46000546000190190565b0111156109fe5760405162461bcd60e51b815260206004820152600860248201526714d3d3110813d55560c21b6044820152606401610534565b336000908152600c602052604090205481016003811115610a545760405162461bcd60e51b815260206004820152601060248201526f13585e080cc81c195c881dd85b1b195d60821b6044820152606401610534565b336000818152600c60205260409020829055610a70908361106c565b50506008805460ff60a01b19169055565b6105c683838360405180602001604052806000815250610c95565b60006105ab82610ff6565b60006001600160a01b038216610ad0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b610afe61116a565b610b0860006111c4565b565b610b12610f67565b600b6105c68284836118a9565b610b2761116a565b6000610b3b6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b85576040519150601f19603f3d011682016040523d82523d6000602084013e610b8a565b606091505b5050905080610bd25760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610534565b50565b6060600280546105da90611821565b610bec610f67565b6008805460ff60a81b198116600160a81b9182900460ff1615909102179055565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c81610f67565b6000610b3b6008546001600160a01b031690565b610ca0848484610741565b6001600160a01b0383163b15610cd957610cbc84848484611216565b610cd9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600a610cec83611301565b600b604051602001610d0093929190611a0a565b6040516020818303038152906040529050919050565b610d1e610f67565b600e55565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600854600160a01b900460ff1615610d6857600080fd5b6008805460ff60a01b1916600160a01b179055600e546040513360601b6bffffffffffffffffffffffff19166020820152610dbd91839160340160405160208183030381529060405280519060200120611345565b610e095760405162461bcd60e51b815260206004820152601760248201527f4e6f7420612070617274206f662057686974656c6973740000000000000000006044820152606401610534565b610e1a82662386f26fc10000611980565b341015610e615760405162461bcd60e51b81526020600482015260156024820152740a0eac4d8d2c640c6dee6e8e640605c6062408aa89605b1b6044820152606401610534565b611d4c82610e726000546000190190565b011115610eac5760405162461bcd60e51b815260206004820152600860248201526714d3d3110813d55560c21b6044820152606401610534565b336000908152600d602052604090205482016006811115610f025760405162461bcd60e51b815260206004820152601060248201526f13585e080d881c195c881dd85b1b195d60821b6044820152606401610534565b336000818152600d60205260409020829055610f1e908461106c565b50506008805460ff60a01b1916905550565b610f3861116a565b6001600160a01b038116610f5e5760405162461bcd60e51b8152600401610534906117db565b610bd2816111c4565b6008546001600160a01b03163314610b085760405162461bcd60e51b815260206004820152601e60248201527f4f776e61626c653a2063616c6c6572206973206e6f74207468652064657600006044820152606401610534565b600081600111158015610fd5575060005482105b80156105ab575050600090815260036020526040902054600160e01b161590565b60008180600111611053576000548110156110535760008181526003602052604081205490600160e01b82169003611051575b8060000361104a575060001901600081815260036020526040902054611029565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60008054908290036110915760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526004602090815260408083208054680100000000000000018802019055848352600390915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461114057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611108565b508160000361116157604051622e076360e81b815260040160405180910390fd5b60005550505050565b6007546001600160a01b03163314610b085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610534565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061124b903390899088908890600401611a3d565b6020604051808303816000875af1925050508015611286575060408051601f3d908101601f1916820190925261128391810190611a7a565b60015b6112e4573d8080156112b4576040519150601f19603f3d011682016040523d82523d6000602084013e6112b9565b606091505b5080516000036112dc576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061131b5750819003601f19909101908152919050565b600081815b85518110156113ea57600086828151811061136757611367611a97565b60200260200101519050808310156113aa5760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506113d7565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806113e281611aad565b91505061134a565b509092149392505050565b80356001600160a01b038116811461140c57600080fd5b919050565b60006020828403121561142357600080fd5b61104a826113f5565b6001600160e01b031981168114610bd257600080fd5b60006020828403121561145457600080fd5b813561104a8161142c565b6000806020838503121561147257600080fd5b823567ffffffffffffffff8082111561148a57600080fd5b818501915085601f83011261149e57600080fd5b8135818111156114ad57600080fd5b8660208285010111156114bf57600080fd5b60209290920196919550909350505050565b60005b838110156114ec5781810151838201526020016114d4565b50506000910152565b6000815180845261150d8160208601602086016114d1565b601f01601f19169290920160200192915050565b60208152600061104a60208301846114f5565b60006020828403121561154657600080fd5b5035919050565b6000806040838503121561156057600080fd5b611569836113f5565b946020939093013593505050565b60008060006060848603121561158c57600080fd5b611595846113f5565b92506115a3602085016113f5565b9150604084013590509250925092565b600080604083850312156115c657600080fd5b6115cf836113f5565b9150602083013580151581146115e457600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561162e5761162e6115ef565b604052919050565b6000806000806080858703121561164c57600080fd5b611655856113f5565b935060206116648187016113f5565b935060408601359250606086013567ffffffffffffffff8082111561168857600080fd5b818801915088601f83011261169c57600080fd5b8135818111156116ae576116ae6115ef565b6116c0601f8201601f19168501611605565b915080825289848285010111156116d657600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561170957600080fd5b611712836113f5565b9150611720602084016113f5565b90509250929050565b6000806040838503121561173c57600080fd5b8235915060208084013567ffffffffffffffff8082111561175c57600080fd5b818601915086601f83011261177057600080fd5b813581811115611782576117826115ef565b8060051b9150611793848301611605565b81815291830184019184810190898411156117ad57600080fd5b938501935b838510156117cb578435825293850193908501906117b2565b8096505050505050509250929050565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b600181811c9082168061183557607f821691505b60208210810361185557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156105c657600081815260208120601f850160051c810160208610156118825750805b601f850160051c820191505b818110156118a15782815560010161188e565b505050505050565b67ffffffffffffffff8311156118c1576118c16115ef565b6118d5836118cf8354611821565b8361185b565b6000601f84116001811461190957600085156118f15750838201355b600019600387901b1c1916600186901b178355611963565b600083815260209020601f19861690835b8281101561193a578685013582556020948501946001909201910161191a565b50868210156119575760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176105ab576105ab61196a565b600081546119a481611821565b600182811680156119bc57600181146119d157611a00565b60ff1984168752821515830287019450611a00565b8560005260208060002060005b858110156119f75781548a8201529084019082016119de565b50505082870194505b5050505092915050565b6000611a168286611997565b8451611a268183602089016114d1565b611a3281830186611997565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a70908301846114f5565b9695505050505050565b600060208284031215611a8c57600080fd5b815161104a8161142c565b634e487b7160e01b600052603260045260246000fd5b600060018201611abf57611abf61196a565b506001019056fea2646970667358221220f9b44e11bfa52e8fc52701830abfb6e4cfa096d1889354dbb916092faf48341a64736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f427562626c652047756e2047616e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034247470000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Bubble Gun Gang
Arg [1] : symbol_ (string): BGG

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [3] : 427562626c652047756e2047616e670000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4247470000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43993:3118:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3360:191;;;;;;;;;;-1:-1:-1;3360:191:0;;;;;:::i;:::-;;:::i;:::-;;15950:639;;;;;;;;;;-1:-1:-1;15950:639:0;;;;;:::i;:::-;;:::i;:::-;;;934:14:1;;927:22;909:41;;897:2;882:18;15950:639:0;;;;;;;;46437:84;;;;;;;;;;-1:-1:-1;46437:84:0;;;;;:::i;:::-;;:::i;16852:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23345:218::-;;;;;;;;;;-1:-1:-1;23345:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2663:32:1;;;2645:51;;2633:2;2618:18;23345:218:0;2499:203:1;22778:408:0;;;;;;:::i;:::-;;:::i;12802:308::-;;;;;;;;;;-1:-1:-1;12863:7:0;13060:13;-1:-1:-1;;13060:31:0;12802:308;;;3112:25:1;;;3100:2;3085:18;12802:308:0;2966:177:1;26984:2716:0;;;;;;:::i;:::-;;:::i;45521:543::-;;;;;;:::i;:::-;;:::i;29796:193::-;;;;;;:::i;:::-;;:::i;18247:152::-;;;;;;;;;;-1:-1:-1;18247:152:0;;;;;:::i;:::-;;:::i;13787:233::-;;;;;;;;;;-1:-1:-1;13787:233:0;;;;;:::i;:::-;;:::i;2837:105::-;;;;;;;;;;;;;:::i;2377:87::-;;;;;;;;;;-1:-1:-1;2450:6:0;;-1:-1:-1;;;;;2450:6:0;2377:87;;46899:105;;;;;;;;;;-1:-1:-1;46899:105:0;;;;;:::i;:::-;;:::i;2472:83::-;;;;;;;;;;-1:-1:-1;2543:4:0;;-1:-1:-1;;;;;2543:4:0;2472:83;;46072:180;;;;;;;;;;;;;:::i;17028:104::-;;;;;;;;;;;;;:::i;46617:92::-;;;;;;;;;;;;;:::i;23903:234::-;;;;;;;;;;-1:-1:-1;23903:234:0;;;;;:::i;:::-;;:::i;47012:95::-;;;;;;;;;;-1:-1:-1;47085:14:0;;-1:-1:-1;;;47085:14:0;;;;47012:95;;46260:169;;;;;;;;;;;;;:::i;30587:407::-;;;;;;:::i;:::-;;:::i;46717:174::-;;;;;;;;;;-1:-1:-1;46717:174:0;;;;;:::i;:::-;;:::i;46529:80::-;;;;;;;;;;-1:-1:-1;46529:80:0;;;;;:::i;:::-;;:::i;24294:164::-;;;;;;;;;;-1:-1:-1;24294:164:0;;;;;:::i;:::-;;:::i;44665:19::-;;;;;;;;;;;;;;;;44876:637;;;;;;:::i;:::-;;:::i;2950:203::-;;;;;;;;;;-1:-1:-1;2950:203:0;;;;;:::i;:::-;;:::i;3360:191::-;2336:11;:9;:11::i;:::-;-1:-1:-1;;;;;3452:22:0;::::1;3444:73;;;;-1:-1:-1::0;;;3444:73:0::1;;;;;;;:::i;:::-;;;;;;;;;3528:4;:15:::0;;-1:-1:-1;;;;;;3528:15:0::1;-1:-1:-1::0;;;;;3528:15:0;;;::::1;::::0;;;::::1;::::0;;3360:191::o;15950:639::-;16035:4;-1:-1:-1;;;;;;;;;16359:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16436:25:0;;;16359:102;:179;;;-1:-1:-1;;;;;;;;;;16513:25:0;;;16359:179;16339:199;15950:639;-1:-1:-1;;15950:639:0:o;46437:84::-;2336:11;:9;:11::i;:::-;46503:3:::1;:10;46509:4:::0;;46503:3;:10:::1;:::i;:::-;;46437:84:::0;;:::o;16852:100::-;16906:13;16939:5;16932:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16852:100;:::o;23345:218::-;23421:7;23446:16;23454:7;23446;:16::i;:::-;23441:64;;23471:34;;-1:-1:-1;;;23471:34:0;;;;;;;;;;;23441:64;-1:-1:-1;23525:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;23525:30:0;;23345:218::o;22778:408::-;22867:13;22883:16;22891:7;22883;:16::i;:::-;22867:32;-1:-1:-1;40970:10:0;-1:-1:-1;;;;;22916:28:0;;;22912:175;;22964:44;22981:5;40970:10;24294:164;:::i;22964:44::-;22959:128;;23036:35;;-1:-1:-1;;;23036:35:0;;;;;;;;;;;22959:128;23099:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;23099:35:0;-1:-1:-1;;;;;23099:35:0;;;;;;;;;23150:28;;23099:24;;23150:28;;;;;;;22856:330;22778:408;;:::o;26984:2716::-;27126:27;27156;27175:7;27156:18;:27::i;:::-;27126:57;;27241:4;-1:-1:-1;;;;;27200:45:0;27216:19;-1:-1:-1;;;;;27200:45:0;;27196:86;;27254:28;;-1:-1:-1;;;27254:28:0;;;;;;;;;;;27196:86;27296:27;26092:24;;;:15;:24;;;;;26320:26;;40970:10;25717:30;;;-1:-1:-1;;;;;25410:28:0;;25695:20;;;25692:56;27482:180;;27575:43;27592:4;40970:10;24294:164;:::i;27575:43::-;27570:92;;27627:35;;-1:-1:-1;;;27627:35:0;;;;;;;;;;;27570:92;-1:-1:-1;;;;;27679:16:0;;27675:52;;27704:23;;-1:-1:-1;;;27704:23:0;;;;;;;;;;;27675:52;27820:15;27817:160;;;27960:1;27939:19;27932:30;27817:160;-1:-1:-1;;;;;28357:24:0;;;;;;;:18;:24;;;;;;28355:26;;-1:-1:-1;;28355:26:0;;;28426:22;;;;;;;;;28424:24;;-1:-1:-1;28424:24:0;;;21636:11;21611:23;21607:41;21594:63;-1:-1:-1;;;21594:63:0;28719:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;29014:47:0;;:52;;29010:627;;29119:1;29109:11;;29087:19;29242:30;;;:17;:30;;;;;;:35;;29238:384;;29380:13;;29365:11;:28;29361:242;;29527:30;;;;:17;:30;;;;;:52;;;29361:242;29068:569;29010:627;29684:7;29680:2;-1:-1:-1;;;;;29665:27:0;29674:4;-1:-1:-1;;;;;29665:27:0;;;;;;;;;;;27115:2585;;;26984:2716;;;:::o;45521:543::-;180:14;;-1:-1:-1;;;180:14:0;;;;179:15;171:24;;;;;;202:14;:21;;-1:-1:-1;;;;202:21:0;-1:-1:-1;;;202:21:0;;;;;-1:-1:-1;;;45603:14:0;::::1;202:21:::0;45603:14:::1;45595:50;;;::::0;-1:-1:-1;;;45595:50:0;;9933:2:1;45595:50:0::1;::::0;::::1;9915:21:1::0;9972:2;9952:18;;;9945:30;10011:25;9991:18;;;9984:53;10054:18;;45595:50:0::1;9731:347:1::0;45595:50:0::1;45678:24;45696:6:::0;44274:17:::1;45678:24;:::i;:::-;45664:9;:39;;45656:73;;;::::0;-1:-1:-1;;;45656:73:0;;10590:2:1;45656:73:0::1;::::0;::::1;10572:21:1::0;10629:2;10609:18;;;10602:30;-1:-1:-1;;;10648:18:1;;;10641:51;10709:18;;45656:73:0::1;10388:345:1::0;45656:73:0::1;44142:4;45789:6;45773:13;12863:7:::0;13060:13;-1:-1:-1;;13060:31:0;;12802:308;45773:13:::1;:22;:39;;45765:60;;;::::0;-1:-1:-1;;;45765:60:0;;10940:2:1;45765:60:0::1;::::0;::::1;10922:21:1::0;10979:1;10959:18;;;10952:29;-1:-1:-1;;;10997:18:1;;;10990:38;11045:18;;45765:60:0::1;10738:331:1::0;45765:60:0::1;45873:10;45840:14;45857:27:::0;;;:15:::1;:27;::::0;;;;;:36;::::1;45929:1;45916:14:::0;::::1;;45908:43;;;::::0;-1:-1:-1;;;45908:43:0;;11276:2:1;45908:43:0::1;::::0;::::1;11258:21:1::0;11315:2;11295:18;;;11288:30;-1:-1:-1;;;11334:18:1;;;11327:46;11390:18;;45908:43:0::1;11074:340:1::0;45908:43:0::1;45982:10;45966:27;::::0;;;:15:::1;:27;::::0;;;;:39;;;46020:25:::1;::::0;46038:6;46020:5:::1;:25::i;:::-;-1:-1:-1::0;;238:14:0;:22;;-1:-1:-1;;;;238:22:0;;;45521:543::o;29796:193::-;29942:39;29959:4;29965:2;29969:7;29942:39;;;;;;;;;;;;:16;:39::i;18247:152::-;18319:7;18362:27;18381:7;18362:18;:27::i;13787:233::-;13859:7;-1:-1:-1;;;;;13883:19:0;;13879:60;;13911:28;;-1:-1:-1;;;13911:28:0;;;;;;;;;;;13879:60;-1:-1:-1;;;;;;13957:25:0;;;;;:18;:25;;;;;;8219:13;13957:55;;13787:233::o;2837:105::-;2265:13;:11;:13::i;:::-;2904:30:::1;2931:1;2904:18;:30::i;:::-;2837:105::o:0;46899:::-;2336:11;:9;:11::i;:::-;46978:7:::1;:18;46988:8:::0;;46978:7;:18:::1;:::i;46072:180::-:0;2265:13;:11;:13::i;:::-;46126:9:::1;46149:7;2450:6:::0;;-1:-1:-1;;;;;2450:6:0;;2377:87;46149:7:::1;-1:-1:-1::0;;;;;46141:21:0::1;46170;46141:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46125:71;;;46215:4;46207:37;;;::::0;-1:-1:-1;;;46207:37:0;;11831:2:1;46207:37:0::1;::::0;::::1;11813:21:1::0;11870:2;11850:18;;;11843:30;-1:-1:-1;;;11889:18:1;;;11882:50;11949:18;;46207:37:0::1;11629:344:1::0;46207:37:0::1;46114:138;46072:180::o:0;17028:104::-;17084:13;17117:7;17110:14;;;;;:::i;46617:92::-;2336:11;:9;:11::i;:::-;46687:14:::1;::::0;;-1:-1:-1;;;;46669:32:0;::::1;-1:-1:-1::0;;;46687:14:0;;;::::1;;;46686:15;46669:32:::0;;::::1;;::::0;;46617:92::o;23903:234::-;40970:10;23998:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;23998:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;23998:60:0;;;;;;;;;;24074:55;;909:41:1;;;23998:49:0;;40970:10;24074:55;;882:18:1;24074:55:0;;;;;;;23903:234;;:::o;46260:169::-;2336:11;:9;:11::i;:::-;46305:9:::1;46328:5;2543:4:::0;;-1:-1:-1;;;;;2543:4:0;;2472:83;30587:407;30762:31;30775:4;30781:2;30785:7;30762:12;:31::i;:::-;-1:-1:-1;;;;;30808:14:0;;;:19;30804:183;;30847:56;30878:4;30884:2;30888:7;30897:5;30847:30;:56::i;:::-;30842:145;;30931:40;;-1:-1:-1;;;30931:40:0;;;;;;;;;;;30842:145;30587:407;;;;:::o;46717:174::-;46792:13;46849:3;46854:18;46864:7;46854:9;:18::i;:::-;46874:7;46832:50;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46818:65;;46717:174;;;:::o;46529:80::-;2336:11;:9;:11::i;:::-;46589:4:::1;:12:::0;46529:80::o;24294:164::-;-1:-1:-1;;;;;24415:25:0;;;24391:4;24415:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24294:164::o;44876:637::-;180:14;;-1:-1:-1;;;180:14:0;;;;179:15;171:24;;;;;;202:14;:21;;-1:-1:-1;;;;202:21:0;-1:-1:-1;;;202:21:0;;;45011:4:::1;::::0;45027:28:::1;::::0;45044:10:::1;13328:2:1::0;13324:15;-1:-1:-1;;13320:53:1;45027:28:0::1;::::0;::::1;13308:66:1::0;44985:72:0::1;::::0;45004:5;;13390:12:1;;45027:28:0::1;;;;;;;;;;;;45017:39;;;;;;44985:18;:72::i;:::-;44977:108;;;::::0;-1:-1:-1;;;44977:108:0;;13615:2:1;44977:108:0::1;::::0;::::1;13597:21:1::0;13654:2;13634:18;;;13627:30;13693:25;13673:18;;;13666:53;13736:18;;44977:108:0::1;13413:347:1::0;44977:108:0::1;45118:27;45139:6:::0;44197:17:::1;45118:27;:::i;:::-;45104:9;:42;;45096:76;;;::::0;-1:-1:-1;;;45096:76:0;;13967:2:1;45096:76:0::1;::::0;::::1;13949:21:1::0;14006:2;13986:18;;;13979:30;-1:-1:-1;;;14025:18:1;;;14018:51;14086:18;;45096:76:0::1;13765:345:1::0;45096:76:0::1;44142:4;45232:6;45216:13;12863:7:::0;13060:13;-1:-1:-1;;13060:31:0;;12802:308;45216:13:::1;:22;:39;;45208:60;;;::::0;-1:-1:-1;;;45208:60:0;;10940:2:1;45208:60:0::1;::::0;::::1;10922:21:1::0;10979:1;10959:18;;;10952:29;-1:-1:-1;;;10997:18:1;;;10990:38;11045:18;;45208:60:0::1;10738:331:1::0;45208:60:0::1;45319:10;45283:14;45300:30:::0;;;:18:::1;:30;::::0;;;;;:39;::::1;45375:1;45362:14:::0;::::1;;45354:43;;;::::0;-1:-1:-1;;;45354:43:0;;14317:2:1;45354:43:0::1;::::0;::::1;14299:21:1::0;14356:2;14336:18;;;14329:30;-1:-1:-1;;;14375:18:1;;;14368:46;14431:18;;45354:43:0::1;14115:340:1::0;45354:43:0::1;45431:10;45412:30;::::0;;;:18:::1;:30;::::0;;;;:42;;;45469:25:::1;::::0;45487:6;45469:5:::1;:25::i;:::-;-1:-1:-1::0;;238:14:0;:22;;-1:-1:-1;;;;238:22:0;;;-1:-1:-1;44876:637:0:o;2950:203::-;2265:13;:11;:13::i;:::-;-1:-1:-1;;;;;3041:22:0;::::1;3033:73;;;;-1:-1:-1::0;;;3033:73:0::1;;;;;;;:::i;:::-;3117:28;3136:8;3117:18;:28::i;2703:126::-:0;2543:4;;-1:-1:-1;;;;;2543:4:0;40970:10;2765:21;2757:64;;;;-1:-1:-1;;;2757:64:0;;14662:2:1;2757:64:0;;;14644:21:1;14701:2;14681:18;;;14674:30;14740:32;14720:18;;;14713:60;14790:18;;2757:64:0;14460:354:1;24716:282:0;24781:4;24837:7;12401:1;24818:26;;:66;;;;;24871:13;;24861:7;:23;24818:66;:153;;;;-1:-1:-1;;24922:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24922:44:0;:49;;24716:282::o;19402:1275::-;19469:7;19504;;12401:1;19553:23;19549:1061;;19606:13;;19599:4;:20;19595:1015;;;19644:14;19661:23;;;:17;:23;;;;;;;-1:-1:-1;;;19750:24:0;;:29;;19746:845;;20415:113;20422:6;20432:1;20422:11;20415:113;;-1:-1:-1;;;20493:6:0;20475:25;;;;:17;:25;;;;;;20415:113;;;20561:6;19402:1275;-1:-1:-1;;;19402:1275:0:o;19746:845::-;19621:989;19595:1015;20638:31;;-1:-1:-1;;;20638:31:0;;;;;;;;;;;32180:2821;32253:20;32276:13;;;32304;;;32300:44;;32326:18;;-1:-1:-1;;;32326:18:0;;;;;;;;;;;32300:44;-1:-1:-1;;;;;32758:22:0;;;;;;:18;:22;;;;8357:2;32758:22;;;:71;;32796:32;32784:45;;32758:71;;;33072:31;;;:17;:31;;;;;-1:-1:-1;22067:15:0;;22041:24;22037:46;21636:11;21611:23;21607:41;21604:52;21594:63;;33072:173;;33307:23;;;;33072:31;;32758:22;;34072:25;32758:22;;33925:335;34586:1;34572:12;34568:20;34526:346;34627:3;34618:7;34615:16;34526:346;;34845:7;34835:8;34832:1;34805:25;34802:1;34799;34794:59;34680:1;34667:15;34526:346;;;34530:77;34905:8;34917:1;34905:13;34901:45;;34927:19;;-1:-1:-1;;;34927:19:0;;;;;;;;;;;34901:45;34963:13;:19;-1:-1:-1;;;;32180:2821:0:o;2563:132::-;2450:6;;-1:-1:-1;;;;;2450:6:0;40970:10;2627:23;2619:68;;;;-1:-1:-1;;;2619:68:0;;15021:2:1;2619:68:0;;;15003:21:1;;;15040:18;;;15033:30;15099:34;15079:18;;;15072:62;15151:18;;2619:68:0;14819:356:1;3161:191:0;3254:6;;;-1:-1:-1;;;;;3271:17:0;;;-1:-1:-1;;;;;;3271:17:0;;;;;;;3304:40;;3254:6;;;3271:17;3254:6;;3304:40;;3235:16;;3304:40;3224:128;3161:191;:::o;31002:716::-;31186:88;;-1:-1:-1;;;31186:88:0;;31165:4;;-1:-1:-1;;;;;31186:45:0;;;;;:88;;40970:10;;31253:4;;31259:7;;31268:5;;31186:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31186:88:0;;;;;;;;-1:-1:-1;;31186:88:0;;;;;;;;;;;;:::i;:::-;;;31182:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31469:6;:13;31486:1;31469:18;31465:235;;31515:40;;-1:-1:-1;;;31515:40:0;;;;;;;;;;;31465:235;31658:6;31652:13;31643:6;31639:2;31635:15;31628:38;31182:529;-1:-1:-1;;;;;;31345:64:0;-1:-1:-1;;;31345:64:0;;-1:-1:-1;31002:716:0;;;;;;:::o;41090:1745::-;41155:17;41589:4;41582;41576:11;41572:22;41681:1;41675:4;41668:15;41756:4;41753:1;41749:12;41742:19;;;41838:1;41833:3;41826:14;41942:3;42181:5;42163:428;42229:1;42224:3;42220:11;42213:18;;42400:2;42394:4;42390:13;42386:2;42382:22;42377:3;42369:36;42494:2;42484:13;;42551:25;42163:428;42551:25;-1:-1:-1;42621:13:0;;;-1:-1:-1;;42736:14:0;;;42798:19;;;42736:14;41090:1745;-1:-1:-1;41090:1745:0:o;43230:755::-;43356:4;43395;43356;43408:464;43432:5;:12;43428:1;:16;43408:464;;;43460:20;43483:5;43489:1;43483:8;;;;;;;;:::i;:::-;;;;;;;43460:31;;43521:12;43506;:27;43502:363;;;43642:44;;;;;;16217:19:1;;;16252:12;;;16245:28;;;16289:12;;43642:44:0;;;;;;;;;;;;43632:55;;;;;;43617:70;;43502:363;;;43810:44;;;;;;16217:19:1;;;16252:12;;;16245:28;;;16289:12;;43810:44:0;;;;;;;;;;;;43800:55;;;;;;43785:70;;43502:363;-1:-1:-1;43446:3:0;;;;:::i;:::-;;;;43408:464;;;-1:-1:-1;43959:20:0;;;;43230:755;-1:-1:-1;;;43230:755:0: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:131::-;-1:-1:-1;;;;;;457:32:1;;447:43;;437:71;;504:1;501;494:12;519:245;577:6;630:2;618:9;609:7;605:23;601:32;598:52;;;646:1;643;636:12;598:52;685:9;672:23;704:30;728:5;704:30;:::i;961:592::-;1032:6;1040;1093:2;1081:9;1072:7;1068:23;1064:32;1061:52;;;1109:1;1106;1099:12;1061:52;1149:9;1136:23;1178:18;1219:2;1211:6;1208:14;1205:34;;;1235:1;1232;1225:12;1205:34;1273:6;1262:9;1258:22;1248:32;;1318:7;1311:4;1307:2;1303:13;1299:27;1289:55;;1340:1;1337;1330:12;1289:55;1380:2;1367:16;1406:2;1398:6;1395:14;1392:34;;;1422:1;1419;1412:12;1392:34;1467:7;1462:2;1453:6;1449:2;1445:15;1441:24;1438:37;1435:57;;;1488:1;1485;1478:12;1435:57;1519:2;1511:11;;;;;1541:6;;-1:-1:-1;961:592:1;;-1:-1:-1;;;;961:592:1:o;1558:250::-;1643:1;1653:113;1667:6;1664:1;1661:13;1653:113;;;1743:11;;;1737:18;1724:11;;;1717:39;1689:2;1682:10;1653:113;;;-1:-1:-1;;1800:1:1;1782:16;;1775:27;1558:250::o;1813:271::-;1855:3;1893:5;1887:12;1920:6;1915:3;1908:19;1936:76;2005:6;1998:4;1993:3;1989:14;1982:4;1975:5;1971:16;1936:76;:::i;:::-;2066:2;2045:15;-1:-1:-1;;2041:29:1;2032:39;;;;2073:4;2028:50;;1813:271;-1:-1:-1;;1813:271:1:o;2089:220::-;2238:2;2227:9;2220:21;2201:4;2258:45;2299:2;2288:9;2284:18;2276:6;2258:45;:::i;2314:180::-;2373:6;2426:2;2414:9;2405:7;2401:23;2397:32;2394:52;;;2442:1;2439;2432:12;2394:52;-1:-1:-1;2465:23:1;;2314:180;-1:-1:-1;2314:180:1:o;2707:254::-;2775:6;2783;2836:2;2824:9;2815:7;2811:23;2807:32;2804:52;;;2852:1;2849;2842:12;2804:52;2875:29;2894:9;2875:29;:::i;:::-;2865:39;2951:2;2936:18;;;;2923:32;;-1:-1:-1;;;2707:254:1:o;3148:328::-;3225:6;3233;3241;3294:2;3282:9;3273:7;3269:23;3265:32;3262:52;;;3310:1;3307;3300:12;3262:52;3333:29;3352:9;3333:29;:::i;:::-;3323:39;;3381:38;3415:2;3404:9;3400:18;3381:38;:::i;:::-;3371:48;;3466:2;3455:9;3451:18;3438:32;3428:42;;3148:328;;;;;:::o;3481:347::-;3546:6;3554;3607:2;3595:9;3586:7;3582:23;3578:32;3575:52;;;3623:1;3620;3613:12;3575:52;3646:29;3665:9;3646:29;:::i;:::-;3636:39;;3725:2;3714:9;3710:18;3697:32;3772:5;3765:13;3758:21;3751:5;3748:32;3738:60;;3794:1;3791;3784:12;3738:60;3817:5;3807:15;;;3481:347;;;;;:::o;3833:127::-;3894:10;3889:3;3885:20;3882:1;3875:31;3925:4;3922:1;3915:15;3949:4;3946:1;3939:15;3965:275;4036:2;4030:9;4101:2;4082:13;;-1:-1:-1;;4078:27:1;4066:40;;4136:18;4121:34;;4157:22;;;4118:62;4115:88;;;4183:18;;:::i;:::-;4219:2;4212:22;3965:275;;-1:-1:-1;3965:275:1:o;4245:980::-;4340:6;4348;4356;4364;4417:3;4405:9;4396:7;4392:23;4388:33;4385:53;;;4434:1;4431;4424:12;4385:53;4457:29;4476:9;4457:29;:::i;:::-;4447:39;;4505:2;4526:38;4560:2;4549:9;4545:18;4526:38;:::i;:::-;4516:48;;4611:2;4600:9;4596:18;4583:32;4573:42;;4666:2;4655:9;4651:18;4638:32;4689:18;4730:2;4722:6;4719:14;4716:34;;;4746:1;4743;4736:12;4716:34;4784:6;4773:9;4769:22;4759:32;;4829:7;4822:4;4818:2;4814:13;4810:27;4800:55;;4851:1;4848;4841:12;4800:55;4887:2;4874:16;4909:2;4905;4902:10;4899:36;;;4915:18;;:::i;:::-;4957:53;5000:2;4981:13;;-1:-1:-1;;4977:27:1;4973:36;;4957:53;:::i;:::-;4944:66;;5033:2;5026:5;5019:17;5073:7;5068:2;5063;5059;5055:11;5051:20;5048:33;5045:53;;;5094:1;5091;5084:12;5045:53;5149:2;5144;5140;5136:11;5131:2;5124:5;5120:14;5107:45;5193:1;5188:2;5183;5176:5;5172:14;5168:23;5161:34;;5214:5;5204:15;;;;;4245:980;;;;;;;:::o;5415:260::-;5483:6;5491;5544:2;5532:9;5523:7;5519:23;5515:32;5512:52;;;5560:1;5557;5550:12;5512:52;5583:29;5602:9;5583:29;:::i;:::-;5573:39;;5631:38;5665:2;5654:9;5650:18;5631:38;:::i;:::-;5621:48;;5415:260;;;;;:::o;5862:1014::-;5955:6;5963;6016:2;6004:9;5995:7;5991:23;5987:32;5984:52;;;6032:1;6029;6022:12;5984:52;6068:9;6055:23;6045:33;;6097:2;6150;6139:9;6135:18;6122:32;6173:18;6214:2;6206:6;6203:14;6200:34;;;6230:1;6227;6220:12;6200:34;6268:6;6257:9;6253:22;6243:32;;6313:7;6306:4;6302:2;6298:13;6294:27;6284:55;;6335:1;6332;6325:12;6284:55;6371:2;6358:16;6393:2;6389;6386:10;6383:36;;;6399:18;;:::i;:::-;6445:2;6442:1;6438:10;6428:20;;6468:28;6492:2;6488;6484:11;6468:28;:::i;:::-;6530:15;;;6600:11;;;6596:20;;;6561:12;;;;6628:19;;;6625:39;;;6660:1;6657;6650:12;6625:39;6684:11;;;;6704:142;6720:6;6715:3;6712:15;6704:142;;;6786:17;;6774:30;;6737:12;;;;6824;;;;6704:142;;;6865:5;6855:15;;;;;;;;5862:1014;;;;;:::o;6881:402::-;7083:2;7065:21;;;7122:2;7102:18;;;7095:30;7161:34;7156:2;7141:18;;7134:62;-1:-1:-1;;;7227:2:1;7212:18;;7205:36;7273:3;7258:19;;6881:402::o;7288:380::-;7367:1;7363:12;;;;7410;;;7431:61;;7485:4;7477:6;7473:17;7463:27;;7431:61;7538:2;7530:6;7527:14;7507:18;7504:38;7501:161;;7584:10;7579:3;7575:20;7572:1;7565:31;7619:4;7616:1;7609:15;7647:4;7644:1;7637:15;7501:161;;7288:380;;;:::o;7799:545::-;7901:2;7896:3;7893:11;7890:448;;;7937:1;7962:5;7958:2;7951:17;8007:4;8003:2;7993:19;8077:2;8065:10;8061:19;8058:1;8054:27;8048:4;8044:38;8113:4;8101:10;8098:20;8095:47;;;-1:-1:-1;8136:4:1;8095:47;8191:2;8186:3;8182:12;8179:1;8175:20;8169:4;8165:31;8155:41;;8246:82;8264:2;8257:5;8254:13;8246:82;;;8309:17;;;8290:1;8279:13;8246:82;;;8250:3;;;7799:545;;;:::o;8520:1206::-;8644:18;8639:3;8636:27;8633:53;;;8666:18;;:::i;:::-;8695:94;8785:3;8745:38;8777:4;8771:11;8745:38;:::i;:::-;8739:4;8695:94;:::i;:::-;8815:1;8840:2;8835:3;8832:11;8857:1;8852:616;;;;9512:1;9529:3;9526:93;;;-1:-1:-1;9585:19:1;;;9572:33;9526:93;-1:-1:-1;;8477:1:1;8473:11;;;8469:24;8465:29;8455:40;8501:1;8497:11;;;8452:57;9632:78;;8825:895;;8852:616;7746:1;7739:14;;;7783:4;7770:18;;-1:-1:-1;;8888:17:1;;;8989:9;9011:229;9025:7;9022:1;9019:14;9011:229;;;9114:19;;;9101:33;9086:49;;9221:4;9206:20;;;;9174:1;9162:14;;;;9041:12;9011:229;;;9015:3;9268;9259:7;9256:16;9253:159;;;9392:1;9388:6;9382:3;9376;9373:1;9369:11;9365:21;9361:34;9357:39;9344:9;9339:3;9335:19;9322:33;9318:79;9310:6;9303:95;9253:159;;;9455:1;9449:3;9446:1;9442:11;9438:19;9432:4;9425:33;8825:895;;;8520:1206;;;:::o;10083:127::-;10144:10;10139:3;10135:20;10132:1;10125:31;10175:4;10172:1;10165:15;10199:4;10196:1;10189:15;10215:168;10288:9;;;10319;;10336:15;;;10330:22;;10316:37;10306:71;;10357:18;;:::i;11978:722::-;12028:3;12069:5;12063:12;12098:36;12124:9;12098:36;:::i;:::-;12153:1;12170:18;;;12197:133;;;;12344:1;12339:355;;;;12163:531;;12197:133;-1:-1:-1;;12230:24:1;;12218:37;;12303:14;;12296:22;12284:35;;12275:45;;;-1:-1:-1;12197:133:1;;12339:355;12370:5;12367:1;12360:16;12399:4;12444:2;12441:1;12431:16;12469:1;12483:165;12497:6;12494:1;12491:13;12483:165;;;12575:14;;12562:11;;;12555:35;12618:16;;;;12512:10;;12483:165;;;12487:3;;;12677:6;12672:3;12668:16;12661:23;;12163:531;;;;;11978:722;;;;:::o;12705:469::-;12926:3;12954:38;12988:3;12980:6;12954:38;:::i;:::-;13021:6;13015:13;13037:65;13095:6;13091:2;13084:4;13076:6;13072:17;13037:65;:::i;:::-;13118:50;13160:6;13156:2;13152:15;13144:6;13118:50;:::i;:::-;13111:57;12705:469;-1:-1:-1;;;;;;;12705:469:1:o;15180:489::-;-1:-1:-1;;;;;15449:15:1;;;15431:34;;15501:15;;15496:2;15481:18;;15474:43;15548:2;15533:18;;15526:34;;;15596:3;15591:2;15576:18;;15569:31;;;15374:4;;15617:46;;15643:19;;15635:6;15617:46;:::i;:::-;15609:54;15180:489;-1:-1:-1;;;;;;15180:489:1:o;15674:249::-;15743:6;15796:2;15784:9;15775:7;15771:23;15767:32;15764:52;;;15812:1;15809;15802:12;15764:52;15844:9;15838:16;15863:30;15887:5;15863:30;:::i;15928:127::-;15989:10;15984:3;15980:20;15977:1;15970:31;16020:4;16017:1;16010:15;16044:4;16041:1;16034:15;16312:135;16351:3;16372:17;;;16369:43;;16392:18;;:::i;:::-;-1:-1:-1;16439:1:1;16428:13;;16312:135::o

Swarm Source

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