ETH Price: $3,576.74 (-0.97%)

Token

ERC-20: VIARIUM (VRX)
 

Overview

Max Total Supply

14,065,681.61847038659122 VRX

Holders

733

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
jakolait.eth
Balance
10.0168282714961 VRX

Value
$0.00
0xeF45ffeDE23381490b1Ca51A45a8BcDF4399e14E
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:
ViariumToken

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-03-06
*/

pragma solidity ^0.4.25;

/// @title Role based access control mixin for Viarium Platform
/// @author Mai Abha <[email protected]>
/// @dev Ignore DRY approach to achieve readability
contract RBACMixin {
  /// @notice Constant string message to throw on lack of access
  string constant FORBIDDEN = "Haven't enough right to access";
  /// @notice Public map of owners
  mapping (address => bool) public owners;
  /// @notice Public map of minters
  mapping (address => bool) public minters;

  /// @notice The event indicates the addition of a new owner
  /// @param who is address of added owner
  event AddOwner(address indexed who);
  /// @notice The event indicates the deletion of an owner
  /// @param who is address of deleted owner
  event DeleteOwner(address indexed who);

  /// @notice The event indicates the addition of a new minter
  /// @param who is address of added minter
  event AddMinter(address indexed who);
  /// @notice The event indicates the deletion of a minter
  /// @param who is address of deleted minter
  event DeleteMinter(address indexed who);

  constructor () public {
    _setOwner(msg.sender, true);
  }

  /// @notice The functional modifier rejects the interaction of senders who are not owners
  modifier onlyOwner() {
    require(isOwner(msg.sender), FORBIDDEN);
    _;
  }

  /// @notice Functional modifier for rejecting the interaction of senders that are not minters
  modifier onlyMinter() {
    require(isMinter(msg.sender), FORBIDDEN);
    _;
  }

  /// @notice Look up for the owner role on providen address
  /// @param _who is address to look up
  /// @return A boolean of owner role
  function isOwner(address _who) public view returns (bool) {
    return owners[_who];
  }

  /// @notice Look up for the minter role on providen address
  /// @param _who is address to look up
  /// @return A boolean of minter role
  function isMinter(address _who) public view returns (bool) {
    return minters[_who];
  }

  /// @notice Adds the owner role to provided address
  /// @dev Requires owner role to interact
  /// @param _who is address to add role
  /// @return A boolean that indicates if the operation was successful.
  function addOwner(address _who) public onlyOwner returns (bool) {
    _setOwner(_who, true);
  }

  /// @notice Deletes the owner role to provided address
  /// @dev Requires owner role to interact
  /// @param _who is address to delete role
  /// @return A boolean that indicates if the operation was successful.
  function deleteOwner(address _who) public onlyOwner returns (bool) {
    _setOwner(_who, false);
  }

  /// @notice Adds the minter role to provided address
  /// @dev Requires owner role to interact
  /// @param _who is address to add role
  /// @return A boolean that indicates if the operation was successful.
  function addMinter(address _who) public onlyOwner returns (bool) {
    _setMinter(_who, true);
  }

  /// @notice Deletes the minter role to provided address
  /// @dev Requires owner role to interact
  /// @param _who is address to delete role
  /// @return A boolean that indicates if the operation was successful.
  function deleteMinter(address _who) public onlyOwner returns (bool) {
    _setMinter(_who, false);
  }

  /// @notice Changes the owner role to provided address
  /// @param _who is address to change role
  /// @param _flag is next role status after success
  /// @return A boolean that indicates if the operation was successful.
  function _setOwner(address _who, bool _flag) private returns (bool) {
    require(owners[_who] != _flag);
    owners[_who] = _flag;
    if (_flag) {
      emit AddOwner(_who);
    } else {
      emit DeleteOwner(_who);
    }
    return true;
  }

  /// @notice Changes the minter role to provided address
  /// @param _who is address to change role
  /// @param _flag is next role status after success
  /// @return A boolean that indicates if the operation was successful.
  function _setMinter(address _who, bool _flag) private returns (bool) {
    require(minters[_who] != _flag);
    minters[_who] = _flag;
    if (_flag) {
      emit AddMinter(_who);
    } else {
      emit DeleteMinter(_who);
    }
    return true;
  }
}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    c = a * b;
    assert(c / a == b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    // uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return a / b;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
    c = a + b;
    assert(c >= a);
    return c;
  }
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  uint256 totalSupply_;

  /**
  * @dev total number of tokens in existence
  */
  function totalSupply() public view returns (uint256) {
    return totalSupply_;
  }

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256) {
    return balances[_owner];
  }

}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender)
    public view returns (uint256);

  function transferFrom(address from, address to, uint256 value)
    public returns (bool);

  function approve(address spender, uint256 value) public returns (bool);
  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(
    address _from,
    address _to,
    uint256 _value
  )
    public
    returns (bool)
  {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    emit Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * 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
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(
    address _owner,
    address _spender
   )
    public
    view
    returns (uint256)
  {
    return allowed[_owner][_spender];
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(
    address _spender,
    uint _addedValue
  )
    public
    returns (bool)
  {
    allowed[msg.sender][_spender] = (
      allowed[msg.sender][_spender].add(_addedValue));
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(
    address _spender,
    uint _subtractedValue
  )
    public
    returns (bool)
  {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

contract RBACMintableTokenMixin is StandardToken, RBACMixin {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;

  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(
    address _to,
    uint256 _amount
  )
    onlyMinter
    canMint
    public
    returns (bool)
  {
    totalSupply_ = totalSupply_.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    emit Mint(_to, _amount);
    emit Transfer(address(0), _to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner canMint internal returns (bool) {
    mintingFinished = true;
    emit MintFinished();
    return true;
  }
}

contract ERC223ReceiverMixin {
  function tokenFallback(address _from, uint256 _value, bytes _data) public;
}

/// @title Custom implementation of ERC223 
/// @author Mai Abha <[email protected]>
contract ERC223Mixin is StandardToken {
  event Transfer(address indexed from, address indexed to, uint256 value, bytes data);

  function transferFrom(
    address _from,
    address _to,
    uint256 _value
  ) public returns (bool) 
  {
    bytes memory empty;
    return transferFrom(
      _from, 
      _to,
      _value,
      empty);
  }

  function transferFrom(
    address _from,
    address _to,
    uint256 _value,
    bytes _data
  ) public returns (bool)
  {
    require(_value <= allowed[_from][msg.sender]);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    if (isContract(_to)) {
      return transferToContract(
        _from, 
        _to, 
        _value, 
        _data);
    } else {
      return transferToAddress(
        _from, 
        _to, 
        _value, 
        _data); 
    }
  }

  function transfer(address _to, uint256 _value, bytes _data) public returns (bool success) {
    if (isContract(_to)) {
      return transferToContract(
        msg.sender,
        _to,
        _value,
        _data); 
    } else {
      return transferToAddress(
        msg.sender,
        _to,
        _value,
        _data);
    }
  }

  function transfer(address _to, uint256 _value) public returns (bool success) {
    bytes memory empty;
    return transfer(_to, _value, empty);
  }

  function isContract(address _addr) internal view returns (bool) {
    uint256 length;
    // solium-disable-next-line security/no-inline-assembly
    assembly {
      //retrieve the size of the code on target address, this needs assembly
      length := extcodesize(_addr)
    }  
    return (length>0);
  }

  function moveTokens(address _from, address _to, uint256 _value) internal returns (bool success) {
    if (balanceOf(_from) < _value) {
      revert();
    }
    balances[_from] = balanceOf(_from).sub(_value);
    balances[_to] = balanceOf(_to).add(_value);

    return true;
  }

  function transferToAddress(
    address _from,
    address _to,
    uint256 _value,
    bytes _data
  ) internal returns (bool success) 
  {
    require(moveTokens(_from, _to, _value));
    emit Transfer(_from, _to, _value);
    emit Transfer(_from, _to, _value, _data); // solium-disable-line arg-overflow
    return true;
  }
  
  //function that is called when transaction target is a contract
  function transferToContract(
    address _from,
    address _to,
    uint256 _value,
    bytes _data
  ) internal returns (bool success) 
  {
    require(moveTokens(_from, _to, _value));
    ERC223ReceiverMixin(_to).tokenFallback(_from, _value, _data);
    emit Transfer(_from, _to, _value);
    emit Transfer(_from, _to, _value, _data); // solium-disable-line arg-overflow
    return true;
  }
}

/// @title Role based token finalization mixin
/// @author Mai Abha <[email protected]>
contract RBACERC223TokenFinalization is ERC223Mixin, RBACMixin {
  event Finalize();
  /// @notice Public field inicates the finalization state of smart-contract
  bool public finalized;

  /// @notice The functional modifier rejects the interaction if contract isn't finalized
  modifier isFinalized() {
    require(finalized);
    _;
  }

  /// @notice The functional modifier rejects the interaction if contract is finalized
  modifier notFinalized() {
    require(!finalized);
    _;
  }

  /// @notice Finalizes contract
  /// @dev Requires owner role to interact
  /// @return A boolean that indicates if the operation was successful.
  function finalize() public notFinalized onlyOwner returns (bool) {
    finalized = true;
    emit Finalize();
    return true;
  }

  /// @dev Overrides ERC20 interface to prevent interaction before finalization
  function transferFrom(address _from, address _to, uint256 _value) public isFinalized returns (bool) {
    return super.transferFrom(_from, _to, _value);
  }

  /// @dev Overrides ERC223 interface to prevent interaction before finalization
  // solium-disable-next-line arg-overflow
  function transferFrom(address _from, address _to, uint256 _value, bytes _data) public isFinalized returns (bool) {
    return super.transferFrom(_from, _to, _value, _data); // solium-disable-line arg-overflow
  }

  /// @dev Overrides ERC223 interface to prevent interaction before finalization
  function transfer(address _to, uint256 _value, bytes _data) public isFinalized returns (bool) {
    return super.transfer(_to, _value, _data);
  }

  /// @dev Overrides ERC20 interface to prevent interaction before finalization
  function transfer(address _to, uint256 _value) public isFinalized returns (bool) {
    return super.transfer(_to, _value);
  }

  /// @dev Overrides ERC20 interface to prevent interaction before finalization
  function approve(address _spender, uint256 _value) public isFinalized returns (bool) {
    return super.approve(_spender, _value);
  }

  /// @dev Overrides ERC20 interface to prevent interaction before finalization
  function increaseApproval(address _spender, uint256 _addedValue) public isFinalized returns (bool) {
    return super.increaseApproval(_spender, _addedValue);
  }

  /// @dev Overrides ERC20 interface to prevent interaction before finalization
  function decreaseApproval(address _spender, uint256 _subtractedValue) public isFinalized returns (bool) {
    return super.decreaseApproval(_spender, _subtractedValue);
  }
}

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is BasicToken {

  event Burn(address indexed burner, uint256 value);

  /**
   * @dev Burns a specific amount of tokens.
   * @param _value The amount of token to be burned.
   */
  function burn(uint256 _value) public {
    _burn(msg.sender, _value);
  }

  function _burn(address _who, uint256 _value) internal {
    require(_value <= balances[_who]);
    // no need to require value <= totalSupply, since that would imply the
    // sender's balance is greater than the totalSupply, which *should* be an assertion failure

    balances[_who] = balances[_who].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    emit Burn(_who, _value);
    emit Transfer(_who, address(0), _value);
  }
}

/**
 * @title Standard Burnable Token
 * @dev Adds burnFrom method to ERC20 implementations
 */
contract StandardBurnableToken is BurnableToken, StandardToken {

  /**
   * @dev Burns a specific amount of tokens from the target address and decrements allowance
   * @param _from address The address which you want to send tokens from
   * @param _value uint256 The amount of token to be burned
   */
  function burnFrom(address _from, uint256 _value) public {
    require(_value <= allowed[_from][msg.sender]);
    // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted,
    // this function needs to emit an event with the updated approval.
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    _burn(_from, _value);
  }
}

/// @title Viarium Platform token implementation
/// @author Mai Abha <[email protected]>
/// @dev Implements ERC20, ERC223 and MintableToken interfaces as well as capped and finalization logic
contract ViariumToken is StandardBurnableToken, RBACERC223TokenFinalization, RBACMintableTokenMixin {
  /// @notice Constant field with token full name
  // solium-disable-next-line uppercase
  string constant public name = "VIARIUM"; 
  /// @notice Constant field with token symbol
  string constant public symbol = "VRX"; // solium-disable-line uppercase
  /// @notice Constant field with token precision depth
  uint256 constant public decimals = 18; // solium-disable-line uppercase
  /// @notice Constant field with token cap (total supply limit)
  uint256 constant public cap = 250 * (10 ** 6) * (10 ** decimals); // solium-disable-line uppercase

  /// @notice Overrides original mint function from MintableToken to limit minting over cap
  /// @param _to The address that will receive the minted tokens.
  /// @param _amount The amount of tokens to mint.
  /// @return A boolean that indicates if the operation was successful.
  function mint(
    address _to,
    uint256 _amount
  )
    public
    returns (bool) 
  {
    require(totalSupply().add(_amount) <= cap);
    return super.mint(_to, _amount);
  }

  /// @notice Overrides finalize function from RBACERC223TokenFinalization to prevent future minting after finalization
  /// @return A boolean that indicates if the operation was successful.
  function finalize() public returns (bool) {
    require(super.finalize());
    require(finishMinting());
    return true;
  }

  /// @notice Overrides finishMinting function from RBACMintableTokenMixin to prevent finishing minting before finalization
  /// @return A boolean that indicates if the operation was successful.
  function finishMinting() internal returns (bool) {
    require(finalized == true);
    require(super.finishMinting());
    return true;
  }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"owners","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_who","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_who","type":"address"}],"name":"addOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_who","type":"address"}],"name":"addMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_who","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"finalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_who","type":"address"}],"name":"deleteOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_who","type":"address"}],"name":"deleteMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"minters","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[],"name":"Finalize","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"who","type":"address"}],"name":"AddOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"who","type":"address"}],"name":"DeleteOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"who","type":"address"}],"name":"AddMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"who","type":"address"}],"name":"DeleteMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60806040526005805461ff0019169055610023336001640100000000610029810204565b506100f9565b600160a060020a03821660009081526003602052604081205460ff161515821515141561005557600080fd5b600160a060020a0383166000908152600360205260409020805460ff191683158015919091179091556100bb57604051600160a060020a038416907fac1e9ef41b54c676ccf449d83ae6f2624bcdce8f5b93a6b48ce95874c332693d90600090a26100f0565b604051600160a060020a038416907fbaefbfc44c4c937d4905d8a50bef95643f586e33d78f3d1998a10b992b68bdcc90600090a25b50600192915050565b611825806101086000396000f3006080604052600436106101695763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663022914a7811461016e57806305d2035b146101a357806306fdde03146101b8578063095ea7b31461024257806318160ddd1461026657806323b872dd1461028d5780632f54bf6e146102b7578063313ce567146102d8578063355274ea146102ed57806340c10f191461030257806342966c68146103265780634bb278f31461034057806366188463146103555780637065cb481461037957806370a082311461039a57806379cc6790146103bb57806395d89b41146103df578063983b2d56146103f4578063a9059cbb14610415578063aa271e1a14610439578063ab67aa581461045a578063b3f05b97146104c9578063be45fd62146104de578063cd5c4c7014610547578063d73dd62314610568578063d82f94a31461058c578063dd62ed3e146105ad578063f46eccc4146105d4575b600080fd5b34801561017a57600080fd5b5061018f600160a060020a03600435166105f5565b604080519115158252519081900360200190f35b3480156101af57600080fd5b5061018f61060a565b3480156101c457600080fd5b506101cd610618565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102075781810151838201526020016101ef565b50505050905090810190601f1680156102345780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561024e57600080fd5b5061018f600160a060020a036004351660243561064f565b34801561027257600080fd5b5061027b610674565b60408051918252519081900360200190f35b34801561029957600080fd5b5061018f600160a060020a036004358116906024351660443561067a565b3480156102c357600080fd5b5061018f600160a060020a03600435166106a1565b3480156102e457600080fd5b5061027b6106bf565b3480156102f957600080fd5b5061027b6106c4565b34801561030e57600080fd5b5061018f600160a060020a03600435166024356106d3565b34801561033257600080fd5b5061033e60043561070e565b005b34801561034c57600080fd5b5061018f61071b565b34801561036157600080fd5b5061018f600160a060020a0360043516602435610749565b34801561038557600080fd5b5061018f600160a060020a0360043516610767565b3480156103a657600080fd5b5061027b600160a060020a0360043516610834565b3480156103c757600080fd5b5061033e600160a060020a036004351660243561084f565b3480156103eb57600080fd5b506101cd6108e5565b34801561040057600080fd5b5061018f600160a060020a036004351661091c565b34801561042157600080fd5b5061018f600160a060020a03600435166024356109a7565b34801561044557600080fd5b5061018f600160a060020a03600435166109c5565b34801561046657600080fd5b50604080516020601f60643560048181013592830184900484028501840190955281845261018f94600160a060020a0381358116956024803590921695604435953695608494019181908401838280828437509497506109e39650505050505050565b3480156104d557600080fd5b5061018f610a0c565b3480156104ea57600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261018f948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610a159650505050505050565b34801561055357600080fd5b5061018f600160a060020a0360043516610a34565b34801561057457600080fd5b5061018f600160a060020a0360043516602435610abf565b34801561059857600080fd5b5061018f600160a060020a0360043516610add565b3480156105b957600080fd5b5061027b600160a060020a0360043581169060243516610b68565b3480156105e057600080fd5b5061018f600160a060020a0360043516610b93565b60036020526000908152604090205460ff1681565b600554610100900460ff1681565b60408051808201909152600781527f5649415249554d00000000000000000000000000000000000000000000000000602082015281565b60055460009060ff16151561066357600080fd5b61066d8383610ba8565b9392505050565b60015490565b60055460009060ff16151561068e57600080fd5b610699848484610c0e565b949350505050565b600160a060020a031660009081526003602052604090205460ff1690565b601281565b6acecb8f27f4200f3a00000081565b60006acecb8f27f4200f3a0000006106f9836106ed610674565b9063ffffffff610c1e16565b111561070457600080fd5b61066d8383610c31565b6107183382610d8d565b50565b6000610725610e7c565b151561073057600080fd5b610738610f49565b151561074357600080fd5b50600190565b60055460009060ff16151561075d57600080fd5b61066d8383610f68565b6000610772336106a1565b60408051808201909152601e81526000805160206117ba83398151915260208201529015156108225760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b838110156107e75781810151838201526020016107cf565b50505050905090810190601f1680156108145780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5061082e826001611058565b50919050565b600160a060020a031660009081526020819052604090205490565b600160a060020a038216600090815260026020908152604080832033845290915290205481111561087f57600080fd5b600160a060020a03821660009081526002602090815260408083203384529091529020546108b3908263ffffffff61112816565b600160a060020a03831660009081526002602090815260408083203384529091529020556108e18282610d8d565b5050565b60408051808201909152600381527f5652580000000000000000000000000000000000000000000000000000000000602082015281565b6000610927336106a1565b60408051808201909152601e81526000805160206117ba833981519152602082015290151561099b5760405160e560020a62461bcd028152600401808060200182810382528381815181526020019150805190602001908083836000838110156107e75781810151838201526020016107cf565b5061082e82600161113a565b60055460009060ff1615156109bb57600080fd5b61066d8383611209565b600160a060020a031660009081526004602052604090205460ff1690565b60055460009060ff1615156109f757600080fd5b610a0385858585611218565b95945050505050565b60055460ff1681565b60055460009060ff161515610a2957600080fd5b6106998484846112cd565b6000610a3f336106a1565b60408051808201909152601e81526000805160206117ba8339815191526020820152901515610ab35760405160e560020a62461bcd028152600401808060200182810382528381815181526020019150805190602001908083836000838110156107e75781810151838201526020016107cf565b5061082e826000611058565b60055460009060ff161515610ad357600080fd5b61066d83836112fc565b6000610ae8336106a1565b60408051808201909152601e81526000805160206117ba8339815191526020820152901515610b5c5760405160e560020a62461bcd028152600401808060200182810382528381815181526020019150805190602001908083836000838110156107e75781810151838201526020016107cf565b5061082e82600061113a565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60046020526000908152604090205460ff1681565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60006060610a03858585846109e3565b81810182811015610c2b57fe5b92915050565b6000610c3c336109c5565b60408051808201909152601e81526000805160206117ba8339815191526020820152901515610cb05760405160e560020a62461bcd028152600401808060200182810382528381815181526020019150805190602001908083836000838110156107e75781810151838201526020016107cf565b50600554610100900460ff1615610cc657600080fd5b600154610cd9908363ffffffff610c1e16565b600155600160a060020a038316600090815260208190526040902054610d05908363ffffffff610c1e16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206117da8339815191529181900360200190a350600192915050565b600160a060020a038216600090815260208190526040902054811115610db257600080fd5b600160a060020a038216600090815260208190526040902054610ddb908263ffffffff61112816565b600160a060020a038316600090815260208190526040902055600154610e07908263ffffffff61112816565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206117da8339815191529181900360200190a35050565b60055460009060ff1615610e8f57600080fd5b610e98336106a1565b60408051808201909152601e81526000805160206117ba8339815191526020820152901515610f0c5760405160e560020a62461bcd028152600401808060200182810382528381815181526020019150805190602001908083836000838110156107e75781810151838201526020016107cf565b506005805460ff191660011790556040517fc5454d111913d0c92fa9088b73be5c3fc91d1eb84db52a8a8485154f05d73f2e90600090a150600190565b60055460009060ff161515600114610f6057600080fd5b610738611395565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610fbd57336000908152600260209081526040808320600160a060020a0388168452909152812055610ff2565b610fcd818463ffffffff61112816565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a03821660009081526003602052604081205460ff161515821515141561108457600080fd5b600160a060020a0383166000908152600360205260409020805460ff191683158015919091179091556110ea57604051600160a060020a038416907fac1e9ef41b54c676ccf449d83ae6f2624bcdce8f5b93a6b48ce95874c332693d90600090a261111f565b604051600160a060020a038416907fbaefbfc44c4c937d4905d8a50bef95643f586e33d78f3d1998a10b992b68bdcc90600090a25b50600192915050565b60008282111561113457fe5b50900390565b600160a060020a03821660009081526004602052604081205460ff161515821515141561116657600080fd5b600160a060020a0383166000908152600460205260409020805460ff191683158015919091179091556111cc57604051600160a060020a038416907f16baa937b08d58713325f93ac58b8a9369a4359bbefb4957d6d9b402735722ab90600090a261111f565b604051600160a060020a038416907f4a59e6ea1f075b8fb09f3b05c8b3e9c68b31683a887a4d692078957c58a12be390600090a250600192915050565b60006060610699848483610a15565b600160a060020a038416600090815260026020908152604080832033845290915281205483111561124857600080fd5b600160a060020a038516600090815260026020908152604080832033845290915290205461127c908463ffffffff61112816565b600160a060020a03861660009081526002602090815260408083203384529091529020556112a984611468565b156112c1576112ba85858585611470565b9050610699565b6112ba85858585611676565b60006112d884611468565b156112f0576112e933858585611470565b905061066d565b6112e933858585611676565b336000908152600260209081526040808320600160a060020a0386168452909152812054611330908363ffffffff610c1e16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60006113a0336106a1565b60408051808201909152601e81526000805160206117ba83398151915260208201529015156114145760405160e560020a62461bcd028152600401808060200182810382528381815181526020019150805190602001908083836000838110156107e75781810151838201526020016107cf565b50600554610100900460ff161561142a57600080fd5b6005805461ff0019166101001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b6000903b1190565b600061147d858585611740565b151561148857600080fd5b83600160a060020a031663c0ee0b8a8685856040518463ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611520578181015183820152602001611508565b50505050905090810190601f16801561154d5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b15801561156e57600080fd5b505af1158015611582573d6000803e3d6000fd5b5050604080518681529051600160a060020a038089169450891692506000805160206117da8339815191529181900360200190a383600160a060020a031685600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611630578181015183820152602001611618565b50505050905090810190601f16801561165d5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3506001949350505050565b6000611683858585611740565b151561168e57600080fd5b83600160a060020a031685600160a060020a03166000805160206117da833981519152856040518082815260200191505060405180910390a383600160a060020a031685600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16858560405180838152602001806020018281038252838181518152602001915080519060200190808383600083811015611630578181015183820152602001611618565b60008161174c85610834565b101561175757600080fd5b6117708261176486610834565b9063ffffffff61112816565b600160a060020a038516600090815260208190526040902055611796826106ed85610834565b600160a060020a03841660009081526020819052604090205550600193925050505600486176656e277420656e6f75676820726967687420746f206163636573730000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820962c9ed746cc03fedc396a535e2cc122adb9beb8364dcf79f4c98e89b2ac363c0029

Deployed Bytecode

0x6080604052600436106101695763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663022914a7811461016e57806305d2035b146101a357806306fdde03146101b8578063095ea7b31461024257806318160ddd1461026657806323b872dd1461028d5780632f54bf6e146102b7578063313ce567146102d8578063355274ea146102ed57806340c10f191461030257806342966c68146103265780634bb278f31461034057806366188463146103555780637065cb481461037957806370a082311461039a57806379cc6790146103bb57806395d89b41146103df578063983b2d56146103f4578063a9059cbb14610415578063aa271e1a14610439578063ab67aa581461045a578063b3f05b97146104c9578063be45fd62146104de578063cd5c4c7014610547578063d73dd62314610568578063d82f94a31461058c578063dd62ed3e146105ad578063f46eccc4146105d4575b600080fd5b34801561017a57600080fd5b5061018f600160a060020a03600435166105f5565b604080519115158252519081900360200190f35b3480156101af57600080fd5b5061018f61060a565b3480156101c457600080fd5b506101cd610618565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102075781810151838201526020016101ef565b50505050905090810190601f1680156102345780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561024e57600080fd5b5061018f600160a060020a036004351660243561064f565b34801561027257600080fd5b5061027b610674565b60408051918252519081900360200190f35b34801561029957600080fd5b5061018f600160a060020a036004358116906024351660443561067a565b3480156102c357600080fd5b5061018f600160a060020a03600435166106a1565b3480156102e457600080fd5b5061027b6106bf565b3480156102f957600080fd5b5061027b6106c4565b34801561030e57600080fd5b5061018f600160a060020a03600435166024356106d3565b34801561033257600080fd5b5061033e60043561070e565b005b34801561034c57600080fd5b5061018f61071b565b34801561036157600080fd5b5061018f600160a060020a0360043516602435610749565b34801561038557600080fd5b5061018f600160a060020a0360043516610767565b3480156103a657600080fd5b5061027b600160a060020a0360043516610834565b3480156103c757600080fd5b5061033e600160a060020a036004351660243561084f565b3480156103eb57600080fd5b506101cd6108e5565b34801561040057600080fd5b5061018f600160a060020a036004351661091c565b34801561042157600080fd5b5061018f600160a060020a03600435166024356109a7565b34801561044557600080fd5b5061018f600160a060020a03600435166109c5565b34801561046657600080fd5b50604080516020601f60643560048181013592830184900484028501840190955281845261018f94600160a060020a0381358116956024803590921695604435953695608494019181908401838280828437509497506109e39650505050505050565b3480156104d557600080fd5b5061018f610a0c565b3480156104ea57600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261018f948235600160a060020a0316946024803595369594606494920191908190840183828082843750949750610a159650505050505050565b34801561055357600080fd5b5061018f600160a060020a0360043516610a34565b34801561057457600080fd5b5061018f600160a060020a0360043516602435610abf565b34801561059857600080fd5b5061018f600160a060020a0360043516610add565b3480156105b957600080fd5b5061027b600160a060020a0360043581169060243516610b68565b3480156105e057600080fd5b5061018f600160a060020a0360043516610b93565b60036020526000908152604090205460ff1681565b600554610100900460ff1681565b60408051808201909152600781527f5649415249554d00000000000000000000000000000000000000000000000000602082015281565b60055460009060ff16151561066357600080fd5b61066d8383610ba8565b9392505050565b60015490565b60055460009060ff16151561068e57600080fd5b610699848484610c0e565b949350505050565b600160a060020a031660009081526003602052604090205460ff1690565b601281565b6acecb8f27f4200f3a00000081565b60006acecb8f27f4200f3a0000006106f9836106ed610674565b9063ffffffff610c1e16565b111561070457600080fd5b61066d8383610c31565b6107183382610d8d565b50565b6000610725610e7c565b151561073057600080fd5b610738610f49565b151561074357600080fd5b50600190565b60055460009060ff16151561075d57600080fd5b61066d8383610f68565b6000610772336106a1565b60408051808201909152601e81526000805160206117ba83398151915260208201529015156108225760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b838110156107e75781810151838201526020016107cf565b50505050905090810190601f1680156108145780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5061082e826001611058565b50919050565b600160a060020a031660009081526020819052604090205490565b600160a060020a038216600090815260026020908152604080832033845290915290205481111561087f57600080fd5b600160a060020a03821660009081526002602090815260408083203384529091529020546108b3908263ffffffff61112816565b600160a060020a03831660009081526002602090815260408083203384529091529020556108e18282610d8d565b5050565b60408051808201909152600381527f5652580000000000000000000000000000000000000000000000000000000000602082015281565b6000610927336106a1565b60408051808201909152601e81526000805160206117ba833981519152602082015290151561099b5760405160e560020a62461bcd028152600401808060200182810382528381815181526020019150805190602001908083836000838110156107e75781810151838201526020016107cf565b5061082e82600161113a565b60055460009060ff1615156109bb57600080fd5b61066d8383611209565b600160a060020a031660009081526004602052604090205460ff1690565b60055460009060ff1615156109f757600080fd5b610a0385858585611218565b95945050505050565b60055460ff1681565b60055460009060ff161515610a2957600080fd5b6106998484846112cd565b6000610a3f336106a1565b60408051808201909152601e81526000805160206117ba8339815191526020820152901515610ab35760405160e560020a62461bcd028152600401808060200182810382528381815181526020019150805190602001908083836000838110156107e75781810151838201526020016107cf565b5061082e826000611058565b60055460009060ff161515610ad357600080fd5b61066d83836112fc565b6000610ae8336106a1565b60408051808201909152601e81526000805160206117ba8339815191526020820152901515610b5c5760405160e560020a62461bcd028152600401808060200182810382528381815181526020019150805190602001908083836000838110156107e75781810151838201526020016107cf565b5061082e82600061113a565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60046020526000908152604090205460ff1681565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60006060610a03858585846109e3565b81810182811015610c2b57fe5b92915050565b6000610c3c336109c5565b60408051808201909152601e81526000805160206117ba8339815191526020820152901515610cb05760405160e560020a62461bcd028152600401808060200182810382528381815181526020019150805190602001908083836000838110156107e75781810151838201526020016107cf565b50600554610100900460ff1615610cc657600080fd5b600154610cd9908363ffffffff610c1e16565b600155600160a060020a038316600090815260208190526040902054610d05908363ffffffff610c1e16565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206117da8339815191529181900360200190a350600192915050565b600160a060020a038216600090815260208190526040902054811115610db257600080fd5b600160a060020a038216600090815260208190526040902054610ddb908263ffffffff61112816565b600160a060020a038316600090815260208190526040902055600154610e07908263ffffffff61112816565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206117da8339815191529181900360200190a35050565b60055460009060ff1615610e8f57600080fd5b610e98336106a1565b60408051808201909152601e81526000805160206117ba8339815191526020820152901515610f0c5760405160e560020a62461bcd028152600401808060200182810382528381815181526020019150805190602001908083836000838110156107e75781810151838201526020016107cf565b506005805460ff191660011790556040517fc5454d111913d0c92fa9088b73be5c3fc91d1eb84db52a8a8485154f05d73f2e90600090a150600190565b60055460009060ff161515600114610f6057600080fd5b610738611395565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610fbd57336000908152600260209081526040808320600160a060020a0388168452909152812055610ff2565b610fcd818463ffffffff61112816565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a03821660009081526003602052604081205460ff161515821515141561108457600080fd5b600160a060020a0383166000908152600360205260409020805460ff191683158015919091179091556110ea57604051600160a060020a038416907fac1e9ef41b54c676ccf449d83ae6f2624bcdce8f5b93a6b48ce95874c332693d90600090a261111f565b604051600160a060020a038416907fbaefbfc44c4c937d4905d8a50bef95643f586e33d78f3d1998a10b992b68bdcc90600090a25b50600192915050565b60008282111561113457fe5b50900390565b600160a060020a03821660009081526004602052604081205460ff161515821515141561116657600080fd5b600160a060020a0383166000908152600460205260409020805460ff191683158015919091179091556111cc57604051600160a060020a038416907f16baa937b08d58713325f93ac58b8a9369a4359bbefb4957d6d9b402735722ab90600090a261111f565b604051600160a060020a038416907f4a59e6ea1f075b8fb09f3b05c8b3e9c68b31683a887a4d692078957c58a12be390600090a250600192915050565b60006060610699848483610a15565b600160a060020a038416600090815260026020908152604080832033845290915281205483111561124857600080fd5b600160a060020a038516600090815260026020908152604080832033845290915290205461127c908463ffffffff61112816565b600160a060020a03861660009081526002602090815260408083203384529091529020556112a984611468565b156112c1576112ba85858585611470565b9050610699565b6112ba85858585611676565b60006112d884611468565b156112f0576112e933858585611470565b905061066d565b6112e933858585611676565b336000908152600260209081526040808320600160a060020a0386168452909152812054611330908363ffffffff610c1e16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60006113a0336106a1565b60408051808201909152601e81526000805160206117ba83398151915260208201529015156114145760405160e560020a62461bcd028152600401808060200182810382528381815181526020019150805190602001908083836000838110156107e75781810151838201526020016107cf565b50600554610100900460ff161561142a57600080fd5b6005805461ff0019166101001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b6000903b1190565b600061147d858585611740565b151561148857600080fd5b83600160a060020a031663c0ee0b8a8685856040518463ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611520578181015183820152602001611508565b50505050905090810190601f16801561154d5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b15801561156e57600080fd5b505af1158015611582573d6000803e3d6000fd5b5050604080518681529051600160a060020a038089169450891692506000805160206117da8339815191529181900360200190a383600160a060020a031685600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015611630578181015183820152602001611618565b50505050905090810190601f16801561165d5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a3506001949350505050565b6000611683858585611740565b151561168e57600080fd5b83600160a060020a031685600160a060020a03166000805160206117da833981519152856040518082815260200191505060405180910390a383600160a060020a031685600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16858560405180838152602001806020018281038252838181518152602001915080519060200190808383600083811015611630578181015183820152602001611618565b60008161174c85610834565b101561175757600080fd5b6117708261176486610834565b9063ffffffff61112816565b600160a060020a038516600090815260208190526040902055611796826106ed85610834565b600160a060020a03841660009081526020819052604090205550600193925050505600486176656e277420656e6f75676820726967687420746f206163636573730000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820962c9ed746cc03fedc396a535e2cc122adb9beb8364dcf79f4c98e89b2ac363c0029

Swarm Source

bzzr://962c9ed746cc03fedc396a535e2cc122adb9beb8364dcf79f4c98e89b2ac363c
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.