ETH Price: $2,599.47 (+1.58%)
Gas: 2 Gwei

Token

XZEN Pre (XZNP)
 

Overview

Max Total Supply

55,000,000 XZNP

Holders

106

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
46.999999999999671 XZNP

Value
$0.00
0x6be58d9bbfd41194469f95eb2fcc244f7a2a1822
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:
XZEN

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2017-11-12
*/

pragma solidity ^0.4.16;

/**
 * Welcome to the Telegram chat http://www.devsolidity.io/
 */

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
 
library SafeMath {
  function mul(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint256 a, uint256 b) internal constant 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 constant returns (uint256) {
    assert(b <= a);
    return a - b;
  }

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

contract Token {
    uint256 public totalSupply;
    function balanceOf(address who) public constant returns (uint256);
    function transfer(address to, uint256 value) public returns (bool);
    function allowance(address owner, address spender) public constant returns (uint256);
    function transferFrom(address from, address to, uint256 value) public returns (bool);
    function approve(address spender, uint256 value) public returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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


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

}

contract StandardToken is Token, Ownable {
    using SafeMath for uint256;
    mapping (address => mapping (address => uint256)) internal allowed;

  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);
    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 constant returns (uint256 balance) {
    return balances[_owner];
  }


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    Transfer(_from, _to, _value);
    return true;
  }

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

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) public constant returns (uint256 remaining) {
    return allowed[_owner][_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
   */
  function increaseApproval (address _spender, uint _addedValue) public returns (bool success) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  function decreaseApproval (address _spender, uint _subtractedValue) public returns (bool success) {
    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;
  }

}

contract XZEN is StandardToken {
    using SafeMath for uint256;

    string public constant name = "XZEN PreToken";
    string public constant symbol = "XZNP";
    uint256 public constant decimals = 18;
    uint256 public constant tokenCreationCapPreICO =  55000000*10**decimals;
    address public multiSigWallet = 0x51cf183cbe4e4c80297c49ff5017770fdd95c06d;
    address public teamWallet = 0x2BeB722Dc6E80D0C61e63240ca44B8a6D538e3Ae;

    // 1 ETH = 300 , 1 token = 0.01 USD Date: 13.11.2017
    uint public oneTokenInWei = 31847133757962;
    uint startDate = 1510592400;

    function XZEN() {
        owner = teamWallet;
        balances[teamWallet] = 55000000*10**decimals;
        totalSupply = totalSupply.add(balances[teamWallet]);
        Transfer(0x0, teamWallet, balances[teamWallet]);
    }

    function () payable {
        createTokens();
    }

    function createTokens() internal  {
        uint multiplier = 10 ** decimals;
        uint256 tokens = (msg.value.mul(multiplier) / oneTokenInWei);
        // First day bonus 5%
        if(now <= startDate + 1 days) {
            tokens += tokens / 100 * 5;  
        }
        if (balances[teamWallet] < tokens) revert();
        balances[teamWallet] -= tokens;        
        balances[msg.sender] += tokens;
        
        // send eth to multiSigWallet
        multiSigWallet.transfer(msg.value);
        Transfer(teamWallet, msg.sender, tokens);
    }

    function setEthPrice(uint _tokenPrice) external onlyOwner {
        oneTokenInWei = _tokenPrice;
    }
    
    function replaceMultisig(address newMultisig) external onlyOwner {
        multiSigWallet = newMultisig;
    }

}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"_tokenPrice","type":"uint256"}],"name":"setEthPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"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":true,"inputs":[],"name":"multiSigWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"teamWallet","outputs":[{"name":"","type":"address"}],"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":"oneTokenInWei","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenCreationCapPreICO","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"newMultisig","type":"address"}],"name":"replaceMultisig","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","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"}]

606060405260048054600160a060020a03199081167351cf183cbe4e4c80297c49ff5017770fdd95c06d1790915560058054909116732beb722dc6e80d0c61e63240ca44b8a6d538e3ae179055651cf6fd18420a600655635a09cf90600755341561006957600080fd5b6001805460058054600160a060020a03338116600160a060020a0319948516179093169083169081179093556000928352600360205260408084206a2d7eb3f96e070d9700000090559054909116825281205490546100d491640100000000610b5d61012c82021704565b6000908155600554600160a060020a031680825260036020526040808320549192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef915190815260200160405180910390a3610142565b60008282018381101561013b57fe5b9392505050565b610b98806101516000396000f3006060604052600436106101055763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416629f9262811461010f57806306fdde0314610125578063095ea7b3146101af57806318160ddd146101e557806323b872dd1461020a578063313ce567146102325780634b8feb4f146102455780635992704414610274578063661884631461028757806370a08231146102a957806384e3ac94146102c8578063852da11d146102db5780638da5cb5b146102ee57806395d89b4114610301578063a882d49f14610314578063a9059cbb14610333578063d73dd62314610355578063dd62ed3e14610377578063f2fde38b1461039c575b61010d6103bb565b005b341561011a57600080fd5b61010d6004356104cf565b341561013057600080fd5b6101386104ef565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017457808201518382015260200161015c565b50505050905090810190601f1680156101a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101ba57600080fd5b6101d1600160a060020a0360043516602435610526565b604051901515815260200160405180910390f35b34156101f057600080fd5b6101f8610592565b60405190815260200160405180910390f35b341561021557600080fd5b6101d1600160a060020a0360043581169060243516604435610598565b341561023d57600080fd5b6101f861071a565b341561025057600080fd5b61025861071f565b604051600160a060020a03909116815260200160405180910390f35b341561027f57600080fd5b61025861072e565b341561029257600080fd5b6101d1600160a060020a036004351660243561073d565b34156102b457600080fd5b6101f8600160a060020a0360043516610837565b34156102d357600080fd5b6101f8610852565b34156102e657600080fd5b6101f8610858565b34156102f957600080fd5b610258610867565b341561030c57600080fd5b610138610876565b341561031f57600080fd5b61010d600160a060020a03600435166108ad565b341561033e57600080fd5b6101d1600160a060020a03600435166024356108f7565b341561036057600080fd5b6101d1600160a060020a03600435166024356109f2565b341561038257600080fd5b6101f8600160a060020a0360043581169060243516610a96565b34156103a757600080fd5b61010d600160a060020a0360043516610ac1565b600654670de0b6b3a7640000906000906103db348463ffffffff610b2016565b8115156103e457fe5b0490506007546201518001421115156104005760648104600502015b600554600160a060020a03166000908152600360205260409020548190101561042857600080fd5b600554600160a060020a0390811660009081526003602052604080822080548590039055338316825290819020805484019055600454909116903480156108fc029151600060405180830381858888f19350505050151561048857600080fd5b600554600160a060020a0333811691167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b60015433600160a060020a039081169116146104ea57600080fd5b600655565b60408051908101604052600d81527f585a454e20507265546f6b656e00000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b6000600160a060020a03831615156105af57600080fd5b600160a060020a0384166000908152600360205260409020548211156105d457600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561060757600080fd5b600160a060020a038416600090815260036020526040902054610630908363ffffffff610b4b16565b600160a060020a038086166000908152600360205260408082209390935590851681522054610665908363ffffffff610b5d16565b600160a060020a038085166000908152600360209081526040808320949094558783168252600281528382203390931682529190915220546106ad908363ffffffff610b4b16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b601281565b600454600160a060020a031681565b600554600160a060020a031681565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561079a57600160a060020a0333811660009081526002602090815260408083209388168352929052908120556107d1565b6107aa818463ffffffff610b4b16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526003602052604090205490565b60065481565b6a2d7eb3f96e070d9700000081565b600154600160a060020a031681565b60408051908101604052600481527f585a4e5000000000000000000000000000000000000000000000000000000000602082015281565b60015433600160a060020a039081169116146108c857600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160a060020a038316151561090e57600080fd5b600160a060020a03331660009081526003602052604090205482111561093357600080fd5b600160a060020a03331660009081526003602052604090205461095c908363ffffffff610b4b16565b600160a060020a033381166000908152600360205260408082209390935590851681522054610991908363ffffffff610b5d16565b600160a060020a0380851660008181526003602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610a2a908363ffffffff610b5d16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60015433600160a060020a03908116911614610adc57600080fd5b600160a060020a0381161515610af157600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000828202831580610b3c5750828482811515610b3957fe5b04145b1515610b4457fe5b9392505050565b600082821115610b5757fe5b50900390565b600082820183811015610b4457fe00a165627a7a723058206d58ff757d5c50dd3ae2935442890900d228217475dc349e79e346d24b7645c50029

Deployed Bytecode

0x6060604052600436106101055763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416629f9262811461010f57806306fdde0314610125578063095ea7b3146101af57806318160ddd146101e557806323b872dd1461020a578063313ce567146102325780634b8feb4f146102455780635992704414610274578063661884631461028757806370a08231146102a957806384e3ac94146102c8578063852da11d146102db5780638da5cb5b146102ee57806395d89b4114610301578063a882d49f14610314578063a9059cbb14610333578063d73dd62314610355578063dd62ed3e14610377578063f2fde38b1461039c575b61010d6103bb565b005b341561011a57600080fd5b61010d6004356104cf565b341561013057600080fd5b6101386104ef565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561017457808201518382015260200161015c565b50505050905090810190601f1680156101a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101ba57600080fd5b6101d1600160a060020a0360043516602435610526565b604051901515815260200160405180910390f35b34156101f057600080fd5b6101f8610592565b60405190815260200160405180910390f35b341561021557600080fd5b6101d1600160a060020a0360043581169060243516604435610598565b341561023d57600080fd5b6101f861071a565b341561025057600080fd5b61025861071f565b604051600160a060020a03909116815260200160405180910390f35b341561027f57600080fd5b61025861072e565b341561029257600080fd5b6101d1600160a060020a036004351660243561073d565b34156102b457600080fd5b6101f8600160a060020a0360043516610837565b34156102d357600080fd5b6101f8610852565b34156102e657600080fd5b6101f8610858565b34156102f957600080fd5b610258610867565b341561030c57600080fd5b610138610876565b341561031f57600080fd5b61010d600160a060020a03600435166108ad565b341561033e57600080fd5b6101d1600160a060020a03600435166024356108f7565b341561036057600080fd5b6101d1600160a060020a03600435166024356109f2565b341561038257600080fd5b6101f8600160a060020a0360043581169060243516610a96565b34156103a757600080fd5b61010d600160a060020a0360043516610ac1565b600654670de0b6b3a7640000906000906103db348463ffffffff610b2016565b8115156103e457fe5b0490506007546201518001421115156104005760648104600502015b600554600160a060020a03166000908152600360205260409020548190101561042857600080fd5b600554600160a060020a0390811660009081526003602052604080822080548590039055338316825290819020805484019055600454909116903480156108fc029151600060405180830381858888f19350505050151561048857600080fd5b600554600160a060020a0333811691167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b60015433600160a060020a039081169116146104ea57600080fd5b600655565b60408051908101604052600d81527f585a454e20507265546f6b656e00000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b6000600160a060020a03831615156105af57600080fd5b600160a060020a0384166000908152600360205260409020548211156105d457600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561060757600080fd5b600160a060020a038416600090815260036020526040902054610630908363ffffffff610b4b16565b600160a060020a038086166000908152600360205260408082209390935590851681522054610665908363ffffffff610b5d16565b600160a060020a038085166000908152600360209081526040808320949094558783168252600281528382203390931682529190915220546106ad908363ffffffff610b4b16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b601281565b600454600160a060020a031681565b600554600160a060020a031681565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561079a57600160a060020a0333811660009081526002602090815260408083209388168352929052908120556107d1565b6107aa818463ffffffff610b4b16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526003602052604090205490565b60065481565b6a2d7eb3f96e070d9700000081565b600154600160a060020a031681565b60408051908101604052600481527f585a4e5000000000000000000000000000000000000000000000000000000000602082015281565b60015433600160a060020a039081169116146108c857600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160a060020a038316151561090e57600080fd5b600160a060020a03331660009081526003602052604090205482111561093357600080fd5b600160a060020a03331660009081526003602052604090205461095c908363ffffffff610b4b16565b600160a060020a033381166000908152600360205260408082209390935590851681522054610991908363ffffffff610b5d16565b600160a060020a0380851660008181526003602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610a2a908363ffffffff610b5d16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60015433600160a060020a03908116911614610adc57600080fd5b600160a060020a0381161515610af157600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000828202831580610b3c5750828482811515610b3957fe5b04145b1515610b4457fe5b9392505050565b600082821115610b5757fe5b50900390565b600082820183811015610b4457fe00a165627a7a723058206d58ff757d5c50dd3ae2935442890900d228217475dc349e79e346d24b7645c50029

Swarm Source

bzzr://6d58ff757d5c50dd3ae2935442890900d228217475dc349e79e346d24b7645c5
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.