ETH Price: $3,281.73 (-3.77%)
Gas: 17 Gwei

Token

Eco Value Coin (EVC)
 

Overview

Max Total Supply

3,300,000,000 EVC

Holders

25,991 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
23,501 EVC

Value
$0.00
0x22050eaff7580a2dffd8a8cc5640eb00d4fea65e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Eco Value Coin is a Blockchain based Carbon Credit token. It will allow individuals, businesses and governments to trade and offset carbon emissions.

ICO Information

ICO Start Date : Mar 24, 2018 
ICO End Date : Jul 30, 2018
ICO Price  : 0.0002173 ETH
Bonus : 10% - 30%
Country : Japan, Hong Kong, Korea

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EcoValueCoin

Compiler Version
v0.4.20+commit.3155dd80

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-03-07
*/

pragma solidity ^0.4.20;

/**
 * @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;
    require(c / a == b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    require(b > 0);
    uint256 c = a / b;
    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) {
    require(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;
    require(c >= a);
    return c;
  }
}

/**
 * @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));
    owner = newOwner;
    OwnershipTransferred(owner, newOwner);
  }
}

contract CutdownTokenInterface {
	//ERC20
  	function balanceOf(address who) public view returns (uint256);
  	function transfer(address to, uint256 value) public returns (bool);

  	//ERC677
  	function tokenFallback(address from, uint256 amount, bytes data) public returns (bool);
}

/**
 * @title Eco Value Coin
 * @dev Burnable ERC20 + ERC677 token with initial transfers blocked
 */
contract EcoValueCoin is Ownable {
  using SafeMath for uint256;

  event Transfer(address indexed _from, address indexed _to, uint256 _value);
  event Approval(address indexed _owner, address indexed _spender, uint256 _value);
  
  event Burn(address indexed _burner, uint256 _value);
  event TransfersEnabled();
  event TransferRightGiven(address indexed _to);
  event TransferRightCancelled(address indexed _from);
  event WithdrawnERC20Tokens(address indexed _tokenContract, address indexed _owner, uint256 _balance);
  event WithdrawnEther(address indexed _owner, uint256 _balance);

  string public constant name = "Eco Value Coin";
  string public constant symbol = "EVC";
  uint256 public constant decimals = 18;
  uint256 public constant initialSupply = 3300000000 * (10 ** decimals);
  uint256 public totalSupply;

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

  //This mapping is used for the token owner and crowdsale contract to 
  //transfer tokens before they are transferable
  mapping(address => bool) public transferGrants;
  //This flag controls the global token transfer
  bool public transferable;

  /**
   * @dev Modifier to check if tokens can be transfered.
   */
  modifier canTransfer() {
    require(transferable || transferGrants[msg.sender]);
    _;
  }

  /**
   * @dev The constructor sets the original `owner` of the contract 
   * to the sender account and assigns them all tokens.
   */
  function EcoValueCoin() public {
    owner = msg.sender;
    totalSupply = initialSupply;
    balances[owner] = totalSupply;
    transferGrants[owner] = true;
  }

  /**
   * @dev This contract does not accept any ether. 
   * Any forced ether can be withdrawn with `withdrawEther()` by the owner.
   */
  function () payable public {
    revert();
  }

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

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

  /**
   * @dev Burns a specific amount of tokens.
   * @param _value The amount of token to be burned.
   */
  function burn(uint256 _value) public {
    require(_value <= balances[msg.sender]);
    address burner = msg.sender;
    balances[burner] = balances[burner].sub(_value);
    totalSupply = totalSupply.sub(_value);
    Burn(burner, _value);
  }

  /**
   * @dev Enables the transfer of tokens for everyone
   */
  function enableTransfers() onlyOwner public {
    require(!transferable);
    transferable = true;
    TransfersEnabled();
  }

  /**
   * @dev Assigns the special transfer right, before transfers are enabled
   * @param _to The address receiving the transfer grant
   */
  function grantTransferRight(address _to) onlyOwner public {
    require(!transferable);
    require(!transferGrants[_to]);
    require(_to != address(0));
    transferGrants[_to] = true;
    TransferRightGiven(_to);
  }

  /**
   * @dev Removes the special transfer right, before transfers are enabled
   * @param _from The address that the transfer grant is removed from
   */
  function cancelTransferRight(address _from) onlyOwner public {
    require(!transferable);
    require(transferGrants[_from]);
    transferGrants[_from] = false;
    TransferRightCancelled(_from);
  }

  /**
   * @dev Allows to transfer out the balance of arbitrary ERC20 tokens from the contract.
   * @param _tokenContract The contract address of the ERC20 token.
   */
  function withdrawERC20Tokens(address _tokenContract) onlyOwner public {
    CutdownTokenInterface token = CutdownTokenInterface(_tokenContract);
    uint256 totalBalance = token.balanceOf(address(this));
    token.transfer(owner, totalBalance);
    WithdrawnERC20Tokens(_tokenContract, owner, totalBalance);
  }

  /**
   * @dev Allows to transfer out the ether balance that was forced into this contract, e.g with `selfdestruct`
   */
  function withdrawEther() public onlyOwner {
    uint256 totalBalance = this.balance;
    require(totalBalance > 0);
    owner.transfer(totalBalance);
    WithdrawnEther(owner, totalBalance);
  }
}

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":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"transferGrants","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":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"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":"_tokenContract","type":"address"}],"name":"withdrawERC20Tokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"}],"name":"cancelTransferRight","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdrawEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"}],"name":"grantTransferRight","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":"transferable","outputs":[{"name":"","type":"bool"}],"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":"enableTransfers","outputs":[],"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"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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":"_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":"_burner","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[],"name":"TransfersEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"}],"name":"TransferRightGiven","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"}],"name":"TransferRightCancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_tokenContract","type":"address"},{"indexed":true,"name":"_owner","type":"address"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"WithdrawnERC20Tokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"WithdrawnEther","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

6060604052341561000f57600080fd5b60008054600160a060020a03338116600160a060020a031992831681179092169091178083556b0aa9b22e75c9a72f6400000060018181559183168452600260209081526040808620929092558454909316845260049092529120805460ff1916909117905561108a806100846000396000f3006060604052600436106101195763ffffffff60e060020a60003504166306fdde03811461011e578063095ea7b3146101a857806318160ddd146101de57806322cd8e9b1461020357806323b872dd1461022257806327e235e31461024a578063313ce56714610269578063378dc3dc1461027c57806342966c681461028f5780634ff7ff32146102a7578063566038fb146102c657806366188463146102e557806370a08231146103075780637362377b146103265780637627c9ad146103395780638da5cb5b1461035857806392ff0d311461038757806395d89b411461039a578063a9059cbb146103ad578063af35c6c7146103cf578063d73dd623146103e2578063dd62ed3e14610404578063f2fde38b14610429575b600080fd5b341561012957600080fd5b610131610448565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561016d578082015183820152602001610155565b50505050905090810190601f16801561019a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101b357600080fd5b6101ca600160a060020a036004351660243561047f565b604051901515815260200160405180910390f35b34156101e957600080fd5b6101f161051f565b60405190815260200160405180910390f35b341561020e57600080fd5b6101ca600160a060020a0360043516610525565b341561022d57600080fd5b6101ca600160a060020a036004358116906024351660443561053a565b341561025557600080fd5b6101f1600160a060020a03600435166106f1565b341561027457600080fd5b6101f1610703565b341561028757600080fd5b6101f1610708565b341561029a57600080fd5b6102a5600435610718565b005b34156102b257600080fd5b6102a5600160a060020a03600435166107d2565b34156102d157600080fd5b6102a5600160a060020a036004351661092f565b34156102f057600080fd5b6101ca600160a060020a03600435166024356109d1565b341561031257600080fd5b6101f1600160a060020a0360043516610b03565b341561033157600080fd5b6102a5610b1e565b341561034457600080fd5b6102a5600160a060020a0360043516610bc7565b341561036357600080fd5b61036b610c80565b604051600160a060020a03909116815260200160405180910390f35b341561039257600080fd5b6101ca610c8f565b34156103a557600080fd5b610131610c98565b34156103b857600080fd5b6101ca600160a060020a0360043516602435610ccf565b34156103da57600080fd5b6102a5610dff565b34156103ed57600080fd5b6101ca600160a060020a0360043516602435610e65565b341561040f57600080fd5b6101f1600160a060020a0360043581169060243516610f3e565b341561043457600080fd5b6102a5600160a060020a0360043516610fa1565b60408051908101604052600e81527f45636f2056616c756520436f696e000000000000000000000000000000000000602082015281565b60055460009060ff16806104ab5750600160a060020a03331660009081526004602052604090205460ff165b15156104b657600080fd5b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60015481565b60046020526000908152604090205460ff1681565b60055460009060ff16806105665750600160a060020a03331660009081526004602052604090205460ff165b151561057157600080fd5b600160a060020a038316151561058657600080fd5b600160a060020a0384166000908152600260205260409020548211156105ab57600080fd5b600160a060020a03808516600090815260036020908152604080832033909416835292905220548211156105de57600080fd5b600160a060020a038416600090815260026020526040902054610607908363ffffffff61103016565b600160a060020a03808616600090815260026020526040808220939093559085168152205461063c908363ffffffff61104516565b600160a060020a03808516600090815260026020908152604080832094909455878316825260038152838220339093168252919091522054610684908363ffffffff61103016565b600160a060020a03808616600081815260036020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60026020526000908152604090205481565b601281565b6b0aa9b22e75c9a72f6400000081565b600160a060020a03331660009081526002602052604081205482111561073d57600080fd5b5033600160a060020a0381166000908152600260205260409020546107629083611030565b600160a060020a03821660009081526002602052604090205560015461078e908363ffffffff61103016565b600155600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b60008054819033600160a060020a039081169116146107f057600080fd5b82915081600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561084a57600080fd5b6102c65a03f1151561085b57600080fd5b505050604051805160008054919350600160a060020a03808616935063a9059cbb92169084906040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b15156108cb57600080fd5b6102c65a03f115156108dc57600080fd5b50505060405180515050600054600160a060020a039081169084167f340399c867affe8af8b81c9c8909476fe09e7810cea1aa1bd70f9b0b465a09cb8360405190815260200160405180910390a3505050565b60005433600160a060020a0390811691161461094a57600080fd5b60055460ff161561095a57600080fd5b600160a060020a03811660009081526004602052604090205460ff16151561098157600080fd5b600160a060020a03811660008181526004602052604090819020805460ff191690557f865f9a3e5acb369194fb814788e7cdd5ad14d8def9907065e4fbb5fcf2d49007905160405180910390a250565b600554600090819060ff16806109ff5750600160a060020a03331660009081526004602052604090205460ff165b1515610a0a57600080fd5b50600160a060020a0333811660009081526003602090815260408083209387168352929052205480831115610a6657600160a060020a033381166000908152600360209081526040808320938816835292905290812055610a9d565b610a76818463ffffffff61103016565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526002602052604090205490565b6000805433600160a060020a03908116911614610b3a57600080fd5b50600160a060020a0330163160008111610b5357600080fd5b600054600160a060020a031681156108fc0282604051600060405180830381858888f193505050501515610b8657600080fd5b600054600160a060020a03167e427c0f965e4f144086694ed3a411df394e3dfa51cf4e74d9a70375bab91bb08260405190815260200160405180910390a250565b60005433600160a060020a03908116911614610be257600080fd5b60055460ff1615610bf257600080fd5b600160a060020a03811660009081526004602052604090205460ff1615610c1857600080fd5b600160a060020a0381161515610c2d57600080fd5b600160a060020a03811660008181526004602052604090819020805460ff191660011790557f50af31608823996ca2e3de4556476c372e2e6a6bdcc15d9f5c62ffcb412befdd905160405180910390a250565b600054600160a060020a031681565b60055460ff1681565b60408051908101604052600381527f4556430000000000000000000000000000000000000000000000000000000000602082015281565b60055460009060ff1680610cfb5750600160a060020a03331660009081526004602052604090205460ff165b1515610d0657600080fd5b600160a060020a0383161515610d1b57600080fd5b600160a060020a033316600090815260026020526040902054821115610d4057600080fd5b600160a060020a033316600090815260026020526040902054610d69908363ffffffff61103016565b600160a060020a033381166000908152600260205260408082209390935590851681522054610d9e908363ffffffff61104516565b600160a060020a0380851660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60005433600160a060020a03908116911614610e1a57600080fd5b60055460ff1615610e2a57600080fd5b6005805460ff191660011790557feadb24812ab3c9a55c774958184293ebdb6c7f6a2dbab11f397d80c86feb65d360405160405180910390a1565b60055460009060ff1680610e915750600160a060020a03331660009081526004602052604090205460ff165b1515610e9c57600080fd5b600160a060020a03338116600090815260036020908152604080832093871683529290522054610ed2908363ffffffff61104516565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60055460009060ff1680610f6a5750600160a060020a03331660009081526004602052604090205460ff165b1515610f7557600080fd5b50600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60005433600160a060020a03908116911614610fbc57600080fd5b600160a060020a0381161515610fd157600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03838116918217928390559091167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b60008282111561103f57600080fd5b50900390565b60008282018381101561105757600080fd5b93925050505600a165627a7a72305820889c3d013ad72dd0446bec6391d2cf0c72d63b3fc932b837868f50552c2ac8980029

Deployed Bytecode

0x6060604052600436106101195763ffffffff60e060020a60003504166306fdde03811461011e578063095ea7b3146101a857806318160ddd146101de57806322cd8e9b1461020357806323b872dd1461022257806327e235e31461024a578063313ce56714610269578063378dc3dc1461027c57806342966c681461028f5780634ff7ff32146102a7578063566038fb146102c657806366188463146102e557806370a08231146103075780637362377b146103265780637627c9ad146103395780638da5cb5b1461035857806392ff0d311461038757806395d89b411461039a578063a9059cbb146103ad578063af35c6c7146103cf578063d73dd623146103e2578063dd62ed3e14610404578063f2fde38b14610429575b600080fd5b341561012957600080fd5b610131610448565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561016d578082015183820152602001610155565b50505050905090810190601f16801561019a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101b357600080fd5b6101ca600160a060020a036004351660243561047f565b604051901515815260200160405180910390f35b34156101e957600080fd5b6101f161051f565b60405190815260200160405180910390f35b341561020e57600080fd5b6101ca600160a060020a0360043516610525565b341561022d57600080fd5b6101ca600160a060020a036004358116906024351660443561053a565b341561025557600080fd5b6101f1600160a060020a03600435166106f1565b341561027457600080fd5b6101f1610703565b341561028757600080fd5b6101f1610708565b341561029a57600080fd5b6102a5600435610718565b005b34156102b257600080fd5b6102a5600160a060020a03600435166107d2565b34156102d157600080fd5b6102a5600160a060020a036004351661092f565b34156102f057600080fd5b6101ca600160a060020a03600435166024356109d1565b341561031257600080fd5b6101f1600160a060020a0360043516610b03565b341561033157600080fd5b6102a5610b1e565b341561034457600080fd5b6102a5600160a060020a0360043516610bc7565b341561036357600080fd5b61036b610c80565b604051600160a060020a03909116815260200160405180910390f35b341561039257600080fd5b6101ca610c8f565b34156103a557600080fd5b610131610c98565b34156103b857600080fd5b6101ca600160a060020a0360043516602435610ccf565b34156103da57600080fd5b6102a5610dff565b34156103ed57600080fd5b6101ca600160a060020a0360043516602435610e65565b341561040f57600080fd5b6101f1600160a060020a0360043581169060243516610f3e565b341561043457600080fd5b6102a5600160a060020a0360043516610fa1565b60408051908101604052600e81527f45636f2056616c756520436f696e000000000000000000000000000000000000602082015281565b60055460009060ff16806104ab5750600160a060020a03331660009081526004602052604090205460ff165b15156104b657600080fd5b600160a060020a03338116600081815260036020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60015481565b60046020526000908152604090205460ff1681565b60055460009060ff16806105665750600160a060020a03331660009081526004602052604090205460ff165b151561057157600080fd5b600160a060020a038316151561058657600080fd5b600160a060020a0384166000908152600260205260409020548211156105ab57600080fd5b600160a060020a03808516600090815260036020908152604080832033909416835292905220548211156105de57600080fd5b600160a060020a038416600090815260026020526040902054610607908363ffffffff61103016565b600160a060020a03808616600090815260026020526040808220939093559085168152205461063c908363ffffffff61104516565b600160a060020a03808516600090815260026020908152604080832094909455878316825260038152838220339093168252919091522054610684908363ffffffff61103016565b600160a060020a03808616600081815260036020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60026020526000908152604090205481565b601281565b6b0aa9b22e75c9a72f6400000081565b600160a060020a03331660009081526002602052604081205482111561073d57600080fd5b5033600160a060020a0381166000908152600260205260409020546107629083611030565b600160a060020a03821660009081526002602052604090205560015461078e908363ffffffff61103016565b600155600160a060020a0381167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58360405190815260200160405180910390a25050565b60008054819033600160a060020a039081169116146107f057600080fd5b82915081600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561084a57600080fd5b6102c65a03f1151561085b57600080fd5b505050604051805160008054919350600160a060020a03808616935063a9059cbb92169084906040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b15156108cb57600080fd5b6102c65a03f115156108dc57600080fd5b50505060405180515050600054600160a060020a039081169084167f340399c867affe8af8b81c9c8909476fe09e7810cea1aa1bd70f9b0b465a09cb8360405190815260200160405180910390a3505050565b60005433600160a060020a0390811691161461094a57600080fd5b60055460ff161561095a57600080fd5b600160a060020a03811660009081526004602052604090205460ff16151561098157600080fd5b600160a060020a03811660008181526004602052604090819020805460ff191690557f865f9a3e5acb369194fb814788e7cdd5ad14d8def9907065e4fbb5fcf2d49007905160405180910390a250565b600554600090819060ff16806109ff5750600160a060020a03331660009081526004602052604090205460ff165b1515610a0a57600080fd5b50600160a060020a0333811660009081526003602090815260408083209387168352929052205480831115610a6657600160a060020a033381166000908152600360209081526040808320938816835292905290812055610a9d565b610a76818463ffffffff61103016565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526002602052604090205490565b6000805433600160a060020a03908116911614610b3a57600080fd5b50600160a060020a0330163160008111610b5357600080fd5b600054600160a060020a031681156108fc0282604051600060405180830381858888f193505050501515610b8657600080fd5b600054600160a060020a03167e427c0f965e4f144086694ed3a411df394e3dfa51cf4e74d9a70375bab91bb08260405190815260200160405180910390a250565b60005433600160a060020a03908116911614610be257600080fd5b60055460ff1615610bf257600080fd5b600160a060020a03811660009081526004602052604090205460ff1615610c1857600080fd5b600160a060020a0381161515610c2d57600080fd5b600160a060020a03811660008181526004602052604090819020805460ff191660011790557f50af31608823996ca2e3de4556476c372e2e6a6bdcc15d9f5c62ffcb412befdd905160405180910390a250565b600054600160a060020a031681565b60055460ff1681565b60408051908101604052600381527f4556430000000000000000000000000000000000000000000000000000000000602082015281565b60055460009060ff1680610cfb5750600160a060020a03331660009081526004602052604090205460ff165b1515610d0657600080fd5b600160a060020a0383161515610d1b57600080fd5b600160a060020a033316600090815260026020526040902054821115610d4057600080fd5b600160a060020a033316600090815260026020526040902054610d69908363ffffffff61103016565b600160a060020a033381166000908152600260205260408082209390935590851681522054610d9e908363ffffffff61104516565b600160a060020a0380851660008181526002602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60005433600160a060020a03908116911614610e1a57600080fd5b60055460ff1615610e2a57600080fd5b6005805460ff191660011790557feadb24812ab3c9a55c774958184293ebdb6c7f6a2dbab11f397d80c86feb65d360405160405180910390a1565b60055460009060ff1680610e915750600160a060020a03331660009081526004602052604090205460ff165b1515610e9c57600080fd5b600160a060020a03338116600090815260036020908152604080832093871683529290522054610ed2908363ffffffff61104516565b600160a060020a0333811660008181526003602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60055460009060ff1680610f6a5750600160a060020a03331660009081526004602052604090205460ff165b1515610f7557600080fd5b50600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60005433600160a060020a03908116911614610fbc57600080fd5b600160a060020a0381161515610fd157600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03838116918217928390559091167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b60008282111561103f57600080fd5b50900390565b60008282018381101561105757600080fd5b93925050505600a165627a7a72305820889c3d013ad72dd0446bec6391d2cf0c72d63b3fc932b837868f50552c2ac8980029

Swarm Source

bzzr://889c3d013ad72dd0446bec6391d2cf0c72d63b3fc932b837868f50552c2ac898
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.