ETH Price: $3,186.32 (+1.34%)
Gas: 6 Gwei

Token

URACToken (URAC)
 

Overview

Max Total Supply

3,500,000,000 URAC

Holders

29,097

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$1,089.76

Circulating Supply Market Cap

$640.88

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

The Ubiquitous Computing Resource Sharing Platform.

Profitability / Loss

Since Initial Offer Price
:$0.02 100%

Market

Volume (24H):$0.00
Market Capitalization:$640.88
Circulating Supply:2,058,315,413.00 URAC
Market Data Source: Coinmarketcap

ICO Information

ICO Start Date : Jan 21, 2019
ICO End Date : Feb 01, 2019
Raised : $11,110,000
ICO Price  : $0.018

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
URACToken

Compiler Version
v0.5.2+commit.1df8f40c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-01-30
*/

pragma solidity ^0.5.2;

// 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.
   */
  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 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));
    emit 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;
    emit Pause();
  }

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

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

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  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;
  }

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

  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  function add(uint256 a, uint256 b) internal pure returns (uint256) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

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

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  uint256 public totalSupply;
  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/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;

  /**
  * @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);
    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 balance) {
    return balances[_owner];
  }

}

// File: zeppelin-solidity/contracts/token/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/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);
    emit Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   *
   * Beware that changing an allowance with this method brings the risk that someone may use both the old
   * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
   * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    return true;
  }

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

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

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

}

// File: zeppelin-solidity/contracts/token/PausableToken.sol

/**
 * @title Pausable token
 *
 * @dev StandardToken modified with pausable transfers.
 **/

contract PausableToken is StandardToken, Pausable {

  function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
    return super.transfer(_to, _value);
  }

  function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
    return super.transferFrom(_from, _to, _value);
  }

  function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
    return super.approve(_spender, _value);
  }

  function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) {
    return super.increaseApproval(_spender, _addedValue);
  }

  function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) {
    return super.decreaseApproval(_spender, _subtractedValue);
  }
}

// File: contracts/URACToken.sol

/// @title URACToken Contract
/// For more information about this token sale, please visit http://www.uranus.io
/// @author reedhong
contract URACToken is PausableToken {
    using SafeMath for uint;

    /// Constant token specific fields
    string public constant name = "URACToken";
    string public constant symbol = "URAC";
    uint public constant decimals = 18;

    /// URAC total tokens supply
    uint public currentSupply;

    /// Fields that are only changed in constructor
    /// URAC sale  contract
    address public minter;

    /// Fields that can be changed by functions
    mapping (address => uint) public lockedBalances;

    /// claim flag
    bool public claimedFlag;

    /*
     * MODIFIERS
     */
    modifier onlyMinter {
        require(msg.sender == minter);
        _;
    }

    modifier canClaimed {
        require(claimedFlag == true);
        _;
    }

    modifier maxTokenAmountNotReached (uint amount){
        require(currentSupply.add(amount) <= totalSupply);
        _;
    }

    modifier validAddress( address addr ) {
        require(addr != address(0x0));
        require(addr != address(this));
        _;
    }

    /**
     * CONSTRUCTOR
     *
     * @dev Initialize the URAC Token
     * @param _minter The URACCrowdSale Contract
     * @param _maxTotalSupply total supply token
     */
    constructor(address _minter, address _admin, uint _maxTotalSupply)
        public
        validAddress(_admin)
        validAddress(_minter)
        {
        minter = _minter;
        totalSupply = _maxTotalSupply;
        claimedFlag = false;
        transferOwnership(_admin);
    }

    function mintex(uint amount) public onlyOwner {
        balances[msg.sender] = balances[msg.sender].add(amount);
        totalSupply = totalSupply.add(amount);
    }

    /**
     * EXTERNAL FUNCTION
     *
     * @dev URACCrowdSale contract instance mint token
     * @param receipent The destination account owned mint tokens
     * @param amount The amount of mint token
     * @param isLock Lock token flag
     * be sent to this address.
     */

    function mint(address receipent, uint amount, bool isLock)
        external
        onlyMinter
        maxTokenAmountNotReached(amount)
        returns (bool)
    {
        if (isLock ) {
            lockedBalances[receipent] = lockedBalances[receipent].add(amount);
        } else {
            balances[receipent] = balances[receipent].add(amount);
        }
        currentSupply = currentSupply.add(amount);
        return true;
    }


    function setClaimedFlag(bool flag)
        public
        onlyOwner
    {
        claimedFlag = flag;
    }

     /*
     * PUBLIC FUNCTIONS
     */

    /// @dev Locking period has passed - Locked tokens have turned into tradeable
    function claimTokens(address[] calldata receipents)
        external
        canClaimed
    {
        for (uint i = 0; i < receipents.length; i++) {
            address receipent = receipents[i];
            //balances[receipent] = balances[receipent].add(lockedBalances[receipent]);
            balances[msg.sender] = balances[msg.sender].add(lockedBalances[receipent]);
            transfer(receipent, lockedBalances[receipent]);
            lockedBalances[receipent] = 0;
        }
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"lockedBalances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minter","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"flag","type":"bool"}],"name":"setClaimedFlag","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"claimedFlag","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":"success","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":true,"inputs":[],"name":"currentSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","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":"amount","type":"uint256"}],"name":"mintex","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"receipent","type":"address"},{"name":"amount","type":"uint256"},{"name":"isLock","type":"bool"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"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":"receipents","type":"address[]"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_minter","type":"address"},{"name":"_admin","type":"address"},{"name":"_maxTotalSupply","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"}]

60806040526003805460a060020a60ff021916905534801561002057600080fd5b506040516060806110b98339810180604052606081101561004057600080fd5b508051602082015160409092015160038054600160a060020a0319163317905590919081600160a060020a038116151561007957600080fd5b600160a060020a03811630141561008f57600080fd5b83600160a060020a03811615156100a557600080fd5b600160a060020a0381163014156100bb57600080fd5b60058054600160a060020a031916600160a060020a03871617905560008390556007805460ff191690556100f784640100000000610101810204565b5050505050610189565b600354600160a060020a0316331461011857600080fd5b600160a060020a038116151561012d57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360038054600160a060020a031916600160a060020a0392909216919091179055565b610f21806101986000396000f3fe608060405234801561001057600080fd5b5060043610610175576000357c01000000000000000000000000000000000000000000000000000000009004806370a08231116100e0578063a976204f11610099578063a976204f146103b0578063d1a1beb4146103cd578063d73dd62314610401578063dd62ed3e1461042d578063eef72a3c1461045b578063f2fde38b146104cb57610175565b806370a082311461033e578063771282f6146103645780638456cb591461036c5780638da5cb5b1461037457806395d89b411461037c578063a9059cbb1461038457610175565b8063313ce56711610132578063313ce567146102d15780633f4ba83a146102d957806343b6c7d0146102e357806344e2adeb146103025780635c975abb1461030a578063661884631461031257610175565b80630483a7f61461017a57806306fdde03146101b2578063075461721461022f578063095ea7b31461025357806318160ddd1461029357806323b872dd1461029b575b600080fd5b6101a06004803603602081101561019057600080fd5b5035600160a060020a03166104f1565b60408051918252519081900360200190f35b6101ba610503565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f45781810151838201526020016101dc565b50505050905090810190601f1680156102215780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023761053a565b60408051600160a060020a039092168252519081900360200190f35b61027f6004803603604081101561026957600080fd5b50600160a060020a038135169060200135610549565b604080519115158252519081900360200190f35b6101a0610574565b61027f600480360360608110156102b157600080fd5b50600160a060020a0381358116916020810135909116906040013561057a565b6101a06105a7565b6102e16105ac565b005b6102e1600480360360208110156102f957600080fd5b50351515610624565b61027f61064e565b61027f610657565b61027f6004803603604081101561032857600080fd5b50600160a060020a038135169060200135610667565b6101a06004803603602081101561035457600080fd5b5035600160a060020a031661068b565b6101a06106a6565b6102e16106ac565b610237610729565b6101ba610738565b61027f6004803603604081101561039a57600080fd5b50600160a060020a03813516906020013561076f565b6102e1600480360360208110156103c657600080fd5b5035610793565b61027f600480360360608110156103e357600080fd5b50600160a060020a03813516906020810135906040013515156107f4565b61027f6004803603604081101561041757600080fd5b50600160a060020a0381351690602001356108e3565b6101a06004803603604081101561044357600080fd5b50600160a060020a0381358116916020013516610907565b6102e16004803603602081101561047157600080fd5b81019060208101813564010000000081111561048c57600080fd5b82018360208201111561049e57600080fd5b803590602001918460208302840111640100000000831117156104c057600080fd5b509092509050610932565b6102e1600480360360208110156104e157600080fd5b5035600160a060020a03166109f4565b60066020526000908152604090205481565b60408051808201909152600981527f55524143546f6b656e0000000000000000000000000000000000000000000000602082015281565b600554600160a060020a031681565b60035460009060a060020a900460ff161561056357600080fd5b61056d8383610a89565b9392505050565b60005481565b60035460009060a060020a900460ff161561059457600080fd5b61059f848484610aef565b949350505050565b601281565b600354600160a060020a031633146105c357600080fd5b60035460a060020a900460ff1615156105db57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600354600160a060020a0316331461063b57600080fd5b6007805460ff1916911515919091179055565b60075460ff1681565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161561068157600080fd5b61056d8383610c68565b600160a060020a031660009081526001602052604090205490565b60045481565b600354600160a060020a031633146106c357600080fd5b60035460a060020a900460ff16156106da57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600481527f5552414300000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561078957600080fd5b61056d8383610d58565b600354600160a060020a031633146107aa57600080fd5b336000908152600160205260409020546107ca908263ffffffff610e3b16565b33600090815260016020526040812091909155546107ee908263ffffffff610e3b16565b60005550565b600554600090600160a060020a0316331461080e57600080fd5b8260005461082782600454610e3b90919063ffffffff16565b111561083257600080fd5b821561087f57600160a060020a038516600090815260066020526040902054610861908563ffffffff610e3b16565b600160a060020a0386166000908152600660205260409020556108c2565b600160a060020a0385166000908152600160205260409020546108a8908563ffffffff610e3b16565b600160a060020a0386166000908152600160205260409020555b6004546108d5908563ffffffff610e3b16565b600455506001949350505050565b60035460009060a060020a900460ff16156108fd57600080fd5b61056d8383610e4a565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60075460ff16151560011461094657600080fd5b60005b818110156109ef57600083838381811061095f57fe5b60209081029290920135600160a060020a0316600081815260068452604080822054338352600190955290205490935061099b92909150610e3b565b33600090815260016020908152604080832093909355600160a060020a03841682526006905220546109ce90829061076f565b50600160a060020a0316600090815260066020526040812055600101610949565b505050565b600354600160a060020a03163314610a0b57600080fd5b600160a060020a0381161515610a2057600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a0383161515610b0657600080fd5b600160a060020a038416600090815260016020526040902054821115610b2b57600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610b5b57600080fd5b600160a060020a038416600090815260016020526040902054610b84908363ffffffff610ee316565b600160a060020a038086166000908152600160205260408082209390935590851681522054610bb9908363ffffffff610e3b16565b600160a060020a038085166000908152600160209081526040808320949094559187168152600282528281203382529091522054610bfd908363ffffffff610ee316565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610cbd57336000908152600260209081526040808320600160a060020a0388168452909152812055610cf2565b610ccd818463ffffffff610ee316565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a0383161515610d6f57600080fd5b33600090815260016020526040902054821115610d8b57600080fd5b33600090815260016020526040902054610dab908363ffffffff610ee316565b3360009081526001602052604080822092909255600160a060020a03851681522054610ddd908363ffffffff610e3b16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60008282018381101561056d57fe5b336000908152600260209081526040808320600160a060020a0386168452909152812054610e7e908363ffffffff610e3b16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600082821115610eef57fe5b5090039056fea165627a7a72305820936efe3e808d1107afabe5823b231085ff2d5a4f556e2fc5564c640b9412720a00290000000000000000000000005e44414f186e763f376e9ede66aec2ac24bea0860000000000000000000000005848f10bb9756ea63e241a6cbc4495d4c7386fad00000000000000000000000000000000000000000b4f21d42f59c0d52c000000

Deployed Bytecode

0x608060405234801561001057600080fd5b5060043610610175576000357c01000000000000000000000000000000000000000000000000000000009004806370a08231116100e0578063a976204f11610099578063a976204f146103b0578063d1a1beb4146103cd578063d73dd62314610401578063dd62ed3e1461042d578063eef72a3c1461045b578063f2fde38b146104cb57610175565b806370a082311461033e578063771282f6146103645780638456cb591461036c5780638da5cb5b1461037457806395d89b411461037c578063a9059cbb1461038457610175565b8063313ce56711610132578063313ce567146102d15780633f4ba83a146102d957806343b6c7d0146102e357806344e2adeb146103025780635c975abb1461030a578063661884631461031257610175565b80630483a7f61461017a57806306fdde03146101b2578063075461721461022f578063095ea7b31461025357806318160ddd1461029357806323b872dd1461029b575b600080fd5b6101a06004803603602081101561019057600080fd5b5035600160a060020a03166104f1565b60408051918252519081900360200190f35b6101ba610503565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f45781810151838201526020016101dc565b50505050905090810190601f1680156102215780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023761053a565b60408051600160a060020a039092168252519081900360200190f35b61027f6004803603604081101561026957600080fd5b50600160a060020a038135169060200135610549565b604080519115158252519081900360200190f35b6101a0610574565b61027f600480360360608110156102b157600080fd5b50600160a060020a0381358116916020810135909116906040013561057a565b6101a06105a7565b6102e16105ac565b005b6102e1600480360360208110156102f957600080fd5b50351515610624565b61027f61064e565b61027f610657565b61027f6004803603604081101561032857600080fd5b50600160a060020a038135169060200135610667565b6101a06004803603602081101561035457600080fd5b5035600160a060020a031661068b565b6101a06106a6565b6102e16106ac565b610237610729565b6101ba610738565b61027f6004803603604081101561039a57600080fd5b50600160a060020a03813516906020013561076f565b6102e1600480360360208110156103c657600080fd5b5035610793565b61027f600480360360608110156103e357600080fd5b50600160a060020a03813516906020810135906040013515156107f4565b61027f6004803603604081101561041757600080fd5b50600160a060020a0381351690602001356108e3565b6101a06004803603604081101561044357600080fd5b50600160a060020a0381358116916020013516610907565b6102e16004803603602081101561047157600080fd5b81019060208101813564010000000081111561048c57600080fd5b82018360208201111561049e57600080fd5b803590602001918460208302840111640100000000831117156104c057600080fd5b509092509050610932565b6102e1600480360360208110156104e157600080fd5b5035600160a060020a03166109f4565b60066020526000908152604090205481565b60408051808201909152600981527f55524143546f6b656e0000000000000000000000000000000000000000000000602082015281565b600554600160a060020a031681565b60035460009060a060020a900460ff161561056357600080fd5b61056d8383610a89565b9392505050565b60005481565b60035460009060a060020a900460ff161561059457600080fd5b61059f848484610aef565b949350505050565b601281565b600354600160a060020a031633146105c357600080fd5b60035460a060020a900460ff1615156105db57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600354600160a060020a0316331461063b57600080fd5b6007805460ff1916911515919091179055565b60075460ff1681565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161561068157600080fd5b61056d8383610c68565b600160a060020a031660009081526001602052604090205490565b60045481565b600354600160a060020a031633146106c357600080fd5b60035460a060020a900460ff16156106da57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600481527f5552414300000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561078957600080fd5b61056d8383610d58565b600354600160a060020a031633146107aa57600080fd5b336000908152600160205260409020546107ca908263ffffffff610e3b16565b33600090815260016020526040812091909155546107ee908263ffffffff610e3b16565b60005550565b600554600090600160a060020a0316331461080e57600080fd5b8260005461082782600454610e3b90919063ffffffff16565b111561083257600080fd5b821561087f57600160a060020a038516600090815260066020526040902054610861908563ffffffff610e3b16565b600160a060020a0386166000908152600660205260409020556108c2565b600160a060020a0385166000908152600160205260409020546108a8908563ffffffff610e3b16565b600160a060020a0386166000908152600160205260409020555b6004546108d5908563ffffffff610e3b16565b600455506001949350505050565b60035460009060a060020a900460ff16156108fd57600080fd5b61056d8383610e4a565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60075460ff16151560011461094657600080fd5b60005b818110156109ef57600083838381811061095f57fe5b60209081029290920135600160a060020a0316600081815260068452604080822054338352600190955290205490935061099b92909150610e3b565b33600090815260016020908152604080832093909355600160a060020a03841682526006905220546109ce90829061076f565b50600160a060020a0316600090815260066020526040812055600101610949565b505050565b600354600160a060020a03163314610a0b57600080fd5b600160a060020a0381161515610a2057600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a0383161515610b0657600080fd5b600160a060020a038416600090815260016020526040902054821115610b2b57600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610b5b57600080fd5b600160a060020a038416600090815260016020526040902054610b84908363ffffffff610ee316565b600160a060020a038086166000908152600160205260408082209390935590851681522054610bb9908363ffffffff610e3b16565b600160a060020a038085166000908152600160209081526040808320949094559187168152600282528281203382529091522054610bfd908363ffffffff610ee316565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610cbd57336000908152600260209081526040808320600160a060020a0388168452909152812055610cf2565b610ccd818463ffffffff610ee316565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a0383161515610d6f57600080fd5b33600090815260016020526040902054821115610d8b57600080fd5b33600090815260016020526040902054610dab908363ffffffff610ee316565b3360009081526001602052604080822092909255600160a060020a03851681522054610ddd908363ffffffff610e3b16565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b60008282018381101561056d57fe5b336000908152600260209081526040808320600160a060020a0386168452909152812054610e7e908363ffffffff610e3b16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600082821115610eef57fe5b5090039056fea165627a7a72305820936efe3e808d1107afabe5823b231085ff2d5a4f556e2fc5564c640b9412720a0029

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

0000000000000000000000005E44414F186e763f376E9eDe66AEC2AC24bea0860000000000000000000000005848F10bB9756ea63E241a6cBc4495D4c7386fAD00000000000000000000000000000000000000000b4f21d42f59c0d52c000000

-----Decoded View---------------
Arg [0] : _minter (address): 0x5E44414F186e763f376E9eDe66AEC2AC24bea086
Arg [1] : _admin (address): 0x5848F10bB9756ea63E241a6cBc4495D4c7386fAD
Arg [2] : _maxTotalSupply (uint256): 3500000000000000000000000000

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000005E44414F186e763f376E9eDe66AEC2AC24bea086
Arg [1] : 0000000000000000000000005848F10bB9756ea63E241a6cBc4495D4c7386fAD
Arg [2] : 00000000000000000000000000000000000000000b4f21d42f59c0d52c000000


Swarm Source

bzzr://936efe3e808d1107afabe5823b231085ff2d5a4f556e2fc5564c640b9412720a
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.