FTM Price: $1.26 (-2.66%)
Gas: 3.8 GWei
 

Overview

Max Total Supply

100,000,000 GOGLZ

Holders

5,272 ( -0.038%)

Total Transfers

-

Market

Price

$0.4846 @ 0.385049 FTM (-1.15%)

Onchain Market Cap

$48,457,000.00

Circulating Supply Market Cap

$16,864,838.00

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

SONIC FAST BOI

Market

Volume (24H):$1,475,471.00
Market Capitalization:$16,864,838.00
Circulating Supply:34,738,106.00 GOGLZ
Market Data Source: Coinmarketcap

Contract Source Code Verified (Exact Match)

Contract Name:
GOGGLES

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at ftmscan.com on 2024-10-02
*/

// SPDX-License-Identifier: UNLICENSED
// THE GOGGLES STAY ON.
// SONIC GO FAST.
// THIS IS FINANCIAL ADVICE. PRESENTED BY THE CHURCH OF SPECIAL NEEDS GAMBLERS.
// GOODNIGHT FANTOM.

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

// File: contracts/token.sol



pragma solidity ^0.8.20;

// THE GOGGLES STAY ON.
// SONIC GO FAST.
// THIS IS FINANCIAL ADVICE. PRESENTED BY THE CHURCH OF SPECIAL NEEDS GAMBLERS.
// GOODNIGHT FANTOM.



// ONE LAST BANGER

contract GOGGLES is ERC20, Ownable(msg.sender) {
   
    bool public lubricating = true;
    address public liquidityPool;

    // Mint the totalSupply (100 M) to the deployer
    constructor() ERC20("GOGGLES", "GOGLZ") {
        _mint(msg.sender, 100000000 * 10 ** 18);
    }

    // Function to set lubricating state
    function setLubricating(bool _state) external onlyOwner {
        lubricating = _state;
    }

    // Define the LP address to enable trading!
    function setLiquidityPool(address _liquidityPool) external onlyOwner {
        liquidityPool = _liquidityPool;
    }

    // Override _update function to include lubricating logic (previously _beforeTokenTransfer)
    function _update(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._update(from, to, amount);
        // If liquidityPool is address(0) we've not yet enabled trading. Liquidity Loading....
        if(liquidityPool == address(0)) {
            require(from == owner() || to == owner(), "Patience - Trading Not Started Yet!");
            return;
        }
        // Allow deployer (owner) to send/receive any amount and the liquidityPool to receive any amount.
        // This allows for loading of the LP, and for people to sell tokens into the LP whilst lubrication in progress.
        if (lubricating && from != owner() && to != liquidityPool) {
            // Require that a receiving wallet will not hold more than 1% of supply after a transfer whilst lubrication is in effect
            require(
                balanceOf(to) <= totalSupply() / 100,
                "Just getting warmed up, limit of 1% of GOGGLES until Lubrication is complete!"
            );
        }
    }
    // Renounce the contract and pass ownership to address(0) to lock the contract forever more.
    function renounceTokenOwnership() public onlyOwner {
        renounceOwnership();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lubricating","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceTokenOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityPool","type":"address"}],"name":"setLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setLubricating","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600560146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50336040518060400160405280600781526020017f474f47474c4553000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f474f474c5a0000000000000000000000000000000000000000000000000000008152508160039081620000ab919062000a4c565b508060049081620000bd919062000a4c565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001355760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200012c919062000b78565b60405180910390fd5b62000146816200016a60201b60201c565b5062000164336a52b7d2dcc80cd2e40000006200023060201b60201c565b62000e38565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002a55760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200029c919062000b78565b60405180910390fd5b620002b960008383620002bd60201b60201c565b5050565b620002d08383836200052660201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603620003f357620003376200075660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620003ab57506200037c6200075660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b620003ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e49062000c1c565b60405180910390fd5b62000521565b600560149054906101000a900460ff1680156200044b57506200041b6200075660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015620004a65750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562000520576064620004be6200078060201b60201c565b620004ca919062000c9c565b620004db836200078a60201b60201c565b11156200051f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005169062000d70565b60405180910390fd5b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200057c5780600260008282546200056f919062000d92565b9250508190555062000652565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156200060b578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620006029392919062000dde565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200069d5780600260008282540392505081905550620006ea565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000749919062000e1b565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600254905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200085457607f821691505b6020821081036200086a57620008696200080c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008d47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000895565b620008e0868362000895565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200092d620009276200092184620008f8565b62000902565b620008f8565b9050919050565b6000819050919050565b62000949836200090c565b62000961620009588262000934565b848454620008a2565b825550505050565b600090565b6200097862000969565b620009858184846200093e565b505050565b5b81811015620009ad57620009a16000826200096e565b6001810190506200098b565b5050565b601f821115620009fc57620009c68162000870565b620009d18462000885565b81016020851015620009e1578190505b620009f9620009f08562000885565b8301826200098a565b50505b505050565b600082821c905092915050565b600062000a216000198460080262000a01565b1980831691505092915050565b600062000a3c838362000a0e565b9150826002028217905092915050565b62000a5782620007d2565b67ffffffffffffffff81111562000a735762000a72620007dd565b5b62000a7f82546200083b565b62000a8c828285620009b1565b600060209050601f83116001811462000ac4576000841562000aaf578287015190505b62000abb858262000a2e565b86555062000b2b565b601f19841662000ad48662000870565b60005b8281101562000afe5784890151825560018201915060208501945060208101905062000ad7565b8683101562000b1e578489015162000b1a601f89168262000a0e565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b608262000b33565b9050919050565b62000b728162000b53565b82525050565b600060208201905062000b8f600083018462000b67565b92915050565b600082825260208201905092915050565b7f50617469656e6365202d2054726164696e67204e6f742053746172746564205960008201527f6574210000000000000000000000000000000000000000000000000000000000602082015250565b600062000c0460238362000b95565b915062000c118262000ba6565b604082019050919050565b6000602082019050818103600083015262000c378162000bf5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ca982620008f8565b915062000cb683620008f8565b92508262000cc95762000cc862000c3e565b5b828204905092915050565b7f4a7573742067657474696e67207761726d65642075702c206c696d6974206f6660008201527f203125206f6620474f47474c455320756e74696c204c75627269636174696f6e60208201527f20697320636f6d706c6574652100000000000000000000000000000000000000604082015250565b600062000d58604d8362000b95565b915062000d658262000cd4565b606082019050919050565b6000602082019050818103600083015262000d8b8162000d49565b9050919050565b600062000d9f82620008f8565b915062000dac83620008f8565b925082820190508082111562000dc75762000dc662000c6d565b5b92915050565b62000dd881620008f8565b82525050565b600060608201905062000df5600083018662000b67565b62000e04602083018562000dcd565b62000e13604083018462000dcd565b949350505050565b600060208201905062000e32600083018462000dcd565b92915050565b61168a8062000e486000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610296578063a9059cbb146102b4578063dd62ed3e146102e4578063e14f08d514610314578063f2fde38b1461031e5761010b565b806370a0823114610220578063715018a6146102505780638da5cb5b1461025a57806395afda0c146102785761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c85780634bc3e7db146101e6578063665a11ca146102025761010b565b8063018770201461011057806306fdde031461012c578063095ea7b31461014a57806318160ddd1461017a575b600080fd5b61012a600480360381019061012591906110ae565b61033a565b005b610134610386565b604051610141919061116b565b60405180910390f35b610164600480360381019061015f91906111c3565b610418565b604051610171919061121e565b60405180910390f35b61018261043b565b60405161018f9190611248565b60405180910390f35b6101b260048036038101906101ad9190611263565b610445565b6040516101bf919061121e565b60405180910390f35b6101d0610474565b6040516101dd91906112d2565b60405180910390f35b61020060048036038101906101fb9190611319565b61047d565b005b61020a6104a2565b6040516102179190611355565b60405180910390f35b61023a600480360381019061023591906110ae565b6104c8565b6040516102479190611248565b60405180910390f35b610258610510565b005b610262610524565b60405161026f9190611355565b60405180910390f35b61028061054e565b60405161028d919061121e565b60405180910390f35b61029e610561565b6040516102ab919061116b565b60405180910390f35b6102ce60048036038101906102c991906111c3565b6105f3565b6040516102db919061121e565b60405180910390f35b6102fe60048036038101906102f99190611370565b610616565b60405161030b9190611248565b60405180910390f35b61031c61069d565b005b610338600480360381019061033391906110ae565b6106af565b005b610342610735565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060038054610395906113df565b80601f01602080910402602001604051908101604052809291908181526020018280546103c1906113df565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b6000806104236107bc565b90506104308185856107c4565b600191505092915050565b6000600254905090565b6000806104506107bc565b905061045d8582856107d6565b61046885858561086a565b60019150509392505050565b60006012905090565b610485610735565b80600560146101000a81548160ff02191690831515021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610518610735565b610522600061095e565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600560149054906101000a900460ff1681565b606060048054610570906113df565b80601f016020809104026020016040519081016040528092919081815260200182805461059c906113df565b80156105e95780601f106105be576101008083540402835291602001916105e9565b820191906000526020600020905b8154815290600101906020018083116105cc57829003601f168201915b5050505050905090565b6000806105fe6107bc565b905061060b81858561086a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106a5610735565b6106ad610510565b565b6106b7610735565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107295760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016107209190611355565b60405180910390fd5b6107328161095e565b50565b61073d6107bc565b73ffffffffffffffffffffffffffffffffffffffff1661075b610524565b73ffffffffffffffffffffffffffffffffffffffff16146107ba5761077e6107bc565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107b19190611355565b60405180910390fd5b565b600033905090565b6107d18383836001610a24565b505050565b60006107e28484610616565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108645781811015610854578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161084b93929190611410565b60405180910390fd5b61086384848484036000610a24565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108dc5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108d39190611355565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361094e5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109459190611355565b60405180910390fd5b610959838383610bfb565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a965760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a8d9190611355565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b085760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610aff9190611355565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610bf5578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bec9190611248565b60405180910390a35b50505050565b610c06838383610e26565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610d1357610c64610524565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ccf5750610ca0610524565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d05906114b9565b60405180910390fd5b610e21565b600560149054906101000a900460ff168015610d625750610d32610524565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610dbc5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610e20576064610dcb61043b565b610dd59190611537565b610dde836104c8565b1115610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690611600565b60405180910390fd5b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e78578060026000828254610e6c9190611620565b92505081905550610f4b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f04578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610efb93929190611410565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f945780600260008282540392505081905550610fe1565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161103e9190611248565b60405180910390a3505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061107b82611050565b9050919050565b61108b81611070565b811461109657600080fd5b50565b6000813590506110a881611082565b92915050565b6000602082840312156110c4576110c361104b565b5b60006110d284828501611099565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111155780820151818401526020810190506110fa565b60008484015250505050565b6000601f19601f8301169050919050565b600061113d826110db565b61114781856110e6565b93506111578185602086016110f7565b61116081611121565b840191505092915050565b600060208201905081810360008301526111858184611132565b905092915050565b6000819050919050565b6111a08161118d565b81146111ab57600080fd5b50565b6000813590506111bd81611197565b92915050565b600080604083850312156111da576111d961104b565b5b60006111e885828601611099565b92505060206111f9858286016111ae565b9150509250929050565b60008115159050919050565b61121881611203565b82525050565b6000602082019050611233600083018461120f565b92915050565b6112428161118d565b82525050565b600060208201905061125d6000830184611239565b92915050565b60008060006060848603121561127c5761127b61104b565b5b600061128a86828701611099565b935050602061129b86828701611099565b92505060406112ac868287016111ae565b9150509250925092565b600060ff82169050919050565b6112cc816112b6565b82525050565b60006020820190506112e760008301846112c3565b92915050565b6112f681611203565b811461130157600080fd5b50565b600081359050611313816112ed565b92915050565b60006020828403121561132f5761132e61104b565b5b600061133d84828501611304565b91505092915050565b61134f81611070565b82525050565b600060208201905061136a6000830184611346565b92915050565b600080604083850312156113875761138661104b565b5b600061139585828601611099565b92505060206113a685828601611099565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113f757607f821691505b60208210810361140a576114096113b0565b5b50919050565b60006060820190506114256000830186611346565b6114326020830185611239565b61143f6040830184611239565b949350505050565b7f50617469656e6365202d2054726164696e67204e6f742053746172746564205960008201527f6574210000000000000000000000000000000000000000000000000000000000602082015250565b60006114a36023836110e6565b91506114ae82611447565b604082019050919050565b600060208201905081810360008301526114d281611496565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115428261118d565b915061154d8361118d565b92508261155d5761155c6114d9565b5b828204905092915050565b7f4a7573742067657474696e67207761726d65642075702c206c696d6974206f6660008201527f203125206f6620474f47474c455320756e74696c204c75627269636174696f6e60208201527f20697320636f6d706c6574652100000000000000000000000000000000000000604082015250565b60006115ea604d836110e6565b91506115f582611568565b606082019050919050565b60006020820190508181036000830152611619816115dd565b9050919050565b600061162b8261118d565b91506116368361118d565b925082820190508082111561164e5761164d611508565b5b9291505056fea264697066735822122092f4c649911a52cd3c7613f04b016beff717262ae093c6528f09a12a76bd978a64736f6c63430008140033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610296578063a9059cbb146102b4578063dd62ed3e146102e4578063e14f08d514610314578063f2fde38b1461031e5761010b565b806370a0823114610220578063715018a6146102505780638da5cb5b1461025a57806395afda0c146102785761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c85780634bc3e7db146101e6578063665a11ca146102025761010b565b8063018770201461011057806306fdde031461012c578063095ea7b31461014a57806318160ddd1461017a575b600080fd5b61012a600480360381019061012591906110ae565b61033a565b005b610134610386565b604051610141919061116b565b60405180910390f35b610164600480360381019061015f91906111c3565b610418565b604051610171919061121e565b60405180910390f35b61018261043b565b60405161018f9190611248565b60405180910390f35b6101b260048036038101906101ad9190611263565b610445565b6040516101bf919061121e565b60405180910390f35b6101d0610474565b6040516101dd91906112d2565b60405180910390f35b61020060048036038101906101fb9190611319565b61047d565b005b61020a6104a2565b6040516102179190611355565b60405180910390f35b61023a600480360381019061023591906110ae565b6104c8565b6040516102479190611248565b60405180910390f35b610258610510565b005b610262610524565b60405161026f9190611355565b60405180910390f35b61028061054e565b60405161028d919061121e565b60405180910390f35b61029e610561565b6040516102ab919061116b565b60405180910390f35b6102ce60048036038101906102c991906111c3565b6105f3565b6040516102db919061121e565b60405180910390f35b6102fe60048036038101906102f99190611370565b610616565b60405161030b9190611248565b60405180910390f35b61031c61069d565b005b610338600480360381019061033391906110ae565b6106af565b005b610342610735565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060038054610395906113df565b80601f01602080910402602001604051908101604052809291908181526020018280546103c1906113df565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b6000806104236107bc565b90506104308185856107c4565b600191505092915050565b6000600254905090565b6000806104506107bc565b905061045d8582856107d6565b61046885858561086a565b60019150509392505050565b60006012905090565b610485610735565b80600560146101000a81548160ff02191690831515021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610518610735565b610522600061095e565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600560149054906101000a900460ff1681565b606060048054610570906113df565b80601f016020809104026020016040519081016040528092919081815260200182805461059c906113df565b80156105e95780601f106105be576101008083540402835291602001916105e9565b820191906000526020600020905b8154815290600101906020018083116105cc57829003601f168201915b5050505050905090565b6000806105fe6107bc565b905061060b81858561086a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106a5610735565b6106ad610510565b565b6106b7610735565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107295760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016107209190611355565b60405180910390fd5b6107328161095e565b50565b61073d6107bc565b73ffffffffffffffffffffffffffffffffffffffff1661075b610524565b73ffffffffffffffffffffffffffffffffffffffff16146107ba5761077e6107bc565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107b19190611355565b60405180910390fd5b565b600033905090565b6107d18383836001610a24565b505050565b60006107e28484610616565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108645781811015610854578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161084b93929190611410565b60405180910390fd5b61086384848484036000610a24565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108dc5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108d39190611355565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361094e5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016109459190611355565b60405180910390fd5b610959838383610bfb565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a965760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a8d9190611355565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b085760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610aff9190611355565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610bf5578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610bec9190611248565b60405180910390a35b50505050565b610c06838383610e26565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610d1357610c64610524565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ccf5750610ca0610524565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d05906114b9565b60405180910390fd5b610e21565b600560149054906101000a900460ff168015610d625750610d32610524565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015610dbc5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610e20576064610dcb61043b565b610dd59190611537565b610dde836104c8565b1115610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690611600565b60405180910390fd5b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e78578060026000828254610e6c9190611620565b92505081905550610f4b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f04578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610efb93929190611410565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f945780600260008282540392505081905550610fe1565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161103e9190611248565b60405180910390a3505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061107b82611050565b9050919050565b61108b81611070565b811461109657600080fd5b50565b6000813590506110a881611082565b92915050565b6000602082840312156110c4576110c361104b565b5b60006110d284828501611099565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111155780820151818401526020810190506110fa565b60008484015250505050565b6000601f19601f8301169050919050565b600061113d826110db565b61114781856110e6565b93506111578185602086016110f7565b61116081611121565b840191505092915050565b600060208201905081810360008301526111858184611132565b905092915050565b6000819050919050565b6111a08161118d565b81146111ab57600080fd5b50565b6000813590506111bd81611197565b92915050565b600080604083850312156111da576111d961104b565b5b60006111e885828601611099565b92505060206111f9858286016111ae565b9150509250929050565b60008115159050919050565b61121881611203565b82525050565b6000602082019050611233600083018461120f565b92915050565b6112428161118d565b82525050565b600060208201905061125d6000830184611239565b92915050565b60008060006060848603121561127c5761127b61104b565b5b600061128a86828701611099565b935050602061129b86828701611099565b92505060406112ac868287016111ae565b9150509250925092565b600060ff82169050919050565b6112cc816112b6565b82525050565b60006020820190506112e760008301846112c3565b92915050565b6112f681611203565b811461130157600080fd5b50565b600081359050611313816112ed565b92915050565b60006020828403121561132f5761132e61104b565b5b600061133d84828501611304565b91505092915050565b61134f81611070565b82525050565b600060208201905061136a6000830184611346565b92915050565b600080604083850312156113875761138661104b565b5b600061139585828601611099565b92505060206113a685828601611099565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113f757607f821691505b60208210810361140a576114096113b0565b5b50919050565b60006060820190506114256000830186611346565b6114326020830185611239565b61143f6040830184611239565b949350505050565b7f50617469656e6365202d2054726164696e67204e6f742053746172746564205960008201527f6574210000000000000000000000000000000000000000000000000000000000602082015250565b60006114a36023836110e6565b91506114ae82611447565b604082019050919050565b600060208201905081810360008301526114d281611496565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115428261118d565b915061154d8361118d565b92508261155d5761155c6114d9565b5b828204905092915050565b7f4a7573742067657474696e67207761726d65642075702c206c696d6974206f6660008201527f203125206f6620474f47474c455320756e74696c204c75627269636174696f6e60208201527f20697320636f6d706c6574652100000000000000000000000000000000000000604082015250565b60006115ea604d836110e6565b91506115f582611568565b606082019050919050565b60006020820190508181036000830152611619816115dd565b9050919050565b600061162b8261118d565b91506116368361118d565b925082820190508082111561164e5761164d611508565b5b9291505056fea264697066735822122092f4c649911a52cd3c7613f04b016beff717262ae093c6528f09a12a76bd978a64736f6c63430008140033

Deployed Bytecode Sourcemap

26099:1973:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26585:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13349:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15642:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14451:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16410:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14302:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26433:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26195:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14613:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25024:103;;;:::i;:::-;;24349:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26158:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13559:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14936:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15181:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27980:89;;;:::i;:::-;;25282:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26585:118;24235:13;:11;:13::i;:::-;26681:14:::1;26665:13;;:30;;;;;;;;;;;;;;;;;;26585:118:::0;:::o;13349:91::-;13394:13;13427:5;13420:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13349:91;:::o;15642:190::-;15715:4;15732:13;15748:12;:10;:12::i;:::-;15732:28;;15771:31;15780:5;15787:7;15796:5;15771:8;:31::i;:::-;15820:4;15813:11;;;15642:190;;;;:::o;14451:99::-;14503:7;14530:12;;14523:19;;14451:99;:::o;16410:249::-;16497:4;16514:15;16532:12;:10;:12::i;:::-;16514:30;;16555:37;16571:4;16577:7;16586:5;16555:15;:37::i;:::-;16603:26;16613:4;16619:2;16623:5;16603:9;:26::i;:::-;16647:4;16640:11;;;16410:249;;;;;:::o;14302:84::-;14351:5;14376:2;14369:9;;14302:84;:::o;26433:95::-;24235:13;:11;:13::i;:::-;26514:6:::1;26500:11;;:20;;;;;;;;;;;;;;;;;;26433:95:::0;:::o;26195:28::-;;;;;;;;;;;;;:::o;14613:118::-;14678:7;14705:9;:18;14715:7;14705:18;;;;;;;;;;;;;;;;14698:25;;14613:118;;;:::o;25024:103::-;24235:13;:11;:13::i;:::-;25089:30:::1;25116:1;25089:18;:30::i;:::-;25024:103::o:0;24349:87::-;24395:7;24422:6;;;;;;;;;;;24415:13;;24349:87;:::o;26158:30::-;;;;;;;;;;;;;:::o;13559:95::-;13606:13;13639:7;13632:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13559:95;:::o;14936:182::-;15005:4;15022:13;15038:12;:10;:12::i;:::-;15022:28;;15061:27;15071:5;15078:2;15082:5;15061:9;:27::i;:::-;15106:4;15099:11;;;14936:182;;;;:::o;15181:142::-;15261:7;15288:11;:18;15300:5;15288:18;;;;;;;;;;;;;;;:27;15307:7;15288:27;;;;;;;;;;;;;;;;15281:34;;15181:142;;;;:::o;27980:89::-;24235:13;:11;:13::i;:::-;28042:19:::1;:17;:19::i;:::-;27980:89::o:0;25282:220::-;24235:13;:11;:13::i;:::-;25387:1:::1;25367:22;;:8;:22;;::::0;25363:93:::1;;25441:1;25413:31;;;;;;;;;;;:::i;:::-;;;;;;;;25363:93;25466:28;25485:8;25466:18;:28::i;:::-;25282:220:::0;:::o;24514:166::-;24585:12;:10;:12::i;:::-;24574:23;;:7;:5;:7::i;:::-;:23;;;24570:103;;24648:12;:10;:12::i;:::-;24621:40;;;;;;;;;;;:::i;:::-;;;;;;;;24570:103;24514:166::o;4354:98::-;4407:7;4434:10;4427:17;;4354:98;:::o;20469:130::-;20554:37;20563:5;20570:7;20579:5;20586:4;20554:8;:37::i;:::-;20469:130;;;:::o;22185:487::-;22285:24;22312:25;22322:5;22329:7;22312:9;:25::i;:::-;22285:52;;22372:17;22352:16;:37;22348:317;;22429:5;22410:16;:24;22406:132;;;22489:7;22498:16;22516:5;22462:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22406:132;22581:57;22590:5;22597:7;22625:5;22606:16;:24;22632:5;22581:8;:57::i;:::-;22348:317;22274:398;22185:487;;;:::o;17044:308::-;17144:1;17128:18;;:4;:18;;;17124:88;;17197:1;17170:30;;;;;;;;;;;:::i;:::-;;;;;;;;17124:88;17240:1;17226:16;;:2;:16;;;17222:88;;17295:1;17266:32;;;;;;;;;;;:::i;:::-;;;;;;;;17222:88;17320:24;17328:4;17334:2;17338:5;17320:7;:24::i;:::-;17044:308;;;:::o;25662:191::-;25736:16;25755:6;;;;;;;;;;;25736:25;;25781:8;25772:6;;:17;;;;;;;;;;;;;;;;;;25836:8;25805:40;;25826:8;25805:40;;;;;;;;;;;;25725:128;25662:191;:::o;21450:443::-;21580:1;21563:19;;:5;:19;;;21559:91;;21635:1;21606:32;;;;;;;;;;;:::i;:::-;;;;;;;;21559:91;21683:1;21664:21;;:7;:21;;;21660:92;;21737:1;21709:31;;;;;;;;;;;:::i;:::-;;;;;;;;21660:92;21792:5;21762:11;:18;21774:5;21762:18;;;;;;;;;;;;;;;:27;21781:7;21762:27;;;;;;;;;;;;;;;:35;;;;21812:9;21808:78;;;21859:7;21843:31;;21852:5;21843:31;;;21868:5;21843:31;;;;;;:::i;:::-;;;;;;;;21808:78;21450:443;;;;:::o;26808:1068::-;26938:31;26952:4;26958:2;26962:6;26938:13;:31::i;:::-;27104:1;27079:27;;:13;;;;;;;;;;;:27;;;27076:160;;27139:7;:5;:7::i;:::-;27131:15;;:4;:15;;;:32;;;;27156:7;:5;:7::i;:::-;27150:13;;:2;:13;;;27131:32;27123:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;27218:7;;27076:160;27478:11;;;;;;;;;;;:30;;;;;27501:7;:5;:7::i;:::-;27493:15;;:4;:15;;;;27478:30;:53;;;;;27518:13;;;;;;;;;;;27512:19;;:2;:19;;;;27478:53;27474:395;;;27741:3;27725:13;:11;:13::i;:::-;:19;;;;:::i;:::-;27708:13;27718:2;27708:9;:13::i;:::-;:36;;27682:175;;;;;;;;;;;;:::i;:::-;;;;;;;;;27474:395;26808:1068;;;;:::o;17676:1135::-;17782:1;17766:18;;:4;:18;;;17762:552;;17920:5;17904:12;;:21;;;;;;;:::i;:::-;;;;;;;;17762:552;;;17958:19;17980:9;:15;17990:4;17980:15;;;;;;;;;;;;;;;;17958:37;;18028:5;18014:11;:19;18010:117;;;18086:4;18092:11;18105:5;18061:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;18010:117;18282:5;18268:11;:19;18250:9;:15;18260:4;18250:15;;;;;;;;;;;;;;;:37;;;;17943:371;17762:552;18344:1;18330:16;;:2;:16;;;18326:435;;18512:5;18496:12;;:21;;;;;;;;;;;18326:435;;;18729:5;18712:9;:13;18722:2;18712:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18326:435;18793:2;18778:25;;18787:4;18778:25;;;18797:5;18778:25;;;;;;:::i;:::-;;;;;;;;17676:1135;;;:::o;88:117:1:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:99::-;1228:6;1262:5;1256:12;1246:22;;1176:99;;;:::o;1281:169::-;1365:11;1399:6;1394:3;1387:19;1439:4;1434:3;1430:14;1415:29;;1281:169;;;;:::o;1456:246::-;1537:1;1547:113;1561:6;1558:1;1555:13;1547:113;;;1646:1;1641:3;1637:11;1631:18;1627:1;1622:3;1618:11;1611:39;1583:2;1580:1;1576:10;1571:15;;1547:113;;;1694:1;1685:6;1680:3;1676:16;1669:27;1518:184;1456:246;;;:::o;1708:102::-;1749:6;1800:2;1796:7;1791:2;1784:5;1780:14;1776:28;1766:38;;1708:102;;;:::o;1816:377::-;1904:3;1932:39;1965:5;1932:39;:::i;:::-;1987:71;2051:6;2046:3;1987:71;:::i;:::-;1980:78;;2067:65;2125:6;2120:3;2113:4;2106:5;2102:16;2067:65;:::i;:::-;2157:29;2179:6;2157:29;:::i;:::-;2152:3;2148:39;2141:46;;1908:285;1816:377;;;;:::o;2199:313::-;2312:4;2350:2;2339:9;2335:18;2327:26;;2399:9;2393:4;2389:20;2385:1;2374:9;2370:17;2363:47;2427:78;2500:4;2491:6;2427:78;:::i;:::-;2419:86;;2199:313;;;;:::o;2518:77::-;2555:7;2584:5;2573:16;;2518:77;;;:::o;2601:122::-;2674:24;2692:5;2674:24;:::i;:::-;2667:5;2664:35;2654:63;;2713:1;2710;2703:12;2654:63;2601:122;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:474::-;2942:6;2950;2999:2;2987:9;2978:7;2974:23;2970:32;2967:119;;;3005:79;;:::i;:::-;2967:119;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3252:2;3278:53;3323:7;3314:6;3303:9;3299:22;3278:53;:::i;:::-;3268:63;;3223:118;2874:474;;;;;:::o;3354:90::-;3388:7;3431:5;3424:13;3417:21;3406:32;;3354:90;;;:::o;3450:109::-;3531:21;3546:5;3531:21;:::i;:::-;3526:3;3519:34;3450:109;;:::o;3565:210::-;3652:4;3690:2;3679:9;3675:18;3667:26;;3703:65;3765:1;3754:9;3750:17;3741:6;3703:65;:::i;:::-;3565:210;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:116::-;5258:21;5273:5;5258:21;:::i;:::-;5251:5;5248:32;5238:60;;5294:1;5291;5284:12;5238:60;5188:116;:::o;5310:133::-;5353:5;5391:6;5378:20;5369:29;;5407:30;5431:5;5407:30;:::i;:::-;5310:133;;;;:::o;5449:323::-;5505:6;5554:2;5542:9;5533:7;5529:23;5525:32;5522:119;;;5560:79;;:::i;:::-;5522:119;5680:1;5705:50;5747:7;5738:6;5727:9;5723:22;5705:50;:::i;:::-;5695:60;;5651:114;5449:323;;;;:::o;5778:118::-;5865:24;5883:5;5865:24;:::i;:::-;5860:3;5853:37;5778:118;;:::o;5902:222::-;5995:4;6033:2;6022:9;6018:18;6010:26;;6046:71;6114:1;6103:9;6099:17;6090:6;6046:71;:::i;:::-;5902:222;;;;:::o;6130:474::-;6198:6;6206;6255:2;6243:9;6234:7;6230:23;6226:32;6223:119;;;6261:79;;:::i;:::-;6223:119;6381:1;6406:53;6451:7;6442:6;6431:9;6427:22;6406:53;:::i;:::-;6396:63;;6352:117;6508:2;6534:53;6579:7;6570:6;6559:9;6555:22;6534:53;:::i;:::-;6524:63;;6479:118;6130:474;;;;;:::o;6610:180::-;6658:77;6655:1;6648:88;6755:4;6752:1;6745:15;6779:4;6776:1;6769:15;6796:320;6840:6;6877:1;6871:4;6867:12;6857:22;;6924:1;6918:4;6914:12;6945:18;6935:81;;7001:4;6993:6;6989:17;6979:27;;6935:81;7063:2;7055:6;7052:14;7032:18;7029:38;7026:84;;7082:18;;:::i;:::-;7026:84;6847:269;6796:320;;;:::o;7122:442::-;7271:4;7309:2;7298:9;7294:18;7286:26;;7322:71;7390:1;7379:9;7375:17;7366:6;7322:71;:::i;:::-;7403:72;7471:2;7460:9;7456:18;7447:6;7403:72;:::i;:::-;7485;7553:2;7542:9;7538:18;7529:6;7485:72;:::i;:::-;7122:442;;;;;;:::o;7570:222::-;7710:34;7706:1;7698:6;7694:14;7687:58;7779:5;7774:2;7766:6;7762:15;7755:30;7570:222;:::o;7798:366::-;7940:3;7961:67;8025:2;8020:3;7961:67;:::i;:::-;7954:74;;8037:93;8126:3;8037:93;:::i;:::-;8155:2;8150:3;8146:12;8139:19;;7798:366;;;:::o;8170:419::-;8336:4;8374:2;8363:9;8359:18;8351:26;;8423:9;8417:4;8413:20;8409:1;8398:9;8394:17;8387:47;8451:131;8577:4;8451:131;:::i;:::-;8443:139;;8170:419;;;:::o;8595:180::-;8643:77;8640:1;8633:88;8740:4;8737:1;8730:15;8764:4;8761:1;8754:15;8781:180;8829:77;8826:1;8819:88;8926:4;8923:1;8916:15;8950:4;8947:1;8940:15;8967:185;9007:1;9024:20;9042:1;9024:20;:::i;:::-;9019:25;;9058:20;9076:1;9058:20;:::i;:::-;9053:25;;9097:1;9087:35;;9102:18;;:::i;:::-;9087:35;9144:1;9141;9137:9;9132:14;;8967:185;;;;:::o;9158:301::-;9298:34;9294:1;9286:6;9282:14;9275:58;9367:34;9362:2;9354:6;9350:15;9343:59;9436:15;9431:2;9423:6;9419:15;9412:40;9158:301;:::o;9465:366::-;9607:3;9628:67;9692:2;9687:3;9628:67;:::i;:::-;9621:74;;9704:93;9793:3;9704:93;:::i;:::-;9822:2;9817:3;9813:12;9806:19;;9465:366;;;:::o;9837:419::-;10003:4;10041:2;10030:9;10026:18;10018:26;;10090:9;10084:4;10080:20;10076:1;10065:9;10061:17;10054:47;10118:131;10244:4;10118:131;:::i;:::-;10110:139;;9837:419;;;:::o;10262:191::-;10302:3;10321:20;10339:1;10321:20;:::i;:::-;10316:25;;10355:20;10373:1;10355:20;:::i;:::-;10350:25;;10398:1;10395;10391:9;10384:16;;10419:3;10416:1;10413:10;10410:36;;;10426:18;;:::i;:::-;10410:36;10262:191;;;;:::o

Swarm Source

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