ERC-20
Blockchain
Overview
Max Total Supply
10,000,000,000 ORBS
Holders
8,370 ( 0.060%)
Market
Price
$0.02 @ 0.000010 ETH (-1.37%)
Onchain Market Cap
$248,953,600.00
Circulating Supply Market Cap
$109,491,035.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 ORBSValue
$0.00 ( ~0 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OrbsToken
Compiler Version
v0.4.23+commit.124ca40d
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-05-31 */ pragma solidity 0.4.23; /** * @title Math * @dev Assorted math operations */ library Math { function max64(uint64 a, uint64 b) internal pure returns (uint64) { return a >= b ? a : b; } function min64(uint64 a, uint64 b) internal pure returns (uint64) { return a < b ? a : b; } function max256(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } function min256(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 // uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return a / b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } /** * @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)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } /** * @title Contracts that should be able to recover tokens * @author SylTi * @dev This allow a contract to recover any ERC20 token received in a contract by transferring the balance to the contract owner. * This will prevent any accidental loss of tokens. */ contract CanReclaimToken is Ownable { using SafeERC20 for ERC20Basic; /** * @dev Reclaim all ERC20Basic compatible tokens * @param token ERC20Basic The address of the token contract */ function reclaimToken(ERC20Basic token) external onlyOwner { uint256 balance = token.balanceOf(this); token.safeTransfer(owner, balance); } } /** * @title Contracts that should not own Contracts * @author Remco Bloemen <remco@2π.com> * @dev Should contracts (anything Ownable) end up being owned by this contract, it allows the owner * of this contract to reclaim ownership of the contracts. */ contract HasNoContracts is Ownable { /** * @dev Reclaim ownership of Ownable contracts * @param contractAddr The address of the Ownable to be reclaimed. */ function reclaimContract(address contractAddr) external onlyOwner { Ownable contractInst = Ownable(contractAddr); contractInst.transferOwnership(owner); } } /** * @title Contracts that should not own Tokens * @author Remco Bloemen <remco@2π.com> * @dev This blocks incoming ERC223 tokens to prevent accidental loss of tokens. * Should tokens (any ERC20Basic compatible) end up in the contract, it allows the * owner to reclaim the tokens. */ contract HasNoTokens is CanReclaimToken { /** * @dev Reject all ERC223 compatible tokens * @param from_ address The address that is transferring the tokens * @param value_ uint256 the amount of the specified token * @param data_ Bytes The data passed from the caller. */ function tokenFallback(address from_, uint256 value_, bytes data_) external { from_; value_; data_; revert(); } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256) { return balances[_owner]; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { function safeTransfer(ERC20Basic token, address to, uint256 value) internal { assert(token.transfer(to, value)); } function safeTransferFrom( ERC20 token, address from, address to, uint256 value ) internal { assert(token.transferFrom(from, to, value)); } function safeApprove(ERC20 token, address spender, uint256 value) internal { assert(token.approve(spender, value)); } } contract OrbsToken is HasNoTokens, HasNoContracts, StandardToken { // solhint-disable const-name-snakecase string public constant name = "Orbs"; string public constant symbol = "ORBS"; uint8 public constant decimals = 18; // solhint-enable const-name-snakecase // Total supply of the ORBS token. uint256 public constant TOTAL_SUPPLY = 10 * 10 ** 9 * 10 ** uint256(decimals); // 10B constructor(address _distributor) public { require(_distributor != address(0), "Distributor address must not be 0!"); totalSupply_ = totalSupply_.add(TOTAL_SUPPLY); balances[_distributor] = balances[_distributor].add(TOTAL_SUPPLY); emit Transfer(address(0), _distributor, TOTAL_SUPPLY); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":false,"inputs":[{"name":"token","type":"address"}],"name":"reclaimToken","outputs":[],"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":false,"inputs":[{"name":"contractAddr","type":"address"}],"name":"reclaimContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","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":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"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":"from_","type":"address"},{"name":"value_","type":"uint256"},{"name":"data_","type":"bytes"}],"name":"tokenFallback","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":[{"name":"_distributor","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051602080610dd1833981016040525160008054600160a060020a03191633600160a060020a0390811691909117909155811615156100d857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f4469737472696275746f722061646472657373206d757374206e6f742062652060448201527f3021000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b6002546100fe906b204fce5e3e25026110000000640100000000610bcd6101a382021704565b600255600160a060020a03811660009081526001602052604090205461013d906b204fce5e3e25026110000000640100000000610bcd6101a382021704565b600160a060020a03821660008181526001602090815260408083209490945583516b204fce5e3e2502611000000081529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506101b6565b818101828110156101b057fe5b92915050565b610c0c806101c56000396000f3006080604052600436106100d75763ffffffff60e060020a60003504166306fdde0381146100dc578063095ea7b31461016657806317ffc3201461019e57806318160ddd146101c157806323b872dd146101e85780632aed7f3f14610212578063313ce56714610233578063661884631461025e57806370a08231146102825780638da5cb5b146102a3578063902d55a5146102d457806395d89b41146102e9578063a9059cbb146102fe578063c0ee0b8a14610322578063d73dd62314610353578063dd62ed3e14610377578063f2fde38b1461039e575b600080fd5b3480156100e857600080fd5b506100f16103bf565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012b578181015183820152602001610113565b50505050905090810190601f1680156101585780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561017257600080fd5b5061018a600160a060020a03600435166024356103f6565b604080519115158252519081900360200190f35b3480156101aa57600080fd5b506101bf600160a060020a0360043516610460565b005b3480156101cd57600080fd5b506101d661052a565b60408051918252519081900360200190f35b3480156101f457600080fd5b5061018a600160a060020a0360043581169060243516604435610530565b34801561021e57600080fd5b506101bf600160a060020a03600435166106b2565b34801561023f57600080fd5b50610248610750565b6040805160ff9092168252519081900360200190f35b34801561026a57600080fd5b5061018a600160a060020a0360043516602435610755565b34801561028e57600080fd5b506101d6600160a060020a036004351661084e565b3480156102af57600080fd5b506102b8610869565b60408051600160a060020a039092168252519081900360200190f35b3480156102e057600080fd5b506101d6610878565b3480156102f557600080fd5b506100f1610888565b34801561030a57600080fd5b5061018a600160a060020a03600435166024356108bf565b34801561032e57600080fd5b506101bf60048035600160a060020a03169060248035916044359182019101356100d7565b34801561035f57600080fd5b5061018a600160a060020a03600435166024356109ba565b34801561038357600080fd5b506101d6600160a060020a0360043581169060243516610a5c565b3480156103aa57600080fd5b506101bf600160a060020a0360043516610a87565b60408051808201909152600481527f4f72627300000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260036020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b6000805433600160a060020a0390811691161461047c57600080fd5b81600160a060020a03166370a08231306040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b1580156104d757600080fd5b505af11580156104eb573d6000803e3d6000fd5b505050506040513d602081101561050157600080fd5b505160005490915061052690600160a060020a0384811691168363ffffffff610b1f16565b5050565b60025490565b6000600160a060020a038316151561054757600080fd5b600160a060020a03841660009081526001602052604090205482111561056c57600080fd5b600160a060020a038085166000908152600360209081526040808320339094168352929052205482111561059f57600080fd5b600160a060020a0384166000908152600160205260409020546105c8908363ffffffff610bbb16565b600160a060020a0380861660009081526001602052604080822093909355908516815220546105fd908363ffffffff610bcd16565b600160a060020a03808516600090815260016020908152604080832094909455878316825260038152838220339093168252919091522054610645908363ffffffff610bbb16565b600160a060020a038086166000818152600360209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6000805433600160a060020a039081169116146106ce57600080fd5b5060008054604080517ff2fde38b000000000000000000000000000000000000000000000000000000008152600160a060020a039283166004820152905184939284169263f2fde38b926024808201939182900301818387803b15801561073457600080fd5b505af1158015610748573d6000803e3d6000fd5b505050505050565b601281565b600160a060020a033381166000908152600360209081526040808320938616835292905290812054808311156107b257600160a060020a0333811660009081526003602090815260408083209388168352929052908120556107e9565b6107c2818463ffffffff610bbb16565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b600160a060020a031660009081526001602052604090205490565b600054600160a060020a031681565b6b204fce5e3e2502611000000081565b60408051808201909152600481527f4f52425300000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a03831615156108d657600080fd5b600160a060020a0333166000908152600160205260409020548211156108fb57600080fd5b600160a060020a033316600090815260016020526040902054610924908363ffffffff610bbb16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610959908363ffffffff610bcd16565b600160a060020a038085166000818152600160209081526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600192915050565b600160a060020a0333811660009081526003602090815260408083209386168352929052908120546109f2908363ffffffff610bcd16565b600160a060020a0333811660008181526003602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60005433600160a060020a03908116911614610aa257600080fd5b600160a060020a0381161515610ab757600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b82600160a060020a031663a9059cbb83836040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b158015610b8257600080fd5b505af1158015610b96573d6000803e3d6000fd5b505050506040513d6020811015610bac57600080fd5b50511515610bb657fe5b505050565b600082821115610bc757fe5b50900390565b81810182811015610bda57fe5b929150505600a165627a7a72305820d456147278857dba5d78ddead9c03f950b9e93fc3ba2ffb62fd7b2d4f08fd7ab00290000000000000000000000007e833fec1b6515351885381dd4e29c36555135e8
Deployed Bytecode
0x6080604052600436106100d75763ffffffff60e060020a60003504166306fdde0381146100dc578063095ea7b31461016657806317ffc3201461019e57806318160ddd146101c157806323b872dd146101e85780632aed7f3f14610212578063313ce56714610233578063661884631461025e57806370a08231146102825780638da5cb5b146102a3578063902d55a5146102d457806395d89b41146102e9578063a9059cbb146102fe578063c0ee0b8a14610322578063d73dd62314610353578063dd62ed3e14610377578063f2fde38b1461039e575b600080fd5b3480156100e857600080fd5b506100f16103bf565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561012b578181015183820152602001610113565b50505050905090810190601f1680156101585780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561017257600080fd5b5061018a600160a060020a03600435166024356103f6565b604080519115158252519081900360200190f35b3480156101aa57600080fd5b506101bf600160a060020a0360043516610460565b005b3480156101cd57600080fd5b506101d661052a565b60408051918252519081900360200190f35b3480156101f457600080fd5b5061018a600160a060020a0360043581169060243516604435610530565b34801561021e57600080fd5b506101bf600160a060020a03600435166106b2565b34801561023f57600080fd5b50610248610750565b6040805160ff9092168252519081900360200190f35b34801561026a57600080fd5b5061018a600160a060020a0360043516602435610755565b34801561028e57600080fd5b506101d6600160a060020a036004351661084e565b3480156102af57600080fd5b506102b8610869565b60408051600160a060020a039092168252519081900360200190f35b3480156102e057600080fd5b506101d6610878565b3480156102f557600080fd5b506100f1610888565b34801561030a57600080fd5b5061018a600160a060020a03600435166024356108bf565b34801561032e57600080fd5b506101bf60048035600160a060020a03169060248035916044359182019101356100d7565b34801561035f57600080fd5b5061018a600160a060020a03600435166024356109ba565b34801561038357600080fd5b506101d6600160a060020a0360043581169060243516610a5c565b3480156103aa57600080fd5b506101bf600160a060020a0360043516610a87565b60408051808201909152600481527f4f72627300000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260036020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b6000805433600160a060020a0390811691161461047c57600080fd5b81600160a060020a03166370a08231306040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b1580156104d757600080fd5b505af11580156104eb573d6000803e3d6000fd5b505050506040513d602081101561050157600080fd5b505160005490915061052690600160a060020a0384811691168363ffffffff610b1f16565b5050565b60025490565b6000600160a060020a038316151561054757600080fd5b600160a060020a03841660009081526001602052604090205482111561056c57600080fd5b600160a060020a038085166000908152600360209081526040808320339094168352929052205482111561059f57600080fd5b600160a060020a0384166000908152600160205260409020546105c8908363ffffffff610bbb16565b600160a060020a0380861660009081526001602052604080822093909355908516815220546105fd908363ffffffff610bcd16565b600160a060020a03808516600090815260016020908152604080832094909455878316825260038152838220339093168252919091522054610645908363ffffffff610bbb16565b600160a060020a038086166000818152600360209081526040808320338616845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6000805433600160a060020a039081169116146106ce57600080fd5b5060008054604080517ff2fde38b000000000000000000000000000000000000000000000000000000008152600160a060020a039283166004820152905184939284169263f2fde38b926024808201939182900301818387803b15801561073457600080fd5b505af1158015610748573d6000803e3d6000fd5b505050505050565b601281565b600160a060020a033381166000908152600360209081526040808320938616835292905290812054808311156107b257600160a060020a0333811660009081526003602090815260408083209388168352929052908120556107e9565b6107c2818463ffffffff610bbb16565b600160a060020a033381166000908152600360209081526040808320938916835292905220555b600160a060020a0333811660008181526003602090815260408083209489168084529482529182902054825190815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35060019392505050565b600160a060020a031660009081526001602052604090205490565b600054600160a060020a031681565b6b204fce5e3e2502611000000081565b60408051808201909152600481527f4f52425300000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a03831615156108d657600080fd5b600160a060020a0333166000908152600160205260409020548211156108fb57600080fd5b600160a060020a033316600090815260016020526040902054610924908363ffffffff610bbb16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610959908363ffffffff610bcd16565b600160a060020a038085166000818152600160209081526040918290209490945580518681529051919333909316927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350600192915050565b600160a060020a0333811660009081526003602090815260408083209386168352929052908120546109f2908363ffffffff610bcd16565b600160a060020a0333811660008181526003602090815260408083209489168084529482529182902085905581519485529051929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b600160a060020a03918216600090815260036020908152604080832093909416825291909152205490565b60005433600160a060020a03908116911614610aa257600080fd5b600160a060020a0381161515610ab757600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b82600160a060020a031663a9059cbb83836040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b158015610b8257600080fd5b505af1158015610b96573d6000803e3d6000fd5b505050506040513d6020811015610bac57600080fd5b50511515610bb657fe5b505050565b600082821115610bc757fe5b50900390565b81810182811015610bda57fe5b929150505600a165627a7a72305820d456147278857dba5d78ddead9c03f950b9e93fc3ba2ffb62fd7b2d4f08fd7ab0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007e833fec1b6515351885381dd4e29c36555135e8
-----Decoded View---------------
Arg [0] : _distributor (address): 0x7E833FEc1B6515351885381dd4e29C36555135e8
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007e833fec1b6515351885381dd4e29c36555135e8
Swarm Source
bzzr://d456147278857dba5d78ddead9c03f950b9e93fc3ba2ffb62fd7b2d4f08fd7ab
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.