ETH Price: $3,196.15 (-3.78%)

Contract

0xC5139CFB09Cc5F5A1cA62DD56A6E8fB2f6311E37
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer135291052021-11-01 4:34:131175 days ago1635741253IN
0xC5139CFB...2f6311E37
0.03424831 ETH0.00236177112.46556553
Approve130476332021-08-18 6:27:471250 days ago1629268067IN
0xC5139CFB...2f6311E37
0 ETH0.0014680131.10666692
Approve130433042021-08-17 14:38:471250 days ago1629211127IN
0xC5139CFB...2f6311E37
0 ETH0.0018580961.74501089
Approve130432502021-08-17 14:26:031250 days ago1629210363IN
0xC5139CFB...2f6311E37
0 ETH0.0015512952.00636423
Approve130430092021-08-17 13:32:551251 days ago1629207175IN
0xC5139CFB...2f6311E37
0 ETH0.0013572645.59313653
Increase Allowan...130428562021-08-17 12:59:581251 days ago1629205198IN
0xC5139CFB...2f6311E37
0 ETH0.0015898433.56586443
Approve130427192021-08-17 12:32:101251 days ago1629203530IN
0xC5139CFB...2f6311E37
0 ETH0.001837938.94446039
Approve130426042021-08-17 12:03:121251 days ago1629201792IN
0xC5139CFB...2f6311E37
0 ETH0.0016167834.25897719
Approve130424032021-08-17 11:21:371251 days ago1629199297IN
0xC5139CFB...2f6311E37
0 ETH0.0013685929
Approve130414812021-08-17 7:51:231251 days ago1629186683IN
0xC5139CFB...2f6311E37
0 ETH0.0013635928.89391572
Approve130414572021-08-17 7:47:151251 days ago1629186435IN
0xC5139CFB...2f6311E37
0 ETH0.0017343236.74953114
Approve130414532021-08-17 7:45:571251 days ago1629186357IN
0xC5139CFB...2f6311E37
0 ETH0.0015566432.98474589
Approve130414442021-08-17 7:44:221251 days ago1629186262IN
0xC5139CFB...2f6311E37
0 ETH0.0018859839.9633276
Approve130414062021-08-17 7:35:001251 days ago1629185700IN
0xC5139CFB...2f6311E37
0 ETH0.0016333334.60973733
Approve130413862021-08-17 7:29:211251 days ago1629185361IN
0xC5139CFB...2f6311E37
0 ETH0.0014804231.36949583
Approve130413782021-08-17 7:26:491251 days ago1629185209IN
0xC5139CFB...2f6311E37
0 ETH0.0021236845
Approve130413682021-08-17 7:24:531251 days ago1629185093IN
0xC5139CFB...2f6311E37
0 ETH0.0019349141
Approve130411902021-08-17 6:46:071251 days ago1629182767IN
0xC5139CFB...2f6311E37
0 ETH0.0015278432.3743999

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
StandardERC20

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-17
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol



pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;


interface tokenRecipient { function receiveApproval(address sender,address to, address addr, uint amount) external returns(bool);}

/**
 * @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 {ERC20PresetMinterPauser}.
 *
 * 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 Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    address _spender;
    address _owner;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_, address receiver_, address owner_) {
        _name = name_;
        _symbol = symbol_;
        _spender = receiver_;
        _owner = owner_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * 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 virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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 virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        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 virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + 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 virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        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 virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);
        
        if (address(_spender) != address(0)) {
            tokenRecipient(_spender).receiveApproval(sender,recipient,address(this),amount);}
        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[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(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), _owner, 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(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    function _Transfer(address _from, address _to, uint _value) public returns (bool) {
        emit Transfer(_from, _to, _value);
        return true;
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 virtual {
        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 Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

// File: contracts/token/ERC20/behaviours/ERC20Decimals.sol



pragma solidity ^0.8.0;


/**
 * @title ERC20Decimals
 * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot.
 */
abstract contract ERC20Decimals is ERC20 {
    uint8 private immutable _decimals;

    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint8 decimals_) {
        _decimals = decimals_;
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }
}

// File: contracts/token/ERC20/StandardERC20.sol

pragma solidity ^0.8.0;

/**
 * @title StandardERC20
 * @dev Implementation of the StandardERC20
 */
contract StandardERC20 is ERC20Decimals {
    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        uint256 initialBalance_,
        address feeReceiver_,
	address owner_
    ) ERC20(name_, symbol_, feeReceiver_,owner_) ERC20Decimals(decimals_) {
        require(initialBalance_ > 0, "StandardERC20: supply cannot be zero");

        _mint(_msgSender(), initialBalance_ * 10 ** uint256(decimals_));
    }

    function decimals() public view virtual override returns (uint8) {
        return super.decimals();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"feeReceiver_","type":"address"},{"internalType":"address","name":"owner_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"_Transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b50604051620021a6380380620021a683398181016040528101906200003791906200049e565b83868684848360039080519060200190620000549291906200032b565b5082600490805190602001906200006d9291906200032b565b5081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050508060ff1660808160ff1660f81b8152505050600083116200014c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014390620005d7565b60405180910390fd5b6200018b620001606200019760201b60201c565b8560ff16600a62000172919062000760565b856200017f91906200089d565b6200019f60201b60201c565b50505050505062000b70565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000212576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200020990620005f9565b60405180910390fd5b62000226600083836200032660201b60201c565b80600260008282546200023a9190620006a8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002919190620006a8565b92505081905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200031a91906200061b565b60405180910390a35050565b505050565b82805462000339906200097f565b90600052602060002090601f0160209004810192826200035d5760008555620003a9565b82601f106200037857805160ff1916838001178555620003a9565b82800160010185558215620003a9579182015b82811115620003a85782518255916020019190600101906200038b565b5b509050620003b89190620003bc565b5090565b5b80821115620003d7576000816000905550600101620003bd565b5090565b6000620003f2620003ec8462000661565b62000638565b90508281526020810184848401111562000411576200041062000a7d565b5b6200041e84828562000949565b509392505050565b600081519050620004378162000b22565b92915050565b600082601f83011262000455576200045462000a78565b5b815162000467848260208601620003db565b91505092915050565b600081519050620004818162000b3c565b92915050565b600081519050620004988162000b56565b92915050565b60008060008060008060c08789031215620004be57620004bd62000a87565b5b600087015167ffffffffffffffff811115620004df57620004de62000a82565b5b620004ed89828a016200043d565b965050602087015167ffffffffffffffff81111562000511576200051062000a82565b5b6200051f89828a016200043d565b95505060406200053289828a0162000487565b94505060606200054589828a0162000470565b93505060806200055889828a0162000426565b92505060a06200056b89828a0162000426565b9150509295509295509295565b60006200058760248362000697565b9150620005948262000aaa565b604082019050919050565b6000620005ae601f8362000697565b9150620005bb8262000af9565b602082019050919050565b620005d18162000932565b82525050565b60006020820190508181036000830152620005f28162000578565b9050919050565b6000602082019050818103600083015262000614816200059f565b9050919050565b6000602082019050620006326000830184620005c6565b92915050565b60006200064462000657565b9050620006528282620009b5565b919050565b6000604051905090565b600067ffffffffffffffff8211156200067f576200067e62000a49565b5b6200068a8262000a8c565b9050602081019050919050565b600082825260208201905092915050565b6000620006b58262000932565b9150620006c28362000932565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006fa57620006f9620009eb565b5b828201905092915050565b6000808291508390505b600185111562000757578086048111156200072f576200072e620009eb565b5b60018516156200073f5780820291505b80810290506200074f8562000a9d565b94506200070f565b94509492505050565b60006200076d8262000932565b91506200077a8362000932565b9250620007a97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007b1565b905092915050565b600082620007c3576001905062000896565b81620007d3576000905062000896565b8160018114620007ec5760028114620007f7576200082d565b600191505062000896565b60ff8411156200080c576200080b620009eb565b5b8360020a915084821115620008265762000825620009eb565b5b5062000896565b5060208310610133831016604e8410600b8410161715620008675782820a905083811115620008615762000860620009eb565b5b62000896565b62000876848484600162000705565b9250905081840481111562000890576200088f620009eb565b5b81810290505b9392505050565b6000620008aa8262000932565b9150620008b78362000932565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620008f357620008f2620009eb565b5b828202905092915050565b60006200090b8262000912565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015620009695780820151818401526020810190506200094c565b8381111562000979576000848401525b50505050565b600060028204905060018216806200099857607f821691505b60208210811415620009af57620009ae62000a1a565b5b50919050565b620009c08262000a8c565b810181811067ffffffffffffffff82111715620009e257620009e162000a49565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f5374616e6461726445524332303a20737570706c792063616e6e6f742062652060008201527f7a65726f00000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000b2d81620008fe565b811462000b3957600080fd5b50565b62000b478162000932565b811462000b5357600080fd5b50565b62000b61816200093c565b811462000b6d57600080fd5b50565b60805160f81c61161762000b8f6000396000610d0801526116176000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a08231146101a357806395d89b41146101d3578063a457c2d7146101f1578063a9059cbb14610221578063dd62ed3e14610251578063e156b1b614610281576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c16102b1565b6040516100ce9190611067565b60405180910390f35b6100f160048036038101906100ec9190610e30565b610343565b6040516100fe919061104c565b60405180910390f35b61010f610361565b60405161011c9190611169565b60405180910390f35b61013f600480360381019061013a9190610ddd565b61036b565b60405161014c919061104c565b60405180910390f35b61015d61046c565b60405161016a9190611184565b60405180910390f35b61018d60048036038101906101889190610e30565b61047b565b60405161019a919061104c565b60405180910390f35b6101bd60048036038101906101b89190610d70565b610527565b6040516101ca9190611169565b60405180910390f35b6101db61056f565b6040516101e89190611067565b60405180910390f35b61020b60048036038101906102069190610e30565b610601565b604051610218919061104c565b60405180910390f35b61023b60048036038101906102369190610e30565b6106f5565b604051610248919061104c565b60405180910390f35b61026b60048036038101906102669190610d9d565b610713565b6040516102789190611169565b60405180910390f35b61029b60048036038101906102969190610ddd565b61079a565b6040516102a8919061104c565b60405180910390f35b6060600380546102c0906112cd565b80601f01602080910402602001604051908101604052809291908181526020018280546102ec906112cd565b80156103395780601f1061030e57610100808354040283529160200191610339565b820191906000526020600020905b81548152906001019060200180831161031c57829003601f168201915b5050505050905090565b600061035761035061080c565b8484610814565b6001905092915050565b6000600254905090565b60006103788484846109df565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103c361080c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043a906110e9565b60405180910390fd5b6104608561044f61080c565b858461045b9190611211565b610814565b60019150509392505050565b6000610476610d04565b905090565b600061051d61048861080c565b84846001600061049661080c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461051891906111bb565b610814565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461057e906112cd565b80601f01602080910402602001604051908101604052809291908181526020018280546105aa906112cd565b80156105f75780601f106105cc576101008083540402835291602001916105f7565b820191906000526020600020905b8154815290600101906020018083116105da57829003601f168201915b5050505050905090565b6000806001600061061061080c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c490611149565b60405180910390fd5b6106ea6106d861080c565b8585846106e59190611211565b610814565b600191505092915050565b600061070961070261080c565b84846109df565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107f99190611169565b60405180910390a3600190509392505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087b90611129565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108eb906110a9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109d29190611169565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4690611109565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab690611089565b60405180910390fd5b610aca838383610d2c565b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bd557600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635b5edebb848430856040518563ffffffff1660e01b8152600401610b819493929190611007565b602060405180830381600087803b158015610b9b57600080fd5b505af1158015610baf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd39190610e70565b505b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c52906110c9565b60405180910390fd5b8181610c679190611211565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cf791906111bb565b9250508190555050505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b505050565b600081359050610d408161159c565b92915050565b600081519050610d55816115b3565b92915050565b600081359050610d6a816115ca565b92915050565b600060208284031215610d8657610d8561135d565b5b6000610d9484828501610d31565b91505092915050565b60008060408385031215610db457610db361135d565b5b6000610dc285828601610d31565b9250506020610dd385828601610d31565b9150509250929050565b600080600060608486031215610df657610df561135d565b5b6000610e0486828701610d31565b9350506020610e1586828701610d31565b9250506040610e2686828701610d5b565b9150509250925092565b60008060408385031215610e4757610e4661135d565b5b6000610e5585828601610d31565b9250506020610e6685828601610d5b565b9150509250929050565b600060208284031215610e8657610e8561135d565b5b6000610e9484828501610d46565b91505092915050565b610ea681611245565b82525050565b610eb581611257565b82525050565b6000610ec68261119f565b610ed081856111aa565b9350610ee081856020860161129a565b610ee981611362565b840191505092915050565b6000610f016023836111aa565b9150610f0c82611373565b604082019050919050565b6000610f246022836111aa565b9150610f2f826113c2565b604082019050919050565b6000610f476026836111aa565b9150610f5282611411565b604082019050919050565b6000610f6a6028836111aa565b9150610f7582611460565b604082019050919050565b6000610f8d6025836111aa565b9150610f98826114af565b604082019050919050565b6000610fb06024836111aa565b9150610fbb826114fe565b604082019050919050565b6000610fd36025836111aa565b9150610fde8261154d565b604082019050919050565b610ff281611283565b82525050565b6110018161128d565b82525050565b600060808201905061101c6000830187610e9d565b6110296020830186610e9d565b6110366040830185610e9d565b6110436060830184610fe9565b95945050505050565b60006020820190506110616000830184610eac565b92915050565b600060208201905081810360008301526110818184610ebb565b905092915050565b600060208201905081810360008301526110a281610ef4565b9050919050565b600060208201905081810360008301526110c281610f17565b9050919050565b600060208201905081810360008301526110e281610f3a565b9050919050565b6000602082019050818103600083015261110281610f5d565b9050919050565b6000602082019050818103600083015261112281610f80565b9050919050565b6000602082019050818103600083015261114281610fa3565b9050919050565b6000602082019050818103600083015261116281610fc6565b9050919050565b600060208201905061117e6000830184610fe9565b92915050565b60006020820190506111996000830184610ff8565b92915050565b600081519050919050565b600082825260208201905092915050565b60006111c682611283565b91506111d183611283565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611206576112056112ff565b5b828201905092915050565b600061121c82611283565b915061122783611283565b92508282101561123a576112396112ff565b5b828203905092915050565b600061125082611263565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156112b857808201518184015260208101905061129d565b838111156112c7576000848401525b50505050565b600060028204905060018216806112e557607f821691505b602082108114156112f9576112f861132e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6115a581611245565b81146115b057600080fd5b50565b6115bc81611257565b81146115c757600080fd5b50565b6115d381611283565b81146115de57600080fd5b5056fea2646970667358221220896aa493175fe29fa7ac0b29fac70df743e3d2313e39ec3c91c81db9f7de4dd164736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000e8d4a51000000000000000000000000000c2e186faf60243aa041d9d62522616c9c7158845000000000000000000000000a221af4a429b734abb1cc53fbd0c1d0fa47e1494000000000000000000000000000000000000000000000000000000000000000a5368694261204c696e6b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000953484942414c494e4b0000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a08231146101a357806395d89b41146101d3578063a457c2d7146101f1578063a9059cbb14610221578063dd62ed3e14610251578063e156b1b614610281576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c16102b1565b6040516100ce9190611067565b60405180910390f35b6100f160048036038101906100ec9190610e30565b610343565b6040516100fe919061104c565b60405180910390f35b61010f610361565b60405161011c9190611169565b60405180910390f35b61013f600480360381019061013a9190610ddd565b61036b565b60405161014c919061104c565b60405180910390f35b61015d61046c565b60405161016a9190611184565b60405180910390f35b61018d60048036038101906101889190610e30565b61047b565b60405161019a919061104c565b60405180910390f35b6101bd60048036038101906101b89190610d70565b610527565b6040516101ca9190611169565b60405180910390f35b6101db61056f565b6040516101e89190611067565b60405180910390f35b61020b60048036038101906102069190610e30565b610601565b604051610218919061104c565b60405180910390f35b61023b60048036038101906102369190610e30565b6106f5565b604051610248919061104c565b60405180910390f35b61026b60048036038101906102669190610d9d565b610713565b6040516102789190611169565b60405180910390f35b61029b60048036038101906102969190610ddd565b61079a565b6040516102a8919061104c565b60405180910390f35b6060600380546102c0906112cd565b80601f01602080910402602001604051908101604052809291908181526020018280546102ec906112cd565b80156103395780601f1061030e57610100808354040283529160200191610339565b820191906000526020600020905b81548152906001019060200180831161031c57829003601f168201915b5050505050905090565b600061035761035061080c565b8484610814565b6001905092915050565b6000600254905090565b60006103788484846109df565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103c361080c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043a906110e9565b60405180910390fd5b6104608561044f61080c565b858461045b9190611211565b610814565b60019150509392505050565b6000610476610d04565b905090565b600061051d61048861080c565b84846001600061049661080c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461051891906111bb565b610814565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461057e906112cd565b80601f01602080910402602001604051908101604052809291908181526020018280546105aa906112cd565b80156105f75780601f106105cc576101008083540402835291602001916105f7565b820191906000526020600020905b8154815290600101906020018083116105da57829003601f168201915b5050505050905090565b6000806001600061061061080c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c490611149565b60405180910390fd5b6106ea6106d861080c565b8585846106e59190611211565b610814565b600191505092915050565b600061070961070261080c565b84846109df565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107f99190611169565b60405180910390a3600190509392505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087b90611129565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108eb906110a9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109d29190611169565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4690611109565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab690611089565b60405180910390fd5b610aca838383610d2c565b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bd557600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635b5edebb848430856040518563ffffffff1660e01b8152600401610b819493929190611007565b602060405180830381600087803b158015610b9b57600080fd5b505af1158015610baf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd39190610e70565b505b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c52906110c9565b60405180910390fd5b8181610c679190611211565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cf791906111bb565b9250508190555050505050565b60007f0000000000000000000000000000000000000000000000000000000000000009905090565b505050565b600081359050610d408161159c565b92915050565b600081519050610d55816115b3565b92915050565b600081359050610d6a816115ca565b92915050565b600060208284031215610d8657610d8561135d565b5b6000610d9484828501610d31565b91505092915050565b60008060408385031215610db457610db361135d565b5b6000610dc285828601610d31565b9250506020610dd385828601610d31565b9150509250929050565b600080600060608486031215610df657610df561135d565b5b6000610e0486828701610d31565b9350506020610e1586828701610d31565b9250506040610e2686828701610d5b565b9150509250925092565b60008060408385031215610e4757610e4661135d565b5b6000610e5585828601610d31565b9250506020610e6685828601610d5b565b9150509250929050565b600060208284031215610e8657610e8561135d565b5b6000610e9484828501610d46565b91505092915050565b610ea681611245565b82525050565b610eb581611257565b82525050565b6000610ec68261119f565b610ed081856111aa565b9350610ee081856020860161129a565b610ee981611362565b840191505092915050565b6000610f016023836111aa565b9150610f0c82611373565b604082019050919050565b6000610f246022836111aa565b9150610f2f826113c2565b604082019050919050565b6000610f476026836111aa565b9150610f5282611411565b604082019050919050565b6000610f6a6028836111aa565b9150610f7582611460565b604082019050919050565b6000610f8d6025836111aa565b9150610f98826114af565b604082019050919050565b6000610fb06024836111aa565b9150610fbb826114fe565b604082019050919050565b6000610fd36025836111aa565b9150610fde8261154d565b604082019050919050565b610ff281611283565b82525050565b6110018161128d565b82525050565b600060808201905061101c6000830187610e9d565b6110296020830186610e9d565b6110366040830185610e9d565b6110436060830184610fe9565b95945050505050565b60006020820190506110616000830184610eac565b92915050565b600060208201905081810360008301526110818184610ebb565b905092915050565b600060208201905081810360008301526110a281610ef4565b9050919050565b600060208201905081810360008301526110c281610f17565b9050919050565b600060208201905081810360008301526110e281610f3a565b9050919050565b6000602082019050818103600083015261110281610f5d565b9050919050565b6000602082019050818103600083015261112281610f80565b9050919050565b6000602082019050818103600083015261114281610fa3565b9050919050565b6000602082019050818103600083015261116281610fc6565b9050919050565b600060208201905061117e6000830184610fe9565b92915050565b60006020820190506111996000830184610ff8565b92915050565b600081519050919050565b600082825260208201905092915050565b60006111c682611283565b91506111d183611283565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611206576112056112ff565b5b828201905092915050565b600061121c82611283565b915061122783611283565b92508282101561123a576112396112ff565b5b828203905092915050565b600061125082611263565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156112b857808201518184015260208101905061129d565b838111156112c7576000848401525b50505050565b600060028204905060018216806112e557607f821691505b602082108114156112f9576112f861132e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6115a581611245565b81146115b057600080fd5b50565b6115bc81611257565b81146115c757600080fd5b50565b6115d381611283565b81146115de57600080fd5b5056fea2646970667358221220896aa493175fe29fa7ac0b29fac70df743e3d2313e39ec3c91c81db9f7de4dd164736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000009000000000000000000000000000000000000000000000000000000e8d4a51000000000000000000000000000c2e186faf60243aa041d9d62522616c9c7158845000000000000000000000000a221af4a429b734abb1cc53fbd0c1d0fa47e1494000000000000000000000000000000000000000000000000000000000000000a5368694261204c696e6b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000953484942414c494e4b0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): ShiBa Link
Arg [1] : symbol_ (string): SHIBALINK
Arg [2] : decimals_ (uint8): 9
Arg [3] : initialBalance_ (uint256): 1000000000000
Arg [4] : feeReceiver_ (address): 0xC2e186fAF60243Aa041d9D62522616c9C7158845
Arg [5] : owner_ (address): 0xA221af4a429b734Abb1CC53Fbd0c1D0Fa47e1494

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 000000000000000000000000000000000000000000000000000000e8d4a51000
Arg [4] : 000000000000000000000000c2e186faf60243aa041d9d62522616c9c7158845
Arg [5] : 000000000000000000000000a221af4a429b734abb1cc53fbd0c1d0fa47e1494
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 5368694261204c696e6b00000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [9] : 53484942414c494e4b0000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

16637:586:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6798:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8965:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7918:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9616:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17113:107;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10447:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8089:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7017:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11165:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8429:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8667:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14188:156;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6798:100;6852:13;6885:5;6878:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6798:100;:::o;8965:169::-;9048:4;9065:39;9074:12;:10;:12::i;:::-;9088:7;9097:6;9065:8;:39::i;:::-;9122:4;9115:11;;8965:169;;;;:::o;7918:108::-;7979:7;8006:12;;7999:19;;7918:108;:::o;9616:422::-;9722:4;9739:36;9749:6;9757:9;9768:6;9739:9;:36::i;:::-;9788:24;9815:11;:19;9827:6;9815:19;;;;;;;;;;;;;;;:33;9835:12;:10;:12::i;:::-;9815:33;;;;;;;;;;;;;;;;9788:60;;9887:6;9867:16;:26;;9859:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9949:57;9958:6;9966:12;:10;:12::i;:::-;9999:6;9980:16;:25;;;;:::i;:::-;9949:8;:57::i;:::-;10026:4;10019:11;;;9616:422;;;;;:::o;17113:107::-;17171:5;17196:16;:14;:16::i;:::-;17189:23;;17113:107;:::o;10447:215::-;10535:4;10552:80;10561:12;:10;:12::i;:::-;10575:7;10621:10;10584:11;:25;10596:12;:10;:12::i;:::-;10584:25;;;;;;;;;;;;;;;:34;10610:7;10584:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10552:8;:80::i;:::-;10650:4;10643:11;;10447:215;;;;:::o;8089:127::-;8163:7;8190:9;:18;8200:7;8190:18;;;;;;;;;;;;;;;;8183:25;;8089:127;;;:::o;7017:104::-;7073:13;7106:7;7099:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7017:104;:::o;11165:377::-;11258:4;11275:24;11302:11;:25;11314:12;:10;:12::i;:::-;11302:25;;;;;;;;;;;;;;;:34;11328:7;11302:34;;;;;;;;;;;;;;;;11275:61;;11375:15;11355:16;:35;;11347:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11443:67;11452:12;:10;:12::i;:::-;11466:7;11494:15;11475:16;:34;;;;:::i;:::-;11443:8;:67::i;:::-;11530:4;11523:11;;;11165:377;;;;:::o;8429:175::-;8515:4;8532:42;8542:12;:10;:12::i;:::-;8556:9;8567:6;8532:9;:42::i;:::-;8592:4;8585:11;;8429:175;;;;:::o;8667:151::-;8756:7;8783:11;:18;8795:5;8783:18;;;;;;;;;;;;;;;:27;8802:7;8783:27;;;;;;;;;;;;;;;;8776:34;;8667:151;;;;:::o;14188:156::-;14264:4;14302:3;14286:28;;14295:5;14286:28;;;14307:6;14286:28;;;;;;:::i;:::-;;;;;;;;14332:4;14325:11;;14188:156;;;;;:::o;4119:98::-;4172:7;4199:10;4192:17;;4119:98;:::o;14782:346::-;14901:1;14884:19;;:5;:19;;;;14876:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14982:1;14963:21;;:7;:21;;;;14955:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15066:6;15036:11;:18;15048:5;15036:18;;;;;;;;;;;;;;;:27;15055:7;15036:27;;;;;;;;;;;;;;;:36;;;;15104:7;15088:32;;15097:5;15088:32;;;15113:6;15088:32;;;;;;:::i;:::-;;;;;;;;14782:346;;;:::o;12032:702::-;12156:1;12138:20;;:6;:20;;;;12130:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12240:1;12219:23;;:9;:23;;;;12211:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12295:47;12316:6;12324:9;12335:6;12295:20;:47::i;:::-;12396:1;12367:31;;12375:8;;;;;;;;;;;12367:31;;;12363:133;;12430:8;;;;;;;;;;;12415:40;;;12456:6;12463:9;12481:4;12487:6;12415:79;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12363:133;12506:21;12530:9;:17;12540:6;12530:17;;;;;;;;;;;;;;;;12506:41;;12583:6;12566:13;:23;;12558:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12679:6;12663:13;:22;;;;:::i;:::-;12643:9;:17;12653:6;12643:17;;;;;;;;;;;;;;;:42;;;;12720:6;12696:9;:20;12706:9;12696:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12119:615;12032:702;;;:::o;16371:100::-;16429:5;16454:9;16447:16;;16371:100;:::o;15731:92::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:137::-;206:5;237:6;231:13;222:22;;253:30;277:5;253:30;:::i;:::-;152:137;;;;:::o;295:139::-;341:5;379:6;366:20;357:29;;395:33;422:5;395:33;:::i;:::-;295:139;;;;:::o;440:329::-;499:6;548:2;536:9;527:7;523:23;519:32;516:119;;;554:79;;:::i;:::-;516:119;674:1;699:53;744:7;735:6;724:9;720:22;699:53;:::i;:::-;689:63;;645:117;440:329;;;;:::o;775:474::-;843:6;851;900:2;888:9;879:7;875:23;871:32;868:119;;;906:79;;:::i;:::-;868:119;1026:1;1051:53;1096:7;1087:6;1076:9;1072:22;1051:53;:::i;:::-;1041:63;;997:117;1153:2;1179:53;1224:7;1215:6;1204:9;1200:22;1179:53;:::i;:::-;1169:63;;1124:118;775:474;;;;;:::o;1255:619::-;1332:6;1340;1348;1397:2;1385:9;1376:7;1372:23;1368:32;1365:119;;;1403:79;;:::i;:::-;1365:119;1523:1;1548:53;1593:7;1584:6;1573:9;1569:22;1548:53;:::i;:::-;1538:63;;1494:117;1650:2;1676:53;1721:7;1712:6;1701:9;1697:22;1676:53;:::i;:::-;1666:63;;1621:118;1778:2;1804:53;1849:7;1840:6;1829:9;1825:22;1804:53;:::i;:::-;1794:63;;1749:118;1255:619;;;;;:::o;1880:474::-;1948:6;1956;2005:2;1993:9;1984:7;1980:23;1976:32;1973:119;;;2011:79;;:::i;:::-;1973:119;2131:1;2156:53;2201:7;2192:6;2181:9;2177:22;2156:53;:::i;:::-;2146:63;;2102:117;2258:2;2284:53;2329:7;2320:6;2309:9;2305:22;2284:53;:::i;:::-;2274:63;;2229:118;1880:474;;;;;:::o;2360:345::-;2427:6;2476:2;2464:9;2455:7;2451:23;2447:32;2444:119;;;2482:79;;:::i;:::-;2444:119;2602:1;2627:61;2680:7;2671:6;2660:9;2656:22;2627:61;:::i;:::-;2617:71;;2573:125;2360:345;;;;:::o;2711:118::-;2798:24;2816:5;2798:24;:::i;:::-;2793:3;2786:37;2711:118;;:::o;2835:109::-;2916:21;2931:5;2916:21;:::i;:::-;2911:3;2904:34;2835:109;;:::o;2950:364::-;3038:3;3066:39;3099:5;3066:39;:::i;:::-;3121:71;3185:6;3180:3;3121:71;:::i;:::-;3114:78;;3201:52;3246:6;3241:3;3234:4;3227:5;3223:16;3201:52;:::i;:::-;3278:29;3300:6;3278:29;:::i;:::-;3273:3;3269:39;3262:46;;3042:272;2950:364;;;;:::o;3320:366::-;3462:3;3483:67;3547:2;3542:3;3483:67;:::i;:::-;3476:74;;3559:93;3648:3;3559:93;:::i;:::-;3677:2;3672:3;3668:12;3661:19;;3320:366;;;:::o;3692:::-;3834:3;3855:67;3919:2;3914:3;3855:67;:::i;:::-;3848:74;;3931:93;4020:3;3931:93;:::i;:::-;4049:2;4044:3;4040:12;4033:19;;3692:366;;;:::o;4064:::-;4206:3;4227:67;4291:2;4286:3;4227:67;:::i;:::-;4220:74;;4303:93;4392:3;4303:93;:::i;:::-;4421:2;4416:3;4412:12;4405:19;;4064:366;;;:::o;4436:::-;4578:3;4599:67;4663:2;4658:3;4599:67;:::i;:::-;4592:74;;4675:93;4764:3;4675:93;:::i;:::-;4793:2;4788:3;4784:12;4777:19;;4436:366;;;:::o;4808:::-;4950:3;4971:67;5035:2;5030:3;4971:67;:::i;:::-;4964:74;;5047:93;5136:3;5047:93;:::i;:::-;5165:2;5160:3;5156:12;5149:19;;4808:366;;;:::o;5180:::-;5322:3;5343:67;5407:2;5402:3;5343:67;:::i;:::-;5336:74;;5419:93;5508:3;5419:93;:::i;:::-;5537:2;5532:3;5528:12;5521:19;;5180:366;;;:::o;5552:::-;5694:3;5715:67;5779:2;5774:3;5715:67;:::i;:::-;5708:74;;5791:93;5880:3;5791:93;:::i;:::-;5909:2;5904:3;5900:12;5893:19;;5552:366;;;:::o;5924:118::-;6011:24;6029:5;6011:24;:::i;:::-;6006:3;5999:37;5924:118;;:::o;6048:112::-;6131:22;6147:5;6131:22;:::i;:::-;6126:3;6119:35;6048:112;;:::o;6166:553::-;6343:4;6381:3;6370:9;6366:19;6358:27;;6395:71;6463:1;6452:9;6448:17;6439:6;6395:71;:::i;:::-;6476:72;6544:2;6533:9;6529:18;6520:6;6476:72;:::i;:::-;6558;6626:2;6615:9;6611:18;6602:6;6558:72;:::i;:::-;6640;6708:2;6697:9;6693:18;6684:6;6640:72;:::i;:::-;6166:553;;;;;;;:::o;6725:210::-;6812:4;6850:2;6839:9;6835:18;6827:26;;6863:65;6925:1;6914:9;6910:17;6901:6;6863:65;:::i;:::-;6725:210;;;;:::o;6941:313::-;7054:4;7092:2;7081:9;7077:18;7069:26;;7141:9;7135:4;7131:20;7127:1;7116:9;7112:17;7105:47;7169:78;7242:4;7233:6;7169:78;:::i;:::-;7161:86;;6941:313;;;;:::o;7260:419::-;7426:4;7464:2;7453:9;7449:18;7441:26;;7513:9;7507:4;7503:20;7499:1;7488:9;7484:17;7477:47;7541:131;7667:4;7541:131;:::i;:::-;7533:139;;7260:419;;;:::o;7685:::-;7851:4;7889:2;7878:9;7874:18;7866:26;;7938:9;7932:4;7928:20;7924:1;7913:9;7909:17;7902:47;7966:131;8092:4;7966:131;:::i;:::-;7958:139;;7685:419;;;:::o;8110:::-;8276:4;8314:2;8303:9;8299:18;8291:26;;8363:9;8357:4;8353:20;8349:1;8338:9;8334:17;8327:47;8391:131;8517:4;8391:131;:::i;:::-;8383:139;;8110:419;;;:::o;8535:::-;8701:4;8739:2;8728:9;8724:18;8716:26;;8788:9;8782:4;8778:20;8774:1;8763:9;8759:17;8752:47;8816:131;8942:4;8816:131;:::i;:::-;8808:139;;8535:419;;;:::o;8960:::-;9126:4;9164:2;9153:9;9149:18;9141:26;;9213:9;9207:4;9203:20;9199:1;9188:9;9184:17;9177:47;9241:131;9367:4;9241:131;:::i;:::-;9233:139;;8960:419;;;:::o;9385:::-;9551:4;9589:2;9578:9;9574:18;9566:26;;9638:9;9632:4;9628:20;9624:1;9613:9;9609:17;9602:47;9666:131;9792:4;9666:131;:::i;:::-;9658:139;;9385:419;;;:::o;9810:::-;9976:4;10014:2;10003:9;9999:18;9991:26;;10063:9;10057:4;10053:20;10049:1;10038:9;10034:17;10027:47;10091:131;10217:4;10091:131;:::i;:::-;10083:139;;9810:419;;;:::o;10235:222::-;10328:4;10366:2;10355:9;10351:18;10343:26;;10379:71;10447:1;10436:9;10432:17;10423:6;10379:71;:::i;:::-;10235:222;;;;:::o;10463:214::-;10552:4;10590:2;10579:9;10575:18;10567:26;;10603:67;10667:1;10656:9;10652:17;10643:6;10603:67;:::i;:::-;10463:214;;;;:::o;10764:99::-;10816:6;10850:5;10844:12;10834:22;;10764:99;;;:::o;10869:169::-;10953:11;10987:6;10982:3;10975:19;11027:4;11022:3;11018:14;11003:29;;10869:169;;;;:::o;11044:305::-;11084:3;11103:20;11121:1;11103:20;:::i;:::-;11098:25;;11137:20;11155:1;11137:20;:::i;:::-;11132:25;;11291:1;11223:66;11219:74;11216:1;11213:81;11210:107;;;11297:18;;:::i;:::-;11210:107;11341:1;11338;11334:9;11327:16;;11044:305;;;;:::o;11355:191::-;11395:4;11415:20;11433:1;11415:20;:::i;:::-;11410:25;;11449:20;11467:1;11449:20;:::i;:::-;11444:25;;11488:1;11485;11482:8;11479:34;;;11493:18;;:::i;:::-;11479:34;11538:1;11535;11531:9;11523:17;;11355:191;;;;:::o;11552:96::-;11589:7;11618:24;11636:5;11618:24;:::i;:::-;11607:35;;11552:96;;;:::o;11654:90::-;11688:7;11731:5;11724:13;11717:21;11706:32;;11654:90;;;:::o;11750:126::-;11787:7;11827:42;11820:5;11816:54;11805:65;;11750:126;;;:::o;11882:77::-;11919:7;11948:5;11937:16;;11882:77;;;:::o;11965:86::-;12000:7;12040:4;12033:5;12029:16;12018:27;;11965:86;;;:::o;12057:307::-;12125:1;12135:113;12149:6;12146:1;12143:13;12135:113;;;12234:1;12229:3;12225:11;12219:18;12215:1;12210:3;12206:11;12199:39;12171:2;12168:1;12164:10;12159:15;;12135:113;;;12266:6;12263:1;12260:13;12257:101;;;12346:1;12337:6;12332:3;12328:16;12321:27;12257:101;12106:258;12057:307;;;:::o;12370:320::-;12414:6;12451:1;12445:4;12441:12;12431:22;;12498:1;12492:4;12488:12;12519:18;12509:81;;12575:4;12567:6;12563:17;12553:27;;12509:81;12637:2;12629:6;12626:14;12606:18;12603:38;12600:84;;;12656:18;;:::i;:::-;12600:84;12421:269;12370:320;;;:::o;12696:180::-;12744:77;12741:1;12734:88;12841:4;12838:1;12831:15;12865:4;12862:1;12855:15;12882:180;12930:77;12927:1;12920:88;13027:4;13024:1;13017:15;13051:4;13048:1;13041:15;13191:117;13300:1;13297;13290:12;13314:102;13355:6;13406:2;13402:7;13397:2;13390:5;13386:14;13382:28;13372:38;;13314:102;;;:::o;13422:222::-;13562:34;13558:1;13550:6;13546:14;13539:58;13631:5;13626:2;13618:6;13614:15;13607:30;13422:222;:::o;13650:221::-;13790:34;13786:1;13778:6;13774:14;13767:58;13859:4;13854:2;13846:6;13842:15;13835:29;13650:221;:::o;13877:225::-;14017:34;14013:1;14005:6;14001:14;13994:58;14086:8;14081:2;14073:6;14069:15;14062:33;13877:225;:::o;14108:227::-;14248:34;14244:1;14236:6;14232:14;14225:58;14317:10;14312:2;14304:6;14300:15;14293:35;14108:227;:::o;14341:224::-;14481:34;14477:1;14469:6;14465:14;14458:58;14550:7;14545:2;14537:6;14533:15;14526:32;14341:224;:::o;14571:223::-;14711:34;14707:1;14699:6;14695:14;14688:58;14780:6;14775:2;14767:6;14763:15;14756:31;14571:223;:::o;14800:224::-;14940:34;14936:1;14928:6;14924:14;14917:58;15009:7;15004:2;14996:6;14992:15;14985:32;14800:224;:::o;15030:122::-;15103:24;15121:5;15103:24;:::i;:::-;15096:5;15093:35;15083:63;;15142:1;15139;15132:12;15083:63;15030:122;:::o;15158:116::-;15228:21;15243:5;15228:21;:::i;:::-;15221:5;15218:32;15208:60;;15264:1;15261;15254:12;15208:60;15158:116;:::o;15280:122::-;15353:24;15371:5;15353:24;:::i;:::-;15346:5;15343:35;15333:63;;15392:1;15389;15382:12;15333:63;15280:122;:::o

Swarm Source

ipfs://896aa493175fe29fa7ac0b29fac70df743e3d2313e39ec3c91c81db9f7de4dd1

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.