ETH Price: $2,045.72 (+1.08%)
Gas: 0.03 Gwei

Contract

0x258F55d71CD6e2CC73f962f24E4d915EcF2e869C
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

Advanced mode:
Parent Transaction Hash Method Block
From
To
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xAa767692...2aB068edd
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
CucunToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-12-13
*/

pragma solidity ^0.4.24;

  /**
   * @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 SafeMath
   * @dev Math operations with safety checks that throw on error
   * @notice https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/math/SafeMath.sol
   */
  library SafeMath {
  	/**
  	 * SafeMath mul function
  	 * @dev function for safe multiply, throws on overflow.
  	 **/
  	function mul(uint256 a, uint256 b) internal pure returns (uint256) {
  		uint256 c = a * b;
  		assert(a == 0 || c / a == b);
  		return c;
  	}

  	/**
  	 * SafeMath div funciotn
  	 * @dev function for safe devide, throws on overflow.
  	 **/
  	function div(uint256 a, uint256 b) internal pure returns (uint256) {
  		uint256 c = a / b;
  		return c;
  	}

  	/**
  	 * SafeMath sub function
  	 * @dev function for safe subtraction, throws on overflow.
  	 **/
  	function sub(uint256 a, uint256 b) internal pure returns (uint256) {
  		assert(b <= a);
  		return a - b;
  	}

  	/**
  	 * SafeMath add function
  	 * @dev Adds two numbers, throws on overflow.
  	 */
  	function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
  		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;

    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]);

      balances[msg.sender] = balances[msg.sender].sub(_value);
      balances[_to] = balances[_to].add(_value);
      emit 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) {
      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);
      emit 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;
      emit 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));
      emit 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);
      }

      emit 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 OwnershipRenounced(address indexed previousOwner);
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);


    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor() 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));
      emit OwnershipTransferred(owner, newOwner);
      owner = newOwner;
    }

    /**
     * @dev Allows the current owner to relinquish control of the contract.
     */
    function renounceOwnership() public onlyOwner {
      emit OwnershipRenounced(owner);
      owner = address(0);
    }
  }



  /**
   * @title Pausable token
   * @dev StandardToken modified with pausable transfers.
   **/
  contract CucunToken is StandardToken, Ownable {
      string public name;// = "Cucu Token";
      string public symbol;// = "CUCU";
      uint256 public decimals;// = 8;
      uint256 public initial_supply;// = 100000000000;// 1000 억
      uint lastActionId = 0;
      bool public isPauseOn = false;

      modifier ifNotPaused(){
        require(!isPauseOn || msg.sender == owner);
        _;
      }

      function _doPause(uint act) public{
        lastActionId = act;
        require(msg.sender == owner);
        isPauseOn = true;
      }

      function _doUnpause(uint act) public{
        lastActionId = act;
        require(msg.sender == owner);
        isPauseOn = false;
      }

      /**
       * @dev Transfer tokens when not paused
       **/
      function transfer(address _to, uint256 _value) public ifNotPaused returns (bool) {
          return super.transfer(_to, _value);
      }

      /**
       * @dev transferFrom function to tansfer tokens when token is not paused
       **/
      function transferFrom(address _from, address _to, uint256 _value) public ifNotPaused returns (bool) {
          return super.transferFrom(_from, _to, _value);
      }

      /**
       * @dev approve spender when not paused
       **/
      function approve(address _spender, uint256 _value) public ifNotPaused returns (bool) {
          return super.approve(_spender, _value);
      }

      /**
       * @dev increaseApproval of spender when not paused
       **/
      function increaseApproval(address _spender, uint _addedValue) public ifNotPaused returns (bool success) {
          return super.increaseApproval(_spender, _addedValue);
      }

      /**
       * @dev decreaseApproval of spender when not paused
       **/
      function decreaseApproval(address _spender, uint _subtractedValue) public ifNotPaused returns (bool success) {
          return super.decreaseApproval(_spender, _subtractedValue);
      }


      // Mint more tokens
      function _mint(uint mint_amt) public onlyOwner{
          totalSupply_ = totalSupply_.add(mint_amt);
          balances[owner] = balances[owner].add(mint_amt);
      }

      /**
     * Pausable Token Constructor
     * @dev Create and issue tokens to msg.sender.
     */
    constructor() public {
      name = "Cucu Token";
      symbol = "CUCU";
      decimals = 8;
      initial_supply = 10000000000000000000;

      totalSupply_ = initial_supply;
      balances[msg.sender] = initial_supply;
    }
  }

Contract Security Audit

Contract ABI

API
[{"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":"initial_supply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"mint_amt","type":"uint256"}],"name":"_mint","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":"act","type":"uint256"}],"name":"_doUnpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"act","type":"uint256"}],"name":"_doPause","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","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":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isPauseOn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","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":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","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"}]

0x608060405260006008556009805460ff1916905534801561001f57600080fd5b5060038054600160a060020a0319163317905560408051808201909152600a8082527f4375637520546f6b656e000000000000000000000000000000000000000000006020909201918252610076916004916100e9565b506040805180820190915260048082527f435543550000000000000000000000000000000000000000000000000000000060209092019182526100bb916005916100e9565b506008600655678ac7230489e800006007819055600181905533600090815260208190526040902055610184565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061012a57805160ff1916838001178555610157565b82800160010185558215610157579182015b8281111561015757825182559160200191906001019061013c565b50610163929150610167565b5090565b61018191905b80821115610163576000815560010161016d565b90565b610caa806101936000396000f3006080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461010b578063095ea7b31461019557806318160ddd146101cd57806323b872dd146101f45780632405e3c61461021e5780632c52619614610233578063313ce5671461024d5780634a870f38146102625780634f1cf6481461027a578063661884631461029257806370a08231146102b6578063715018a6146102d75780638da5cb5b146102ec57806395d89b411461031d578063a9059cbb14610332578063b5dff56014610356578063d73dd6231461036b578063dd62ed3e1461038f578063f2fde38b146103b6575b600080fd5b34801561011757600080fd5b506101206103d7565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015a578181015183820152602001610142565b50505050905090810190601f1680156101875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a157600080fd5b506101b9600160a060020a0360043516602435610465565b604080519115158252519081900360200190f35b3480156101d957600080fd5b506101e26104a0565b60408051918252519081900360200190f35b34801561020057600080fd5b506101b9600160a060020a03600435811690602435166044356104a6565b34801561022a57600080fd5b506101e26104e3565b34801561023f57600080fd5b5061024b6004356104e9565b005b34801561025957600080fd5b506101e261055f565b34801561026e57600080fd5b5061024b600435610565565b34801561028657600080fd5b5061024b60043561058e565b34801561029e57600080fd5b506101b9600160a060020a03600435166024356105ba565b3480156102c257600080fd5b506101e2600160a060020a03600435166105ee565b3480156102e357600080fd5b5061024b610609565b3480156102f857600080fd5b50610301610677565b60408051600160a060020a039092168252519081900360200190f35b34801561032957600080fd5b50610120610686565b34801561033e57600080fd5b506101b9600160a060020a03600435166024356106e1565b34801561036257600080fd5b506101b9610715565b34801561037757600080fd5b506101b9600160a060020a036004351660243561071e565b34801561039b57600080fd5b506101e2600160a060020a0360043581169060243516610752565b3480156103c257600080fd5b5061024b600160a060020a036004351661077d565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561045d5780601f106104325761010080835404028352916020019161045d565b820191906000526020600020905b81548152906001019060200180831161044057829003601f168201915b505050505081565b60095460009060ff1615806104845750600354600160a060020a031633145b151561048f57600080fd5b6104998383610812565b9392505050565b60015490565b60095460009060ff1615806104c55750600354600160a060020a031633145b15156104d057600080fd5b6104db848484610878565b949350505050565b60075481565b600354600160a060020a0316331461050057600080fd5b600154610513908263ffffffff6109ef16565b600155600354600160a060020a0316600090815260208190526040902054610541908263ffffffff6109ef16565b600354600160a060020a031660009081526020819052604090205550565b60065481565b6008819055600354600160a060020a0316331461058157600080fd5b506009805460ff19169055565b6008819055600354600160a060020a031633146105aa57600080fd5b506009805460ff19166001179055565b60095460009060ff1615806105d95750600354600160a060020a031633145b15156105e457600080fd5b6104998383610a02565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a0316331461062057600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561045d5780601f106104325761010080835404028352916020019161045d565b60095460009060ff1615806107005750600354600160a060020a031633145b151561070b57600080fd5b6104998383610af2565b60095460ff1681565b60095460009060ff16158061073d5750600354600160a060020a031633145b151561074857600080fd5b6104998383610bd3565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461079457600080fd5b600160a060020a03811615156107a957600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a038316151561088f57600080fd5b600160a060020a0384166000908152602081905260409020548211156108b457600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156108e457600080fd5b600160a060020a03841660009081526020819052604090205461090d908363ffffffff610c6c16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610942908363ffffffff6109ef16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610984908363ffffffff610c6c16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b818101828110156109fc57fe5b92915050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610a5757336000908152600260209081526040808320600160a060020a0388168452909152812055610a8c565b610a67818463ffffffff610c6c16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a0383161515610b0957600080fd5b33600090815260208190526040902054821115610b2557600080fd5b33600090815260208190526040902054610b45908363ffffffff610c6c16565b3360009081526020819052604080822092909255600160a060020a03851681522054610b77908363ffffffff6109ef16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610c07908363ffffffff6109ef16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600082821115610c7857fe5b509003905600a165627a7a72305820590ca6469f118823cd2137ef059e874d44eba0655530c83c698727776edb7a310029

Deployed Bytecode

0x6080604052600436106101065763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461010b578063095ea7b31461019557806318160ddd146101cd57806323b872dd146101f45780632405e3c61461021e5780632c52619614610233578063313ce5671461024d5780634a870f38146102625780634f1cf6481461027a578063661884631461029257806370a08231146102b6578063715018a6146102d75780638da5cb5b146102ec57806395d89b411461031d578063a9059cbb14610332578063b5dff56014610356578063d73dd6231461036b578063dd62ed3e1461038f578063f2fde38b146103b6575b600080fd5b34801561011757600080fd5b506101206103d7565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015a578181015183820152602001610142565b50505050905090810190601f1680156101875780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a157600080fd5b506101b9600160a060020a0360043516602435610465565b604080519115158252519081900360200190f35b3480156101d957600080fd5b506101e26104a0565b60408051918252519081900360200190f35b34801561020057600080fd5b506101b9600160a060020a03600435811690602435166044356104a6565b34801561022a57600080fd5b506101e26104e3565b34801561023f57600080fd5b5061024b6004356104e9565b005b34801561025957600080fd5b506101e261055f565b34801561026e57600080fd5b5061024b600435610565565b34801561028657600080fd5b5061024b60043561058e565b34801561029e57600080fd5b506101b9600160a060020a03600435166024356105ba565b3480156102c257600080fd5b506101e2600160a060020a03600435166105ee565b3480156102e357600080fd5b5061024b610609565b3480156102f857600080fd5b50610301610677565b60408051600160a060020a039092168252519081900360200190f35b34801561032957600080fd5b50610120610686565b34801561033e57600080fd5b506101b9600160a060020a03600435166024356106e1565b34801561036257600080fd5b506101b9610715565b34801561037757600080fd5b506101b9600160a060020a036004351660243561071e565b34801561039b57600080fd5b506101e2600160a060020a0360043581169060243516610752565b3480156103c257600080fd5b5061024b600160a060020a036004351661077d565b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561045d5780601f106104325761010080835404028352916020019161045d565b820191906000526020600020905b81548152906001019060200180831161044057829003601f168201915b505050505081565b60095460009060ff1615806104845750600354600160a060020a031633145b151561048f57600080fd5b6104998383610812565b9392505050565b60015490565b60095460009060ff1615806104c55750600354600160a060020a031633145b15156104d057600080fd5b6104db848484610878565b949350505050565b60075481565b600354600160a060020a0316331461050057600080fd5b600154610513908263ffffffff6109ef16565b600155600354600160a060020a0316600090815260208190526040902054610541908263ffffffff6109ef16565b600354600160a060020a031660009081526020819052604090205550565b60065481565b6008819055600354600160a060020a0316331461058157600080fd5b506009805460ff19169055565b6008819055600354600160a060020a031633146105aa57600080fd5b506009805460ff19166001179055565b60095460009060ff1615806105d95750600354600160a060020a031633145b15156105e457600080fd5b6104998383610a02565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a0316331461062057600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561045d5780601f106104325761010080835404028352916020019161045d565b60095460009060ff1615806107005750600354600160a060020a031633145b151561070b57600080fd5b6104998383610af2565b60095460ff1681565b60095460009060ff16158061073d5750600354600160a060020a031633145b151561074857600080fd5b6104998383610bd3565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461079457600080fd5b600160a060020a03811615156107a957600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a038316151561088f57600080fd5b600160a060020a0384166000908152602081905260409020548211156108b457600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156108e457600080fd5b600160a060020a03841660009081526020819052604090205461090d908363ffffffff610c6c16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610942908363ffffffff6109ef16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610984908363ffffffff610c6c16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b818101828110156109fc57fe5b92915050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610a5757336000908152600260209081526040808320600160a060020a0388168452909152812055610a8c565b610a67818463ffffffff610c6c16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a0383161515610b0957600080fd5b33600090815260208190526040902054821115610b2557600080fd5b33600090815260208190526040902054610b45908363ffffffff610c6c16565b3360009081526020819052604080822092909255600160a060020a03851681522054610b77908363ffffffff6109ef16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610c07908363ffffffff6109ef16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600082821115610c7857fe5b509003905600a165627a7a72305820590ca6469f118823cd2137ef059e874d44eba0655530c83c698727776edb7a310029

Swarm Source

bzzr://590ca6469f118823cd2137ef059e874d44eba0655530c83c698727776edb7a31

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

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.