ETH Price: $3,585.97 (-3.45%)

Token

ERC-20: Alien (ALIEN)
 

Overview

Max Total Supply

1,000,000,000 ALIEN

Holders

2,322

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 ALIEN

Value
$0.00
0xca63f155EaD7b40e2E67Dc5f7E8cA50BFB283FD0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Alien

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at blastscan.io on 2024-03-04
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

/**
 * @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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` 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 amount
    ) external returns (bool);
}

// lib/openzeppelin-contracts/contracts/utils/Context.sol

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

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

// src/interfaces/IBlast.sol

interface IBlast {
    function configureClaimableGas() external;

    function configureGovernor(address governor) external;

    function configureGovernorOnBehalf(address _newGovernor, address contractAddress) external;

    function claimMaxGas(address contractAddress, address recipientOfGas) external returns (uint256);

    function isGovernor(address contractAddress) external view returns (bool);
}

// lib/openzeppelin-contracts/contracts/access/Ownable.sol

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

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

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

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

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

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

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

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

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

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

// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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);
}

// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

/**
 * @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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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].
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 value {ERC20} uses, unless this function is
     * 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 override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// src/tokenomics/Alien.sol

contract Alien is ERC20, Ownable {
    address internal constant BLAST = 0x4300000000000000000000000000000000000002;

    constructor(address recipient, address gasStation) ERC20("Alien", "ALIEN") {
        _mint(recipient, 1_000_000_000 * 10 ** decimals());

        // Blast mainnet
        if (block.chainid == 81457) {
            // Configure gas mode to claimable.
            IBlast(BLAST).configureClaimableGas();
            IBlast(BLAST).configureGovernor(gasStation);
        }
    }

    function mint(address recipient, uint256 amount) external onlyOwner {
        _mint(recipient, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"gasStation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"amount","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"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":"amount","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":"amount","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"}]

60806040523480156200001157600080fd5b50604051620010a1380380620010a18339810160408190526200003491620003b0565b6040518060400160405280600581526020016420b634b2b760d91b8152506040518060400160405280600581526020016420a624a2a760d91b815250816003908051906020019062000088929190620002ed565b5080516200009e906004906020840190620002ed565b505050620000bb620000b5620001d160201b60201c565b620001d5565b620000e482620000ce6012600a620004fd565b620000de90633b9aca0062000515565b62000227565b4662013e311415620001c9577343000000000000000000000000000000000000026001600160a01b0316634e606c476040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156200014057600080fd5b505af115801562000155573d6000803e3d6000fd5b5050604051631d70c8d360e31b81526001600160a01b0384166004820152734300000000000000000000000000000000000002925063eb8646989150602401600060405180830381600087803b158015620001af57600080fd5b505af1158015620001c4573d6000803e3d6000fd5b505050505b50506200058f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002825760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000296919062000537565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b828054620002fb9062000552565b90600052602060002090601f0160209004810192826200031f57600085556200036a565b82601f106200033a57805160ff19168380011785556200036a565b828001600101855582156200036a579182015b828111156200036a5782518255916020019190600101906200034d565b50620003789291506200037c565b5090565b5b808211156200037857600081556001016200037d565b80516001600160a01b0381168114620003ab57600080fd5b919050565b60008060408385031215620003c457600080fd5b620003cf8362000393565b9150620003df6020840162000393565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200043f578160001904821115620004235762000423620003e8565b808516156200043157918102915b93841c939080029062000403565b509250929050565b6000826200045857506001620004f7565b816200046757506000620004f7565b81600181146200048057600281146200048b57620004ab565b6001915050620004f7565b60ff8411156200049f576200049f620003e8565b50506001821b620004f7565b5060208310610133831016604e8410600b8410161715620004d0575081810a620004f7565b620004dc8383620003fe565b8060001904821115620004f357620004f3620003e8565b0290505b92915050565b60006200050e60ff84168362000447565b9392505050565b6000816000190483118215151615620005325762000532620003e8565b500290565b600082198211156200054d576200054d620003e8565b500190565b600181811c908216806200056757607f821691505b602082108114156200058957634e487b7160e01b600052602260045260246000fd5b50919050565b610b02806200059f6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101eb578063a9059cbb146101fe578063dd62ed3e14610211578063f2fde38b1461022457600080fd5b806370a0823114610197578063715018a6146101c05780638da5cb5b146101c857806395d89b41146101e357600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461016f57806340c10f191461018257600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610237565b60405161010f919061093f565b60405180910390f35b61012b6101263660046109b0565b6102c9565b604051901515815260200161010f565b6002545b60405190815260200161010f565b61012b61015b3660046109da565b6102e1565b6040516012815260200161010f565b61012b61017d3660046109b0565b610305565b6101956101903660046109b0565b610327565b005b61013f6101a5366004610a16565b6001600160a01b031660009081526020819052604090205490565b61019561033d565b6005546040516001600160a01b03909116815260200161010f565b610102610351565b61012b6101f93660046109b0565b610360565b61012b61020c3660046109b0565b6103e0565b61013f61021f366004610a38565b6103ee565b610195610232366004610a16565b610419565b60606003805461024690610a6b565b80601f016020809104026020016040519081016040528092919081815260200182805461027290610a6b565b80156102bf5780601f10610294576101008083540402835291602001916102bf565b820191906000526020600020905b8154815290600101906020018083116102a257829003601f168201915b5050505050905090565b6000336102d7818585610492565b5060019392505050565b6000336102ef8582856105b6565b6102fa858585610630565b506001949350505050565b6000336102d781858561031883836103ee565b6103229190610aa6565b610492565b61032f6107d4565b610339828261082e565b5050565b6103456107d4565b61034f60006108ed565b565b60606004805461024690610a6b565b6000338161036e82866103ee565b9050838110156103d35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102fa8286868403610492565b6000336102d7818585610630565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104216107d4565b6001600160a01b0381166104865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ca565b61048f816108ed565b50565b6001600160a01b0383166104f45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ca565b6001600160a01b0382166105555760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ca565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006105c284846103ee565b9050600019811461062a578181101561061d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ca565b61062a8484848403610492565b50505050565b6001600160a01b0383166106945760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ca565b6001600160a01b0382166106f65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ca565b6001600160a01b0383166000908152602081905260409020548181101561076e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ca565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361062a565b6005546001600160a01b0316331461034f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ca565b6001600160a01b0382166108845760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103ca565b80600260008282546108969190610aa6565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b8181101561096c57858101830151858201604001528201610950565b8181111561097e576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146109ab57600080fd5b919050565b600080604083850312156109c357600080fd5b6109cc83610994565b946020939093013593505050565b6000806000606084860312156109ef57600080fd5b6109f884610994565b9250610a0660208501610994565b9150604084013590509250925092565b600060208284031215610a2857600080fd5b610a3182610994565b9392505050565b60008060408385031215610a4b57600080fd5b610a5483610994565b9150610a6260208401610994565b90509250929050565b600181811c90821680610a7f57607f821691505b60208210811415610aa057634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610ac757634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220424faebbdb176e7f7567c08c70d2fbf174e65a79e592fe19b84a5000d65f994764736f6c634300080a0033000000000000000000000000309440cb9900f958392cdec04421acbce9f2faa9000000000000000000000000456e92dfed6f9acb3d04cab7d934034b8380be46

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101eb578063a9059cbb146101fe578063dd62ed3e14610211578063f2fde38b1461022457600080fd5b806370a0823114610197578063715018a6146101c05780638da5cb5b146101c857806395d89b41146101e357600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461016f57806340c10f191461018257600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610237565b60405161010f919061093f565b60405180910390f35b61012b6101263660046109b0565b6102c9565b604051901515815260200161010f565b6002545b60405190815260200161010f565b61012b61015b3660046109da565b6102e1565b6040516012815260200161010f565b61012b61017d3660046109b0565b610305565b6101956101903660046109b0565b610327565b005b61013f6101a5366004610a16565b6001600160a01b031660009081526020819052604090205490565b61019561033d565b6005546040516001600160a01b03909116815260200161010f565b610102610351565b61012b6101f93660046109b0565b610360565b61012b61020c3660046109b0565b6103e0565b61013f61021f366004610a38565b6103ee565b610195610232366004610a16565b610419565b60606003805461024690610a6b565b80601f016020809104026020016040519081016040528092919081815260200182805461027290610a6b565b80156102bf5780601f10610294576101008083540402835291602001916102bf565b820191906000526020600020905b8154815290600101906020018083116102a257829003601f168201915b5050505050905090565b6000336102d7818585610492565b5060019392505050565b6000336102ef8582856105b6565b6102fa858585610630565b506001949350505050565b6000336102d781858561031883836103ee565b6103229190610aa6565b610492565b61032f6107d4565b610339828261082e565b5050565b6103456107d4565b61034f60006108ed565b565b60606004805461024690610a6b565b6000338161036e82866103ee565b9050838110156103d35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102fa8286868403610492565b6000336102d7818585610630565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6104216107d4565b6001600160a01b0381166104865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103ca565b61048f816108ed565b50565b6001600160a01b0383166104f45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ca565b6001600160a01b0382166105555760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ca565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006105c284846103ee565b9050600019811461062a578181101561061d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ca565b61062a8484848403610492565b50505050565b6001600160a01b0383166106945760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ca565b6001600160a01b0382166106f65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ca565b6001600160a01b0383166000908152602081905260409020548181101561076e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ca565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361062a565b6005546001600160a01b0316331461034f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103ca565b6001600160a01b0382166108845760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103ca565b80600260008282546108969190610aa6565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b8181101561096c57858101830151858201604001528201610950565b8181111561097e576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146109ab57600080fd5b919050565b600080604083850312156109c357600080fd5b6109cc83610994565b946020939093013593505050565b6000806000606084860312156109ef57600080fd5b6109f884610994565b9250610a0660208501610994565b9150604084013590509250925092565b600060208284031215610a2857600080fd5b610a3182610994565b9392505050565b60008060408385031215610a4b57600080fd5b610a5483610994565b9150610a6260208401610994565b90509250929050565b600181811c90821680610a7f57607f821691505b60208210811415610aa057634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610ac757634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220424faebbdb176e7f7567c08c70d2fbf174e65a79e592fe19b84a5000d65f994764736f6c634300080a0033

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

000000000000000000000000309440cb9900f958392cdec04421acbce9f2faa9000000000000000000000000456e92dfed6f9acb3d04cab7d934034b8380be46

-----Decoded View---------------
Arg [0] : recipient (address): 0x309440cB9900f958392cdec04421AcBCE9f2FAA9
Arg [1] : gasStation (address): 0x456e92DfEd6F9ACb3D04caB7D934034B8380Be46

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000309440cb9900f958392cdec04421acbce9f2faa9
Arg [1] : 000000000000000000000000456e92dfed6f9acb3d04cab7d934034b8380be46


Deployed Bytecode Sourcemap

20963:628:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9744:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12095:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;12095:201:0;1053:187:1;10864:108:0;10952:12;;10864:108;;;1391:25:1;;;1379:2;1364:18;10864:108:0;1245:177:1;12876:295:0;;;;;;:::i;:::-;;:::i;10706:93::-;;;10789:2;1902:36:1;;1890:2;1875:18;10706:93:0;1760:184:1;13580:238:0;;;;;;:::i;:::-;;:::i;21477:111::-;;;;;;:::i;:::-;;:::i;:::-;;11035:127;;;;;;:::i;:::-;-1:-1:-1;;;;;11136:18:0;11109:7;11136:18;;;;;;;;;;;;11035:127;6100:103;;;:::i;5452:87::-;5525:6;;5452:87;;-1:-1:-1;;;;;5525:6:0;;;2286:51:1;;2274:2;2259:18;5452:87:0;2140:203:1;9963:104:0;;;:::i;14321:436::-;;;;;;:::i;:::-;;:::i;11368:193::-;;;;;;:::i;:::-;;:::i;11624:151::-;;;;;;:::i;:::-;;:::i;6358:201::-;;;;;;:::i;:::-;;:::i;9744:100::-;9798:13;9831:5;9824:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9744:100;:::o;12095:201::-;12178:4;3654:10;12234:32;3654:10;12250:7;12259:6;12234:8;:32::i;:::-;-1:-1:-1;12284:4:0;;12095:201;-1:-1:-1;;;12095:201:0:o;12876:295::-;13007:4;3654:10;13065:38;13081:4;3654:10;13096:6;13065:15;:38::i;:::-;13114:27;13124:4;13130:2;13134:6;13114:9;:27::i;:::-;-1:-1:-1;13159:4:0;;12876:295;-1:-1:-1;;;;12876:295:0:o;13580:238::-;13668:4;3654:10;13724:64;3654:10;13740:7;13777:10;13749:25;3654:10;13740:7;13749:9;:25::i;:::-;:38;;;;:::i;:::-;13724:8;:64::i;21477:111::-;5338:13;:11;:13::i;:::-;21556:24:::1;21562:9;21573:6;21556:5;:24::i;:::-;21477:111:::0;;:::o;6100:103::-;5338:13;:11;:13::i;:::-;6165:30:::1;6192:1;6165:18;:30::i;:::-;6100:103::o:0;9963:104::-;10019:13;10052:7;10045:14;;;;;:::i;14321:436::-;14414:4;3654:10;14414:4;14497:25;3654:10;14514:7;14497:9;:25::i;:::-;14470:52;;14561:15;14541:16;:35;;14533:85;;;;-1:-1:-1;;;14533:85:0;;3430:2:1;14533:85:0;;;3412:21:1;3469:2;3449:18;;;3442:30;3508:34;3488:18;;;3481:62;-1:-1:-1;;;3559:18:1;;;3552:35;3604:19;;14533:85:0;;;;;;;;;14654:60;14663:5;14670:7;14698:15;14679:16;:34;14654:8;:60::i;11368:193::-;11447:4;3654:10;11503:28;3654:10;11520:2;11524:6;11503:9;:28::i;11624:151::-;-1:-1:-1;;;;;11740:18:0;;;11713:7;11740:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11624:151::o;6358:201::-;5338:13;:11;:13::i;:::-;-1:-1:-1;;;;;6447:22:0;::::1;6439:73;;;::::0;-1:-1:-1;;;6439:73:0;;3836:2:1;6439:73:0::1;::::0;::::1;3818:21:1::0;3875:2;3855:18;;;3848:30;3914:34;3894:18;;;3887:62;-1:-1:-1;;;3965:18:1;;;3958:36;4011:19;;6439:73:0::1;3634:402:1::0;6439:73:0::1;6523:28;6542:8;6523:18;:28::i;:::-;6358:201:::0;:::o;18348:380::-;-1:-1:-1;;;;;18484:19:0;;18476:68;;;;-1:-1:-1;;;18476:68:0;;4243:2:1;18476:68:0;;;4225:21:1;4282:2;4262:18;;;4255:30;4321:34;4301:18;;;4294:62;-1:-1:-1;;;4372:18:1;;;4365:34;4416:19;;18476:68:0;4041:400:1;18476:68:0;-1:-1:-1;;;;;18563:21:0;;18555:68;;;;-1:-1:-1;;;18555:68:0;;4648:2:1;18555:68:0;;;4630:21:1;4687:2;4667:18;;;4660:30;4726:34;4706:18;;;4699:62;-1:-1:-1;;;4777:18:1;;;4770:32;4819:19;;18555:68:0;4446:398:1;18555:68:0;-1:-1:-1;;;;;18636:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18688:32;;1391:25:1;;;18688:32:0;;1364:18:1;18688:32:0;;;;;;;18348:380;;;:::o;19019:453::-;19154:24;19181:25;19191:5;19198:7;19181:9;:25::i;:::-;19154:52;;-1:-1:-1;;19221:16:0;:37;19217:248;;19303:6;19283:16;:26;;19275:68;;;;-1:-1:-1;;;19275:68:0;;5051:2:1;19275:68:0;;;5033:21:1;5090:2;5070:18;;;5063:30;5129:31;5109:18;;;5102:59;5178:18;;19275:68:0;4849:353:1;19275:68:0;19387:51;19396:5;19403:7;19431:6;19412:16;:25;19387:8;:51::i;:::-;19143:329;19019:453;;;:::o;15227:840::-;-1:-1:-1;;;;;15358:18:0;;15350:68;;;;-1:-1:-1;;;15350:68:0;;5409:2:1;15350:68:0;;;5391:21:1;5448:2;5428:18;;;5421:30;5487:34;5467:18;;;5460:62;-1:-1:-1;;;5538:18:1;;;5531:35;5583:19;;15350:68:0;5207:401:1;15350:68:0;-1:-1:-1;;;;;15437:16:0;;15429:64;;;;-1:-1:-1;;;15429:64:0;;5815:2:1;15429:64:0;;;5797:21:1;5854:2;5834:18;;;5827:30;5893:34;5873:18;;;5866:62;-1:-1:-1;;;5944:18:1;;;5937:33;5987:19;;15429:64:0;5613:399:1;15429:64:0;-1:-1:-1;;;;;15579:15:0;;15557:19;15579:15;;;;;;;;;;;15613:21;;;;15605:72;;;;-1:-1:-1;;;15605:72:0;;6219:2:1;15605:72:0;;;6201:21:1;6258:2;6238:18;;;6231:30;6297:34;6277:18;;;6270:62;-1:-1:-1;;;6348:18:1;;;6341:36;6394:19;;15605:72:0;6017:402:1;15605:72:0;-1:-1:-1;;;;;15713:15:0;;;:9;:15;;;;;;;;;;;15731:20;;;15713:38;;15931:13;;;;;;;;;;:23;;;;;;15983:26;;1391:25:1;;;15931:13:0;;15983:26;;1364:18:1;15983:26:0;;;;;;;16022:37;20072:125;5617:132;5525:6;;-1:-1:-1;;;;;5525:6:0;3654:10;5681:23;5673:68;;;;-1:-1:-1;;;5673:68:0;;6626:2:1;5673:68:0;;;6608:21:1;;;6645:18;;;6638:30;6704:34;6684:18;;;6677:62;6756:18;;5673:68:0;6424:356:1;16354:548:0;-1:-1:-1;;;;;16438:21:0;;16430:65;;;;-1:-1:-1;;;16430:65:0;;6987:2:1;16430:65:0;;;6969:21:1;7026:2;7006:18;;;6999:30;7065:33;7045:18;;;7038:61;7116:18;;16430:65:0;6785:355:1;16430:65:0;16586:6;16570:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16741:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;16796:37;1391:25:1;;;16796:37:0;;1364:18:1;16796:37:0;;;;;;;21477:111;;:::o;6719:191::-;6812:6;;;-1:-1:-1;;;;;6829:17:0;;;-1:-1:-1;;;;;;6829:17:0;;;;;;;6862:40;;6812:6;;;6829:17;6812:6;;6862:40;;6793:16;;6862:40;6782:128;6719:191;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;2998:225::-;3038:3;3069:1;3065:6;3062:1;3059:13;3056:136;;;3114:10;3109:3;3105:20;3102:1;3095:31;3149:4;3146:1;3139:15;3177:4;3174:1;3167:15;3056:136;-1:-1:-1;3208:9:1;;2998:225::o

Swarm Source

ipfs://424faebbdb176e7f7567c08c70d2fbf174e65a79e592fe19b84a5000d65f9947
[ 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.