ETH Price: $2,904.95 (+6.50%)
 

Overview

Max Total Supply

100,000,000,000 CUR

Holders

2,296

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
300,000 CUR

Value
$0.00
0x8d00b359ab9a748755b30695aa82bc4f1d7598c1
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:
CurrentToken

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-06-25
*/

pragma solidity ^0.4.18;

// File: zeppelin-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 OwnershipTransferred(address indexed previousOwner, address indexed newOwner);


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() 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 transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    require(newOwner != address(0));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

// File: zeppelin-solidity/contracts/lifecycle/Pausable.sol

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @dev Modifier to make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused);
    _;
  }

  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused);
    _;
  }

  /**
   * @dev called by the owner to pause, triggers stopped state
   */
  function pause() onlyOwner whenNotPaused public {
    paused = true;
    Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused public {
    paused = false;
    Unpause();
  }
}

// File: zeppelin-solidity/contracts/ownership/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)
    view
    internal
  {
    require(has(role, addr));
  }

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

// File: zeppelin-solidity/contracts/ownership/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.
 * It's also recommended that you define constants in the contract, like ROLE_ADMIN below,
 *  to avoid typos.
 */
contract RBAC {
  using Roles for Roles.Role;

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

  event RoleAdded(address addr, string roleName);
  event RoleRemoved(address addr, string roleName);

  /**
   * A constant role name for indicating admins.
   */
  string public constant ROLE_ADMIN = "admin";

  /**
   * @dev constructor. Sets msg.sender as admin by default
   */
  function RBAC()
    public
  {
    addRole(msg.sender, ROLE_ADMIN);
  }

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

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

  /**
   * @dev add a role to an address
   * @param addr address
   * @param roleName the name of the role
   */
  function adminAddRole(address addr, string roleName)
    onlyAdmin
    public
  {
    addRole(addr, roleName);
  }

  /**
   * @dev remove a role from an address
   * @param addr address
   * @param roleName the name of the role
   */
  function adminRemoveRole(address addr, string roleName)
    onlyAdmin
    public
  {
    removeRole(addr, roleName);
  }

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

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

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

  /**
   * @dev modifier to scope access to admins
   * // reverts
   */
  modifier onlyAdmin()
  {
    checkRole(msg.sender, ROLE_ADMIN);
    _;
  }

  /**
   * @dev modifier to scope access to a set of roles (uses msg.sender as addr)
   * @param roleNames 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[] roleNames) {
  //     bool hasAnyRole = false;
  //     for (uint8 i = 0; i < roleNames.length; i++) {
  //         if (hasRole(msg.sender, roleNames[i])) {
  //             hasAnyRole = true;
  //             break;
  //         }
  //     }

  //     require(hasAnyRole);

  //     _;
  // }
}

// File: zeppelin-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) {
    if (a == 0) {
      return 0;
    }
    uint256 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 c;
  }

  /**
  * @dev Substracts 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) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

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

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

// File: zeppelin-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) 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]);

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    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 balance) {
    return balances[_owner];
  }

}

// File: zeppelin-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: zeppelin-solidity/contracts/token/ERC20/StandardToken.sol

/**
 * @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);
    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;
    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);
    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);
    }
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

// File: contracts/PausableToken.sol

contract PausableToken is StandardToken, Pausable, RBAC {

    string public constant ROLE_ADMINISTRATOR = "administrator";

    modifier whenNotPausedOrAuthorized() {
        require(!paused || hasRole(msg.sender, ROLE_ADMINISTRATOR));
        _;
    }
    /**
     * @dev Add an address that can administer the token even when paused.
     * @param _administrator Address of the given administrator.
     * @return True if the administrator has been added, false if the address was already an administrator.
     */
    function addAdministrator(address _administrator) onlyOwner public returns (bool) {
        if (isAdministrator(_administrator)) {
            return false;
        } else {
            addRole(_administrator, ROLE_ADMINISTRATOR);
            return true;
        }
    }

    /**
     * @dev Remove an administrator.
     * @param _administrator Address of the administrator to be removed.
     * @return True if the administrator has been removed,
     *  false if the address wasn't an administrator in the first place.
     */
    function removeAdministrator(address _administrator) onlyOwner public returns (bool) {
        if (isAdministrator(_administrator)) {
            removeRole(_administrator, ROLE_ADMINISTRATOR);
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Determine if address is an administrator.
     * @param _administrator Address of the administrator to be checked.
     */
    function isAdministrator(address _administrator) public view returns (bool) {
        return hasRole(_administrator, ROLE_ADMINISTRATOR);
    }

    /**
    * @dev Transfer token for a specified address with pause feature for administrator.
    * @dev Only applies when the transfer is allowed by the owner.
    * @param _to The address to transfer to.
    * @param _value The amount to be transferred.
    */
    function transfer(address _to, uint256 _value) public whenNotPausedOrAuthorized returns (bool) {
        return super.transfer(_to, _value);
    }

    /**
    * @dev Transfer tokens from one address to another with pause feature for administrator.
    * @dev Only applies when the transfer is allowed by the owner.
    * @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 whenNotPausedOrAuthorized returns (bool) {
        return super.transferFrom(_from, _to, _value);
    }
}

// File: contracts/CurrentToken.sol

contract CurrentToken is PausableToken {
    string constant public name = "CurrentCoin";
    string constant public symbol = "CUR";
    uint8 constant public decimals = 18;

    uint256 constant public INITIAL_TOTAL_SUPPLY = 1e11 * (uint256(10) ** decimals);

    /**
    * @dev Create CurrentToken contract and set pause
    */
    function CurrentToken() public {
        totalSupply_ = totalSupply_.add(INITIAL_TOTAL_SUPPLY);
        balances[msg.sender] = totalSupply_;
        Transfer(address(0), msg.sender, totalSupply_);

        pause();
    }
}

Contract Security Audit

Contract ABI

[{"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":"addr","type":"address"},{"name":"roleName","type":"string"}],"name":"checkRole","outputs":[],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_administrator","type":"address"}],"name":"isAdministrator","outputs":[{"name":"","type":"bool"}],"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":"addr","type":"address"},{"name":"roleName","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":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"_administrator","type":"address"}],"name":"removeAdministrator","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"roleName","type":"string"}],"name":"adminRemoveRole","outputs":[],"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":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","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":false,"inputs":[{"name":"addr","type":"address"},{"name":"roleName","type":"string"}],"name":"adminAddRole","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_TOTAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_administrator","type":"address"}],"name":"addAdministrator","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ROLE_ADMIN","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":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":"ROLE_ADMINISTRATOR","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"roleName","type":"string"}],"name":"RoleAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"roleName","type":"string"}],"name":"RoleRemoved","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","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"}]

60806040526003805460a060020a60ff02191690553480156200002157600080fd5b5060038054600160a060020a0319163390811790915560408051808201909152600581527f61646d696e00000000000000000000000000000000000000000000000000000060208201526200008091906401000000006200010f810204565b600154620000aa906c01431e0fae6d7217caa0000000640100000000620012bb6200024582021704565b600181905533600081815260208181526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3620001096401000000006200025c810204565b62000314565b6200018b826004836040518082805190602001908083835b60208310620001485780518252601f19909201916020918201910162000127565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050640100000000620002ef8102620012ec1704565b7fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b70048982826040518083600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101562000205578181015183820152602001620001eb565b50505050905090810190601f168015620002335780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b6000828201838110156200025557fe5b9392505050565b600354600160a060020a031633146200027457600080fd5b60035474010000000000000000000000000000000000000000900460ff16156200029d57600080fd5b6003805460a060020a60ff021916740100000000000000000000000000000000000000001790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600160a060020a0316600090815260209190915260409020805460ff19166001179055565b61135d80620003246000396000f3006080604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610158578063095ea7b3146101e25780630988ca8c1461021a5780630a2eb3011461028357806318160ddd146102a4578063217fe6c6146102cb57806323b872dd14610332578063313ce5671461035c5780633f4ba83a146103875780635c975abb1461039c57806366188463146103b157806368fa8134146103d557806370a08231146103f65780638456cb591461041757806388cee87e1461042c5780638da5cb5b1461049357806395d89b41146104c4578063a9059cbb146104d9578063b25fa92c146104fd578063c04fcad814610564578063c999117614610579578063d391014b1461059a578063d73dd623146105af578063dd62ed3e146105d3578063ecdfdc27146105fa578063f2fde38b1461060f575b600080fd5b34801561016457600080fd5b5061016d610630565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a757818101518382015260200161018f565b50505050905090810190601f1680156101d45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ee57600080fd5b50610206600160a060020a0360043516602435610667565b604080519115158252519081900360200190f35b34801561022657600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610281958335600160a060020a03169536956044949193909101919081908401838280828437509497506106cd9650505050505050565b005b34801561028f57600080fd5b50610206600160a060020a036004351661073b565b3480156102b057600080fd5b506102b9610772565b60408051918252519081900360200190f35b3480156102d757600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610206958335600160a060020a03169536956044949193909101919081908401838280828437509497506107789650505050505050565b34801561033e57600080fd5b50610206600160a060020a03600435811690602435166044356107eb565b34801561036857600080fd5b5061037161084d565b6040805160ff9092168252519081900360200190f35b34801561039357600080fd5b50610281610852565b3480156103a857600080fd5b506102066108ca565b3480156103bd57600080fd5b50610206600160a060020a03600435166024356108da565b3480156103e157600080fd5b50610206600160a060020a03600435166109ca565b34801561040257600080fd5b506102b9600160a060020a0360043516610a2f565b34801561042357600080fd5b50610281610a4a565b34801561043857600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610281958335600160a060020a0316953695604494919390910191908190840183828082843750949750610ac79650505050505050565b34801561049f57600080fd5b506104a8610b10565b60408051600160a060020a039092168252519081900360200190f35b3480156104d057600080fd5b5061016d610b1f565b3480156104e557600080fd5b50610206600160a060020a0360043516602435610b56565b34801561050957600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610281958335600160a060020a0316953695604494919390910191908190840183828082843750949750610baf9650505050505050565b34801561057057600080fd5b506102b9610bf8565b34801561058557600080fd5b50610206600160a060020a0360043516610c09565b3480156105a657600080fd5b5061016d610c66565b3480156105bb57600080fd5b50610206600160a060020a0360043516602435610c9d565b3480156105df57600080fd5b506102b9600160a060020a0360043581169060243516610d36565b34801561060657600080fd5b5061016d610d61565b34801561061b57600080fd5b50610281600160a060020a0360043516610d86565b60408051808201909152600b81527f43757272656e74436f696e000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b610737826004836040518082805190602001908083835b602083106107035780518252601f1990920191602091820191016106e4565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050610e1b565b5050565b600061076a826040805190810160405280600d8152602001600080516020611312833981519152815250610778565b90505b919050565b60015490565b60006107e4836004846040518082805190602001908083835b602083106107b05780518252601f199092019160209182019101610791565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050610e30565b9392505050565b60035460009060a060020a900460ff16158061082f575061082f336040805190810160405280600d8152602001600080516020611312833981519152815250610778565b151561083a57600080fd5b610845848484610e4f565b949350505050565b601281565b600354600160a060020a0316331461086957600080fd5b60035460a060020a900460ff16151561088157600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460a060020a900460ff1681565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561092f57336000908152600260209081526040808320600160a060020a0388168452909152812055610964565b61093f818463ffffffff610fc616565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600354600090600160a060020a031633146109e457600080fd5b6109ed8261073b565b15610a2757610a1f826040805190810160405280600d8152602001600080516020611312833981519152815250610fd8565b50600161076d565b50600061076d565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a03163314610a6157600080fd5b60035460a060020a900460ff1615610a7857600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b610b06336040805190810160405280600581526020017f61646d696e0000000000000000000000000000000000000000000000000000008152506106cd565b6107378282610fd8565b600354600160a060020a031681565b60408051808201909152600381527f4355520000000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161580610b9a5750610b9a336040805190810160405280600d8152602001600080516020611312833981519152815250610778565b1515610ba557600080fd5b6107e483836110f9565b610bee336040805190810160405280600581526020017f61646d696e0000000000000000000000000000000000000000000000000000008152506106cd565b61073782826111da565b6c01431e0fae6d7217caa000000081565b600354600090600160a060020a03163314610c2357600080fd5b610c2c8261073b565b15610c395750600061076d565b610a1f826040805190810160405280600d81526020016000805160206113128339815191528152506111da565b60408051808201909152600581527f61646d696e000000000000000000000000000000000000000000000000000000602082015281565b336000908152600260209081526040808320600160a060020a0386168452909152812054610cd1908363ffffffff6112bb16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60408051808201909152600d8152600080516020611312833981519152602082015281565b600354600160a060020a03163314610d9d57600080fd5b600160a060020a0381161515610db257600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b610e258282610e30565b151561073757600080fd5b600160a060020a03166000908152602091909152604090205460ff1690565b6000600160a060020a0383161515610e6657600080fd5b600160a060020a038416600090815260208190526040902054821115610e8b57600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610ebb57600080fd5b600160a060020a038416600090815260208190526040902054610ee4908363ffffffff610fc616565b600160a060020a038086166000908152602081905260408082209390935590851681522054610f19908363ffffffff6112bb16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610f5b908363ffffffff610fc616565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600082821115610fd257fe5b50900390565b611042826004836040518082805190602001908083835b6020831061100e5780518252601f199092019160209182019101610fef565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220929150506112ca565b7fd211483f91fc6eff862467f8de606587a30c8fc9981056f051b897a418df803a82826040518083600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156110ba5781810151838201526020016110a2565b50505050905090810190601f1680156110e75780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b6000600160a060020a038316151561111057600080fd5b3360009081526020819052604090205482111561112c57600080fd5b3360009081526020819052604090205461114c908363ffffffff610fc616565b3360009081526020819052604080822092909255600160a060020a0385168152205461117e908363ffffffff6112bb16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b611244826004836040518082805190602001908083835b602083106112105780518252601f1990920191602091820191016111f1565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220929150506112ec565b7fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b70048982826040518083600160a060020a0316600160a060020a031681526020018060200182810382528381815181526020019150805190602001908083836000838110156110ba5781810151838201526020016110a2565b6000828201838110156107e457fe5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0316600090815260209190915260409020805460ff19166001179055560061646d696e6973747261746f7200000000000000000000000000000000000000a165627a7a7230582056473f0db42d0503570d637648cdde8621aae3419fd6ae2f984b108c1bbbf8240029

Deployed Bytecode

0x6080604052600436106101535763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610158578063095ea7b3146101e25780630988ca8c1461021a5780630a2eb3011461028357806318160ddd146102a4578063217fe6c6146102cb57806323b872dd14610332578063313ce5671461035c5780633f4ba83a146103875780635c975abb1461039c57806366188463146103b157806368fa8134146103d557806370a08231146103f65780638456cb591461041757806388cee87e1461042c5780638da5cb5b1461049357806395d89b41146104c4578063a9059cbb146104d9578063b25fa92c146104fd578063c04fcad814610564578063c999117614610579578063d391014b1461059a578063d73dd623146105af578063dd62ed3e146105d3578063ecdfdc27146105fa578063f2fde38b1461060f575b600080fd5b34801561016457600080fd5b5061016d610630565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a757818101518382015260200161018f565b50505050905090810190601f1680156101d45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ee57600080fd5b50610206600160a060020a0360043516602435610667565b604080519115158252519081900360200190f35b34801561022657600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610281958335600160a060020a03169536956044949193909101919081908401838280828437509497506106cd9650505050505050565b005b34801561028f57600080fd5b50610206600160a060020a036004351661073b565b3480156102b057600080fd5b506102b9610772565b60408051918252519081900360200190f35b3480156102d757600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610206958335600160a060020a03169536956044949193909101919081908401838280828437509497506107789650505050505050565b34801561033e57600080fd5b50610206600160a060020a03600435811690602435166044356107eb565b34801561036857600080fd5b5061037161084d565b6040805160ff9092168252519081900360200190f35b34801561039357600080fd5b50610281610852565b3480156103a857600080fd5b506102066108ca565b3480156103bd57600080fd5b50610206600160a060020a03600435166024356108da565b3480156103e157600080fd5b50610206600160a060020a03600435166109ca565b34801561040257600080fd5b506102b9600160a060020a0360043516610a2f565b34801561042357600080fd5b50610281610a4a565b34801561043857600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610281958335600160a060020a0316953695604494919390910191908190840183828082843750949750610ac79650505050505050565b34801561049f57600080fd5b506104a8610b10565b60408051600160a060020a039092168252519081900360200190f35b3480156104d057600080fd5b5061016d610b1f565b3480156104e557600080fd5b50610206600160a060020a0360043516602435610b56565b34801561050957600080fd5b5060408051602060046024803582810135601f8101859004850286018501909652858552610281958335600160a060020a0316953695604494919390910191908190840183828082843750949750610baf9650505050505050565b34801561057057600080fd5b506102b9610bf8565b34801561058557600080fd5b50610206600160a060020a0360043516610c09565b3480156105a657600080fd5b5061016d610c66565b3480156105bb57600080fd5b50610206600160a060020a0360043516602435610c9d565b3480156105df57600080fd5b506102b9600160a060020a0360043581169060243516610d36565b34801561060657600080fd5b5061016d610d61565b34801561061b57600080fd5b50610281600160a060020a0360043516610d86565b60408051808201909152600b81527f43757272656e74436f696e000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b610737826004836040518082805190602001908083835b602083106107035780518252601f1990920191602091820191016106e4565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050610e1b565b5050565b600061076a826040805190810160405280600d8152602001600080516020611312833981519152815250610778565b90505b919050565b60015490565b60006107e4836004846040518082805190602001908083835b602083106107b05780518252601f199092019160209182019101610791565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922092915050610e30565b9392505050565b60035460009060a060020a900460ff16158061082f575061082f336040805190810160405280600d8152602001600080516020611312833981519152815250610778565b151561083a57600080fd5b610845848484610e4f565b949350505050565b601281565b600354600160a060020a0316331461086957600080fd5b60035460a060020a900460ff16151561088157600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460a060020a900460ff1681565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561092f57336000908152600260209081526040808320600160a060020a0388168452909152812055610964565b61093f818463ffffffff610fc616565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600354600090600160a060020a031633146109e457600080fd5b6109ed8261073b565b15610a2757610a1f826040805190810160405280600d8152602001600080516020611312833981519152815250610fd8565b50600161076d565b50600061076d565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a03163314610a6157600080fd5b60035460a060020a900460ff1615610a7857600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b610b06336040805190810160405280600581526020017f61646d696e0000000000000000000000000000000000000000000000000000008152506106cd565b6107378282610fd8565b600354600160a060020a031681565b60408051808201909152600381527f4355520000000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161580610b9a5750610b9a336040805190810160405280600d8152602001600080516020611312833981519152815250610778565b1515610ba557600080fd5b6107e483836110f9565b610bee336040805190810160405280600581526020017f61646d696e0000000000000000000000000000000000000000000000000000008152506106cd565b61073782826111da565b6c01431e0fae6d7217caa000000081565b600354600090600160a060020a03163314610c2357600080fd5b610c2c8261073b565b15610c395750600061076d565b610a1f826040805190810160405280600d81526020016000805160206113128339815191528152506111da565b60408051808201909152600581527f61646d696e000000000000000000000000000000000000000000000000000000602082015281565b336000908152600260209081526040808320600160a060020a0386168452909152812054610cd1908363ffffffff6112bb16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60408051808201909152600d8152600080516020611312833981519152602082015281565b600354600160a060020a03163314610d9d57600080fd5b600160a060020a0381161515610db257600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b610e258282610e30565b151561073757600080fd5b600160a060020a03166000908152602091909152604090205460ff1690565b6000600160a060020a0383161515610e6657600080fd5b600160a060020a038416600090815260208190526040902054821115610e8b57600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610ebb57600080fd5b600160a060020a038416600090815260208190526040902054610ee4908363ffffffff610fc616565b600160a060020a038086166000908152602081905260408082209390935590851681522054610f19908363ffffffff6112bb16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610f5b908363ffffffff610fc616565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b600082821115610fd257fe5b50900390565b611042826004836040518082805190602001908083835b6020831061100e5780518252601f199092019160209182019101610fef565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220929150506112ca565b7fd211483f91fc6eff862467f8de606587a30c8fc9981056f051b897a418df803a82826040518083600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b838110156110ba5781810151838201526020016110a2565b50505050905090810190601f1680156110e75780820380516001836020036101000a031916815260200191505b50935050505060405180910390a15050565b6000600160a060020a038316151561111057600080fd5b3360009081526020819052604090205482111561112c57600080fd5b3360009081526020819052604090205461114c908363ffffffff610fc616565b3360009081526020819052604080822092909255600160a060020a0385168152205461117e908363ffffffff6112bb16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b611244826004836040518082805190602001908083835b602083106112105780518252601f1990920191602091820191016111f1565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220929150506112ec565b7fbfec83d64eaa953f2708271a023ab9ee82057f8f3578d548c1a4ba0b5b70048982826040518083600160a060020a0316600160a060020a031681526020018060200182810382528381815181526020019150805190602001908083836000838110156110ba5781810151838201526020016110a2565b6000828201838110156107e457fe5b600160a060020a0316600090815260209190915260409020805460ff19169055565b600160a060020a0316600090815260209190915260409020805460ff19166001179055560061646d696e6973747261746f7200000000000000000000000000000000000000a165627a7a7230582056473f0db42d0503570d637648cdde8621aae3419fd6ae2f984b108c1bbbf8240029

Swarm Source

bzzr://56473f0db42d0503570d637648cdde8621aae3419fd6ae2f984b108c1bbbf824
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.