ETH Price: $3,442.64 (-1.10%)
Gas: 7 Gwei

Token

Retro Block Token 2 (RTB2)
 

Overview

Max Total Supply

700 RTB2

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
2 RTB2

Value
$0.00
0xff0719687738c1e7fce3c50ee53140fcc56a5791
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:
RTB2

Compiler Version
v0.4.23+commit.124ca40d

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.23;

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

     /**
     * @dev x to the power of y 
     */
    function pwr(uint256 x, uint256 y)
        internal 
        pure 
        returns (uint256)
    {
        if (x==0)
            return (0);
        else if (y==0)
            return (1);
        else{
            uint256 z = x;
            for (uint256 i = 1; i < y; i++)
                z = mul(z,x);
            return (z);
        }
    }
}

interface shareProfit {
    function increaseProfit() external payable returns(bool);
}

contract RTB2 is shareProfit {
    using SafeMath for uint256;

    uint8 public decimals = 0;
    uint256 public totalSupply = 700;                                            
    uint256 public totalSold = 0;
    uint256 public constant price = 1 ether;
    string public name = "Retro Block Token 2";
    string public symbol = "RTB2";
    address public owner;
    address public finance;
    
    mapping (address=>uint256) received;
    uint256 profit;
    address public jackpot;
    shareProfit public shareContract;
    mapping (address=>uint256) changeProfit;

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

    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    event AddProfit(address indexed _from, uint256 _value, uint256 _newProfit);
    event Withdraw(address indexed _addr, uint256 _value);
    
    modifier onlyOwner() {
        require(msg.sender == owner, "only owner");
        _;
    }
    
    modifier onlyHuman() {
        address _addr = msg.sender;
        uint256 _codeLength;
        
        assembly {_codeLength := extcodesize(_addr)}
        require(_codeLength == 0, "sorry humans only");
        _;
    }
    
    constructor(address _shareAddr) public {
        owner = msg.sender;
        finance = 0x28Dd611d5d2cAA117239bD3f3A548DcE5Fa873b0;
        jackpot = 0x119ea7f823588D2Db81d86cEFe4F3BE25e4C34DC;
        shareContract = shareProfit(_shareAddr);
        balances[this] = 700;
    }

    function() public payable {
        require(msg.value > 0, "Amount must be provided");
        profit = msg.value.div(totalSupply).add(profit);
        emit AddProfit(msg.sender, msg.value, profit);
    }
    
    function increaseProfit() external payable returns(bool){
        if(msg.value > 0){
            profit = msg.value.div(totalSupply).add(profit);
            emit AddProfit(msg.sender, msg.value, profit);
            return true;
        }else{
            return false;
        }
    }
    
    function totalSupply() external view returns (uint256){
        return totalSupply;
    }

    function balanceOf(address _owner) external view returns (uint256) {
        return balances[_owner];
    }

    function approve(address _spender, uint256 _value) public returns (bool) {
        require(_value > 0 && allowed[msg.sender][_spender] == 0);
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    function transferFrom(address _from, address _to, uint256 _value) external returns (bool) {
        require(_value <= allowed[_from][msg.sender]);
        allowed[_from][msg.sender] -= _value;
        return _transfer(_from, _to, _value);
    }

    function allowance(address _owner, address _spender) external view returns (uint256) {
        return allowed[_owner][_spender];
    }
    
    function transfer(address _to, uint256 _value) external returns (bool) {
        return _transfer(msg.sender, _to, _value);
    }

    function _transfer(address _from, address _to, uint256 _value) internal returns (bool) {
        require(_to != address(0), "Receiver address cannot be null");
        require(_from != _to);
        require(_value > 0 && _value <= balances[_from]);
        uint256 newToVal = balances[_to] + _value;
        assert(newToVal >= balances[_to]);
        uint256 newFromVal = balances[_from] - _value;
        balances[_to] = newToVal;
        balances[_from] =  newFromVal;
        uint256 temp = _value.mul(profit);
        changeProfit[_from] = changeProfit[_from].add(temp);
        received[_to] = received[_to].add(temp);
        emit Transfer(_from, _to, _value);
        return true;
    }
    
    function buy(uint256 _amount) external onlyHuman payable{
        require(_amount > 0);
        uint256 _money = _amount.mul(price);
        require(msg.value == _money);
        require(balances[this] >= _amount);
        require((totalSupply - totalSold) >= _amount, "Sold out");
        _transfer(this, msg.sender, _amount);
        finance.transfer(_money.mul(60).div(100));
        jackpot.transfer(_money.mul(20).div(100));
        shareContract.increaseProfit.value(_money.mul(20).div(100))();
        totalSold += _amount;
    }

    function withdraw() external {
        uint256 value = getProfit(msg.sender);
        require(value > 0, "No cash available");
        emit Withdraw(msg.sender, value);
        received[msg.sender] = received[msg.sender].add(value);
        msg.sender.transfer(value);
    }

     function getProfit(address _addr) public view returns(uint256){
        return profit.mul(balances[_addr]).add(changeProfit[_addr]).sub(received[_addr]);
    }
    
    function setJackpot(address _addr) public onlyOwner{
        jackpot = _addr;
    }
    
    function setShare(address _addr) public onlyOwner{
        shareContract = shareProfit(_addr);
    }
    
    function setFinance(address _addr) public onlyOwner{
        finance = _addr;
    }
}

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":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":"increaseProfit","outputs":[{"name":"","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"finance","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"jackpot","outputs":[{"name":"","type":"address"}],"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":"_addr","type":"address"}],"name":"setShare","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"setJackpot","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":"totalSold","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":"_addr","type":"address"}],"name":"setFinance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"price","outputs":[{"name":"","type":"uint256"}],"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":true,"inputs":[{"name":"_addr","type":"address"}],"name":"getProfit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"shareContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_shareAddr","type":"address"}],"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":"_from","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":false,"name":"_newProfit","type":"uint256"}],"name":"AddProfit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_addr","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Withdraw","type":"event"}]

6000805460ff191681556102bc60015560025560c0604052601360808190527f526574726f20426c6f636b20546f6b656e20320000000000000000000000000060a090815262000053916003919062000141565b506040805180820190915260048082527f5254423200000000000000000000000000000000000000000000000000000000602090920191825262000098918162000141565b50348015620000a657600080fd5b506040516020806200124b833981016040908152905160058054600160a060020a03338116600160a060020a0319928316179092556006805482167328dd611d5d2caa117239bd3f3a548dce5fa873b017905560098054821673119ea7f823588d2db81d86cefe4f3be25e4c34dc179055600a8054938316939091169290921790915530166000908152600c602052206102bc9055620001e6565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200018457805160ff1916838001178555620001b4565b82800160010185558215620001b4579182015b82811115620001b457825182559160200191906001019062000197565b50620001c2929150620001c6565b5090565b620001e391905b80821115620001c25760008155600101620001cd565b90565b61105580620001f66000396000f3006080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101f2578063095ea7b31461027c57806318160ddd146102b457806323b872dd146102db57806330cc248e14610305578063313b7b191461030d578063313ce5671461033e5780633ccfd60b146103695780636b31ee011461038057806370a08231146103955780637de7a18d146103b65780637e95385c146103d75780638da5cb5b146103f85780639106d7ba1461040d57806395d89b41146104225780639b8d306414610437578063a035b1fe14610458578063a9059cbb1461046d578063c600e1dc14610491578063d1f55764146104b2578063d96a094a146104c7578063dd62ed3e146104d2575b6000341161017f576040805160e560020a62461bcd02815260206004820152601760248201527f416d6f756e74206d7573742062652070726f7669646564000000000000000000604482015290519081900360640190fd5b6101a660085461019a600154346104f990919063ffffffff16565b9063ffffffff61051516565b60088190556040805134815260208101929092528051600160a060020a033316927fdcde97043025953bda118fffd86c06bbaa28517d73aa8edd32bf74404426f6ed92908290030190a2005b3480156101fe57600080fd5b5061020761052b565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610241578181015183820152602001610229565b50505050905090810190601f16801561026e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028857600080fd5b506102a0600160a060020a03600435166024356105b9565b604080519115158252519081900360200190f35b3480156102c057600080fd5b506102c961065e565b60408051918252519081900360200190f35b3480156102e757600080fd5b506102a0600160a060020a0360043581169060243516604435610665565b6102a06106da565b34801561031957600080fd5b50610322610759565b60408051600160a060020a039092168252519081900360200190f35b34801561034a57600080fd5b50610353610768565b6040805160ff9092168252519081900360200190f35b34801561037557600080fd5b5061037e610771565b005b34801561038c57600080fd5b50610322610889565b3480156103a157600080fd5b506102c9600160a060020a0360043516610898565b3480156103c257600080fd5b5061037e600160a060020a03600435166108b3565b3480156103e357600080fd5b5061037e600160a060020a0360043516610948565b34801561040457600080fd5b506103226109dd565b34801561041957600080fd5b506102c96109ec565b34801561042e57600080fd5b506102076109f2565b34801561044357600080fd5b5061037e600160a060020a0360043516610a4d565b34801561046457600080fd5b506102c9610ae2565b34801561047957600080fd5b506102a0600160a060020a0360043516602435610aee565b34801561049d57600080fd5b506102c9600160a060020a0360043516610afb565b3480156104be57600080fd5b50610322610b56565b61037e600435610b65565b3480156104de57600080fd5b506102c9600160a060020a0360043581169060243516610dd4565b600080828481151561050757fe5b0490508091505b5092915050565b60008282018381101561052457fe5b9392505050565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105b15780601f10610586576101008083540402835291602001916105b1565b820191906000526020600020905b81548152906001019060200180831161059457829003601f168201915b505050505081565b600080821180156105ed5750600160a060020a033381166000908152600d6020908152604080832093871683529290522054155b15156105f857600080fd5b600160a060020a033381166000818152600d6020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b6001545b90565b600160a060020a038084166000908152600d602090815260408083203390941683529290529081205482111561069a57600080fd5b600160a060020a038085166000908152600d6020908152604080832033909416835292905220805483900390556106d2848484610dff565b949350505050565b600080341115610751576106ff60085461019a600154346104f990919063ffffffff16565b60088190556040805134815260208101929092528051600160a060020a033316927fdcde97043025953bda118fffd86c06bbaa28517d73aa8edd32bf74404426f6ed92908290030190a2506001610662565b506000610662565b600654600160a060020a031681565b60005460ff1681565b600061077c33610afb565b9050600081116107d6576040805160e560020a62461bcd02815260206004820152601160248201527f4e6f206361736820617661696c61626c65000000000000000000000000000000604482015290519081900360640190fd5b604080518281529051600160a060020a033316917f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364919081900360200190a2600160a060020a03331660009081526007602052604090205461083e908263ffffffff61051516565b600160a060020a033316600081815260076020526040808220939093559151909183156108fc02918491818181858888f19350505050158015610885573d6000803e3d6000fd5b5050565b600954600160a060020a031681565b600160a060020a03166000908152600c602052604090205490565b60055433600160a060020a03908116911614610919576040805160e560020a62461bcd02815260206004820152600a60248201527f6f6e6c79206f776e657200000000000000000000000000000000000000000000604482015290519081900360640190fd5b600a805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60055433600160a060020a039081169116146109ae576040805160e560020a62461bcd02815260206004820152600a60248201527f6f6e6c79206f776e657200000000000000000000000000000000000000000000604482015290519081900360640190fd5b6009805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600554600160a060020a031681565b60025481565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105b15780601f10610586576101008083540402835291602001916105b1565b60055433600160a060020a03908116911614610ab3576040805160e560020a62461bcd02815260206004820152600a60248201527f6f6e6c79206f776e657200000000000000000000000000000000000000000000604482015290519081900360640190fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b670de0b6b3a764000081565b6000610524338484610dff565b600160a060020a038116600090815260076020908152604080832054600b835281842054600c90935290832054600854610b5093610b4492909161019a9163ffffffff610fec16565b9063ffffffff61101716565b92915050565b600a54600160a060020a031681565b600033803b8015610bc0576040805160e560020a62461bcd02815260206004820152601160248201527f736f7272792068756d616e73206f6e6c79000000000000000000000000000000604482015290519081900360640190fd5b60008411610bcd57600080fd5b610be584670de0b6b3a764000063ffffffff610fec16565b9250348314610bf357600080fd5b600160a060020a0330166000908152600c6020526040902054841115610c1857600080fd5b60025460015403841115610c76576040805160e560020a62461bcd02815260206004820152600860248201527f536f6c64206f7574000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b610c81303386610dff565b50600654600160a060020a03166108fc610cb36064610ca787603c63ffffffff610fec16565b9063ffffffff6104f916565b6040518115909202916000818181858888f19350505050158015610cdb573d6000803e3d6000fd5b50600954600160a060020a03166108fc610d016064610ca787601463ffffffff610fec16565b6040518115909202916000818181858888f19350505050158015610d29573d6000803e3d6000fd5b50600a54600160a060020a03166330cc248e610d516064610ca787601463ffffffff610fec16565b6040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016020604051808303818588803b158015610d9857600080fd5b505af1158015610dac573d6000803e3d6000fd5b50505050506040513d6020811015610dc357600080fd5b505060028054909401909355505050565b600160a060020a039182166000908152600d6020908152604080832093909416825291909152205490565b6000808080600160a060020a0386161515610e64576040805160e560020a62461bcd02815260206004820152601f60248201527f526563656976657220616464726573732063616e6e6f74206265206e756c6c00604482015290519081900360640190fd5b600160a060020a038781169087161415610e7d57600080fd5b600085118015610ea55750600160a060020a0387166000908152600c60205260409020548511155b1515610eb057600080fd5b600160a060020a0386166000908152600c60205260409020548086019350831015610ed757fe5b600160a060020a038088166000818152600c60205260408082208054948b1683529082208790559190529086900390819055600854909250610f2090869063ffffffff610fec16565b600160a060020a0388166000908152600b6020526040902054909150610f4c908263ffffffff61051516565b600160a060020a038089166000908152600b6020908152604080832094909455918916815260079091522054610f88908263ffffffff61051516565b600160a060020a0380881660008181526007602090815260409182902094909455805189815290519193928b16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019695505050505050565b600080831515610fff576000915061050e565b5082820282848281151561100f57fe5b041461052457fe5b60008282111561102357fe5b509003905600a165627a7a72305820abc0eaa1ff0fd02c2c0ff0149b4dda922a80b3211e89b2249ed09f2710f115620029000000000000000000000000d0955bd45d5eef5bedce84a3471c825288a14b01

Deployed Bytecode

0x6080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101f2578063095ea7b31461027c57806318160ddd146102b457806323b872dd146102db57806330cc248e14610305578063313b7b191461030d578063313ce5671461033e5780633ccfd60b146103695780636b31ee011461038057806370a08231146103955780637de7a18d146103b65780637e95385c146103d75780638da5cb5b146103f85780639106d7ba1461040d57806395d89b41146104225780639b8d306414610437578063a035b1fe14610458578063a9059cbb1461046d578063c600e1dc14610491578063d1f55764146104b2578063d96a094a146104c7578063dd62ed3e146104d2575b6000341161017f576040805160e560020a62461bcd02815260206004820152601760248201527f416d6f756e74206d7573742062652070726f7669646564000000000000000000604482015290519081900360640190fd5b6101a660085461019a600154346104f990919063ffffffff16565b9063ffffffff61051516565b60088190556040805134815260208101929092528051600160a060020a033316927fdcde97043025953bda118fffd86c06bbaa28517d73aa8edd32bf74404426f6ed92908290030190a2005b3480156101fe57600080fd5b5061020761052b565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610241578181015183820152602001610229565b50505050905090810190601f16801561026e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028857600080fd5b506102a0600160a060020a03600435166024356105b9565b604080519115158252519081900360200190f35b3480156102c057600080fd5b506102c961065e565b60408051918252519081900360200190f35b3480156102e757600080fd5b506102a0600160a060020a0360043581169060243516604435610665565b6102a06106da565b34801561031957600080fd5b50610322610759565b60408051600160a060020a039092168252519081900360200190f35b34801561034a57600080fd5b50610353610768565b6040805160ff9092168252519081900360200190f35b34801561037557600080fd5b5061037e610771565b005b34801561038c57600080fd5b50610322610889565b3480156103a157600080fd5b506102c9600160a060020a0360043516610898565b3480156103c257600080fd5b5061037e600160a060020a03600435166108b3565b3480156103e357600080fd5b5061037e600160a060020a0360043516610948565b34801561040457600080fd5b506103226109dd565b34801561041957600080fd5b506102c96109ec565b34801561042e57600080fd5b506102076109f2565b34801561044357600080fd5b5061037e600160a060020a0360043516610a4d565b34801561046457600080fd5b506102c9610ae2565b34801561047957600080fd5b506102a0600160a060020a0360043516602435610aee565b34801561049d57600080fd5b506102c9600160a060020a0360043516610afb565b3480156104be57600080fd5b50610322610b56565b61037e600435610b65565b3480156104de57600080fd5b506102c9600160a060020a0360043581169060243516610dd4565b600080828481151561050757fe5b0490508091505b5092915050565b60008282018381101561052457fe5b9392505050565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105b15780601f10610586576101008083540402835291602001916105b1565b820191906000526020600020905b81548152906001019060200180831161059457829003601f168201915b505050505081565b600080821180156105ed5750600160a060020a033381166000908152600d6020908152604080832093871683529290522054155b15156105f857600080fd5b600160a060020a033381166000818152600d6020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a350600192915050565b6001545b90565b600160a060020a038084166000908152600d602090815260408083203390941683529290529081205482111561069a57600080fd5b600160a060020a038085166000908152600d6020908152604080832033909416835292905220805483900390556106d2848484610dff565b949350505050565b600080341115610751576106ff60085461019a600154346104f990919063ffffffff16565b60088190556040805134815260208101929092528051600160a060020a033316927fdcde97043025953bda118fffd86c06bbaa28517d73aa8edd32bf74404426f6ed92908290030190a2506001610662565b506000610662565b600654600160a060020a031681565b60005460ff1681565b600061077c33610afb565b9050600081116107d6576040805160e560020a62461bcd02815260206004820152601160248201527f4e6f206361736820617661696c61626c65000000000000000000000000000000604482015290519081900360640190fd5b604080518281529051600160a060020a033316917f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364919081900360200190a2600160a060020a03331660009081526007602052604090205461083e908263ffffffff61051516565b600160a060020a033316600081815260076020526040808220939093559151909183156108fc02918491818181858888f19350505050158015610885573d6000803e3d6000fd5b5050565b600954600160a060020a031681565b600160a060020a03166000908152600c602052604090205490565b60055433600160a060020a03908116911614610919576040805160e560020a62461bcd02815260206004820152600a60248201527f6f6e6c79206f776e657200000000000000000000000000000000000000000000604482015290519081900360640190fd5b600a805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60055433600160a060020a039081169116146109ae576040805160e560020a62461bcd02815260206004820152600a60248201527f6f6e6c79206f776e657200000000000000000000000000000000000000000000604482015290519081900360640190fd5b6009805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600554600160a060020a031681565b60025481565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105b15780601f10610586576101008083540402835291602001916105b1565b60055433600160a060020a03908116911614610ab3576040805160e560020a62461bcd02815260206004820152600a60248201527f6f6e6c79206f776e657200000000000000000000000000000000000000000000604482015290519081900360640190fd5b6006805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b670de0b6b3a764000081565b6000610524338484610dff565b600160a060020a038116600090815260076020908152604080832054600b835281842054600c90935290832054600854610b5093610b4492909161019a9163ffffffff610fec16565b9063ffffffff61101716565b92915050565b600a54600160a060020a031681565b600033803b8015610bc0576040805160e560020a62461bcd02815260206004820152601160248201527f736f7272792068756d616e73206f6e6c79000000000000000000000000000000604482015290519081900360640190fd5b60008411610bcd57600080fd5b610be584670de0b6b3a764000063ffffffff610fec16565b9250348314610bf357600080fd5b600160a060020a0330166000908152600c6020526040902054841115610c1857600080fd5b60025460015403841115610c76576040805160e560020a62461bcd02815260206004820152600860248201527f536f6c64206f7574000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b610c81303386610dff565b50600654600160a060020a03166108fc610cb36064610ca787603c63ffffffff610fec16565b9063ffffffff6104f916565b6040518115909202916000818181858888f19350505050158015610cdb573d6000803e3d6000fd5b50600954600160a060020a03166108fc610d016064610ca787601463ffffffff610fec16565b6040518115909202916000818181858888f19350505050158015610d29573d6000803e3d6000fd5b50600a54600160a060020a03166330cc248e610d516064610ca787601463ffffffff610fec16565b6040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016020604051808303818588803b158015610d9857600080fd5b505af1158015610dac573d6000803e3d6000fd5b50505050506040513d6020811015610dc357600080fd5b505060028054909401909355505050565b600160a060020a039182166000908152600d6020908152604080832093909416825291909152205490565b6000808080600160a060020a0386161515610e64576040805160e560020a62461bcd02815260206004820152601f60248201527f526563656976657220616464726573732063616e6e6f74206265206e756c6c00604482015290519081900360640190fd5b600160a060020a038781169087161415610e7d57600080fd5b600085118015610ea55750600160a060020a0387166000908152600c60205260409020548511155b1515610eb057600080fd5b600160a060020a0386166000908152600c60205260409020548086019350831015610ed757fe5b600160a060020a038088166000818152600c60205260408082208054948b1683529082208790559190529086900390819055600854909250610f2090869063ffffffff610fec16565b600160a060020a0388166000908152600b6020526040902054909150610f4c908263ffffffff61051516565b600160a060020a038089166000908152600b6020908152604080832094909455918916815260079091522054610f88908263ffffffff61051516565b600160a060020a0380881660008181526007602090815260409182902094909455805189815290519193928b16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35060019695505050505050565b600080831515610fff576000915061050e565b5082820282848281151561100f57fe5b041461052457fe5b60008282111561102357fe5b509003905600a165627a7a72305820abc0eaa1ff0fd02c2c0ff0149b4dda922a80b3211e89b2249ed09f2710f115620029

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

000000000000000000000000d0955bd45d5eef5bedce84a3471c825288a14b01

-----Decoded View---------------
Arg [0] : _shareAddr (address): 0xD0955bD45d5EeF5BEdCe84a3471c825288a14b01

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d0955bd45d5eef5bedce84a3471c825288a14b01


Swarm Source

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