ETH Price: $3,335.84 (-4.23%)
Gas: 3 Gwei

Contract

0xeE6e9d6Dc081e97501D529139b0b74Af3cE7DeA2
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve172120722023-05-07 23:58:35443 days ago1683503915IN
0xeE6e9d6D...f3cE7DeA2
0 ETH0.00659443141.52663679
Approve172120532023-05-07 23:54:47443 days ago1683503687IN
0xeE6e9d6D...f3cE7DeA2
0 ETH0.00595681127.84246347
Approve172120522023-05-07 23:54:35443 days ago1683503675IN
0xeE6e9d6D...f3cE7DeA2
0 ETH0.00590521126.73496132
Approve172120522023-05-07 23:54:35443 days ago1683503675IN
0xeE6e9d6D...f3cE7DeA2
0 ETH0.00590521126.73496132
Approve172120512023-05-07 23:54:23443 days ago1683503663IN
0xeE6e9d6D...f3cE7DeA2
0 ETH0.00569748122.27684415
Approve172120512023-05-07 23:54:23443 days ago1683503663IN
0xeE6e9d6D...f3cE7DeA2
0 ETH0.00569748122.27684415
Approve172120202023-05-07 23:48:11444 days ago1683503291IN
0xeE6e9d6D...f3cE7DeA2
0 ETH0.00530211114.38074066
Renounce Ownersh...172120182023-05-07 23:47:47444 days ago1683503267IN
0xeE6e9d6D...f3cE7DeA2
0 ETH0.00270598116.63244755
Set Anti Bots Ac...172120142023-05-07 23:46:59444 days ago1683503219IN
0xeE6e9d6D...f3cE7DeA2
0 ETH0.0053959117.71173596
0x60806040172120032023-05-07 23:44:47444 days ago1683503087IN
 Create: BRYPTO
0 ETH0.11335266111.75997296

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BRYPTO

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-07
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        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);
}

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

abstract 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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 virtual onlyOwner {
        _transferOwnership(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 virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
}

contract BRYPTO is Context, IERC20, IERC20Metadata, Ownable {
    // Openzeppelin variables
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    // My variables

    // Anti bots
    mapping(address => uint256) public _blockNumberByAddress;
    bool public antiBotsActive = false;
    mapping(address => bool) public isContractExempt;
    uint public blockCooldownAmount = 10;
    // End anti bots

    // Openzeppelin functions

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor() {
        // Editable
        _name = "BryptoBRRency";
        _symbol = "BRYPTO";
        uint e_totalSupply = 69_696_969_696_969 ether;
        // End editable
        
        // Anti bots
        isContractExempt[address(this)] = true;
        // End anti bots

        _mint(msg.sender, e_totalSupply);
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        // My implementation
        // Anti bots
        if(antiBotsActive)
        {
            if(!isContractExempt[from] && !isContractExempt[to])
            {
                address human = ensureOneHuman(from, to);
                ensureMaxTxFrequency(human);
                _blockNumberByAddress[human] = block.number;
            }
        }
        // End anti bots
        // End my implementation

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    // My functions
    // Anti bots
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    function ensureOneHuman(address _to, address _from) internal virtual returns (address) {
        require(!isContract(_to) || !isContract(_from), "No bots allowed!");
        if (isContract(_to)) return _from;
        else return _to;
    }

    function ensureMaxTxFrequency(address addr) internal virtual {
        bool isAllowed = _blockNumberByAddress[addr] == 0 ||
            ((_blockNumberByAddress[addr] + blockCooldownAmount) < (block.number + 10));
        require(isAllowed, "Max tx frequency exceeded!");
    }

    function setAntiBotsActive(bool value) external onlyOwner {
        antiBotsActive = value;
    }

    function setBlockCooldown(uint value) external onlyOwner {
        blockCooldownAmount = value;
    }

    function setContractExempt(address account, bool value) external onlyOwner {
        isContractExempt[account] = value;
    }
    // End anti bots
}

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":"","type":"address"}],"name":"_blockNumberByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"antiBotsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockCooldownAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isContractExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setAntiBotsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setBlockCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setContractExempt","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

60806040526007805460ff19169055600a6009553480156200002057600080fd5b506200002c33620000cf565b60408051808201909152600d8082526c42727970746f425252656e637960981b6020909201918252620000629160049162000207565b506040805180820190915260068082526542525950544f60d01b6020909201918252620000929160059162000207565b50306000908152600860205260409020805460ff191660011790556d036fb30e1647820a752a45840000620000c833826200011f565b5062000310565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200017a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200018e9190620002ad565b90915550506001600160a01b03821660009081526001602052604081208054839290620001bd908490620002ad565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200021590620002d4565b90600052602060002090601f01602090048101928262000239576000855562000284565b82601f106200025457805160ff191683800117855562000284565b8280016001018555821562000284579182015b828111156200028457825182559160200191906001019062000267565b506200029292915062000296565b5090565b5b8082111562000292576000815560010162000297565b60008219821115620002cf57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002e957607f821691505b6020821081036200030a57634e487b7160e01b600052602260045260246000fd5b50919050565b610e3d80620003206000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b85780639686d3221161007c5780639686d32214610276578063a457c2d714610289578063a9059cbb1461029c578063dd62ed3e146102af578063f2fde38b146102e8578063f6887cd3146102fb57600080fd5b8063715018a61461021857806377a59f001461022057806380f68310146102405780638da5cb5b1461025357806395d89b411461026e57600080fd5b806323b872dd116100ff57806323b872dd146101ad578063313ce567146101c057806339509351146101cf57806341f20b68146101e257806370a08231146101ef57600080fd5b806306fdde031461013c578063095ea7b31461015a57806313c72aed1461017d57806318160ddd146101925780631868aadf146101a4575b600080fd5b61014461031e565b6040516101519190610bd8565b60405180910390f35b61016d610168366004610c49565b6103b0565b6040519015158152602001610151565b61019061018b366004610c73565b6103ca565b005b6003545b604051908152602001610151565b61019660095481565b61016d6101bb366004610c8c565b610402565b60405160128152602001610151565b61016d6101dd366004610c49565b610426565b60075461016d9060ff1681565b6101966101fd366004610cc8565b6001600160a01b031660009081526001602052604090205490565b610190610465565b61019661022e366004610cc8565b60066020526000908152604090205481565b61019061024e366004610cfa565b61049b565b6000546040516001600160a01b039091168152602001610151565b6101446104d8565b610190610284366004610d15565b6104e7565b61016d610297366004610c49565b61053c565b61016d6102aa366004610c49565b6105ce565b6101966102bd366004610d48565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101906102f6366004610cc8565b6105dc565b61016d610309366004610cc8565b60086020526000908152604090205460ff1681565b60606004805461032d90610d72565b80601f016020809104026020016040519081016040528092919081815260200182805461035990610d72565b80156103a65780601f1061037b576101008083540402835291602001916103a6565b820191906000526020600020905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b6000336103be818585610677565b60019150505b92915050565b6000546001600160a01b031633146103fd5760405162461bcd60e51b81526004016103f490610dac565b60405180910390fd5b600955565b60003361041085828561079b565b61041b85858561082d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906103be9082908690610460908790610de1565b610677565b6000546001600160a01b0316331461048f5760405162461bcd60e51b81526004016103f490610dac565b6104996000610a7f565b565b6000546001600160a01b031633146104c55760405162461bcd60e51b81526004016103f490610dac565b6007805460ff1916911515919091179055565b60606005805461032d90610d72565b6000546001600160a01b031633146105115760405162461bcd60e51b81526004016103f490610dac565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156105c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f4565b61041b8286868403610677565b6000336103be81858561082d565b6000546001600160a01b031633146106065760405162461bcd60e51b81526004016103f490610dac565b6001600160a01b03811661066b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f4565b61067481610a7f565b50565b6001600160a01b0383166106d95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f4565b6001600160a01b03821661073a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f4565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610827578181101561081a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f4565b6108278484848403610677565b50505050565b6001600160a01b0383166108915760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f4565b6001600160a01b0382166108f35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f4565b60075460ff1615610977576001600160a01b03831660009081526008602052604090205460ff1615801561094057506001600160a01b03821660009081526008602052604090205460ff16155b156109775760006109518484610acf565b905061095c81610b32565b6001600160a01b031660009081526006602052604090204390555b6001600160a01b038316600090815260016020526040902054818110156109ef5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f4565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a26908490610de1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7291815260200190565b60405180910390a3610827565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610ade5750813b155b610b1d5760405162461bcd60e51b815260206004820152601060248201526f4e6f20626f747320616c6c6f7765642160801b60448201526064016103f4565b823b15610b2b5750806103c4565b50816103c4565b6001600160a01b0381166000908152600660205260408120541580610b855750610b5d43600a610de1565b6009546001600160a01b038416600090815260066020526040902054610b839190610de1565b105b905080610bd45760405162461bcd60e51b815260206004820152601a60248201527f4d6178207478206672657175656e63792065786365656465642100000000000060448201526064016103f4565b5050565b600060208083528351808285015260005b81811015610c0557858101830151858201604001528201610be9565b81811115610c17576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c4457600080fd5b919050565b60008060408385031215610c5c57600080fd5b610c6583610c2d565b946020939093013593505050565b600060208284031215610c8557600080fd5b5035919050565b600080600060608486031215610ca157600080fd5b610caa84610c2d565b9250610cb860208501610c2d565b9150604084013590509250925092565b600060208284031215610cda57600080fd5b610ce382610c2d565b9392505050565b80358015158114610c4457600080fd5b600060208284031215610d0c57600080fd5b610ce382610cea565b60008060408385031215610d2857600080fd5b610d3183610c2d565b9150610d3f60208401610cea565b90509250929050565b60008060408385031215610d5b57600080fd5b610d6483610c2d565b9150610d3f60208401610c2d565b600181811c90821680610d8657607f821691505b602082108103610da657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610e0257634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220cc68e501c91f61e867128f8e3cc661514cb46c0fda171d4568880bf2340dae2864736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b85780639686d3221161007c5780639686d32214610276578063a457c2d714610289578063a9059cbb1461029c578063dd62ed3e146102af578063f2fde38b146102e8578063f6887cd3146102fb57600080fd5b8063715018a61461021857806377a59f001461022057806380f68310146102405780638da5cb5b1461025357806395d89b411461026e57600080fd5b806323b872dd116100ff57806323b872dd146101ad578063313ce567146101c057806339509351146101cf57806341f20b68146101e257806370a08231146101ef57600080fd5b806306fdde031461013c578063095ea7b31461015a57806313c72aed1461017d57806318160ddd146101925780631868aadf146101a4575b600080fd5b61014461031e565b6040516101519190610bd8565b60405180910390f35b61016d610168366004610c49565b6103b0565b6040519015158152602001610151565b61019061018b366004610c73565b6103ca565b005b6003545b604051908152602001610151565b61019660095481565b61016d6101bb366004610c8c565b610402565b60405160128152602001610151565b61016d6101dd366004610c49565b610426565b60075461016d9060ff1681565b6101966101fd366004610cc8565b6001600160a01b031660009081526001602052604090205490565b610190610465565b61019661022e366004610cc8565b60066020526000908152604090205481565b61019061024e366004610cfa565b61049b565b6000546040516001600160a01b039091168152602001610151565b6101446104d8565b610190610284366004610d15565b6104e7565b61016d610297366004610c49565b61053c565b61016d6102aa366004610c49565b6105ce565b6101966102bd366004610d48565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101906102f6366004610cc8565b6105dc565b61016d610309366004610cc8565b60086020526000908152604090205460ff1681565b60606004805461032d90610d72565b80601f016020809104026020016040519081016040528092919081815260200182805461035990610d72565b80156103a65780601f1061037b576101008083540402835291602001916103a6565b820191906000526020600020905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b6000336103be818585610677565b60019150505b92915050565b6000546001600160a01b031633146103fd5760405162461bcd60e51b81526004016103f490610dac565b60405180910390fd5b600955565b60003361041085828561079b565b61041b85858561082d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906103be9082908690610460908790610de1565b610677565b6000546001600160a01b0316331461048f5760405162461bcd60e51b81526004016103f490610dac565b6104996000610a7f565b565b6000546001600160a01b031633146104c55760405162461bcd60e51b81526004016103f490610dac565b6007805460ff1916911515919091179055565b60606005805461032d90610d72565b6000546001600160a01b031633146105115760405162461bcd60e51b81526004016103f490610dac565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156105c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f4565b61041b8286868403610677565b6000336103be81858561082d565b6000546001600160a01b031633146106065760405162461bcd60e51b81526004016103f490610dac565b6001600160a01b03811661066b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f4565b61067481610a7f565b50565b6001600160a01b0383166106d95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f4565b6001600160a01b03821661073a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f4565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610827578181101561081a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f4565b6108278484848403610677565b50505050565b6001600160a01b0383166108915760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f4565b6001600160a01b0382166108f35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f4565b60075460ff1615610977576001600160a01b03831660009081526008602052604090205460ff1615801561094057506001600160a01b03821660009081526008602052604090205460ff16155b156109775760006109518484610acf565b905061095c81610b32565b6001600160a01b031660009081526006602052604090204390555b6001600160a01b038316600090815260016020526040902054818110156109ef5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f4565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a26908490610de1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7291815260200190565b60405180910390a3610827565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610ade5750813b155b610b1d5760405162461bcd60e51b815260206004820152601060248201526f4e6f20626f747320616c6c6f7765642160801b60448201526064016103f4565b823b15610b2b5750806103c4565b50816103c4565b6001600160a01b0381166000908152600660205260408120541580610b855750610b5d43600a610de1565b6009546001600160a01b038416600090815260066020526040902054610b839190610de1565b105b905080610bd45760405162461bcd60e51b815260206004820152601a60248201527f4d6178207478206672657175656e63792065786365656465642100000000000060448201526064016103f4565b5050565b600060208083528351808285015260005b81811015610c0557858101830151858201604001528201610be9565b81811115610c17576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c4457600080fd5b919050565b60008060408385031215610c5c57600080fd5b610c6583610c2d565b946020939093013593505050565b600060208284031215610c8557600080fd5b5035919050565b600080600060608486031215610ca157600080fd5b610caa84610c2d565b9250610cb860208501610c2d565b9150604084013590509250925092565b600060208284031215610cda57600080fd5b610ce382610c2d565b9392505050565b80358015158114610c4457600080fd5b600060208284031215610d0c57600080fd5b610ce382610cea565b60008060408385031215610d2857600080fd5b610d3183610c2d565b9150610d3f60208401610cea565b90509250929050565b60008060408385031215610d5b57600080fd5b610d6483610c2d565b9150610d3f60208401610c2d565b600181811c90821680610d8657607f821691505b602082108103610da657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610e0257634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220cc68e501c91f61e867128f8e3cc661514cb46c0fda171d4568880bf2340dae2864736f6c634300080d0033

Deployed Bytecode Sourcemap

5587:13719:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6931:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9282:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;9282:201:0;1053:187:1;19043:103:0;;;;;;:::i;:::-;;:::i;:::-;;8051:108;8139:12;;8051:108;;;1576:25:1;;;1564:2;1549:18;8051:108:0;1430:177:1;6110:36:0;;;;;;10063:295;;;;;;:::i;:::-;;:::i;7893:93::-;;;7976:2;2087:36:1;;2075:2;2060:18;7893:93:0;1945:184:1;10767:240:0;;;;;;:::i;:::-;;:::i;6014:34::-;;;;;;;;;8222:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8323:18:0;8296:7;8323:18;;;:9;:18;;;;;;;8222:127;4435:103;;;:::i;5951:56::-;;;;;;:::i;:::-;;;;;;;;;;;;;;18936:99;;;;;;:::i;:::-;;:::i;3784:87::-;3830:7;3857:6;3784:87;;-1:-1:-1;;;;;3857:6:0;;;2821:51:1;;2809:2;2794:18;3784:87:0;2675:203:1;7150:104:0;;;:::i;19154:127::-;;;;;;:::i;:::-;;:::i;11510:438::-;;;;;;:::i;:::-;;:::i;8555:193::-;;;;;;:::i;:::-;;:::i;8811:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8927:18:0;;;8900:7;8927:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8811:151;4693:201;;;;;;:::i;:::-;;:::i;6055:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;6931:100;6985:13;7018:5;7011:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6931:100;:::o;9282:201::-;9365:4;173:10;9421:32;173:10;9437:7;9446:6;9421:8;:32::i;:::-;9471:4;9464:11;;;9282:201;;;;;:::o;19043:103::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;;;;;;;;;19111:19:::1;:27:::0;19043:103::o;10063:295::-;10194:4;173:10;10252:38;10268:4;173:10;10283:6;10252:15;:38::i;:::-;10301:27;10311:4;10317:2;10321:6;10301:9;:27::i;:::-;-1:-1:-1;10346:4:0;;10063:295;-1:-1:-1;;;;10063:295:0:o;10767:240::-;173:10;10855:4;10936:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10936:27:0;;;;;;;;;;10855:4;;173:10;10911:66;;173:10;;10936:27;;:40;;10966:10;;10936:40;:::i;:::-;10911:8;:66::i;4435:103::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;4500:30:::1;4527:1;4500:18;:30::i;:::-;4435:103::o:0;18936:99::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;19005:14:::1;:22:::0;;-1:-1:-1;;19005:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18936:99::o;7150:104::-;7206:13;7239:7;7232:14;;;;;:::i;19154:127::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19240:25:0;;;::::1;;::::0;;;:16:::1;:25;::::0;;;;:33;;-1:-1:-1;;19240:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19154:127::o;11510:438::-;173:10;11603:4;11686:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11686:27:0;;;;;;;;;;11603:4;;173:10;11732:35;;;;11724:85;;;;-1:-1:-1;;;11724:85:0;;4585:2:1;11724:85:0;;;4567:21:1;4624:2;4604:18;;;4597:30;4663:34;4643:18;;;4636:62;-1:-1:-1;;;4714:18:1;;;4707:35;4759:19;;11724:85:0;4383:401:1;11724:85:0;11845:60;11854:5;11861:7;11889:15;11870:16;:34;11845:8;:60::i;8555:193::-;8634:4;173:10;8690:28;173:10;8707:2;8711:6;8690:9;:28::i;4693:201::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4782:22:0;::::1;4774:73;;;::::0;-1:-1:-1;;;4774:73:0;;4991:2:1;4774:73:0::1;::::0;::::1;4973:21:1::0;5030:2;5010:18;;;5003:30;5069:34;5049:18;;;5042:62;-1:-1:-1;;;5120:18:1;;;5113:36;5166:19;;4774:73:0::1;4789:402:1::0;4774:73:0::1;4858:28;4877:8;4858:18;:28::i;:::-;4693:201:::0;:::o;15573:380::-;-1:-1:-1;;;;;15709:19:0;;15701:68;;;;-1:-1:-1;;;15701:68:0;;5398:2:1;15701:68:0;;;5380:21:1;5437:2;5417:18;;;5410:30;5476:34;5456:18;;;5449:62;-1:-1:-1;;;5527:18:1;;;5520:34;5571:19;;15701:68:0;5196:400:1;15701:68:0;-1:-1:-1;;;;;15788:21:0;;15780:68;;;;-1:-1:-1;;;15780:68:0;;5803:2:1;15780:68:0;;;5785:21:1;5842:2;5822:18;;;5815:30;5881:34;5861:18;;;5854:62;-1:-1:-1;;;5932:18:1;;;5925:32;5974:19;;15780:68:0;5601:398:1;15780:68:0;-1:-1:-1;;;;;15861:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15913:32;;1576:25:1;;;15913:32:0;;1549:18:1;15913:32:0;;;;;;;15573:380;;;:::o;16240:453::-;-1:-1:-1;;;;;8927:18:0;;;16375:24;8927:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;16442:37:0;;16438:248;;16524:6;16504:16;:26;;16496:68;;;;-1:-1:-1;;;16496:68:0;;6206:2:1;16496:68:0;;;6188:21:1;6245:2;6225:18;;;6218:30;6284:31;6264:18;;;6257:59;6333:18;;16496:68:0;6004:353:1;16496:68:0;16608:51;16617:5;16624:7;16652:6;16633:16;:25;16608:8;:51::i;:::-;16364:329;16240:453;;;:::o;12427:1098::-;-1:-1:-1;;;;;12558:18:0;;12550:68;;;;-1:-1:-1;;;12550:68:0;;6564:2:1;12550:68:0;;;6546:21:1;6603:2;6583:18;;;6576:30;6642:34;6622:18;;;6615:62;-1:-1:-1;;;6693:18:1;;;6686:35;6738:19;;12550:68:0;6362:401:1;12550:68:0;-1:-1:-1;;;;;12637:16:0;;12629:64;;;;-1:-1:-1;;;12629:64:0;;6970:2:1;12629:64:0;;;6952:21:1;7009:2;6989:18;;;6982:30;7048:34;7028:18;;;7021:62;-1:-1:-1;;;7099:18:1;;;7092:33;7142:19;;12629:64:0;6768:399:1;12629:64:0;12812:14;;;;12809:303;;;-1:-1:-1;;;;;12856:22:0;;;;;;:16;:22;;;;;;;;12855:23;:48;;;;-1:-1:-1;;;;;;12883:20:0;;;;;;:16;:20;;;;;;;;12882:21;12855:48;12852:249;;;12937:13;12953:24;12968:4;12974:2;12953:14;:24::i;:::-;12937:40;;12996:27;13017:5;12996:20;:27::i;:::-;-1:-1:-1;;;;;13042:28:0;;;;;:21;:28;;;;;13073:12;13042:43;;12852:249;-1:-1:-1;;;;;13206:15:0;;13184:19;13206:15;;;:9;:15;;;;;;13240:21;;;;13232:72;;;;-1:-1:-1;;;13232:72:0;;7374:2:1;13232:72:0;;;7356:21:1;7413:2;7393:18;;;7386:30;7452:34;7432:18;;;7425:62;-1:-1:-1;;;7503:18:1;;;7496:36;7549:19;;13232:72:0;7172:402:1;13232:72:0;-1:-1:-1;;;;;13340:15:0;;;;;;;:9;:15;;;;;;13358:20;;;13340:38;;13400:13;;;;;;;;:23;;13372:6;;13340:15;13400:23;;13372:6;;13400:23;:::i;:::-;;;;;;;;13456:2;-1:-1:-1;;;;;13441:26:0;13450:4;-1:-1:-1;;;;;13441:26:0;;13460:6;13441:26;;;;1576:25:1;;1564:2;1549:18;;1430:177;13441:26:0;;;;;;;;13480:37;17293:125;5054:191;5128:16;5147:6;;-1:-1:-1;;;;;5164:17:0;;;-1:-1:-1;;;;;;5164:17:0;;;;;;5197:40;;5147:6;;;;;;;5197:40;;5128:16;5197:40;5117:128;5054:191;:::o;18397:243::-;18475:7;18325:20;;18373:8;;18503:38;;-1:-1:-1;18325:20:0;;18373:8;18503:38;18495:67;;;;-1:-1:-1;;;18495:67:0;;7781:2:1;18495:67:0;;;7763:21:1;7820:2;7800:18;;;7793:30;-1:-1:-1;;;7839:18:1;;;7832:46;7895:18;;18495:67:0;7579:340:1;18495:67:0;18325:20;;18373:8;18573:59;;-1:-1:-1;18601:5:0;18594:12;;18573:59;-1:-1:-1;18629:3:0;18622:10;;18648:280;-1:-1:-1;;;;;18737:27:0;;18720:14;18737:27;;;:21;:27;;;;;;:32;;:124;;-1:-1:-1;18842:17:0;:12;18857:2;18842:17;:::i;:::-;18818:19;;-1:-1:-1;;;;;18788:27:0;;;;;;:21;:27;;;;;;:49;;18818:19;18788:49;:::i;:::-;18787:73;18737:124;18720:141;;18880:9;18872:48;;;;-1:-1:-1;;;18872:48:0;;8126:2:1;18872:48:0;;;8108:21:1;8165:2;8145:18;;;8138:30;8204:28;8184:18;;;8177:56;8250:18;;18872:48:0;7924:350:1;18872:48:0;18709:219;18648:280;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1245:180::-;1304:6;1357:2;1345:9;1336:7;1332:23;1328:32;1325:52;;;1373:1;1370;1363:12;1325:52;-1:-1:-1;1396:23:1;;1245:180;-1:-1:-1;1245:180:1:o;1612:328::-;1689:6;1697;1705;1758:2;1746:9;1737:7;1733:23;1729:32;1726:52;;;1774:1;1771;1764:12;1726:52;1797:29;1816:9;1797:29;:::i;:::-;1787:39;;1845:38;1879:2;1868:9;1864:18;1845:38;:::i;:::-;1835:48;;1930:2;1919:9;1915:18;1902:32;1892:42;;1612:328;;;;;:::o;2134:186::-;2193:6;2246:2;2234:9;2225:7;2221:23;2217:32;2214:52;;;2262:1;2259;2252:12;2214:52;2285:29;2304:9;2285:29;:::i;:::-;2275:39;2134:186;-1:-1:-1;;;2134:186:1:o;2325:160::-;2390:20;;2446:13;;2439:21;2429:32;;2419:60;;2475:1;2472;2465:12;2490:180;2546:6;2599:2;2587:9;2578:7;2574:23;2570:32;2567:52;;;2615:1;2612;2605:12;2567:52;2638:26;2654:9;2638:26;:::i;2883:254::-;2948:6;2956;3009:2;2997:9;2988:7;2984:23;2980:32;2977:52;;;3025:1;3022;3015:12;2977:52;3048:29;3067:9;3048:29;:::i;:::-;3038:39;;3096:35;3127:2;3116:9;3112:18;3096:35;:::i;:::-;3086:45;;2883:254;;;;;:::o;3142:260::-;3210:6;3218;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3310:29;3329:9;3310:29;:::i;:::-;3300:39;;3358:38;3392:2;3381:9;3377:18;3358:38;:::i;3407:380::-;3486:1;3482:12;;;;3529;;;3550:61;;3604:4;3596:6;3592:17;3582:27;;3550:61;3657:2;3649:6;3646:14;3626:18;3623:38;3620:161;;3703:10;3698:3;3694:20;3691:1;3684:31;3738:4;3735:1;3728:15;3766:4;3763:1;3756:15;3620:161;;3407:380;;;:::o;3792:356::-;3994:2;3976:21;;;4013:18;;;4006:30;4072:34;4067:2;4052:18;;4045:62;4139:2;4124:18;;3792:356::o;4153:225::-;4193:3;4224:1;4220:6;4217:1;4214:13;4211:136;;;4269:10;4264:3;4260:20;4257:1;4250:31;4304:4;4301:1;4294:15;4332:4;4329:1;4322:15;4211:136;-1:-1:-1;4363:9:1;;4153:225::o

Swarm Source

ipfs://cc68e501c91f61e867128f8e3cc661514cb46c0fda171d4568880bf2340dae28

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.