ETH Price: $2,509.43 (-1.23%)

Token

FER (FER)
 

Overview

Max Total Supply

10,006,500 FER

Holders

105 (0.00%)

Market

Price

$0.00 @ 0.000002 ETH (-2.53%)

Onchain Market Cap

$38,874.90

Circulating Supply Market Cap

$3,622,847.36

Other Info

Token Contract (WITH 18 Decimals)

Balance
185.402948976 FER

Value
$0.72 ( ~0.000286917735848778 Eth) [0.0019%]
0x27e4f6ea81ca237fc87a222448c40c08557bebd2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Market

Volume (24H):$4,835.01
Market Capitalization:$3,622,847.36
Circulating Supply:932,530,341.00 FER
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
VVS Finance
0X39BC1E38C842C60775CE37566D03B41A7A66C782-0X2D03BECE6747ADC00E1A131BBA1469C15FD11E03$0.0039
0.0000016 Eth
$3,375.44
858,634.934 0X39BC1E38C842C60775CE37566D03B41A7A66C782
49.1316%
2
VVS Finance
0X39BC1E38C842C60775CE37566D03B41A7A66C782-0XC21223249CA28397B4B6541DFFAECC539BFF0C59$0.0039
0.0000016 Eth
$1,981.86
504,585.433 0X39BC1E38C842C60775CE37566D03B41A7A66C782
28.8727%
3
Crypto.com Exchange
FER-USD$0.0039
0.0000016 Eth
$1,487.29
380,283.000 FER
21.7600%
4
Gate.io
FER-USDT$0.0038
0.0000015 Eth
$15.46
4,120.700 FER
0.2358%

Contract Source Code Verified (Exact Match)

Contract Name:
CosmosERC20

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 Etherscan.io on 2022-08-09
*/

// Sources flattened with hardhat v2.10.1 https://hardhat.org

// File @openzeppelin/contracts/token/ERC20/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

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

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

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

pragma solidity ^0.8.0;



/**
 * @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.zeppelin.solutions/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;
        }
        _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;
        _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;
        }
        _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 {}
}


// File contracts/ethereum-side/ICosmosToken.sol

pragma solidity 0.8.10;

/**
 * @dev Interface of the CosmosToken deployed by the gravity contract
 */
interface ICosmosToken {
    /**
    * @dev Sets the gravity contract and transfer the balance to the new address.
	 *
	 * Requirements:
	 *
	 * - `msg.sender` must be the current gravity contract
	 */
    function setGravityContract(address _gravityAddress) external;

}


// File contracts/ethereum-side/CosmosToken.sol

pragma solidity ^0.8.10;


contract CosmosERC20 is ERC20, ICosmosToken {
    uint256 private MAX_UINT = 2**256 - 1;

    address public gravity;

    uint8 private cosmosDecimals;

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


    modifier onlyGravity() {
        require(msg.sender == gravity, "Not gravity");
        _;
    }

    constructor(
        address _gravityAddress,
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) ERC20(_name, _symbol)  {
        cosmosDecimals = _decimals;
        gravity = _gravityAddress;
        _mint(_gravityAddress, MAX_UINT);

    }


    // This is not an accurate total supply. Instead this is the total supply
    // of the given cosmos asset on Ethereum at this moment in time. Keeping
    // a totally accurate supply would require constant updates from the Cosmos
    // side, while in theory this could be piggy-backed on some existing bridge
    // operation it's a lot of complextiy to add so we chose to forgoe it.

    /**
     * @dev Returns the number of tokens not currently held by the gravity address
	 *
	 */
    function totalSupply() public view virtual override returns (uint256) {
        return MAX_UINT - balanceOf(gravity);
    }


    /**
     * @dev Sets the gravity contract and transfer the balance to the new address.
	 *
	 * Requirements:
	 *
	 * - `msg.sender` must be the current gravity contract
	 */
    function setGravityContract(address _gravityAddress) external onlyGravity {
        require(balanceOf(_gravityAddress) == 0, "new gravity address balance should be zero");
        _transfer(gravity, _gravityAddress, balanceOf(gravity));
        gravity = _gravityAddress;
    }

    /**
     * @dev Overrides the decimal function in the base ERC20 contract.
	 * This override is needed to Ethereum wallets display tokens consistently
	 * with how Cosmos wallets display the native version of the token.
	 */

    function decimals()public view override returns (uint8){
        return cosmosDecimals;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_gravityAddress","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"}],"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":"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":[],"name":"gravity","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_gravityAddress","type":"address"}],"name":"setGravityContract","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"}]

60806040526000196005553480156200001757600080fd5b5060405162000e8038038062000e808339810160408190526200003a9162000311565b825183908390620000539060039060208501906200019e565b508051620000699060049060208401906200019e565b5050600680546001600160a81b031916600160a01b60ff8516026001600160a01b031916176001600160a01b03871617905550600554620000ac908590620000b6565b5050505062000419565b6001600160a01b038216620001115760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001259190620003b5565b90915550506001600160a01b0382166000908152602081905260408120805483929062000154908490620003b5565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001ac90620003dc565b90600052602060002090601f016020900481019282620001d057600085556200021b565b82601f10620001eb57805160ff19168380011785556200021b565b828001600101855582156200021b579182015b828111156200021b578251825591602001919060010190620001fe565b50620002299291506200022d565b5090565b5b808211156200022957600081556001016200022e565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200026c57600080fd5b81516001600160401b038082111562000289576200028962000244565b604051601f8301601f19908116603f01168101908282118183101715620002b457620002b462000244565b81604052838152602092508683858801011115620002d157600080fd5b600091505b83821015620002f55785820183015181830184015290820190620002d6565b83821115620003075760008385830101525b9695505050505050565b600080600080608085870312156200032857600080fd5b84516001600160a01b03811681146200034057600080fd5b60208601519094506001600160401b03808211156200035e57600080fd5b6200036c888389016200025a565b945060408701519150808211156200038357600080fd5b5062000392878288016200025a565b925050606085015160ff81168114620003aa57600080fd5b939692955090935050565b60008219821115620003d757634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620003f157607f821691505b602082108114156200041357634e487b7160e01b600052602260045260246000fd5b50919050565b610a5780620004296000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80635fd130a91161008c578063a457c2d711610066578063a457c2d7146101b6578063a9059cbb146101c9578063cbf0a64e146101dc578063dd62ed3e1461020757600080fd5b80635fd130a91461017057806370a082311461018557806395d89b41146101ae57600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd1461012b578063313ce5671461013e578063395093511461015d575b600080fd5b6100dc61021a565b6040516100e99190610875565b60405180910390f35b6101056101003660046108e6565b6102ac565b60405190151581526020016100e9565b61011d6102c4565b6040519081526020016100e9565b610105610139366004610910565b6102f1565b600654600160a01b900460ff1660405160ff90911681526020016100e9565b61010561016b3660046108e6565b610315565b61018361017e36600461094c565b610337565b005b61011d61019336600461094c565b6001600160a01b031660009081526020819052604090205490565b6100dc610446565b6101056101c43660046108e6565b610455565b6101056101d73660046108e6565b6104d0565b6006546101ef906001600160a01b031681565b6040516001600160a01b0390911681526020016100e9565b61011d61021536600461096e565b6104de565b606060038054610229906109a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610255906109a1565b80156102a25780601f10610277576101008083540402835291602001916102a2565b820191906000526020600020905b81548152906001019060200180831161028557829003601f168201915b5050505050905090565b6000336102ba818585610509565b5060019392505050565b6006546001600160a01b03166000908152602081905260408120546005546102ec91906109f2565b905090565b6000336102ff85828561062d565b61030a8585856106a7565b506001949350505050565b6000336102ba81858561032883836104de565b6103329190610a09565b610509565b6006546001600160a01b031633146103845760405162461bcd60e51b815260206004820152600b60248201526a4e6f74206772617669747960a81b60448201526064015b60405180910390fd5b6001600160a01b038116600090815260208190526040902054156103fd5760405162461bcd60e51b815260206004820152602a60248201527f6e6577206772617669747920616464726573732062616c616e63652073686f756044820152696c64206265207a65726f60b01b606482015260840161037b565b6006546001600160a01b0316600081815260208190526040902054610424919083906106a7565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b606060048054610229906109a1565b6000338161046382866104de565b9050838110156104c35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161037b565b61030a8286868403610509565b6000336102ba8185856106a7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661056b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161037b565b6001600160a01b0382166105cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161037b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061063984846104de565b905060001981146106a157818110156106945760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161037b565b6106a18484848403610509565b50505050565b6001600160a01b03831661070b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161037b565b6001600160a01b03821661076d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161037b565b6001600160a01b038316600090815260208190526040902054818110156107e55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161037b565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061081c908490610a09565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161086891815260200190565b60405180910390a36106a1565b600060208083528351808285015260005b818110156108a257858101830151858201604001528201610886565b818111156108b4576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146108e157600080fd5b919050565b600080604083850312156108f957600080fd5b610902836108ca565b946020939093013593505050565b60008060006060848603121561092557600080fd5b61092e846108ca565b925061093c602085016108ca565b9150604084013590509250925092565b60006020828403121561095e57600080fd5b610967826108ca565b9392505050565b6000806040838503121561098157600080fd5b61098a836108ca565b9150610998602084016108ca565b90509250929050565b600181811c908216806109b557607f821691505b602082108114156109d657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610a0457610a046109dc565b500390565b60008219821115610a1c57610a1c6109dc565b50019056fea26469706673582212208a50ee3c57fd9323054bc0e201aca916319d424a626afb75b1f91d15df7259af64736f6c634300080a00330000000000000000000000000363ef544e397a2b1c8c93ade6a6cdc391c3d0c9000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000003464552000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034645520000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c80635fd130a91161008c578063a457c2d711610066578063a457c2d7146101b6578063a9059cbb146101c9578063cbf0a64e146101dc578063dd62ed3e1461020757600080fd5b80635fd130a91461017057806370a082311461018557806395d89b41146101ae57600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd1461012b578063313ce5671461013e578063395093511461015d575b600080fd5b6100dc61021a565b6040516100e99190610875565b60405180910390f35b6101056101003660046108e6565b6102ac565b60405190151581526020016100e9565b61011d6102c4565b6040519081526020016100e9565b610105610139366004610910565b6102f1565b600654600160a01b900460ff1660405160ff90911681526020016100e9565b61010561016b3660046108e6565b610315565b61018361017e36600461094c565b610337565b005b61011d61019336600461094c565b6001600160a01b031660009081526020819052604090205490565b6100dc610446565b6101056101c43660046108e6565b610455565b6101056101d73660046108e6565b6104d0565b6006546101ef906001600160a01b031681565b6040516001600160a01b0390911681526020016100e9565b61011d61021536600461096e565b6104de565b606060038054610229906109a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610255906109a1565b80156102a25780601f10610277576101008083540402835291602001916102a2565b820191906000526020600020905b81548152906001019060200180831161028557829003601f168201915b5050505050905090565b6000336102ba818585610509565b5060019392505050565b6006546001600160a01b03166000908152602081905260408120546005546102ec91906109f2565b905090565b6000336102ff85828561062d565b61030a8585856106a7565b506001949350505050565b6000336102ba81858561032883836104de565b6103329190610a09565b610509565b6006546001600160a01b031633146103845760405162461bcd60e51b815260206004820152600b60248201526a4e6f74206772617669747960a81b60448201526064015b60405180910390fd5b6001600160a01b038116600090815260208190526040902054156103fd5760405162461bcd60e51b815260206004820152602a60248201527f6e6577206772617669747920616464726573732062616c616e63652073686f756044820152696c64206265207a65726f60b01b606482015260840161037b565b6006546001600160a01b0316600081815260208190526040902054610424919083906106a7565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b606060048054610229906109a1565b6000338161046382866104de565b9050838110156104c35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161037b565b61030a8286868403610509565b6000336102ba8185856106a7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661056b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161037b565b6001600160a01b0382166105cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161037b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061063984846104de565b905060001981146106a157818110156106945760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161037b565b6106a18484848403610509565b50505050565b6001600160a01b03831661070b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161037b565b6001600160a01b03821661076d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161037b565b6001600160a01b038316600090815260208190526040902054818110156107e55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161037b565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061081c908490610a09565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161086891815260200190565b60405180910390a36106a1565b600060208083528351808285015260005b818110156108a257858101830151858201604001528201610886565b818111156108b4576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146108e157600080fd5b919050565b600080604083850312156108f957600080fd5b610902836108ca565b946020939093013593505050565b60008060006060848603121561092557600080fd5b61092e846108ca565b925061093c602085016108ca565b9150604084013590509250925092565b60006020828403121561095e57600080fd5b610967826108ca565b9392505050565b6000806040838503121561098157600080fd5b61098a836108ca565b9150610998602084016108ca565b90509250929050565b600181811c908216806109b557607f821691505b602082108114156109d657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610a0457610a046109dc565b500390565b60008219821115610a1c57610a1c6109dc565b50019056fea26469706673582212208a50ee3c57fd9323054bc0e201aca916319d424a626afb75b1f91d15df7259af64736f6c634300080a0033

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

0000000000000000000000000363ef544e397a2b1c8c93ade6a6cdc391c3d0c9000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000003464552000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034645520000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _gravityAddress (address): 0x0363eF544E397A2B1c8C93ade6A6cDc391C3d0c9
Arg [1] : _name (string): FER
Arg [2] : _symbol (string): FER
Arg [3] : _decimals (uint8): 18

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000363ef544e397a2b1c8c93ade6a6cdc391c3d0c9
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4645520000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4645520000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

18085:2096:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6769:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9120:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;9120:201:0;1053:187:1;19236:125:0;;;:::i;:::-;;;1391:25:1;;;1379:2;1364:18;19236:125:0;1245:177:1;9901:295:0;;;;;;:::i;:::-;;:::i;20081:95::-;20154:14;;-1:-1:-1;;;20154:14:0;;;;20081:95;;1932:4:1;1920:17;;;1902:36;;1890:2;1875:18;20081:95:0;1760:184:1;10605:238:0;;;;;;:::i;:::-;;:::i;19556:281::-;;;;;;:::i;:::-;;:::i;:::-;;8060:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8161:18:0;8134:7;8161:18;;;;;;;;;;;;8060:127;6988:104;;;:::i;11346:436::-;;;;;;:::i;:::-;;:::i;8393:193::-;;;;;;:::i;:::-;;:::i;18182:22::-;;;;;-1:-1:-1;;;;;18182:22:0;;;;;;-1:-1:-1;;;;;2304:32:1;;;2286:51;;2274:2;2259:18;18182:22:0;2140:203:1;8649:151:0;;;;;;:::i;:::-;;:::i;6769:100::-;6823:13;6856:5;6849:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6769:100;:::o;9120:201::-;9203:4;4485:10;9259:32;4485:10;9275:7;9284:6;9259:8;:32::i;:::-;-1:-1:-1;9309:4:0;;9120:201;-1:-1:-1;;;9120:201:0:o;19236:125::-;19345:7;;-1:-1:-1;;;;;19345:7:0;19297;8161:18;;;;;;;;;;;19324:8;;:29;;;;:::i;:::-;19317:36;;19236:125;:::o;9901:295::-;10032:4;4485:10;10090:38;10106:4;4485:10;10121:6;10090:15;:38::i;:::-;10139:27;10149:4;10155:2;10159:6;10139:9;:27::i;:::-;-1:-1:-1;10184:4:0;;9901:295;-1:-1:-1;;;;9901:295:0:o;10605:238::-;10693:4;4485:10;10749:64;4485:10;10765:7;10802:10;10774:25;4485:10;10765:7;10774:9;:25::i;:::-;:38;;;;:::i;:::-;10749:8;:64::i;19556:281::-;18384:7;;-1:-1:-1;;;;;18384:7:0;18370:10;:21;18362:45;;;;-1:-1:-1;;;18362:45:0;;3595:2:1;18362:45:0;;;3577:21:1;3634:2;3614:18;;;3607:30;-1:-1:-1;;;3653:18:1;;;3646:41;3704:18;;18362:45:0;;;;;;;;;-1:-1:-1;;;;;8161:18:0;;8134:7;8161:18;;;;;;;;;;;19649:31;19641:86:::1;;;::::0;-1:-1:-1;;;19641:86:0;;3935:2:1;19641:86:0::1;::::0;::::1;3917:21:1::0;3974:2;3954:18;;;3947:30;4013:34;3993:18;;;3986:62;-1:-1:-1;;;4064:18:1;;;4057:40;4114:19;;19641:86:0::1;3733:406:1::0;19641:86:0::1;19748:7;::::0;-1:-1:-1;;;;;19748:7:0::1;8134::::0;8161:18;;;;;;;;;;;19738:55:::1;::::0;19748:7;19757:15;;19738:9:::1;:55::i;:::-;19804:7;:25:::0;;-1:-1:-1;;;;;;19804:25:0::1;-1:-1:-1::0;;;;;19804:25:0;;;::::1;::::0;;;::::1;::::0;;19556:281::o;6988:104::-;7044:13;7077:7;7070:14;;;;;:::i;11346:436::-;11439:4;4485:10;11439:4;11522:25;4485:10;11539:7;11522:9;:25::i;:::-;11495:52;;11586:15;11566:16;:35;;11558:85;;;;-1:-1:-1;;;11558:85:0;;4346:2:1;11558:85:0;;;4328:21:1;4385:2;4365:18;;;4358:30;4424:34;4404:18;;;4397:62;-1:-1:-1;;;4475:18:1;;;4468:35;4520:19;;11558:85:0;4144:401:1;11558:85:0;11679:60;11688:5;11695:7;11723:15;11704:16;:34;11679:8;:60::i;8393:193::-;8472:4;4485:10;8528:28;4485:10;8545:2;8549:6;8528:9;:28::i;8649:151::-;-1:-1:-1;;;;;8765:18:0;;;8738:7;8765:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8649:151::o;14971:380::-;-1:-1:-1;;;;;15107:19:0;;15099:68;;;;-1:-1:-1;;;15099:68:0;;4752:2:1;15099:68:0;;;4734:21:1;4791:2;4771:18;;;4764:30;4830:34;4810:18;;;4803:62;-1:-1:-1;;;4881:18:1;;;4874:34;4925:19;;15099:68:0;4550:400:1;15099:68:0;-1:-1:-1;;;;;15186:21:0;;15178:68;;;;-1:-1:-1;;;15178:68:0;;5157:2:1;15178:68:0;;;5139:21:1;5196:2;5176:18;;;5169:30;5235:34;5215:18;;;5208:62;-1:-1:-1;;;5286:18:1;;;5279:32;5328:19;;15178:68:0;4955:398:1;15178:68:0;-1:-1:-1;;;;;15259:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15311:32;;1391:25:1;;;15311:32:0;;1364:18:1;15311:32:0;;;;;;;14971:380;;;:::o;15642:453::-;15777:24;15804:25;15814:5;15821:7;15804:9;:25::i;:::-;15777:52;;-1:-1:-1;;15844:16:0;:37;15840:248;;15926:6;15906:16;:26;;15898:68;;;;-1:-1:-1;;;15898:68:0;;5560:2:1;15898:68:0;;;5542:21:1;5599:2;5579:18;;;5572:30;5638:31;5618:18;;;5611:59;5687:18;;15898:68:0;5358:353:1;15898:68:0;16010:51;16019:5;16026:7;16054:6;16035:16;:25;16010:8;:51::i;:::-;15766:329;15642:453;;;:::o;12252:671::-;-1:-1:-1;;;;;12383:18:0;;12375:68;;;;-1:-1:-1;;;12375:68:0;;5918:2:1;12375:68:0;;;5900:21:1;5957:2;5937:18;;;5930:30;5996:34;5976:18;;;5969:62;-1:-1:-1;;;6047:18:1;;;6040:35;6092:19;;12375:68:0;5716:401:1;12375:68:0;-1:-1:-1;;;;;12462:16:0;;12454:64;;;;-1:-1:-1;;;12454:64:0;;6324:2:1;12454:64:0;;;6306:21:1;6363:2;6343:18;;;6336:30;6402:34;6382:18;;;6375:62;-1:-1:-1;;;6453:18:1;;;6446:33;6496:19;;12454:64:0;6122:399:1;12454:64:0;-1:-1:-1;;;;;12604:15:0;;12582:19;12604:15;;;;;;;;;;;12638:21;;;;12630:72;;;;-1:-1:-1;;;12630:72:0;;6728:2:1;12630:72:0;;;6710:21:1;6767:2;6747:18;;;6740:30;6806:34;6786:18;;;6779:62;-1:-1:-1;;;6857:18:1;;;6850:36;6903:19;;12630:72:0;6526:402:1;12630:72:0;-1:-1:-1;;;;;12738:15:0;;;:9;:15;;;;;;;;;;;12756:20;;;12738:38;;12798:13;;;;;;;;:23;;12770:6;;12738:9;12798:23;;12770:6;;12798:23;:::i;:::-;;;;;;;;12854:2;-1:-1:-1;;;;;12839:26:0;12848:4;-1:-1:-1;;;;;12839:26:0;;12858:6;12839:26;;;;1391:25:1;;1379:2;1364:18;;1245:177;12839:26:0;;;;;;;;12878:37;16695:125;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:127::-;3059:10;3054:3;3050:20;3047:1;3040:31;3090:4;3087:1;3080:15;3114:4;3111:1;3104:15;3130:125;3170:4;3198:1;3195;3192:8;3189:34;;;3203:18;;:::i;:::-;-1:-1:-1;3240:9:1;;3130:125::o;3260:128::-;3300:3;3331:1;3327:6;3324:1;3321:13;3318:39;;;3337:18;;:::i;:::-;-1:-1:-1;3373:9:1;;3260:128::o

Swarm Source

ipfs://8a50ee3c57fd9323054bc0e201aca916319d424a626afb75b1f91d15df7259af
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.