ETH Price: $2,670.29 (-2.71%)

Contract

0x3a741C9eB3f506f203ebb7D422fd011A5C4Fa6FA
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer74650392019-03-29 18:42:542156 days ago1553884974IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.000239326.4
Transfer66896242018-11-12 8:18:202293 days ago1542010700IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021455741
Transfer56696262018-05-24 16:35:222465 days ago1527179722IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56636532018-05-23 15:04:402466 days ago1527087880IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56636442018-05-23 15:01:552466 days ago1527087715IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56636382018-05-23 15:00:292466 days ago1527087629IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56636242018-05-23 14:57:482466 days ago1527087468IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56636072018-05-23 14:53:072466 days ago1527087187IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56635982018-05-23 14:50:592466 days ago1527087059IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56635862018-05-23 14:46:552466 days ago1527086815IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56635802018-05-23 14:45:162466 days ago1527086716IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56635712018-05-23 14:43:202466 days ago1527086600IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56635652018-05-23 14:41:422466 days ago1527086502IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56635552018-05-23 14:39:112466 days ago1527086351IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021455741
Transfer56635472018-05-23 14:36:572466 days ago1527086217IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56635392018-05-23 14:35:322466 days ago1527086132IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56635262018-05-23 14:32:522466 days ago1527085972IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56635142018-05-23 14:29:162466 days ago1527085756IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56635072018-05-23 14:27:462466 days ago1527085666IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56635002018-05-23 14:25:102466 days ago1527085510IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0015331941
Transfer56634852018-05-23 14:21:142466 days ago1527085274IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021455741
Transfer56634722018-05-23 14:18:262466 days ago1527085106IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56634652018-05-23 14:16:582466 days ago1527085018IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56634492018-05-23 14:13:582466 days ago1527084838IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
Transfer56634272018-05-23 14:09:002466 days ago1527084540IN
0x3a741C9e...A5C4Fa6FA
0 ETH0.0021481941
View all transactions

Latest 5 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
51947782018-03-04 11:58:412546 days ago1520164721
0x3a741C9e...A5C4Fa6FA
 Contract Creation0 ETH
51947582018-03-04 11:52:462546 days ago1520164366
0x3a741C9e...A5C4Fa6FA
 Contract Creation0 ETH
51947312018-03-04 11:46:282546 days ago1520163988
0x3a741C9e...A5C4Fa6FA
 Contract Creation0 ETH
51947072018-03-04 11:40:542546 days ago1520163654
0x3a741C9e...A5C4Fa6FA
 Contract Creation0 ETH
51946862018-03-04 11:34:482546 days ago1520163288
0x3a741C9e...A5C4Fa6FA
 Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ChineseDragonToken

Compiler Version
v0.4.21-nightly.2018.3.1+commit.cf6720ea

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-03-04
*/

pragma solidity ^0.4.18;

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

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

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

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256 balance) {
    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);
    Transfer(_from, _to, _value);
    return true;
  }

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

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

}

/**
 * @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));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */
contract MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
    totalSupply_ = totalSupply_.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    Mint(_to, _amount);
    Transfer(address(0), _to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() onlyOwner canMint public returns (bool) {
    mintingFinished = true;
    MintFinished();
    return true;
  }
}

/**
 * @title TokenTimelock
 * @dev TokenTimelock is a token holder contract that will allow a
 * beneficiary to extract the tokens after a given release time
 */
contract TokenTimelock {
  using SafeERC20 for ERC20Basic;

  // ERC20 basic token contract being held
  ERC20Basic public token;

  // beneficiary of tokens after they are released
  address public beneficiary;

  // timestamp when token release is enabled
  uint256 public releaseTime;

  function TokenTimelock(ERC20Basic _token, address _beneficiary, uint256 _releaseTime) public {
    require(_releaseTime > now);
    token = _token;
    beneficiary = _beneficiary;
    releaseTime = _releaseTime;
  }

  /**
   * @notice Transfers tokens held by timelock to beneficiary.
   */
  function release() public {
    require(now >= releaseTime);

    uint256 amount = token.balanceOf(this);
    require(amount > 0);

    token.safeTransfer(beneficiary, amount);
  }
}

contract ChineseDragonToken is MintableToken {

    string public name = 'Chinese Dragon';
    string public symbol = 'CDG';
    uint8 public decimals = 18;

    function mintTimelocked(address _to, uint256 _amount, uint256 _releaseTime) public onlyOwner canMint returns (TokenTimelock) {
        TokenTimelock timelock = new TokenTimelock(this, _to, _releaseTime);
        mint(timelock, (_amount * (10 ** uint256(decimals))));
        return timelock;
    }

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"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":"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":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_releaseTime","type":"uint256"}],"name":"mintTimelocked","outputs":[{"name":"","type":"address"}],"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"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

606060409081526003805460a060020a60ff02191690558051908101604052600e81527f4368696e65736520447261676f6e0000000000000000000000000000000000006020820152600490805161005b9291602001906100d3565b5060408051908101604052600381527f4344470000000000000000000000000000000000000000000000000000000000602082015260059080516100a39291602001906100d3565b506006805460ff1916601217905560038054600160a060020a033316600160a060020a031990911617905561016e565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061011457805160ff1916838001178555610141565b82800160010185558215610141579182015b82811115610141578251825591602001919060010190610126565b5061014d929150610151565b5090565b61016b91905b8082111561014d5760008155600101610157565b90565b610fcc8061017d6000396000f3006060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b81146100f557806306fdde031461011c578063095ea7b3146101a657806318160ddd146101c857806323b872dd146101ed578063313ce5671461021557806340c10f191461023e578063661884631461026057806370a08231146102825780637d64bcb4146102a15780638da5cb5b146102b457806395d89b41146102e3578063a9059cbb146102f6578063c14a3b8c14610318578063d73dd6231461033d578063dd62ed3e1461035f578063f2fde38b14610384575b600080fd5b341561010057600080fd5b6101086103a5565b604051901515815260200160405180910390f35b341561012757600080fd5b61012f6103b5565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561016b578082015183820152602001610153565b50505050905090810190601f1680156101985780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101b157600080fd5b610108600160a060020a0360043516602435610453565b34156101d357600080fd5b6101db6104bf565b60405190815260200160405180910390f35b34156101f857600080fd5b610108600160a060020a03600435811690602435166044356104c5565b341561022057600080fd5b610228610645565b60405160ff909116815260200160405180910390f35b341561024957600080fd5b610108600160a060020a036004351660243561064e565b341561026b57600080fd5b610108600160a060020a036004351660243561075c565b341561028d57600080fd5b6101db600160a060020a0360043516610856565b34156102ac57600080fd5b610108610871565b34156102bf57600080fd5b6102c76108fc565b604051600160a060020a03909116815260200160405180910390f35b34156102ee57600080fd5b61012f61090b565b341561030157600080fd5b610108600160a060020a0360043516602435610976565b341561032357600080fd5b6102c7600160a060020a0360043516602435604435610a88565b341561034857600080fd5b610108600160a060020a0360043516602435610b23565b341561036a57600080fd5b6101db600160a060020a0360043581169060243516610bc7565b341561038f57600080fd5b6103a3600160a060020a0360043516610bf2565b005b60035460a060020a900460ff1681565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561044b5780601f106104205761010080835404028352916020019161044b565b820191906000526020600020905b81548152906001019060200180831161042e57829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60015490565b6000600160a060020a03831615156104dc57600080fd5b600160a060020a03841660009081526020819052604090205482111561050157600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561053457600080fd5b600160a060020a03841660009081526020819052604090205461055d908363ffffffff610c8d16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610592908363ffffffff610c9f16565b600160a060020a03808516600090815260208181526040808320949094558783168252600281528382203390931682529190915220546105d8908363ffffffff610c8d16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60065460ff1681565b60035460009033600160a060020a0390811691161461066c57600080fd5b60035460a060020a900460ff161561068357600080fd5b600154610696908363ffffffff610c9f16565b600155600160a060020a0383166000908152602081905260409020546106c2908363ffffffff610c9f16565b600160a060020a0384166000818152602081905260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156107b957600160a060020a0333811660009081526002602090815260408083209388168352929052908120556107f0565b6107c9818463ffffffff610c8d16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60035460009033600160a060020a0390811691161461088f57600080fd5b60035460a060020a900460ff16156108a657600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b600354600160a060020a031681565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561044b5780601f106104205761010080835404028352916020019161044b565b6000600160a060020a038316151561098d57600080fd5b600160a060020a0333166000908152602081905260409020548211156109b257600080fd5b600160a060020a0333166000908152602081905260409020546109db908363ffffffff610c8d16565b600160a060020a033381166000908152602081905260408082209390935590851681522054610a10908363ffffffff610c9f16565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600354600090819033600160a060020a03908116911614610aa857600080fd5b60035460a060020a900460ff1615610abf57600080fd5b308584610aca610cb5565b600160a060020a0393841681529190921660208201526040808201929092526060019051809103906000f0801515610b0157600080fd5b600654909150610b1a90829060ff16600a0a860261064e565b50949350505050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610b5b908363ffffffff610c9f16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610c0d57600080fd5b600160a060020a0381161515610c2257600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610c9957fe5b50900390565b600082820183811015610cae57fe5b9392505050565b6040516102db80610cc68339019056006060604052341561000f57600080fd5b6040516060806102db83398101604052808051919060200180519190602001805191505042811161003f57600080fd5b60008054600160a060020a03948516600160a060020a031991821617909155600180549390941692169190911790915560025561025a806100816000396000f3006060604052600436106100485763ffffffff60e060020a60003504166338af3eed811461004d57806386d1a69f1461007c578063b91d400114610091578063fc0c546a146100b6575b600080fd5b341561005857600080fd5b6100606100c9565b604051600160a060020a03909116815260200160405180910390f35b341561008757600080fd5b61008f6100d8565b005b341561009c57600080fd5b6100a4610194565b60405190815260200160405180910390f35b34156100c157600080fd5b61006061019a565b600154600160a060020a031681565b6002546000904210156100ea57600080fd5b60008054600160a060020a0316906370a082319030906040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561014557600080fd5b6102c65a03f1151561015657600080fd5b50505060405180519150506000811161016e57600080fd5b60015460005461019191600160a060020a0391821691168363ffffffff6101a916565b50565b60025481565b600054600160a060020a031681565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561020657600080fd5b6102c65a03f1151561021757600080fd5b50505060405180519050151561022957fe5b5050505600a165627a7a723058202a8cfe27cc7ea87d1e3108241153b3fd6108a08c7730294644b829155a248ce20029a165627a7a72305820bbdd409669ae1b076e8adae60cabce2346d515f67dea8c9c6ff6bfaa0e6c23760029

Deployed Bytecode

0x6060604052600436106100f05763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b81146100f557806306fdde031461011c578063095ea7b3146101a657806318160ddd146101c857806323b872dd146101ed578063313ce5671461021557806340c10f191461023e578063661884631461026057806370a08231146102825780637d64bcb4146102a15780638da5cb5b146102b457806395d89b41146102e3578063a9059cbb146102f6578063c14a3b8c14610318578063d73dd6231461033d578063dd62ed3e1461035f578063f2fde38b14610384575b600080fd5b341561010057600080fd5b6101086103a5565b604051901515815260200160405180910390f35b341561012757600080fd5b61012f6103b5565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561016b578082015183820152602001610153565b50505050905090810190601f1680156101985780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101b157600080fd5b610108600160a060020a0360043516602435610453565b34156101d357600080fd5b6101db6104bf565b60405190815260200160405180910390f35b34156101f857600080fd5b610108600160a060020a03600435811690602435166044356104c5565b341561022057600080fd5b610228610645565b60405160ff909116815260200160405180910390f35b341561024957600080fd5b610108600160a060020a036004351660243561064e565b341561026b57600080fd5b610108600160a060020a036004351660243561075c565b341561028d57600080fd5b6101db600160a060020a0360043516610856565b34156102ac57600080fd5b610108610871565b34156102bf57600080fd5b6102c76108fc565b604051600160a060020a03909116815260200160405180910390f35b34156102ee57600080fd5b61012f61090b565b341561030157600080fd5b610108600160a060020a0360043516602435610976565b341561032357600080fd5b6102c7600160a060020a0360043516602435604435610a88565b341561034857600080fd5b610108600160a060020a0360043516602435610b23565b341561036a57600080fd5b6101db600160a060020a0360043581169060243516610bc7565b341561038f57600080fd5b6103a3600160a060020a0360043516610bf2565b005b60035460a060020a900460ff1681565b60048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561044b5780601f106104205761010080835404028352916020019161044b565b820191906000526020600020905b81548152906001019060200180831161042e57829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60015490565b6000600160a060020a03831615156104dc57600080fd5b600160a060020a03841660009081526020819052604090205482111561050157600080fd5b600160a060020a038085166000908152600260209081526040808320339094168352929052205482111561053457600080fd5b600160a060020a03841660009081526020819052604090205461055d908363ffffffff610c8d16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610592908363ffffffff610c9f16565b600160a060020a03808516600090815260208181526040808320949094558783168252600281528382203390931682529190915220546105d8908363ffffffff610c8d16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60065460ff1681565b60035460009033600160a060020a0390811691161461066c57600080fd5b60035460a060020a900460ff161561068357600080fd5b600154610696908363ffffffff610c9f16565b600155600160a060020a0383166000908152602081905260409020546106c2908363ffffffff610c9f16565b600160a060020a0384166000818152602081905260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a2600160a060020a03831660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156107b957600160a060020a0333811660009081526002602090815260408083209388168352929052908120556107f0565b6107c9818463ffffffff610c8d16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60035460009033600160a060020a0390811691161461088f57600080fd5b60035460a060020a900460ff16156108a657600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b600354600160a060020a031681565b60058054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561044b5780601f106104205761010080835404028352916020019161044b565b6000600160a060020a038316151561098d57600080fd5b600160a060020a0333166000908152602081905260409020548211156109b257600080fd5b600160a060020a0333166000908152602081905260409020546109db908363ffffffff610c8d16565b600160a060020a033381166000908152602081905260408082209390935590851681522054610a10908363ffffffff610c9f16565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600354600090819033600160a060020a03908116911614610aa857600080fd5b60035460a060020a900460ff1615610abf57600080fd5b308584610aca610cb5565b600160a060020a0393841681529190921660208201526040808201929092526060019051809103906000f0801515610b0157600080fd5b600654909150610b1a90829060ff16600a0a860261064e565b50949350505050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610b5b908363ffffffff610c9f16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a03908116911614610c0d57600080fd5b600160a060020a0381161515610c2257600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600082821115610c9957fe5b50900390565b600082820183811015610cae57fe5b9392505050565b6040516102db80610cc68339019056006060604052341561000f57600080fd5b6040516060806102db83398101604052808051919060200180519190602001805191505042811161003f57600080fd5b60008054600160a060020a03948516600160a060020a031991821617909155600180549390941692169190911790915560025561025a806100816000396000f3006060604052600436106100485763ffffffff60e060020a60003504166338af3eed811461004d57806386d1a69f1461007c578063b91d400114610091578063fc0c546a146100b6575b600080fd5b341561005857600080fd5b6100606100c9565b604051600160a060020a03909116815260200160405180910390f35b341561008757600080fd5b61008f6100d8565b005b341561009c57600080fd5b6100a4610194565b60405190815260200160405180910390f35b34156100c157600080fd5b61006061019a565b600154600160a060020a031681565b6002546000904210156100ea57600080fd5b60008054600160a060020a0316906370a082319030906040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561014557600080fd5b6102c65a03f1151561015657600080fd5b50505060405180519150506000811161016e57600080fd5b60015460005461019191600160a060020a0391821691168363ffffffff6101a916565b50565b60025481565b600054600160a060020a031681565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561020657600080fd5b6102c65a03f1151561021757600080fd5b50505060405180519050151561022957fe5b5050505600a165627a7a723058202a8cfe27cc7ea87d1e3108241153b3fd6108a08c7730294644b829155a248ce20029a165627a7a72305820bbdd409669ae1b076e8adae60cabce2346d515f67dea8c9c6ff6bfaa0e6c23760029

Swarm Source

bzzr://bbdd409669ae1b076e8adae60cabce2346d515f67dea8c9c6ff6bfaa0e6c2376

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.