ETH Price: $2,854.98 (-10.85%)
Gas: 14 Gwei

Token

ziot (ziot)
 

Overview

Max Total Supply

13,370,000 ziot

Holders

281 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
cybourgeoisie.eth
Balance
0 ziot

Value
$0.00
0x9ee5e3ff06425cf972e77c195f70ecb18ac23d7f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

An experimental hacker-themed crypto-currency that creates an eco-system around bug bounty rewards and reports.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Ziot

Compiler Version
v0.7.4+commit.3f05b770

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-18
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.3.0/contracts/math/SafeMath.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.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;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.3.0/contracts/token/ERC20/IERC20.sol


pragma solidity >=0.6.0 <0.8.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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.3.0/contracts/GSN/Context.sol


pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.3.0/contracts/token/ERC20/ERC20.sol


pragma solidity >=0.6.0 <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 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 ERC20 is Context, 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_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

    /**
     * @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(_msgSender(), 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(_msgSender(), 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, _msgSender(), _allowances[sender][_msgSender()].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(_msgSender(), spender, _allowances[_msgSender()][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(_msgSender(), spender, _allowances[_msgSender()][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");

        _beforeTokenTransfer(sender, recipient, amount);

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

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _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 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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.3.0/contracts/token/ERC20/ERC20Capped.sol


pragma solidity >=0.6.0 <0.8.0;


/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    using SafeMath for uint256;

    uint256 private _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor (uint256 cap_) internal {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - minted tokens must not cause the total supply to go over the cap.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) { // When minting tokens
            require(totalSupply().add(amount) <= _cap, "ERC20Capped: cap exceeded");
        }
    }
}

// File: browser/Ziot.sol

pragma solidity ^0.7.0;



contract Ziot is ERC20Capped {
    using SafeMath for uint256;

    constructor (string memory name, string memory symbol, address _master, address _treasury, address _incentives)
        ERC20(name, symbol) ERC20Capped(13370000 * (10 ** uint256(18)))
    {
        uint256 cap = 13370000;
        _mint(_master, cap.mul(50).div(100) * (10 ** uint256(decimals())));
        _mint(_incentives, cap.mul(30).div(100) * (10 ** uint256(decimals())));
        _mint(_treasury, cap.mul(20).div(100) * (10 ** uint256(decimals())));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"_master","type":"address"},{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"address","name":"_incentives","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":"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":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}]

60806040523480156200001157600080fd5b506040516200132438038062001324833981810160405260a08110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b5060409081526020828101519183015160609093015187519295509293506a0b0f3526fd900cf04000009187918791620001d9916003919085019062000699565b508051620001ef90600490602084019062000699565b50506005805460ff19166012179055508062000252576040805162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015290519081900360640190fd5b60065562cc0290620002aa846200026862000322565b60ff16600a0a620002a360646200028f6032876200032b60201b6200058d1790919060201c565b6200039260201b620005ed1790919060201c565b02620003dc565b620002e082620002b962000322565b60ff16600a0a620002a360646200028f601e876200032b60201b6200058d1790919060201c565b6200031683620002ef62000322565b60ff16600a0a620002a360646200028f6014876200032b60201b6200058d1790919060201c565b50505050505062000745565b60055460ff1690565b6000826200033c575060006200038c565b828202828482816200034a57fe5b0414620003895760405162461bcd60e51b8152600401808060200182810382526021815260200180620013036021913960400191505060405180910390fd5b90505b92915050565b60006200038983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620004eb60201b60201c565b6001600160a01b03821662000438576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620004466000838362000592565b62000462816002546200063860201b6200062f1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620004959183906200062f62000638821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600081836200057b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200053f57818101518382015260200162000525565b50505050905090810190601f1680156200056d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200058857fe5b0495945050505050565b620005aa8383836200063360201b620006891760201c565b6001600160a01b0383166200063357600654620005df82620005cb62000693565b6200063860201b6200062f1790919060201c565b111562000633576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b505050565b60008282018381101562000389576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60025490565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620006d157600085556200071c565b82601f10620006ec57805160ff19168380011785556200071c565b828001600101855582156200071c579182015b828111156200071c578251825591602001919060010190620006ff565b506200072a9291506200072e565b5090565b5b808211156200072a57600081556001016200072f565b610bae80620007556000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c8063395093511161007157806339509351146101ec57806370a082311461021857806395d89b411461023e578063a457c2d714610246578063a9059cbb14610272578063dd62ed3e1461029e576100b4565b806306fdde03146100b9578063095ea7b31461013657806318160ddd1461017657806323b872dd14610190578063313ce567146101c6578063355274ea146101e4575b600080fd5b6100c16102cc565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100fb5781810151838201526020016100e3565b50505050905090810190601f1680156101285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101626004803603604081101561014c57600080fd5b506001600160a01b038135169060200135610362565b604080519115158252519081900360200190f35b61017e610380565b60408051918252519081900360200190f35b610162600480360360608110156101a657600080fd5b506001600160a01b03813581169160208101359091169060400135610386565b6101ce61040d565b6040805160ff9092168252519081900360200190f35b61017e610416565b6101626004803603604081101561020257600080fd5b506001600160a01b03813516906020013561041c565b61017e6004803603602081101561022e57600080fd5b50356001600160a01b031661046a565b6100c1610485565b6101626004803603604081101561025c57600080fd5b506001600160a01b0381351690602001356104e6565b6101626004803603604081101561028857600080fd5b506001600160a01b03813516906020013561054e565b61017e600480360360408110156102b457600080fd5b506001600160a01b0381358116916020013516610562565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103585780601f1061032d57610100808354040283529160200191610358565b820191906000526020600020905b81548152906001019060200180831161033b57829003601f168201915b5050505050905090565b600061037661036f61068e565b8484610692565b5060015b92915050565b60025490565b600061039384848461077e565b6104038461039f61068e565b6103fe85604051806060016040528060288152602001610ae3602891396001600160a01b038a166000908152600160205260408120906103dd61068e565b6001600160a01b0316815260208101919091526040016000205491906108d9565b610692565b5060019392505050565b60055460ff1690565b60065490565b600061037661042961068e565b846103fe856001600061043a61068e565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061062f565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103585780601f1061032d57610100808354040283529160200191610358565b60006103766104f361068e565b846103fe85604051806060016040528060258152602001610b54602591396001600061051d61068e565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906108d9565b600061037661055b61068e565b848461077e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60008261059c5750600061037a565b828202828482816105a957fe5b04146105e65760405162461bcd60e51b8152600401808060200182810382526021815260200180610ac26021913960400191505060405180910390fd5b9392505050565b60006105e683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610970565b6000828201838110156105e6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b505050565b3390565b6001600160a01b0383166106d75760405162461bcd60e51b8152600401808060200182810382526024815260200180610b306024913960400191505060405180910390fd5b6001600160a01b03821661071c5760405162461bcd60e51b8152600401808060200182810382526022815260200180610a7a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166107c35760405162461bcd60e51b8152600401808060200182810382526025815260200180610b0b6025913960400191505060405180910390fd5b6001600160a01b0382166108085760405162461bcd60e51b8152600401808060200182810382526023815260200180610a576023913960400191505060405180910390fd5b6108138383836109d5565b61085081604051806060016040528060268152602001610a9c602691396001600160a01b03861660009081526020819052604090205491906108d9565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461087f908261062f565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156109685760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561092d578181015183820152602001610915565b50505050905090810190601f16801561095a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836109bf5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561092d578181015183820152602001610915565b5060008385816109cb57fe5b0495945050505050565b6109e0838383610689565b6001600160a01b03831661068957600654610a03826109fd610380565b9061062f565b1115610689576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fdfe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122095c75185a683f9bd2aa95755fe4c8d9a329c0fee631b9b704605ec02c2a98d5c64736f6c63430007040033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7700000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000d523c9987fff7dbe7c6f471196434d84589bc284000000000000000000000000fc83fb63a2e2037fc03a2870828718f66c38069e000000000000000000000000afd7a02d0e2b049a6524ee9270c734546218801800000000000000000000000000000000000000000000000000000000000000047a696f740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047a696f7400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c8063395093511161007157806339509351146101ec57806370a082311461021857806395d89b411461023e578063a457c2d714610246578063a9059cbb14610272578063dd62ed3e1461029e576100b4565b806306fdde03146100b9578063095ea7b31461013657806318160ddd1461017657806323b872dd14610190578063313ce567146101c6578063355274ea146101e4575b600080fd5b6100c16102cc565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100fb5781810151838201526020016100e3565b50505050905090810190601f1680156101285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101626004803603604081101561014c57600080fd5b506001600160a01b038135169060200135610362565b604080519115158252519081900360200190f35b61017e610380565b60408051918252519081900360200190f35b610162600480360360608110156101a657600080fd5b506001600160a01b03813581169160208101359091169060400135610386565b6101ce61040d565b6040805160ff9092168252519081900360200190f35b61017e610416565b6101626004803603604081101561020257600080fd5b506001600160a01b03813516906020013561041c565b61017e6004803603602081101561022e57600080fd5b50356001600160a01b031661046a565b6100c1610485565b6101626004803603604081101561025c57600080fd5b506001600160a01b0381351690602001356104e6565b6101626004803603604081101561028857600080fd5b506001600160a01b03813516906020013561054e565b61017e600480360360408110156102b457600080fd5b506001600160a01b0381358116916020013516610562565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103585780601f1061032d57610100808354040283529160200191610358565b820191906000526020600020905b81548152906001019060200180831161033b57829003601f168201915b5050505050905090565b600061037661036f61068e565b8484610692565b5060015b92915050565b60025490565b600061039384848461077e565b6104038461039f61068e565b6103fe85604051806060016040528060288152602001610ae3602891396001600160a01b038a166000908152600160205260408120906103dd61068e565b6001600160a01b0316815260208101919091526040016000205491906108d9565b610692565b5060019392505050565b60055460ff1690565b60065490565b600061037661042961068e565b846103fe856001600061043a61068e565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061062f565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103585780601f1061032d57610100808354040283529160200191610358565b60006103766104f361068e565b846103fe85604051806060016040528060258152602001610b54602591396001600061051d61068e565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906108d9565b600061037661055b61068e565b848461077e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60008261059c5750600061037a565b828202828482816105a957fe5b04146105e65760405162461bcd60e51b8152600401808060200182810382526021815260200180610ac26021913960400191505060405180910390fd5b9392505050565b60006105e683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610970565b6000828201838110156105e6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b505050565b3390565b6001600160a01b0383166106d75760405162461bcd60e51b8152600401808060200182810382526024815260200180610b306024913960400191505060405180910390fd5b6001600160a01b03821661071c5760405162461bcd60e51b8152600401808060200182810382526022815260200180610a7a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166107c35760405162461bcd60e51b8152600401808060200182810382526025815260200180610b0b6025913960400191505060405180910390fd5b6001600160a01b0382166108085760405162461bcd60e51b8152600401808060200182810382526023815260200180610a576023913960400191505060405180910390fd5b6108138383836109d5565b61085081604051806060016040528060268152602001610a9c602691396001600160a01b03861660009081526020819052604090205491906108d9565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461087f908261062f565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156109685760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561092d578181015183820152602001610915565b50505050905090810190601f16801561095a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836109bf5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561092d578181015183820152602001610915565b5060008385816109cb57fe5b0495945050505050565b6109e0838383610689565b6001600160a01b03831661068957600654610a03826109fd610380565b9061062f565b1115610689576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fdfe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122095c75185a683f9bd2aa95755fe4c8d9a329c0fee631b9b704605ec02c2a98d5c64736f6c63430007040033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000d523c9987fff7dbe7c6f471196434d84589bc284000000000000000000000000fc83fb63a2e2037fc03a2870828718f66c38069e000000000000000000000000afd7a02d0e2b049a6524ee9270c734546218801800000000000000000000000000000000000000000000000000000000000000047a696f740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000047a696f7400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): ziot
Arg [1] : symbol (string): ziot
Arg [2] : _master (address): 0xd523C9987FFF7dbe7c6f471196434D84589bc284
Arg [3] : _treasury (address): 0xfC83fb63A2e2037Fc03A2870828718F66C38069e
Arg [4] : _incentives (address): 0xAFD7A02D0E2B049a6524Ee9270c7345462188018

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000d523c9987fff7dbe7c6f471196434d84589bc284
Arg [3] : 000000000000000000000000fc83fb63a2e2037fc03a2870828718f66c38069e
Arg [4] : 000000000000000000000000afd7a02d0e2b049a6524ee9270c7345462188018
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 7a696f7400000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 7a696f7400000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

21757:542:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11597:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13703:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13703:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;12672:100;;;:::i;:::-;;;;;;;;;;;;;;;;14354:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14354:321:0;;;;;;;;;;;;;;;;;:::i;12524:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21110:75;;;:::i;15084:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15084:218:0;;;;;;;;:::i;12835:119::-;;;;;;;;;;;;;;;;-1:-1:-1;12835:119:0;-1:-1:-1;;;;;12835:119:0;;:::i;11799:87::-;;;:::i;15805:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15805:269:0;;;;;;;;:::i;13167:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13167:175:0;;;;;;;;:::i;13405:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13405:151:0;;;;;;;;;;:::i;11597:83::-;11667:5;11660:12;;;;;;;;-1:-1:-1;;11660:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11634:13;;11660:12;;11667:5;;11660:12;;11667:5;11660:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11597:83;:::o;13703:169::-;13786:4;13803:39;13812:12;:10;:12::i;:::-;13826:7;13835:6;13803:8;:39::i;:::-;-1:-1:-1;13860:4:0;13703:169;;;;;:::o;12672:100::-;12752:12;;12672:100;:::o;14354:321::-;14460:4;14477:36;14487:6;14495:9;14506:6;14477:9;:36::i;:::-;14524:121;14533:6;14541:12;:10;:12::i;:::-;14555:89;14593:6;14555:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14555:19:0;;;;;;:11;:19;;;;;;14575:12;:10;:12::i;:::-;-1:-1:-1;;;;;14555:33:0;;;;;;;;;;;;-1:-1:-1;14555:33:0;;;:89;:37;:89::i;:::-;14524:8;:121::i;:::-;-1:-1:-1;14663:4:0;14354:321;;;;;:::o;12524:83::-;12590:9;;;;12524:83;:::o;21110:75::-;21173:4;;21110:75;:::o;15084:218::-;15172:4;15189:83;15198:12;:10;:12::i;:::-;15212:7;15221:50;15260:10;15221:11;:25;15233:12;:10;:12::i;:::-;-1:-1:-1;;;;;15221:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15221:25:0;;;:34;;;;;;;;;;;:38;:50::i;12835:119::-;-1:-1:-1;;;;;12928:18:0;12901:7;12928:18;;;;;;;;;;;;12835:119::o;11799:87::-;11871:7;11864:14;;;;;;;;-1:-1:-1;;11864:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11838:13;;11864:14;;11871:7;;11864:14;;11871:7;11864:14;;;;;;;;;;;;;;;;;;;;;;;;15805:269;15898:4;15915:129;15924:12;:10;:12::i;:::-;15938:7;15947:96;15986:15;15947:96;;;;;;;;;;;;;;;;;:11;:25;15959:12;:10;:12::i;:::-;-1:-1:-1;;;;;15947:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15947:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;13167:175::-;13253:4;13270:42;13280:12;:10;:12::i;:::-;13294:9;13305:6;13270:9;:42::i;13405:151::-;-1:-1:-1;;;;;13521:18:0;;;13494:7;13521:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13405:151::o;2371:471::-;2429:7;2674:6;2670:47;;-1:-1:-1;2704:1:0;2697:8;;2670:47;2741:5;;;2745:1;2741;:5;:1;2765:5;;;;;:10;2757:56;;;;-1:-1:-1;;;2757:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2833:1;2371:471;-1:-1:-1;;;2371:471:0:o;3318:132::-;3376:7;3403:39;3407:1;3410;3403:39;;;;;;;;;;;;;;;;;:3;:39::i;1017:181::-;1075:7;1107:5;;;1131:6;;;;1123:46;;;;;-1:-1:-1;;;1123:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;20323:92;;;;:::o;9024:106::-;9112:10;9024:106;:::o;18952:346::-;-1:-1:-1;;;;;19054:19:0;;19046:68;;;;-1:-1:-1;;;19046:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19133:21:0;;19125:68;;;;-1:-1:-1;;;19125:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19206:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19258:32;;;;;;;;;;;;;;;;;18952:346;;;:::o;16564:539::-;-1:-1:-1;;;;;16670:20:0;;16662:70;;;;-1:-1:-1;;;16662:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16751:23:0;;16743:71;;;;-1:-1:-1;;;16743:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16827:47;16848:6;16856:9;16867:6;16827:20;:47::i;:::-;16907:71;16929:6;16907:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16907:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;16887:17:0;;;:9;:17;;;;;;;;;;;:91;;;;17012:20;;;;;;;:32;;17037:6;17012:24;:32::i;:::-;-1:-1:-1;;;;;16989:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;17060:35;;;;;;;16989:20;;17060:35;;;;;;;;;;;;;16564:539;;;:::o;1920:192::-;2006:7;2042:12;2034:6;;;;2026:29;;;;-1:-1:-1;;;2026:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2078:5:0;;;1920:192::o;3946:278::-;4032:7;4067:12;4060:5;4052:28;;;;-1:-1:-1;;;4052:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4091:9;4107:1;4103;:5;;;;;;;3946:278;-1:-1:-1;;;;;3946:278:0:o;21372:318::-;21481:44;21508:4;21514:2;21518:6;21481:26;:44::i;:::-;-1:-1:-1;;;;;21542:18:0;;21538:145;;21637:4;;21608:25;21626:6;21608:13;:11;:13::i;:::-;:17;;:25::i;:::-;:33;;21600:71;;;;;-1:-1:-1;;;21600:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

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