ETH Price: $2,551.38 (-0.49%)

Token

USE Call Option (CUSE)
 

Overview

Max Total Supply

5,113,240,110 CUSE

Holders

150

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
40,000 CUSE

Value
$0.00
0x79103071909C2aA21E3cA6088B44c030b8bC8a88
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:
CUSEcontract

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.4.24;

contract Owned {
    
    /// 'owner' is the only address that can call a function with 
    /// this modifier
    address public owner;
    address internal newOwner;
    
    ///@notice The constructor assigns the message sender to be 'owner'
    constructor() public {
        owner = msg.sender;
    }
    
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    
    event updateOwner(address _oldOwner, address _newOwner);
    
    ///change the owner
    function changeOwner(address _newOwner) public onlyOwner returns(bool) {
        require(owner != _newOwner);
        newOwner = _newOwner;
        return true;
    }
    
    /// accept the ownership
    function acceptNewOwner() public returns(bool) {
        require(msg.sender == newOwner);
        emit updateOwner(owner, newOwner);
        owner = newOwner;
        return true;
    }
}

contract SafeMath {
    // @dev safe Mul function
    function safeMul(uint a, uint b) pure internal returns (uint) {
        uint c = a * b;
        assert(a == 0 || c / a == b);
        return c;
    }
    
    // @dev safe Sub function
    function safeSub(uint a, uint b) pure internal returns (uint) {
        assert(b <= a);
        return a - b;
    }
    
    // @dev safe Add function
    function safeAdd(uint a, uint b) pure internal returns (uint) {
        uint c = a + b;
        assert(c>=a && c>=b);
        return c;
    }

}

contract Pausable is Owned{
    
    bool private _paused = false;
    
    event Paused();
    event Unpaused();
    
    // @dev Modifier to make a function callable only when the contract is not paused.
    modifier whenNotPaused() {
        require(!_paused);
        _;
    }
    
    // @dev Modifier to make a function callable only when the contract is paused.
    modifier whenPaused() {
        require(_paused);
        _;
    }
    
    // @dev called by the owner to pause
    function pause() whenNotPaused public onlyOwner {
        _paused = true;
        emit Paused();
    } 
    
    // @dev called by the owner to unpause, returns to normal state.
    function unpause() whenPaused public onlyOwner {
        _paused = false;
        emit Unpaused();
    }
    
    // @dev return true if the contract is paused, false otherwise.
    function paused() view public returns(bool) {
        return _paused;
    }
}


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;
    
    /// user tokens
    mapping (address => uint256) public balances;
    
    /// @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 CUSEtoken is ERC20Token, Pausable, SafeMath {
    
    string public name = "USE Call Option";
    string public symbol = "CUSE";
    uint public decimals = 18;
    
    uint256 public totalSupply = 0;
    
    function transfer(address _to, uint256 _value) whenNotPaused public returns (bool success) {
    //Default assumes totalSupply can't be over max (2^256 - 1).
    //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
    //Replace the if with this one instead.
        if (balances[msg.sender] >= _value && balances[_to] + _value >= balances[_to]) {
            balances[msg.sender] -= _value;
            balances[_to] += _value;
            emit Transfer(msg.sender, _to, _value);
            return true;
        } else { return false; }
    }
    
    function transferFrom(address _from, address _to, uint256 _value) whenNotPaused public returns (bool success) {
    //same as above. Replace this line with the following if you want to protect against wrapping uints.
        if (balances[_from] >= _value && allowances[_from][msg.sender] >= _value && balances[_to] + _value >= balances[_to]) {
          balances[_to] += _value;
          balances[_from] -= _value;
          allowances[_from][msg.sender] -= _value;
          emit Transfer(_from, _to, _value);
          return true;
        } else { return false; }
    }
    
    function balanceOf(address _owner) constant public returns (uint256 balance) {
        return balances[_owner];
    }
    
    function approve(address _spender, uint256 _value) whenNotPaused public returns (bool success) {
        allowances[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }
    
    function allowance(address _owner, address _spender) constant public returns (uint256 remaining) {
        return allowances[_owner][_spender];
    }
    
    function increaseAllowance(address _spender, uint _addedValue) public whenNotPaused returns (bool success) {
        allowances[msg.sender][_spender] = safeAdd(allowances[msg.sender][_spender], _addedValue);
        emit Approval(msg.sender, _spender, allowances[msg.sender][_spender]);
        return true;
    }
    
    function decreaseAllowance(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) {
        allowances[msg.sender][_spender] = safeSub(allowances[msg.sender][_spender], _subtractedValue);
        emit Approval(msg.sender, _spender, allowances[msg.sender][_spender]);
        return true;
    }
    
    mapping (address => uint256) public balances;
    
    mapping (address => mapping (address => uint256)) allowances;
}

contract CUSEcontract is CUSEtoken{
    
    address public usechainAddress;
    uint constant public INITsupply = 9e27;
    uint constant public CUSE12 = 75e24;
    uint constant public USEsold = 3811759890e18;
    function () payable public {
        revert();
    }
    
    constructor(address _usechainAddress) public {
        usechainAddress = _usechainAddress;
        totalSupply = INITsupply - CUSE12 - USEsold;
        balances[usechainAddress] = totalSupply;
        emit Transfer(address(this), usechainAddress, totalSupply);
    }

}

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":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CUSE12","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":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"INITsupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"usechainAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"USEsold","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":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[{"name":"","type":"bool"}],"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":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptNewOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_usechainAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_oldOwner","type":"address"},{"indexed":false,"name":"_newOwner","type":"address"}],"name":"updateOwner","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":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]

6003805460a060020a60ff021916905560c0604052600f60808190527f5553452043616c6c204f7074696f6e000000000000000000000000000000000060a090815261004e9160049190610153565b506040805180820190915260048082527f4355534500000000000000000000000000000000000000000000000000000000602090920191825261009391600591610153565b50601260065560006007553480156100aa57600080fd5b50604051602080610d98833981016040818152915160028054600160a060020a03199081163317909155600a8054600160a060020a0380851691909316178082556b108592b5c8fc60c73bf800006007819055908316600090815260086020908152908790208290559154908552945192949091169230927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506101ee565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061019457805160ff19168380011785556101c1565b828001600101855582156101c1579182015b828111156101c15782518255916020019190600101906101a6565b506101cd9291506101d1565b5090565b6101eb91905b808211156101cd57600081556001016101d7565b90565b610b9b806101fd6000396000f3006080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461012c578063095ea7b3146101b657806318160ddd146101ee57806323702d091461021557806323b872dd1461022a57806327e235e314610254578063313ce56714610275578063395093511461028a5780633f4ba83a146102ae5780635c975abb146102c55780636525a15a146102da57806370666dad146102ef57806370a08231146103205780638456cb59146103415780638c072617146103565780638da5cb5b1461036b57806395d89b4114610380578063a457c2d714610395578063a6f9dae1146103b9578063a9059cbb146103da578063dd62ed3e146103fe578063f05a781d14610425575b600080fd5b34801561013857600080fd5b5061014161043a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017b578181015183820152602001610163565b50505050905090810190601f1680156101a85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101c257600080fd5b506101da600160a060020a03600435166024356104c8565b604080519115158252519081900360200190f35b3480156101fa57600080fd5b5061020361054a565b60408051918252519081900360200190f35b34801561022157600080fd5b50610203610550565b34801561023657600080fd5b506101da600160a060020a036004358116906024351660443561055f565b34801561026057600080fd5b50610203600160a060020a0360043516610680565b34801561028157600080fd5b50610203610692565b34801561029657600080fd5b506101da600160a060020a0360043516602435610698565b3480156102ba57600080fd5b506102c3610745565b005b3480156102d157600080fd5b506101da6107bd565b3480156102e657600080fd5b506102036107cd565b3480156102fb57600080fd5b506103046107dd565b60408051600160a060020a039092168252519081900360200190f35b34801561032c57600080fd5b50610203600160a060020a03600435166107ec565b34801561034d57600080fd5b506102c3610807565b34801561036257600080fd5b50610203610884565b34801561037757600080fd5b50610304610894565b34801561038c57600080fd5b506101416108a3565b3480156103a157600080fd5b506101da600160a060020a03600435166024356108fe565b3480156103c557600080fd5b506101da600160a060020a0360043516610946565b3480156103e657600080fd5b506101da600160a060020a03600435166024356109ad565b34801561040a57600080fd5b50610203600160a060020a0360043581169060243516610a7a565b34801561043157600080fd5b506101da610aa5565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104c05780601f10610495576101008083540402835291602001916104c0565b820191906000526020600020905b8154815290600101906020018083116104a357829003601f168201915b505050505081565b60035460009060a060020a900460ff16156104e257600080fd5b336000818152600960209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60075481565b6a3e09de2596099e2b00000081565b60035460009060a060020a900460ff161561057957600080fd5b600160a060020a03841660009081526008602052604090205482118015906105c45750600160a060020a03841660009081526009602090815260408083203384529091529020548211155b80156105ea5750600160a060020a03831660009081526008602052604090205482810110155b1561067557600160a060020a03808416600081815260086020908152604080832080548801905593881680835284832080548890039055600982528483203384528252918490208054879003905583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001610679565b5060005b9392505050565b60086020526000908152604090205481565b60065481565b60035460009060a060020a900460ff16156106b257600080fd5b336000908152600960209081526040808320600160a060020a03871684529091529020546106e09083610b40565b336000818152600960209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60035460a060020a900460ff16151561075d57600080fd5b600254600160a060020a0316331461077457600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b60035460a060020a900460ff1690565b6b1d14a0219e5482242800000081565b600a54600160a060020a031681565b600160a060020a031660009081526008602052604090205490565b60035460a060020a900460ff161561081e57600080fd5b600254600160a060020a0316331461083557600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b6b0c51038dafc217bec108000081565b600254600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104c05780601f10610495576101008083540402835291602001916104c0565b60035460009060a060020a900460ff161561091857600080fd5b336000908152600960209081526040808320600160a060020a03871684529091529020546106e09083610b5d565b600254600090600160a060020a0316331461096057600080fd5b600254600160a060020a038381169116141561097b57600080fd5b5060038054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff199091161790556001919050565b60035460009060a060020a900460ff16156109c757600080fd5b336000908152600860205260409020548211801590610a005750600160a060020a03831660009081526008602052604090205482810110155b15610a725733600081815260086020908152604080832080548790039055600160a060020a03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001610544565b506000610544565b600160a060020a03918216600090815260096020908152604080832093909416825291909152205490565b600354600090600160a060020a03163314610abf57600080fd5b60025460035460408051600160a060020a03938416815292909116602083015280517fa6348c80a3dfb1c2603f5c35480c5bd8afc0656ad83dc6b520b648cb286d54179281900390910190a1506003546002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03909216919091179055600190565b6000828201838110801590610b555750828110155b151561067957fe5b600082821115610b6957fe5b509003905600a165627a7a72305820852d2a9f4ad13a7dd8ae8dde3990fa08eea71fc6136732c9fbe6a2117f9df3ce002900000000000000000000000041efd65d4f101ff729d93e7a2b7f9e22f9033332

Deployed Bytecode

0x6080604052600436106101275763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461012c578063095ea7b3146101b657806318160ddd146101ee57806323702d091461021557806323b872dd1461022a57806327e235e314610254578063313ce56714610275578063395093511461028a5780633f4ba83a146102ae5780635c975abb146102c55780636525a15a146102da57806370666dad146102ef57806370a08231146103205780638456cb59146103415780638c072617146103565780638da5cb5b1461036b57806395d89b4114610380578063a457c2d714610395578063a6f9dae1146103b9578063a9059cbb146103da578063dd62ed3e146103fe578063f05a781d14610425575b600080fd5b34801561013857600080fd5b5061014161043a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017b578181015183820152602001610163565b50505050905090810190601f1680156101a85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101c257600080fd5b506101da600160a060020a03600435166024356104c8565b604080519115158252519081900360200190f35b3480156101fa57600080fd5b5061020361054a565b60408051918252519081900360200190f35b34801561022157600080fd5b50610203610550565b34801561023657600080fd5b506101da600160a060020a036004358116906024351660443561055f565b34801561026057600080fd5b50610203600160a060020a0360043516610680565b34801561028157600080fd5b50610203610692565b34801561029657600080fd5b506101da600160a060020a0360043516602435610698565b3480156102ba57600080fd5b506102c3610745565b005b3480156102d157600080fd5b506101da6107bd565b3480156102e657600080fd5b506102036107cd565b3480156102fb57600080fd5b506103046107dd565b60408051600160a060020a039092168252519081900360200190f35b34801561032c57600080fd5b50610203600160a060020a03600435166107ec565b34801561034d57600080fd5b506102c3610807565b34801561036257600080fd5b50610203610884565b34801561037757600080fd5b50610304610894565b34801561038c57600080fd5b506101416108a3565b3480156103a157600080fd5b506101da600160a060020a03600435166024356108fe565b3480156103c557600080fd5b506101da600160a060020a0360043516610946565b3480156103e657600080fd5b506101da600160a060020a03600435166024356109ad565b34801561040a57600080fd5b50610203600160a060020a0360043581169060243516610a7a565b34801561043157600080fd5b506101da610aa5565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104c05780601f10610495576101008083540402835291602001916104c0565b820191906000526020600020905b8154815290600101906020018083116104a357829003601f168201915b505050505081565b60035460009060a060020a900460ff16156104e257600080fd5b336000818152600960209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60075481565b6a3e09de2596099e2b00000081565b60035460009060a060020a900460ff161561057957600080fd5b600160a060020a03841660009081526008602052604090205482118015906105c45750600160a060020a03841660009081526009602090815260408083203384529091529020548211155b80156105ea5750600160a060020a03831660009081526008602052604090205482810110155b1561067557600160a060020a03808416600081815260086020908152604080832080548801905593881680835284832080548890039055600982528483203384528252918490208054879003905583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001610679565b5060005b9392505050565b60086020526000908152604090205481565b60065481565b60035460009060a060020a900460ff16156106b257600080fd5b336000908152600960209081526040808320600160a060020a03871684529091529020546106e09083610b40565b336000818152600960209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60035460a060020a900460ff16151561075d57600080fd5b600254600160a060020a0316331461077457600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b60035460a060020a900460ff1690565b6b1d14a0219e5482242800000081565b600a54600160a060020a031681565b600160a060020a031660009081526008602052604090205490565b60035460a060020a900460ff161561081e57600080fd5b600254600160a060020a0316331461083557600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b6b0c51038dafc217bec108000081565b600254600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156104c05780601f10610495576101008083540402835291602001916104c0565b60035460009060a060020a900460ff161561091857600080fd5b336000908152600960209081526040808320600160a060020a03871684529091529020546106e09083610b5d565b600254600090600160a060020a0316331461096057600080fd5b600254600160a060020a038381169116141561097b57600080fd5b5060038054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff199091161790556001919050565b60035460009060a060020a900460ff16156109c757600080fd5b336000908152600860205260409020548211801590610a005750600160a060020a03831660009081526008602052604090205482810110155b15610a725733600081815260086020908152604080832080548790039055600160a060020a03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001610544565b506000610544565b600160a060020a03918216600090815260096020908152604080832093909416825291909152205490565b600354600090600160a060020a03163314610abf57600080fd5b60025460035460408051600160a060020a03938416815292909116602083015280517fa6348c80a3dfb1c2603f5c35480c5bd8afc0656ad83dc6b520b648cb286d54179281900390910190a1506003546002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03909216919091179055600190565b6000828201838110801590610b555750828110155b151561067957fe5b600082821115610b6957fe5b509003905600a165627a7a72305820852d2a9f4ad13a7dd8ae8dde3990fa08eea71fc6136732c9fbe6a2117f9df3ce0029

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

00000000000000000000000041efd65d4f101ff729d93e7a2b7f9e22f9033332

-----Decoded View---------------
Arg [0] : _usechainAddress (address): 0x41eFD65d4f101ff729D93e7a2b7F9e22f9033332

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000041efd65d4f101ff729d93e7a2b7f9e22f9033332


Swarm Source

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