ETH Price: $2,024.40 (+2.08%)

Contract

0xA06C78d64aDc57733bF4bE0718Fb91951f4b3c1d
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve220409312025-03-13 22:27:23382 days ago1741904843IN
0xA06C78d6...51f4b3c1d
0 ETH0.000041750.9
Transfer220406522025-03-13 21:31:35382 days ago1741901495IN
0xA06C78d6...51f4b3c1d
0 ETH0.000043460.92162175
Approve208511072024-09-28 19:04:59548 days ago1727550299IN
0xA06C78d6...51f4b3c1d
0 ETH0.000147016.09676819
Approve200155882024-06-04 2:51:35664 days ago1717469495IN
0xA06C78d6...51f4b3c1d
0 ETH0.000330447.16649828
Transfer200155482024-06-04 2:43:35664 days ago1717469015IN
0xA06C78d6...51f4b3c1d
0 ETH0.000315396.68802555
Approve163834922023-01-11 12:12:231174 days ago1673439143IN
0xA06C78d6...51f4b3c1d
0 ETH0.0010844623.37301909
Approve123697712021-05-04 19:59:461791 days ago1620158386IN
0xA06C78d6...51f4b3c1d
0 ETH0.0024590953
Approve119483672021-02-28 21:57:421856 days ago1614549462IN
0xA06C78d6...51f4b3c1d
0 ETH0.0037210384
Approve116960352021-01-21 2:07:141894 days ago1611194834IN
0xA06C78d6...51f4b3c1d
0 ETH0.0020952947.3
Transfer116960012021-01-21 1:59:041894 days ago1611194344IN
0xA06C78d6...51f4b3c1d
0 ETH0.001073648.4
Approve114922832020-12-20 20:06:221926 days ago1608494782IN
0xA06C78d6...51f4b3c1d
0 ETH0.0022897652
Approve114900602020-12-20 11:52:301926 days ago1608465150IN
0xA06C78d6...51f4b3c1d
0 ETH0.0013289430
Transfer114899582020-12-20 11:29:241926 days ago1608463764IN
0xA06C78d6...51f4b3c1d
0 ETH0.0009809726.40000023
Approve114681912020-12-17 3:23:151929 days ago1608175395IN
0xA06C78d6...51f4b3c1d
0 ETH0.00584733132
Transfer114681242020-12-17 3:09:061929 days ago1608174546IN
0xA06C78d6...51f4b3c1d
0 ETH0.00226011102
Approve114588262020-12-15 16:50:131931 days ago1608051013IN
0xA06C78d6...51f4b3c1d
0 ETH0.0025692858
Approve114343232020-12-11 22:16:591935 days ago1607725019IN
0xA06C78d6...51f4b3c1d
0 ETH0.0007529430
Approve114343072020-12-11 22:14:271935 days ago1607724867IN
0xA06C78d6...51f4b3c1d
0 ETH0.0016445637.125
Approve113930542020-12-05 14:03:561941 days ago1607177036IN
0xA06C78d6...51f4b3c1d
0 ETH0.0010188523
Transfer112390782020-11-11 22:44:381965 days ago1605134678IN
0xA06C78d6...51f4b3c1d
0 ETH0.0018033248.5
Approve112390362020-11-11 22:36:331965 days ago1605134193IN
0xA06C78d6...51f4b3c1d
0 ETH0.0004060316.17799758
Approve112390362020-11-11 22:36:331965 days ago1605134193IN
0xA06C78d6...51f4b3c1d
0 ETH0.0007166516.17799758
Approve111863562020-11-03 20:30:341973 days ago1604435434IN
0xA06C78d6...51f4b3c1d
0 ETH0.0006777515.3
Transfer111463662020-10-28 16:54:211979 days ago1603904061IN
0xA06C78d6...51f4b3c1d
0 ETH0.0020021653.9
Approve111335082020-10-26 17:56:321981 days ago1603734992IN
0xA06C78d6...51f4b3c1d
0 ETH0.00137747
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
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

Contract Source Code Verified (Exact Match)

Contract Name:
UniDAppToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2020-09-15
*/

pragma solidity ^0.4.24;

 /**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (_a == 0) {
      return 0;
    }

    c = _a * _b;
    assert(c / _a == _b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
    // assert(_b > 0); // Solidity automatically throws when dividing by 0
    // uint256 c = _a / _b;
    // assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold
    return _a / _b;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 _a, uint256 _b) internal pure returns (uint256) {
    assert(_b <= _a);
    return _a - _b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
    c = _a + _b;
    assert(c >= _a);
    return c;
  }
}


/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * 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 Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) internal balances;

  uint256 internal 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(_value <= balances[msg.sender]);
    require(_to != address(0));

    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 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.
 * https://github.com/ethereum/EIPs/issues/20
 * 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(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);
    require(_to != address(0));

    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,
    uint256 _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,
    uint256 _subtractedValue
  )
    public
    returns (bool)
  {
    uint256 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 UniDAppToken
 * @dev Simple ERC20 Token , where all tokens are pre-assigned to the initialAddress.
 * Note they can later distribute these tokens as they wish using `transfer` and other
 * `StandardToken` functions.
 */
contract UniDAppToken is StandardToken {

  string public constant name = "UniDApp";
  string public constant symbol = "UDP";
  uint8 public constant decimals = 18;

  uint256 public constant INITIAL_SUPPLY = 30000000 * (10 ** uint256(decimals));

  /**
   * @dev Constructor that gives initialAddress all of existing tokens.
   */
  constructor() public {
    totalSupply_ = INITIAL_SUPPLY;
    address initialAddress = 0x867Dc2Fd3Ed771d4b1816964392b949a9502e8D9 ;
    balances[initialAddress] = INITIAL_SUPPLY;
    emit Transfer(address(0), initialAddress, 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":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"}]

608060405234801561001057600080fd5b506a18d0bf423c03d8de000000600181905573867dc2fd3ed771d4b1816964392b949a9502e8d9600081815260208181527fadf9f6126b7a94b0a5e0b97ef99e9d95598499151cfffc4237265f98755e24998490556040805194855251929384937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35061083b806100ac6000396000f3006080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a75780632ff2e9dc146101d1578063313ce567146101e6578063661884631461021157806370a082311461023557806395d89b4114610256578063a9059cbb1461026b578063d73dd6231461028f578063dd62ed3e146102b3575b600080fd5b3480156100ca57600080fd5b506100d36102da565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a0360043516602435610311565b604080519115158252519081900360200190f35b34801561018c57600080fd5b50610195610377565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a036004358116906024351660443561037d565b3480156101dd57600080fd5b506101956104f2565b3480156101f257600080fd5b506101fb610501565b6040805160ff9092168252519081900360200190f35b34801561021d57600080fd5b5061016c600160a060020a0360043516602435610506565b34801561024157600080fd5b50610195600160a060020a03600435166105f5565b34801561026257600080fd5b506100d3610610565b34801561027757600080fd5b5061016c600160a060020a0360043516602435610647565b34801561029b57600080fd5b5061016c600160a060020a0360043516602435610726565b3480156102bf57600080fd5b50610195600160a060020a03600435811690602435166107bf565b60408051808201909152600781527f556e694441707000000000000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600160a060020a0383166000908152602081905260408120548211156103a257600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156103d257600080fd5b600160a060020a03831615156103e757600080fd5b600160a060020a038416600090815260208190526040902054610410908363ffffffff6107ea16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610445908363ffffffff6107fc16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610487908363ffffffff6107ea16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6a18d0bf423c03d8de00000081565b601281565b336000908152600260209081526040808320600160a060020a038616845290915281205480831061055a57336000908152600260209081526040808320600160a060020a038816845290915281205561058f565b61056a818463ffffffff6107ea16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600381527f5544500000000000000000000000000000000000000000000000000000000000602082015281565b3360009081526020819052604081205482111561066357600080fd5b600160a060020a038316151561067857600080fd5b33600090815260208190526040902054610698908363ffffffff6107ea16565b3360009081526020819052604080822092909255600160a060020a038516815220546106ca908363ffffffff6107fc16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205461075a908363ffffffff6107fc16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000828211156107f657fe5b50900390565b8181018281101561080957fe5b929150505600a165627a7a7230582004522604ae6f62511dcc395d19b8e24eeac3be247aea5cfdee94170293c872370029

Deployed Bytecode

0x6080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a75780632ff2e9dc146101d1578063313ce567146101e6578063661884631461021157806370a082311461023557806395d89b4114610256578063a9059cbb1461026b578063d73dd6231461028f578063dd62ed3e146102b3575b600080fd5b3480156100ca57600080fd5b506100d36102da565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a0360043516602435610311565b604080519115158252519081900360200190f35b34801561018c57600080fd5b50610195610377565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a036004358116906024351660443561037d565b3480156101dd57600080fd5b506101956104f2565b3480156101f257600080fd5b506101fb610501565b6040805160ff9092168252519081900360200190f35b34801561021d57600080fd5b5061016c600160a060020a0360043516602435610506565b34801561024157600080fd5b50610195600160a060020a03600435166105f5565b34801561026257600080fd5b506100d3610610565b34801561027757600080fd5b5061016c600160a060020a0360043516602435610647565b34801561029b57600080fd5b5061016c600160a060020a0360043516602435610726565b3480156102bf57600080fd5b50610195600160a060020a03600435811690602435166107bf565b60408051808201909152600781527f556e694441707000000000000000000000000000000000000000000000000000602082015281565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60015490565b600160a060020a0383166000908152602081905260408120548211156103a257600080fd5b600160a060020a03841660009081526002602090815260408083203384529091529020548211156103d257600080fd5b600160a060020a03831615156103e757600080fd5b600160a060020a038416600090815260208190526040902054610410908363ffffffff6107ea16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610445908363ffffffff6107fc16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610487908363ffffffff6107ea16565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b6a18d0bf423c03d8de00000081565b601281565b336000908152600260209081526040808320600160a060020a038616845290915281205480831061055a57336000908152600260209081526040808320600160a060020a038816845290915281205561058f565b61056a818463ffffffff6107ea16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60408051808201909152600381527f5544500000000000000000000000000000000000000000000000000000000000602082015281565b3360009081526020819052604081205482111561066357600080fd5b600160a060020a038316151561067857600080fd5b33600090815260208190526040902054610698908363ffffffff6107ea16565b3360009081526020819052604080822092909255600160a060020a038516815220546106ca908363ffffffff6107fc16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a038616845290915281205461075a908363ffffffff6107fc16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000828211156107f657fe5b50900390565b8181018281101561080957fe5b929150505600a165627a7a7230582004522604ae6f62511dcc395d19b8e24eeac3be247aea5cfdee94170293c872370029

Deployed Bytecode Sourcemap

7968:600:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8014:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8014:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8014:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5351:192;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5351:192:0;-1:-1:-1;;;;;5351:192:0;;;;;;;;;;;;;;;;;;;;;;;;;2168:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2168:85:0;;;;;;;;;;;;;;;;;;;;4235:487;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4235:487:0;-1:-1:-1;;;;;4235:487:0;;;;;;;;;;;;8142:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8142:77:0;;;;8100:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8100:35:0;;;;;;;;;;;;;;;;;;;;;;;7270:447;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7270:447:0;-1:-1:-1;;;;;7270:447:0;;;;;;;2952:101;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2952:101:0;-1:-1:-1;;;;;2952:101:0;;;;;8058:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8058:37:0;;;;2414:329;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2414:329:0;-1:-1:-1;;;;;2414:329:0;;;;;;;6495:307;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6495:307:0;-1:-1:-1;;;;;6495:307:0;;;;;;;5870:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5870:162:0;-1:-1:-1;;;;;5870:162:0;;;;;;;;;;8014:39;;;;;;;;;;;;;;;;;;;:::o;5351:192::-;5439:10;5418:4;5431:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5431:29:0;;;;;;;;;;;:38;;;5481;;;;;;;5418:4;;5431:29;;5439:10;;5481:38;;;;;;;;-1:-1:-1;5533:4:0;5351:192;;;;:::o;2168:85::-;2235:12;;2168:85;:::o;4235:487::-;-1:-1:-1;;;;;4381:15:0;;4347:4;4381:15;;;;;;;;;;;4371:25;;;4363:34;;;;;;-1:-1:-1;;;;;4422:14:0;;;;;;:7;:14;;;;;;;;4437:10;4422:26;;;;;;;;4412:36;;;4404:45;;;;;;-1:-1:-1;;;;;4464:17:0;;;;4456:26;;;;;;-1:-1:-1;;;;;4509:15:0;;:8;:15;;;;;;;;;;;:27;;4529:6;4509:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4491:15:0;;;:8;:15;;;;;;;;;;;:45;;;;4559:13;;;;;;;:25;;4577:6;4559:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4543:13:0;;;:8;:13;;;;;;;;;;;:41;;;;4620:14;;;;;:7;:14;;;;;4635:10;4620:26;;;;;;;:38;;4651:6;4620:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;4591:14:0;;;;;;;:7;:14;;;;;;;;4606:10;4591:26;;;;;;;;:67;;;;4670:28;;;;;;;;;;;4591:14;;4670:28;;;;;;;;;;;-1:-1:-1;4712:4:0;4235:487;;;;;:::o;8142:77::-;8183:36;8142:77;:::o;8100:35::-;8133:2;8100:35;:::o;7270:447::-;7424:10;7381:4;7416:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7416:29:0;;;;;;;;;;7456:28;;;7452:169;;7503:10;7527:1;7495:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7495:29:0;;;;;;;;;:33;7452:169;;;7583:30;:8;7596:16;7583:30;:12;:30;:::i;:::-;7559:10;7551:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7551:29:0;;;;;;;;;:62;7452:169;7641:10;7663:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;7632:61:0;;7663:29;;;;;;;;;;;7632:61;;;;;;;;;7641:10;7632:61;;;;;;;;;;;-1:-1:-1;7707:4:0;;7270:447;-1:-1:-1;;;7270:447:0:o;2952:101::-;-1:-1:-1;;;;;3031:16:0;3008:7;3031:16;;;;;;;;;;;;2952:101::o;8058:37::-;;;;;;;;;;;;;;;;;;;:::o;2414:329::-;2517:10;2477:4;2508:20;;;;;;;;;;;2498:30;;;2490:39;;;;;;-1:-1:-1;;;;;2544:17:0;;;;2536:26;;;;;;2603:10;2594:8;:20;;;;;;;;;;;:32;;2619:6;2594:32;:24;:32;:::i;:::-;2580:10;2571:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;2649:13:0;;;;;;:25;;2667:6;2649:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;2633:13:0;;:8;:13;;;;;;;;;;;;:41;;;;2686:33;;;;;;;2633:13;;2695:10;;2686:33;;;;;;;;;;-1:-1:-1;2733:4:0;2414:329;;;;:::o;6495:307::-;6666:10;6601:4;6658:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6658:29:0;;;;;;;;;;:46;;6692:11;6658:46;:33;:46;:::i;:::-;6625:10;6617:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6617:29:0;;;;;;;;;;;;:88;;;6717:61;;;;;;6617:29;;6717:61;;;;;;;;;;;-1:-1:-1;6792:4:0;6495:307;;;;:::o;5870:162::-;-1:-1:-1;;;;;6001:15:0;;;5975:7;6001:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5870:162::o;1097:119::-;1157:7;1180:8;;;;1173:16;;;;-1:-1:-1;1203:7:0;;;1097:119::o;1283:132::-;1365:7;;;1386;;;;1379:15;;;;1283:132;;;;:::o

Swarm Source

bzzr://04522604ae6f62511dcc395d19b8e24eeac3be247aea5cfdee94170293c87237

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.