FTM Price: $0.581573 (-9.83%)
 

Overview

Max Total Supply

0 GLBSD

Holders

90

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
GooolBsides

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at ftmscan.com on 2021-10-25
*/

// SPDX-License-Identifier: MIT

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

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


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;
/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


pragma solidity ^0.8.0;
/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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


pragma solidity ^0.8.0;
/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


pragma solidity ^0.8.0;
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}


pragma solidity ^0.8.0;
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/GooolBsides.sol
pragma solidity ^0.8.1;

contract GooolBsides is ERC721, Ownable {
    using Strings for uint256;
        
    mapping (uint256 => string) private _tokenURIs;
    string private _baseURIextended;

    constructor(string memory _name, string memory _symbol)
        ERC721(_name, _symbol)
        {}
        
    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
        }
        
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
        }
        
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIextended;
        }
        
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();
        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
            }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
            }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
        }

    function newTokenURI(uint256 _tokenId, string memory tokenURI_) external onlyOwner() {
        _setTokenURI(_tokenId, tokenURI_);
        }

    function mint(
        address _to, uint256 _tokenId, string memory tokenURI_) external onlyOwner() {
        _mint(_to, _tokenId);
        _setTokenURI(_tokenId, tokenURI_);
        }
    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI_","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI_","type":"string"}],"name":"newTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001c3938038062001c3983398101604081905262000034916200023b565b8151829082906200004d906000906020850190620000de565b50805162000063906001906020840190620000de565b505050620000806200007a6200008860201b60201c565b6200008c565b5050620002f8565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000ec90620002a5565b90600052602060002090601f0160209004810192826200011057600085556200015b565b82601f106200012b57805160ff19168380011785556200015b565b828001600101855582156200015b579182015b828111156200015b5782518255916020019190600101906200013e565b50620001699291506200016d565b5090565b5b808211156200016957600081556001016200016e565b600082601f8301126200019657600080fd5b81516001600160401b0380821115620001b357620001b3620002e2565b604051601f8301601f19908116603f01168101908282118183101715620001de57620001de620002e2565b81604052838152602092508683858801011115620001fb57600080fd5b600091505b838210156200021f578582018301518183018401529082019062000200565b83821115620002315760008385830101525b9695505050505050565b600080604083850312156200024f57600080fd5b82516001600160401b03808211156200026757600080fd5b620002758683870162000184565b935060208501519150808211156200028c57600080fd5b506200029b8582860162000184565b9150509250929050565b600181811c90821680620002ba57607f821691505b60208210811415620002dc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61193180620003086000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063b88d4fde11610071578063b88d4fde14610257578063c87b56dd1461026a578063d3fc98641461027d578063e985e9c514610290578063f2fde38b146102cc57600080fd5b8063715018a6146102105780638da5cb5b1461021857806395d89b4114610229578063990d09cc14610231578063a22cb4651461024457600080fd5b806323b872dd116100f457806323b872dd146101a357806342842e0e146101b657806355f804b3146101c95780636352211e146101dc57806370a08231146101ef57600080fd5b806301ffc9a71461012657806306fdde031461014e578063081812fc14610163578063095ea7b31461018e575b600080fd5b610139610134366004611562565b6102df565b60405190151581526020015b60405180910390f35b610156610331565b60405161014591906116c9565b6101766101713660046115d1565b6103c3565b6040516001600160a01b039091168152602001610145565b6101a161019c3660046114e1565b61045d565b005b6101a16101b13660046113ed565b610573565b6101a16101c43660046113ed565b6105a4565b6101a16101d736600461159c565b6105bf565b6101766101ea3660046115d1565b610600565b6102026101fd36600461139f565b610677565b604051908152602001610145565b6101a16106fe565b6006546001600160a01b0316610176565b610156610734565b6101a161023f3660046115ea565b610743565b6101a16102523660046114a5565b610777565b6101a1610265366004611429565b61083c565b6101566102783660046115d1565b610874565b6101a161028b36600461150b565b6109f6565b61013961029e3660046113ba565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101a16102da36600461139f565b610a34565b60006001600160e01b031982166380ac58cd60e01b148061031057506001600160e01b03198216635b5e139f60e01b145b8061032b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461034090611823565b80601f016020809104026020016040519081016040528092919081815260200182805461036c90611823565b80156103b95780601f1061038e576101008083540402835291602001916103b9565b820191906000526020600020905b81548152906001019060200180831161039c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061046882610600565b9050806001600160a01b0316836001600160a01b031614156104d65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610438565b336001600160a01b03821614806104f257506104f2813361029e565b6105645760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610438565b61056e8383610acf565b505050565b61057d3382610b3d565b6105995760405162461bcd60e51b815260040161043890611763565b61056e838383610c34565b61056e8383836040518060200160405280600081525061083c565b6006546001600160a01b031633146105e95760405162461bcd60e51b81526004016104389061172e565b80516105fc90600890602084019061124d565b5050565b6000818152600260205260408120546001600160a01b03168061032b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610438565b60006001600160a01b0382166106e25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610438565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146107285760405162461bcd60e51b81526004016104389061172e565b6107326000610dd4565b565b60606001805461034090611823565b6006546001600160a01b0316331461076d5760405162461bcd60e51b81526004016104389061172e565b6105fc8282610e26565b6001600160a01b0382163314156107d05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610438565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108463383610b3d565b6108625760405162461bcd60e51b815260040161043890611763565b61086e84848484610ebe565b50505050565b6000818152600260205260409020546060906001600160a01b03166108f35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610438565b6000828152600760205260408120805461090c90611823565b80601f016020809104026020016040519081016040528092919081815260200182805461093890611823565b80156109855780601f1061095a57610100808354040283529160200191610985565b820191906000526020600020905b81548152906001019060200180831161096857829003601f168201915b505050505090506000610996610ef1565b90508051600014156109a9575092915050565b8151156109db5780826040516020016109c392919061165d565b60405160208183030381529060405292505050919050565b806109e585610f00565b6040516020016109c392919061165d565b6006546001600160a01b03163314610a205760405162461bcd60e51b81526004016104389061172e565b610a2a8383610ffe565b61056e8282610e26565b6006546001600160a01b03163314610a5e5760405162461bcd60e51b81526004016104389061172e565b6001600160a01b038116610ac35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610438565b610acc81610dd4565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b0482610600565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610bb65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610438565b6000610bc183610600565b9050806001600160a01b0316846001600160a01b03161480610bfc5750836001600160a01b0316610bf1846103c3565b6001600160a01b0316145b80610c2c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610c4782610600565b6001600160a01b031614610caf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610438565b6001600160a01b038216610d115760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610438565b610d1c600082610acf565b6001600160a01b0383166000908152600360205260408120805460019290610d459084906117e0565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d739084906117b4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000828152600260205260409020546001600160a01b0316610e9f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610438565b6000828152600760209081526040909120825161056e9284019061124d565b610ec9848484610c34565b610ed584848484611140565b61086e5760405162461bcd60e51b8152600401610438906116dc565b60606008805461034090611823565b606081610f245750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610f4e5780610f388161185e565b9150610f479050600a836117cc565b9150610f28565b60008167ffffffffffffffff811115610f6957610f696118cf565b6040519080825280601f01601f191660200182016040528015610f93576020820181803683370190505b5090505b8415610c2c57610fa86001836117e0565b9150610fb5600a86611879565b610fc09060306117b4565b60f81b818381518110610fd557610fd56118b9565b60200101906001600160f81b031916908160001a905350610ff7600a866117cc565b9450610f97565b6001600160a01b0382166110545760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610438565b6000818152600260205260409020546001600160a01b0316156110b95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610438565b6001600160a01b03821660009081526003602052604081208054600192906110e29084906117b4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561124257604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061118490339089908890889060040161168c565b602060405180830381600087803b15801561119e57600080fd5b505af19250505080156111ce575060408051601f3d908101601f191682019092526111cb9181019061157f565b60015b611228573d8080156111fc576040519150601f19603f3d011682016040523d82523d6000602084013e611201565b606091505b5080516112205760405162461bcd60e51b8152600401610438906116dc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c2c565b506001949350505050565b82805461125990611823565b90600052602060002090601f01602090048101928261127b57600085556112c1565b82601f1061129457805160ff19168380011785556112c1565b828001600101855582156112c1579182015b828111156112c15782518255916020019190600101906112a6565b506112cd9291506112d1565b5090565b5b808211156112cd57600081556001016112d2565b600067ffffffffffffffff80841115611301576113016118cf565b604051601f8501601f19908116603f01168101908282118183101715611329576113296118cf565b8160405280935085815286868601111561134257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461137357600080fd5b919050565b600082601f83011261138957600080fd5b611398838335602085016112e6565b9392505050565b6000602082840312156113b157600080fd5b6113988261135c565b600080604083850312156113cd57600080fd5b6113d68361135c565b91506113e46020840161135c565b90509250929050565b60008060006060848603121561140257600080fd5b61140b8461135c565b92506114196020850161135c565b9150604084013590509250925092565b6000806000806080858703121561143f57600080fd5b6114488561135c565b93506114566020860161135c565b925060408501359150606085013567ffffffffffffffff81111561147957600080fd5b8501601f8101871361148a57600080fd5b611499878235602084016112e6565b91505092959194509250565b600080604083850312156114b857600080fd5b6114c18361135c565b9150602083013580151581146114d657600080fd5b809150509250929050565b600080604083850312156114f457600080fd5b6114fd8361135c565b946020939093013593505050565b60008060006060848603121561152057600080fd5b6115298461135c565b925060208401359150604084013567ffffffffffffffff81111561154c57600080fd5b61155886828701611378565b9150509250925092565b60006020828403121561157457600080fd5b8135611398816118e5565b60006020828403121561159157600080fd5b8151611398816118e5565b6000602082840312156115ae57600080fd5b813567ffffffffffffffff8111156115c557600080fd5b610c2c84828501611378565b6000602082840312156115e357600080fd5b5035919050565b600080604083850312156115fd57600080fd5b82359150602083013567ffffffffffffffff81111561161b57600080fd5b61162785828601611378565b9150509250929050565b600081518084526116498160208601602086016117f7565b601f01601f19169290920160200192915050565b6000835161166f8184602088016117f7565b8351908301906116838183602088016117f7565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116bf90830184611631565b9695505050505050565b6020815260006113986020830184611631565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156117c7576117c761188d565b500190565b6000826117db576117db6118a3565b500490565b6000828210156117f2576117f261188d565b500390565b60005b838110156118125781810151838201526020016117fa565b8381111561086e5750506000910152565b600181811c9082168061183757607f821691505b6020821081141561185857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156118725761187261188d565b5060010190565b600082611888576118886118a3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610acc57600080fdfea2646970667358221220c4047b369749bb692af926e9eac2befdf8f84fcb53383211381ac1b2c9be591964736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d476f6f6f6c20422d7369646573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005474c425344000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063b88d4fde11610071578063b88d4fde14610257578063c87b56dd1461026a578063d3fc98641461027d578063e985e9c514610290578063f2fde38b146102cc57600080fd5b8063715018a6146102105780638da5cb5b1461021857806395d89b4114610229578063990d09cc14610231578063a22cb4651461024457600080fd5b806323b872dd116100f457806323b872dd146101a357806342842e0e146101b657806355f804b3146101c95780636352211e146101dc57806370a08231146101ef57600080fd5b806301ffc9a71461012657806306fdde031461014e578063081812fc14610163578063095ea7b31461018e575b600080fd5b610139610134366004611562565b6102df565b60405190151581526020015b60405180910390f35b610156610331565b60405161014591906116c9565b6101766101713660046115d1565b6103c3565b6040516001600160a01b039091168152602001610145565b6101a161019c3660046114e1565b61045d565b005b6101a16101b13660046113ed565b610573565b6101a16101c43660046113ed565b6105a4565b6101a16101d736600461159c565b6105bf565b6101766101ea3660046115d1565b610600565b6102026101fd36600461139f565b610677565b604051908152602001610145565b6101a16106fe565b6006546001600160a01b0316610176565b610156610734565b6101a161023f3660046115ea565b610743565b6101a16102523660046114a5565b610777565b6101a1610265366004611429565b61083c565b6101566102783660046115d1565b610874565b6101a161028b36600461150b565b6109f6565b61013961029e3660046113ba565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101a16102da36600461139f565b610a34565b60006001600160e01b031982166380ac58cd60e01b148061031057506001600160e01b03198216635b5e139f60e01b145b8061032b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461034090611823565b80601f016020809104026020016040519081016040528092919081815260200182805461036c90611823565b80156103b95780601f1061038e576101008083540402835291602001916103b9565b820191906000526020600020905b81548152906001019060200180831161039c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061046882610600565b9050806001600160a01b0316836001600160a01b031614156104d65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610438565b336001600160a01b03821614806104f257506104f2813361029e565b6105645760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610438565b61056e8383610acf565b505050565b61057d3382610b3d565b6105995760405162461bcd60e51b815260040161043890611763565b61056e838383610c34565b61056e8383836040518060200160405280600081525061083c565b6006546001600160a01b031633146105e95760405162461bcd60e51b81526004016104389061172e565b80516105fc90600890602084019061124d565b5050565b6000818152600260205260408120546001600160a01b03168061032b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610438565b60006001600160a01b0382166106e25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610438565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146107285760405162461bcd60e51b81526004016104389061172e565b6107326000610dd4565b565b60606001805461034090611823565b6006546001600160a01b0316331461076d5760405162461bcd60e51b81526004016104389061172e565b6105fc8282610e26565b6001600160a01b0382163314156107d05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610438565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108463383610b3d565b6108625760405162461bcd60e51b815260040161043890611763565b61086e84848484610ebe565b50505050565b6000818152600260205260409020546060906001600160a01b03166108f35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610438565b6000828152600760205260408120805461090c90611823565b80601f016020809104026020016040519081016040528092919081815260200182805461093890611823565b80156109855780601f1061095a57610100808354040283529160200191610985565b820191906000526020600020905b81548152906001019060200180831161096857829003601f168201915b505050505090506000610996610ef1565b90508051600014156109a9575092915050565b8151156109db5780826040516020016109c392919061165d565b60405160208183030381529060405292505050919050565b806109e585610f00565b6040516020016109c392919061165d565b6006546001600160a01b03163314610a205760405162461bcd60e51b81526004016104389061172e565b610a2a8383610ffe565b61056e8282610e26565b6006546001600160a01b03163314610a5e5760405162461bcd60e51b81526004016104389061172e565b6001600160a01b038116610ac35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610438565b610acc81610dd4565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610b0482610600565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610bb65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610438565b6000610bc183610600565b9050806001600160a01b0316846001600160a01b03161480610bfc5750836001600160a01b0316610bf1846103c3565b6001600160a01b0316145b80610c2c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610c4782610600565b6001600160a01b031614610caf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610438565b6001600160a01b038216610d115760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610438565b610d1c600082610acf565b6001600160a01b0383166000908152600360205260408120805460019290610d459084906117e0565b90915550506001600160a01b0382166000908152600360205260408120805460019290610d739084906117b4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000828152600260205260409020546001600160a01b0316610e9f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610438565b6000828152600760209081526040909120825161056e9284019061124d565b610ec9848484610c34565b610ed584848484611140565b61086e5760405162461bcd60e51b8152600401610438906116dc565b60606008805461034090611823565b606081610f245750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610f4e5780610f388161185e565b9150610f479050600a836117cc565b9150610f28565b60008167ffffffffffffffff811115610f6957610f696118cf565b6040519080825280601f01601f191660200182016040528015610f93576020820181803683370190505b5090505b8415610c2c57610fa86001836117e0565b9150610fb5600a86611879565b610fc09060306117b4565b60f81b818381518110610fd557610fd56118b9565b60200101906001600160f81b031916908160001a905350610ff7600a866117cc565b9450610f97565b6001600160a01b0382166110545760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610438565b6000818152600260205260409020546001600160a01b0316156110b95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610438565b6001600160a01b03821660009081526003602052604081208054600192906110e29084906117b4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561124257604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061118490339089908890889060040161168c565b602060405180830381600087803b15801561119e57600080fd5b505af19250505080156111ce575060408051601f3d908101601f191682019092526111cb9181019061157f565b60015b611228573d8080156111fc576040519150601f19603f3d011682016040523d82523d6000602084013e611201565b606091505b5080516112205760405162461bcd60e51b8152600401610438906116dc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c2c565b506001949350505050565b82805461125990611823565b90600052602060002090601f01602090048101928261127b57600085556112c1565b82601f1061129457805160ff19168380011785556112c1565b828001600101855582156112c1579182015b828111156112c15782518255916020019190600101906112a6565b506112cd9291506112d1565b5090565b5b808211156112cd57600081556001016112d2565b600067ffffffffffffffff80841115611301576113016118cf565b604051601f8501601f19908116603f01168101908282118183101715611329576113296118cf565b8160405280935085815286868601111561134257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461137357600080fd5b919050565b600082601f83011261138957600080fd5b611398838335602085016112e6565b9392505050565b6000602082840312156113b157600080fd5b6113988261135c565b600080604083850312156113cd57600080fd5b6113d68361135c565b91506113e46020840161135c565b90509250929050565b60008060006060848603121561140257600080fd5b61140b8461135c565b92506114196020850161135c565b9150604084013590509250925092565b6000806000806080858703121561143f57600080fd5b6114488561135c565b93506114566020860161135c565b925060408501359150606085013567ffffffffffffffff81111561147957600080fd5b8501601f8101871361148a57600080fd5b611499878235602084016112e6565b91505092959194509250565b600080604083850312156114b857600080fd5b6114c18361135c565b9150602083013580151581146114d657600080fd5b809150509250929050565b600080604083850312156114f457600080fd5b6114fd8361135c565b946020939093013593505050565b60008060006060848603121561152057600080fd5b6115298461135c565b925060208401359150604084013567ffffffffffffffff81111561154c57600080fd5b61155886828701611378565b9150509250925092565b60006020828403121561157457600080fd5b8135611398816118e5565b60006020828403121561159157600080fd5b8151611398816118e5565b6000602082840312156115ae57600080fd5b813567ffffffffffffffff8111156115c557600080fd5b610c2c84828501611378565b6000602082840312156115e357600080fd5b5035919050565b600080604083850312156115fd57600080fd5b82359150602083013567ffffffffffffffff81111561161b57600080fd5b61162785828601611378565b9150509250929050565b600081518084526116498160208601602086016117f7565b601f01601f19169290920160200192915050565b6000835161166f8184602088016117f7565b8351908301906116838183602088016117f7565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116bf90830184611631565b9695505050505050565b6020815260006113986020830184611631565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156117c7576117c761188d565b500190565b6000826117db576117db6118a3565b500490565b6000828210156117f2576117f261188d565b500390565b60005b838110156118125781810151838201526020016117fa565b8381111561086e5750506000910152565b600181811c9082168061183757607f821691505b6020821081141561185857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156118725761187261188d565b5060010190565b600082611888576118886118a3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610acc57600080fdfea2646970667358221220c4047b369749bb692af926e9eac2befdf8f84fcb53383211381ac1b2c9be591964736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d476f6f6f6c20422d7369646573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005474c425344000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Goool B-sides
Arg [1] : _symbol (string): GLBSD

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [3] : 476f6f6f6c20422d736964657300000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 474c425344000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

34518:1953:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22332:305;;;;;;:::i;:::-;;:::i;:::-;;;6608:14:1;;6601:22;6583:41;;6571:2;6556:18;22332:305:0;;;;;;;;23277:100;;;:::i;:::-;;;;;;;:::i;24836:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5906:32:1;;;5888:51;;5876:2;5861:18;24836:221:0;5742:203:1;24359:411:0;;;;;;:::i;:::-;;:::i;:::-;;25726:339;;;;;;:::i;:::-;;:::i;26136:185::-;;;;;;:::i;:::-;;:::i;34815:115::-;;;;;;:::i;:::-;;:::i;22971:239::-;;;;;;:::i;:::-;;:::i;22701:208::-;;;;;;:::i;:::-;;:::i;:::-;;;13800:25:1;;;13788:2;13773:18;22701:208:0;13654:177:1;2402:94:0;;;:::i;1751:87::-;1824:6;;-1:-1:-1;;;;;1824:6:0;1751:87;;23446:104;;;:::i;36127:141::-;;;;;;:::i;:::-;;:::i;25129:295::-;;;;;;:::i;:::-;;:::i;26392:328::-;;;;;;:::i;:::-;;:::i;35318:801::-;;;;;;:::i;:::-;;:::i;36276:188::-;;;;;;:::i;:::-;;:::i;25495:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;25616:25:0;;;25592:4;25616:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25495:164;2651:192;;;;;;:::i;:::-;;:::i;22332:305::-;22434:4;-1:-1:-1;;;;;;22471:40:0;;-1:-1:-1;;;22471:40:0;;:105;;-1:-1:-1;;;;;;;22528:48:0;;-1:-1:-1;;;22528:48:0;22471:105;:158;;;-1:-1:-1;;;;;;;;;;20965:40:0;;;22593:36;22451:178;22332:305;-1:-1:-1;;22332:305:0:o;23277:100::-;23331:13;23364:5;23357:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23277:100;:::o;24836:221::-;24912:7;28319:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28319:16:0;24932:73;;;;-1:-1:-1;;;24932:73:0;;11023:2:1;24932:73:0;;;11005:21:1;11062:2;11042:18;;;11035:30;11101:34;11081:18;;;11074:62;-1:-1:-1;;;11152:18:1;;;11145:42;11204:19;;24932:73:0;;;;;;;;;-1:-1:-1;25025:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25025:24:0;;24836:221::o;24359:411::-;24440:13;24456:23;24471:7;24456:14;:23::i;:::-;24440:39;;24504:5;-1:-1:-1;;;;;24498:11:0;:2;-1:-1:-1;;;;;24498:11:0;;;24490:57;;;;-1:-1:-1;;;24490:57:0;;13036:2:1;24490:57:0;;;13018:21:1;13075:2;13055:18;;;13048:30;13114:34;13094:18;;;13087:62;-1:-1:-1;;;13165:18:1;;;13158:31;13206:19;;24490:57:0;12834:397:1;24490:57:0;680:10;-1:-1:-1;;;;;24582:21:0;;;;:62;;-1:-1:-1;24607:37:0;24624:5;680:10;25495:164;:::i;24607:37::-;24560:168;;;;-1:-1:-1;;;24560:168:0;;9416:2:1;24560:168:0;;;9398:21:1;9455:2;9435:18;;;9428:30;9494:34;9474:18;;;9467:62;9565:26;9545:18;;;9538:54;9609:19;;24560:168:0;9214:420:1;24560:168:0;24741:21;24750:2;24754:7;24741:8;:21::i;:::-;24429:341;24359:411;;:::o;25726:339::-;25921:41;680:10;25954:7;25921:18;:41::i;:::-;25913:103;;;;-1:-1:-1;;;25913:103:0;;;;;;;:::i;:::-;26029:28;26039:4;26045:2;26049:7;26029:9;:28::i;26136:185::-;26274:39;26291:4;26297:2;26301:7;26274:39;;;;;;;;;;;;:16;:39::i;34815:115::-;1824:6;;-1:-1:-1;;;;;1824:6:0;680:10;1971:23;1963:68;;;;-1:-1:-1;;;1963:68:0;;;;;;;:::i;:::-;34891:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;34815:115:::0;:::o;22971:239::-;23043:7;23079:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23079:16:0;23114:19;23106:73;;;;-1:-1:-1;;;23106:73:0;;10252:2:1;23106:73:0;;;10234:21:1;10291:2;10271:18;;;10264:30;10330:34;10310:18;;;10303:62;-1:-1:-1;;;10381:18:1;;;10374:39;10430:19;;23106:73:0;10050:405:1;22701:208:0;22773:7;-1:-1:-1;;;;;22801:19:0;;22793:74;;;;-1:-1:-1;;;22793:74:0;;9841:2:1;22793:74:0;;;9823:21:1;9880:2;9860:18;;;9853:30;9919:34;9899:18;;;9892:62;-1:-1:-1;;;9970:18:1;;;9963:40;10020:19;;22793:74:0;9639:406:1;22793:74:0;-1:-1:-1;;;;;;22885:16:0;;;;;:9;:16;;;;;;;22701:208::o;2402:94::-;1824:6;;-1:-1:-1;;;;;1824:6:0;680:10;1971:23;1963:68;;;;-1:-1:-1;;;1963:68:0;;;;;;;:::i;:::-;2467:21:::1;2485:1;2467:9;:21::i;:::-;2402:94::o:0;23446:104::-;23502:13;23535:7;23528:14;;;;;:::i;36127:141::-;1824:6;;-1:-1:-1;;;;;1824:6:0;680:10;1971:23;1963:68;;;;-1:-1:-1;;;1963:68:0;;;;;;;:::i;:::-;36223:33:::1;36236:8;36246:9;36223:12;:33::i;25129:295::-:0;-1:-1:-1;;;;;25232:24:0;;680:10;25232:24;;25224:62;;;;-1:-1:-1;;;25224:62:0;;8649:2:1;25224:62:0;;;8631:21:1;8688:2;8668:18;;;8661:30;8727:27;8707:18;;;8700:55;8772:18;;25224:62:0;8447:349:1;25224:62:0;680:10;25299:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25299:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25299:53:0;;;;;;;;;;25368:48;;6583:41:1;;;25299:42:0;;680:10;25368:48;;6556:18:1;25368:48:0;;;;;;;25129:295;;:::o;26392:328::-;26567:41;680:10;26600:7;26567:18;:41::i;:::-;26559:103;;;;-1:-1:-1;;;26559:103:0;;;;;;;:::i;:::-;26673:39;26687:4;26693:2;26697:7;26706:5;26673:13;:39::i;:::-;26392:328;;;;:::o;35318:801::-;28295:4;28319:16;;;:7;:16;;;;;;35391:13;;-1:-1:-1;;;;;28319:16:0;35417:76;;;;-1:-1:-1;;;35417:76:0;;12620:2:1;35417:76:0;;;12602:21:1;12659:2;12639:18;;;12632:30;12698:34;12678:18;;;12671:62;-1:-1:-1;;;12749:18:1;;;12742:45;12804:19;;35417:76:0;12418:411:1;35417:76:0;35504:23;35530:19;;;:10;:19;;;;;35504:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35560:18;35581:10;:8;:10::i;:::-;35560:31;;35671:4;35665:18;35687:1;35665:23;35661:76;;;-1:-1:-1;35712:9:0;35318:801;-1:-1:-1;;35318:801:0:o;35661:76::-;35841:23;;:27;35837:112;;35916:4;35922:9;35899:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35885:48;;;;35318:801;;;:::o;35837:112::-;36081:4;36087:18;:7;:16;:18::i;:::-;36064:42;;;;;;;;;:::i;36276:188::-;1824:6;;-1:-1:-1;;;;;1824:6:0;680:10;1971:23;1963:68;;;;-1:-1:-1;;;1963:68:0;;;;;;;:::i;:::-;36388:20:::1;36394:3;36399:8;36388:5;:20::i;:::-;36419:33;36432:8;36442:9;36419:12;:33::i;2651:192::-:0;1824:6;;-1:-1:-1;;;;;1824:6:0;680:10;1971:23;1963:68;;;;-1:-1:-1;;;1963:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2740:22:0;::::1;2732:73;;;::::0;-1:-1:-1;;;2732:73:0;;7480:2:1;2732:73:0::1;::::0;::::1;7462:21:1::0;7519:2;7499:18;;;7492:30;7558:34;7538:18;;;7531:62;-1:-1:-1;;;7609:18:1;;;7602:36;7655:19;;2732:73:0::1;7278:402:1::0;2732:73:0::1;2816:19;2826:8;2816:9;:19::i;:::-;2651:192:::0;:::o;32212:174::-;32287:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32287:29:0;-1:-1:-1;;;;;32287:29:0;;;;;;;;:24;;32341:23;32287:24;32341:14;:23::i;:::-;-1:-1:-1;;;;;32332:46:0;;;;;;;;;;;32212:174;;:::o;28524:348::-;28617:4;28319:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28319:16:0;28634:73;;;;-1:-1:-1;;;28634:73:0;;9003:2:1;28634:73:0;;;8985:21:1;9042:2;9022:18;;;9015:30;9081:34;9061:18;;;9054:62;-1:-1:-1;;;9132:18:1;;;9125:42;9184:19;;28634:73:0;8801:408:1;28634:73:0;28718:13;28734:23;28749:7;28734:14;:23::i;:::-;28718:39;;28787:5;-1:-1:-1;;;;;28776:16:0;:7;-1:-1:-1;;;;;28776:16:0;;:51;;;;28820:7;-1:-1:-1;;;;;28796:31:0;:20;28808:7;28796:11;:20::i;:::-;-1:-1:-1;;;;;28796:31:0;;28776:51;:87;;;-1:-1:-1;;;;;;25616:25:0;;;25592:4;25616:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28831:32;28768:96;28524:348;-1:-1:-1;;;;28524:348:0:o;31516:578::-;31675:4;-1:-1:-1;;;;;31648:31:0;:23;31663:7;31648:14;:23::i;:::-;-1:-1:-1;;;;;31648:31:0;;31640:85;;;;-1:-1:-1;;;31640:85:0;;12210:2:1;31640:85:0;;;12192:21:1;12249:2;12229:18;;;12222:30;12288:34;12268:18;;;12261:62;-1:-1:-1;;;12339:18:1;;;12332:39;12388:19;;31640:85:0;12008:405:1;31640:85:0;-1:-1:-1;;;;;31744:16:0;;31736:65;;;;-1:-1:-1;;;31736:65:0;;8244:2:1;31736:65:0;;;8226:21:1;8283:2;8263:18;;;8256:30;8322:34;8302:18;;;8295:62;-1:-1:-1;;;8373:18:1;;;8366:34;8417:19;;31736:65:0;8042:400:1;31736:65:0;31918:29;31935:1;31939:7;31918:8;:29::i;:::-;-1:-1:-1;;;;;31960:15:0;;;;;;:9;:15;;;;;:20;;31979:1;;31960:15;:20;;31979:1;;31960:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31991:13:0;;;;;;:9;:13;;;;;:18;;32008:1;;31991:13;:18;;32008:1;;31991:18;:::i;:::-;;;;-1:-1:-1;;32020:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32020:21:0;-1:-1:-1;;;;;32020:21:0;;;;;;;;;32059:27;;32020:16;;32059:27;;;;;;;31516:578;;;:::o;2851:173::-;2926:6;;;-1:-1:-1;;;;;2943:17:0;;;-1:-1:-1;;;;;;2943:17:0;;;;;;;2976:40;;2926:6;;;2943:17;2926:6;;2976:40;;2907:16;;2976:40;2896:128;2851:173;:::o;34946:219::-;28295:4;28319:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28319:16:0;35038:73;;;;-1:-1:-1;;;35038:73:0;;11436:2:1;35038:73:0;;;11418:21:1;11475:2;11455:18;;;11448:30;11514:34;11494:18;;;11487:62;-1:-1:-1;;;11565:18:1;;;11558:42;11617:19;;35038:73:0;11234:408:1;35038:73:0;35122:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;27602:315::-;27759:28;27769:4;27775:2;27779:7;27759:9;:28::i;:::-;27806:48;27829:4;27835:2;27839:7;27848:5;27806:22;:48::i;:::-;27798:111;;;;-1:-1:-1;;;27798:111:0;;;;;;;:::i;35181:121::-;35241:13;35274:16;35267:23;;;;;:::i;18372:723::-;18428:13;18649:10;18645:53;;-1:-1:-1;;18676:10:0;;;;;;;;;;;;-1:-1:-1;;;18676:10:0;;;;;18372:723::o;18645:53::-;18723:5;18708:12;18764:78;18771:9;;18764:78;;18797:8;;;;:::i;:::-;;-1:-1:-1;18820:10:0;;-1:-1:-1;18828:2:0;18820:10;;:::i;:::-;;;18764:78;;;18852:19;18884:6;18874:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18874:17:0;;18852:39;;18902:154;18909:10;;18902:154;;18936:11;18946:1;18936:11;;:::i;:::-;;-1:-1:-1;19005:10:0;19013:2;19005:5;:10;:::i;:::-;18992:24;;:2;:24;:::i;:::-;18979:39;;18962:6;18969;18962:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18962:56:0;;;;;;;;-1:-1:-1;19033:11:0;19042:2;19033:11;;:::i;:::-;;;18902:154;;30208:382;-1:-1:-1;;;;;30288:16:0;;30280:61;;;;-1:-1:-1;;;30280:61:0;;10662:2:1;30280:61:0;;;10644:21:1;;;10681:18;;;10674:30;10740:34;10720:18;;;10713:62;10792:18;;30280:61:0;10460:356:1;30280:61:0;28295:4;28319:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28319:16:0;:30;30352:58;;;;-1:-1:-1;;;30352:58:0;;7887:2:1;30352:58:0;;;7869:21:1;7926:2;7906:18;;;7899:30;7965;7945:18;;;7938:58;8013:18;;30352:58:0;7685:352:1;30352:58:0;-1:-1:-1;;;;;30481:13:0;;;;;;:9;:13;;;;;:18;;30498:1;;30481:13;:18;;30498:1;;30481:18;:::i;:::-;;;;-1:-1:-1;;30510:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30510:21:0;-1:-1:-1;;;;;30510:21:0;;;;;;;;30549:33;;30510:16;;;30549:33;;30510:16;;30549:33;30208:382;;:::o;32951:799::-;33106:4;-1:-1:-1;;;;;33127:13:0;;11111:20;11159:8;33123:620;;33163:72;;-1:-1:-1;;;33163:72:0;;-1:-1:-1;;;;;33163:36:0;;;;;:72;;680:10;;33214:4;;33220:7;;33229:5;;33163:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33163:72:0;;;;;;;;-1:-1:-1;;33163:72:0;;;;;;;;;;;;:::i;:::-;;;33159:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33405:13:0;;33401:272;;33448:60;;-1:-1:-1;;;33448:60:0;;;;;;;:::i;33401:272::-;33623:6;33617:13;33608:6;33604:2;33600:15;33593:38;33159:529;-1:-1:-1;;;;;;33286:51:0;-1:-1:-1;;;33286:51:0;;-1:-1:-1;33279:58:0;;33123:620;-1:-1:-1;33727:4:0;32951:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:221::-;871:5;924:3;917:4;909:6;905:17;901:27;891:55;;942:1;939;932:12;891:55;964:79;1039:3;1030:6;1017:20;1010:4;1002:6;998:17;964:79;:::i;:::-;955:88;828:221;-1:-1:-1;;;828:221:1:o;1054:186::-;1113:6;1166:2;1154:9;1145:7;1141:23;1137:32;1134:52;;;1182:1;1179;1172:12;1134:52;1205:29;1224:9;1205:29;:::i;1245:260::-;1313:6;1321;1374:2;1362:9;1353:7;1349:23;1345:32;1342:52;;;1390:1;1387;1380:12;1342:52;1413:29;1432:9;1413:29;:::i;:::-;1403:39;;1461:38;1495:2;1484:9;1480:18;1461:38;:::i;:::-;1451:48;;1245:260;;;;;:::o;1510:328::-;1587:6;1595;1603;1656:2;1644:9;1635:7;1631:23;1627:32;1624:52;;;1672:1;1669;1662:12;1624:52;1695:29;1714:9;1695:29;:::i;:::-;1685:39;;1743:38;1777:2;1766:9;1762:18;1743:38;:::i;:::-;1733:48;;1828:2;1817:9;1813:18;1800:32;1790:42;;1510:328;;;;;:::o;1843:666::-;1938:6;1946;1954;1962;2015:3;2003:9;1994:7;1990:23;1986:33;1983:53;;;2032:1;2029;2022:12;1983:53;2055:29;2074:9;2055:29;:::i;:::-;2045:39;;2103:38;2137:2;2126:9;2122:18;2103:38;:::i;:::-;2093:48;;2188:2;2177:9;2173:18;2160:32;2150:42;;2243:2;2232:9;2228:18;2215:32;2270:18;2262:6;2259:30;2256:50;;;2302:1;2299;2292:12;2256:50;2325:22;;2378:4;2370:13;;2366:27;-1:-1:-1;2356:55:1;;2407:1;2404;2397:12;2356:55;2430:73;2495:7;2490:2;2477:16;2472:2;2468;2464:11;2430:73;:::i;:::-;2420:83;;;1843:666;;;;;;;:::o;2514:347::-;2579:6;2587;2640:2;2628:9;2619:7;2615:23;2611:32;2608:52;;;2656:1;2653;2646:12;2608:52;2679:29;2698:9;2679:29;:::i;:::-;2669:39;;2758:2;2747:9;2743:18;2730:32;2805:5;2798:13;2791:21;2784:5;2781:32;2771:60;;2827:1;2824;2817:12;2771:60;2850:5;2840:15;;;2514:347;;;;;:::o;2866:254::-;2934:6;2942;2995:2;2983:9;2974:7;2970:23;2966:32;2963:52;;;3011:1;3008;3001:12;2963:52;3034:29;3053:9;3034:29;:::i;:::-;3024:39;3110:2;3095:18;;;;3082:32;;-1:-1:-1;;;2866:254:1:o;3125:464::-;3212:6;3220;3228;3281:2;3269:9;3260:7;3256:23;3252:32;3249:52;;;3297:1;3294;3287:12;3249:52;3320:29;3339:9;3320:29;:::i;:::-;3310:39;;3396:2;3385:9;3381:18;3368:32;3358:42;;3451:2;3440:9;3436:18;3423:32;3478:18;3470:6;3467:30;3464:50;;;3510:1;3507;3500:12;3464:50;3533;3575:7;3566:6;3555:9;3551:22;3533:50;:::i;:::-;3523:60;;;3125:464;;;;;:::o;3594:245::-;3652:6;3705:2;3693:9;3684:7;3680:23;3676:32;3673:52;;;3721:1;3718;3711:12;3673:52;3760:9;3747:23;3779:30;3803:5;3779:30;:::i;3844:249::-;3913:6;3966:2;3954:9;3945:7;3941:23;3937:32;3934:52;;;3982:1;3979;3972:12;3934:52;4014:9;4008:16;4033:30;4057:5;4033:30;:::i;4098:322::-;4167:6;4220:2;4208:9;4199:7;4195:23;4191:32;4188:52;;;4236:1;4233;4226:12;4188:52;4276:9;4263:23;4309:18;4301:6;4298:30;4295:50;;;4341:1;4338;4331:12;4295:50;4364;4406:7;4397:6;4386:9;4382:22;4364:50;:::i;4425:180::-;4484:6;4537:2;4525:9;4516:7;4512:23;4508:32;4505:52;;;4553:1;4550;4543:12;4505:52;-1:-1:-1;4576:23:1;;4425:180;-1:-1:-1;4425:180:1:o;4610:390::-;4688:6;4696;4749:2;4737:9;4728:7;4724:23;4720:32;4717:52;;;4765:1;4762;4755:12;4717:52;4801:9;4788:23;4778:33;;4862:2;4851:9;4847:18;4834:32;4889:18;4881:6;4878:30;4875:50;;;4921:1;4918;4911:12;4875:50;4944;4986:7;4977:6;4966:9;4962:22;4944:50;:::i;:::-;4934:60;;;4610:390;;;;;:::o;5005:257::-;5046:3;5084:5;5078:12;5111:6;5106:3;5099:19;5127:63;5183:6;5176:4;5171:3;5167:14;5160:4;5153:5;5149:16;5127:63;:::i;:::-;5244:2;5223:15;-1:-1:-1;;5219:29:1;5210:39;;;;5251:4;5206:50;;5005:257;-1:-1:-1;;5005:257:1:o;5267:470::-;5446:3;5484:6;5478:13;5500:53;5546:6;5541:3;5534:4;5526:6;5522:17;5500:53;:::i;:::-;5616:13;;5575:16;;;;5638:57;5616:13;5575:16;5672:4;5660:17;;5638:57;:::i;:::-;5711:20;;5267:470;-1:-1:-1;;;;5267:470:1:o;5950:488::-;-1:-1:-1;;;;;6219:15:1;;;6201:34;;6271:15;;6266:2;6251:18;;6244:43;6318:2;6303:18;;6296:34;;;6366:3;6361:2;6346:18;;6339:31;;;6144:4;;6387:45;;6412:19;;6404:6;6387:45;:::i;:::-;6379:53;5950:488;-1:-1:-1;;;;;;5950:488:1:o;6635:219::-;6784:2;6773:9;6766:21;6747:4;6804:44;6844:2;6833:9;6829:18;6821:6;6804:44;:::i;6859:414::-;7061:2;7043:21;;;7100:2;7080:18;;;7073:30;7139:34;7134:2;7119:18;;7112:62;-1:-1:-1;;;7205:2:1;7190:18;;7183:48;7263:3;7248:19;;6859:414::o;11647:356::-;11849:2;11831:21;;;11868:18;;;11861:30;11927:34;11922:2;11907:18;;11900:62;11994:2;11979:18;;11647:356::o;13236:413::-;13438:2;13420:21;;;13477:2;13457:18;;;13450:30;13516:34;13511:2;13496:18;;13489:62;-1:-1:-1;;;13582:2:1;13567:18;;13560:47;13639:3;13624:19;;13236:413::o;13836:128::-;13876:3;13907:1;13903:6;13900:1;13897:13;13894:39;;;13913:18;;:::i;:::-;-1:-1:-1;13949:9:1;;13836:128::o;13969:120::-;14009:1;14035;14025:35;;14040:18;;:::i;:::-;-1:-1:-1;14074:9:1;;13969:120::o;14094:125::-;14134:4;14162:1;14159;14156:8;14153:34;;;14167:18;;:::i;:::-;-1:-1:-1;14204:9:1;;14094:125::o;14224:258::-;14296:1;14306:113;14320:6;14317:1;14314:13;14306:113;;;14396:11;;;14390:18;14377:11;;;14370:39;14342:2;14335:10;14306:113;;;14437:6;14434:1;14431:13;14428:48;;;-1:-1:-1;;14472:1:1;14454:16;;14447:27;14224:258::o;14487:380::-;14566:1;14562:12;;;;14609;;;14630:61;;14684:4;14676:6;14672:17;14662:27;;14630:61;14737:2;14729:6;14726:14;14706:18;14703:38;14700:161;;;14783:10;14778:3;14774:20;14771:1;14764:31;14818:4;14815:1;14808:15;14846:4;14843:1;14836:15;14700:161;;14487:380;;;:::o;14872:135::-;14911:3;-1:-1:-1;;14932:17:1;;14929:43;;;14952:18;;:::i;:::-;-1:-1:-1;14999:1:1;14988:13;;14872:135::o;15012:112::-;15044:1;15070;15060:35;;15075:18;;:::i;:::-;-1:-1:-1;15109:9:1;;15012:112::o;15129:127::-;15190:10;15185:3;15181:20;15178:1;15171:31;15221:4;15218:1;15211:15;15245:4;15242:1;15235:15;15261:127;15322:10;15317:3;15313:20;15310:1;15303:31;15353:4;15350:1;15343:15;15377:4;15374:1;15367:15;15393:127;15454:10;15449:3;15445:20;15442:1;15435:31;15485:4;15482:1;15475:15;15509:4;15506:1;15499:15;15525:127;15586:10;15581:3;15577:20;15574:1;15567:31;15617:4;15614:1;15607:15;15641:4;15638:1;15631:15;15657:131;-1:-1:-1;;;;;;15731:32:1;;15721:43;;15711:71;;15778:1;15775;15768:12

Swarm Source

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