ETH Price: $3,320.90 (-4.66%)
Gas: 3 Gwei

Token

ABCC invite (HTTP://ABCCINVITE.COM/VIP/)
 

Overview

Max Total Supply

77,777,777.7 HTTP://ABCCINVITE.COM/VIP/

Holders

1,004

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 1 Decimals)

Balance
0.1 HTTP://ABCCINVITE.COM/VIP/

Value
$0.00
0x2aBAeaD300d4447BfAbfFEA79a8abDc174A01b1B
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x2625Ae9c...7a86a5178
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ERC20Token

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-09-30
*/

pragma solidity ^0.4.24;

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * 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);
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol

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

// File: openzeppelin-solidity/contracts/token/ERC20/DetailedERC20.sol

/**
 * @title DetailedERC20 token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract DetailedERC20 is ERC20 {
  string public name;
  string public symbol;
  uint8 public decimals;

  constructor(string _name, string _symbol, uint8 _decimals) public {
    name = _name;
    symbol = _symbol;
    decimals = _decimals;
  }
}

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

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

// File: openzeppelin-solidity/contracts/token/ERC20/BasicToken.sol

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

  mapping(address => uint256) internal balances;

  uint256 internal 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(_value <= balances[msg.sender]);
    require(_to != address(0));

    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];
  }

}

// File: openzeppelin-solidity/contracts/token/ERC20/StandardToken.sol

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/issues/20
 * 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(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);
    require(_to != address(0));

    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,
    uint256 _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,
    uint256 _subtractedValue
  )
    public
    returns (bool)
  {
    uint256 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;
  }

}

// File: openzeppelin-solidity/contracts/ownership/Ownable.sol

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() public {
    owner = msg.sender;
  }

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

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(owner);
    owner = address(0);
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function transferOwnership(address _newOwner) public onlyOwner {
    _transferOwnership(_newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address _newOwner) internal {
    require(_newOwner != address(0));
    emit OwnershipTransferred(owner, _newOwner);
    owner = _newOwner;
  }
}

// File: openzeppelin-solidity/contracts/token/ERC20/MintableToken.sol

/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */
contract MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


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

  modifier hasMintPermission() {
    require(msg.sender == owner);
    _;
  }

  /**
   * @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
  )
    hasMintPermission
    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 public returns (bool) {
    mintingFinished = true;
    emit MintFinished();
    return true;
  }
}

// File: openzeppelin-solidity/contracts/access/rbac/Roles.sol

/**
 * @title Roles
 * @author Francisco Giordano (@frangio)
 * @dev Library for managing addresses assigned to a Role.
 * See RBAC.sol for example usage.
 */
library Roles {
  struct Role {
    mapping (address => bool) bearer;
  }

  /**
   * @dev give an address access to this role
   */
  function add(Role storage _role, address _addr)
    internal
  {
    _role.bearer[_addr] = true;
  }

  /**
   * @dev remove an address' access to this role
   */
  function remove(Role storage _role, address _addr)
    internal
  {
    _role.bearer[_addr] = false;
  }

  /**
   * @dev check if an address has this role
   * // reverts
   */
  function check(Role storage _role, address _addr)
    internal
    view
  {
    require(has(_role, _addr));
  }

  /**
   * @dev check if an address has this role
   * @return bool
   */
  function has(Role storage _role, address _addr)
    internal
    view
    returns (bool)
  {
    return _role.bearer[_addr];
  }
}

// File: openzeppelin-solidity/contracts/access/rbac/RBAC.sol

/**
 * @title RBAC (Role-Based Access Control)
 * @author Matt Condon (@Shrugs)
 * @dev Stores and provides setters and getters for roles and addresses.
 * Supports unlimited numbers of roles and addresses.
 * See //contracts/mocks/RBACMock.sol for an example of usage.
 * This RBAC method uses strings to key roles. It may be beneficial
 * for you to write your own implementation of this interface using Enums or similar.
 */
contract RBAC {
  using Roles for Roles.Role;

  mapping (string => Roles.Role) private roles;

  event RoleAdded(address indexed operator, string role);
  event RoleRemoved(address indexed operator, string role);

  /**
   * @dev reverts if addr does not have role
   * @param _operator address
   * @param _role the name of the role
   * // reverts
   */
  function checkRole(address _operator, string _role)
    public
    view
  {
    roles[_role].check(_operator);
  }

  /**
   * @dev determine if addr has role
   * @param _operator address
   * @param _role the name of the role
   * @return bool
   */
  function hasRole(address _operator, string _role)
    public
    view
    returns (bool)
  {
    return roles[_role].has(_operator);
  }

  /**
   * @dev add a role to an address
   * @param _operator address
   * @param _role the name of the role
   */
  function addRole(address _operator, string _role)
    internal
  {
    roles[_role].add(_operator);
    emit RoleAdded(_operator, _role);
  }

  /**
   * @dev remove a role from an address
   * @param _operator address
   * @param _role the name of the role
   */
  function removeRole(address _operator, string _role)
    internal
  {
    roles[_role].remove(_operator);
    emit RoleRemoved(_operator, _role);
  }

  /**
   * @dev modifier to scope access to a single role (uses msg.sender as addr)
   * @param _role the name of the role
   * // reverts
   */
  modifier onlyRole(string _role)
  {
    checkRole(msg.sender, _role);
    _;
  }

  /**
   * @dev modifier to scope access to a set of roles (uses msg.sender as addr)
   * @param _roles the names of the roles to scope access to
   * // reverts
   *
   * @TODO - when solidity supports dynamic arrays as arguments to modifiers, provide this
   *  see: https://github.com/ethereum/solidity/issues/2467
   */
  // modifier onlyRoles(string[] _roles) {
  //     bool hasAnyRole = false;
  //     for (uint8 i = 0; i < _roles.length; i++) {
  //         if (hasRole(msg.sender, _roles[i])) {
  //             hasAnyRole = true;
  //             break;
  //         }
  //     }

  //     require(hasAnyRole);

  //     _;
  // }
}

// File: openzeppelin-solidity/contracts/token/ERC20/RBACMintableToken.sol

/**
 * @title RBACMintableToken
 * @author Vittorio Minacori (@vittominacori)
 * @dev Mintable Token, with RBAC minter permissions
 */
contract RBACMintableToken is MintableToken, RBAC {
  /**
   * A constant role name for indicating minters.
   */
  string public constant ROLE_MINTER = "minter";

  /**
   * @dev override the Mintable token modifier to add role based logic
   */
  modifier hasMintPermission() {
    checkRole(msg.sender, ROLE_MINTER);
    _;
  }

  /**
   * @dev add a minter role to an address
   * @param _minter address
   */
  function addMinter(address _minter) public onlyOwner {
    addRole(_minter, ROLE_MINTER);
  }

  /**
   * @dev remove a minter role from an address
   * @param _minter address
   */
  function removeMinter(address _minter) public onlyOwner {
    removeRole(_minter, ROLE_MINTER);
  }
}

// File: openzeppelin-solidity/contracts/token/ERC20/BurnableToken.sol

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

// File: contracts/ERC20Token.sol

contract ERC20Token is DetailedERC20, RBACMintableToken, BurnableToken {

  string public builtOn = "https://vittominacori.github.io/erc20-generator";

  constructor(
    string _name,
    string _symbol,
    uint8 _decimals
  )
    DetailedERC20 (_name, _symbol, _decimals)
    public
  {
    addMinter(owner);
  }

  function transferAnyERC20Token(
    address _tokenAddress,
    uint256 _tokens
  )
    public
    onlyOwner
    returns (bool success)
  {
    return ERC20Basic(_tokenAddress).transfer(owner, _tokens);
  }
}

Contract Security Audit

Contract ABI

[{"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":"_operator","type":"address"},{"name":"_role","type":"string"}],"name":"checkRole","outputs":[],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_operator","type":"address"},{"name":"_role","type":"string"}],"name":"hasRole","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":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_minter","type":"address"}],"name":"removeMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"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":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","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":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ROLE_MINTER","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_minter","type":"address"}],"name":"addMinter","outputs":[],"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":"builtOn","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","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":"_tokenAddress","type":"address"},{"name":"_tokens","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"name":"success","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":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"operator","type":"address"},{"indexed":false,"name":"role","type":"string"}],"name":"RoleAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"operator","type":"address"},{"indexed":false,"name":"role","type":"string"}],"name":"RoleRemoved","type":"event"},{"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":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"}]

6006805460a060020a60ff021916905560e0604052602f60808190527f68747470733a2f2f766974746f6d696e61636f72692e6769746875622e696f2f60a09081527f65726332302d67656e657261746f72000000000000000000000000000000000060c052620000749160089190620002e7565b503480156200008257600080fd5b506040516200180e3803806200180e833981016040908152815160208084015192840151918401805190949390930192849184918491620000c991600091860190620002e7565b508151620000df906001906020850190620002e7565b506002805460ff90921660ff19909216919091179055505060068054600160a060020a0319163317908190556200012890600160a060020a031664010000000062000131810204565b5050506200038c565b600654600160a060020a031633146200014957600080fd5b62000199816040805190810160405280600681526020017f6d696e74657200000000000000000000000000000000000000000000000000008152506200019c640100000000026401000000009004565b50565b62000218826007836040518082805190602001908083835b60208310620001d55780518252601f199092019160209182019101620001b4565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050640100000000620002c28102620013e11704565b81600160a060020a03167fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b700489826040518080602001828103825283818151815260200191508051906020019080838360005b838110156200028357818101518382015260200162000269565b50505050905090810190601f168015620002b15780820380516001836020036101000a031916815260200191505b509250505060405180910390a25050565b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200032a57805160ff19168380011785556200035a565b828001600101855582156200035a579182015b828111156200035a5782518255916020019190600101906200033d565b50620003689291506200036c565b5090565b6200038991905b8082111562000368576000815560010162000373565b90565b611472806200039c6000396000f3006080604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014d57806306fdde0314610176578063095ea7b3146102005780630988ca8c1461022457806318160ddd1461028d578063217fe6c6146102b457806323b872dd1461031b5780633092afd514610345578063313ce5671461036657806340c10f191461039157806342966c68146103b557806366188463146103cd57806370a08231146103f1578063715018a6146104125780637d64bcb4146104275780638da5cb5b1461043c57806392afc33a1461046d57806395d89b4114610482578063983b2d5614610497578063a9059cbb146104b8578063b60b7084146104dc578063d73dd623146104f1578063dc39d06d14610515578063dd62ed3e14610539578063f2fde38b14610560575b600080fd5b34801561015957600080fd5b50610162610581565b604080519115158252519081900360200190f35b34801561018257600080fd5b5061018b6105a2565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101c55781810151838201526020016101ad565b50505050905090810190601f1680156101f25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020c57600080fd5b50610162600160a060020a0360043516602435610630565b34801561023057600080fd5b5060408051602060046024803582810135601f810185900485028601850190965285855261028b958335600160a060020a03169536956044949193909101919081908401838280828437509497506106969650505050505050565b005b34801561029957600080fd5b506102a2610704565b60408051918252519081900360200190f35b3480156102c057600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610162958335600160a060020a031695369560449491939091019190819084018382808284375094975061070a9650505050505050565b34801561032757600080fd5b50610162600160a060020a036004358116906024351660443561077d565b34801561035157600080fd5b5061028b600160a060020a03600435166108e2565b34801561037257600080fd5b5061037b610929565b6040805160ff9092168252519081900360200190f35b34801561039d57600080fd5b50610162600160a060020a0360043516602435610932565b3480156103c157600080fd5b5061028b600435610a52565b3480156103d957600080fd5b50610162600160a060020a0360043516602435610a5c565b3480156103fd57600080fd5b506102a2600160a060020a0360043516610b4b565b34801561041e57600080fd5b5061028b610b66565b34801561043357600080fd5b50610162610bd4565b34801561044857600080fd5b50610451610c7a565b60408051600160a060020a039092168252519081900360200190f35b34801561047957600080fd5b5061018b610c89565b34801561048e57600080fd5b5061018b610cae565b3480156104a357600080fd5b5061028b600160a060020a0360043516610d08565b3480156104c457600080fd5b50610162600160a060020a0360043516602435610d4c565b3480156104e857600080fd5b5061018b610e1b565b3480156104fd57600080fd5b50610162600160a060020a0360043516602435610e76565b34801561052157600080fd5b50610162600160a060020a0360043516602435610f0f565b34801561054557600080fd5b506102a2600160a060020a0360043581169060243516610fcb565b34801561056c57600080fd5b5061028b600160a060020a0360043516610ff6565b60065474010000000000000000000000000000000000000000900460ff1681565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106285780601f106105fd57610100808354040283529160200191610628565b820191906000526020600020905b81548152906001019060200180831161060b57829003601f168201915b505050505081565b336000818152600560209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b610700826007836040518082805190602001908083835b602083106106cc5780518252601f1990920191602091820191016106ad565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611016565b5050565b60045490565b6000610776836007846040518082805190602001908083835b602083106107425780518252601f199092019160209182019101610723565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092209291505061102b565b9392505050565b600160a060020a0383166000908152600360205260408120548211156107a257600080fd5b600160a060020a03841660009081526005602090815260408083203384529091529020548211156107d257600080fd5b600160a060020a03831615156107e757600080fd5b600160a060020a038416600090815260036020526040902054610810908363ffffffff61104a16565b600160a060020a038086166000908152600360205260408082209390935590851681522054610845908363ffffffff61105c16565b600160a060020a038085166000908152600360209081526040808320949094559187168152600582528281203382529091522054610889908363ffffffff61104a16565b600160a060020a0380861660008181526005602090815260408083203384528252918290209490945580518681529051928716939192600080516020611427833981519152929181900390910190a35060019392505050565b600654600160a060020a031633146108f957600080fd5b6109268160408051908101604052806006815260200160008051602061140783398151915281525061106f565b50565b60025460ff1681565b600061096133604080519081016040528060068152602001600080516020611407833981519152815250610696565b60065474010000000000000000000000000000000000000000900460ff161561098957600080fd5b60045461099c908363ffffffff61105c16565b600455600160a060020a0383166000908152600360205260409020546109c8908363ffffffff61105c16565b600160a060020a038416600081815260036020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206114278339815191529181900360200190a350600192915050565b6109263382611180565b336000908152600560209081526040808320600160a060020a0386168452909152812054808310610ab057336000908152600560209081526040808320600160a060020a0388168452909152812055610ae5565b610ac0818463ffffffff61104a16565b336000908152600560209081526040808320600160a060020a03891684529091529020555b336000818152600560209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526003602052604090205490565b600654600160a060020a03163314610b7d57600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b600654600090600160a060020a03163314610bee57600080fd5b60065474010000000000000000000000000000000000000000900460ff1615610c1657600080fd5b6006805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600654600160a060020a031681565b6040805180820190915260068152600080516020611407833981519152602082015281565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106285780601f106105fd57610100808354040283529160200191610628565b600654600160a060020a03163314610d1f57600080fd5b6109268160408051908101604052806006815260200160008051602061140783398151915281525061126f565b33600090815260036020526040812054821115610d6857600080fd5b600160a060020a0383161515610d7d57600080fd5b33600090815260036020526040902054610d9d908363ffffffff61104a16565b3360009081526003602052604080822092909255600160a060020a03851681522054610dcf908363ffffffff61105c16565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233926000805160206114278339815191529281900390910190a350600192915050565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106285780601f106105fd57610100808354040283529160200191610628565b336000908152600560209081526040808320600160a060020a0386168452909152812054610eaa908363ffffffff61105c16565b336000818152600560209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600654600090600160a060020a03163314610f2957600080fd5b600654604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810185905290519185169163a9059cbb916044808201926020929091908290030181600087803b158015610f9857600080fd5b505af1158015610fac573d6000803e3d6000fd5b505050506040513d6020811015610fc257600080fd5b50519392505050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600654600160a060020a0316331461100d57600080fd5b61092681611341565b611020828261102b565b151561070057600080fd5b600160a060020a03166000908152602091909152604090205460ff1690565b60008282111561105657fe5b50900390565b8181018281101561106957fe5b92915050565b6110d9826007836040518082805190602001908083835b602083106110a55780518252601f199092019160209182019101611086565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220929150506113bf565b81600160a060020a03167fd211483f91fc6eff862467f8de606587a30c8fc9981056f051b897a418df803a826040518080602001828103825283818151815260200191508051906020019080838360005b8381101561114257818101518382015260200161112a565b50505050905090810190601f16801561116f5780820380516001836020036101000a031916815260200191505b509250505060405180910390a25050565b600160a060020a0382166000908152600360205260409020548111156111a557600080fd5b600160a060020a0382166000908152600360205260409020546111ce908263ffffffff61104a16565b600160a060020a0383166000908152600360205260409020556004546111fa908263ffffffff61104a16565b600455604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206114278339815191529181900360200190a35050565b6112d9826007836040518082805190602001908083835b602083106112a55780518252601f199092019160209182019101611286565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220929150506113e1565b81600160a060020a03167fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b700489826040518080602001828103825283818151815260200191508051906020019080838360008381101561114257818101518382015260200161112a565b600160a060020a038116151561135657600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0316600090815260209190915260409020805460ff1916600117905556006d696e7465720000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058206309a9d73d69cdd9b68076b43415e3fcd0815e946cc636d06c702ebd076eaa640029000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000b47757468726965436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034743540000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014d57806306fdde0314610176578063095ea7b3146102005780630988ca8c1461022457806318160ddd1461028d578063217fe6c6146102b457806323b872dd1461031b5780633092afd514610345578063313ce5671461036657806340c10f191461039157806342966c68146103b557806366188463146103cd57806370a08231146103f1578063715018a6146104125780637d64bcb4146104275780638da5cb5b1461043c57806392afc33a1461046d57806395d89b4114610482578063983b2d5614610497578063a9059cbb146104b8578063b60b7084146104dc578063d73dd623146104f1578063dc39d06d14610515578063dd62ed3e14610539578063f2fde38b14610560575b600080fd5b34801561015957600080fd5b50610162610581565b604080519115158252519081900360200190f35b34801561018257600080fd5b5061018b6105a2565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101c55781810151838201526020016101ad565b50505050905090810190601f1680156101f25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020c57600080fd5b50610162600160a060020a0360043516602435610630565b34801561023057600080fd5b5060408051602060046024803582810135601f810185900485028601850190965285855261028b958335600160a060020a03169536956044949193909101919081908401838280828437509497506106969650505050505050565b005b34801561029957600080fd5b506102a2610704565b60408051918252519081900360200190f35b3480156102c057600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610162958335600160a060020a031695369560449491939091019190819084018382808284375094975061070a9650505050505050565b34801561032757600080fd5b50610162600160a060020a036004358116906024351660443561077d565b34801561035157600080fd5b5061028b600160a060020a03600435166108e2565b34801561037257600080fd5b5061037b610929565b6040805160ff9092168252519081900360200190f35b34801561039d57600080fd5b50610162600160a060020a0360043516602435610932565b3480156103c157600080fd5b5061028b600435610a52565b3480156103d957600080fd5b50610162600160a060020a0360043516602435610a5c565b3480156103fd57600080fd5b506102a2600160a060020a0360043516610b4b565b34801561041e57600080fd5b5061028b610b66565b34801561043357600080fd5b50610162610bd4565b34801561044857600080fd5b50610451610c7a565b60408051600160a060020a039092168252519081900360200190f35b34801561047957600080fd5b5061018b610c89565b34801561048e57600080fd5b5061018b610cae565b3480156104a357600080fd5b5061028b600160a060020a0360043516610d08565b3480156104c457600080fd5b50610162600160a060020a0360043516602435610d4c565b3480156104e857600080fd5b5061018b610e1b565b3480156104fd57600080fd5b50610162600160a060020a0360043516602435610e76565b34801561052157600080fd5b50610162600160a060020a0360043516602435610f0f565b34801561054557600080fd5b506102a2600160a060020a0360043581169060243516610fcb565b34801561056c57600080fd5b5061028b600160a060020a0360043516610ff6565b60065474010000000000000000000000000000000000000000900460ff1681565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106285780601f106105fd57610100808354040283529160200191610628565b820191906000526020600020905b81548152906001019060200180831161060b57829003601f168201915b505050505081565b336000818152600560209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b610700826007836040518082805190602001908083835b602083106106cc5780518252601f1990920191602091820191016106ad565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050611016565b5050565b60045490565b6000610776836007846040518082805190602001908083835b602083106107425780518252601f199092019160209182019101610723565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092209291505061102b565b9392505050565b600160a060020a0383166000908152600360205260408120548211156107a257600080fd5b600160a060020a03841660009081526005602090815260408083203384529091529020548211156107d257600080fd5b600160a060020a03831615156107e757600080fd5b600160a060020a038416600090815260036020526040902054610810908363ffffffff61104a16565b600160a060020a038086166000908152600360205260408082209390935590851681522054610845908363ffffffff61105c16565b600160a060020a038085166000908152600360209081526040808320949094559187168152600582528281203382529091522054610889908363ffffffff61104a16565b600160a060020a0380861660008181526005602090815260408083203384528252918290209490945580518681529051928716939192600080516020611427833981519152929181900390910190a35060019392505050565b600654600160a060020a031633146108f957600080fd5b6109268160408051908101604052806006815260200160008051602061140783398151915281525061106f565b50565b60025460ff1681565b600061096133604080519081016040528060068152602001600080516020611407833981519152815250610696565b60065474010000000000000000000000000000000000000000900460ff161561098957600080fd5b60045461099c908363ffffffff61105c16565b600455600160a060020a0383166000908152600360205260409020546109c8908363ffffffff61105c16565b600160a060020a038416600081815260036020908152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206114278339815191529181900360200190a350600192915050565b6109263382611180565b336000908152600560209081526040808320600160a060020a0386168452909152812054808310610ab057336000908152600560209081526040808320600160a060020a0388168452909152812055610ae5565b610ac0818463ffffffff61104a16565b336000908152600560209081526040808320600160a060020a03891684529091529020555b336000818152600560209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526003602052604090205490565b600654600160a060020a03163314610b7d57600080fd5b600654604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26006805473ffffffffffffffffffffffffffffffffffffffff19169055565b600654600090600160a060020a03163314610bee57600080fd5b60065474010000000000000000000000000000000000000000900460ff1615610c1657600080fd5b6006805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600654600160a060020a031681565b6040805180820190915260068152600080516020611407833981519152602082015281565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106285780601f106105fd57610100808354040283529160200191610628565b600654600160a060020a03163314610d1f57600080fd5b6109268160408051908101604052806006815260200160008051602061140783398151915281525061126f565b33600090815260036020526040812054821115610d6857600080fd5b600160a060020a0383161515610d7d57600080fd5b33600090815260036020526040902054610d9d908363ffffffff61104a16565b3360009081526003602052604080822092909255600160a060020a03851681522054610dcf908363ffffffff61105c16565b600160a060020a0384166000818152600360209081526040918290209390935580518581529051919233926000805160206114278339815191529281900390910190a350600192915050565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106285780601f106105fd57610100808354040283529160200191610628565b336000908152600560209081526040808320600160a060020a0386168452909152812054610eaa908363ffffffff61105c16565b336000818152600560209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600654600090600160a060020a03163314610f2957600080fd5b600654604080517fa9059cbb000000000000000000000000000000000000000000000000000000008152600160a060020a0392831660048201526024810185905290519185169163a9059cbb916044808201926020929091908290030181600087803b158015610f9857600080fd5b505af1158015610fac573d6000803e3d6000fd5b505050506040513d6020811015610fc257600080fd5b50519392505050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600654600160a060020a0316331461100d57600080fd5b61092681611341565b611020828261102b565b151561070057600080fd5b600160a060020a03166000908152602091909152604090205460ff1690565b60008282111561105657fe5b50900390565b8181018281101561106957fe5b92915050565b6110d9826007836040518082805190602001908083835b602083106110a55780518252601f199092019160209182019101611086565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220929150506113bf565b81600160a060020a03167fd211483f91fc6eff862467f8de606587a30c8fc9981056f051b897a418df803a826040518080602001828103825283818151815260200191508051906020019080838360005b8381101561114257818101518382015260200161112a565b50505050905090810190601f16801561116f5780820380516001836020036101000a031916815260200191505b509250505060405180910390a25050565b600160a060020a0382166000908152600360205260409020548111156111a557600080fd5b600160a060020a0382166000908152600360205260409020546111ce908263ffffffff61104a16565b600160a060020a0383166000908152600360205260409020556004546111fa908263ffffffff61104a16565b600455604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206114278339815191529181900360200190a35050565b6112d9826007836040518082805190602001908083835b602083106112a55780518252601f199092019160209182019101611286565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220929150506113e1565b81600160a060020a03167fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b700489826040518080602001828103825283818151815260200191508051906020019080838360008381101561114257818101518382015260200161112a565b600160a060020a038116151561135657600080fd5b600654604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0316600090815260209190915260409020805460ff1916600117905556006d696e7465720000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058206309a9d73d69cdd9b68076b43415e3fcd0815e946cc636d06c702ebd076eaa640029

Swarm Source

bzzr://6309a9d73d69cdd9b68076b43415e3fcd0815e946cc636d06c702ebd076eaa64
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.