ETH Price: $2,544.13 (-1.19%)

Contract

0x69A605D3f74BB709A7E9F6f7B5e3337445fC93CC
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve203191812024-07-16 12:50:2399 days ago1721134223IN
0x69A605D3...445fC93CC
0 ETH0.000229688.71228081
Transfer165965232023-02-10 6:19:47622 days ago1676009987IN
0x69A605D3...445fC93CC
0 ETH0.0009316717.93061086
Transfer123300312021-04-28 16:33:451274 days ago1619627625IN
0x69A605D3...445fC93CC
0 ETH0.005561398
Transfer121971512021-04-08 4:57:211295 days ago1617857841IN
0x69A605D3...445fC93CC
0 ETH0.003542490
Transfer121188272021-03-27 3:48:531307 days ago1616816933IN
0x69A605D3...445fC93CC
0 ETH0.00760872140
Approve116467462021-01-13 13:01:051379 days ago1610542865IN
0x69A605D3...445fC93CC
0 ETH0.0023403652
Transfer116467342021-01-13 12:58:451379 days ago1610542725IN
0x69A605D3...445fC93CC
0 ETH0.0017751345.1
Transfer103743572020-07-01 15:33:531575 days ago1593617633IN
0x69A605D3...445fC93CC
0 ETH0.0025969666
Transfer102440662020-06-11 11:14:011595 days ago1591874041IN
0x69A605D3...445fC93CC
0 ETH0.0010869620
Transfer86334902019-09-27 22:13:221853 days ago1569622402IN
0x69A605D3...445fC93CC
0 ETH0.0004144318
Transfer86334692019-09-27 22:09:231853 days ago1569622163IN
0x69A605D3...445fC93CC
0 ETH0.0009544318
Transfer81134832019-07-08 23:11:181934 days ago1562627478IN
0x69A605D3...445fC93CC
0 ETH0.000302187.94734459
Transfer79580182019-06-14 17:10:361958 days ago1560532236IN
0x69A605D3...445fC93CC
0 ETH0.000211844
Transfer77336362019-05-10 15:44:531993 days ago1557503093IN
0x69A605D3...445fC93CC
0 ETH0.0003935410.3499991
Transfer71705072019-02-03 22:37:542089 days ago1549233474IN
0x69A605D3...445fC93CC
0 ETH0.000185348.05
Transfer71705072019-02-03 22:37:542089 days ago1549233474IN
0x69A605D3...445fC93CC
0 ETH0.000306098.05
Transfer71705052019-02-03 22:37:372089 days ago1549233457IN
0x69A605D3...445fC93CC
0 ETH0.000306098.05
Transfer71705042019-02-03 22:37:162089 days ago1549233436IN
0x69A605D3...445fC93CC
0 ETH0.000306098.05
Transfer71650782019-02-02 20:07:142090 days ago1549138034IN
0x69A605D3...445fC93CC
0 ETH0.000305068.05
Transfer71650742019-02-02 20:06:332090 days ago1549137993IN
0x69A605D3...445fC93CC
0 ETH0.000305068.05
Transfer71650722019-02-02 20:05:372090 days ago1549137937IN
0x69A605D3...445fC93CC
0 ETH0.000305068.05
Transfer71650722019-02-02 20:05:372090 days ago1549137937IN
0x69A605D3...445fC93CC
0 ETH0.000305068.05
Transfer71650712019-02-02 20:05:342090 days ago1549137934IN
0x69A605D3...445fC93CC
0 ETH0.000305068.05
Transfer71646492019-02-02 18:02:332090 days ago1549130553IN
0x69A605D3...445fC93CC
0 ETH0.000305068.05
Transfer71646482019-02-02 18:02:152090 days ago1549130535IN
0x69A605D3...445fC93CC
0 ETH0.000305068.05
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Obirum

Compiler Version
v0.4.20+commit.3155dd80

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

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

pragma solidity ^0.4.18;


/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  uint256 public totalSupply;
  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 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 SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
  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;
  }

  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;
  }

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

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



/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  /**
  * @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 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 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 Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @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, triggers stopped state
   */
  function pause() onlyOwner whenNotPaused public {
    paused = true;
    Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused public {
    paused = false;
    Unpause();
  }
}


/**
 * @title Pausable token
 *
 * @dev StandardToken modified with pausable transfers.
 **/

contract PausableToken is StandardToken, Pausable {

  function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
    return super.transfer(_to, _value);
  }

  function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
    return super.transferFrom(_from, _to, _value);
  }

  function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
    return super.approve(_spender, _value);
  }

  function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) {
    return super.increaseApproval(_spender, _addedValue);
  }

  function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) {
    return super.decreaseApproval(_spender, _subtractedValue);
  }
}


contract Obirum is PausableToken {
    string public constant name = "Obirum";
    string public constant symbol = "OBR";
    uint8 public constant decimals = 18;

    uint256 private constant TOKEN_UNIT = 10 ** uint256(decimals);

    uint256 public constant totalSupply = 2302000000 * TOKEN_UNIT;
    uint256 public constant publicAmount = 1151000000 * TOKEN_UNIT; // Tokens for public

    uint public startTime;
    address public crowdsaleAddress;

    struct TokenLock { uint256 amount; uint duration; bool withdrawn; }

    TokenLock public foundationLock = TokenLock({
        amount: 230200000 * TOKEN_UNIT,
        duration: 720 days,
        withdrawn: false
    });

    TokenLock public teamLock = TokenLock({
        amount: 299260000 * TOKEN_UNIT,
        duration: 720 days,
        withdrawn: false
    });

    TokenLock public advisorLock = TokenLock({
        amount: 276240000 * TOKEN_UNIT,
        duration: 720 days,
        withdrawn: false
    });

    function Obirum(uint256 lockTill) public {
        startTime = lockTill;

        balances[owner] = totalSupply;
        Transfer(address(0), owner, balances[owner]);

        lockTokens(foundationLock);
        lockTokens(teamLock);
        lockTokens(advisorLock);
    }

    function setCrowdsaleAddress(address _crowdsaleAddress) external onlyOwner {
        crowdsaleAddress = _crowdsaleAddress;
        assert(approve(crowdsaleAddress, publicAmount));
    }

    function withdrawLocked() external onlyOwner {
        if(unlockTokens(foundationLock)) foundationLock.withdrawn = true;
        if(unlockTokens(teamLock)) teamLock.withdrawn = true;
        if(unlockTokens(advisorLock)) advisorLock.withdrawn = true;
    }

    function lockTokens(TokenLock lock) internal {
        balances[owner] = balances[owner].sub(lock.amount);
        balances[address(0)] = balances[address(0)].add(lock.amount);
        Transfer(owner, address(0), lock.amount);
    }

    function unlockTokens(TokenLock lock) internal returns (bool) {
        uint lockReleaseTime = startTime + lock.duration;

        if(lockReleaseTime < now && lock.withdrawn == false) {
            balances[owner] = balances[owner].add(lock.amount);
            balances[address(0)] = balances[address(0)].sub(lock.amount);
            Transfer(address(0), owner, lock.amount);
            return true;
        }

        return false;
    }

    function setStartTime(uint _startTime) external {
        require(msg.sender == crowdsaleAddress);
        if(_startTime < startTime) {
            startTime = _startTime;
        }
    }

    function transfer(address _to, uint _value) public returns (bool) {
        // Only owner's tokens can be transferred before ICO ends
        if (now < startTime)
            require(msg.sender == owner);

        return super.transfer(_to, _value);
    }

    function transferFrom(address _from, address _to, uint _value) public returns (bool) {
        // Only owner's tokens can be transferred before ICO ends
        if (now < startTime)
            require(_from == owner);

        return super.transferFrom(_from, _to, _value);
    }

    function transferOwnership(address newOwner) public onlyOwner {
        require(now >= startTime);
        super.transferOwnership(newOwner);
    }
}

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":"_crowdsaleAddress","type":"address"}],"name":"setCrowdsaleAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"foundationLock","outputs":[{"name":"amount","type":"uint256"},{"name":"duration","type":"uint256"},{"name":"withdrawn","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_startTime","type":"uint256"}],"name":"setStartTime","outputs":[],"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":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","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":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","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":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"publicAmount","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":"advisorLock","outputs":[{"name":"amount","type":"uint256"},{"name":"duration","type":"uint256"},{"name":"withdrawn","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"teamLock","outputs":[{"name":"amount","type":"uint256"},{"name":"duration","type":"uint256"},{"name":"withdrawn","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdrawLocked","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","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":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"lockTill","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","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"}]

606060408181526003805460a060020a60ff02191690555190810160409081526abe6abf015be0149300000082526303b538006020830152600090820152600681518155602082015181600101556040820151600291909101805460ff191691151591909117905550606060405190810160409081526af78ac51b5dd6812580000082526303b538006020830152600090820152600981518155602082015181600101556040820151600291909101805460ff191691151591909117905550606060405190810160409081526ae480186807d9b24a00000082526303b538006020830152600090820152600c81518155602082015181600101556040820151600291909101805460ff19169115159190911790555034156200012057600080fd5b604051602080620014e68339810160405280805160038054600160a060020a03191633600160a060020a0390811691909117808355600484905581166000908152600160205260408082206b07702b760d96c0cdbe0000009055925490911680825282822054939550935091600080516020620014c6833981519152915190815260200160405180910390a3620001f3600660606040519081016040908152825482526001830154602083015260029092015460ff1615159181019190915264010000000062000fe36200028882021704565b6200023a600960606040519081016040908152825482526001830154602083015260029092015460ff1615159181019190915264010000000062000fe36200028882021704565b62000281600c60606040519081016040908152825482526001830154602083015260029092015460ff1615159181019190915264010000000062000fe36200028882021704565b5062000388565b620002be8151600354600160a060020a03166000908152600160205260409020549064010000000062000ed96200035e82021704565b600354600160a060020a03166000908152600160205260409020556200030e8151600080526001602052600080516020620014a6833981519152549064010000000062000fd46200037182021704565b60008080526001602052600080516020620014a683398151915291909155600354600160a060020a0316600080516020620014c6833981519152835160405190815260200160405180910390a350565b6000828211156200036b57fe5b50900390565b6000828201838110156200038157fe5b9392505050565b61110e80620003986000396000f3006060604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461014d578063095ea7b3146101d757806318160ddd1461020d5780631f35bc401461023257806323b872dd146102535780632690f0d51461027b578063313ce567146102b457806331d2f891146102dd5780633e0a322d1461030c5780633f4ba83a146103225780635c975abb14610335578063661884631461034857806370a082311461036a57806378e97925146103895780638456cb591461039c5780638da5cb5b146103af57806395d89b41146103c2578063a27a9e7f146103d5578063a9059cbb146103e8578063b84997501461040a578063ba72cc361461041d578063d135cc4b14610430578063d73dd62314610443578063dd62ed3e14610465578063f2fde38b1461048a575b600080fd5b341561015857600080fd5b6101606104a9565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019c578082015183820152602001610184565b50505050905090810190601f1680156101c95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101e257600080fd5b6101f9600160a060020a03600435166024356104e0565b604051901515815260200160405180910390f35b341561021857600080fd5b61022061050b565b60405190815260200160405180910390f35b341561023d57600080fd5b610251600160a060020a036004351661051b565b005b341561025e57600080fd5b6101f9600160a060020a0360043581169060243516604435610586565b341561028657600080fd5b61028e6105bf565b604051928352602083019190915215156040808301919091526060909101905180910390f35b34156102bf57600080fd5b6102c76105ce565b60405160ff909116815260200160405180910390f35b34156102e857600080fd5b6102f06105d3565b604051600160a060020a03909116815260200160405180910390f35b341561031757600080fd5b6102516004356105e2565b341561032d57600080fd5b61025161060c565b341561034057600080fd5b6101f961068b565b341561035357600080fd5b6101f9600160a060020a036004351660243561069b565b341561037557600080fd5b610220600160a060020a03600435166106bf565b341561039457600080fd5b6102206106da565b34156103a757600080fd5b6102516106e0565b34156103ba57600080fd5b6102f0610764565b34156103cd57600080fd5b610160610773565b34156103e057600080fd5b6102206107aa565b34156103f357600080fd5b6101f9600160a060020a03600435166024356107ba565b341561041557600080fd5b61028e6107eb565b341561042857600080fd5b61028e6107fa565b341561043b57600080fd5b610251610809565b341561044e57600080fd5b6101f9600160a060020a0360043516602435610904565b341561047057600080fd5b610220600160a060020a0360043581169060243516610928565b341561049557600080fd5b610251600160a060020a0360043516610953565b60408051908101604052600681527f4f626972756d0000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff16156104fa57600080fd5b6105048383610986565b9392505050565b6b07702b760d96c0cdbe00000081565b60035433600160a060020a0390811691161461053657600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03838116919091179182905561057b91166b03b815bb06cb6066df0000006104e0565b151561058357fe5b50565b60006004544210156105ac57600354600160a060020a038581169116146105ac57600080fd5b6105b78484846109f2565b949350505050565b60065460075460085460ff1683565b601281565b600554600160a060020a031681565b60055433600160a060020a039081169116146105fd57600080fd5b60045481101561058357600455565b60035433600160a060020a0390811691161461062757600080fd5b60035460a060020a900460ff16151561063f57600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156106b557600080fd5b6105048383610a17565b600160a060020a031660009081526001602052604090205490565b60045481565b60035433600160a060020a039081169116146106fb57600080fd5b60035460a060020a900460ff161561071257600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600354600160a060020a031681565b60408051908101604052600381527f4f42520000000000000000000000000000000000000000000000000000000000602082015281565b6b03b815bb06cb6066df00000081565b60006004544210156107e15760035433600160a060020a039081169116146107e157600080fd5b6105048383610b11565b600c54600d54600e5460ff1683565b600954600a54600b5460ff1683565b60035433600160a060020a0390811691161461082457600080fd5b61085b600660606040519081016040908152825482526001830154602083015260029092015460ff16151591810191909152610b35565b1561086e576008805460ff191660011790555b6108a5600960606040519081016040908152825482526001830154602083015260029092015460ff16151591810191909152610b35565b156108b857600b805460ff191660011790555b6108ef600c60606040519081016040908152825482526001830154602083015260029092015460ff16151591810191909152610b35565b1561090257600e805460ff191660011790555b565b60035460009060a060020a900460ff161561091e57600080fd5b6105048383610c2a565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a0390811691161461096e57600080fd5b60045442101561097d57600080fd5b61058381610cce565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60035460009060a060020a900460ff1615610a0c57600080fd5b6105b7848484610d69565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610a7457600160a060020a033381166000908152600260209081526040808320938816835292905290812055610aab565b610a84818463ffffffff610ed916565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b60035460009060a060020a900460ff1615610b2b57600080fd5b6105048383610eeb565b60008082602001516004540190504281108015610b5457508260400151155b15610c1f57610b858351600354600160a060020a03166000908152600160205260409020549063ffffffff610fd416565b600354600160a060020a0316600090815260016020526040902055610bca83516000805260016020526000805160206110a3833981519152549063ffffffff610ed916565b600080805260016020526000805160206110a383398151915291909155600354600160a060020a0316906000805160206110c3833981519152855160405190815260200160405180910390a360019150610c24565b600091505b50919050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610c62908363ffffffff610fd416565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60035433600160a060020a03908116911614610ce957600080fd5b600160a060020a0381161515610cfe57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160a060020a0383161515610d8057600080fd5b600160a060020a038416600090815260016020526040902054821115610da557600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610dd857600080fd5b600160a060020a038416600090815260016020526040902054610e01908363ffffffff610ed916565b600160a060020a038086166000908152600160205260408082209390935590851681522054610e36908363ffffffff610fd416565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610e7e908363ffffffff610ed916565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516916000805160206110c38339815191529085905190815260200160405180910390a35060019392505050565b600082821115610ee557fe5b50900390565b6000600160a060020a0383161515610f0257600080fd5b600160a060020a033316600090815260016020526040902054821115610f2757600080fd5b600160a060020a033316600090815260016020526040902054610f50908363ffffffff610ed916565b600160a060020a033381166000908152600160205260408082209390935590851681522054610f85908363ffffffff610fd416565b600160a060020a0380851660008181526001602052604090819020939093559133909116906000805160206110c38339815191529085905190815260200160405180910390a350600192915050565b60008282018381101561050457fe5b61100f8151600354600160a060020a03166000908152600160205260409020549063ffffffff610ed916565b600354600160a060020a031660009081526001602052604090205561105481516000805260016020526000805160206110a3833981519152549063ffffffff610fd416565b600080805260016020526000805160206110a383398151915291909155600354600160a060020a03166000805160206110c3833981519152835160405190815260200160405180910390a3505600a6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb49ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820620a0d4c461d93207223d428f1a75e757673853d179c3109aaf8a9c8675823900029a6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb49ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000000000000000000000000000000000005aed5670

Deployed Bytecode

0x6060604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461014d578063095ea7b3146101d757806318160ddd1461020d5780631f35bc401461023257806323b872dd146102535780632690f0d51461027b578063313ce567146102b457806331d2f891146102dd5780633e0a322d1461030c5780633f4ba83a146103225780635c975abb14610335578063661884631461034857806370a082311461036a57806378e97925146103895780638456cb591461039c5780638da5cb5b146103af57806395d89b41146103c2578063a27a9e7f146103d5578063a9059cbb146103e8578063b84997501461040a578063ba72cc361461041d578063d135cc4b14610430578063d73dd62314610443578063dd62ed3e14610465578063f2fde38b1461048a575b600080fd5b341561015857600080fd5b6101606104a9565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019c578082015183820152602001610184565b50505050905090810190601f1680156101c95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101e257600080fd5b6101f9600160a060020a03600435166024356104e0565b604051901515815260200160405180910390f35b341561021857600080fd5b61022061050b565b60405190815260200160405180910390f35b341561023d57600080fd5b610251600160a060020a036004351661051b565b005b341561025e57600080fd5b6101f9600160a060020a0360043581169060243516604435610586565b341561028657600080fd5b61028e6105bf565b604051928352602083019190915215156040808301919091526060909101905180910390f35b34156102bf57600080fd5b6102c76105ce565b60405160ff909116815260200160405180910390f35b34156102e857600080fd5b6102f06105d3565b604051600160a060020a03909116815260200160405180910390f35b341561031757600080fd5b6102516004356105e2565b341561032d57600080fd5b61025161060c565b341561034057600080fd5b6101f961068b565b341561035357600080fd5b6101f9600160a060020a036004351660243561069b565b341561037557600080fd5b610220600160a060020a03600435166106bf565b341561039457600080fd5b6102206106da565b34156103a757600080fd5b6102516106e0565b34156103ba57600080fd5b6102f0610764565b34156103cd57600080fd5b610160610773565b34156103e057600080fd5b6102206107aa565b34156103f357600080fd5b6101f9600160a060020a03600435166024356107ba565b341561041557600080fd5b61028e6107eb565b341561042857600080fd5b61028e6107fa565b341561043b57600080fd5b610251610809565b341561044e57600080fd5b6101f9600160a060020a0360043516602435610904565b341561047057600080fd5b610220600160a060020a0360043581169060243516610928565b341561049557600080fd5b610251600160a060020a0360043516610953565b60408051908101604052600681527f4f626972756d0000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff16156104fa57600080fd5b6105048383610986565b9392505050565b6b07702b760d96c0cdbe00000081565b60035433600160a060020a0390811691161461053657600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03838116919091179182905561057b91166b03b815bb06cb6066df0000006104e0565b151561058357fe5b50565b60006004544210156105ac57600354600160a060020a038581169116146105ac57600080fd5b6105b78484846109f2565b949350505050565b60065460075460085460ff1683565b601281565b600554600160a060020a031681565b60055433600160a060020a039081169116146105fd57600080fd5b60045481101561058357600455565b60035433600160a060020a0390811691161461062757600080fd5b60035460a060020a900460ff16151561063f57600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156106b557600080fd5b6105048383610a17565b600160a060020a031660009081526001602052604090205490565b60045481565b60035433600160a060020a039081169116146106fb57600080fd5b60035460a060020a900460ff161561071257600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600354600160a060020a031681565b60408051908101604052600381527f4f42520000000000000000000000000000000000000000000000000000000000602082015281565b6b03b815bb06cb6066df00000081565b60006004544210156107e15760035433600160a060020a039081169116146107e157600080fd5b6105048383610b11565b600c54600d54600e5460ff1683565b600954600a54600b5460ff1683565b60035433600160a060020a0390811691161461082457600080fd5b61085b600660606040519081016040908152825482526001830154602083015260029092015460ff16151591810191909152610b35565b1561086e576008805460ff191660011790555b6108a5600960606040519081016040908152825482526001830154602083015260029092015460ff16151591810191909152610b35565b156108b857600b805460ff191660011790555b6108ef600c60606040519081016040908152825482526001830154602083015260029092015460ff16151591810191909152610b35565b1561090257600e805460ff191660011790555b565b60035460009060a060020a900460ff161561091e57600080fd5b6105048383610c2a565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a0390811691161461096e57600080fd5b60045442101561097d57600080fd5b61058381610cce565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60035460009060a060020a900460ff1615610a0c57600080fd5b6105b7848484610d69565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610a7457600160a060020a033381166000908152600260209081526040808320938816835292905290812055610aab565b610a84818463ffffffff610ed916565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b60035460009060a060020a900460ff1615610b2b57600080fd5b6105048383610eeb565b60008082602001516004540190504281108015610b5457508260400151155b15610c1f57610b858351600354600160a060020a03166000908152600160205260409020549063ffffffff610fd416565b600354600160a060020a0316600090815260016020526040902055610bca83516000805260016020526000805160206110a3833981519152549063ffffffff610ed916565b600080805260016020526000805160206110a383398151915291909155600354600160a060020a0316906000805160206110c3833981519152855160405190815260200160405180910390a360019150610c24565b600091505b50919050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610c62908363ffffffff610fd416565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b60035433600160a060020a03908116911614610ce957600080fd5b600160a060020a0381161515610cfe57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000600160a060020a0383161515610d8057600080fd5b600160a060020a038416600090815260016020526040902054821115610da557600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610dd857600080fd5b600160a060020a038416600090815260016020526040902054610e01908363ffffffff610ed916565b600160a060020a038086166000908152600160205260408082209390935590851681522054610e36908363ffffffff610fd416565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610e7e908363ffffffff610ed916565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516916000805160206110c38339815191529085905190815260200160405180910390a35060019392505050565b600082821115610ee557fe5b50900390565b6000600160a060020a0383161515610f0257600080fd5b600160a060020a033316600090815260016020526040902054821115610f2757600080fd5b600160a060020a033316600090815260016020526040902054610f50908363ffffffff610ed916565b600160a060020a033381166000908152600160205260408082209390935590851681522054610f85908363ffffffff610fd416565b600160a060020a0380851660008181526001602052604090819020939093559133909116906000805160206110c38339815191529085905190815260200160405180910390a350600192915050565b60008282018381101561050457fe5b61100f8151600354600160a060020a03166000908152600160205260409020549063ffffffff610ed916565b600354600160a060020a031660009081526001602052604090205561105481516000805260016020526000805160206110a3833981519152549063ffffffff610fd416565b600080805260016020526000805160206110a383398151915291909155600354600160a060020a03166000805160206110c3833981519152835160405190815260200160405180910390a3505600a6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb49ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820620a0d4c461d93207223d428f1a75e757673853d179c3109aaf8a9c8675823900029

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

000000000000000000000000000000000000000000000000000000005aed5670

-----Decoded View---------------
Arg [0] : lockTill (uint256): 1525503600

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000005aed5670


Swarm Source

bzzr://620a0d4c461d93207223d428f1a75e757673853d179c3109aaf8a9c867582390

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  ]

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.