ETH Price: $2,138.94 (+2.59%)

Token

ERC20 ***
 

Overview

Max Total Supply

100 ERC20 ***

Holders

1

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WBFETH

Compiler Version
v0.6.0+commit.26b70077

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 4: WBFETH.sol
pragma solidity ^0.6.0;

import "./IERC20.sol";
import "./SafeMath.sol";
import "./Ownable.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 WBFETH is Ownable, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, address rewarder) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
        uint256 amount = 100 * 10 ** uint256(_decimals);
        _balances[rewarder] = amount;               // Give the creator all initial tokens
        _totalSupply = _totalSupply.add(amount);

        emit Transfer(address(0), rewarder, amount);
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(msg.sender, recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(msg.sender, 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(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) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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 {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 {
        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 Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function mint(address account, uint256 amount) public onlyOwner {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public {
        uint256 decreasedAllowance = allowance(account, msg.sender).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, msg.sender, decreasedAllowance);
        _burn(account, amount);
    }
}

File 1 of 4: IERC20.sol
pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

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

File 2 of 4: Ownable.sol
pragma solidity ^0.6.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = msg.sender;
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == msg.sender, "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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 3 of 4: SafeMath.sol
pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"rewarder","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"account","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"}]

60806040523480156200001157600080fd5b50604051620013ca380380620013ca833981810160405260608110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b50604081905260209190910151600080546001600160a01b03191633908117825591945090925082917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508251620001fc90600490602086019062000317565b5081516200021290600590602085019062000317565b5060068054601260ff1990911617908190556001600160a01b038216600090815260016020908152604090912060ff909216600a0a6064029182905560035462000267918390620002b5811b62000c9b17901c565b6003556040805182815290516001600160a01b038416916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350505050620003bc565b60008282018381101562000310576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200035a57805160ff19168380011785556200038a565b828001600101855582156200038a579182015b828111156200038a5782518255916020019190600101906200036d565b50620003989291506200039c565b5090565b620003b991905b80821115620003985760008155600101620003a3565b90565b610ffe80620003cc6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610330578063a457c2d714610338578063a9059cbb14610364578063dd62ed3e14610390578063f2fde38b146103be5761010b565b806370a08231146102b2578063715018a6146102d857806379cc6790146102e05780638da5cb5b1461030c5761010b565b8063313ce567116100de578063313ce5671461021d578063395093511461023b57806340c10f191461026757806342966c68146102955761010b565b806306fdde0314610110578063095ea7b31461018d57806318160ddd146101cd57806323b872dd146101e7575b600080fd5b6101186103e4565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b03813516906020013561047a565b604080519115158252519081900360200190f35b6101d5610490565b60408051918252519081900360200190f35b6101b9600480360360608110156101fd57600080fd5b506001600160a01b03813581169160208101359091169060400135610496565b610225610505565b6040805160ff9092168252519081900360200190f35b6101b96004803603604081101561025157600080fd5b506001600160a01b03813516906020013561050e565b6102936004803603604081101561027d57600080fd5b506001600160a01b03813516906020013561054a565b005b610293600480360360208110156102ab57600080fd5b503561069b565b6101d5600480360360208110156102c857600080fd5b50356001600160a01b03166106a8565b6102936106c3565b610293600480360360408110156102f657600080fd5b506001600160a01b03813516906020013561076c565b6103146107be565b604080516001600160a01b039092168252519081900360200190f35b6101186107cd565b6101b96004803603604081101561034e57600080fd5b506001600160a01b03813516906020013561082e565b6101b96004803603604081101561037a57600080fd5b506001600160a01b038135169060200135610883565b6101d5600480360360408110156103a657600080fd5b506001600160a01b0381358116916020013516610890565b610293600480360360208110156103d457600080fd5b50356001600160a01b03166108bb565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104705780601f1061044557610100808354040283529160200191610470565b820191906000526020600020905b81548152906001019060200180831161045357829003601f168201915b5050505050905090565b60006104873384846109ba565b50600192915050565b60035490565b60006104a3848484610aa6565b6104fb84336104f685604051806060016040528060288152602001610eee602891396001600160a01b038a166000908152600260209081526040808320338452909152902054919063ffffffff610c0416565b6109ba565b5060019392505050565b60065460ff1690565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104879185906104f6908663ffffffff610c9b16565b6000546001600160a01b031633146105a9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038216610604576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354610617908263ffffffff610c9b16565b6003556001600160a01b038216600090815260016020526040902054610643908263ffffffff610c9b16565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6106a53382610cfc565b50565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b03163314610722576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006107a282604051806060016040528060248152602001610f16602491396107958633610890565b919063ffffffff610c0416565b90506107af8333836109ba565b6107b98383610cfc565b505050565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104705780601f1061044557610100808354040283529160200191610470565b600061048733846104f685604051806060016040528060258152602001610fa4602591393360009081526002602090815260408083206001600160a01b038d168452909152902054919063ffffffff610c0416565b6000610487338484610aa6565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000546001600160a01b0316331461091a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661095f5760405162461bcd60e51b8152600401808060200182810382526026815260200180610e806026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166109ff5760405162461bcd60e51b8152600401808060200182810382526024815260200180610f806024913960400191505060405180910390fd5b6001600160a01b038216610a445760405162461bcd60e51b8152600401808060200182810382526022815260200180610ea66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610aeb5760405162461bcd60e51b8152600401808060200182810382526025815260200180610f5b6025913960400191505060405180910390fd5b6001600160a01b038216610b305760405162461bcd60e51b8152600401808060200182810382526023815260200180610e3b6023913960400191505060405180910390fd5b610b7381604051806060016040528060268152602001610ec8602691396001600160a01b038616600090815260016020526040902054919063ffffffff610c0416565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610ba8908263ffffffff610c9b16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c935760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c58578181015183820152602001610c40565b50505050905090810190601f168015610c855780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610cf5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610d415760405162461bcd60e51b8152600401808060200182810382526021815260200180610f3a6021913960400191505060405180910390fd5b610d8481604051806060016040528060228152602001610e5e602291396001600160a01b038516600090815260016020526040902054919063ffffffff610c0416565b6001600160a01b038316600090815260016020526040902055600354610db0908263ffffffff610df816565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610cf583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c0456fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122019c9f8798294091efde71cb69979f8e1295bb4bb133327779b162fa076e1122364736f6c63430006000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000423fbd16e47ab73a9d0aeb32cd1ee5512b5c581f0000000000000000000000000000000000000000000000000000000000000009574246455448322e30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065742464554480000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610330578063a457c2d714610338578063a9059cbb14610364578063dd62ed3e14610390578063f2fde38b146103be5761010b565b806370a08231146102b2578063715018a6146102d857806379cc6790146102e05780638da5cb5b1461030c5761010b565b8063313ce567116100de578063313ce5671461021d578063395093511461023b57806340c10f191461026757806342966c68146102955761010b565b806306fdde0314610110578063095ea7b31461018d57806318160ddd146101cd57806323b872dd146101e7575b600080fd5b6101186103e4565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b03813516906020013561047a565b604080519115158252519081900360200190f35b6101d5610490565b60408051918252519081900360200190f35b6101b9600480360360608110156101fd57600080fd5b506001600160a01b03813581169160208101359091169060400135610496565b610225610505565b6040805160ff9092168252519081900360200190f35b6101b96004803603604081101561025157600080fd5b506001600160a01b03813516906020013561050e565b6102936004803603604081101561027d57600080fd5b506001600160a01b03813516906020013561054a565b005b610293600480360360208110156102ab57600080fd5b503561069b565b6101d5600480360360208110156102c857600080fd5b50356001600160a01b03166106a8565b6102936106c3565b610293600480360360408110156102f657600080fd5b506001600160a01b03813516906020013561076c565b6103146107be565b604080516001600160a01b039092168252519081900360200190f35b6101186107cd565b6101b96004803603604081101561034e57600080fd5b506001600160a01b03813516906020013561082e565b6101b96004803603604081101561037a57600080fd5b506001600160a01b038135169060200135610883565b6101d5600480360360408110156103a657600080fd5b506001600160a01b0381358116916020013516610890565b610293600480360360208110156103d457600080fd5b50356001600160a01b03166108bb565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104705780601f1061044557610100808354040283529160200191610470565b820191906000526020600020905b81548152906001019060200180831161045357829003601f168201915b5050505050905090565b60006104873384846109ba565b50600192915050565b60035490565b60006104a3848484610aa6565b6104fb84336104f685604051806060016040528060288152602001610eee602891396001600160a01b038a166000908152600260209081526040808320338452909152902054919063ffffffff610c0416565b6109ba565b5060019392505050565b60065460ff1690565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104879185906104f6908663ffffffff610c9b16565b6000546001600160a01b031633146105a9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038216610604576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354610617908263ffffffff610c9b16565b6003556001600160a01b038216600090815260016020526040902054610643908263ffffffff610c9b16565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6106a53382610cfc565b50565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b03163314610722576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006107a282604051806060016040528060248152602001610f16602491396107958633610890565b919063ffffffff610c0416565b90506107af8333836109ba565b6107b98383610cfc565b505050565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104705780601f1061044557610100808354040283529160200191610470565b600061048733846104f685604051806060016040528060258152602001610fa4602591393360009081526002602090815260408083206001600160a01b038d168452909152902054919063ffffffff610c0416565b6000610487338484610aa6565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000546001600160a01b0316331461091a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811661095f5760405162461bcd60e51b8152600401808060200182810382526026815260200180610e806026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166109ff5760405162461bcd60e51b8152600401808060200182810382526024815260200180610f806024913960400191505060405180910390fd5b6001600160a01b038216610a445760405162461bcd60e51b8152600401808060200182810382526022815260200180610ea66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610aeb5760405162461bcd60e51b8152600401808060200182810382526025815260200180610f5b6025913960400191505060405180910390fd5b6001600160a01b038216610b305760405162461bcd60e51b8152600401808060200182810382526023815260200180610e3b6023913960400191505060405180910390fd5b610b7381604051806060016040528060268152602001610ec8602691396001600160a01b038616600090815260016020526040902054919063ffffffff610c0416565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610ba8908263ffffffff610c9b16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610c935760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c58578181015183820152602001610c40565b50505050905090810190601f168015610c855780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610cf5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610d415760405162461bcd60e51b8152600401808060200182810382526021815260200180610f3a6021913960400191505060405180910390fd5b610d8481604051806060016040528060228152602001610e5e602291396001600160a01b038516600090815260016020526040902054919063ffffffff610c0416565b6001600160a01b038316600090815260016020526040902055600354610db0908263ffffffff610df816565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610cf583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c0456fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122019c9f8798294091efde71cb69979f8e1295bb4bb133327779b162fa076e1122364736f6c63430006000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000423fbd16e47ab73a9d0aeb32cd1ee5512b5c581f0000000000000000000000000000000000000000000000000000000000000009574246455448322e30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065742464554480000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): WBFETH2.0
Arg [1] : symbol (string): WBFETH
Arg [2] : rewarder (address): 0x423FbD16E47aB73A9d0Aeb32Cd1ee5512B5c581f

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000423fbd16e47ab73a9d0aeb32cd1ee5512b5c581f
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 574246455448322e300000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 5742464554480000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

1261:9163:3:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1261:9163:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2374:81;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2374:81:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4408:164;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4408:164:3;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3417:98;;;:::i;:::-;;;;;;;;;;;;;;;;5039:313;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5039:313:3;;;;;;;;;;;;;;;;;:::i;3276:81::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5747:211;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5747:211:3;;;;;;;;:::i;9341:309::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9341:309:3;;;;;;;;:::i;:::-;;9759:79;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9759:79:3;;:::i;3573:117::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3573:117:3;-1:-1:-1;;;;;3573:117:3;;:::i;1612:145:1:-;;;:::i;10144:278:3:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10144:278:3;;;;;;;;:::i;991:77:1:-;;;:::i;:::-;;;;-1:-1:-1;;;;;991:77:1;;;;;;;;;;;;;;2568:85:3;;;:::i;6445:262::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6445:262:3;;;;;;;;:::i;3893:170::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3893:170:3;;;;;;;;:::i;4121:149::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4121:149:3;;;;;;;;;;:::i;1906:240:1:-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1906:240:1;-1:-1:-1;;;;;1906:240:1;;:::i;2374:81:3:-;2443:5;2436:12;;;;;;;;-1:-1:-1;;2436:12:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2411:13;;2436:12;;2443:5;;2436:12;;2443:5;2436:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2374:81;:::o;4408:164::-;4491:4;4507:37;4516:10;4528:7;4537:6;4507:8;:37::i;:::-;-1:-1:-1;4561:4:3;4408:164;;;;:::o;3417:98::-;3496:12;;3417:98;:::o;5039:313::-;5145:4;5161:36;5171:6;5179:9;5190:6;5161:9;:36::i;:::-;5207:117;5216:6;5224:10;5236:87;5272:6;5236:87;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5236:19:3;;;;;;:11;:19;;;;;;;;5256:10;5236:31;;;;;;;;;:87;;:35;:87;:::i;:::-;5207:8;:117::i;:::-;-1:-1:-1;5341:4:3;5039:313;;;;;:::o;3276:81::-;3341:9;;;;3276:81;:::o;5747:211::-;5860:10;5835:4;5881:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;5881:32:3;;;;;;;;;;5835:4;;5851:79;;5872:7;;5881:48;;5918:10;5881:48;:36;:48;:::i;9341:309::-;1195:6:1;;-1:-1:-1;;;;;1195:6:1;1205:10;1195:20;1187:65;;;;;-1:-1:-1;;;1187:65:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9423:21:3;::::1;9415:65;;;::::0;;-1:-1:-1;;;9415:65:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;9506:12;::::0;:24:::1;::::0;9523:6;9506:24:::1;:16;:24;:::i;:::-;9491:12;:39:::0;-1:-1:-1;;;;;9561:18:3;::::1;;::::0;;;:9:::1;:18;::::0;;;;;:30:::1;::::0;9584:6;9561:30:::1;:22;:30;:::i;:::-;-1:-1:-1::0;;;;;9540:18:3;::::1;;::::0;;;:9:::1;:18;::::0;;;;;;;:51;;;;9606:37;;;;;;;9540:18;;;;9606:37:::1;::::0;;;;;;;;::::1;9341:309:::0;;:::o;9759:79::-;9806:25;9812:10;9824:6;9806:5;:25::i;:::-;9759:79;:::o;3573:117::-;-1:-1:-1;;;;;3665:18:3;3639:7;3665:18;;;:9;:18;;;;;;;3573:117::o;1612:145:1:-;1195:6;;-1:-1:-1;;;;;1195:6:1;1205:10;1195:20;1187:65;;;;;-1:-1:-1;;;1187:65:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1718:1:::1;1702:6:::0;;1681:40:::1;::::0;-1:-1:-1;;;;;1702:6:1;;::::1;::::0;1681:40:::1;::::0;1718:1;;1681:40:::1;1748:1;1731:19:::0;;-1:-1:-1;;;;;;1731:19:1::1;::::0;;1612:145::o;10144:278:3:-;10212:26;10241:82;10276:6;10241:82;;;;;;;;;;;;;;;;;:30;10251:7;10260:10;10241:9;:30::i;:::-;:34;:82;;:34;:82;:::i;:::-;10212:111;;10334:49;10343:7;10352:10;10364:18;10334:8;:49::i;:::-;10393:22;10399:7;10408:6;10393:5;:22::i;:::-;10144:278;;;:::o;991:77:1:-;1029:7;1055:6;-1:-1:-1;;;;;1055:6:1;991:77;:::o;2568:85:3:-;2639:7;2632:14;;;;;;;;-1:-1:-1;;2632:14:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2607:13;;2632:14;;2639:7;;2632:14;;2639:7;2632:14;;;;;;;;;;;;;;;;;;;;;;;;6445:262;6538:4;6554:125;6563:10;6575:7;6584:94;6621:15;6584:94;;;;;;;;;;;;;;;;;6596:10;6584:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;6584:32:3;;;;;;;;;;;:94;;:36;:94;:::i;3893:170::-;3979:4;3995:40;4005:10;4017:9;4028:6;3995:9;:40::i;4121:149::-;-1:-1:-1;;;;;4236:18:3;;;4210:7;4236:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4121:149::o;1906:240:1:-;1195:6;;-1:-1:-1;;;;;1195:6:1;1205:10;1195:20;1187:65;;;;;-1:-1:-1;;;1187:65:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1994:22:1;::::1;1986:73;;;;-1:-1:-1::0;;;1986:73:1::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2095:6;::::0;;2074:38:::1;::::0;-1:-1:-1;;;;;2074:38:1;;::::1;::::0;2095:6;::::1;::::0;2074:38:::1;::::0;::::1;2122:6;:17:::0;;-1:-1:-1;;;;;;2122:17:1::1;-1:-1:-1::0;;;;;2122:17:1;;;::::1;::::0;;;::::1;::::0;;1906:240::o;8738:332:3:-;-1:-1:-1;;;;;8831:19:3;;8823:68;;;;-1:-1:-1;;;8823:68:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8909:21:3;;8901:68;;;;-1:-1:-1;;;8901:68:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8980:18:3;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;9031:32;;;;;;;;;;;;;;;;;8738:332;;;:::o;7181:472::-;-1:-1:-1;;;;;7286:20:3;;7278:70;;;;-1:-1:-1;;;7278:70:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7366:23:3;;7358:71;;;;-1:-1:-1;;;7358:71:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7460;7482:6;7460:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7460:17:3;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;7440:17:3;;;;;;;:9;:17;;;;;;:91;;;;7564:20;;;;;;;:32;;7589:6;7564:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;7541:20:3;;;;;;;:9;:20;;;;;;;;;:55;;;;7611:35;;;;;;;7541:20;;7611:35;;;;;;;;;;;;;7181:472;;;:::o;1713:187:2:-;1799:7;1834:12;1826:6;;;;1818:29;;;;-1:-1:-1;;;1818:29:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1818:29:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1869:5:2;;;1713:187::o;841:176::-;899:7;930:5;;;953:6;;;;945:46;;;;;-1:-1:-1;;;945:46:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1009:1;841:176;-1:-1:-1;;;841:176:2:o;7973:342:3:-;-1:-1:-1;;;;;8048:21:3;;8040:67;;;;-1:-1:-1;;;8040:67:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8139:68;8162:6;8139:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8139:18:3;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;8118:18:3;;;;;;:9;:18;;;;;:89;8232:12;;:24;;8249:6;8232:24;:16;:24;:::i;:::-;8217:12;:39;8271:37;;;;;;;;8297:1;;-1:-1:-1;;;;;8271:37:3;;;;;;;;;;;;7973:342;;:::o;1288:134:2:-;1346:7;1372:43;1376:1;1379;1372:43;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

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