ETH Price: $2,413.37 (-0.32%)

Contract

0xA7d768EbD9915793393F117f8aB10F4A206875d8
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve170527962023-04-15 13:47:11518 days ago1681566431IN
0xA7d768Eb...A206875d8
0 ETH0.0005632323.08635796
Approve170527892023-04-15 13:45:47518 days ago1681566347IN
0xA7d768Eb...A206875d8
0 ETH0.0005854123.99544602
Approve128838382021-07-23 17:03:441149 days ago1627059824IN
0xA7d768Eb...A206875d8
0 ETH0.0003941727
Approve112554562020-11-14 11:03:411400 days ago1605351821IN
0xA7d768Eb...A206875d8
0 ETH0.0003064812.26078717
Approve112554542020-11-14 11:03:191400 days ago1605351799IN
0xA7d768Eb...A206875d8
0 ETH0.0001789912.26078717
Approve111753942020-11-02 4:11:211413 days ago1604290281IN
0xA7d768Eb...A206875d8
0 ETH0.0005839640.00000145
Approve110321532020-10-11 4:56:371435 days ago1602392197IN
0xA7d768Eb...A206875d8
0 ETH0.0004087728
Approve107204592020-08-24 2:40:061483 days ago1598236806IN
0xA7d768Eb...A206875d8
0 ETH0.0029869267
Approve103947742020-07-04 19:27:091533 days ago1593890829IN
0xA7d768Eb...A206875d8
0 ETH0.001159126
Approve103691872020-06-30 20:04:561537 days ago1593547496IN
0xA7d768Eb...A206875d8
0 ETH0.0008748935
Approve103690892020-06-30 19:44:211537 days ago1593546261IN
0xA7d768Eb...A206875d8
0 ETH0.0005109635
Approve102509422020-06-12 12:44:271555 days ago1591965867IN
0xA7d768Eb...A206875d8
0 ETH0.0014711733
Approve102483492020-06-12 3:08:181556 days ago1591931298IN
0xA7d768Eb...A206875d8
0 ETH0.0013374330
Approve102235652020-06-08 6:40:231560 days ago1591598423IN
0xA7d768Eb...A206875d8
0 ETH0.0013820131
Approve102233232020-06-08 5:46:341560 days ago1591595194IN
0xA7d768Eb...A206875d8
0 ETH0.001266128.40000123
Approve102072772020-06-05 18:16:101562 days ago1591380970IN
0xA7d768Eb...A206875d8
0 ETH0.0013374330
Approve102070992020-06-05 17:36:441562 days ago1591378604IN
0xA7d768Eb...A206875d8
0 ETH0.0013374330
Approve102044732020-06-05 7:45:441563 days ago1591343144IN
0xA7d768Eb...A206875d8
0 ETH0.0011145225
Approve102005792020-06-04 17:10:081563 days ago1591290608IN
0xA7d768Eb...A206875d8
0 ETH0.0008024518
Approve101982392020-06-04 8:35:051564 days ago1591259705IN
0xA7d768Eb...A206875d8
0 ETH0.0012928429
Approve101963812020-06-04 1:34:431564 days ago1591234483IN
0xA7d768Eb...A206875d8
0 ETH0.0006687115
Approve101957242020-06-03 23:06:411564 days ago1591225601IN
0xA7d768Eb...A206875d8
0 ETH0.0008114918.20275719
Approve101942052020-06-03 17:30:271564 days ago1591205427IN
0xA7d768Eb...A206875d8
0 ETH0.0008916220
Approve101929692020-06-03 13:03:421564 days ago1591189422IN
0xA7d768Eb...A206875d8
0 ETH0.001159126
Approve101921882020-06-03 10:00:371564 days ago1591178437IN
0xA7d768Eb...A206875d8
0 ETH0.001159126
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:
ERC20

Compiler Version
v0.5.0+commit.1d4f565a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-01-25
*/

pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: 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
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20Mintable}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;
    
    uint256 private _totalSupply;
    uint256 private _cap;
    
    string private _name;
    string private _symbol;
    uint8 private _decimals = 18;

    address public _owner;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint256 totalSupply) public {
        // EnergonX Hydrogen H₂, EH2,  201600000
        _name = name;
        _symbol = symbol;
        _totalSupply = totalSupply * 10 ** uint256(_decimals); 
        _cap = _totalSupply; // cant mint more than cap
        
        _owner  = msg.sender;

        _balances[_owner] = _totalSupply;
    } 
    
    function setOwner(address newOwner) public {
       require(msg.sender==_owner, "Only owner can transfer rights");
       _owner = newOwner;
    }
    
    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
    

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }
    
    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }
    
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function mint(uint256 amount) public {
        require(msg.sender==_owner, "owner can mint");
        _mint(_owner, amount);
    }
    
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");
        require(totalSupply().add(amount) <= _cap, "ERC20Capped: cannot mint over cap exceeded"); 

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function burn(uint256 amount) public {
        require(msg.sender==_owner, "owner can burn");
        _burn(_owner, amount);
    }
    
    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

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":"amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"setOwner","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":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","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":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"totalSupply","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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"},{"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"}]

60806040526006805460ff191660121790553480156200001e57600080fd5b506040516200132938038062001329833981018060405260608110156200004457600080fd5b8101908080516401000000008111156200005d57600080fd5b820160208101848111156200007157600080fd5b81516401000000008111828201871017156200008c57600080fd5b50509291906020018051640100000000811115620000a957600080fd5b82016020810184811115620000bd57600080fd5b8151640100000000811182820187101715620000d857600080fd5b505060209182015185519194509250620000f9916004919086019062000167565b5081516200010f90600590602085019062000167565b506006805460ff8116600a0a929092026002819055600381905561010060a860020a03199092166101003381029190911791829055600160a060020a03910416600090815260208190526040902055506200020c9050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001aa57805160ff1916838001178555620001da565b82800160010185558215620001da579182015b82811115620001da578251825591602001919060010190620001bd565b50620001e8929150620001ec565b5090565b6200020991905b80821115620001e85760008155600101620001f3565b90565b61110d806200021c6000396000f3fe6080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806313af4035146101c157806318160ddd146101f657806323b872dd1461021d578063313ce56714610260578063355274ea1461028b57806339509351146102a057806342966c68146102d957806370a082311461030357806395d89b4114610336578063a0712d681461034b578063a457c2d714610375578063a9059cbb146103ae578063b2bdfa7b146103e7578063dd62ed3e14610418575b600080fd5b3480156100f657600080fd5b506100ff610453565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b506101ad6004803603604081101561019757600080fd5b50600160a060020a0381351690602001356104e9565b604080519115158252519081900360200190f35b3480156101cd57600080fd5b506101f4600480360360208110156101e457600080fd5b5035600160a060020a03166104ff565b005b34801561020257600080fd5b5061020b61059b565b60408051918252519081900360200190f35b34801561022957600080fd5b506101ad6004803603606081101561024057600080fd5b50600160a060020a038135811691602081013590911690604001356105a1565b34801561026c57600080fd5b50610275610654565b6040805160ff9092168252519081900360200190f35b34801561029757600080fd5b5061020b61065d565b3480156102ac57600080fd5b506101ad600480360360408110156102c357600080fd5b50600160a060020a038135169060200135610663565b3480156102e557600080fd5b506101f4600480360360208110156102fc57600080fd5b503561069f565b34801561030f57600080fd5b5061020b6004803603602081101561032657600080fd5b5035600160a060020a0316610724565b34801561034257600080fd5b506100ff61073f565b34801561035757600080fd5b506101f46004803603602081101561036e57600080fd5b50356107a0565b34801561038157600080fd5b506101ad6004803603604081101561039857600080fd5b50600160a060020a038135169060200135610822565b3480156103ba57600080fd5b506101ad600480360360408110156103d157600080fd5b50600160a060020a0381351690602001356108bb565b3480156103f357600080fd5b506103fc6108c8565b60408051600160a060020a039092168252519081900360200190f35b34801561042457600080fd5b5061020b6004803603604081101561043b57600080fd5b50600160a060020a03813581169160200135166108dc565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104df5780601f106104b4576101008083540402835291602001916104df565b820191906000526020600020905b8154815290600101906020018083116104c257829003601f168201915b5050505050905090565b60006104f6338484610907565b50600192915050565b6006546101009004600160a060020a03163314610566576040805160e560020a62461bcd02815260206004820152601e60248201527f4f6e6c79206f776e65722063616e207472616e73666572207269676874730000604482015290519081900360640190fd5b60068054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b60025490565b60006105ae848484610a74565b60408051606081018252602881527f45524332303a207472616e7366657220616d6f756e74206578636565647320616020808301919091527f6c6c6f77616e636500000000000000000000000000000000000000000000000082840152600160a060020a038716600090815260018252838120338083529252929092205461064a928792909161064591879063ffffffff610c9516565b610907565b5060019392505050565b60065460ff1690565b60035490565b336000818152600160209081526040808320600160a060020a038716845290915281205490916104f6918590610645908663ffffffff610d2f16565b6006546101009004600160a060020a03163314610706576040805160e560020a62461bcd02815260206004820152600e60248201527f6f776e65722063616e206275726e000000000000000000000000000000000000604482015290519081900360640190fd5b600654610721906101009004600160a060020a031682610d93565b50565b600160a060020a031660009081526020819052604090205490565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104df5780601f106104b4576101008083540402835291602001916104df565b6006546101009004600160a060020a03163314610807576040805160e560020a62461bcd02815260206004820152600e60248201527f6f776e65722063616e206d696e74000000000000000000000000000000000000604482015290519081900360640190fd5b600654610721906101009004600160a060020a031682610f13565b60408051606081018252602581527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f776020808301919091527f207a65726f0000000000000000000000000000000000000000000000000000008284015233600081815260018352848120600160a060020a03881682529092529281205490926104f692909186916106459190879063ffffffff610c9516565b60006104f6338484610a74565b6006546101009004600160a060020a031681565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a038316151561098c576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610a12576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a0383161515610afa576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610b80576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602681527f45524332303a207472616e7366657220616d6f756e74206578636565647320626020808301919091527f616c616e6365000000000000000000000000000000000000000000000000000082840152600160a060020a0386166000908152908190529190912054610c0691839063ffffffff610c9516565b600160a060020a038085166000908152602081905260408082209390935590841681522054610c3b908263ffffffff610d2f16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610d275760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610cec578181015183820152602001610cd4565b50505050905090810190601f168015610d195780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610d8c576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600160a060020a0382161515610e19576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602281527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e6020808301919091527f636500000000000000000000000000000000000000000000000000000000000082840152600160a060020a0385166000908152908190529190912054610e9f91839063ffffffff610c9516565b600160a060020a038316600090815260208190526040902055600254610ecb908263ffffffff61109f16565b600255604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600160a060020a0382161515610f73576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354610f8e82610f8261059b565b9063ffffffff610d2f16565b111561100a576040805160e560020a62461bcd02815260206004820152602a60248201527f45524332304361707065643a2063616e6e6f74206d696e74206f76657220636160448201527f7020657863656564656400000000000000000000000000000000000000000000606482015290519081900360840190fd5b60025461101d908263ffffffff610d2f16565b600255600160a060020a038216600090815260208190526040902054611049908263ffffffff610d2f16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000610d8c83836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c9556fea165627a7a723058206e3bc6b4a8cc5d019137f6a70439c7879ecc30e2dce741ff3883d691a3578b1b0029000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000c042c000000000000000000000000000000000000000000000000000000000000000016456e6572676f6e5820487964726f67656e2048e282820000000000000000000000000000000000000000000000000000000000000000000000000000000000034548320000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100e55763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100ea578063095ea7b31461017457806313af4035146101c157806318160ddd146101f657806323b872dd1461021d578063313ce56714610260578063355274ea1461028b57806339509351146102a057806342966c68146102d957806370a082311461030357806395d89b4114610336578063a0712d681461034b578063a457c2d714610375578063a9059cbb146103ae578063b2bdfa7b146103e7578063dd62ed3e14610418575b600080fd5b3480156100f657600080fd5b506100ff610453565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610139578181015183820152602001610121565b50505050905090810190601f1680156101665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561018057600080fd5b506101ad6004803603604081101561019757600080fd5b50600160a060020a0381351690602001356104e9565b604080519115158252519081900360200190f35b3480156101cd57600080fd5b506101f4600480360360208110156101e457600080fd5b5035600160a060020a03166104ff565b005b34801561020257600080fd5b5061020b61059b565b60408051918252519081900360200190f35b34801561022957600080fd5b506101ad6004803603606081101561024057600080fd5b50600160a060020a038135811691602081013590911690604001356105a1565b34801561026c57600080fd5b50610275610654565b6040805160ff9092168252519081900360200190f35b34801561029757600080fd5b5061020b61065d565b3480156102ac57600080fd5b506101ad600480360360408110156102c357600080fd5b50600160a060020a038135169060200135610663565b3480156102e557600080fd5b506101f4600480360360208110156102fc57600080fd5b503561069f565b34801561030f57600080fd5b5061020b6004803603602081101561032657600080fd5b5035600160a060020a0316610724565b34801561034257600080fd5b506100ff61073f565b34801561035757600080fd5b506101f46004803603602081101561036e57600080fd5b50356107a0565b34801561038157600080fd5b506101ad6004803603604081101561039857600080fd5b50600160a060020a038135169060200135610822565b3480156103ba57600080fd5b506101ad600480360360408110156103d157600080fd5b50600160a060020a0381351690602001356108bb565b3480156103f357600080fd5b506103fc6108c8565b60408051600160a060020a039092168252519081900360200190f35b34801561042457600080fd5b5061020b6004803603604081101561043b57600080fd5b50600160a060020a03813581169160200135166108dc565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104df5780601f106104b4576101008083540402835291602001916104df565b820191906000526020600020905b8154815290600101906020018083116104c257829003601f168201915b5050505050905090565b60006104f6338484610907565b50600192915050565b6006546101009004600160a060020a03163314610566576040805160e560020a62461bcd02815260206004820152601e60248201527f4f6e6c79206f776e65722063616e207472616e73666572207269676874730000604482015290519081900360640190fd5b60068054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b60025490565b60006105ae848484610a74565b60408051606081018252602881527f45524332303a207472616e7366657220616d6f756e74206578636565647320616020808301919091527f6c6c6f77616e636500000000000000000000000000000000000000000000000082840152600160a060020a038716600090815260018252838120338083529252929092205461064a928792909161064591879063ffffffff610c9516565b610907565b5060019392505050565b60065460ff1690565b60035490565b336000818152600160209081526040808320600160a060020a038716845290915281205490916104f6918590610645908663ffffffff610d2f16565b6006546101009004600160a060020a03163314610706576040805160e560020a62461bcd02815260206004820152600e60248201527f6f776e65722063616e206275726e000000000000000000000000000000000000604482015290519081900360640190fd5b600654610721906101009004600160a060020a031682610d93565b50565b600160a060020a031660009081526020819052604090205490565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104df5780601f106104b4576101008083540402835291602001916104df565b6006546101009004600160a060020a03163314610807576040805160e560020a62461bcd02815260206004820152600e60248201527f6f776e65722063616e206d696e74000000000000000000000000000000000000604482015290519081900360640190fd5b600654610721906101009004600160a060020a031682610f13565b60408051606081018252602581527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f776020808301919091527f207a65726f0000000000000000000000000000000000000000000000000000008284015233600081815260018352848120600160a060020a03881682529092529281205490926104f692909186916106459190879063ffffffff610c9516565b60006104f6338484610a74565b6006546101009004600160a060020a031681565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b600160a060020a038316151561098c576040805160e560020a62461bcd028152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610a12576040805160e560020a62461bcd02815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600160a060020a0383161515610afa576040805160e560020a62461bcd02815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a0382161515610b80576040805160e560020a62461bcd02815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602681527f45524332303a207472616e7366657220616d6f756e74206578636565647320626020808301919091527f616c616e6365000000000000000000000000000000000000000000000000000082840152600160a060020a0386166000908152908190529190912054610c0691839063ffffffff610c9516565b600160a060020a038085166000908152602081905260408082209390935590841681522054610c3b908263ffffffff610d2f16565b600160a060020a038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610d275760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610cec578181015183820152602001610cd4565b50505050905090810190601f168015610d195780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610d8c576040805160e560020a62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600160a060020a0382161515610e19576040805160e560020a62461bcd02815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015290519081900360840190fd5b60408051606081018252602281527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e6020808301919091527f636500000000000000000000000000000000000000000000000000000000000082840152600160a060020a0385166000908152908190529190912054610e9f91839063ffffffff610c9516565b600160a060020a038316600090815260208190526040902055600254610ecb908263ffffffff61109f16565b600255604080518281529051600091600160a060020a038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600160a060020a0382161515610f73576040805160e560020a62461bcd02815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600354610f8e82610f8261059b565b9063ffffffff610d2f16565b111561100a576040805160e560020a62461bcd02815260206004820152602a60248201527f45524332304361707065643a2063616e6e6f74206d696e74206f76657220636160448201527f7020657863656564656400000000000000000000000000000000000000000000606482015290519081900360840190fd5b60025461101d908263ffffffff610d2f16565b600255600160a060020a038216600090815260208190526040902054611049908263ffffffff610d2f16565b600160a060020a0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000610d8c83836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c9556fea165627a7a723058206e3bc6b4a8cc5d019137f6a70439c7879ecc30e2dce741ff3883d691a3578b1b0029

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000c042c000000000000000000000000000000000000000000000000000000000000000016456e6572676f6e5820487964726f67656e2048e282820000000000000000000000000000000000000000000000000000000000000000000000000000000000034548320000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): EnergonX Hydrogen H₂
Arg [1] : symbol (string): EH2
Arg [2] : totalSupply (uint256): 201600000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000000c042c00
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [4] : 456e6572676f6e5820487964726f67656e2048e2828200000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4548320000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

9427:9491:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10648:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10648:83: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;10648:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12794:150;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12794:150:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12794:150:0;;;;;;;;;;;;;;;;;;;;;;;;;;;10425:149;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10425:149:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10425:149:0;-1:-1:-1;;;;;10425:149:0;;;;;11654:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11654:91:0;;;;;;;;;;;;;;;;;;;;13416:300;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13416:300:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13416:300:0;;;;;;;;;;;;;;;;;;11500:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11500:83:0;;;;;;;;;;;;;;;;;;;;;;;11833:75;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11833:75:0;;;;14125:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14125:206:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14125:206:0;;;;;;;;;17230:133;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17230:133:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17230:133:0;;;11971:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11971:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11971:110:0;-1:-1:-1;;;;;11971:110:0;;;10850:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10850:87:0;;;;16345:133;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16345:133:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16345:133:0;;;14834:257;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14834:257:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14834:257:0;;;;;;;;;12294:156;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12294:156:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12294:156:0;;;;;;;;;9792:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9792:21:0;;;;;;;;-1:-1:-1;;;;;9792:21:0;;;;;;;;;;;;;;12513:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12513:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12513:134:0;;;;;;;;;;;10648:83;10718:5;10711:12;;;;;;;;-1:-1:-1;;10711:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10685:13;;10711:12;;10718:5;;10711:12;;10718:5;10711:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10648:83;:::o;12794:150::-;12860:4;12877:37;12886:10;12898:7;12907:6;12877:8;:37::i;:::-;-1:-1:-1;12932:4:0;12794:150;;;;:::o;10425:149::-;10498:6;;;;;-1:-1:-1;;;;;10498:6:0;10486:10;:18;10478:61;;;;;-1:-1:-1;;;;;10478:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;10549:6;:17;;-1:-1:-1;;;;;10549:17:0;;;;;-1:-1:-1;;10549:17:0;;;;;;;;;10425:149::o;11654:91::-;11725:12;;11654:91;:::o;13416:300::-;13505:4;13522:36;13532:6;13540:9;13551:6;13522:9;:36::i;:::-;13598:87;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13598:19:0;;-1:-1:-1;13598:19:0;;;:11;:19;;;;;13586:10;13598:31;;;;;;;;;;13569:117;;13578:6;;13586:10;;13598:87;;13634:6;;13598:87;:35;:87;:::i;:::-;13569:8;:117::i;:::-;-1:-1:-1;13704:4:0;13416:300;;;;;:::o;11500:83::-;11566:9;;;;11500:83;:::o;11833:75::-;11896:4;;11833:75;:::o;14125:206::-;14231:10;14205:4;14252:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;14252:32:0;;;;;;;;;;14205:4;;14222:79;;14243:7;;14252:48;;14289:10;14252:48;:36;:48;:::i;17230:133::-;17298:6;;;;;-1:-1:-1;;;;;17298:6:0;17286:10;:18;17278:45;;;;;-1:-1:-1;;;;;17278:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17340:6;;17334:21;;17340:6;;;-1:-1:-1;;;;;17340:6:0;17348;17334:5;:21::i;:::-;17230:133;:::o;11971:110::-;-1:-1:-1;;;;;12055:18:0;12028:7;12055:18;;;;;;;;;;;;11971:110::o;10850:87::-;10922:7;10915:14;;;;;;;;-1:-1:-1;;10915:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10889:13;;10915:14;;10922:7;;10915:14;;10922:7;10915:14;;;;;;;;;;;;;;;;;;;;;;;;16345:133;16413:6;;;;;-1:-1:-1;;;;;16413:6:0;16401:10;:18;16393:45;;;;;-1:-1:-1;;;;;16393:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16455:6;;16449:21;;16455:6;;;-1:-1:-1;;;;;16455:6:0;16463;16449:5;:21::i;14834:257::-;14966:94;;;;;;;;;;;;;;;;;;;;;;;;;14945:10;14919:4;14966:23;;;:11;:23;;;;;-1:-1:-1;;;;;14966:32:0;;;;;;;;;;;14919:4;;14936:125;;14945:10;;14957:7;;14966:94;;:32;15003:15;;14966:94;:36;:94;:::i;12294:156::-;12363:4;12380:40;12390:10;12402:9;12413:6;12380:9;:40::i;9792:21::-;;;;;;-1:-1:-1;;;;;9792:21:0;;:::o;12513:134::-;-1:-1:-1;;;;;12612:18:0;;;12585:7;12612:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12513:134::o;18163:338::-;-1:-1:-1;;;;;18257:19:0;;;;18249:68;;;;;-1:-1:-1;;;;;18249:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18336:21:0;;;;18328:68;;;;;-1:-1:-1;;;;;18328:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18409:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18461:32;;;;;;;;;;;;;;;;;18163:338;;;:::o;15581:479::-;-1:-1:-1;;;;;15679:20:0;;;;15671:70;;;;;-1:-1:-1;;;;;15671:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15760:23:0;;;;15752:71;;;;;-1:-1:-1;;;;;15752:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15864;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15864:17:0;;-1:-1:-1;15864:17:0;;;;;;;;;;;;:71;;15886:6;;15864:71;:21;:71;:::i;:::-;-1:-1:-1;;;;;15844:17:0;;;:9;:17;;;;;;;;;;;:91;;;;15969:20;;;;;;;:32;;15994:6;15969:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;15946:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;16017:35;;;;;;;15946:20;;16017:35;;;;;;;;;;;;;15581:479;;;:::o;1788:192::-;1874:7;1910:12;1902:6;;;;1894:29;;;;-1:-1:-1;;;;;1894:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1894:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1946:5:0;;;1788:192::o;859:181::-;917:7;949:5;;;973:6;;;;965:46;;;;;-1:-1:-1;;;;;965:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1031:1;859:181;-1:-1:-1;;;859:181:0:o;17375:348::-;-1:-1:-1;;;;;17451:21:0;;;;17443:67;;;;;-1:-1:-1;;;;;17443:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17544:68;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17544:18:0;;-1:-1:-1;17544:18:0;;;;;;;;;;;;:68;;17567:6;;17544:68;:22;:68;:::i;:::-;-1:-1:-1;;;;;17523:18:0;;:9;:18;;;;;;;;;;:89;17638:12;;:24;;17655:6;17638:24;:16;:24;:::i;:::-;17623:12;:39;17678:37;;;;;;;;17704:1;;-1:-1:-1;;;;;17678:37:0;;;;;;;;;;;;17375:348;;:::o;16490:408::-;-1:-1:-1;;;;;16566:21:0;;;;16558:65;;;;;-1:-1:-1;;;;;16558:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16671:4;;16642:25;16660:6;16642:13;:11;:13::i;:::-;:17;:25;:17;:25;:::i;:::-;:33;;16634:88;;;;;-1:-1:-1;;;;;16634:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16751:12;;:24;;16768:6;16751:24;:16;:24;:::i;:::-;16736:12;:39;-1:-1:-1;;;;;16807:18:0;;:9;:18;;;;;;;;;;;:30;;16830:6;16807:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;16786:18:0;;:9;:18;;;;;;;;;;;:51;;;;16853:37;;;;;;;16786:18;;:9;;16853:37;;;;;;;;;;16490:408;;:::o;1315:136::-;1373:7;1400:43;1404:1;1407;1400:43;;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

bzzr://6e3bc6b4a8cc5d019137f6a70439c7879ecc30e2dce741ff3883d691a3578b1b

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.