ETH Price: $3,100.32 (+1.10%)
Gas: 2 Gwei

Contract

0xF3A31072e7947d11893e0e060875A6887Fc867aB
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Approve190408632024-01-19 12:19:23173 days ago1705666763IN
0xF3A31072...87Fc867aB
0 ETH0.0009679520.77683552
Approve184719742023-10-31 18:43:59253 days ago1698777839IN
0xF3A31072...87Fc867aB
0 ETH0.0012544426.96105077
Approve184717332023-10-31 17:55:11253 days ago1698774911IN
0xF3A31072...87Fc867aB
0 ETH0.0010470522.474865
Approve183630252023-10-16 12:46:11268 days ago1697460371IN
0xF3A31072...87Fc867aB
0 ETH0.0005646312.21092749
Approve183630162023-10-16 12:44:23268 days ago1697460263IN
0xF3A31072...87Fc867aB
0 ETH0.0004658910.00040167
Transfer183628852023-10-16 12:18:11268 days ago1697458691IN
0xF3A31072...87Fc867aB
0 ETH0.000260528.67798226
Transfer183628692023-10-16 12:14:59268 days ago1697458499IN
0xF3A31072...87Fc867aB
0 ETH0.00019176.38562356
Transfer183628592023-10-16 12:12:59268 days ago1697458379IN
0xF3A31072...87Fc867aB
0 ETH0.000290266.1600027
Approve183353002023-10-12 15:41:59272 days ago1697125319IN
0xF3A31072...87Fc867aB
0 ETH0.00044917
Approve183353002023-10-12 15:41:59272 days ago1697125319IN
0xF3A31072...87Fc867aB
0 ETH0.0003961815
Approve183352992023-10-12 15:41:47272 days ago1697125307IN
0xF3A31072...87Fc867aB
0 ETH0.0006020513
Approve182989992023-10-07 13:47:23277 days ago1696686443IN
0xF3A31072...87Fc867aB
0 ETH0.000357037.67353278
Transfer182925722023-10-06 16:12:35278 days ago1696608755IN
0xF3A31072...87Fc867aB
0 ETH0.0004984916.60501251
Approve182914752023-10-06 12:31:23278 days ago1696595483IN
0xF3A31072...87Fc867aB
0 ETH0.0005416211.64091193
Approve182912882023-10-06 11:53:59278 days ago1696593239IN
0xF3A31072...87Fc867aB
0 ETH0.000264115.67648148
Approve182783312023-10-04 16:24:47280 days ago1696436687IN
0xF3A31072...87Fc867aB
0 ETH0.0006658214.29177168
Approve182736292023-10-04 0:38:59280 days ago1696379939IN
0xF3A31072...87Fc867aB
0 ETH0.0005072310.88778122
Approve182720732023-10-03 19:25:35281 days ago1696361135IN
0xF3A31072...87Fc867aB
0 ETH0.0008090817.38929827
Approve182718462023-10-03 18:40:11281 days ago1696358411IN
0xF3A31072...87Fc867aB
0 ETH0.0008785518.88231064
Approve182716522023-10-03 18:00:59281 days ago1696356059IN
0xF3A31072...87Fc867aB
0 ETH0.0014074830.21901847
Approve182716522023-10-03 18:00:59281 days ago1696356059IN
0xF3A31072...87Fc867aB
0 ETH0.00233950.21901847
Approve182716502023-10-03 18:00:35281 days ago1696356035IN
0xF3A31072...87Fc867aB
0 ETH0.0009745920.94632599
Approve182716492023-10-03 18:00:23281 days ago1696356023IN
0xF3A31072...87Fc867aB
0 ETH0.0008818218.95263955
Approve182716492023-10-03 18:00:23281 days ago1696356023IN
0xF3A31072...87Fc867aB
0 ETH0.0019074140.95263955
Approve182716452023-10-03 17:59:35281 days ago1696355975IN
0xF3A31072...87Fc867aB
0 ETH0.000845918.1806476
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MiSED

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-11
*/

// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;

interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

    /**
     * @dev Returns the erc token owner.
     */
    function getOwner() external view returns (address);

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

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

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

/*
 * @dev 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 GSN 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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor() {}

    function _msgSender() internal view returns (address) {
        return msg.sender;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract MiSED is IERC20, Ownable {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;
    uint8 private _decimals;
    string private _symbol;
    string private _name;

    constructor() {
        _name = "MiSED";
        _symbol = "MSD";
        _decimals = 18;
        _totalSupply = 200000000 * (10**18);
        _balances[msg.sender] = _totalSupply;

        emit Transfer(address(0), msg.sender, _totalSupply);
    }

    /**
     * @dev Returns the erc token owner.
     */
    function getOwner() external view override returns (address) {
        return owner();
    }

    /**
     * @dev Returns the token decimals.
     */
    function decimals() external view override returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Returns the token symbol.
     */
    function symbol() external view override returns (string memory) {
        return _symbol;
    }

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

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

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

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

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

    /**
     * @dev See {ERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        external
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {ERC20-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
    ) external override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {ERC20-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(
            _msgSender(),
            spender,
            _allowances[_msgSender()][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 {ERC20-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(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev 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 {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

    function burn(uint256 _amount) public {
        _burn(msg.sender, _amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"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":[{"internalType":"uint256","name":"_amount","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":[],"name":"getOwner","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604080518082019091526005815264135a54d15160da1b60208201526006906200007e9082620001c2565b506040805180820190915260038152621354d160ea1b6020820152600590620000a89082620001c2565b506004805460ff191660121790556aa56fa5b99019a5c800000060038190553360008181526001602052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef916200010f9190815260200190565b60405180910390a36200028e565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200014857607f821691505b6020821081036200016957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001bd57600081815260208120601f850160051c81016020861015620001985750805b601f850160051c820191505b81811015620001b957828155600101620001a4565b5050505b505050565b81516001600160401b03811115620001de57620001de6200011d565b620001f681620001ef845462000133565b846200016f565b602080601f8311600181146200022e5760008415620002155750858301515b600019600386901b1c1916600185901b178555620001b9565b600085815260208120601f198616915b828110156200025f578886015182559484019460019091019084016200023e565b50858210156200027e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b610d25806200029e6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610217578063a9059cbb1461022a578063dd62ed3e1461023d578063f2fde38b1461027657600080fd5b8063715018a6146101d1578063893d20e8146101d95780638da5cb5b146101fe57806395d89b411461020f57600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461018057806342966c681461019357806370a08231146101a857600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610289565b60405161011a9190610aad565b60405180910390f35b610136610131366004610b17565b61031b565b604051901515815260200161011a565b6003545b60405190815260200161011a565b610136610166366004610b41565b610332565b60045460405160ff909116815260200161011a565b61013661018e366004610b17565b61039b565b6101a66101a1366004610b7d565b6103d1565b005b61014a6101b6366004610b96565b6001600160a01b031660009081526001602052604090205490565b6101a66103de565b6000546001600160a01b03165b6040516001600160a01b03909116815260200161011a565b6000546001600160a01b03166101e6565b61010d610487565b610136610225366004610b17565b610496565b610136610238366004610b17565b6104e5565b61014a61024b366004610bb1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a6610284366004610b96565b6104f2565b60606006805461029890610be4565b80601f01602080910402602001604051908101604052809291908181526020018280546102c490610be4565b80156103115780601f106102e657610100808354040283529160200191610311565b820191906000526020600020905b8154815290600101906020018083116102f457829003601f168201915b5050505050905090565b6000610328338484610555565b5060015b92915050565b600061033f84848461067a565b610391843361038c85604051806060016040528060288152602001610ca3602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610800565b610555565b5060019392505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161032891859061038c908661083a565b6103db33826108a0565b50565b6000546001600160a01b0316331461043d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606005805461029890610be4565b6000610328338461038c85604051806060016040528060258152602001610ccb602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610800565b600061032833848461067a565b6000546001600160a01b0316331461054c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610434565b6103db816109ab565b6001600160a01b0383166105b75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610434565b6001600160a01b0382166106185760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610434565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106de5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610434565b6001600160a01b0382166107405760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610434565b61077d81604051806060016040528060268152602001610c7d602691396001600160a01b0386166000908152600160205260409020549190610800565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546107ac908261083a565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061066d9085815260200190565b600081848411156108245760405162461bcd60e51b81526004016104349190610aad565b5060006108318486610c34565b95945050505050565b6000806108478385610c47565b9050838110156108995760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610434565b9392505050565b6001600160a01b0382166109005760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610434565b61093d81604051806060016040528060228152602001610c5b602291396001600160a01b0385166000908152600160205260409020549190610800565b6001600160a01b0383166000908152600160205260409020556003546109639082610a6b565b6003556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038116610a105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610434565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061089983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610800565b600060208083528351808285015260005b81811015610ada57858101830151858201604001528201610abe565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b1257600080fd5b919050565b60008060408385031215610b2a57600080fd5b610b3383610afb565b946020939093013593505050565b600080600060608486031215610b5657600080fd5b610b5f84610afb565b9250610b6d60208501610afb565b9150604084013590509250925092565b600060208284031215610b8f57600080fd5b5035919050565b600060208284031215610ba857600080fd5b61089982610afb565b60008060408385031215610bc457600080fd5b610bcd83610afb565b9150610bdb60208401610afb565b90509250929050565b600181811c90821680610bf857607f821691505b602082108103610c1857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561032c5761032c610c1e565b8082018082111561032c5761032c610c1e56fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203c9cf0e179ae96a65b2436d9ff56648858c86e5152a703736b527c46b9e877d364736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d714610217578063a9059cbb1461022a578063dd62ed3e1461023d578063f2fde38b1461027657600080fd5b8063715018a6146101d1578063893d20e8146101d95780638da5cb5b146101fe57806395d89b411461020f57600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461018057806342966c681461019357806370a08231146101a857600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610289565b60405161011a9190610aad565b60405180910390f35b610136610131366004610b17565b61031b565b604051901515815260200161011a565b6003545b60405190815260200161011a565b610136610166366004610b41565b610332565b60045460405160ff909116815260200161011a565b61013661018e366004610b17565b61039b565b6101a66101a1366004610b7d565b6103d1565b005b61014a6101b6366004610b96565b6001600160a01b031660009081526001602052604090205490565b6101a66103de565b6000546001600160a01b03165b6040516001600160a01b03909116815260200161011a565b6000546001600160a01b03166101e6565b61010d610487565b610136610225366004610b17565b610496565b610136610238366004610b17565b6104e5565b61014a61024b366004610bb1565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a6610284366004610b96565b6104f2565b60606006805461029890610be4565b80601f01602080910402602001604051908101604052809291908181526020018280546102c490610be4565b80156103115780601f106102e657610100808354040283529160200191610311565b820191906000526020600020905b8154815290600101906020018083116102f457829003601f168201915b5050505050905090565b6000610328338484610555565b5060015b92915050565b600061033f84848461067a565b610391843361038c85604051806060016040528060288152602001610ca3602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610800565b610555565b5060019392505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161032891859061038c908661083a565b6103db33826108a0565b50565b6000546001600160a01b0316331461043d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606005805461029890610be4565b6000610328338461038c85604051806060016040528060258152602001610ccb602591393360009081526002602090815260408083206001600160a01b038d1684529091529020549190610800565b600061032833848461067a565b6000546001600160a01b0316331461054c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610434565b6103db816109ab565b6001600160a01b0383166105b75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610434565b6001600160a01b0382166106185760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610434565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106de5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610434565b6001600160a01b0382166107405760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610434565b61077d81604051806060016040528060268152602001610c7d602691396001600160a01b0386166000908152600160205260409020549190610800565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546107ac908261083a565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061066d9085815260200190565b600081848411156108245760405162461bcd60e51b81526004016104349190610aad565b5060006108318486610c34565b95945050505050565b6000806108478385610c47565b9050838110156108995760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610434565b9392505050565b6001600160a01b0382166109005760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610434565b61093d81604051806060016040528060228152602001610c5b602291396001600160a01b0385166000908152600160205260409020549190610800565b6001600160a01b0383166000908152600160205260409020556003546109639082610a6b565b6003556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038116610a105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610434565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061089983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610800565b600060208083528351808285015260005b81811015610ada57858101830151858201604001528201610abe565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b1257600080fd5b919050565b60008060408385031215610b2a57600080fd5b610b3383610afb565b946020939093013593505050565b600080600060608486031215610b5657600080fd5b610b5f84610afb565b9250610b6d60208501610afb565b9150604084013590509250925092565b600060208284031215610b8f57600080fd5b5035919050565b600060208284031215610ba857600080fd5b61089982610afb565b60008060408385031215610bc457600080fd5b610bcd83610afb565b9150610bdb60208401610afb565b90509250929050565b600181811c90821680610bf857607f821691505b602082108103610c1857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561032c5761032c610c1e565b8082018082111561032c5761032c610c1e56fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203c9cf0e179ae96a65b2436d9ff56648858c86e5152a703736b527c46b9e877d364736f6c63430008120033

Deployed Bytecode Sourcemap

12113:7780:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13247:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14538:195;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;14538:195:0;1004:187:1;13405:102:0;13487:12;;13405:102;;;1342:25:1;;;1330:2;1315:18;13405:102:0;1196:177:1;15204:448:0;;;;;;:::i;:::-;;:::i;12927:94::-;13004:9;;12927:94;;13004:9;;;;1853:36:1;;1841:2;1826:18;12927:94:0;1711:184:1;16060:283:0;;;;;;:::i;:::-;;:::i;19807:83::-;;;;;;:::i;:::-;;:::i;:::-;;13569:162;;;;;;:::i;:::-;-1:-1:-1;;;;;13705:18:0;13673:7;13705:18;;;:9;:18;;;;;;;13569:162;11330:140;;;:::i;12766:94::-;12818:7;10753:6;-1:-1:-1;;;;;10753:6:0;12766:94;;;-1:-1:-1;;;;;2440:32:1;;;2422:51;;2410:2;2395:18;12766:94:0;2276:203:1;10688:79:0;10726:7;10753:6;-1:-1:-1;;;;;10753:6:0;10688:79;;13086:98;;;:::i;16845:383::-;;;;;;:::i;:::-;;:::i;13943:201::-;;;;;;:::i;:::-;;:::i;14206:186::-;;;;;;:::i;:::-;-1:-1:-1;;;;;14357:18:0;;;14325:7;14357:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14206:186;11625:109;;;;;;:::i;:::-;;:::i;13247:94::-;13295:13;13328:5;13321:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13247:94;:::o;14538:195::-;14642:4;14664:39;4083:10;14687:7;14696:6;14664:8;:39::i;:::-;-1:-1:-1;14721:4:0;14538:195;;;;;:::o;15204:448::-;15338:4;15355:36;15365:6;15373:9;15384:6;15355:9;:36::i;:::-;15402:220;15425:6;4083:10;15473:138;15529:6;15473:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15473:19:0;;;;;;:11;:19;;;;;;;;4083:10;15473:33;;;;;;;;;;:37;:138::i;:::-;15402:8;:220::i;:::-;-1:-1:-1;15640:4:0;15204:448;;;;;:::o;16060:283::-;4083:10;16158:4;16252:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16252:34:0;;;;;;;;;;16158:4;;16180:133;;16230:7;;16252:50;;16291:10;16252:38;:50::i;19807:83::-;19856:26;19862:10;19874:7;19856:5;:26::i;:::-;19807:83;:::o;11330:140::-;10900:6;;-1:-1:-1;;;;;10900:6:0;4083:10;10900:22;10892:67;;;;-1:-1:-1;;;10892:67:0;;3336:2:1;10892:67:0;;;3318:21:1;;;3355:18;;;3348:30;3414:34;3394:18;;;3387:62;3466:18;;10892:67:0;;;;;;;;;11429:1:::1;11413:6:::0;;11392:40:::1;::::0;-1:-1:-1;;;;;11413:6:0;;::::1;::::0;11392:40:::1;::::0;11429:1;;11392:40:::1;11460:1;11443:19:::0;;-1:-1:-1;;;;;;11443:19:0::1;::::0;;11330:140::o;13086:98::-;13136:13;13169:7;13162:14;;;;;:::i;16845:383::-;16948:4;16970:228;4083:10;17020:7;17042:145;17099:15;17042:145;;;;;;;;;;;;;;;;;4083:10;17042:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17042:34:0;;;;;;;;;;;;:38;:145::i;13943:201::-;14050:4;14072:42;4083:10;14096:9;14107:6;14072:9;:42::i;11625:109::-;10900:6;;-1:-1:-1;;;;;10900:6:0;4083:10;10900:22;10892:67;;;;-1:-1:-1;;;10892:67:0;;3336:2:1;10892:67:0;;;3318:21:1;;;3355:18;;;3348:30;3414:34;3394:18;;;3387:62;3466:18;;10892:67:0;3134:356:1;10892:67:0;11698:28:::1;11717:8;11698:18;:28::i;19427:372::-:0;-1:-1:-1;;;;;19555:19:0;;19547:68;;;;-1:-1:-1;;;19547:68:0;;3697:2:1;19547:68:0;;;3679:21:1;3736:2;3716:18;;;3709:30;3775:34;3755:18;;;3748:62;-1:-1:-1;;;3826:18:1;;;3819:34;3870:19;;19547:68:0;3495:400:1;19547:68:0;-1:-1:-1;;;;;19634:21:0;;19626:68;;;;-1:-1:-1;;;19626:68:0;;4102:2:1;19626:68:0;;;4084:21:1;4141:2;4121:18;;;4114:30;4180:34;4160:18;;;4153:62;-1:-1:-1;;;4231:18:1;;;4224:32;4273:19;;19626:68:0;3900:398:1;19626:68:0;-1:-1:-1;;;;;19707:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19759:32;;1342:25:1;;;19759:32:0;;1315:18:1;19759:32:0;;;;;;;;19427:372;;;:::o;17718:552::-;-1:-1:-1;;;;;17850:20:0;;17842:70;;;;-1:-1:-1;;;17842:70:0;;4505:2:1;17842:70:0;;;4487:21:1;4544:2;4524:18;;;4517:30;4583:34;4563:18;;;4556:62;-1:-1:-1;;;4634:18:1;;;4627:35;4679:19;;17842:70:0;4303:401:1;17842:70:0;-1:-1:-1;;;;;17931:23:0;;17923:71;;;;-1:-1:-1;;;17923:71:0;;4911:2:1;17923:71:0;;;4893:21:1;4950:2;4930:18;;;4923:30;4989:34;4969:18;;;4962:62;-1:-1:-1;;;5040:18:1;;;5033:33;5083:19;;17923:71:0;4709:399:1;17923:71:0;18027:108;18063:6;18027:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18027:17:0;;;;;;:9;:17;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;18007:17:0;;;;;;;:9;:17;;;;;;:128;;;;18179:20;;;;;;;:32;;18204:6;18179:24;:32::i;:::-;-1:-1:-1;;;;;18156:20:0;;;;;;;:9;:20;;;;;;;:55;;;;18227:35;;;;;;;;;;18255:6;1342:25:1;;1330:2;1315:18;;1196:177;6060:226:0;6180:7;6216:12;6208:6;;;;6200:29;;;;-1:-1:-1;;;6200:29:0;;;;;;;;:::i;:::-;-1:-1:-1;6240:9:0;6252:5;6256:1;6252;:5;:::i;:::-;6240:17;6060:226;-1:-1:-1;;;;;6060:226:0:o;5173:181::-;5231:7;;5263:5;5267:1;5263;:5;:::i;:::-;5251:17;;5292:1;5287;:6;;5279:46;;;;-1:-1:-1;;;5279:46:0;;5710:2:1;5279:46:0;;;5692:21:1;5749:2;5729:18;;;5722:30;5788:29;5768:18;;;5761:57;5835:18;;5279:46:0;5508:351:1;5279:46:0;5345:1;5173:181;-1:-1:-1;;;5173:181:0:o;18602:385::-;-1:-1:-1;;;;;18678:21:0;;18670:67;;;;-1:-1:-1;;;18670:67:0;;6066:2:1;18670:67:0;;;6048:21:1;6105:2;6085:18;;;6078:30;6144:34;6124:18;;;6117:62;-1:-1:-1;;;6195:18:1;;;6188:31;6236:19;;18670:67:0;5864:397:1;18670:67:0;18771:105;18808:6;18771:105;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18771:18:0;;;;;;:9;:18;;;;;;;:105;:22;:105::i;:::-;-1:-1:-1;;;;;18750:18:0;;;;;;:9;:18;;;;;:126;18902:12;;:24;;18919:6;18902:16;:24::i;:::-;18887:12;:39;18942:37;;1342:25:1;;;18968:1:0;;-1:-1:-1;;;;;18942:37:0;;;;;1330:2:1;1315:18;18942:37:0;;;;;;;18602:385;;:::o;11840:266::-;-1:-1:-1;;;;;11928:22:0;;11906:110;;;;-1:-1:-1;;;11906:110:0;;6468:2:1;11906:110:0;;;6450:21:1;6507:2;6487:18;;;6480:30;6546:34;6526:18;;;6519:62;-1:-1:-1;;;6597:18:1;;;6590:36;6643:19;;11906:110:0;6266:402:1;11906:110:0;12053:6;;;12032:38;;-1:-1:-1;;;;;12032:38:0;;;;12053:6;;;12032:38;;;12081:6;:17;;-1:-1:-1;;;;;;12081:17:0;-1:-1:-1;;;;;12081:17:0;;;;;;;;;;11840:266::o;5629:136::-;5687:7;5714:43;5718:1;5721;5714:43;;;;;;;;;;;;;;;;;:3;:43::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:180::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;-1:-1:-1;2051:23:1;;1900:180;-1:-1:-1;1900:180:1:o;2085:186::-;2144:6;2197:2;2185:9;2176:7;2172:23;2168:32;2165:52;;;2213:1;2210;2203:12;2165:52;2236:29;2255:9;2236:29;:::i;2484:260::-;2552:6;2560;2613:2;2601:9;2592:7;2588:23;2584:32;2581:52;;;2629:1;2626;2619:12;2581:52;2652:29;2671:9;2652:29;:::i;:::-;2642:39;;2700:38;2734:2;2723:9;2719:18;2700:38;:::i;:::-;2690:48;;2484:260;;;;;:::o;2749:380::-;2828:1;2824:12;;;;2871;;;2892:61;;2946:4;2938:6;2934:17;2924:27;;2892:61;2999:2;2991:6;2988:14;2968:18;2965:38;2962:161;;3045:10;3040:3;3036:20;3033:1;3026:31;3080:4;3077:1;3070:15;3108:4;3105:1;3098:15;2962:161;;2749:380;;;:::o;5113:127::-;5174:10;5169:3;5165:20;5162:1;5155:31;5205:4;5202:1;5195:15;5229:4;5226:1;5219:15;5245:128;5312:9;;;5333:11;;;5330:37;;;5347:18;;:::i;5378:125::-;5443:9;;;5464:10;;;5461:36;;;5477:18;;:::i

Swarm Source

ipfs://3c9cf0e179ae96a65b2436d9ff56648858c86e5152a703736b527c46b9e877d3

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.