ETH Price: $3,227.97 (+1.05%)

Token

NSilkRoadCoinToken (NSRC)
 

Overview

Max Total Supply

210,000,000 NSRC

Holders

455

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Balance
122,590,297.187 NSRC

Value
$0.00
0x1ea72729dd9737c3ab62ebf530823806b92b28ee
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:
NSilkRoadCoinToken

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-02-19
*/

pragma solidity ^0.4.18;

// Owned contract
// ----------------------------------------------------------------------------
contract Owned {
    address public owner;
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    function Owned() public {
        owner = msg.sender;
    }

    function changeOwner(address _newOwner) public onlyOwner{
        owner = _newOwner;
    }
}


// Safe maths, borrowed from OpenZeppelin
// ----------------------------------------------------------------------------
library SafeMath {

  function mul(uint a, uint b) internal pure returns (uint) {
    uint c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint a, uint b) internal pure returns (uint) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

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

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

}

contract tokenRecipient {
  function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public;
}

contract ERC20Token {
    /* This is a slight change to the ERC20 base standard.
    function totalSupply() constant returns (uint256 supply);
    is replaced with:
    uint256 public totalSupply;
    This automatically creates a getter function for the totalSupply.
    This is moved to the base contract since public getter functions are not
    currently recognised as an implementation of the matching abstract
    function by the compiler.
    */
    /// total amount of tokens
    uint256 public totalSupply;

    /// @param _owner The address from which the balance will be retrieved
    /// @return The balance
    function balanceOf(address _owner) constant public returns (uint256 balance);

    /// @notice send `_value` token to `_to` from `msg.sender`
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transfer(address _to, uint256 _value) public returns (bool success);

    /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
    /// @param _from The address of the sender
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success);

    /// @notice `msg.sender` approves `_spender` to spend `_value` tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _value The amount of tokens to be approved for transfer
    /// @return Whether the approval was successful or not
    function approve(address _spender, uint256 _value) public returns (bool success);

    /// @param _owner The address of the account owning tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @return Amount of remaining tokens allowed to spent
    function allowance(address _owner, address _spender) constant public returns (uint256 remaining);

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

contract limitedFactor {
    uint256 public FoundationAddressFreezeTime;
    address public FoundationAddress;
    address public TeamAddress;
    modifier FoundationAccountNeedFreezeOneYear(address _address) {
        if(_address == FoundationAddress) {
            require(now >= FoundationAddressFreezeTime + 1 years);
        }
        _;
    }

}
contract standardToken is ERC20Token, limitedFactor {
    mapping (address => uint256) balances;
    mapping (address => mapping (address => uint256)) allowances;

    function balanceOf(address _owner) constant public returns (uint256) {
        return balances[_owner];
    }

    /* Transfers tokens from your address to other */
    function transfer(address _to, uint256 _value) public FoundationAccountNeedFreezeOneYear(msg.sender) returns (bool success) {
        require (balances[msg.sender] >= _value);           // Throw if sender has insufficient balance
        require (balances[_to] + _value >= balances[_to]);  // Throw if owerflow detected
        balances[msg.sender] -= _value;                     // Deduct senders balance
        balances[_to] += _value;                            // Add recivers blaance
        Transfer(msg.sender, _to, _value);                  // Raise Transfer event
        return true;
    }

    /* Approve other address to spend tokens on your account */
    function approve(address _spender, uint256 _value) public returns (bool success) {
        require(balances[msg.sender] >= _value);
        allowances[msg.sender][_spender] = _value;          // Set allowance
        Approval(msg.sender, _spender, _value);             // Raise Approval event
        return true;
    }

    /* Approve and then communicate the approved contract in a single tx */
    function approveAndCall(address _spender, uint256 _value, bytes _extraData) public returns (bool success) {
        tokenRecipient spender = tokenRecipient(_spender);              // Cast spender to tokenRecipient contract
        approve(_spender, _value);                                      // Set approval to contract for _value
        spender.receiveApproval(msg.sender, _value, this, _extraData);  // Raise method on _spender contract
        return true;
    }

    /* A contract attempts to get the coins */
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        require (balances[_from] >= _value);                // Throw if sender does not have enough balance
        require (balances[_to] + _value >= balances[_to]);  // Throw if overflow detected
        require (_value <= allowances[_from][msg.sender]);  // Throw if you do not have allowance
        balances[_from] -= _value;                          // Deduct senders balance
        balances[_to] += _value;                            // Add recipient blaance
        allowances[_from][msg.sender] -= _value;            // Deduct allowance for this address
        Transfer(_from, _to, _value);                       // Raise Transfer event
        return true;
    }

    /* Get the amount of allowed tokens to spend */
    function allowance(address _owner, address _spender) constant public returns (uint256 remaining) {
        return allowances[_owner][_spender];
    }

}

contract NSilkRoadCoinToken is standardToken,Owned {
    using SafeMath for uint;

    string constant public name="NSilkRoadCoinToken";
    string constant public symbol="NSRC";
    uint256 constant public decimals=6;
    
    uint256 public totalSupply = 0;
    uint256 constant public topTotalSupply = 21*10**7*10**decimals;
    uint256 public FoundationSupply = percent(30);
	uint256 public TeamSupply = percent(25);
    uint256 public ownerSupply = topTotalSupply - FoundationSupply - TeamSupply;
    
    /// @dev Fallback to calling deposit when ether is sent directly to contract.
    function() public payable {}
    
    /// @dev initial function
    function NSilkRoadCoinToken() public {
        owner = msg.sender;
        mintTokens(owner, ownerSupply);
    }
    
    /// @dev Issue new tokens
    function mintTokens(address _to, uint256 _amount) internal {
        require (balances[_to] + _amount >= balances[_to]);     // Check for overflows
        balances[_to] = balances[_to].add(_amount);             // Set minted coins to target
        totalSupply = totalSupply.add(_amount);
        require(totalSupply <= topTotalSupply);
        Transfer(0x0, _to, _amount);                            // Create Transfer event from 0x
    }
    
    /// @dev Get time
    function getTime() internal constant returns(uint256) {
        return now;
    }
    
    /// @dev set initial message
    function setInitialVaribles(
        address _FoundationAddress,
        address _TeamAddress
        )
        public
        onlyOwner 
    {
        FoundationAddress = _FoundationAddress;
        TeamAddress = _TeamAddress;
    }
    
    /// @dev withDraw Ether to a Safe Wallet
    function withDraw(address _walletAddress) public payable onlyOwner {
        require (_walletAddress != address(0));
        _walletAddress.transfer(this.balance);
    }
    
    /// @dev allocate Token
    function transferMultiAddress(address[] _recivers, uint256[] _values) public onlyOwner {
        require (_recivers.length == _values.length);
        for(uint256 i = 0; i < _recivers.length ; i++){
            address reciver = _recivers[i];
            uint256 value = _values[i];
            require (balances[msg.sender] >= value);           // Throw if sender has insufficient balance
            require (balances[reciver] + value >= balances[reciver]);  // Throw if owerflow detected
            balances[msg.sender] -= value;                     // Deduct senders balance
            balances[reciver] += value;                            // Add recivers blaance
            Transfer(msg.sender, reciver, value);                  // Raise Transfer event
        }
    }
    
    /// @dev calcute the tokens
    function percent(uint256 percentage) internal pure returns (uint256) {
        return percentage.mul(topTotalSupply).div(100);
    }
    
    /// @dev allocate token for Foundation Address
    function allocateFoundationToken() public onlyOwner {
        require(TeamAddress != address(0));
        require(balances[FoundationAddress] == 0);
        mintTokens(FoundationAddress, FoundationSupply);
        FoundationAddressFreezeTime = now;
    }
    
    /// @dev allocate token for Team Address
    function allocateTeamToken() public onlyOwner {
        require(TeamAddress != address(0));
        require(balances[TeamAddress] == 0);
        mintTokens(TeamAddress, TeamSupply);
    }
}

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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_walletAddress","type":"address"}],"name":"withDraw","outputs":[],"payable":true,"stateMutability":"payable","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ownerSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"allocateFoundationToken","outputs":[],"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":"FoundationSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"_FoundationAddress","type":"address"},{"name":"_TeamAddress","type":"address"}],"name":"setInitialVaribles","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recivers","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"transferMultiAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"allocateTeamToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TeamAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"topTotalSupply","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":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"FoundationAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TeamSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":true,"inputs":[],"name":"FoundationAddressFreezeTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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"}]

6060604052600060075562000023601e64010000000062000d91620000ad82021704565b60085562000040601964010000000062000d91620000ad82021704565b600981905560085465befe6f6720000303600a5534156200006057600080fd5b60068054600160a060020a03338116600160a060020a0319928316811790921690911791829055600a54620000a7929091169064010000000062000cb6620000f082021704565b62000233565b6000620000ea6064620000d58465befe6f67200064010000000062000dc0620001dd82021704565b9064010000000062000de46200020b82021704565b92915050565b600160a060020a03821660009081526004602052604090205481810110156200011857600080fd5b600160a060020a0382166000908152600460205260409020546200014b908264010000000062000d7b6200022382021704565b600160a060020a03831660009081526004602052604090205560075462000181908264010000000062000d7b6200022382021704565b600781905565befe6f6720009011156200019a57600080fd5b81600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b6000828202831580620001fb5750828482811515620001f857fe5b04145b15156200020457fe5b9392505050565b60008082848115156200021a57fe5b04949350505050565b6000828201838110156200020457fe5b610e4780620002436000396000f30060606040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461013f578063095ea7b3146101c95780630a67d2c7146101ff57806318160ddd1461021357806323b872dd1461023857806325f96b73146102605780632ee8dda914610273578063313ce56714610286578063319983f81461029957806370a08231146102ac57806376d260bb146102cb57806379b4a2c7146102f05780637c9677be1461037f5780637ff3366f1461039257806385c09f26146103c15780638da5cb5b146103d457806395d89b41146103e7578063a6f9dae1146103fa578063a9059cbb14610419578063cae9ca511461043b578063ce7ca615146104a0578063dc13352a146104b3578063dd62ed3e146104c6578063fc58edea146104eb575b005b341561014a57600080fd5b6101526104fe565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561018e578082015183820152602001610176565b50505050905090810190601f1680156101bb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101d457600080fd5b6101eb600160a060020a0360043516602435610535565b604051901515815260200160405180910390f35b61013d600160a060020a03600435166105c4565b341561021e57600080fd5b610226610634565b60405190815260200160405180910390f35b341561024357600080fd5b6101eb600160a060020a036004358116906024351660443561063a565b341561026b57600080fd5b610226610736565b341561027e57600080fd5b61013d61073c565b341561029157600080fd5b6102266107b2565b34156102a457600080fd5b6102266107b7565b34156102b757600080fd5b610226600160a060020a03600435166107bd565b34156102d657600080fd5b61013d600160a060020a03600435811690602435166107d8565b34156102fb57600080fd5b61013d60046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061082e95505050505050565b341561038a57600080fd5b61013d61094f565b341561039d57600080fd5b6103a56109c1565b604051600160a060020a03909116815260200160405180910390f35b34156103cc57600080fd5b6102266109d0565b34156103df57600080fd5b6103a56109da565b34156103f257600080fd5b6101526109e9565b341561040557600080fd5b61013d600160a060020a0360043516610a20565b341561042457600080fd5b6101eb600160a060020a0360043516602435610a6a565b341561044657600080fd5b6101eb60048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610b4495505050505050565b34156104ab57600080fd5b6103a5610c70565b34156104be57600080fd5b610226610c7f565b34156104d157600080fd5b610226600160a060020a0360043581169060243516610c85565b34156104f657600080fd5b610226610cb0565b60408051908101604052601281527f4e53696c6b526f6164436f696e546f6b656e0000000000000000000000000000602082015281565b600160a060020a0333166000908152600460205260408120548290101561055b57600080fd5b600160a060020a03338116600081815260056020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60065433600160a060020a039081169116146105df57600080fd5b600160a060020a03811615156105f457600080fd5b80600160a060020a03166108fc30600160a060020a0316319081150290604051600060405180830381858888f19350505050151561063157600080fd5b50565b60075481565b600160a060020a0383166000908152600460205260408120548290101561066057600080fd5b600160a060020a038316600090815260046020526040902054828101101561068757600080fd5b600160a060020a03808516600090815260056020908152604080832033909416835292905220548211156106ba57600080fd5b600160a060020a0380851660008181526004602090815260408083208054889003905587851680845281842080548901905584845260058352818420339096168452949091529081902080548690039055600080516020610dfc8339815191529085905190815260200160405180910390a35060019392505050565b600a5481565b60065433600160a060020a0390811691161461075757600080fd5b600354600160a060020a0316151561076e57600080fd5b600254600160a060020a03166000908152600460205260409020541561079357600080fd5b6002546008546107ac91600160a060020a031690610cb6565b42600155565b600681565b60085481565b600160a060020a031660009081526004602052604090205490565b60065433600160a060020a039081169116146107f357600080fd5b60028054600160a060020a0393841673ffffffffffffffffffffffffffffffffffffffff199182161790915560038054929093169116179055565b6006546000908190819033600160a060020a0390811691161461085057600080fd5b835185511461085e57600080fd5b600092505b84518310156109485784838151811061087857fe5b90602001906020020151915083838151811061089057fe5b90602001906020020151600160a060020a033316600090815260046020526040902054909150819010156108c357600080fd5b600160a060020a03821660009081526004602052604090205481810110156108ea57600080fd5b600160a060020a03338116600081815260046020526040808220805486900390559285168082529083902080548501905591600080516020610dfc8339815191529084905190815260200160405180910390a3600190920191610863565b5050505050565b60065433600160a060020a0390811691161461096a57600080fd5b600354600160a060020a0316151561098157600080fd5b600354600160a060020a0316600090815260046020526040902054156109a657600080fd5b6003546009546109bf91600160a060020a031690610cb6565b565b600354600160a060020a031681565b65befe6f67200081565b600654600160a060020a031681565b60408051908101604052600481527f4e53524300000000000000000000000000000000000000000000000000000000602082015281565b60065433600160a060020a03908116911614610a3b57600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6002546000903390600160a060020a0380831691161415610a9a576001546301e1338001421015610a9a57600080fd5b600160a060020a03331660009081526004602052604090205483901015610ac057600080fd5b600160a060020a0384166000908152600460205260409020548381011015610ae757600080fd5b600160a060020a03338116600081815260046020526040808220805488900390559287168082529083902080548701905591600080516020610dfc8339815191529086905190815260200160405180910390a35060019392505050565b600083610b518185610535565b5080600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610c03578082015183820152602001610beb565b50505050905090810190601f168015610c305780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610c5157600080fd5b6102c65a03f11515610c6257600080fd5b506001979650505050505050565b600254600160a060020a031681565b60095481565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60015481565b600160a060020a0382166000908152600460205260409020548181011015610cdd57600080fd5b600160a060020a038216600090815260046020526040902054610d06908263ffffffff610d7b16565b600160a060020a038316600090815260046020526040902055600754610d32908263ffffffff610d7b16565b600781905565befe6f672000901115610d4a57600080fd5b81600160a060020a03166000600080516020610dfc8339815191528360405190815260200160405180910390a35050565b600082820183811015610d8a57fe5b9392505050565b6000610dba6064610dae8465befe6f67200063ffffffff610dc016565b9063ffffffff610de416565b92915050565b6000828202831580610ddc5750828482811515610dd957fe5b04145b1515610d8a57fe5b6000808284811515610df257fe5b049493505050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820fd70e3f4e27005373fe194db63829d75d8b8ce2291302e315f698da0616066110029

Deployed Bytecode

0x60606040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461013f578063095ea7b3146101c95780630a67d2c7146101ff57806318160ddd1461021357806323b872dd1461023857806325f96b73146102605780632ee8dda914610273578063313ce56714610286578063319983f81461029957806370a08231146102ac57806376d260bb146102cb57806379b4a2c7146102f05780637c9677be1461037f5780637ff3366f1461039257806385c09f26146103c15780638da5cb5b146103d457806395d89b41146103e7578063a6f9dae1146103fa578063a9059cbb14610419578063cae9ca511461043b578063ce7ca615146104a0578063dc13352a146104b3578063dd62ed3e146104c6578063fc58edea146104eb575b005b341561014a57600080fd5b6101526104fe565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561018e578082015183820152602001610176565b50505050905090810190601f1680156101bb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101d457600080fd5b6101eb600160a060020a0360043516602435610535565b604051901515815260200160405180910390f35b61013d600160a060020a03600435166105c4565b341561021e57600080fd5b610226610634565b60405190815260200160405180910390f35b341561024357600080fd5b6101eb600160a060020a036004358116906024351660443561063a565b341561026b57600080fd5b610226610736565b341561027e57600080fd5b61013d61073c565b341561029157600080fd5b6102266107b2565b34156102a457600080fd5b6102266107b7565b34156102b757600080fd5b610226600160a060020a03600435166107bd565b34156102d657600080fd5b61013d600160a060020a03600435811690602435166107d8565b34156102fb57600080fd5b61013d60046024813581810190830135806020818102016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061082e95505050505050565b341561038a57600080fd5b61013d61094f565b341561039d57600080fd5b6103a56109c1565b604051600160a060020a03909116815260200160405180910390f35b34156103cc57600080fd5b6102266109d0565b34156103df57600080fd5b6103a56109da565b34156103f257600080fd5b6101526109e9565b341561040557600080fd5b61013d600160a060020a0360043516610a20565b341561042457600080fd5b6101eb600160a060020a0360043516602435610a6a565b341561044657600080fd5b6101eb60048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610b4495505050505050565b34156104ab57600080fd5b6103a5610c70565b34156104be57600080fd5b610226610c7f565b34156104d157600080fd5b610226600160a060020a0360043581169060243516610c85565b34156104f657600080fd5b610226610cb0565b60408051908101604052601281527f4e53696c6b526f6164436f696e546f6b656e0000000000000000000000000000602082015281565b600160a060020a0333166000908152600460205260408120548290101561055b57600080fd5b600160a060020a03338116600081815260056020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60065433600160a060020a039081169116146105df57600080fd5b600160a060020a03811615156105f457600080fd5b80600160a060020a03166108fc30600160a060020a0316319081150290604051600060405180830381858888f19350505050151561063157600080fd5b50565b60075481565b600160a060020a0383166000908152600460205260408120548290101561066057600080fd5b600160a060020a038316600090815260046020526040902054828101101561068757600080fd5b600160a060020a03808516600090815260056020908152604080832033909416835292905220548211156106ba57600080fd5b600160a060020a0380851660008181526004602090815260408083208054889003905587851680845281842080548901905584845260058352818420339096168452949091529081902080548690039055600080516020610dfc8339815191529085905190815260200160405180910390a35060019392505050565b600a5481565b60065433600160a060020a0390811691161461075757600080fd5b600354600160a060020a0316151561076e57600080fd5b600254600160a060020a03166000908152600460205260409020541561079357600080fd5b6002546008546107ac91600160a060020a031690610cb6565b42600155565b600681565b60085481565b600160a060020a031660009081526004602052604090205490565b60065433600160a060020a039081169116146107f357600080fd5b60028054600160a060020a0393841673ffffffffffffffffffffffffffffffffffffffff199182161790915560038054929093169116179055565b6006546000908190819033600160a060020a0390811691161461085057600080fd5b835185511461085e57600080fd5b600092505b84518310156109485784838151811061087857fe5b90602001906020020151915083838151811061089057fe5b90602001906020020151600160a060020a033316600090815260046020526040902054909150819010156108c357600080fd5b600160a060020a03821660009081526004602052604090205481810110156108ea57600080fd5b600160a060020a03338116600081815260046020526040808220805486900390559285168082529083902080548501905591600080516020610dfc8339815191529084905190815260200160405180910390a3600190920191610863565b5050505050565b60065433600160a060020a0390811691161461096a57600080fd5b600354600160a060020a0316151561098157600080fd5b600354600160a060020a0316600090815260046020526040902054156109a657600080fd5b6003546009546109bf91600160a060020a031690610cb6565b565b600354600160a060020a031681565b65befe6f67200081565b600654600160a060020a031681565b60408051908101604052600481527f4e53524300000000000000000000000000000000000000000000000000000000602082015281565b60065433600160a060020a03908116911614610a3b57600080fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6002546000903390600160a060020a0380831691161415610a9a576001546301e1338001421015610a9a57600080fd5b600160a060020a03331660009081526004602052604090205483901015610ac057600080fd5b600160a060020a0384166000908152600460205260409020548381011015610ae757600080fd5b600160a060020a03338116600081815260046020526040808220805488900390559287168082529083902080548701905591600080516020610dfc8339815191529086905190815260200160405180910390a35060019392505050565b600083610b518185610535565b5080600160a060020a0316638f4ffcb1338630876040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610c03578082015183820152602001610beb565b50505050905090810190601f168015610c305780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610c5157600080fd5b6102c65a03f11515610c6257600080fd5b506001979650505050505050565b600254600160a060020a031681565b60095481565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60015481565b600160a060020a0382166000908152600460205260409020548181011015610cdd57600080fd5b600160a060020a038216600090815260046020526040902054610d06908263ffffffff610d7b16565b600160a060020a038316600090815260046020526040902055600754610d32908263ffffffff610d7b16565b600781905565befe6f672000901115610d4a57600080fd5b81600160a060020a03166000600080516020610dfc8339815191528360405190815260200160405180910390a35050565b600082820183811015610d8a57fe5b9392505050565b6000610dba6064610dae8465befe6f67200063ffffffff610dc016565b9063ffffffff610de416565b92915050565b6000828202831580610ddc5750828482811515610dd957fe5b04145b1515610d8a57fe5b6000808284811515610df257fe5b049493505050505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820fd70e3f4e27005373fe194db63829d75d8b8ce2291302e315f698da0616066110029

Swarm Source

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