ETH Price: $3,568.10 (-1.21%)

Contract

0x1f88caC675a37B649646860746F25F58e21B99F2
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer155835202022-09-21 18:26:35804 days ago1663784795IN
0x1f88caC6...8e21B99F2
0 ETH0.0014063328.46263129
Transfer140281872022-01-18 7:35:491050 days ago1642491349IN
0x1f88caC6...8e21B99F2
0 ETH0.003949179.96410031
Transfer134628392021-10-21 19:18:121138 days ago1634843892IN
0x1f88caC6...8e21B99F2
0 ETH0.0032143265.0540975
Transfer103712472020-07-01 3:45:591616 days ago1593575159IN
0x1f88caC6...8e21B99F2
0 ETH0.0023899545.00000145
Transfer101212802020-05-23 9:23:561655 days ago1590225836IN
0x1f88caC6...8e21B99F2
0 ETH0.0006901113
Transfer99908132020-05-03 3:30:411675 days ago1588476641IN
0x1f88caC6...8e21B99F2
0 ETH0.000762220
Transfer95572312020-02-26 5:29:191742 days ago1582694959IN
0x1f88caC6...8e21B99F2
0 ETH0.000046192
Transfer94226582020-02-05 12:37:181763 days ago1580906238IN
0x1f88caC6...8e21B99F2
0 ETH0.000342889
Transfer93063562020-01-18 16:28:411781 days ago1579364921IN
0x1f88caC6...8e21B99F2
0 ETH0.000023071
Transfer93045632020-01-18 10:00:581781 days ago1579341658IN
0x1f88caC6...8e21B99F2
0 ETH0.000024021
Transfer93045582020-01-18 9:59:581781 days ago1579341598IN
0x1f88caC6...8e21B99F2
0 ETH0.000038071
Transfer92548562020-01-10 19:03:361789 days ago1578683016IN
0x1f88caC6...8e21B99F2
0 ETH0.0011422230
Transfer92453662020-01-09 8:24:161790 days ago1578558256IN
0x1f88caC6...8e21B99F2
0 ETH0.000762220
Transfer92445702020-01-09 5:20:431790 days ago1578547243IN
0x1f88caC6...8e21B99F2
0 ETH0.0010593727.81523968
Transfer91699142019-12-27 8:25:201803 days ago1577435120IN
0x1f88caC6...8e21B99F2
0 ETH0.000371687
Transfer90245752019-11-30 3:22:341830 days ago1575084154IN
0x1f88caC6...8e21B99F2
0 ETH0.000133786
Transfer90234202019-11-29 22:18:281830 days ago1575065908IN
0x1f88caC6...8e21B99F2
0 ETH0.000313786
Transfer90234192019-11-29 22:17:431830 days ago1575065863IN
0x1f88caC6...8e21B99F2
0 ETH0.000313786
Transfer90234122019-11-29 22:15:111830 days ago1575065711IN
0x1f88caC6...8e21B99F2
0 ETH0.000313786
Transfer90234112019-11-29 22:15:091830 days ago1575065709IN
0x1f88caC6...8e21B99F2
0 ETH0.000313786
Transfer90234092019-11-29 22:14:501830 days ago1575065690IN
0x1f88caC6...8e21B99F2
0 ETH0.000313786
Transfer90234082019-11-29 22:14:331830 days ago1575065673IN
0x1f88caC6...8e21B99F2
0 ETH0.000313786
Transfer90234072019-11-29 22:14:021830 days ago1575065642IN
0x1f88caC6...8e21B99F2
0 ETH0.000313786
Transfer90234072019-11-29 22:14:021830 days ago1575065642IN
0x1f88caC6...8e21B99F2
0 ETH0.00031346
Transfer90234032019-11-29 22:13:181830 days ago1575065598IN
0x1f88caC6...8e21B99F2
0 ETH0.000313786
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:
NewIntelTechMedia

Compiler Version
v0.4.25+commit.59dbf8f1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-09-26
*/

pragma solidity ^0.4.25;


/**
 * @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 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 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 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;
  event Transfer(address indexed from, address indexed to, 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;

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

  /**
  * @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;
  function approve(address spender, uint256 value) public;
  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 {
    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);
  }

  /**
   * @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 {
    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
  }

  /**
   * @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 {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
  }

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

}


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

contract PausableToken is StandardToken, Pausable {

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

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

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

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

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

/// @title NewIntelTechMedia Contract
contract NewIntelTechMedia is PausableToken {
    using SafeMath for uint256;

    /// Constant token specific fields
    string public constant name = "NewIntelTechMedia";
    string public constant symbol = "NETM";
    uint256 public constant decimals = 18;

    /**
     * CONSTRUCTOR 
     * 
     */
    function NewIntelTechMedia(address _owner) 
        public 
        {
        totalSupply = 500000000000000000000000000;
        owner = _owner;
        paused = false;
        
        balances[owner] = totalSupply;
        Transfer(address(0), owner, 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":[],"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":[],"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":"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":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[],"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":"_owner","type":"address"}],"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"}]

60806040526003805460a060020a60ff021916905534801561002057600080fd5b50604051602080610bd98339810160408181529151600380546b019d971e4fe8401e74000000600081815533600160a060020a031993841617909216600160a060020a038086169190911760a060020a60ff0219811685558116835260016020908152878420839055935491865295519395169390927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350610b08806100d16000396000f3006080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806318160ddd1461019a57806323b872dd146101c1578063313ce567146101eb5780633f4ba83a146102005780635c975abb14610215578063661884631461023e57806370a08231146102625780638456cb59146102835780638da5cb5b1461029857806395d89b41146102c9578063a9059cbb146102de578063d73dd62314610302578063dd62ed3e14610326578063f2fde38b1461034d575b600080fd5b3480156100f657600080fd5b506100ff61036e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b50610198600160a060020a03600435166024356103a5565b005b3480156101a657600080fd5b506101af6103ca565b60408051918252519081900360200190f35b3480156101cd57600080fd5b50610198600160a060020a03600435811690602435166044356103d0565b3480156101f757600080fd5b506101af6103f7565b34801561020c57600080fd5b506101986103fc565b34801561022157600080fd5b5061022a610474565b604080519115158252519081900360200190f35b34801561024a57600080fd5b50610198600160a060020a0360043516602435610484565b34801561026e57600080fd5b506101af600160a060020a03600435166104a5565b34801561028f57600080fd5b506101986104c0565b3480156102a457600080fd5b506102ad61053d565b60408051600160a060020a039092168252519081900360200190f35b3480156102d557600080fd5b506100ff61054c565b3480156102ea57600080fd5b50610198600160a060020a0360043516602435610583565b34801561030e57600080fd5b50610198600160a060020a03600435166024356105a4565b34801561033257600080fd5b506101af600160a060020a03600435811690602435166105c5565b34801561035957600080fd5b50610198600160a060020a03600435166105f0565b60408051808201909152601181527f4e6577496e74656c546563684d65646961000000000000000000000000000000602082015281565b60035460a060020a900460ff16156103bc57600080fd5b6103c68282610685565b5050565b60005481565b60035460a060020a900460ff16156103e757600080fd5b6103f28383836106e7565b505050565b601281565b600354600160a060020a0316331461041357600080fd5b60035460a060020a900460ff16151561042b57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460a060020a900460ff1681565b60035460a060020a900460ff161561049b57600080fd5b6103c68282610859565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a031633146104d757600080fd5b60035460a060020a900460ff16156104ee57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600481527f4e45544d00000000000000000000000000000000000000000000000000000000602082015281565b60035460a060020a900460ff161561059a57600080fd5b6103c68282610944565b60035460a060020a900460ff16156105bb57600080fd5b6103c68282610a20565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461060757600080fd5b600160a060020a038116151561061c57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a03871680855290835292819020859055805185815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35050565b600160a060020a03821615156106fc57600080fd5b600160a060020a03831660009081526001602052604090205481111561072157600080fd5b600160a060020a038316600090815260026020908152604080832033845290915290205481111561075157600080fd5b600160a060020a03831660009081526001602052604090205461077a908263ffffffff610ab416565b600160a060020a0380851660009081526001602052604080822093909355908416815220546107af908263ffffffff610ac616565b600160a060020a0380841660009081526001602090815260408083209490945591861681526002825282812033825290915220546107f3908263ffffffff610ab416565b600160a060020a03808516600081815260026020908152604080832033845282529182902094909455805185815290519286169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3505050565b336000908152600260209081526040808320600160a060020a0386168452909152902054808211156108ae57336000908152600260209081526040808320600160a060020a03871684529091528120556108e3565b6108be818363ffffffff610ab416565b336000908152600260209081526040808320600160a060020a03881684529091529020555b336000818152600260209081526040808320600160a060020a0388168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3505050565b600160a060020a038216151561095957600080fd5b3360009081526001602052604090205481111561097557600080fd5b33600090815260016020526040902054610995908263ffffffff610ab416565b3360009081526001602052604080822092909255600160a060020a038416815220546109c7908263ffffffff610ac616565b600160a060020a0383166000818152600160209081526040918290209390935580518481529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b336000908152600260209081526040808320600160a060020a0386168452909152902054610a54908263ffffffff610ac616565b336000818152600260209081526040808320600160a060020a0388168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a35050565b600082821115610ac057fe5b50900390565b600082820183811015610ad557fe5b93925050505600a165627a7a72305820da34c3a1e79eac22a1d2577c6a79aaaa61ada296c25b4241398adc981ba56cbc00290000000000000000000000005f1b060fe46561e9800caadef8fb1d8643388b16

Deployed Bytecode

0x6080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806318160ddd1461019a57806323b872dd146101c1578063313ce567146101eb5780633f4ba83a146102005780635c975abb14610215578063661884631461023e57806370a08231146102625780638456cb59146102835780638da5cb5b1461029857806395d89b41146102c9578063a9059cbb146102de578063d73dd62314610302578063dd62ed3e14610326578063f2fde38b1461034d575b600080fd5b3480156100f657600080fd5b506100ff61036e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b50610198600160a060020a03600435166024356103a5565b005b3480156101a657600080fd5b506101af6103ca565b60408051918252519081900360200190f35b3480156101cd57600080fd5b50610198600160a060020a03600435811690602435166044356103d0565b3480156101f757600080fd5b506101af6103f7565b34801561020c57600080fd5b506101986103fc565b34801561022157600080fd5b5061022a610474565b604080519115158252519081900360200190f35b34801561024a57600080fd5b50610198600160a060020a0360043516602435610484565b34801561026e57600080fd5b506101af600160a060020a03600435166104a5565b34801561028f57600080fd5b506101986104c0565b3480156102a457600080fd5b506102ad61053d565b60408051600160a060020a039092168252519081900360200190f35b3480156102d557600080fd5b506100ff61054c565b3480156102ea57600080fd5b50610198600160a060020a0360043516602435610583565b34801561030e57600080fd5b50610198600160a060020a03600435166024356105a4565b34801561033257600080fd5b506101af600160a060020a03600435811690602435166105c5565b34801561035957600080fd5b50610198600160a060020a03600435166105f0565b60408051808201909152601181527f4e6577496e74656c546563684d65646961000000000000000000000000000000602082015281565b60035460a060020a900460ff16156103bc57600080fd5b6103c68282610685565b5050565b60005481565b60035460a060020a900460ff16156103e757600080fd5b6103f28383836106e7565b505050565b601281565b600354600160a060020a0316331461041357600080fd5b60035460a060020a900460ff16151561042b57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b60035460a060020a900460ff1681565b60035460a060020a900460ff161561049b57600080fd5b6103c68282610859565b600160a060020a031660009081526001602052604090205490565b600354600160a060020a031633146104d757600080fd5b60035460a060020a900460ff16156104ee57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b60408051808201909152600481527f4e45544d00000000000000000000000000000000000000000000000000000000602082015281565b60035460a060020a900460ff161561059a57600080fd5b6103c68282610944565b60035460a060020a900460ff16156105bb57600080fd5b6103c68282610a20565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461060757600080fd5b600160a060020a038116151561061c57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a03871680855290835292819020859055805185815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35050565b600160a060020a03821615156106fc57600080fd5b600160a060020a03831660009081526001602052604090205481111561072157600080fd5b600160a060020a038316600090815260026020908152604080832033845290915290205481111561075157600080fd5b600160a060020a03831660009081526001602052604090205461077a908263ffffffff610ab416565b600160a060020a0380851660009081526001602052604080822093909355908416815220546107af908263ffffffff610ac616565b600160a060020a0380841660009081526001602090815260408083209490945591861681526002825282812033825290915220546107f3908263ffffffff610ab416565b600160a060020a03808516600081815260026020908152604080832033845282529182902094909455805185815290519286169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3505050565b336000908152600260209081526040808320600160a060020a0386168452909152902054808211156108ae57336000908152600260209081526040808320600160a060020a03871684529091528120556108e3565b6108be818363ffffffff610ab416565b336000908152600260209081526040808320600160a060020a03881684529091529020555b336000818152600260209081526040808320600160a060020a0388168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3505050565b600160a060020a038216151561095957600080fd5b3360009081526001602052604090205481111561097557600080fd5b33600090815260016020526040902054610995908263ffffffff610ab416565b3360009081526001602052604080822092909255600160a060020a038416815220546109c7908263ffffffff610ac616565b600160a060020a0383166000818152600160209081526040918290209390935580518481529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b336000908152600260209081526040808320600160a060020a0386168452909152902054610a54908263ffffffff610ac616565b336000818152600260209081526040808320600160a060020a0388168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a35050565b600082821115610ac057fe5b50900390565b600082820183811015610ad557fe5b93925050505600a165627a7a72305820da34c3a1e79eac22a1d2577c6a79aaaa61ada296c25b4241398adc981ba56cbc0029

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

0000000000000000000000005f1b060fe46561e9800caadef8fb1d8643388b16

-----Decoded View---------------
Arg [0] : _owner (address): 0x5F1B060FE46561e9800caAdeF8FB1D8643388b16

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005f1b060fe46561e9800caadef8fb1d8643388b16


Swarm Source

bzzr://da34c3a1e79eac22a1d2577c6a79aaaa61ada296c25b4241398adc981ba56cbc

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.