Contract

0xFe626a8475fbFbc856fC19BD8AF11b122923cb9F

Overview

S Balance

Sonic LogoSonic LogoSonic Logo0 S

S Value

-

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve13811402024-12-23 19:54:172 hrs ago1734983657IN
0xFe626a84...22923cb9F
0 S0.000051241.1
Approve13699972024-12-23 17:50:064 hrs ago1734976206IN
0xFe626a84...22923cb9F
0 S0.000057111.1
Approve13501632024-12-23 14:37:047 hrs ago1734964624IN
0xFe626a84...22923cb9F
0 S0.000057111.1
Approve12120342024-12-22 16:24:3030 hrs ago1734884670IN
0xFe626a84...22923cb9F
0 S0.000032561.1
Approve12119142024-12-22 16:23:2130 hrs ago1734884601IN
0xFe626a84...22923cb9F
0 S0.000052261.1
Approve11726272024-12-22 11:11:2235 hrs ago1734865882IN
0xFe626a84...22923cb9F
0 S0.000054291.11
Approve11646832024-12-22 9:59:3036 hrs ago1734861570IN
0xFe626a84...22923cb9F
0 S0.000054291.11
Approve10434232024-12-21 14:54:552 days ago1734792895IN
0xFe626a84...22923cb9F
0 S0.000051241.1
Approve10179502024-12-21 10:46:172 days ago1734777977IN
0xFe626a84...22923cb9F
0 S0.000051241.1
Approve10114972024-12-21 9:43:492 days ago1734774229IN
0xFe626a84...22923cb9F
0 S0.000057111.1
Approve10033982024-12-21 8:12:062 days ago1734768726IN
0xFe626a84...22923cb9F
0 S0.000057111.1
Approve9880402024-12-21 4:35:142 days ago1734755714IN
0xFe626a84...22923cb9F
0 S0.000057111.1
Approve9666112024-12-21 1:37:292 days ago1734745049IN
0xFe626a84...22923cb9F
0 S0.000054291.11
Transfer9599352024-12-21 0:54:522 days ago1734742492IN
0xFe626a84...22923cb9F
0 S0.000037091.1
Transfer9596082024-12-21 0:53:022 days ago1734742382IN
0xFe626a84...22923cb9F
0 S0.000062081.1
Approve8632712024-12-20 11:36:053 days ago1734694565IN
0xFe626a84...22923cb9F
0 S0.000057111.1
Approve8220952024-12-20 6:36:533 days ago1734676613IN
0xFe626a84...22923cb9F
0 S0.000057111.1
Approve8214882024-12-20 6:31:583 days ago1734676318IN
0xFe626a84...22923cb9F
0 S0.000057111.1
Approve7738732024-12-19 23:34:483 days ago1734651288IN
0xFe626a84...22923cb9F
0 S0.00005381.1
Approve7718462024-12-19 23:07:343 days ago1734649654IN
0xFe626a84...22923cb9F
0 S0.000051241.1
Approve7650082024-12-19 21:39:564 days ago1734644396IN
0xFe626a84...22923cb9F
0 S0.000054291.11
Approve7553322024-12-19 20:16:544 days ago1734639414IN
0xFe626a84...22923cb9F
0 S0.00005381.1
Approve7529492024-12-19 19:57:074 days ago1734638227IN
0xFe626a84...22923cb9F
0 S0.000057111.1
Approve7521592024-12-19 19:50:284 days ago1734637828IN
0xFe626a84...22923cb9F
0 S0.000051241.1
Approve7509542024-12-19 19:40:144 days ago1734637214IN
0xFe626a84...22923cb9F
0 S0.000051241.1
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ssoda

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2024-12-19
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.10;

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

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

/**
 * @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.
 */
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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

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

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

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

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

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

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

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);
}

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @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(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `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 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 {}
}

abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

contract ssoda is ERC20, Ownable, Pausable {
    constructor() ERC20("SonicSoda", "SODA") {
        _mint(msg.sender, 1000000000000000000000000000000);
    }

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override whenNotPaused {
        super._beforeTokenTransfer(from, to, 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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":[{"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040805180820182526009815268536f6e6963536f646160b81b602080830191825283518085019094526004845263534f444160e01b9084015281519192916200005f916003916200027e565b508051620000759060049060208401906200027e565b505050620000926200008c620000be60201b60201c565b620000c2565b6005805460ff60a01b19169055620000b8336c0c9f2c9cd04674edea4000000062000114565b62000388565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001705760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200017e600083836200020b565b806002600082825462000192919062000324565b90915550506001600160a01b03821660009081526020819052604081208054839290620001c190849062000324565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6200021f600554600160a01b900460ff1690565b15620002615760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000167565b620002798383836200027960201b620006271760201c565b505050565b8280546200028c906200034b565b90600052602060002090601f016020900481019282620002b05760008555620002fb565b82601f10620002cb57805160ff1916838001178555620002fb565b82800160010185558215620002fb579182015b82811115620002fb578251825591602001919060010190620002de565b50620003099291506200030d565b5090565b5b808211156200030957600081556001016200030e565b600082198211156200034657634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200036057607f821691505b602082108114156200038257634e487b7160e01b600052602260045260246000fd5b50919050565b610e7880620003986000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610226578063a457c2d71461022e578063a9059cbb14610241578063dd62ed3e14610254578063f2fde38b1461028d57600080fd5b806370a08231146101d2578063715018a6146101fb5780638456cb59146102035780638da5cb5b1461020b57600080fd5b8063313ce567116100e9578063313ce5671461018157806339509351146101905780633f4ba83a146101a357806342966c68146101ad5780635c975abb146101c057600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102a0565b6040516101309190610c48565b60405180910390f35b61014c610147366004610cb9565b610332565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610ce3565b610348565b60405160128152602001610130565b61014c61019e366004610cb9565b6103f7565b6101ab610433565b005b6101ab6101bb366004610d1f565b610467565b600554600160a01b900460ff1661014c565b6101606101e0366004610d38565b6001600160a01b031660009081526020819052604090205490565b6101ab610474565b6101ab6104a8565b6005546040516001600160a01b039091168152602001610130565b6101236104da565b61014c61023c366004610cb9565b6104e9565b61014c61024f366004610cb9565b610582565b610160610262366004610d5a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101ab61029b366004610d38565b61058f565b6060600380546102af90610d8d565b80601f01602080910402602001604051908101604052809291908181526020018280546102db90610d8d565b80156103285780601f106102fd57610100808354040283529160200191610328565b820191906000526020600020905b81548152906001019060200180831161030b57829003601f168201915b5050505050905090565b600061033f33848461062c565b50600192915050565b6000610355848484610750565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103df5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103ec853385840361062c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161033f91859061042e908690610dde565b61062c565b6005546001600160a01b0316331461045d5760405162461bcd60e51b81526004016103d690610df6565b61046561092a565b565b61047133826109c7565b50565b6005546001600160a01b0316331461049e5760405162461bcd60e51b81526004016103d690610df6565b6104656000610b21565b6005546001600160a01b031633146104d25760405162461bcd60e51b81526004016103d690610df6565b610465610b73565b6060600480546102af90610d8d565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561056b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103d6565b610578338585840361062c565b5060019392505050565b600061033f338484610750565b6005546001600160a01b031633146105b95760405162461bcd60e51b81526004016103d690610df6565b6001600160a01b03811661061e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d6565b61047181610b21565b505050565b6001600160a01b03831661068e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103d6565b6001600160a01b0382166106ef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103d6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107b45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103d6565b6001600160a01b0382166108165760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103d6565b610821838383610bfb565b6001600160a01b038316600090815260208190526040902054818110156108995760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103d6565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906108d0908490610dde565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161091c91815260200190565b60405180910390a350505050565b600554600160a01b900460ff1661097a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016103d6565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610a275760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103d6565b610a3382600083610bfb565b6001600160a01b03821660009081526020819052604090205481811015610aa75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103d6565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610ad6908490610e2b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600554600160a01b900460ff1615610bc05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103d6565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586109aa3390565b600554600160a01b900460ff16156106275760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103d6565b600060208083528351808285015260005b81811015610c7557858101830151858201604001528201610c59565b81811115610c87576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610cb457600080fd5b919050565b60008060408385031215610ccc57600080fd5b610cd583610c9d565b946020939093013593505050565b600080600060608486031215610cf857600080fd5b610d0184610c9d565b9250610d0f60208501610c9d565b9150604084013590509250925092565b600060208284031215610d3157600080fd5b5035919050565b600060208284031215610d4a57600080fd5b610d5382610c9d565b9392505050565b60008060408385031215610d6d57600080fd5b610d7683610c9d565b9150610d8460208401610c9d565b90509250929050565b600181811c90821680610da157607f821691505b60208210811415610dc257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610df157610df1610dc8565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015610e3d57610e3d610dc8565b50039056fea264697066735822122006d64258bd201929c75beb8b8a29a7d5a9238104f6d493edab13b40d02eb806264736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610226578063a457c2d71461022e578063a9059cbb14610241578063dd62ed3e14610254578063f2fde38b1461028d57600080fd5b806370a08231146101d2578063715018a6146101fb5780638456cb59146102035780638da5cb5b1461020b57600080fd5b8063313ce567116100e9578063313ce5671461018157806339509351146101905780633f4ba83a146101a357806342966c68146101ad5780635c975abb146101c057600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102a0565b6040516101309190610c48565b60405180910390f35b61014c610147366004610cb9565b610332565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610ce3565b610348565b60405160128152602001610130565b61014c61019e366004610cb9565b6103f7565b6101ab610433565b005b6101ab6101bb366004610d1f565b610467565b600554600160a01b900460ff1661014c565b6101606101e0366004610d38565b6001600160a01b031660009081526020819052604090205490565b6101ab610474565b6101ab6104a8565b6005546040516001600160a01b039091168152602001610130565b6101236104da565b61014c61023c366004610cb9565b6104e9565b61014c61024f366004610cb9565b610582565b610160610262366004610d5a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101ab61029b366004610d38565b61058f565b6060600380546102af90610d8d565b80601f01602080910402602001604051908101604052809291908181526020018280546102db90610d8d565b80156103285780601f106102fd57610100808354040283529160200191610328565b820191906000526020600020905b81548152906001019060200180831161030b57829003601f168201915b5050505050905090565b600061033f33848461062c565b50600192915050565b6000610355848484610750565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103df5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103ec853385840361062c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161033f91859061042e908690610dde565b61062c565b6005546001600160a01b0316331461045d5760405162461bcd60e51b81526004016103d690610df6565b61046561092a565b565b61047133826109c7565b50565b6005546001600160a01b0316331461049e5760405162461bcd60e51b81526004016103d690610df6565b6104656000610b21565b6005546001600160a01b031633146104d25760405162461bcd60e51b81526004016103d690610df6565b610465610b73565b6060600480546102af90610d8d565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561056b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103d6565b610578338585840361062c565b5060019392505050565b600061033f338484610750565b6005546001600160a01b031633146105b95760405162461bcd60e51b81526004016103d690610df6565b6001600160a01b03811661061e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d6565b61047181610b21565b505050565b6001600160a01b03831661068e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103d6565b6001600160a01b0382166106ef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103d6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107b45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103d6565b6001600160a01b0382166108165760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103d6565b610821838383610bfb565b6001600160a01b038316600090815260208190526040902054818110156108995760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103d6565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906108d0908490610dde565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161091c91815260200190565b60405180910390a350505050565b600554600160a01b900460ff1661097a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016103d6565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610a275760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103d6565b610a3382600083610bfb565b6001600160a01b03821660009081526020819052604090205481811015610aa75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103d6565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610ad6908490610e2b565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600554600160a01b900460ff1615610bc05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103d6565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586109aa3390565b600554600160a01b900460ff16156106275760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016103d6565b600060208083528351808285015260005b81811015610c7557858101830151858201604001528201610c59565b81811115610c87576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610cb457600080fd5b919050565b60008060408385031215610ccc57600080fd5b610cd583610c9d565b946020939093013593505050565b600080600060608486031215610cf857600080fd5b610d0184610c9d565b9250610d0f60208501610c9d565b9150604084013590509250925092565b600060208284031215610d3157600080fd5b5035919050565b600060208284031215610d4a57600080fd5b610d5382610c9d565b9392505050565b60008060408385031215610d6d57600080fd5b610d7683610c9d565b9150610d8460208401610c9d565b90509250929050565b600181811c90821680610da157607f821691505b60208210811415610dc257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610df157610df1610dc8565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015610e3d57610e3d610dc8565b50039056fea264697066735822122006d64258bd201929c75beb8b8a29a7d5a9238104f6d493edab13b40d02eb806264736f6c634300080a0033

Deployed Bytecode Sourcemap

18579:609:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6596:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8829:194;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;8829:194:0;1053:187:1;7716:108:0;7804:12;;7716:108;;;1391:25:1;;;1379:2;1364:18;7716:108:0;1245:177:1;9505:529:0;;;;;;:::i;:::-;;:::i;7558:93::-;;;7641:2;1902:36:1;;1890:2;1875:18;7558:93:0;1760:184:1;10443:290:0;;;;;;:::i;:::-;;:::i;18909:67::-;;;:::i;:::-;;18747:83;;;;;;:::i;:::-;;:::i;17393:86::-;17464:7;;-1:-1:-1;;;17464:7:0;;;;17393:86;;7887:143;;;;;;:::i;:::-;-1:-1:-1;;;;;8004:18:0;7977:7;8004:18;;;;;;;;;;;;7887:143;1895:94;;;:::i;18838:63::-;;;:::i;1244:87::-;1317:6;;1244:87;;-1:-1:-1;;;;;1317:6:0;;;2471:51:1;;2459:2;2444:18;1244:87:0;2325:203:1;6815:104:0;;;:::i;11236:475::-;;;;;;:::i;:::-;;:::i;8243:200::-;;;;;;:::i;:::-;;:::i;8506:176::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8647:18:0;;;8620:7;8647:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8506:176;2144:229;;;;;;:::i;:::-;;:::i;6596:100::-;6650:13;6683:5;6676:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6596:100;:::o;8829:194::-;8937:4;8954:39;175:10;8977:7;8986:6;8954:8;:39::i;:::-;-1:-1:-1;9011:4:0;8829:194;;;;:::o;9505:529::-;9645:4;9662:36;9672:6;9680:9;9691:6;9662:9;:36::i;:::-;-1:-1:-1;;;;;9738:19:0;;9711:24;9738:19;;;:11;:19;;;;;;;;175:10;9738:33;;;;;;;;9804:26;;;;9782:116;;;;-1:-1:-1;;;9782:116:0;;3385:2:1;9782:116:0;;;3367:21:1;3424:2;3404:18;;;3397:30;3463:34;3443:18;;;3436:62;-1:-1:-1;;;3514:18:1;;;3507:38;3562:19;;9782:116:0;;;;;;;;;9934:57;9943:6;175:10;9984:6;9965:16;:25;9934:8;:57::i;:::-;-1:-1:-1;10022:4:0;;9505:529;-1:-1:-1;;;;9505:529:0:o;10443:290::-;175:10;10556:4;10645:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10645:34:0;;;;;;;;;;10556:4;;10573:130;;10623:7;;10645:47;;10682:10;;10645:47;:::i;:::-;10573:8;:130::i;18909:67::-;1317:6;;-1:-1:-1;;;;;1317:6:0;175:10;1464:23;1456:68;;;;-1:-1:-1;;;1456:68:0;;;;;;;:::i;:::-;18958:10:::1;:8;:10::i;:::-;18909:67::o:0;18747:83::-;18797:25;18803:10;18815:6;18797:5;:25::i;:::-;18747:83;:::o;1895:94::-;1317:6;;-1:-1:-1;;;;;1317:6:0;175:10;1464:23;1456:68;;;;-1:-1:-1;;;1456:68:0;;;;;;;:::i;:::-;1960:21:::1;1978:1;1960:9;:21::i;18838:63::-:0;1317:6;;-1:-1:-1;;;;;1317:6:0;175:10;1464:23;1456:68;;;;-1:-1:-1;;;1456:68:0;;;;;;;:::i;:::-;18885:8:::1;:6;:8::i;6815:104::-:0;6871:13;6904:7;6897:14;;;;;:::i;11236:475::-;175:10;11354:4;11398:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11398:34:0;;;;;;;;;;11465:35;;;;11443:122;;;;-1:-1:-1;;;11443:122:0;;4420:2:1;11443:122:0;;;4402:21:1;4459:2;4439:18;;;4432:30;4498:34;4478:18;;;4471:62;-1:-1:-1;;;4549:18:1;;;4542:35;4594:19;;11443:122:0;4218:401:1;11443:122:0;11601:67;175:10;11624:7;11652:15;11633:16;:34;11601:8;:67::i;:::-;-1:-1:-1;11699:4:0;;11236:475;-1:-1:-1;;;11236:475:0:o;8243:200::-;8354:4;8371:42;175:10;8395:9;8406:6;8371:9;:42::i;2144:229::-;1317:6;;-1:-1:-1;;;;;1317:6:0;175:10;1464:23;1456:68;;;;-1:-1:-1;;;1456:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2247:22:0;::::1;2225:110;;;::::0;-1:-1:-1;;;2225:110:0;;4826:2:1;2225:110:0::1;::::0;::::1;4808:21:1::0;4865:2;4845:18;;;4838:30;4904:34;4884:18;;;4877:62;-1:-1:-1;;;4955:18:1;;;4948:36;5001:19;;2225:110:0::1;4624:402:1::0;2225:110:0::1;2346:19;2356:8;2346:9;:19::i;15999:125::-:0;;;;:::o;15019:380::-;-1:-1:-1;;;;;15155:19:0;;15147:68;;;;-1:-1:-1;;;15147:68:0;;5233:2:1;15147:68:0;;;5215:21:1;5272:2;5252:18;;;5245:30;5311:34;5291:18;;;5284:62;-1:-1:-1;;;5362:18:1;;;5355:34;5406:19;;15147:68:0;5031:400:1;15147:68:0;-1:-1:-1;;;;;15234:21:0;;15226:68;;;;-1:-1:-1;;;15226:68:0;;5638:2:1;15226:68:0;;;5620:21:1;5677:2;5657:18;;;5650:30;5716:34;5696:18;;;5689:62;-1:-1:-1;;;5767:18:1;;;5760:32;5809:19;;15226:68:0;5436:398:1;15226:68:0;-1:-1:-1;;;;;15307:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15359:32;;1391:25:1;;;15359:32:0;;1364:18:1;15359:32:0;;;;;;;15019:380;;;:::o;12201:770::-;-1:-1:-1;;;;;12341:20:0;;12333:70;;;;-1:-1:-1;;;12333:70:0;;6041:2:1;12333:70:0;;;6023:21:1;6080:2;6060:18;;;6053:30;6119:34;6099:18;;;6092:62;-1:-1:-1;;;6170:18:1;;;6163:35;6215:19;;12333:70:0;5839:401:1;12333:70:0;-1:-1:-1;;;;;12422:23:0;;12414:71;;;;-1:-1:-1;;;12414:71:0;;6447:2:1;12414:71:0;;;6429:21:1;6486:2;6466:18;;;6459:30;6525:34;6505:18;;;6498:62;-1:-1:-1;;;6576:18:1;;;6569:33;6619:19;;12414:71:0;6245:399:1;12414:71:0;12498:47;12519:6;12527:9;12538:6;12498:20;:47::i;:::-;-1:-1:-1;;;;;12582:17:0;;12558:21;12582:17;;;;;;;;;;;12632:23;;;;12610:111;;;;-1:-1:-1;;;12610:111:0;;6851:2:1;12610:111:0;;;6833:21:1;6890:2;6870:18;;;6863:30;6929:34;6909:18;;;6902:62;-1:-1:-1;;;6980:18:1;;;6973:36;7026:19;;12610:111:0;6649:402:1;12610:111:0;-1:-1:-1;;;;;12757:17:0;;;:9;:17;;;;;;;;;;;12777:22;;;12757:42;;12821:20;;;;;;;;:30;;12793:6;;12757:9;12821:30;;12793:6;;12821:30;:::i;:::-;;;;;;;;12886:9;-1:-1:-1;;;;;12869:35:0;12878:6;-1:-1:-1;;;;;12869:35:0;;12897:6;12869:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;12869:35:0;;;;;;;;12322:649;12201:770;;;:::o;18452:120::-;17464:7;;-1:-1:-1;;;17464:7:0;;;;17988:41;;;;-1:-1:-1;;;17988:41:0;;7258:2:1;17988:41:0;;;7240:21:1;7297:2;7277:18;;;7270:30;-1:-1:-1;;;7316:18:1;;;7309:50;7376:18;;17988:41:0;7056:344:1;17988:41:0;18511:7:::1;:15:::0;;-1:-1:-1;;;;18511:15:0::1;::::0;;18542:22:::1;175:10:::0;18551:12:::1;18542:22;::::0;-1:-1:-1;;;;;2489:32:1;;;2471:51;;2459:2;2444:18;18542:22:0::1;;;;;;;18452:120::o:0;13990:591::-;-1:-1:-1;;;;;14074:21:0;;14066:67;;;;-1:-1:-1;;;14066:67:0;;7607:2:1;14066:67:0;;;7589:21:1;7646:2;7626:18;;;7619:30;7685:34;7665:18;;;7658:62;-1:-1:-1;;;7736:18:1;;;7729:31;7777:19;;14066:67:0;7405:397:1;14066:67:0;14146:49;14167:7;14184:1;14188:6;14146:20;:49::i;:::-;-1:-1:-1;;;;;14233:18:0;;14208:22;14233:18;;;;;;;;;;;14270:24;;;;14262:71;;;;-1:-1:-1;;;14262:71:0;;8009:2:1;14262:71:0;;;7991:21:1;8048:2;8028:18;;;8021:30;8087:34;8067:18;;;8060:62;-1:-1:-1;;;8138:18:1;;;8131:32;8180:19;;14262:71:0;7807:398:1;14262:71:0;-1:-1:-1;;;;;14369:18:0;;:9;:18;;;;;;;;;;14390:23;;;14369:44;;14435:12;:22;;14407:6;;14369:9;14435:22;;14407:6;;14435:22;:::i;:::-;;;;-1:-1:-1;;14475:37:0;;1391:25:1;;;14501:1:0;;-1:-1:-1;;;;;14475:37:0;;;;;1379:2:1;1364:18;14475:37:0;;;;;;;15999:125;;;:::o;2381:173::-;2456:6;;;-1:-1:-1;;;;;2473:17:0;;;-1:-1:-1;;;;;;2473:17:0;;;;;;;2506:40;;2456:6;;;2473:17;2456:6;;2506:40;;2437:16;;2506:40;2426:128;2381:173;:::o;18193:118::-;17464:7;;-1:-1:-1;;;17464:7:0;;;;17718:9;17710:38;;;;-1:-1:-1;;;17710:38:0;;8542:2:1;17710:38:0;;;8524:21:1;8581:2;8561:18;;;8554:30;-1:-1:-1;;;8600:18:1;;;8593:46;8656:18;;17710:38:0;8340:340:1;17710:38:0;18253:7:::1;:14:::0;;-1:-1:-1;;;;18253:14:0::1;-1:-1:-1::0;;;18253:14:0::1;::::0;;18283:20:::1;18290:12;175:10:::0;;95:98;18984:201;17464:7;;-1:-1:-1;;;17464:7:0;;;;17718:9;17710:38;;;;-1:-1:-1;;;17710:38:0;;8542:2:1;17710:38:0;;;8524:21:1;8581:2;8561:18;;;8554:30;-1:-1:-1;;;8600:18:1;;;8593:46;8656:18;;17710:38:0;8340:340:1;14:597;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;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:180::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;-1:-1:-1;2100:23:1;;1949:180;-1:-1:-1;1949:180:1: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;2533:260::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:52;;;2678:1;2675;2668:12;2630:52;2701:29;2720:9;2701:29;:::i;:::-;2691:39;;2749:38;2783:2;2772:9;2768:18;2749:38;:::i;:::-;2739:48;;2533:260;;;;;:::o;2798:380::-;2877:1;2873:12;;;;2920;;;2941:61;;2995:4;2987:6;2983:17;2973:27;;2941:61;3048:2;3040:6;3037:14;3017:18;3014:38;3011:161;;;3094:10;3089:3;3085:20;3082:1;3075:31;3129:4;3126:1;3119:15;3157:4;3154:1;3147:15;3011:161;;2798:380;;;:::o;3592:127::-;3653:10;3648:3;3644:20;3641:1;3634:31;3684:4;3681:1;3674:15;3708:4;3705:1;3698:15;3724:128;3764:3;3795:1;3791:6;3788:1;3785:13;3782:39;;;3801:18;;:::i;:::-;-1:-1:-1;3837:9:1;;3724:128::o;3857:356::-;4059:2;4041:21;;;4078:18;;;4071:30;4137:34;4132:2;4117:18;;4110:62;4204:2;4189:18;;3857:356::o;8210:125::-;8250:4;8278:1;8275;8272:8;8269:34;;;8283:18;;:::i;:::-;-1:-1:-1;8320:9:1;;8210:125::o

Swarm Source

ipfs://06d64258bd201929c75beb8b8a29a7d5a9238104f6d493edab13b40d02eb8062

Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

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.