ETH Price: $1,972.02 (-0.62%)

Token

 

Overview

Max Total Supply

600,000

Holders

30

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

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:
TempoToken

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Multiple files format)

File 1 of 10: 1.TempoToken.sol
pragma solidity ^0.4.23;

import './StandardBurnableToken.sol';
import './AuthRepo.sol';
import './SafeMath.sol';

/**
 * The Sample contract does this and that...
 */

contract TempoToken is StandardBurnableToken {
    using SafeMath for uint256;
    constructor (uint256 initialSupply, address _authRepoAddress) public {
        totalSupply_ = initialSupply;
        balances[msg.sender] = initialSupply;
        authRepoAddress = _authRepoAddress;
    }


    bool public authorization;
    address authRepoAddress;

    event Transfer(
                   address indexed from,
                   address indexed to,
                   uint256 value
                   );


    function getAuthorization() public returns (bool) {
        AuthRepo instanceAuthRepo = AuthRepo(authRepoAddress);
        return instanceAuthRepo.authorizeContract();
    }

    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));
        authorization = getAuthorization();
        // TODO update this when auth repo is returning things other than just true
        require(authorization == true);

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

File 2 of 10: AuthRepo.sol
pragma solidity ^0.4.23;

import './1.TempoToken.sol';
import './Ownable.sol';

contract AuthRepo is Ownable {
    constructor () public {}


    event Authorized();

    function authorizeContract() public returns (bool) {
        emit Authorized();
        return true;
    }

}

File 3 of 10: BasicToken.sol
pragma solidity ^0.4.24;


import "./ERC20Basic.sol";
import "./SafeMath.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 4 of 10: BurnableToken.sol
pragma solidity ^0.4.24;

import "./BasicToken.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 5 of 10: ERC20.sol
pragma solidity ^0.4.24;

import "./ERC20Basic.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 6 of 10: ERC20Basic.sol
pragma solidity ^0.4.24;


/**
 * @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 7 of 10: Ownable.sol
pragma solidity ^0.4.24;


/**
 * @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 8 of 10: SafeMath.sol
pragma solidity ^0.4.24;


/**
 * @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 9 of 10: StandardBurnableToken.sol
pragma solidity ^0.4.24;

import "./BurnableToken.sol";
import "./StandardToken.sol";


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

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

File 10 of 10: StandardToken.sol
pragma solidity ^0.4.24;

import "./BasicToken.sol";
import "./ERC20.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;
  }

}

Contract Security Audit

Contract ABI

API
[{"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":"authorization","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":false,"inputs":[],"name":"getAuthorization","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":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":"_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"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"_authRepoAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

608060405234801561001057600080fd5b506040516040806109b583398101604090815281516020928301516001829055336000908152938490529183205560038054600160a060020a039092166101000261010060a860020a031990921691909117905561094190819061007490396000f3006080604052600436106100b95763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663095ea7b381146100be57806318160ddd146100f657806323b872dd1461011d5780633817c86c1461014757806342966c681461015c57806366188463146101765780636bd1c0eb1461019a57806370a08231146101af57806379cc6790146101d0578063a9059cbb146101f4578063d73dd62314610218578063dd62ed3e1461023c575b600080fd5b3480156100ca57600080fd5b506100e2600160a060020a0360043516602435610263565b604080519115158252519081900360200190f35b34801561010257600080fd5b5061010b6102c9565b60408051918252519081900360200190f35b34801561012957600080fd5b506100e2600160a060020a03600435811690602435166044356102cf565b34801561015357600080fd5b506100e26103f2565b34801561016857600080fd5b506101746004356103fb565b005b34801561018257600080fd5b506100e2600160a060020a0360043516602435610408565b3480156101a657600080fd5b506100e26104f7565b3480156101bb57600080fd5b5061010b600160a060020a036004351661059b565b3480156101dc57600080fd5b50610174600160a060020a03600435166024356105b6565b34801561020057600080fd5b506100e2600160a060020a036004351660243561064c565b34801561022457600080fd5b506100e2600160a060020a036004351660243561072b565b34801561024857600080fd5b5061010b600160a060020a03600435811690602435166107c4565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600160a060020a0383166000908152602081905260408120548211156102f457600080fd5b600160a060020a038316151561030957600080fd5b6103116104f7565b6003805460ff1916911515919091179081905560ff16151560011461033557600080fd5b600160a060020a03841660009081526020819052604090205461035e908363ffffffff6107ef16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610393908363ffffffff61080116565b600160a060020a038085166000818152602081815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b60035460ff1681565b6104053382610814565b50565b336000908152600260209081526040808320600160a060020a038616845290915281205480831061045c57336000908152600260209081526040808320600160a060020a0388168452909152812055610491565b61046c818463ffffffff6107ef16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600080600360019054906101000a9004600160a060020a0316905080600160a060020a031663c4e7a2256040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b15801561056957600080fd5b505af115801561057d573d6000803e3d6000fd5b505050506040513d602081101561059357600080fd5b505191505090565b600160a060020a031660009081526020819052604090205490565b600160a060020a03821660009081526002602090815260408083203384529091529020548111156105e657600080fd5b600160a060020a038216600090815260026020908152604080832033845290915290205461061a908263ffffffff6107ef16565b600160a060020a03831660009081526002602090815260408083203384529091529020556106488282610814565b5050565b3360009081526020819052604081205482111561066857600080fd5b600160a060020a038316151561067d57600080fd5b3360009081526020819052604090205461069d908363ffffffff6107ef16565b3360009081526020819052604080822092909255600160a060020a038516815220546106cf908363ffffffff61080116565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205461075f908363ffffffff61080116565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000828211156107fb57fe5b50900390565b8181018281101561080e57fe5b92915050565b600160a060020a03821660009081526020819052604090205481111561083957600080fd5b600160a060020a038216600090815260208190526040902054610862908263ffffffff6107ef16565b600160a060020a03831660009081526020819052604090205560015461088e908263ffffffff6107ef16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350505600a165627a7a723058206983627fa8090eaf31b5000a0cab84b8bb722d17c0c24f3d92dffdcb9dad516d002900000000000000000000000000000000000000000000000000000000000927c0000000000000000000000000521c3cd0b7c97632e5ce5dd3d60600a72eef4a40

Deployed Bytecode

0x6080604052600436106100b95763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663095ea7b381146100be57806318160ddd146100f657806323b872dd1461011d5780633817c86c1461014757806342966c681461015c57806366188463146101765780636bd1c0eb1461019a57806370a08231146101af57806379cc6790146101d0578063a9059cbb146101f4578063d73dd62314610218578063dd62ed3e1461023c575b600080fd5b3480156100ca57600080fd5b506100e2600160a060020a0360043516602435610263565b604080519115158252519081900360200190f35b34801561010257600080fd5b5061010b6102c9565b60408051918252519081900360200190f35b34801561012957600080fd5b506100e2600160a060020a03600435811690602435166044356102cf565b34801561015357600080fd5b506100e26103f2565b34801561016857600080fd5b506101746004356103fb565b005b34801561018257600080fd5b506100e2600160a060020a0360043516602435610408565b3480156101a657600080fd5b506100e26104f7565b3480156101bb57600080fd5b5061010b600160a060020a036004351661059b565b3480156101dc57600080fd5b50610174600160a060020a03600435166024356105b6565b34801561020057600080fd5b506100e2600160a060020a036004351660243561064c565b34801561022457600080fd5b506100e2600160a060020a036004351660243561072b565b34801561024857600080fd5b5061010b600160a060020a03600435811690602435166107c4565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600160a060020a0383166000908152602081905260408120548211156102f457600080fd5b600160a060020a038316151561030957600080fd5b6103116104f7565b6003805460ff1916911515919091179081905560ff16151560011461033557600080fd5b600160a060020a03841660009081526020819052604090205461035e908363ffffffff6107ef16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610393908363ffffffff61080116565b600160a060020a038085166000818152602081815260409182902094909455805186815290519193928816927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019392505050565b60035460ff1681565b6104053382610814565b50565b336000908152600260209081526040808320600160a060020a038616845290915281205480831061045c57336000908152600260209081526040808320600160a060020a0388168452909152812055610491565b61046c818463ffffffff6107ef16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600080600360019054906101000a9004600160a060020a0316905080600160a060020a031663c4e7a2256040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b15801561056957600080fd5b505af115801561057d573d6000803e3d6000fd5b505050506040513d602081101561059357600080fd5b505191505090565b600160a060020a031660009081526020819052604090205490565b600160a060020a03821660009081526002602090815260408083203384529091529020548111156105e657600080fd5b600160a060020a038216600090815260026020908152604080832033845290915290205461061a908263ffffffff6107ef16565b600160a060020a03831660009081526002602090815260408083203384529091529020556106488282610814565b5050565b3360009081526020819052604081205482111561066857600080fd5b600160a060020a038316151561067d57600080fd5b3360009081526020819052604090205461069d908363ffffffff6107ef16565b3360009081526020819052604080822092909255600160a060020a038516815220546106cf908363ffffffff61080116565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205461075f908363ffffffff61080116565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000828211156107fb57fe5b50900390565b8181018281101561080e57fe5b92915050565b600160a060020a03821660009081526020819052604090205481111561083957600080fd5b600160a060020a038216600090815260208190526040902054610862908263ffffffff6107ef16565b600160a060020a03831660009081526020819052604090205560015461088e908263ffffffff6107ef16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a350505600a165627a7a723058206983627fa8090eaf31b5000a0cab84b8bb722d17c0c24f3d92dffdcb9dad516d0029

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

00000000000000000000000000000000000000000000000000000000000927c0000000000000000000000000521c3cd0b7c97632e5ce5dd3d60600a72eef4a40

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 600000
Arg [1] : _authRepoAddress (address): 0x521c3Cd0B7c97632E5Ce5Dd3D60600A72eef4a40

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000927c0
Arg [1] : 000000000000000000000000521c3cd0b7c97632e5ce5dd3d60600a72eef4a40


Deployed Bytecode Sourcemap

169:1471:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1814:188:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1814:188:9;-1:-1:-1;;;;;1814:188:9;;;;;;;;;;;;;;;;;;;;;;;;;380:83:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;380:83:2;;;;;;;;;;;;;;;;;;;;860:778:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;860:778:0;-1:-1:-1;;;;;860:778:0;;;;;;;;;;;;463:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;463:25:0;;;;353:73:3;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;353:73:3;;;;;;;3679:432:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3679:432:9;-1:-1:-1;;;;;3679:432:9;;;;;;;681:173:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;681:173:0;;;;1140:99:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1140:99:2;-1:-1:-1;;;;;1140:99:2;;;;;490:370:8;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;490:370:8;-1:-1:-1;;;;;490:370:8;;;;;;;617:321:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;617:321:2;-1:-1:-1;;;;;617:321:2;;;;;;;2926:296:9;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2926:296:9;-1:-1:-1;;;;;2926:296:9;;;;;;;2321:153;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2321:153:9;-1:-1:-1;;;;;2321:153:9;;;;;;;;;;1814:188;1901:10;1881:4;1893:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;1893:29:9;;;;;;;;;;;:38;;;1942;;;;;;;1881:4;;1893:29;;1901:10;;1942:38;;;;;;;;-1:-1:-1;1993:4:9;1814:188;;;;:::o;380:83:2:-;446:12;;380:83;:::o;860:778:0:-;-1:-1:-1;;;;;1102:15:0;;1064:4;1102:15;;;;;;;;;;;1092:25;;;1084:34;;;;;;-1:-1:-1;;;;;1194:17:0;;;;1186:26;;;;;;1238:18;:16;:18::i;:::-;1222:13;:34;;-1:-1:-1;;1222:34:0;;;;;;;;;;;;;1358:13;:21;;-1:-1:-1;1358:21:0;1350:30;;;;;;-1:-1:-1;;;;;1409:15:0;;:8;:15;;;;;;;;;;;:27;;1429:6;1409:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;1391:15:0;;;:8;:15;;;;;;;;;;;:45;;;;1462:13;;;;;;;:25;;1480:6;1462:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;1446:13:0;;;:8;:13;;;;;;;;;;;;:41;;;;1582:28;;;;;;;1446:13;;1582:28;;;;;;;;;;;;;-1:-1:-1;1627:4:0;860:778;;;;;:::o;463:25::-;;;;;;:::o;353:73:3:-;396:25;402:10;414:6;396:5;:25::i;:::-;353:73;:::o;3679:432:9:-;3826:10;3785:4;3818:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3818:29:9;;;;;;;;;;3857:28;;;3853:165;;3903:10;3927:1;3895:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3895:29:9;;;;;;;;;:33;3853:165;;;3981:30;:8;3994:16;3981:30;:12;:30;:::i;:::-;3957:10;3949:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3949:29:9;;;;;;;;;:62;3853:165;4037:10;4059:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;4028:61:9;;4059:29;;;;;;;;;;;4028:61;;;;;;;;;4037:10;4028:61;;;;;;;;;;;-1:-1:-1;4102:4:9;;3679:432;-1:-1:-1;;;3679:432:9:o;681:173:0:-;725:4;741:25;778:15;;;;;;;;;-1:-1:-1;;;;;778:15:0;741:53;;811:16;-1:-1:-1;;;;;811:34:0;;:36;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;811:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;811:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;811:36:0;;-1:-1:-1;681:173:0;;:::o;1140:99:2:-;-1:-1:-1;;;;;1218:16:2;1196:7;1218:16;;;;;;;;;;;;1140:99::o;490:370:8:-;-1:-1:-1;;;;;570:14:8;;;;;;:7;:14;;;;;;;;585:10;570:26;;;;;;;;560:36;;;552:45;;;;;;-1:-1:-1;;;;;791:14:8;;;;;;:7;:14;;;;;;;;806:10;791:26;;;;;;;;:38;;822:6;791:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;762:14:8;;;;;;:7;:14;;;;;;;;777:10;762:26;;;;;;;:67;835:20;770:5;848:6;835:5;:20::i;:::-;490:370;;:::o;617:321:2:-;719:10;680:4;710:20;;;;;;;;;;;700:30;;;692:39;;;;;;-1:-1:-1;;;;;745:17:2;;;;737:26;;;;;;802:10;793:8;:20;;;;;;;;;;;:32;;818:6;793:32;:24;:32;:::i;:::-;779:10;770:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;847:13:2;;;;;;:25;;865:6;847:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;831:13:2;;:8;:13;;;;;;;;;;;;:41;;;;883:33;;;;;;;831:13;;892:10;;883:33;;;;;;;;;;-1:-1:-1;929:4:2;617:321;;;;:::o;2926:296:9:-;3089:10;3027:4;3081:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3081:29:9;;;;;;;;;;:46;;3115:11;3081:46;:33;:46;:::i;:::-;3049:10;3041:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;3041:29:9;;;;;;;;;;;;:87;;;3139:61;;;;;;3041:29;;3139:61;;;;;;;;;;;-1:-1:-1;3213:4:9;2926:296;;;;:::o;2321:153::-;-1:-1:-1;;;;;2444:15:9;;;2420:7;2444:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;2321:153::o;1060:116:7:-;1120:7;1142:8;;;;1135:16;;;;-1:-1:-1;1164:7:7;;;1060:116::o;1238:128::-;1319:7;;;1339;;;;1332:15;;;;1238:128;;;;:::o;430:438:3:-;-1:-1:-1;;;;;508:14:3;;:8;:14;;;;;;;;;;;498:24;;;490:33;;;;;;-1:-1:-1;;;;;718:14:3;;:8;:14;;;;;;;;;;;:26;;737:6;718:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;701:14:3;;:8;:14;;;;;;;;;;:43;765:12;;:24;;782:6;765:24;:16;:24;:::i;:::-;750:12;:39;800:18;;;;;;;;-1:-1:-1;;;;;800:18:3;;;;;;;;;;;;;829:34;;;;;;;;852:1;;-1:-1:-1;;;;;829:34:3;;;;;;;;;;;;430:438;;:::o

Swarm Source

bzzr://6983627fa8090eaf31b5000a0cab84b8bb722d17c0c24f3d92dffdcb9dad516d
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.